/* =====================================================================
   YUMANYA — Design system v3
   Inspirations: gtmlab.agency (clarté), entrepreneurs.com (séparation),
   keep growing (rythme), genesis-partners (sobriété)
   Fonts: Familjen Grotesk (titres) + Manrope (texte) + Instrument Serif (italique éditoriale)
   Palette:
     ink   #173349 — navy profond, principale
     gold  #A77C00 — or profond, accent principal
     copper #C19057 — bronze chaud, accent secondaire (et dégradé or)
     paper #FFFFFF, cream #FBF8F2 (cream léger)
   ===================================================================== */

:root {
  --ink: #173349;
  --ink-2: #1E3D54;
  --ink-3: #2A4A60;
  --ink-line: rgba(23,51,73,.10);
  --ink-line-strong: rgba(23,51,73,.20);
  --line-on-ink: rgba(255,255,255,.10);
  --line-on-ink-strong: rgba(255,255,255,.22);

  --gold: #A77C00;
  --gold-2: #C19057;
  --gold-soft: #E8D8A8;
  --gold-tint: #FAF3E0;

  --paper: #FFFFFF;
  --cream: #FBF8F2;
  --cream-2: #F3ECDC;
  --mist: #F5F7F9;

  --muted: #5F6E7C;
  --muted-2: #8A95A0;
  --muted-on-ink: rgba(255,255,255,.62);

  --gold-gradient: linear-gradient(135deg, #F0D88A 0%, #D8AC4E 35%, #B88820 70%, #8C6700 100%);
  --gold-gradient-soft: linear-gradient(135deg, #FAF3E0 0%, #F3ECDC 100%);
  --ink-gradient: linear-gradient(180deg, #173349 0%, #1E3D54 100%);

  --maxw: 1240px;
  --maxw-narrow: 880px;
  --pad-x: clamp(20px, 4vw, 48px);
  --section-y: clamp(64px, 7vw, 112px);
  --section-y-sm: clamp(40px, 4vw, 64px);

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(23,51,73,.04), 0 6px 18px rgba(23,51,73,.06);
  --shadow-md: 0 14px 38px -10px rgba(23,51,73,.14);
  --shadow-lg: 0 28px 60px -16px rgba(23,51,73,.18);

  --t-display: clamp(36px, 5vw, 80px);
  --t-h1: clamp(28px, 3.6vw, 56px);
  --t-h2: clamp(24px, 2.6vw, 40px);
  --t-h3: clamp(18px, 1.5vw, 24px);
  --t-h4: 17px;
  --t-body: 16px;
  --t-small: 14px;
  --t-eyebrow: 11px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Manrope", "Avenir Next", system-ui, -apple-system, sans-serif;
  font-size: var(--t-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  text-wrap: pretty;
  font-feature-settings: "ss01";
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--gold-tint); color: var(--ink); }

h1, h2, h3, h4, h5, .display {
  font-family: "Familjen Grotesk", "Avenir Next", system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
  color: var(--ink);
}
.display { font-size: var(--t-display); line-height: 1.0; letter-spacing: -0.03em; font-weight: 500; }
h1, .h1 { font-size: var(--t-h1); line-height: 1.05; letter-spacing: -0.025em; font-weight: 500; }
h2, .h2 { font-size: var(--t-h2); line-height: 1.1; letter-spacing: -0.02em; font-weight: 500; }
h3, .h3 { font-size: var(--t-h3); line-height: 1.22; letter-spacing: -0.012em; font-weight: 500; }
h4, .h4 { font-size: var(--t-h4); line-height: 1.3; font-weight: 600; }

p { margin: 0 0 1em; }
.lede { font-size: clamp(16px, 1.2vw, 19px); line-height: 1.55; color: var(--ink); }
.muted { color: var(--muted); }
.on-ink, .on-ink * { color: rgba(255,255,255,.92); }
.on-ink .muted, .on-ink .lede.muted { color: var(--muted-on-ink); }
.on-ink h1, .on-ink h2, .on-ink h3, .on-ink h4 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: "Familjen Grotesk", sans-serif;
  font-size: var(--t-eyebrow);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1.5px;
  background: var(--gold-gradient);
}
.eyebrow.on-ink { color: var(--gold-2); }
.eyebrow.on-ink::before { background: var(--gold-gradient); }

.gold-text { color: var(--gold); }
.italic-serif { font-family: "Instrument Serif", "Cormorant", serif; font-style: italic; font-weight: 400; }
.gold-shine {
  background: var(--gold-gradient);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.container { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad-x); padding-right: var(--pad-x); }
.container--narrow { max-width: var(--maxw-narrow); }
.section { padding-top: var(--section-y); padding-bottom: var(--section-y); }
.section--sm { padding-top: var(--section-y-sm); padding-bottom: var(--section-y-sm); }
.section--ink { background: var(--ink); color: #fff; }
.section--ink .eyebrow { color: var(--gold-2); }
.section--ink .lede { color: rgba(255,255,255,.86); }
.section--ink .muted { color: var(--muted-on-ink); }
.section--cream { background: var(--cream); }
.section--mist {
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, #F1ECDF 0%, transparent 65%),
    linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}
.section--dotted {
  background-color: #FFFFFF;
  background-image: radial-gradient(circle at 1px 1px, rgba(23,51,73,.06) 1px, transparent 0);
  background-size: 28px 28px;
}
.section--gold-halo {
  background:
    radial-gradient(ellipse 50% 45% at 92% 12%, rgba(193,144,87,.16), transparent 60%),
    radial-gradient(ellipse 50% 45% at 8% 92%, rgba(167,124,0,.10), transparent 65%),
    #FFFFFF;
}
.section--lines {
  background:
    repeating-linear-gradient(135deg, rgba(193,144,87,.045) 0 1px, transparent 1px 36px),
    #FFFFFF;
}
.section--grid {
  background-color: #FAFBFC;
  background-image:
    linear-gradient(to right, rgba(23,51,73,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(23,51,73,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: -1px -1px;
}
.section--dots {
  background-color: #FBF8F2;
  background-image: radial-gradient(circle at 1px 1px, rgba(167,124,0,.18) 1px, transparent 0);
  background-size: 22px 22px;
}
.section--steel {
  background-color: #F1F4F8;
  background-image:
    radial-gradient(ellipse 50% 40% at 90% 0%, rgba(193,144,87,.10), transparent 60%),
    radial-gradient(ellipse 40% 35% at 5% 100%, rgba(23,51,73,.08), transparent 65%),
    radial-gradient(circle at 1px 1px, rgba(23,51,73,.07) 1px, transparent 0);
  background-size: auto, auto, 28px 28px;
  position: relative;
}
.section--ink-soft {
  background: linear-gradient(180deg, #173349 0%, #1E3D54 100%);
  color: #fff;
}
.section--ink-soft .eyebrow { color: var(--gold-2); }
.section--ink-soft .lede { color: rgba(255,255,255,.86); }
.section--ink-soft h2 { color: #fff; }

/* =====================================================================
   Buttons — gradient or, navy, ghost
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  font-family: "Manrope", sans-serif;
  font-weight: 600; font-size: 14.5px;
  border-radius: 999px;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
  letter-spacing: 0.005em;
}
.btn:hover { transform: translateY(-1px); }

.btn--gold {
  background: var(--gold-gradient);
  background-size: 200% 100%;
  background-position: 0% 50%;
  color: #fff;
  text-shadow: 0 1px 1px rgba(0,0,0,.15);
  box-shadow: 0 10px 30px -10px rgba(140,103,0,.55), inset 0 1px 0 rgba(255,255,255,.35), inset 0 -1px 0 rgba(0,0,0,.12);
}
.btn--gold:hover { background-position: 100% 50%; box-shadow: 0 18px 44px -10px rgba(140,103,0,.65), inset 0 1px 0 rgba(255,255,255,.4), inset 0 -1px 0 rgba(0,0,0,.15); }

.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: var(--ink-3); }

.btn--ghost { color: var(--ink); border: 1px solid var(--ink-line-strong); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; }
.btn--ghost.on-ink { color: #fff; border-color: var(--line-on-ink-strong); }
.btn--ghost.on-ink:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn--xl { padding: 18px 30px; font-size: 16px; }
.btn .arrow { width: 14px; height: 14px; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Manrope", sans-serif; font-weight: 600;
  font-size: 14.5px;
  color: var(--gold);
  transition: gap .2s ease, color .2s ease;
}
.btn-link::after {
  content: "→";
  font-family: "Familjen Grotesk", sans-serif;
  transition: transform .2s ease;
}
.btn-link:hover { color: var(--ink); gap: 12px; }
.btn-link:hover::after { transform: translateX(3px); }
.btn-link.on-ink { color: var(--gold-2); }
.btn-link.on-ink:hover { color: #fff; }

/* =====================================================================
   Tag / chip
   ===================================================================== */
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  font-family: "Manrope", sans-serif; font-size: 11.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  border: 1px solid var(--ink-line-strong);
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
}
.tag.on-ink { border-color: var(--line-on-ink-strong); color: rgba(255,255,255,.86); }
.tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-gradient); }
.tag--gold { background: var(--gold-tint); color: var(--gold); border-color: var(--gold-soft); }

/* =====================================================================
   Nav — larger logo, refined dropdowns
   ===================================================================== */
.nav {
  position: sticky; top: 16px; z-index: 60;
  margin: 16px var(--pad-x) 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(23,51,73,.06), 0 16px 40px -16px rgba(23,51,73,.12);
  border: 1px solid rgba(23,51,73,.06);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 104px;
  max-width: var(--maxw); margin: 0 auto;
  padding-left: 28px; padding-right: 12px;
  gap: 24px;
}
.nav__brand img { height: 22px; width: auto; display: block; }
.nav__menu { display: flex; gap: 6px; align-items: center; }
.nav__item { position: relative; }
.nav__link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 16px;
  font-family: "Manrope", sans-serif; font-weight: 500; font-size: 15px;
  border-radius: 999px;
  color: var(--ink);
  transition: background .15s ease, color .15s ease;
}
.nav__link:hover { background: var(--cream); color: var(--gold); }
.nav__chev { width: 11px; height: 11px; opacity: .55; transition: transform .2s ease; }
.nav__item:hover .nav__chev { transform: rotate(180deg); }

.nav__dropdown {
  position: absolute; top: calc(100% + 8px); left: -12px;
  min-width: 380px;
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: 18px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  display: none;
  z-index: 5;
}
.nav { position: sticky; top: 16px; z-index: 60; margin: 16px var(--pad-x) 0; background: rgba(255,255,255,.96); backdrop-filter: saturate(140%) blur(16px); -webkit-backdrop-filter: saturate(140%) blur(16px); border-radius: 999px; box-shadow: 0 1px 3px rgba(23,51,73,.06), 0 16px 40px -16px rgba(23,51,73,.12); border: 1px solid rgba(23,51,73,.06); }
.nav__dropdown--wide {
  display: none;
  grid-template-columns: 1fr 1fr 1fr;
  position: fixed;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2 * var(--pad-x));
  max-width: var(--maxw);
  padding: 24px;
  gap: 0;
  border-radius: 24px;
}
.nav__dropdown--wide .nav__dd-col { padding: 8px 28px; }
.nav__dropdown--wide .nav__dd-col + .nav__dd-col { border-left: 1px solid var(--ink-line); }
@media (max-width: 1080px) {
  .nav__dropdown--wide { top: 120px; }
}
.nav__item:hover .nav__dropdown--wide,
.nav__item:focus-within .nav__dropdown--wide { display: grid !important; }
.nav__dd-col { padding: 4px; }
.nav__dd-col + .nav__dd-col { border-left: 1px solid var(--ink-line); }
.nav__dd-label--gold { color: var(--gold); }
.nav__dd-entry {
  display: block; padding: 12px 14px 14px; border-radius: 12px;
  transition: background .15s ease;
}
.nav__dd-entry:hover { background: var(--cream); }
.nav__dd-entry b {
  font-family: "Familjen Grotesk", sans-serif; font-weight: 600; font-size: 15.5px;
  color: var(--ink); display: inline; line-height: 1.3;
}
.nav__dd-entry .pill {
  display: inline-block; margin-left: 6px; padding: 2px 8px;
  background: var(--gold-tint); color: var(--gold);
  font-size: 11px; font-weight: 600;
  border-radius: 6px; vertical-align: 2px;
}
.nav__dd-entry small {
  display: block; font-family: "Manrope", sans-serif; font-size: 13.5px; font-weight: 400;
  color: var(--muted); margin-top: 8px; line-height: 1.5;
}
.nav__dd-entry .meta {
  display: block; margin-top: 10px; font-size: 12px; color: var(--gold);
  font-weight: 500;
}
.nav__item:hover .nav__dropdown,
.nav__item:focus-within .nav__dropdown { display: block; }
.nav__dd-label {
  font-family: "Familjen Grotesk", sans-serif; font-size: 10.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--gold);
  padding: 10px 14px 6px;
}
.nav__dd-link {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  transition: background .15s ease;
}
.nav__dd-link b { font-family: "Familjen Grotesk", sans-serif; font-weight: 500; font-size: 15px; color: var(--ink); display: block; }
.nav__dd-link small { display: block; font-size: 13px; color: var(--muted); margin-top: 2px; line-height: 1.4; }
.nav__dd-link:hover { background: var(--cream); }
.nav__dd-link .arrow { color: var(--gold); font-family: "Familjen Grotesk"; font-size: 18px; font-weight: 500; }
.nav__dd-cta {
  margin: 8px 4px 4px;
  padding: 16px;
  border-radius: 12px;
  background: var(--ink); color: #fff;
}
.nav__dd-cta b { font-family: "Familjen Grotesk"; font-size: 15px; font-weight: 500; color: #fff; display: block; margin-bottom: 4px; }
.nav__dd-cta span { font-size: 13px; color: rgba(255,255,255,.7); display: block; margin-bottom: 12px; }
.nav__dd-cta .btn { padding: 10px 18px; font-size: 13px; }

.nav__cta { display: flex; gap: 10px; align-items: center; }
.nav__cta .btn { padding: 11px 18px; font-size: 14px; }
.nav__burger { display: none; width: 42px; height: 42px; border-radius: 999px; border: 1px solid var(--ink-line-strong); align-items: center; justify-content: center; }
.nav__burger span { width: 16px; height: 1.5px; background: var(--ink); display: block; position: relative; }
.nav__burger span::before, .nav__burger span::after { content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: var(--ink); }
.nav__burger span::before { top: -5px; } .nav__burger span::after { top: 5px; }

@media (max-width: 1080px) {
  .nav__menu { display: none; }
  .nav__cta .btn--ghost { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__brand img { height: 48px; }
  .nav__inner { height: 72px; padding-left: 20px; padding-right: 8px; }
}

/* =====================================================================
   Hero — texte centré, fond dégradé or visible
   ===================================================================== */
.hero {
  padding: clamp(64px, 8vw, 120px) 0 clamp(48px, 6vw, 96px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero__bg {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__bg-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: .55;
}
.hero__inner { position: relative; z-index: 1; max-width: 920px; margin: 0 auto; }
.hero__title {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(34px, 4.8vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 18px 0 0;
}
.hero__title em {
  font-family: "Instrument Serif", serif; font-style: italic;
  font-weight: 400;
  background: var(--gold-gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero__rule {
  width: 88px; height: 2.5px;
  background: var(--gold-gradient);
  margin: 28px auto;
  border-radius: 2px;
}
.hero__sub {
  max-width: 720px; margin: 0 auto;
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--muted); line-height: 1.6;
}
.hero__cta { margin-top: 36px; display: inline-flex; flex-direction: column; align-items: center; gap: 12px; }
.hero__cta-meta { font-size: 13px; color: var(--muted); }

/* =====================================================================
   Marquees — single track, fond ink
   ===================================================================== */
.marquee {
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  border-top: 1px solid var(--line-on-ink);
  border-bottom: 1px solid var(--line-on-ink);
}
.marquee__track {
  display: flex; gap: 48px; align-items: center;
  animation: marquee-scroll 80s linear infinite;
  width: max-content;
}
.marquee--ltr .marquee__track { animation-direction: reverse; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee--stats { padding: 22px 0; }
.marquee--stats .marquee__chip {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: "Manrope", sans-serif; font-size: 15.5px; font-weight: 500;
  white-space: nowrap;
  color: #fff;
}
.marquee--stats .num { font-family: "Familjen Grotesk", sans-serif; font-size: 20px; font-weight: 600; color: var(--gold-2); letter-spacing: -0.015em; }
.marquee--stats .sep { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.3); }

.marquee--logos { background: var(--ink); padding: 44px 0; }
.marquee--logos .marquee__track { gap: 96px; }
.marquee--logos img { height: 88px; width: auto; opacity: 1; filter: brightness(0) invert(1); }
@media (max-width: 720px) { .marquee--logos img { height: 56px; } .marquee--logos .marquee__track { gap: 56px; } }

/* =====================================================================
   Section heading pattern
   ===================================================================== */
.sec-head {
  display: grid; grid-template-columns: 0.6fr 2fr; gap: clamp(24px, 4vw, 56px);
  margin-bottom: clamp(36px, 4vw, 56px);
  align-items: start;
}
.sec-head__title { font-size: var(--t-h2); }
.sec-head__lede { font-size: clamp(16px, 1.2vw, 19px); color: var(--muted); max-width: 760px; margin-top: 12px; }
.section--ink .sec-head__lede { color: var(--muted-on-ink); }
.sec-head--center { display: block; text-align: center; max-width: 820px; margin-left: auto; margin-right: auto; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head--center .sec-head__lede { margin-left: auto; margin-right: auto; }
@media (max-width: 820px) { .sec-head { grid-template-columns: 1fr; gap: 18px; } }

/* =====================================================================
   Quote block (centered, light)
   ===================================================================== */
.quote-block {
  background-color: #FBF8EE;
  background-image:
    linear-gradient(to right, rgba(167,124,0,.05) 0 1px, transparent 1px),
    repeating-linear-gradient(to bottom, transparent 0 41px, rgba(23,51,73,.16) 41px 42px);
  background-position: 64px 0, 0 28px;
  background-size: 1px 100%, 100% 42px;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 80px) clamp(40px, 5vw, 88px);
  text-align: left;
  position: relative;
  box-shadow: 0 14px 40px -16px rgba(23,51,73,.18);
  border: 1px solid rgba(23,51,73,.08);
}
.quote-block::before {
  content: "";
  position: absolute;
  left: 50px; top: 14px; bottom: 14px;
  width: 1.5px;
  background: rgba(229,20,132,.0);
  border-left: 1px solid rgba(229,20,132,.18);
}
.quote-block__icon {
  position: absolute; top: 22px; right: 28px;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: #fff;
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  font-family: "Instrument Serif"; font-size: 32px; line-height: 0;
  margin: 0;
}
.quote-block__text {
  font-family: "Manrope", "Avenir Next", system-ui, sans-serif;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 42px; letter-spacing: 0;
  font-weight: 400; font-style: normal;
  max-width: 980px;
  margin: 0;
  padding-left: 28px;
  color: var(--ink);
}
.quote-block__text em { font-family: inherit; font-style: normal; color: var(--gold); font-weight: 600; }

/* =====================================================================
   Fitlist — "pour vous si / pas pour vous si"
   ===================================================================== */
.fitlist {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: 1080px; margin: 0 auto;
}
@media (max-width: 820px) { .fitlist { grid-template-columns: 1fr; } }
.fitlist__col {
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.fitlist__col:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.fitlist__col--yes { border-top: 3px solid var(--gold); }
.fitlist__col--no { border-top: 3px solid var(--ink-line-strong); background: #FAFBFC; }
.fitlist__head {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink-line);
}
.fitlist__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
}
.fitlist__col--yes .fitlist__icon { background: var(--gold-tint); color: var(--gold); border: 1px solid var(--gold-soft); }
.fitlist__col--no .fitlist__icon { background: rgba(95,110,124,.12); color: var(--muted); border: 1px solid var(--ink-line); }
.fitlist__head h3 {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0; padding-top: 4px;
}
.fitlist__col ul { padding: 0; margin: 0; list-style: none; display: grid; gap: 12px; }
.fitlist__col li {
  font-size: 15px; line-height: 1.55; color: var(--ink);
  padding-left: 22px; position: relative;
}
.fitlist__col--yes li::before {
  content: "→";
  position: absolute; left: 0;
  color: var(--gold);
  font-family: "Familjen Grotesk", sans-serif; font-weight: 500;
}
.fitlist__col--no li::before {
  content: "×";
  position: absolute; left: 2px;
  color: var(--muted);
  font-family: "Familjen Grotesk", sans-serif; font-weight: 600;
}
.obsession-card {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 4.4vw, 72px) clamp(28px, 4vw, 64px);
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.obsession-card::before {
  content: ""; position: absolute;
  top: -120px; right: -120px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(193,144,87,.15), transparent 70%);
  pointer-events: none;
}
.obsession-card .eyebrow { margin-bottom: 16px; }
.obsession-card__title {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 28px;
}
.obsession-card__body { max-width: 640px; margin: 0 auto; }
.obsession-card__body p {
  font-size: 16px; line-height: 1.6; color: var(--muted);
  margin: 0 0 14px;
}
.obsession-card__transition {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-line);
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 500;
  color: var(--gold);
  font-style: italic;
}

/* =====================================================================
   Stepline grid — 3 colonnes alignées (déroulé)
   ===================================================================== */
.stepline-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1100px; margin: 0 auto;
}
@media (max-width: 920px) { .stepline-grid { grid-template-columns: 1fr; } }
.stepline-grid__card {
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.8vw, 36px);
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.stepline-grid__card:hover { border-color: var(--gold-soft); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stepline-grid__num {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 18px; font-weight: 600;
  color: var(--gold);
  background: #fff;
  box-shadow: 0 4px 14px rgba(167,124,0,.18);
  margin-bottom: 6px;
}
.stepline-grid__t {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
}
.stepline-grid__intro {
  font-size: 14px; color: var(--gold); margin: 0 0 4px;
  font-family: "Familjen Grotesk", sans-serif; font-weight: 500;
  font-style: italic;
}
.stepline-grid__list {
  padding: 12px 0 0; margin: 0; list-style: none;
  display: grid; gap: 10px;
  border-top: 1px solid var(--ink-line);
}
.stepline-grid__list li {
  font-size: 14.5px; line-height: 1.55; color: var(--ink);
  padding-left: 20px; position: relative;
}
.stepline-grid__list li::before {
  content: "→"; position: absolute; left: 0;
  color: var(--gold);
  font-family: "Familjen Grotesk", sans-serif; font-weight: 500;
}

/* =====================================================================
   CTA compact — small panel, no halo
   ===================================================================== */
.cta-compact {
  max-width: 760px; margin: 0 auto;
  background: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.4vw, 44px);
  text-align: center;
  position: relative;
}
.cta-compact__inner { position: relative; }
.cta-compact h2 {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.15;
  font-weight: 500;
  color: #fff;
  margin: 0 0 14px;
}
.cta-compact p { color: rgba(255,255,255,.72); font-size: 15px; margin: 0 auto 22px; max-width: 540px; }
.stepline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 8px;
}
.stepline::before {
  content: "";
  position: absolute;
  left: 31px; top: 24px; bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-soft) 100%);
  border-radius: 2px;
}
.stepline__row {
  display: grid; grid-template-columns: 64px 1fr; gap: 24px;
  margin-bottom: 24px;
  align-items: start;
  position: relative;
}
.stepline__row:last-child { margin-bottom: 0; }
.stepline__num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 22px; font-weight: 600;
  color: var(--gold);
  position: relative; z-index: 2;
  box-shadow: 0 4px 14px rgba(167,124,0,.18);
}
.stepline__card {
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-md);
  padding: clamp(20px, 2.2vw, 28px) clamp(22px, 2.4vw, 32px);
  transition: border-color .2s, box-shadow .2s, transform .2s;
  margin-top: 4px;
}
.stepline__card:hover { border-color: var(--gold-soft); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stepline__t {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(18px, 1.55vw, 22px);
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 10px;
}
.stepline__d {
  font-size: 15px; color: var(--muted); line-height: 1.6; margin: 0;
}
@media (max-width: 560px) {
  .stepline::before { left: 23px; }
  .stepline__row { grid-template-columns: 48px 1fr; gap: 16px; }
  .stepline__num { width: 48px; height: 48px; font-size: 18px; }
}
.reality {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) 1.4fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
@media (max-width: 920px) {
  .reality { grid-template-columns: 1fr; gap: 32px; }
}
.reality__intro {
  position: sticky; top: 140px;
  align-self: start;
  display: flex; flex-direction: column; gap: 16px;
}
@media (max-width: 920px) { .reality__intro { position: static; } }
.reality__title { font-family: "Familjen Grotesk", sans-serif; font-size: clamp(24px, 2.4vw, 36px); line-height: 1.1; letter-spacing: -0.02em; font-weight: 500; margin: 0; }
.reality__lede { color: var(--muted); font-size: 15.5px; line-height: 1.6; margin: 0; max-width: 460px; }

.reality__cards { display: grid; gap: 14px; }
.reality-card {
  display: grid; grid-template-columns: 64px 1fr; gap: 20px;
  align-items: start;
  background: linear-gradient(180deg, #F8FAFC 0%, #F1F5FA 100%);
  border: 1px solid rgba(23,51,73,.08);
  border-radius: var(--radius-md);
  padding: clamp(20px, 2.2vw, 28px) clamp(22px, 2.4vw, 32px);
  transition: border-color .2s, transform .2s, box-shadow .25s;
}
.reality-card:hover { border-color: rgba(23,51,73,.18); transform: translateX(-2px); box-shadow: var(--shadow-md); }
.reality-card__num {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 32px; font-weight: 500; line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
  padding-top: 2px;
}
.reality-card__title { font-family: "Familjen Grotesk", sans-serif; font-size: clamp(17px, 1.4vw, 19px); line-height: 1.3; font-weight: 500; color: var(--ink); margin: 0 0 8px; letter-spacing: -0.01em; }
.reality-card__d { font-size: 14.5px; color: var(--muted); line-height: 1.55; margin: 0 0 10px; }
.reality-card__arrow { display: block; font-family: "Familjen Grotesk", sans-serif; font-size: 13.5px; font-weight: 500; color: var(--gold); padding-top: 8px; border-top: 1px dashed var(--ink-line); }
@media (max-width: 560px) { .reality-card { grid-template-columns: 44px 1fr; gap: 14px; padding: 20px; } .reality-card__num { font-size: 24px; } }
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.card {
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.6vw, 32px);
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.card__num {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 32px; font-weight: 500; line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.card__title { font-size: clamp(17px, 1.4vw, 20px); color: var(--ink); margin: 6px 0 2px; }
.card__d { font-size: 14.5px; color: var(--muted); line-height: 1.55; margin: 0; }
.card__arrow {
  margin-top: auto; padding-top: 12px;
  color: var(--gold);
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 14px; font-weight: 500;
}

/* =====================================================================
   Mission block — navy section with centered text
   ===================================================================== */
.mission-block {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.mission-block .eyebrow { margin-bottom: 20px; }
.mission-block__title {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  font-weight: 500;
  color: #fff;
  margin: 0 0 32px;
}
.mission-block__d {
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,.86);
  margin: 0 0 14px;
}
.mission-block__d:last-child { margin-bottom: 0; }
.mission-block__d--gold {
  font-family: "Familjen Grotesk", sans-serif;
  font-weight: 500;
  color: var(--gold);
  font-size: clamp(18px, 1.6vw, 24px);
  margin: 24px 0;
  letter-spacing: -0.01em;
}
.phases {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 920px) { .phases { grid-template-columns: 1fr; } }
.phase {
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.phase:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.phase__num {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 10px;
}
.phase__num::before {
  content: "";
  width: 28px; height: 28px;
  background: var(--gold-tint);
  border-radius: 50%;
  border: 1px solid var(--gold-soft);
}
.phase__num-num {
  font-family: "Familjen Grotesk", sans-serif; font-size: 14px; font-weight: 600;
  position: absolute; margin-left: 9px; margin-top: -2px;
}
.phase__title { font-size: clamp(20px, 1.8vw, 26px); line-height: 1.2; }
.phase__title em { font-family: "Instrument Serif"; font-style: italic; color: var(--gold); font-weight: 400; }
.phase__d { color: var(--muted); font-size: 15px; line-height: 1.55; margin: 0; }
.phase__bullets { padding: 0; margin: 8px 0 0; list-style: none; display: grid; gap: 10px; border-top: 1px solid var(--ink-line); padding-top: 16px; }
.phase__bullets li { font-size: 14px; line-height: 1.5; color: var(--ink); padding-left: 22px; position: relative; }
.phase__bullets li::before { content: "→"; position: absolute; left: 0; color: var(--gold); font-family: "Familjen Grotesk"; font-weight: 500; }
.phase__cta { margin-top: auto; padding-top: 12px; }

/* =====================================================================
   Experience Yumanya — separated subsection
   ===================================================================== */
.exp {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
@media (max-width: 920px) { .exp { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .exp { grid-template-columns: 1fr; } }
.exp__item {
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color .2s, transform .2s;
}
.exp__item:hover { border-color: var(--gold-soft); transform: translateY(-2px); }
.exp__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gold-tint);
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.exp__title { font-size: 17px; line-height: 1.25; margin-bottom: 6px; }
.exp__d { color: var(--muted); font-size: 14px; line-height: 1.55; margin: 0; }

/* =====================================================================
   Two-axis solutions — gauche/droite split
   ===================================================================== */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--ink-line);
}
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }
.split__col { padding: clamp(36px, 4vw, 56px); display: flex; flex-direction: column; gap: 18px; }
.split__col--direct { background: #fff; }
.split__col--indirect { background: var(--ink); color: #fff; border-left: 1px solid var(--ink-line); }
.split__col--indirect h3, .split__col--indirect .split__title { color: #fff; }
.split__col--indirect .split__title em { color: var(--gold); }
.split__col--indirect .split__hook { color: var(--muted-on-ink); }
.split__col--indirect .split__label { color: var(--gold); }
.split__col--indirect .split__levels { border-color: var(--line-on-ink); }
.split__col--indirect .split__level { color: rgba(255,255,255,.92); }
.split__col--indirect .split__level b { color: var(--gold); }
@media (max-width: 820px) { .split__col--indirect { border-left: 0; border-top: 1px solid var(--ink-line); } }
.split__label {
  font-family: "Manrope", sans-serif; font-size: 11.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--gold);
}
.split__title { font-size: clamp(24px, 2.4vw, 34px); line-height: 1.1; }
.split__title em { font-family: "Instrument Serif"; font-style: italic; color: var(--gold); font-weight: 400; }
.split__hook { color: var(--muted); font-size: 15px; line-height: 1.6; margin: 0; max-width: 460px; }
.split__levels {
  display: grid; gap: 10px;
  padding: 18px 0;
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
}
.split__level {
  display: block;
  font-size: 14.5px;
  color: var(--ink);
}
.split__level > b:first-child {
  display: block;
  margin-bottom: 6px;
}
.split__level b { font-family: "Familjen Grotesk"; font-weight: 600; font-size: 13px; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; }
.split__cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin-top: auto; }

/* =====================================================================
   Engagements — 3 cards
   ===================================================================== */
.engagements { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 920px) { .engagements { grid-template-columns: 1fr; } }
.engagement {
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 36px);
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.engagement:hover { border-color: var(--gold-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.engagement__visual {
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  background: var(--gold-gradient-soft);
  margin-bottom: 6px;
  position: relative; overflow: hidden;
  display: block;
}
.engagement__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.compare-viz__svg {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  background: var(--cream);
  display: block;
  overflow: hidden;
}
.compare-col--avec .compare-viz__svg { background: rgba(255,255,255,.04); }
.engagement__num {
  font-family: "Familjen Grotesk";
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold);
}
.engagement__title { font-size: clamp(18px, 1.5vw, 22px); line-height: 1.25; }
.engagement__d { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin: 0; }

/* =====================================================================
   Impact table — Sans vs Avec — KPI grid à la scalezia.co
   ===================================================================== */
.impact-table {
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  max-width: 920px;
  margin: 0 auto;
}
.impact-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-top: 1px solid var(--ink-line);
}
.impact-row:first-child { border-top: 0; }
.impact-row:hover:not(.impact-row--head) { background: var(--cream); }
.impact-row--head {
  background: var(--mist);
}
.impact-row--head:hover { background: var(--mist); }
.impact-cell {
  padding: 12px clamp(14px, 1.6vw, 22px);
  display: flex; flex-direction: column; justify-content: center; gap: 2px;
  border-left: 1px solid var(--ink-line);
}
.impact-cell:first-child { border-left: 0; }
.impact-cell--label b {
  font-family: "Familjen Grotesk", sans-serif; font-weight: 500;
  font-size: 14px; line-height: 1.25; color: var(--ink);
  letter-spacing: -0.005em;
}
.impact-cell--label small {
  font-family: "Manrope", sans-serif; font-size: 11.5px; color: var(--muted); line-height: 1.35;
}
.impact-cell--sans { background: rgba(95,110,124,.03); }
.impact-cell--avec { background: rgba(167,124,0,.04); }
.impact-row--head .impact-cell { padding: 10px clamp(14px, 1.6vw, 22px); justify-content: center; align-items: flex-start; }
.impact-row--head .impact-cell--sans, .impact-row--head .impact-cell--avec { background: transparent; }

.impact-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: "Manrope", sans-serif; font-size: 10.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
}
.impact-tag--sans { background: rgba(95,110,124,.12); color: var(--muted); }
.impact-tag--avec { background: var(--gold-tint); color: var(--gold); border: 1px solid var(--gold-soft); }

.impact-val {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 14px; font-weight: 500;
  line-height: 1.25;
}
.impact-val--sans { color: var(--muted); text-decoration: line-through; text-decoration-color: rgba(95,110,124,.4); text-decoration-thickness: 1px; }
.impact-val--avec { color: var(--ink); font-weight: 600; position: relative; padding-left: 18px; }
.impact-val--avec::before {
  content: "→";
  position: absolute; left: 0; top: 0;
  color: var(--gold); font-weight: 500;
}

@media (max-width: 820px) {
  .impact-row { grid-template-columns: 1fr; }
  .impact-cell { border-left: 0; border-top: 1px solid var(--ink-line); padding: 12px 16px; }
  .impact-cell:first-child { border-top: 0; background: var(--mist); }
  .impact-row--head { display: none; }
  .impact-cell--sans::before { content: "Sans Yumanya"; display: block; font-family: "Manrope"; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); margin-bottom: 4px; }
  .impact-cell--avec::before { content: "Avec Yumanya"; display: block; font-family: "Manrope"; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gold); margin-bottom: 4px; }
}
.compare-viz {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  align-items: stretch;
}
@media (max-width: 820px) { .compare-viz { grid-template-columns: 1fr; } }
.compare-col {
  background: #fff; border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 18px;
}
.compare-col--avec { background: var(--ink); color: #fff; border-color: var(--ink); }
.compare-col h3 { font-size: clamp(20px, 1.8vw, 26px); margin: 0; }
.compare-col--avec h3 { color: #fff; }
.compare-col__lede { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin: 0; }
.compare-col--avec .compare-col__lede { color: var(--muted-on-ink); }

.compare-list { padding: 0; margin: 0; list-style: none; display: grid; gap: 8px; }
.compare-list li { font-size: 14.5px; line-height: 1.45; padding-left: 22px; position: relative; }
.compare-list li::before {
  content: "→";
  position: absolute; left: 0;
  font-family: "Familjen Grotesk", sans-serif; font-weight: 500;
}
.compare-col--sans .compare-list li::before { content: "—"; color: var(--muted-2); }
.compare-col--avec .compare-list li::before { color: var(--gold-2); }

/* =====================================================================
   Process steps — 4 numbered horizontal with arrows
   ===================================================================== */
.process {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  align-items: start;
  position: relative;
}
@media (max-width: 920px) { .process { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }
.process__step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.process__step + .process__step::before {
  content: "→";
  position: absolute;
  left: -10px; top: 16px;
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 22px; color: var(--gold);
  font-weight: 500;
}
@media (max-width: 920px) {
  .process__step + .process__step::before { display: none; }
}
.process__num {
  font-family: "Instrument Serif", serif; font-style: normal;
  font-size: clamp(38px, 3.8vw, 52px); font-weight: 400;
  color: var(--ink); line-height: 1;
  margin-bottom: 16px;
}
.process__title {
  font-family: "Familjen Grotesk", sans-serif; font-weight: 600;
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--ink);
  margin-bottom: 12px;
}
.process__d { font-size: 14px; color: var(--muted); line-height: 1.55; margin: 0; max-width: 240px; margin-left: auto; margin-right: auto; }

/* =====================================================================
   Testimonials v2 — stars + photo + LinkedIn + result badge
   ===================================================================== */
.testimonial__stars {
  display: flex; gap: 2px; color: var(--gold);
  font-size: 16px;
}
.testimonial__stars::before { content: "★★★★★"; letter-spacing: 1px; }
.testimonial__linkedin {
  position: absolute; top: 24px; right: 24px;
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 4px;
  background: #0a66c2;
  color: #fff;
}
.testimonial { position: relative; }
.testimonial__avatar-img {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--cream-2);
  border: 1px solid var(--ink-line);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Familjen Grotesk", sans-serif; font-weight: 600;
  font-size: 18px; color: var(--ink);
  overflow: hidden;
}
.testimonial__avatar-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 920px) { .testimonials { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.testimonial:hover { border-color: var(--gold-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.testimonial__result {
  display: inline-flex; align-items: baseline; gap: 6px;
  padding: 6px 12px;
  background: #E7F5EE;
  color: #146C43;
  border-radius: 999px;
  align-self: flex-start;
  font-family: "Manrope", sans-serif; font-size: 12.5px; font-weight: 600;
}
.testimonial__result-num { font-family: "Familjen Grotesk"; font-size: 14px; font-weight: 700; color: #146C43; letter-spacing: -0.01em; }
.testimonial__quote {
  font-size: 15.5px; line-height: 1.55;
  color: var(--ink); flex: 1; margin: 0;
}
.testimonial__quote::before { content: "« "; color: var(--gold); }
.testimonial__quote::after { content: " »"; color: var(--gold); }
.testimonial__author { display: grid; grid-template-columns: 56px 1fr; gap: 14px; align-items: center; padding-top: 18px; border-top: 1px solid var(--ink-line); }
.testimonial__name { font-family: "Familjen Grotesk"; font-weight: 500; font-size: 15px; line-height: 1.2; color: var(--ink); }
.testimonial__role { font-size: 13px; color: var(--muted); margin-top: 2px; line-height: 1.4; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { display: grid; grid-template-columns: 1fr 1.8fr; gap: clamp(32px, 4vw, 64px); align-items: start; }
@media (max-width: 920px) { .faq { grid-template-columns: 1fr; } }
.faq__list { border-top: 1px solid var(--ink-line-strong); }
.faq__item { border-bottom: 1px solid var(--ink-line); }
.faq__q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 22px 0;
  font-family: "Familjen Grotesk", sans-serif; font-weight: 500; font-size: clamp(15px, 1.2vw, 17px); letter-spacing: -0.008em;
  color: var(--ink);
}
.faq__plus { width: 22px; height: 22px; flex-shrink: 0; position: relative; }
.faq__plus::before, .faq__plus::after { content: ""; position: absolute; background: var(--ink); transition: transform .25s ease, background .2s; }
.faq__plus::before { top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%); }
.faq__plus::after { left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%); }
.faq__item.is-open .faq__plus::after { transform: translateX(-50%) rotate(90deg); }
.faq__item.is-open .faq__plus::before,
.faq__item.is-open .faq__plus::after { background: var(--gold); }
.faq__a { display: none; padding: 0 0 24px; max-width: 760px; color: var(--ink); font-size: 14.5px; line-height: 1.65; }
.faq__a p { margin: 0 0 0.8em; }
.faq__item.is-open .faq__a { display: block; }

/* =====================================================================
   CTA strip — final, élégant
   ===================================================================== */
.cta-final {
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 6vw, 96px) clamp(28px, 4vw, 72px);
  text-align: center;
  position: relative; overflow: hidden;
  color: #fff;
}
.cta-final::before, .cta-final::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-final::before {
  left: -160px; top: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(193,144,87,.45), transparent 60%);
  filter: blur(20px);
}
.cta-final::after {
  right: -180px; bottom: -150px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(240,216,138,.35), rgba(167,124,0,.15) 40%, transparent 70%);
  filter: blur(28px);
}
.cta-final__pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: -1px -1px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 0%, transparent 75%);
}
.cta-final__inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.cta-final h2 { font-size: clamp(28px, 3.6vw, 50px); line-height: 1.05; margin: 8px 0 18px; color: #fff; }
.cta-final h2 em {
  font-family: "Instrument Serif"; font-style: italic; font-weight: 400;
  background: var(--gold-gradient);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.cta-final .eyebrow { color: var(--gold-2); }
.cta-final .eyebrow::before { background: var(--gold-gradient); }
.cta-final p { color: rgba(255,255,255,.78); font-size: 16px; max-width: 580px; margin: 0 auto 28px; }
.cta-final__meta { font-size: 13px; color: rgba(255,255,255,.6); margin: 14px 0 0; }
.cta-final__meta b { color: #fff; font-weight: 600; }

/* =====================================================================
   Footer — refined, organized, large logo
   ===================================================================== */
.footer {
  background: var(--ink); color: #fff;
  padding: clamp(56px, 7vw, 96px) 0 32px;
}
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.9fr 1fr;
  gap: 32px;
}
.footer__brand img { height: 32px; width: auto; max-width: 100%; margin-bottom: 12px; display: block; }
.footer__brand { text-align: left; }
.footer__brand p { text-align: left !important; }
.footer__brand p { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.6; max-width: 380px; margin: 0 0 18px; text-align: justify; }
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__h {
  font-family: "Familjen Grotesk", sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-2);
  margin-bottom: 12px;
}
.footer__h--link {
  display: block;
  color: var(--gold-2) !important;
  margin-bottom: 14px !important;
  text-decoration: none;
  transition: color .15s;
}
.footer__h--link:hover { color: #fff !important; }
.footer__links a { color: rgba(255,255,255,.82); font-size: 14px; padding: 3px 0; transition: color .15s; }
.footer__links a.footer__link-ven {
  color: var(--gold) !important;
  font-family: "Familjen Grotesk", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 13px;
}
.footer__links a.footer__link-ven:hover { color: var(--gold-2) !important; }
.footer__links a:hover { color: var(--gold-2); }
.footer__cta-block { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.footer__cta-block p { color: rgba(255,255,255,.6); font-size: 13px; line-height: 1.5; max-width: 220px; margin: 0; }
.footer__social { display: flex; gap: 8px; margin-top: 8px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-on-ink-strong);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, color .2s;
}
.footer__social a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.footer__legal {
  max-width: var(--maxw); margin: 56px auto 0; padding: 24px var(--pad-x) 0;
  border-top: 1px solid var(--line-on-ink);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,.55);
}
.footer__legal a { color: rgba(255,255,255,.7); }
.footer__legal a:hover { color: #fff; }
@media (max-width: 920px) { .footer__inner { grid-template-columns: 1fr 1fr; } .footer__brand { grid-column: 1 / -1; } }
@media (max-width: 620px) { .footer__inner { grid-template-columns: 1fr; } }

/* =====================================================================
   Cookies banner
   ===================================================================== */
.cookies {
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  z-index: 110;
  background: #fff; border: 1px solid var(--ink-line);
  border-radius: var(--radius-md); padding: 18px 22px;
  display: grid; grid-template-columns: 1.5fr auto; gap: 18px; align-items: center;
  box-shadow: var(--shadow-lg);
  max-width: 1000px; margin: 0 auto;
}
.cookies p { margin: 0; font-size: 14px; line-height: 1.5; }
.cookies p b { font-family: "Familjen Grotesk"; font-weight: 500; }
.cookies__actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookies.is-hidden { display: none; }
@media (max-width: 680px) { .cookies { grid-template-columns: 1fr; } }

/* =====================================================================
   Modal — pré-qualif + Calendly
   ===================================================================== */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 16px; }
.modal.is-open { display: flex; }
.modal__overlay { position: absolute; inset: 0; background: rgba(23,51,73,.6); backdrop-filter: blur(6px); }
.modal__sheet {
  position: relative;
  background: #fff; border-radius: var(--radius-lg);
  width: 100%; max-width: 720px;
  max-height: 92vh; overflow: auto;
  padding: clamp(28px, 3vw, 40px);
}
.modal__close { position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--ink-line); display: inline-flex; align-items: center; justify-content: center; }
.modal__close::before, .modal__close::after { content: ""; position: absolute; width: 14px; height: 1.5px; background: var(--ink); }
.modal__close::before { transform: rotate(45deg); } .modal__close::after { transform: rotate(-45deg); }
.modal__step { display: none; }
.modal__step.is-active { display: block; }
.modal__progress { display: flex; gap: 6px; margin: 12px 0 24px; }
.modal__progress span { flex: 1; height: 3px; border-radius: 999px; background: var(--cream-2); }
.modal__progress span.is-active { background: var(--gold-gradient); }
.modal__field { display: block; margin: 18px 0; }
.modal__field > label { display: block; font-family: "Familjen Grotesk", sans-serif; font-weight: 500; font-size: 14px; margin-bottom: 10px; color: var(--ink); }
.modal__opts { display: grid; gap: 8px; }
.modal__opt {
  display: block; padding: 12px 16px; border-radius: 12px;
  border: 1px solid var(--ink-line); font-size: 14.5px; cursor: pointer;
  transition: border-color .15s, background .15s;
}
.modal__opt:hover { border-color: var(--ink); }
.modal__opt input { display: none; }
.modal__opt.is-checked { border-color: var(--gold); background: var(--gold-tint); }
.modal__field input, .modal__field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--ink-line); border-radius: 12px;
  font: inherit; background: #fff; color: var(--ink);
}
.modal__field input:focus, .modal__field textarea:focus { outline: none; border-color: var(--ink); }
.modal__nav { display: flex; justify-content: space-between; gap: 12px; margin-top: 28px; }
.calendly-slot {
  margin-top: 20px; padding: 32px;
  border: 1px dashed var(--ink-line-strong); border-radius: 14px;
  text-align: center; color: var(--muted); font-size: 14px;
  background: var(--cream);
}

