  /* ============================================================
     NOKANHUI & ASSOCIÉS — « L'Almanach du travail humain »
     Identité éditoriale naturaliste · 2026
     ============================================================ */

  /* ---------- RESET & BASE ---------- */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
  ::selection { background: var(--pine); color: var(--paper); }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
  ul { list-style: none; }

  /* ---------- TOKENS ---------- */
  :root {
    /* Palette « Émeraude & Porcelaine » */
    --paper:      #F2F2EE;   /* porcelaine froide              */
    --paper-2:    #E9E9E2;   /* pierre claire (sections)       */
    --paper-3:    #DEDFD6;   /* pierre ombrée                  */
    --ink:        #15201B;   /* graphite émeraude très profond */
    --ink-2:      #1C2A24;   /* section sombre alternative     */
    --ink-soft:   #4C564F;   /* texte secondaire (gris-vert)   */
    --pine:       #1E4A3C;   /* émeraude — marque + actions    */
    --pine-2:     #143A2E;   /* émeraude profond               */
    --pine-soft:  #6E857A;   /* sauge grise (labels)           */
    --clay:       #B0894F;   /* champagne / laiton — accent    */
    --clay-2:     #8A6A38;   /* laiton profond (texte accent)  */
    --clay-soft:  #C6A876;   /* champagne clair                */
    --honey:      #C2A06A;   /* champagne (accent sur sombre)  */
    --honey-soft: #DBC79E;

    --line:       rgba(21,32,27,.16);
    --line-soft:  rgba(21,32,27,.085);
    --line-light: rgba(242,242,238,.18);

    --txt:        var(--ink);
    --txt-2:      var(--ink-soft);

    /* Type */
    --display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --sans: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Espace & rythme */
    --wrap: 1240px;
    --gutter: clamp(1.25rem, 4vw, 3rem);
    --section-y: clamp(4.5rem, 10vw, 9rem);

    --ease: cubic-bezier(.22,.61,.36,1);
    --ease-soft: cubic-bezier(.4,.01,.2,1);
    --radius: 4px;
  }

  /* ---------- BODY ---------- */
  body {
    font-family: var(--sans);
    color: var(--txt);
    background: var(--paper);
    line-height: 1.65;
    font-weight: 400;
    overflow-x: hidden;
    position: relative;
    font-feature-settings: "ss01", "cv11";
  }

  /* Grain papier — calque global */
  body::before {
    content: '';
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 9000;
    opacity: .045;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  }

  /* ---------- TYPO ---------- */
  h1, h2, h3, h4 {
    font-family: var(--display);
    font-weight: 460;
    line-height: 1.04;
    letter-spacing: -0.015em;
    color: var(--ink);
    font-optical-sizing: auto;
  }
  .it { font-style: italic; font-weight: 420; }
  p { font-size: 1.0625rem; color: var(--txt-2); }

  .display {
    font-family: var(--display);
    font-weight: 430;
    line-height: 1.0;
    letter-spacing: -0.022em;
    font-size: clamp(2.7rem, 7.4vw, 6rem);
  }

  /* Étiquette « guide de terrain » */
  .eyebrow {
    font-family: var(--sans);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--clay-2);
    display: inline-flex;
    align-items: center;
    gap: .7rem;
  }
  .eyebrow::before {
    content: '';
    width: 26px; height: 1px;
    background: var(--clay);
    display: inline-block;
  }
  .eyebrow.no-rule::before { display: none; }
  .eyebrow.on-dark { color: var(--honey-soft); }
  .eyebrow.on-dark::before { background: var(--honey); }

  .lead {
    font-size: clamp(1.05rem, 1.7vw, 1.3rem);
    line-height: 1.6;
    color: var(--ink-soft);
    font-weight: 400;
  }

  /* Numéro de section */
  .sec-index {
    font-family: var(--sans);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--pine-soft);
  }

  /* ---------- LAYOUT ---------- */
  .wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: var(--gutter); }
  .section { padding-block: var(--section-y); position: relative; }
  .rule { height: 1px; background: var(--line); border: 0; }

  .section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
  .section-head h2 {
    font-size: clamp(2rem, 4.6vw, 3.4rem);
    margin-top: 1.1rem;
    letter-spacing: -0.02em;
  }
  .section-head p { margin-top: 1.1rem; max-width: 56ch; font-size: 1.1rem; }

  /* Bandeau « topographie » décoratif réutilisable */
  .topo {
    position: absolute; inset: 0;
    pointer-events: none;
    opacity: .5;
    background-repeat: no-repeat;
  }

  /* ---------- BOUTONS ---------- */
  .btn {
    position: relative;
    display: inline-flex; align-items: center; gap: .6rem;
    font-family: var(--sans);
    font-weight: 600;
    font-size: .92rem;
    letter-spacing: .01em;
    padding: .95rem 1.7rem;
    border-radius: 100px;
    transition: transform .5s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .45s var(--ease);
    will-change: transform;
    white-space: nowrap;
  }
  .btn .arr { transition: transform .4s var(--ease); }
  .btn:hover .arr { transform: translateX(4px); }

  .btn-clay { background: var(--pine); color: #FBF4EC; box-shadow: 0 1px 0 rgba(0,0,0,.04); }
  .btn-clay:hover { background: var(--pine-2); transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(20,58,46,.6); }

  .btn-ink { background: var(--ink); color: var(--paper); }
  .btn-ink:hover { background: var(--pine-2); transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(21,32,27,.5); }

  .btn-ghost { border: 1px solid var(--line); color: var(--ink); }
  .btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--paper); transform: translateY(-2px); }

  .btn-light { border: 1px solid var(--line-light); color: var(--paper); }
  .btn-light:hover { background: var(--paper); color: var(--ink); transform: translateY(-2px); border-color: var(--paper); }

  /* Lien fléché éditorial */
  .link-arrow {
    font-family: var(--sans);
    font-weight: 600; font-size: .95rem;
    color: var(--clay-2);
    display: inline-flex; align-items: center; gap: .45rem;
    border-bottom: 1px solid transparent;
    transition: gap .35s var(--ease), border-color .35s;
    width: fit-content;
  }
  .link-arrow .arr { transition: transform .4s var(--ease); }
  .link-arrow:hover { gap: .7rem; border-bottom-color: var(--clay); }

  /* ============================================================
     NAVBAR
     ============================================================ */
  #progress {
    position: fixed; top: 0; left: 0; height: 2px; width: 0;
    background: linear-gradient(90deg, var(--pine), var(--clay));
    z-index: 1200; transition: width .1s linear;
  }
  #navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem var(--gutter);
    transition: padding .4s var(--ease), background .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
    border-bottom: 1px solid transparent;
  }
  #navbar.scrolled {
    padding: .7rem var(--gutter);
    background: rgba(242,242,238,.82);
    backdrop-filter: blur(14px) saturate(1.3);
    -webkit-backdrop-filter: blur(14px) saturate(1.3);
    border-bottom-color: var(--line-soft);
    box-shadow: 0 8px 30px -22px rgba(21,32,27,.6);
  }

  /* Pages intérieures (bannière sombre) : menu clair tant qu'on n'a pas scrollé */
  #navbar.over-dark:not(.scrolled) .brand-word,
  #navbar.over-dark:not(.scrolled) .nav-links a:not(.btn) { color: var(--paper); }
  #navbar.over-dark:not(.scrolled) .brand-sub { color: var(--honey-soft); }
  #navbar.over-dark:not(.scrolled) .brand-mark { background: var(--paper); color: var(--pine); }
  #navbar.over-dark:not(.scrolled) .nav-links a:not(.btn):hover { color: var(--honey-soft); }
  /* le menu déroulant a un fond clair : ses liens restent sombres */
  #navbar.over-dark:not(.scrolled) .dropdown-menu a:not(.btn) { color: var(--ink); }
  #navbar.over-dark:not(.scrolled) .dropdown-menu a:not(.btn):hover { color: var(--clay-2); }
  #navbar.over-dark:not(.scrolled) .hamburger span { background: var(--paper); }
  #navbar.over-dark:not(.scrolled) .nav-cta { background: var(--paper); color: var(--ink) !important; }
  #navbar.over-dark:not(.scrolled) .nav-cta:hover { background: var(--honey-soft); color: var(--ink) !important; }
  /* menu mobile ouvert (overlay porcelaine) : on rétablit le contraste sombre */
  #navbar.over-dark:not(.scrolled) .nav-links.mobile-open a:not(.btn) { color: var(--ink); }
  #navbar.over-dark:not(.scrolled) .nav-links.mobile-open .nav-cta { background: var(--ink); color: var(--paper) !important; }
  #navbar.over-dark:not(.scrolled) .hamburger.open span { background: var(--ink); }

  /* Wordmark typographique */
  .brand { display: inline-flex; align-items: baseline; gap: .5rem; }
  .brand-mark {
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--pine); color: #FBF4EC;
    display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--display); font-weight: 600; font-size: 1.05rem;
    align-self: center;
    transition: transform .5s var(--ease), background .4s;
    flex-shrink: 0;
  }
  .brand:hover .brand-mark { transform: rotate(-8deg) scale(1.05); background: var(--clay); }
  .brand-word {
    font-family: var(--display);
    font-weight: 500; font-size: 1.4rem; letter-spacing: -0.02em;
    color: var(--ink); line-height: 1;
  }
  .brand-sub {
    font-family: var(--sans);
    font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
    color: var(--pine-soft);
  }
  @media (max-width: 480px) { .brand-sub { display: none; } }

  .nav-links { display: flex; align-items: center; gap: .4rem; }
  .nav-links > li { position: relative; }
  .nav-links a:not(.btn) {
    font-family: var(--sans); font-weight: 500; font-size: .95rem;
    color: var(--ink); padding: .55rem .85rem; border-radius: 6px;
    display: inline-flex; align-items: center; gap: .35rem;
    transition: color .3s, background .3s;
  }
  .nav-links a:not(.btn):hover { color: var(--clay-2); }
  .nav-links .chevron { font-size: .55rem; transition: transform .35s var(--ease); opacity: .6; }
  .nav-dropdown:hover .chevron { transform: rotate(180deg); }

  .dropdown-menu {
    position: absolute; top: calc(100% + .4rem); left: 0;
    min-width: 230px;
    background: var(--paper);
    border: 1px solid var(--line-soft);
    border-radius: 10px;
    padding: .5rem;
    box-shadow: 0 24px 50px -24px rgba(21,32,27,.4);
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  }
  .nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
  .dropdown-menu a {
    display: flex !important; align-items: center; gap: .7rem;
    padding: .7rem .8rem !important; border-radius: 7px; width: 100%;
    font-weight: 500;
  }
  .dropdown-menu a:hover { background: var(--paper-2); }
  .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
  .dot-prevenir { background: var(--pine); }
  .dot-former { background: var(--honey); }
  .dot-soutenir { background: var(--clay); }

  .nav-cta { background: var(--ink); color: var(--paper) !important; padding: .6rem 1.25rem !important; border-radius: 100px; transition: background .35s, transform .45s var(--ease) !important; }
  .nav-cta:hover { background: var(--pine) !important; color: #FBF4EC !important; transform: translateY(-2px); }

  /* Hamburger */
  .hamburger { display: none; width: 42px; height: 42px; position: relative; z-index: 1102; }
  .hamburger span { position: absolute; left: 9px; right: 9px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .4s var(--ease), opacity .3s, top .3s; }
  .hamburger span:nth-child(1) { top: 14px; }
  .hamburger span:nth-child(2) { top: 20px; }
  .hamburger span:nth-child(3) { top: 26px; }
  .hamburger.open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

  /* ============================================================
     HERO
     ============================================================ */
  #hero {
    position: relative;
    min-height: 100svh;
    display: flex; flex-direction: column; justify-content: center;
    padding: 8rem var(--gutter) 4rem;
    overflow: hidden;
    background:
      radial-gradient(125% 75% at 50% -12%, rgba(222,223,214,0), rgba(222,223,214,.4)),
      var(--paper);
  }
  /* Couche atmosphérique : respiration + parallaxe */
  .hero-atmo { position: absolute; inset: -10% -6%; z-index: 0; pointer-events: none; will-change: transform; }
  .bloom { position: absolute; border-radius: 50%; filter: blur(48px); opacity: .55; will-change: transform; }
  .bloom-1 { width: 44vw; height: 44vw; top: -6%;  right: 3%;  background: radial-gradient(circle, rgba(194,160,106,.55), transparent 64%); animation: floatA 19s var(--ease-soft) infinite; }
  .bloom-2 { width: 42vw; height: 42vw; bottom: -14%; left: -9%; background: radial-gradient(circle, rgba(30,74,60,.5),  transparent 64%); animation: floatB 23s var(--ease-soft) infinite; }
  .bloom-3 { width: 27vw; height: 27vw; bottom: -2%; right: 11%; background: radial-gradient(circle, rgba(176,137,79,.42), transparent 64%); animation: floatC 21s var(--ease-soft) infinite; }
  @keyframes floatA { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-3%,5%) scale(1.06); } }
  @keyframes floatB { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(4%,-4%) scale(1.05); } }
  @keyframes floatC { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-4%,-3%) scale(1.08); } }
  /* contours topographiques hero */
  #hero .topo-lines {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    opacity: .6;
  }
  .hero-grid {
    position: relative; z-index: 2;
    max-width: var(--wrap); margin: 0 auto; width: 100%;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: .7rem;
    font-family: var(--sans); font-size: .72rem; font-weight: 700;
    letter-spacing: .2em; text-transform: uppercase; color: var(--pine);
    padding: .5rem .9rem .5rem .55rem;
    border: 1px solid var(--line); border-radius: 100px;
    background: rgba(242,242,238,.5);
    margin-bottom: 2rem;
  }
  .hero-tag b {
    background: var(--pine); color: var(--paper);
    font-weight: 700; padding: .15rem .5rem; border-radius: 100px;
    font-size: .66rem; letter-spacing: .12em;
  }
  .hero-title {
    font-family: var(--display);
    font-weight: 420;
    font-size: clamp(2.9rem, 8vw, 6.6rem);
    line-height: 1.0;
    letter-spacing: -0.025em;
    max-width: 16ch;
    color: var(--ink);
  }
  .hero-title .line { display: block; overflow: hidden; padding: .14em 0 .16em; margin: -.14em 0 -.16em; }
  .hero-title .line > span { display: block; }
  .js .hero-title .line > span { transform: translateY(116%); animation: lineUp 1.15s var(--ease) both; animation-delay: var(--ld, 0s); }
  .hero-title .accent {
    font-style: italic; font-weight: 420;
    color: var(--clay-2);
    position: relative;
  }
  .hero-title .accent::after {
    content: ''; position: absolute; left: 0; right: 0; bottom: .04em; height: .045em;
    background: var(--honey); opacity: .85;
    transform: scaleX(0); transform-origin: left;
  }
  .js .hero-title .accent::after { animation: underline 1s var(--ease) 1.35s forwards; }
  @keyframes lineUp { from { transform: translateY(116%); } to { transform: translateY(0); } }
  @keyframes underline { to { transform: scaleX(1); } }

  .hero-lead {
    margin-top: 1.8rem; max-width: 46ch;
    font-size: clamp(1.05rem, 1.8vw, 1.28rem);
    line-height: 1.62; color: var(--ink-soft);
  }
  .hero-btns { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }

  .hero-meta {
    margin-top: 3.2rem;
    display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem;
    align-items: center;
  }
  .hero-meta .mi { display: flex; flex-direction: column; gap: .15rem; }
  .hero-meta .mi b { font-family: var(--display); font-size: 1.5rem; font-weight: 500; color: var(--pine); line-height: 1; }
  .hero-meta .mi span { font-size: .76rem; letter-spacing: .04em; color: var(--ink-soft); text-transform: uppercase; font-weight: 600; }
  .hero-meta .mi-sep { width: 1px; height: 34px; background: var(--line); }

  .hero-scroll {
    position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
    z-index: 3; display: flex; flex-direction: column; align-items: center; gap: .6rem;
    font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600;
    transition: opacity .5s var(--ease);
  }
  .hero-scroll .scroll-line { width: 1px; height: 46px; background: linear-gradient(var(--ink), transparent); position: relative; overflow: hidden; }
  .hero-scroll .scroll-line::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 40%; background: var(--clay); animation: scrolldot 2.2s var(--ease) infinite; }
  @keyframes scrolldot { 0% { transform: translateY(-100%); } 60%,100% { transform: translateY(280%); } }

  /* ---------- HERO · TROMBINOSCOPE ÉQUIPE ---------- */
  .hero-team { margin-top: 2.5rem; display: flex; align-items: center; gap: 1.15rem; flex-wrap: wrap; }
  .hero-team-avatars { display: flex; }
  .ht-av {
    position: relative; display: block;
    width: 48px; height: 48px; margin-left: -14px;
    border-radius: 50%;
  }
  .ht-av:first-child { margin-left: 0; }
  /* entrée en cascade (gated .js — visible sans JS) */
  .js .ht-av {
    opacity: 0; transform: translateY(14px) scale(.65);
    transition: opacity .75s var(--ease), transform .75s var(--ease);
    transition-delay: calc(var(--i) * 65ms + 120ms);
  }
  .hero-team.in .ht-av { opacity: 1; transform: translateY(0) scale(1); }
  .ht-ring {
    display: block; width: 100%; height: 100%; border-radius: 50%; overflow: hidden;
    background: var(--paper-3);
    border: 2px solid var(--paper);
    box-shadow: 0 0 0 1px var(--line), 0 6px 16px -9px rgba(21,32,27,.55);
    animation: htFloat 7s var(--ease-soft) infinite;
    animation-delay: calc(var(--i) * -0.82s);
    transition: box-shadow .45s var(--ease);
  }
  .ht-av img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 22%;
    filter: grayscale(1) contrast(1.04) brightness(1.03);
    transition: filter .55s var(--ease), transform .65s var(--ease);
  }
  @keyframes htFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
  .hero-team.in .ht-av:hover { transform: translateY(-7px) scale(1.08); z-index: 30; }
  .ht-av:hover .ht-ring { box-shadow: 0 0 0 1.5px var(--clay), 0 16px 28px -11px rgba(20,58,46,.55); }
  .ht-av:hover img { filter: none; transform: scale(1.06); }
  /* étiquette nom + rôle au survol */
  .ht-name {
    position: absolute; bottom: calc(100% + 11px); left: 50%;
    transform: translateX(-50%) translateY(7px);
    background: var(--ink); border: 1px solid var(--line-light);
    padding: .4rem .7rem; border-radius: 8px;
    opacity: 0; pointer-events: none; white-space: nowrap; z-index: 40;
    box-shadow: 0 16px 34px -16px rgba(21,32,27,.7);
    transition: opacity .32s var(--ease), transform .32s var(--ease);
  }
  .ht-name b { display: block; font-family: var(--sans); font-weight: 600; font-size: .76rem; color: var(--paper); letter-spacing: .01em; }
  .ht-name span { display: block; font-size: .66rem; font-weight: 500; color: var(--honey-soft); margin-top: .05rem; }
  .ht-name::after { content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 5px solid transparent; border-top-color: var(--ink); }
  .ht-av:hover .ht-name { opacity: 1; transform: translateX(-50%) translateY(0); }
  .hero-team-label { display: flex; flex-direction: column; gap: .12rem; }
  .hero-team-label b { font-family: var(--display); font-weight: 500; font-size: 1.08rem; color: var(--ink); line-height: 1.15; letter-spacing: -0.01em; }
  .hero-team-label .htl-sub { font-size: .76rem; color: var(--ink-soft); font-weight: 500; letter-spacing: .01em; display: inline-flex; align-items: center; gap: .4rem; }
  .hero-team-label .htl-sub .arr { color: var(--clay-2); transition: transform .4s var(--ease); }
  .hero-team:hover .hero-team-label .htl-sub .arr { transform: translateX(4px); }
  @media (max-width: 480px) {
    .ht-av { width: 42px; height: 42px; margin-left: -12px; }
    .hero-team-label b { font-size: 1rem; }
  }

  /* ---------- HERO · MUR DE PORTRAITS DÉFILANT (atmosphère) ---------- */
  .hero-wall {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: 42%; z-index: 1; pointer-events: none; overflow: hidden;
    display: flex; gap: clamp(.9rem, 1.6vw, 1.6rem);
    justify-content: flex-end; padding-left: 9%;
    opacity: .3;
    /* Double fondu (horizontal vers le texte + vertical haut/bas) : les images se dissolvent au lieu d'être coupées */
    -webkit-mask-image:
      linear-gradient(to left, #000 24%, rgba(0,0,0,0) 86%),
      linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 16%, #000 84%, rgba(0,0,0,0) 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      linear-gradient(to left, #000 24%, rgba(0,0,0,0) 86%),
      linear-gradient(to bottom, rgba(0,0,0,0) 0%, #000 16%, #000 84%, rgba(0,0,0,0) 100%);
    mask-composite: intersect;
  }
  .hw-col { display: flex; flex-direction: column; flex: 1; min-width: 0; will-change: transform; }
  .hw-col:nth-child(2) { margin-top: -11%; }
  .hw-col:nth-child(3) { margin-top: -5%; }
  .js .hw-col.up   { animation: hwUp   var(--dur, 50s) linear infinite; }
  .js .hw-col.down { animation: hwDown var(--dur, 50s) linear infinite; }
  @keyframes hwUp   { from { transform: translateY(0); }       to { transform: translateY(-50%); } }
  @keyframes hwDown { from { transform: translateY(-50%); }    to { transform: translateY(0); } }
  .hw-tile { display: block; margin-bottom: clamp(.9rem, 1.6vw, 1.6rem); }
  .hw-tile img {
    width: 100%; height: auto; display: block;
    border-radius: 14px;
    border: 1px solid rgba(242,242,238,.5);
    box-shadow: 0 16px 32px -20px rgba(21,32,27,.45);
    filter: grayscale(1) contrast(1.02) brightness(1.04);
  }
  @media (max-width: 1100px) { .hero-wall { width: 50%; opacity: .22; } }
  @media (max-width: 900px)  { .hero-wall { display: none; } }

  /* ============================================================
     CLIENTS / MARQUEE
     ============================================================ */
  #clients { padding-block: clamp(3rem, 6vw, 5rem); position: relative; border-top: 1px solid var(--line-soft); }
  .clients-head { text-align: center; margin-bottom: 2.5rem; }
  .clients-head span {
    font-family: var(--sans); font-size: .74rem; font-weight: 700;
    letter-spacing: .22em; text-transform: uppercase; color: var(--ink-soft);
    display: inline-flex; align-items: center; gap: .8rem;
  }
  .clients-head span::before, .clients-head span::after { content: ''; width: 34px; height: 1px; background: var(--line); }

  .marquee-wrapper { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); }
  .marquee-track { display: flex; width: max-content; animation: marquee 64s linear infinite; }
  .marquee-wrapper:hover .marquee-track { animation-play-state: paused; }
  @keyframes marquee { to { transform: translateX(-50%); } }
  .marquee-list { display: flex; align-items: center; }
  .client-item { flex-shrink: 0; padding: 0 clamp(1.4rem, 3vw, 2.6rem); display: flex; align-items: center; justify-content: center; height: 72px; }
  .client-item img {
    max-height: 46px; width: auto; max-width: 140px; object-fit: contain;
    filter: grayscale(1) brightness(.35) opacity(.55);
    transition: filter .45s var(--ease), transform .45s var(--ease);
  }
  .client-item:hover img { filter: grayscale(0) brightness(1) opacity(1); transform: scale(1.04); }
  .client-featured img { max-height: 54px; }

  /* ============================================================
     MANIFESTE (sombre)
     ============================================================ */
  #manifeste {
    background: var(--ink);
    color: var(--paper);
    position: relative; overflow: hidden;
    padding-top: clamp(5rem, 11vw, 8.5rem);
    padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  }
  #manifeste::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
      radial-gradient(50% 60% at 85% 15%, rgba(30,74,60,.7), transparent 70%),
      radial-gradient(45% 55% at 8% 95%, rgba(176,137,79,.32), transparent 72%);
    animation: bgBreath 16s ease-in-out infinite;
  }
  @keyframes bgBreath { 0%,100% { opacity: .45; transform: scale(1); } 50% { opacity: .7; transform: scale(1.05); } }
  .manifeste-inner { position: relative; z-index: 2; max-width: 980px; }
  .manifeste-quote {
    font-family: var(--display);
    font-weight: 380;
    font-size: clamp(1.7rem, 4vw, 3.05rem);
    line-height: 1.22; letter-spacing: -0.02em;
    color: var(--paper); margin-top: 1.6rem;
  }
  .manifeste-quote .it { color: var(--honey-soft); }
  .manifeste-mark { font-family: var(--display); font-size: 5rem; line-height: .5; color: var(--clay-soft); opacity: .55; display: block; height: 2.2rem; }
  .manifeste-foot { margin-top: 2.4rem; display: flex; align-items: center; gap: 1rem; color: rgba(242,242,238,.7); font-size: .95rem; }
  .manifeste-foot .ln { width: 40px; height: 1px; background: var(--honey); }

  /* ============================================================
     CHIFFRES
     ============================================================ */
  #chiffres { background: var(--ink); color: var(--paper); padding-top: clamp(1.5rem, 3vw, 2.5rem); padding-bottom: clamp(4.5rem, 9vw, 7rem); position: relative; }
  .chiffres-label { position: relative; z-index: 2; margin-bottom: 1.5rem; display: flex; align-items: center; gap: .9rem; font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--pine-soft); }
  .chiffres-label .ln { flex: 1; height: 1px; background: var(--line-light); }
  .stats-grid {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line-light);
  }
  .stat-card { padding: 2.4rem 1.6rem; border-right: 1px solid var(--line-light); position: relative; }
  .stat-card:last-child { border-right: 0; }
  .stat-number {
    font-family: var(--display); font-weight: 400;
    font-size: clamp(2.8rem, 6vw, 4.4rem); line-height: 1;
    color: var(--honey-soft); letter-spacing: -0.02em; display: block;
  }
  .stat-label { display: block; margin-top: .8rem; font-size: .92rem; color: rgba(242,242,238,.78); font-weight: 500; line-height: 1.4; }

  /* ============================================================
     AXES — « le registre »
     ============================================================ */
  #axes { background: var(--paper); }
  .axes-shell { display: grid; grid-template-columns: 0.92fr 1.4fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: start; }

  .axes-nav { display: flex; flex-direction: column; border-top: 1px solid var(--line); }
  .axe-tab {
    text-align: left; width: 100%;
    display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem;
    padding: 1.6rem .4rem; border-bottom: 1px solid var(--line);
    position: relative; transition: padding .4s var(--ease);
  }
  .axe-tab .axe-num { font-family: var(--sans); font-size: .8rem; font-weight: 700; color: var(--pine-soft); letter-spacing: .1em; }
  .axe-tab .axe-name { font-family: var(--display); font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 460; color: var(--ink); transition: color .35s; letter-spacing: -0.02em; }
  .axe-tab .axe-plus { width: 26px; height: 26px; position: relative; opacity: .4; transition: opacity .35s, transform .5s var(--ease); }
  .axe-tab .axe-plus::before, .axe-tab .axe-plus::after { content: ''; position: absolute; background: var(--ink); transition: background .35s, transform .45s var(--ease); }
  .axe-tab .axe-plus::before { top: 12px; left: 4px; right: 4px; height: 2px; }
  .axe-tab .axe-plus::after { left: 12px; top: 4px; bottom: 4px; width: 2px; }
  .axe-tab::before {
    content: ''; position: absolute; left: -1px; top: 50%; transform: translateY(-50%) scaleY(0);
    width: 3px; height: 60%; background: var(--clay); transition: transform .45s var(--ease); transform-origin: center;
  }
  .axe-tab:hover .axe-name { color: var(--clay-2); }
  .axe-tab.active { padding-left: 1.3rem; }
  .axe-tab.active::before { transform: translateY(-50%) scaleY(1); }
  .axe-tab.active .axe-name { color: var(--clay-2); }
  .axe-tab.active .axe-plus { opacity: 1; transform: rotate(45deg); }
  .axe-tab.active .axe-plus::before, .axe-tab.active .axe-plus::after { background: var(--clay); }

  .axes-stage { position: relative; }
  .axe-panel { display: none; }
  .axe-panel.active { display: block; animation: panelIn .45s var(--ease) both; }
  @keyframes panelIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

  .axe-panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
  .axe-panel h3 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); color: var(--ink); }
  .axe-panel .desc { margin-top: 1.1rem; max-width: 52ch; font-size: 1.08rem; line-height: 1.65; color: var(--ink-soft); }
  .axe-services { margin-top: 2rem; border-top: 1px solid var(--line); }
  .axe-service {
    border-bottom: 1px solid var(--line);
    transition: background .3s;
  }
  .axe-service a {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1rem .4rem 1rem 0;
    font-family: var(--sans); font-weight: 500; font-size: 1.02rem; color: var(--ink);
    transition: color .3s, padding-left .35s var(--ease);
  }
  .axe-service .ax-arrow { color: var(--pine-soft); transition: transform .4s var(--ease), color .3s; flex-shrink: 0; }
  .axe-service:hover { background: linear-gradient(90deg, rgba(176,137,79,.05), transparent); }
  .axe-service:hover a { color: var(--clay-2); padding-left: .6rem; }
  .axe-service:hover .ax-arrow { transform: translateX(5px); color: var(--clay); }
  .axe-tip { font-size: .86rem; color: var(--ink-soft); padding: 0 0 1rem; max-width: 60ch; opacity: .85; line-height: 1.5; display: none; }
  .axe-panel .axe-cta { margin-top: 2.2rem; }

  /* ============================================================
     CHAMPS D'INTERVENTION
     ============================================================ */
  #champs { background: var(--paper-2); }
  .champs-group { margin-top: 2.6rem; }
  .champs-label {
    display: flex; align-items: center; gap: 1rem; margin-bottom: 1.4rem;
    font-family: var(--sans); font-size: .74rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  }
  .champs-label .ln { flex: 1; height: 1px; background: var(--line); }
  .champs-label.indiv { color: var(--pine); }
  .champs-label.collec { color: var(--clay-2); }
  .champs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .champ {
    display: flex; align-items: center; gap: 1rem;
    background: var(--paper); border: 1px solid var(--line-soft);
    border-radius: 12px; padding: 1.3rem 1.4rem;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  }
  .champ:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -22px rgba(21,32,27,.4); border-color: var(--line); }
  .champ-ic {
    width: 46px; height: 46px; border-radius: 11px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    transition: transform .45s var(--ease), background .4s;
  }
  .champ:hover .champ-ic { transform: scale(1.08) rotate(-4deg); }
  .ic-pine { background: rgba(30,74,60,.1); color: var(--pine); }
  .ic-clay { background: rgba(176,137,79,.11); color: var(--clay-2); }
  .champ-name { font-family: var(--sans); font-weight: 600; font-size: .98rem; color: var(--ink); line-height: 1.3; }

  /* ============================================================
     CTA BANNER
     ============================================================ */
  .cta-banner {
    background: var(--pine); color: var(--paper);
    border-radius: 18px; padding: clamp(2rem, 4vw, 3rem) clamp(1.8rem, 4vw, 3.4rem);
    display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
    position: relative; overflow: hidden;
  }
  .cta-banner::after {
    content: ''; position: absolute; right: -40px; top: -40px; width: 220px; height: 220px;
    border-radius: 50%; background: radial-gradient(circle, rgba(194,160,106,.4), transparent 70%); pointer-events: none;
  }
  .cta-banner h3 { color: var(--paper); font-size: clamp(1.5rem, 3vw, 2.1rem); position: relative; z-index: 2; }
  .cta-banner p { color: rgba(242,242,238,.82); margin-top: .5rem; position: relative; z-index: 2; }
  .cta-banner .btn { position: relative; z-index: 2; }

  /* ============================================================
     RESSOURCES / BLOG
     ============================================================ */
  #ressources { background: var(--paper); }
  .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
  .blog-card {
    display: flex; flex-direction: column;
    background: var(--paper); border: 1px solid var(--line-soft); border-radius: 16px; overflow: hidden;
    transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s;
  }
  .blog-card:hover { transform: translateY(-6px); box-shadow: 0 30px 50px -28px rgba(21,32,27,.42); border-color: var(--line); }
  .blog-img { position: relative; aspect-ratio: 3/2; overflow: hidden; }
  .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
  .blog-card:hover .blog-img img { transform: scale(1.06); }
  .blog-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(21,32,27,.78), transparent 55%); }
  .blog-cat { position: absolute; top: 1rem; left: 1rem; z-index: 3; }
  .blog-cat-tag {
    background: rgba(242,242,238,.92); color: var(--ink);
    font-family: var(--sans); font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
    padding: .4rem .75rem; border-radius: 100px;
  }
  .blog-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.3rem; z-index: 3; }
  .blog-overlay p { font-family: var(--display); font-weight: 480; font-size: 1.22rem; line-height: 1.2; color: var(--paper); letter-spacing: -0.01em; }
  .blog-body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
  .blog-date { font-family: var(--sans); font-size: .76rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--pine-soft); }
  .blog-excerpt { margin-top: .9rem; font-size: .96rem; line-height: 1.6; color: var(--ink-soft); flex: 1; }
  .blog-link { margin-top: 1.3rem; }

  /* ============================================================
     PHILOSOPHIE
     ============================================================ */
  #philo {
    background: var(--pine); color: var(--paper);
    text-align: center; position: relative; overflow: hidden;
    padding-block: clamp(4rem, 9vw, 7rem);
  }
  #philo::before { content: ''; position: absolute; inset: 0; opacity: .35; background: radial-gradient(60% 80% at 50% 0%, rgba(194,160,106,.5), transparent 70%); }
  .philo-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }
  .philo-inner .eyebrow { color: #FBF4EC; justify-content: center; }
  .philo-inner .eyebrow::before { background: rgba(251,244,236,.6); }
  .philo-quote { font-family: var(--display); font-weight: 400; font-size: clamp(1.6rem, 4.2vw, 3rem); line-height: 1.18; color: var(--paper); margin-top: 1.4rem; letter-spacing: -0.015em; }
  .philo-quote .it { color: var(--honey-soft); }

  /* ============================================================
     RDV / CONTACT
     ============================================================ */
  #rdv { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
  #rdv::before { content: ''; position: absolute; inset: 0; opacity: .5; pointer-events: none; background: radial-gradient(45% 55% at 12% 12%, rgba(30,74,60,.6), transparent 70%), radial-gradient(40% 50% at 92% 88%, rgba(176,137,79,.3), transparent 72%); animation: bgBreath 18s ease-in-out infinite; }
  .rdv-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
  .rdv-left h2 { color: var(--paper); font-size: clamp(2rem, 4.5vw, 3.2rem); margin-top: 1.1rem; }
  .rdv-left h2 .it { color: var(--honey-soft); }
  .rdv-left > p { margin-top: 1.2rem; max-width: 44ch; color: rgba(242,242,238,.8); font-size: 1.08rem; }
  .rdv-infos { margin-top: 2.4rem; display: flex; flex-direction: column; gap: 1.4rem; }
  .rdv-info { display: flex; align-items: center; gap: 1.1rem; }
  .rdv-info-icon { width: 50px; height: 50px; border-radius: 12px; background: rgba(242,242,238,.08); border: 1px solid var(--line-light); color: var(--honey-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .45s var(--ease), background .4s; }
  .rdv-info:hover .rdv-info-icon { transform: translateY(-3px); background: rgba(194,160,106,.16); }
  .rdv-info-label { display: block; font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--pine-soft); font-weight: 700; }
  .rdv-info-value { display: block; font-family: var(--display); font-size: 1.25rem; font-weight: 460; color: var(--paper); margin-top: .15rem; }
  .rdv-info-value a:hover { color: var(--honey-soft); }
  .rdv-cal { background: var(--paper); border-radius: 16px; padding: .5rem; box-shadow: 0 30px 60px -30px rgba(0,0,0,.6); }
  .calendly-inline-widget { border-radius: 12px; overflow: hidden; }

  /* ============================================================
     FOOTER
     ============================================================ */
  #footer { background: var(--ink-2); color: var(--paper); padding-top: clamp(3.5rem, 7vw, 5.5rem); padding-bottom: 2rem; }
  .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid var(--line-light); }
  .footer-brand .brand-word { color: var(--paper); }
  .footer-brand p { margin-top: 1.2rem; max-width: 32ch; color: rgba(242,242,238,.62); font-size: .95rem; }
  .footer-col h4 { font-family: var(--sans); font-size: .76rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--honey-soft); margin-bottom: 1.2rem; }
  .footer-links { display: flex; flex-direction: column; gap: .7rem; }
  .footer-links a { color: rgba(242,242,238,.72); font-size: .96rem; transition: color .3s, padding-left .3s var(--ease); width: fit-content; }
  .footer-links a:hover { color: var(--honey-soft); padding-left: .3rem; }
  .footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.8rem; }
  .footer-bottom p { font-size: .84rem; color: rgba(242,242,238,.5); }
  .footer-bottom-links { display: flex; gap: 1.5rem; }
  .footer-bottom-links a { font-size: .84rem; color: rgba(242,242,238,.5); transition: color .3s; }
  .footer-bottom-links a:hover { color: var(--honey-soft); }

  /* ============================================================
     FLOATING RDV
     ============================================================ */
  #floatingRdv {
    position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 1050;
    opacity: 0; visibility: hidden; transform: translateY(20px) scale(.95);
    transition: opacity .5s var(--ease), transform .5s var(--ease), visibility .5s;
    box-shadow: 0 20px 40px -16px rgba(20,58,46,.6);
  }
  #floatingRdv.visible { opacity: 1; visibility: visible; transform: none; }

  /* ============================================================
     CURSEUR
     ============================================================ */
  #cursor-dot, #cursor-ring { position: fixed; top: 0; left: 0; border-radius: 50%; pointer-events: none; z-index: 9500; transform: translate(-50%, -50%); }
  #cursor-dot { width: 6px; height: 6px; background: var(--pine); transition: width .3s, height .3s, background .3s; }
  #cursor-ring { width: 34px; height: 34px; border: 1px solid rgba(21,32,27,.4); transition: width .4s var(--ease), height .4s var(--ease), border-color .4s, background .4s; }
  body.cursor-hover #cursor-ring { width: 52px; height: 52px; border-color: var(--clay); background: rgba(176,137,79,.08); }
  body.cursor-hover #cursor-dot { width: 0; height: 0; }
  @media (pointer: coarse) { #cursor-dot, #cursor-ring { display: none; } }

  /* ============================================================
     REVEAL
     ============================================================ */
  .js .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s var(--ease), transform .6s var(--ease); transition-delay: var(--rd, 0ms); }
  .js .reveal.in { opacity: 1; transform: none; }

  /* ============================================================
     RESPONSIVE
     ============================================================ */
  @media (max-width: 1000px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-brand { grid-column: 1 / -1; }
  }
  @media (max-width: 900px) {
    .axes-shell { grid-template-columns: 1fr; gap: 0; }
    .axes-nav { border-top: 1px solid var(--line); }
    .axes-stage { margin-top: 0; }
    .axe-tab { padding-block: 1.3rem; }
    .axe-panel { padding: .5rem 0 2.2rem; }
    .axe-panel.active { animation: none; }
    /* en mobile : on déplace le panneau actif juste sous son onglet via JS (accordéon) */
    .rdv-inner { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-card:nth-child(2) { border-right: 0; }
    .stat-card:nth-child(1), .stat-card:nth-child(2) { border-bottom: 1px solid var(--line-light); }
    .champs-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 820px) {
    .hamburger { display: block; }
    .nav-links {
      position: fixed; inset: 0; z-index: 1101;
      flex-direction: column; justify-content: center; align-items: flex-start;
      gap: .4rem; padding: 5rem var(--gutter) 2rem;
      background: var(--paper);
      transform: translateX(100%); transition: transform .55s var(--ease);
      overflow-y: auto;
    }
    .nav-links.mobile-open { transform: none; }
    .nav-links > li { width: 100%; }
    .nav-links a:not(.btn) { font-size: 1.6rem; font-family: var(--display); font-weight: 460; padding: .7rem 0; }
    .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: .3rem 0 .8rem 1rem; min-width: 0; background: transparent; }
    .dropdown-menu a { font-family: var(--sans) !important; font-size: 1.05rem !important; }
    .nav-cta { font-size: 1rem !important; margin-top: 1rem; }
    .nav-dropdown .chevron { display: none; }
  }
  @media (max-width: 560px) {
    .blog-grid { grid-template-columns: 1fr; }
    .champs-grid { grid-template-columns: 1fr; }
    .hero-meta .mi-sep { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .cta-banner { flex-direction: column; align-items: flex-start; }
  }
  @media (max-width: 420px) {
    .stats-grid { grid-template-columns: 1fr; }
    .stat-card { border-right: 0; border-bottom: 1px solid var(--line-light); }
  }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
    .js .reveal { opacity: 1; transform: none; }
    .js .hero-title .line > span { transform: none; }
    .marquee-track { animation: none; }
    .hero-atmo { transform: none !important; }
  }

  /* ============================================================
     COMPOSANTS PAGES INTERNES (services, équipe, articles)
     ============================================================ */
  .page-hero { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; padding: clamp(8rem,14vw,11rem) var(--gutter) clamp(3.5rem,7vw,5.5rem); }
  .page-hero::before { content:''; position:absolute; inset:0; opacity:.5; pointer-events:none; background: radial-gradient(50% 60% at 85% 12%, rgba(30,74,60,.7), transparent 70%), radial-gradient(45% 55% at 6% 95%, rgba(176,137,79,.22), transparent 72%); animation: bgBreath 16s ease-in-out infinite; }
  .page-hero-inner { position: relative; z-index: 2; max-width: var(--wrap); margin: 0 auto; }
  .page-hero h1 { font-size: clamp(2.6rem,6.5vw,5rem); color: var(--paper); line-height: 1.0; letter-spacing: -.025em; }
  .page-hero h1 .it, .page-hero h1 .accent { font-style: italic; color: var(--honey-soft); }
  .page-hero .lead, .page-hero-inner > p { margin-top: 1.4rem; max-width: 60ch; color: rgba(242,242,238,.8); font-size: clamp(1.05rem,1.7vw,1.25rem); line-height: 1.6; }
  .breadcrumb { display: flex; align-items: center; gap: .55rem; font-family: var(--sans); font-size: .76rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: rgba(242,242,238,.55); margin-bottom: 1.8rem; }
  .breadcrumb a { color: rgba(242,242,238,.7); transition: color .3s; }
  .breadcrumb a:hover { color: var(--honey-soft); }
  .breadcrumb .sep { opacity: .5; }
  .breadcrumb .current { color: var(--honey-soft); }
  .pill-row { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 2rem; position: relative; z-index: 2; }
  .pill { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem 1rem; border-radius: 100px; border: 1px solid var(--line-light); background: rgba(242,242,238,.05); color: rgba(242,242,238,.9); font-family: var(--sans); font-size: .82rem; font-weight: 500; transition: background .35s, transform .4s var(--ease), border-color .35s; }
  .pill:hover { background: rgba(214,154,74,.14); border-color: var(--honey); transform: translateY(-2px); }
  .svc-meta { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: .75rem; margin-top: 1.8rem; }
  .svc-meta .m { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 12px; padding: .9rem 1.1rem; }
  .svc-meta .m b { display: block; font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--pine-soft); margin-bottom: .25rem; }
  .svc-meta .m span { font-size: .92rem; color: var(--ink-soft); line-height: 1.45; }
  .detail-cols { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1.6rem; margin-top: .5rem; }
  .detail-cols h4 { font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--clay-2); margin-bottom: .7rem; }
  .detail-cols ul { display: flex; flex-direction: column; gap: .5rem; }
  .detail-cols li { font-size: .98rem; color: var(--ink-soft); line-height: 1.5; padding-left: 1.1rem; position: relative; list-style: none; }
  .detail-cols li::before { content: ''; position: absolute; left: 0; top: .6em; width: 6px; height: 6px; border-radius: 50%; background: var(--pine); }
  .member-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 1.6rem; }
  .member { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 16px; overflow: hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .4s; }
  .member:hover { transform: translateY(-5px); box-shadow: 0 28px 48px -28px rgba(21,32,27,.4); border-color: var(--line); }
  .member-photo { aspect-ratio: 4/5; overflow: hidden; background: var(--paper-3); }
  .member-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.35) contrast(1.02); transition: filter .5s var(--ease), transform .8s var(--ease); }
  .member:hover .member-photo img { filter: none; transform: scale(1.04); }
  .member-body { padding: 1.3rem 1.4rem 1.5rem; }
  .member-name { font-family: var(--display); font-size: 1.3rem; font-weight: 500; color: var(--ink); line-height: 1.1; }
  .member-role { font-family: var(--sans); font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--clay-2); margin-top: .4rem; }
  .member-bio { margin-top: .8rem; font-size: .94rem; line-height: 1.6; color: var(--ink-soft); }
  .prose { max-width: 72ch; }
  .prose > * + * { margin-top: 1.4rem; }
  .prose p { font-size: 1.12rem; line-height: 1.8; color: var(--ink); }
  .prose h2 { font-size: clamp(1.7rem,3.4vw,2.4rem); margin-top: 3rem; letter-spacing: -.02em; }
  .prose h3 { font-size: clamp(1.3rem,2.4vw,1.7rem); margin-top: 2.2rem; }
  .prose ul, .prose ol { padding-left: 1.3rem; display: flex; flex-direction: column; gap: .7rem; }
  .prose li { font-size: 1.08rem; line-height: 1.7; color: var(--ink); }
  .prose blockquote { border-left: 3px solid var(--clay); padding: .4rem 0 .4rem 1.6rem; font-family: var(--display); font-style: italic; font-size: 1.35rem; line-height: 1.4; color: var(--pine); }
  .prose a { color: var(--clay-2); border-bottom: 1px solid var(--line); }
  .prose a:hover { border-bottom-color: var(--clay); }
  .article-layout { display: grid; grid-template-columns: minmax(0,1fr) 280px; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
  .article-aside { position: sticky; top: 6rem; display: flex; flex-direction: column; gap: 1.5rem; }
  @media (max-width: 900px) { .article-layout { grid-template-columns: 1fr; } .article-aside { position: static; } }
  /* Liste de prestations (services) */
  .svc-list { display: flex; flex-direction: column; border-top: 1px solid var(--line); margin-top: 1rem; }
  .svc-entry { padding: clamp(2rem,4vw,3rem) 0; border-bottom: 1px solid var(--line); scroll-margin-top: 6rem; }
  .svc-entry .num { font-family: var(--sans); font-size: .8rem; font-weight: 700; letter-spacing: .14em; color: var(--pine-soft); }
  .svc-entry h3 { font-size: clamp(1.5rem,3vw,2.05rem); margin-top: .5rem; }
  .svc-entry .desc { margin-top: 1rem; max-width: 64ch; font-size: 1.05rem; line-height: 1.65; color: var(--ink-soft); }
  .svc-entry .axe-cta { margin-top: 1.6rem; }

  /* ============================================================
     COMPOSANTS ARTICLES (long-form)
     ============================================================ */
  .article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .55rem .9rem; margin-top: 1.5rem; position: relative; z-index: 2; font-family: var(--sans); font-size: .85rem; font-weight: 600; color: rgba(242,242,238,.7); }
  .article-meta .cat { background: var(--clay); color: #FBF4EC; padding: .32rem .85rem; border-radius: 100px; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
  .article-meta .sep { opacity: .45; }
  .article-intro { font-family: var(--display); font-size: clamp(1.3rem,2.4vw,1.7rem); line-height: 1.45; color: var(--ink); font-weight: 400; margin-bottom: 2.5rem; }
  .article-intro .it { font-style: italic; color: var(--clay-2); }
  /* Sommaire */
  .toc { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 14px; padding: 1.3rem 1.4rem; }
  .toc h4 { font-family: var(--sans); font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--pine-soft); margin-bottom: .9rem; }
  .toc ul { display: flex; flex-direction: column; gap: .5rem; list-style: none; padding: 0; }
  .toc a { font-size: .92rem; color: var(--ink-soft); line-height: 1.4; transition: color .3s, border-color .3s; border-left: 2px solid transparent; padding-left: .7rem; display: block; }
  .toc a:hover { color: var(--clay-2); border-left-color: var(--clay); }
  .aside-cta { background: var(--ink); color: var(--paper); border-radius: 14px; padding: 1.5rem; position: relative; overflow: hidden; }
  .aside-cta h4 { color: var(--paper); font-size: 1.25rem; }
  .aside-cta p { color: rgba(242,242,238,.75); font-size: .9rem; margin: .6rem 0 1.1rem; }
  /* Callout / définition */
  .callout { background: var(--paper-2); border-left: 3px solid var(--clay); border-radius: 0 12px 12px 0; padding: 1.3rem 1.6rem; }
  .callout .label { font-family: var(--sans); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--clay-2); display: block; margin-bottom: .5rem; }
  .callout p { margin: 0 !important; font-family: var(--display); font-style: italic; font-size: 1.15rem; line-height: 1.5; color: var(--pine); }
  /* Comparatif */
  .compare { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .compare-col { background: var(--paper); border: 1px solid var(--line-soft); border-radius: 14px; padding: 1.4rem 1.5rem; }
  .compare-col > * + * { margin-top: .7rem; }
  .compare-col h4 { font-size: 1.25rem; }
  @media(max-width:620px){ .compare { grid-template-columns: 1fr; } }
  /* FAQ (details/summary) */
  .faq-item { border-bottom: 1px solid var(--line); padding: 1.15rem 0; }
  .faq-item summary { font-family: var(--display); font-size: clamp(1.1rem,2vw,1.35rem); color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item summary::after { content: '+'; color: var(--clay); font-size: 1.5rem; line-height: 1; transition: transform .35s var(--ease); flex-shrink: 0; }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-item .faq-a { margin-top: .9rem; color: var(--ink-soft); line-height: 1.75; font-size: 1.02rem; }
  .faq-item .faq-a > * + * { margin-top: .8rem; }
  /* Tableau article */
  .prose table, .article-table { width: 100%; border-collapse: collapse; font-size: .96rem; }
  .prose th, .prose td, .article-table th, .article-table td { text-align: left; padding: .75rem .9rem; border-bottom: 1px solid var(--line); }
  .prose th, .article-table th { font-family: var(--sans); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--pine); }
  .article-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
  .article-tags .t { background: var(--paper-2); border: 1px solid var(--line-soft); border-radius: 100px; padding: .35rem .9rem; font-size: .8rem; color: var(--ink-soft); }