/* =====================================================================
   Utility
   ===================================================================== */
.divider { height: 1px; background: var(--ink-line); margin: 0; }
.row { display: flex; gap: 12px; flex-wrap: wrap; }
.row--center { justify-content: center; }
.text-center { text-align: center; }
.gold-rule { width: 56px; height: 2px; background: var(--gold-gradient); }
.page-hero { padding: clamp(56px, 7vw, 120px) 0 clamp(36px, 4vw, 64px); }
.page-hero h1 { max-width: 1100px; margin: 18px 0 24px; }
.page-hero .lede { max-width: 860px; }
.page-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-top: 28px; }

/* =====================================================================
   Method page — additions (gold-outline buttons, sprint cards, DWY/DFY,
   piliers timeline, network block, rhythm grid)
   ===================================================================== */
.btn--gold-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--ink);
  font-weight: 600;
}
.btn--gold-outline:hover {
  background: var(--ink);
  color: var(--gold-2);
  border-color: var(--ink);
}
.btn--sm { padding: 9px 16px; font-size: 13px; }

.stepline__kicker {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 6px;
}
.stepline__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }

.sprint-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 920px) { .sprint-grid { grid-template-columns: 1fr; } }
.sprint-card {
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.6vw, 32px);
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.sprint-card:hover { border-color: var(--gold-soft); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sprint-card--featured { background: var(--ink); color: #fff; border-color: var(--ink); }
.sprint-card--featured h3, .sprint-card--featured .sprint-card__intro, .sprint-card--featured ul li, .sprint-card--featured .sprint-card__keyasset p { color: rgba(255,255,255,.92); }
.sprint-card--featured .sprint-card__keyasset { background: rgba(255,255,255,.06); border-color: var(--line-on-ink); }
.sprint-card--featured .sprint-card__num { color: var(--gold); }
.sprint-card--featured .sprint-card__label { color: var(--gold-2); }
.sprint-card__num {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--gold);
}
.sprint-card__t {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500; letter-spacing: -0.02em;
  color: var(--ink); margin: 0;
}
.sprint-card__intro { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin: 0; }
.sprint-card__section ul { padding: 0; margin: 8px 0 0; list-style: none; display: grid; gap: 8px; }
.sprint-card__section ul li { font-size: 14px; line-height: 1.5; padding-left: 18px; position: relative; }
.sprint-card__section ul li::before { content: "→"; position: absolute; left: 0; color: var(--gold); font-family: "Familjen Grotesk"; font-weight: 500; }
.sprint-card__label {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gold);
  display: block; margin-bottom: 8px;
}
.sprint-card__keyasset {
  margin-top: auto;
  padding: 16px;
  background: var(--gold-tint);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-sm);
}
.sprint-card__keyasset p { font-size: 13.5px; line-height: 1.55; margin: 0; color: var(--ink); }

.sprint-synth {
  max-width: 880px; margin: 48px auto 0;
  text-align: center;
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
}

.dwy-dfy {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: 1100px; margin: 0 auto;
}
@media (max-width: 820px) { .dwy-dfy { grid-template-columns: 1fr; } }
.dwy-dfy__col {
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.dwy-dfy__col:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.dwy-dfy__col--alt { background: var(--cream); border-color: var(--gold-soft); }
.dwy-dfy__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.dwy-dfy__pill {
  display: inline-flex; padding: 6px 14px;
  background: var(--gold); color: var(--ink);
  border-radius: 999px;
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
}
.dwy-dfy__code { font-family: "Manrope", sans-serif; font-size: 12px; color: var(--muted); font-weight: 500; }
.dwy-dfy__t {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 500; letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 14px;
}
.dwy-dfy__d { font-size: 15px; line-height: 1.6; color: var(--ink); margin: 0 0 16px; }
.dwy-dfy__list { padding: 16px 0 0; margin: 0; list-style: none; display: grid; gap: 10px; border-top: 1px solid var(--ink-line); }
.dwy-dfy__list li { font-size: 14.5px; line-height: 1.55; padding-left: 22px; position: relative; }
.dwy-dfy__list li::before { content: "→"; position: absolute; left: 0; color: var(--gold); font-family: "Familjen Grotesk"; font-weight: 500; }
.dwy-dfy__note {
  text-align: center;
  margin: 28px auto 0;
  max-width: 720px;
  font-size: 13px; color: var(--muted);
  font-style: italic;
}

.piliers { display: grid; gap: 0; max-width: 1080px; margin: 0 auto; }
.pilier { display: grid; grid-template-columns: 80px 1fr; gap: 32px; padding: clamp(32px, 4vw, 56px) 0; align-items: start; }
@media (max-width: 720px) { .pilier { grid-template-columns: 56px 1fr; gap: 18px; } }
.pilier__bullet { position: relative; display: flex; flex-direction: column; align-items: center; height: 100%; }
.pilier__num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--ink); color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 20px; font-weight: 600;
  letter-spacing: -0.02em;
  border: 2px solid var(--gold);
  box-shadow: 0 6px 18px rgba(167,124,0,.22);
  position: relative; z-index: 2;
  flex-shrink: 0;
}
@media (max-width: 720px) { .pilier__num { width: 48px; height: 48px; font-size: 16px; } }
.pilier__line {
  flex: 1;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-soft) 100%);
  margin-top: 12px;
  margin-bottom: -12px;
}
.pilier:last-child .pilier__line { display: none; }
.pilier__body { padding-top: 8px; }
.pilier__t {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500; letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.15;
}
.pilier__intro {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 28px;
}
.pilier__intro em { color: var(--gold); }
.pilier__cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
@media (max-width: 720px) { .pilier__cards { grid-template-columns: 1fr; } }
.pilier-card {
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex; flex-direction: column; gap: 6px;
  transition: border-color .2s, transform .2s;
}
.pilier-card:hover { border-color: var(--gold-soft); transform: translateY(-2px); }
.pilier-card__icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--gold-tint);
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
}
.pilier-card b {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 15px; font-weight: 600;
  color: var(--ink);
}
.pilier-card small { font-family: "Manrope", sans-serif; font-size: 13px; color: var(--muted); line-height: 1.5; }
.pilier__synth {
  margin-top: 32px;
  padding: 22px 26px;
  border-left: 3px solid var(--gold);
  background: var(--cream);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 15px; line-height: 1.65;
  color: var(--ink);
  font-family: "Familjen Grotesk", sans-serif;
  font-weight: 400;
}
.pilier__synth em { color: var(--gold); }

.binome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
@media (max-width: 720px) { .binome-grid { grid-template-columns: 1fr; } }
.binome-card {
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-md);
  padding: 24px;
}
.binome-card__role {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--gold); margin-bottom: 8px;
}
.binome-card__t {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink); margin: 0 0 10px;
}
.binome-card p { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0 0 12px; }
.binome-card__meta { font-size: 13px; color: var(--gold); font-weight: 500; font-style: italic; }

.network-block {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  margin-bottom: 28px;
}
.network-block__t {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500; letter-spacing: -0.02em;
  color: #fff; margin: 0 0 14px; line-height: 1.2;
}
.network-block__t em { color: var(--gold); }
.network-block__intro { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.78); margin: 0 0 22px; }
.network-block__d { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.66); margin: 22px 0 0; font-style: italic; }
.network-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.network-tag {
  display: inline-flex;
  padding: 8px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--line-on-ink-strong);
  border-radius: 999px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.86);
  font-weight: 500;
}

.rhythm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 720px) { .rhythm-grid { grid-template-columns: 1fr; } }
.rhythm-card {
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-md);
  padding: 22px;
  border-left: 3px solid var(--gold);
}
.rhythm-card__when {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 11.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gold); margin-bottom: 8px;
}
.rhythm-card__t {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 16px; font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink); margin: 0 0 6px;
}
.rhythm-card p { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0; }

.cta-final__sub {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  font-style: italic;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Sprint chooser — 2 mini-cards to direct/indirect sprint pages */
.sprint-chooser {
  max-width: 880px; margin: 40px auto 0;
  display: flex; flex-direction: column; gap: 16px; align-items: center;
}
.sprint-chooser__label {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--muted);
}
.sprint-chooser__cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  width: 100%;
}
@media (max-width: 720px) { .sprint-chooser__cards { grid-template-columns: 1fr; } }
.sprint-chooser__card {
  display: grid; grid-template-columns: 1fr auto; gap: 14px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  transition: border-color .2s, transform .2s, box-shadow .2s, background .2s;
}
.sprint-chooser__card:hover {
  border-color: var(--gold);
  background: var(--gold-tint);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.sprint-chooser__tag {
  display: inline-block;
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 10.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 6px;
}
.sprint-chooser__card b {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 17px; font-weight: 600;
  color: var(--ink);
  display: block;
  letter-spacing: -0.012em;
}
.sprint-chooser__card small {
  font-family: "Manrope", sans-serif;
  font-size: 13.5px;
  color: var(--muted);
  display: block;
  margin-top: 2px;
}
.sprint-chooser__arrow {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 22px;
  color: var(--gold);
  font-weight: 500;
  transition: transform .2s;
}
.sprint-chooser__card:hover .sprint-chooser__arrow { transform: translateX(4px); }

/* Sprint chooser, hero variant — smaller margin, tighter */
.sprint-chooser--hero { margin-top: 28px; }
.sprint-chooser--hero .sprint-chooser__cards { max-width: 720px; margin: 0 auto; }

/* Symptoms grid (revenue-sprints) */
.symptoms {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
  max-width: 1200px; margin: 0 auto;
}
@media (max-width: 980px) { .symptoms { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .symptoms { grid-template-columns: 1fr; } }
.symptom {
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.symptom:hover { border-color: var(--gold-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.symptom__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gold-tint);
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
}
.symptom p { font-size: 14.5px; line-height: 1.55; color: var(--ink); margin: 0; }

/* Sprintv — vertical-style 3 sprint cards */
.sprintv {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 1240px; margin: 0 auto;
}
@media (max-width: 920px) { .sprintv { grid-template-columns: 1fr; } }
.sprintv__card {
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.6vw, 32px);
  display: flex; flex-direction: column; gap: 18px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.sprintv__card:hover { border-color: var(--gold-soft); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.sprintv__card--featured { background: var(--ink); color: #fff; border-color: var(--ink); }
.sprintv__card--featured h3, .sprintv__card--featured .sprintv__d, .sprintv__card--featured ul li, .sprintv__card--featured .sprintv__transition p { color: rgba(255,255,255,.92); }
.sprintv__card--featured .sprintv__transition { background: rgba(255,255,255,.06); border-color: var(--line-on-ink); }
.sprintv__head { display: flex; align-items: baseline; gap: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--ink-line); }
.sprintv__card--featured .sprintv__head { border-bottom-color: var(--line-on-ink); }
.sprintv__num {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 11.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--gold);
}
.sprintv__name {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 16px; font-weight: 600;
  color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.sprintv__card--featured .sprintv__name { color: var(--gold-2); }
.sprintv__t {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(19px, 1.7vw, 23px);
  font-weight: 500; letter-spacing: -0.018em;
  line-height: 1.2;
  color: var(--ink); margin: 0;
}
.sprintv__section { display: flex; flex-direction: column; gap: 6px; }
.sprintv__label {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gold);
}
.sprintv__card--featured .sprintv__label { color: var(--gold-2); }
.sprintv__d { font-size: 14.5px; line-height: 1.55; color: var(--ink); margin: 0; }
.sprintv__section ul { padding: 0; margin: 4px 0 0; list-style: none; display: grid; gap: 8px; }
.sprintv__section ul li { font-size: 14px; line-height: 1.5; padding-left: 18px; position: relative; }
.sprintv__section ul li::before { content: "→"; position: absolute; left: 0; color: var(--gold); font-family: "Familjen Grotesk"; font-weight: 500; }
.sprintv__transition {
  margin-top: auto;
  padding: 14px 18px;
  background: var(--gold-tint);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-sm);
  display: flex; flex-direction: column; gap: 6px;
}
.sprintv__transition p { font-size: 13px; line-height: 1.55; margin: 0; color: var(--ink); font-style: italic; }

/* Reasons grid — Pourquoi choisir */
.reasons {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 1200px; margin: 0 auto;
}
@media (max-width: 920px) { .reasons { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .reasons { grid-template-columns: 1fr; } }
.reason {
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.reason:hover { border-color: var(--gold-soft); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.reason__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gold-tint);
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
}
.reason__t {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink); margin: 0;
}
.reason__d { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin: 0; }

/* Mobile menu open state (replaces inline-style approach) */
@media (max-width: 1080px) {
  .nav__menu.is-open {
    display: flex !important;
    position: fixed;
    top: 90px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--ink-line);
    border-radius: 18px;
    padding: 14px;
    gap: 2px;
    box-shadow: var(--shadow-lg);
    z-index: 70;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
  }
  .nav__menu.is-open .nav__item { width: 100%; }
  .nav__menu.is-open .nav__link {
    display: flex; justify-content: space-between; width: 100%;
    padding: 14px 16px;
    font-size: 16px;
  }
  .nav__menu.is-open .nav__dropdown,
  .nav__menu.is-open .nav__dropdown--wide {
    position: static !important;
    display: block !important;
    grid-template-columns: 1fr;
    transform: none;
    width: 100%;
    min-width: 0;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--ink-line);
    border-radius: 0;
    padding: 8px 8px 12px;
    margin: 0;
    background: transparent;
  }
  .nav__menu.is-open .nav__dropdown--wide .nav__dd-col {
    padding: 8px 8px;
  }
  .nav__menu.is-open .nav__dropdown--wide .nav__dd-col + .nav__dd-col {
    border-left: 0;
    border-top: 1px solid var(--ink-line);
    margin-top: 6px;
    padding-top: 14px;
  }
}

.symptoms__synth {
  max-width: 880px; margin: 48px auto 0;
  text-align: center;
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 500;
}

/* Reason cards — italic accroche + arrow detail line */
.reason__d--italic {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-size: 16px;
  color: var(--gold);
  margin: 0 0 14px;
  line-height: 1.4;
}
.reason__d--arrow {
  font-size: 14.5px; line-height: 1.55; color: var(--muted);
  margin: 0; padding-left: 22px; position: relative;
}
.reason__d--arrow::before {
  content: "→";
  position: absolute; left: 0; top: 0;
  color: var(--gold);
  font-family: "Familjen Grotesk", sans-serif;
  font-weight: 500;
}

/* =====================================================================
   À propos — hero intro, callouts, actes, market, compare-pair,
   commits, founder-kpis, network-tag--light, engagement-rows
   ===================================================================== */
.apropos-intro {
  max-width: 720px; margin: 28px auto 0;
  display: grid; gap: 8px;
}
.apropos-intro p {
  font-size: clamp(16px, 1.2vw, 19px);
  color: var(--muted); line-height: 1.5; margin: 0;
}
.apropos-pivot {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  color: var(--ink);
  margin: 32px auto 0;
  max-width: 780px;
  font-weight: 500;
}
.apropos-pivot--strong {
  font-size: clamp(20px, 1.9vw, 26px);
  text-align: center;
}

/* Symptom wide block */
.symptom-wide {
  background: #fff;
  border: 1px solid var(--ink-line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  display: grid; grid-template-columns: 56px 1fr; gap: 24px;
  align-items: start;
  max-width: 1100px; margin: 0 auto 24px;
}
.symptom-wide__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--gold-tint);
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
}
.symptom-wide__t {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.25;
}
.symptom-wide__d {
  font-size: 15px; line-height: 1.6; color: var(--ink); margin: 0 0 10px;
}
.symptom-wide__d--arrow {
  color: var(--gold);
  font-family: "Familjen Grotesk", sans-serif;
  font-weight: 500;
}

/* Symptoms grid for the smaller 5 cards */
.symptoms-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 1200px; margin: 0 auto;
}
@media (max-width: 920px) { .symptoms-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .symptoms-grid { grid-template-columns: 1fr; } }
.symptoms-grid .symptom {
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.symptoms-grid .symptom:hover { border-color: var(--gold-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.symptoms-grid .symptom__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--gold-tint);
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
}
.symptoms-grid .symptom__t {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 16px; font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink); margin: 0;
  line-height: 1.3;
}
.symptoms-grid .symptom__d { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0; }

.apropos-callout {
  max-width: 880px;
  margin: 48px auto 0;
  padding: clamp(28px, 3vw, 40px);
  background: var(--gold-tint);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-lg);
  text-align: center;
}
.apropos-callout p {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 14px;
  font-weight: 400;
}
.apropos-callout p:last-child { margin-bottom: 0; }
.apropos-callout__sign {
  font-weight: 600 !important;
  color: var(--gold) !important;
  font-size: clamp(15px, 1.3vw, 18px) !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Actes (4 cards) */
.actes {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  max-width: 1200px; margin: 0 auto;
}
@media (max-width: 920px) { .actes { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .actes { grid-template-columns: 1fr; } }
.acte {
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.acte:hover { border-color: var(--gold-soft); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.acte__num {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 28px; font-weight: 500; letter-spacing: -0.02em;
  color: var(--gold);
  line-height: 1;
}
.acte__name {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--ink);
}
.acte__t {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 16px; font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink); margin: 0;
  line-height: 1.3;
}
.acte__d { font-size: 14px; line-height: 1.55; color: var(--muted); margin: 0; }

/* Market — 3 prestataires types */
.market {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 1100px; margin: 0 auto;
}
@media (max-width: 820px) { .market { grid-template-columns: 1fr; } }
.market__card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-on-ink-strong);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.market__name {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 500;
  letter-spacing: -0.012em;
  color: #fff;
}
.market__role {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--gold);
}
.market__d {
  font-size: 14.5px; line-height: 1.6; color: rgba(255,255,255,.78); margin: 8px 0 0;
}

/* Compare pair — 2 problem cols */
.compare-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  max-width: 1100px; margin: 0 auto;
}
@media (max-width: 820px) { .compare-pair { grid-template-columns: 1fr; } }
.compare-pair__col {
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-md);
  padding: 28px;
}
.compare-pair__col--problem {
  border-top: 3px solid var(--gold);
}
.compare-pair__head {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--ink-line);
}
.compare-pair__col ul {
  padding: 0; margin: 0; list-style: none; display: grid; gap: 12px;
}
.compare-pair__col li {
  font-size: 14.5px; line-height: 1.6;
  padding-left: 22px; position: relative;
  color: var(--ink);
}
.compare-pair__col li::before {
  content: "—";
  position: absolute; left: 0;
  color: var(--muted);
  font-weight: 400;
}

/* Commit grid */
.commit-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  max-width: 1100px; margin: 0 auto;
}
@media (max-width: 760px) { .commit-grid { grid-template-columns: 1fr; } }
.commit {
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.commit:hover { border-color: var(--gold-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.commit__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gold-tint);
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
}
.commit__t {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink); margin: 0;
}
.commit__d { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0; }

/* Founder block — extended */
.founder__body {
  font-size: 15px; line-height: 1.65; color: var(--ink); margin: 14px 0 0;
}
.founder__body--em {
  font-family: "Familjen Grotesk", sans-serif;
  font-weight: 500;
  color: var(--ink);
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin-top: 20px;
}
.founder__photo {
  aspect-ratio: 4/5; max-width: 420px; width: 100%;
  border-radius: var(--radius-md); overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--ink-line);
}
.founder__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

.founder-kpis {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  max-width: 1000px; margin: 56px auto 0;
}
@media (max-width: 720px) { .founder-kpis { grid-template-columns: 1fr 1fr; } }
.founder-kpi {
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-md);
}
.founder-kpi b {
  display: block;
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.founder-kpi span { font-size: 13px; color: var(--muted); line-height: 1.4; }

/* VEN KPIs */
.ven-kpis {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  max-width: 880px; margin: 0 auto;
}
@media (max-width: 720px) { .ven-kpis { grid-template-columns: 1fr; } }
.ven-kpi {
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-md);
}
.ven-kpi b {
  display: block;
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(36px, 3.2vw, 48px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.ven-kpi span { font-size: 14px; color: var(--muted); line-height: 1.4; }

/* Network tag, light variant */
.network-tag--light {
  background: #fff;
  border-color: var(--ink-line);
  color: var(--ink);
}

/* Engagements list — numbered rows */
.engagement-list {
  display: grid; gap: 0;
  max-width: 920px; margin: 0 auto;
}
.engagement-row {
  display: grid; grid-template-columns: 80px 1fr; gap: 24px;
  padding: clamp(20px, 2.4vw, 28px) 0;
  border-bottom: 1px solid var(--ink-line);
  align-items: start;
}
.engagement-row:first-child { border-top: 1px solid var(--ink-line); }
.engagement-row__num {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--gold);
  line-height: 1;
}
.engagement-row__t {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.25;
}
.engagement-row__d { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; max-width: 720px; }
@media (max-width: 540px) { .engagement-row { grid-template-columns: 56px 1fr; gap: 16px; } .engagement-row__num { font-size: 28px; } }

/* =====================================================================
   À propos v2 — pivot gold, white box, observe layout, blueprint bg,
   build cards, founder reverse
   ===================================================================== */

/* Hero gold pivot phrase */
.apropos-pivot--gold {
  margin: 36px auto 0;
  text-align: center;
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.3;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  max-width: 880px;
}

/* Hero white box */
.apropos-final-box {
  max-width: 760px;
  margin: 28px auto 0;
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-md);
  padding: clamp(24px, 2.6vw, 32px) clamp(24px, 3vw, 40px);
  box-shadow: var(--shadow-md);
}
.apropos-final-box p {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 8px;
  font-weight: 400;
}
.apropos-final-box p:last-child { margin-bottom: 0; }
.apropos-final-box b { font-weight: 600; }

/* Observe layout: intro left (sticky) + cards right */
.observe-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) 1.4fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
@media (max-width: 920px) { .observe-layout { grid-template-columns: 1fr; } }
.observe-intro {
  position: sticky; top: 140px;
  align-self: start;
  display: flex; flex-direction: column; gap: 14px;
}
@media (max-width: 920px) { .observe-intro { position: static; } }
.observe-intro__title {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.1; letter-spacing: -0.02em; font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.observe-intro__lede {
  color: var(--muted);
  font-size: 15px; line-height: 1.6;
  margin: 0 0 12px;
  max-width: 460px;
}

/* Featured lead card */
.observe-intro__lead-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
  overflow: hidden;
}
.observe-intro__lead-card::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(193,144,87,.3), transparent 70%);
  pointer-events: none;
}
.observe-intro__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(193,144,87,.15);
  border: 1px solid rgba(193,144,87,.4);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  position: relative;
}
.observe-intro__lead-card h3 {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 17px; font-weight: 500;
  letter-spacing: -0.012em;
  color: #fff; margin: 0;
  line-height: 1.3;
  position: relative;
}
.observe-intro__lead-card p {
  font-size: 14px; line-height: 1.55;
  color: rgba(255,255,255,.78);
  margin: 0;
  position: relative;
}
.observe-intro__arrow {
  color: var(--gold) !important;
  font-family: "Familjen Grotesk", sans-serif;
  font-weight: 500;
  border-top: 1px dashed var(--line-on-ink);
  padding-top: 10px;
  margin-top: 4px !important;
}

/* Observe cards (right column) */
.observe-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 620px) { .observe-cards { grid-template-columns: 1fr; } }
.observe-card {
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.observe-card:hover { border-color: var(--gold-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.observe-card--wide { grid-column: 1 / -1; background: var(--cream); border-color: var(--gold-soft); }
.observe-card__icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--gold-tint);
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
}
.observe-card h3 {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 15px; font-weight: 500;
  letter-spacing: -0.008em;
  color: var(--ink); margin: 0;
  line-height: 1.3;
}
.observe-card p { font-size: 13.5px; line-height: 1.55; color: var(--muted); margin: 0; }

/* Callout: replace gold tint with INK card */
.apropos-callout--ink {
  background: var(--ink) !important;
  border: 1px solid var(--ink) !important;
  color: #fff;
}
.apropos-callout--ink p { color: rgba(255,255,255,.92) !important; }

/* Blueprint background — for Notre conviction */
.section--blueprint {
  background-color: #FAFBFC;
  background-image:
    linear-gradient(to right, rgba(23,51,73,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(23,51,73,.05) 1px, transparent 1px),
    linear-gradient(to right, rgba(23,51,73,.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(23,51,73,.10) 1px, transparent 1px),
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(193,144,87,.06), transparent 70%);
  background-size: 24px 24px, 24px 24px, 120px 120px, 120px 120px, auto;
}

/* Section steel for observe */
.section--steel { background: #F4F6F8 !important; }

/* Compare-pair distinguished cols */
.compare-pair__col--neutral {
  background: var(--cream) !important;
  border-color: var(--ink-line) !important;
  border-top: 4px solid var(--ink-line-strong) !important;
}
.compare-pair__col--neutral .compare-pair__head {
  color: var(--muted) !important;
}
.compare-pair__col--blame {
  background: var(--ink) !important;
  color: #fff !important;
  border-color: var(--ink) !important;
  border-top: 4px solid var(--gold) !important;
}
.compare-pair__col--blame .compare-pair__head {
  color: var(--gold) !important;
  border-bottom-color: var(--line-on-ink) !important;
}
.compare-pair__col--blame li {
  color: rgba(255,255,255,.86) !important;
}
.compare-pair__col--blame li::before {
  color: var(--gold) !important;
  content: "×" !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  top: -1px;
}

/* Build cards — staggered grid, alternating ink/white */
.build-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  max-width: 1100px; margin: 0 auto;
}
@media (max-width: 760px) { .build-grid { grid-template-columns: 1fr; } }
.build-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 36px);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.build-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.build-card--01 { background: #fff; border: 1px solid var(--ink-line); transform: translateY(0); }
.build-card--02 { background: var(--ink); color: #fff; transform: translateY(20px); }
.build-card--03 { background: var(--ink); color: #fff; transform: translateY(0); }
.build-card--04 { background: #fff; border: 1px solid var(--ink-line); transform: translateY(20px); }
.build-card--01:hover, .build-card--04:hover { transform: translateY(-4px); }
.build-card--02:hover { transform: translateY(16px); }
.build-card--03:hover { transform: translateY(-4px); }
@media (max-width: 760px) {
  .build-card { transform: none !important; }
}
.build-card__num {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 56px; font-weight: 500;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
  position: absolute; top: 24px; right: 28px;
  opacity: .25;
}
.build-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--gold-tint);
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.build-card--02 .build-card__icon, .build-card--03 .build-card__icon {
  background: rgba(193,144,87,.15);
  border-color: rgba(193,144,87,.3);
  color: var(--gold);
}
.build-card__t {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500;
  letter-spacing: -0.018em;
  margin: 0 0 12px;
  line-height: 1.2;
  position: relative;
}
.build-card--01 .build-card__t, .build-card--04 .build-card__t { color: var(--ink); }
.build-card--02 .build-card__t, .build-card--03 .build-card__t { color: #fff; }
.build-card__d {
  font-size: 15px; line-height: 1.6; margin: 0;
  max-width: 460px;
}
.build-card--01 .build-card__d, .build-card--04 .build-card__d { color: var(--muted); }
.build-card--02 .build-card__d, .build-card--03 .build-card__d { color: rgba(255,255,255,.78); }

/* Founder reversed — text left, photo right (high-specificity override) */
.section .founder.founder--reverse,
.founder.founder--reverse {
  display: grid !important;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr) !important;
  gap: clamp(32px, 4vw, 56px) !important;
  align-items: start !important;
  max-width: 1140px;
  margin: 0 auto;
}
.founder.founder--reverse > div:first-child { padding: 0; min-width: 0; }
.founder.founder--reverse > .founder__col {
  margin: 0 0 0 auto;
  width: 100%;
  position: sticky; top: 110px;
}
.founder.founder--reverse > .founder__col .founder__photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--ink-line);
  background: var(--cream);
  box-shadow: var(--shadow-md);
}
.founder.founder--reverse > .founder__col .founder__photo img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.founder__meta--under {
  margin-top: 16px;
  border: 0; padding: 0;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  text-align: center;
}
@media (max-width: 720px) {
  .founder.founder--reverse,
  .section .founder.founder--reverse {
    grid-template-columns: 1fr !important;
  }
  .founder.founder--reverse > .founder__col {
    position: static;
    max-width: 360px;
    margin: 0 auto;
    order: -1;
  }
}

/* =====================================================================
   Vertical expertises list (réseau page)
   ===================================================================== */
.exp--vertical {
  display: flex !important;
  flex-direction: column;
  max-width: 880px;
  margin: 0 auto;
  gap: 0;
}
.exp-row {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-top: 1px solid var(--ink-line);
  align-items: start;
}
.exp-row:first-child { border-top: none; }
.exp-row__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gold-tint);
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.exp-row__t {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 6px;
}
.exp-row__d { font-size: 14.5px; line-height: 1.55; color: var(--muted); margin: 0; }

/* Profile sub-line for clarification */
.profile__sub {
  font-size: 14px;
  color: var(--muted);
  margin: 8px 0 0;
  line-height: 1.5;
}
.profile__sub b { color: var(--gold); font-weight: 600; }
.profiles {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: 1180px; margin: 0 auto;
}
@media (max-width: 820px) { .profiles { grid-template-columns: 1fr; } }
.profile {
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 22px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.profile:hover { border-color: var(--gold-soft); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.profile__head {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--ink-line);
}
.profile__num {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 11.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.profile__t {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 500;
  letter-spacing: -0.018em;
  color: var(--ink);
  margin: 0;
  line-height: 1.2;
}
.profile__body { display: flex; flex-direction: column; gap: 20px; }
.profile__block { display: flex; flex-direction: column; gap: 8px; }
.profile__label {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--gold-2);
}
.profile__block p {
  font-size: 14.5px; line-height: 1.6; color: var(--ink); margin: 0;
}
.profile__list {
  padding: 8px 0 0; margin: 0; list-style: none;
  display: grid; gap: 8px;
}
.profile__list li {
  font-size: 14px; line-height: 1.5; color: var(--ink);
  padding-left: 20px; position: relative;
}
.profile__list li::before {
  content: "\2192";
  position: absolute; left: 0;
  color: var(--gold);
  font-family: "Familjen Grotesk", sans-serif; font-weight: 500;
}

/* Split column result line */
.split__result {
  margin: 18px 0 0;
  padding: 14px 16px;
  background: var(--gold-tint);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-sm);
  font-size: 15px;
  line-height: 1.4;
  color: var(--ink);
  text-align: center;
}
.split__result b { font-family: "Familjen Grotesk", sans-serif; font-weight: 600; color: var(--gold); }
.split__result--on-ink {
  background: rgba(193,144,87,.12);
  border-color: rgba(193,144,87,.35);
  color: rgba(255,255,255,.92);
}
.split__result--on-ink b { color: var(--gold); }

/* =====================================================================
   Compare : graphical paths — Sans / Avec
   ===================================================================== */
.paths {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  max-width: 1180px; margin: 0 auto;
}
@media (max-width: 820px) { .paths { grid-template-columns: 1fr; } }

.path {
  border-radius: var(--radius-lg);
  padding: clamp(24px, 2.6vw, 32px);
  display: flex; flex-direction: column; gap: 18px;
  transition: transform .25s, box-shadow .25s;
}
.path:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.path--sans { background: #F4F6F8; border: 1px solid var(--ink-line); }
.path--avec { background: var(--ink); border: 1px solid var(--ink); color: #fff; }

.path__head { display: flex; flex-direction: column; gap: 6px; }
.path__label {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 11.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
}
.path--sans .path__label { color: var(--muted); }
.path--avec .path__label { color: var(--gold); }
.path__t {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 500; letter-spacing: -0.018em;
  line-height: 1.2; margin: 0;
}
.path--sans .path__t { color: var(--ink); }
.path--avec .path__t { color: #fff; }

.path__viz {
  position: relative;
  padding: 14px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.6);
}
.path--avec .path__viz { background: rgba(255,255,255,.04); }
.path__viz svg {
  width: 100%; height: auto; display: block;
}
.path__viz-tag {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 11.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.path--sans .path__viz-tag { background: rgba(95,110,124,.12); color: var(--muted); }
.path--avec .path__viz-tag { background: rgba(193,144,87,.14); color: var(--gold); border: 1px solid rgba(193,144,87,.35); }

.path__list { padding: 0; margin: 0; list-style: none; display: grid; gap: 10px; }
.path__list li {
  font-size: 14.5px; line-height: 1.55;
  padding-left: 22px; position: relative;
}
.path__list li::before {
  position: absolute; left: 0;
  font-family: "Familjen Grotesk", sans-serif;
  font-weight: 500;
}
.path--sans .path__list li { color: var(--ink); }
.path--sans .path__list li::before { content: "—"; color: var(--muted); }
.path--avec .path__list li { color: rgba(255,255,255,.92); }
.path--avec .path__list li::before { content: "→"; color: var(--gold); }

/* KPI delta cards — from/to with arrow */
.kpi-deltas {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  max-width: 1180px; margin: 36px auto 0;
}
@media (max-width: 920px) { .kpi-deltas { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .kpi-deltas { grid-template-columns: 1fr; } }
.kpi-delta {
  background: #fff;
  border: 1px solid var(--ink-line);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.kpi-delta__label {
  font-family: "Manrope", sans-serif;
  font-size: 11.5px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--gold);
}
.kpi-delta__row {
  display: flex; align-items: baseline; gap: 8px;
}
.kpi-delta__from {
  font-family: "Manrope", sans-serif;
  font-size: 14px; color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: rgba(95,110,124,.4);
}
.kpi-delta__arrow {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: 16px; color: var(--gold-2); font-weight: 500;
}
.kpi-delta__to {
  font-family: "Familjen Grotesk", sans-serif;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600; color: var(--ink);
  letter-spacing: -0.015em;
}

.testimonial__avatar-img { padding: 0; overflow: visible; }
.testimonial__avatar-img image-slot {
  display: block;
  border-radius: 50%;
  overflow: hidden;
}

.reality__lede-list {
  padding: 0; margin: 8px 0 0; list-style: none; display: grid; gap: 8px;
  border-top: 1px solid var(--ink-line); padding-top: 14px;
}
.reality__lede-list li {
  font-size: 15px; line-height: 1.5; color: var(--ink);
  padding-left: 20px; position: relative;
}
.reality__lede-list li::before {
  content: "→"; position: absolute; left: 0; color: var(--gold);
  font-family: "Familjen Grotesk", sans-serif; font-weight: 500;
}
.reality__lede-list b { font-family: "Familjen Grotesk", sans-serif; font-weight: 600; color: var(--ink); }

.faq__a ul { padding: 0 0 0 22px; margin: 0 0 12px; list-style: none; display: grid; gap: 6px; }
.faq__a ul li { position: relative; font-size: 14.5px; line-height: 1.6; color: var(--ink); }
.faq__a ul li::before { content: "→"; position: absolute; left: -20px; color: var(--gold); font-family: "Familjen Grotesk"; font-weight: 500; }
.faq__a b { font-family: "Familjen Grotesk", sans-serif; font-weight: 600; color: var(--ink); }
.faq__a i { color: var(--gold); font-style: italic; }

/* Force bold on all Instrument Serif */
.italic-serif,
.italic-serif * { font-weight: 700 !important; }
[class*="italic-serif"] { font-weight: 700 !important; }
[style*="Instrument Serif"] { font-weight: 700 !important; }
