/* =========================================================
   ACMÉ — pages de contenu (hub, articles, cas, livre blanc, FAQ)
   Bâti sur les tokens de styles.css. Strictement monochrome :
   l'accent est un serif italique gris, jamais un aplat coloré.
   ========================================================= */

/* ---------------------------------------------------------
   1. Article — colonne de lecture
   --------------------------------------------------------- */
.art-w { max-width: 760px; }

.art-head { padding: clamp(120px, 14vw, 190px) 0 0; }
.art-head h1.display { font-size: clamp(34px, 4.6vw, 62px); margin: 22px 0 0; }

.art-kicker {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--grey-500);
}
.art-kicker a { color: var(--grey-500); border-bottom: 1px solid var(--grey-300); padding-bottom: 1px; }
.art-kicker a:hover { color: var(--ink); border-bottom-color: var(--ink); }

.art-chapo {
  margin-top: 26px;
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.5;
  color: var(--grey-700);
  max-width: 60ch;
}
.art-meta {
  margin-top: 30px;
  display: flex; flex-wrap: wrap; gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--grey-500);
}

/* Fiche technique d'une étude de cas */
.art-facts {
  margin: 36px 0 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px; background: var(--grey-200);
  border: 1px solid var(--grey-200);
}
.art-facts > div { background: var(--white); padding: 18px 20px; }
.art-facts dt {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--grey-500); margin-bottom: 8px;
}
.art-facts dd { margin: 0; font-size: 14.5px; line-height: 1.4; font-weight: 500; }

.art-anon {
  margin-top: 26px; padding: 14px 18px;
  border-left: 2px solid var(--ink); background: var(--offwhite);
  font-size: 13.5px; line-height: 1.6; color: var(--grey-700);
}

/* ---------------------------------------------------------
   2. Corps d'article
   --------------------------------------------------------- */
/* `padding` en raccourci écraserait la gouttière horizontale de `.container`,
   et le corps ne s'alignerait plus sur le chapeau. */
.art-body { padding-top: clamp(48px, 6vw, 76px); font-size: 17px; line-height: 1.68; }
.art-body > :first-child { margin-top: 0; }

.art-body h2 {
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.14;
  font-size: clamp(24px, 2.5vw, 33px);
  margin: 2.1em 0 0.7em;
}
.art-body h3 {
  font-family: var(--font-display);
  font-weight: 600; letter-spacing: -0.01em; line-height: 1.25;
  font-size: clamp(18px, 1.6vw, 21px);
  margin: 1.9em 0 0.5em;
}
.art-body p { margin: 0 0 1.15em; }
.art-body ul, .art-body ol { margin: 0 0 1.3em; padding-left: 1.15em; }
.art-body li { margin-bottom: 0.6em; }
.art-body li::marker { color: var(--grey-300); }
.art-body strong { font-weight: 600; }
.art-body em { font-family: Georgia, 'Times New Roman', serif; }
.art-body a { border-bottom: 1px solid var(--grey-300); }
.art-body a:hover { border-bottom-color: var(--ink); }

/* Renvoi vers un autre contenu */
.art-more {
  border-left: 2px solid var(--grey-200);
  padding: 4px 0 4px 18px;
  color: var(--grey-500);
  font-size: 15px;
}
/* Note de source sous un tableau de repères */
.art-note { font-size: 13px; line-height: 1.6; color: var(--grey-500); margin-top: -0.4em; }

/* Tableaux — présents dans plusieurs articles, absents de styles.css */
.tw {
  overflow-x: auto;
  border: 1px solid var(--grey-200);
  margin: 0 0 1.6em;
  background: var(--white);
}
.tw table { border-collapse: collapse; width: 100%; font-size: 14.5px; min-width: 520px; }
.tw th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--grey-500); font-weight: 500;
  padding: 13px 15px; border-bottom: 1px solid var(--grey-200);
  background: var(--offwhite); vertical-align: bottom;
}
.tw td { padding: 13px 15px; border-bottom: 1px solid var(--grey-100); vertical-align: top; line-height: 1.5; }
.tw tr:last-child td { border-bottom: 0; }

.art-foot {
  margin: clamp(56px, 7vw, 88px) 0 clamp(90px, 11vw, 140px);
  padding-top: 34px; border-top: 1px solid var(--grey-200);
  display: flex; flex-wrap: wrap; gap: 12px;
}

/* ---------------------------------------------------------
   3. Hub de contenus
   --------------------------------------------------------- */
.ct-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.ct-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--grey-200);
  background: var(--white);
  padding: 28px 26px 24px;
  transition: border-color .35s var(--ease-out), transform .35s var(--ease-out);
}
.ct-card:hover { border-color: var(--ink); transform: translateY(-3px); }
.ct-card-top {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--grey-500); margin-bottom: 20px;
}
.ct-card h3 {
  font-family: var(--font-display);
  font-weight: 600; font-size: 20px; line-height: 1.2; letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.ct-card p { font-size: 14.5px; line-height: 1.55; color: var(--grey-500); margin-bottom: 22px; }
.ct-card-foot {
  margin-top: auto; padding-top: 16px; border-top: 1px solid var(--grey-100);
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--grey-500);
}
.ct-card:hover .ct-go { color: var(--ink); }

/* La mise en avant : le livre blanc et la FAQ */
.ct-feature {
  display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  border: 1px solid var(--ink);
  background: var(--ink); color: var(--white);
  transition: transform .35s var(--ease-out);
}
.ct-feature:hover { transform: translateY(-3px); }
.ct-feature-txt { padding: clamp(34px, 4.4vw, 64px); }
.ct-feature .eyebrow { color: var(--grey-500); }
.ct-feature h2.display { font-size: clamp(28px, 3.4vw, 50px); margin-bottom: 22px; }
.ct-feature .lead { color: var(--grey-300); margin-bottom: 34px; }
.ct-feature .btn { pointer-events: none; }

/* Repère graphique : les phases du protocole, en filet */
.ct-feature-mark {
  border-left: 1px solid var(--grey-900);
  display: flex; flex-direction: column; justify-content: center; gap: 18px;
  padding: clamp(34px, 4.4vw, 64px);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.28em; color: var(--grey-700);
}
.ct-feature-mark span { position: relative; padding-left: 34px; }
.ct-feature-mark span::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 22px; height: 1px; background: currentColor;
}
.ct-feature-mark span:nth-child(3) { color: var(--white); }
.ct-feature-mark span:nth-child(3)::before { width: 34px; height: 2px; }

.ct-feature-alt { grid-template-columns: 1fr; background: var(--white); color: var(--ink); border-color: var(--grey-200); }
.ct-feature-alt:hover { border-color: var(--ink); }
.ct-feature-alt .lead { color: var(--grey-700); }
.ct-feature-alt .eyebrow { color: var(--grey-500); }

/* ---------------------------------------------------------
   4. FAQ
   --------------------------------------------------------- */
.faq-nav {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 56px; padding-bottom: 26px;
  border-bottom: 1px solid var(--grey-200);
}
.faq-nav a {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  border: 1px solid var(--grey-300); padding: 10px 15px; color: var(--grey-700);
  transition: border-color .2s var(--ease-out), background .2s var(--ease-out), color .2s var(--ease-out);
}
.faq-nav a:hover { background: var(--ink); border-color: var(--ink); color: var(--white); }

.faq-sec { margin-bottom: 64px; max-width: 860px; }
.faq-cat {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--grey-500); margin-bottom: 20px; font-weight: 400;
}

.faq-i { border-top: 1px solid var(--grey-200); }
.faq-sec .faq-i:last-child { border-bottom: 1px solid var(--grey-200); }
.faq-i summary {
  list-style: none; cursor: pointer;
  padding: 22px 46px 22px 0; position: relative;
}
.faq-i summary::-webkit-details-marker { display: none; }
.faq-i summary h3 {
  font-family: var(--font-display);
  font-weight: 600; font-size: clamp(17px, 1.5vw, 21px); line-height: 1.3;
  letter-spacing: -0.01em; margin: 0;
}
/* Le signe : une croix qui devient un moins */
.faq-i summary::after,
.faq-i summary::before {
  content: ''; position: absolute; right: 6px; top: 50%;
  background: var(--ink); transition: transform .3s var(--ease-out), opacity .3s var(--ease-out);
}
.faq-i summary::before { width: 15px; height: 1px; margin-top: -0.5px; }
.faq-i summary::after { width: 1px; height: 15px; margin-top: -7.5px; margin-right: 7px; }
.faq-i[open] summary::after { transform: scaleY(0); opacity: 0; }
.faq-i summary:hover h3 { color: var(--grey-700); }
.faq-a { padding: 0 46px 26px 0; max-width: 68ch; }
.faq-a p { font-size: 16px; line-height: 1.68; color: var(--grey-700); margin: 0; }
.faq-a a { border-bottom: 1px solid var(--grey-300); color: var(--ink); }
.faq-a a:hover { border-bottom-color: var(--ink); }
.faq-a em { font-family: Georgia, 'Times New Roman', serif; }

.faq-cta { border-top: 1px solid var(--grey-200); padding-top: clamp(48px, 6vw, 76px); text-align: center; }
.faq-cta .lead { margin: 20px auto 34px; }
.faq-cta .ctas { display: flex; justify-content: center; }

/* ---------------------------------------------------------
   5. Livre blanc
   --------------------------------------------------------- */
.wb-head { padding: clamp(120px, 14vw, 190px) 0 clamp(48px, 6vw, 72px); background: var(--offwhite); }
.wb-head h1.display { font-size: clamp(38px, 5.4vw, 76px); margin: 22px 0 0; }

.wb-grid {
  display: grid; grid-template-columns: 210px minmax(0, 1fr);
  gap: 60px; align-items: start;
  padding: clamp(56px, 7vw, 90px) 0 clamp(90px, 11vw, 140px);
}
.wb-rail { position: sticky; top: 118px; display: grid; gap: 10px; }
.wb-rail a {
  display: flex; gap: 10px; align-items: baseline;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--grey-500);
  border-left: 2px solid transparent; padding-left: 10px;
  transition: color .2s var(--ease-out), border-color .2s var(--ease-out);
}
.wb-rail a:hover { color: var(--ink); border-left-color: var(--ink); }
.wb-rail .n { color: var(--grey-300); flex: none; }

.wb-body { font-size: 17px; line-height: 1.68; min-width: 0; }
.wb-body section { padding-bottom: clamp(48px, 6vw, 72px); }
.wb-body section + section { border-top: 1px solid var(--grey-200); padding-top: clamp(48px, 6vw, 72px); }
.wb-body h2 {
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1.12;
  font-size: clamp(26px, 2.8vw, 38px);
  margin: 0 0 0.7em; display: flex; gap: 18px; align-items: baseline;
}
.wb-n { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.2em; color: var(--grey-300); flex: none; }
.wb-body h3 {
  font-family: var(--font-display);
  font-weight: 600; font-size: clamp(18px, 1.6vw, 22px); line-height: 1.25;
  letter-spacing: -0.01em; margin: 1.9em 0 0.5em;
}
.wb-body p { margin: 0 0 1.15em; max-width: 68ch; }
.wb-body ul, .wb-body ol { margin: 0 0 1.3em; padding-left: 1.15em; max-width: 68ch; }
.wb-body li { margin-bottom: 0.6em; }
.wb-body li::marker { color: var(--grey-300); }
.wb-body em { font-family: Georgia, 'Times New Roman', serif; }
.wb-lede { font-size: clamp(17px, 1.4vw, 20px); color: var(--grey-700); max-width: 62ch; margin-bottom: 1.6em !important; }

.wb-princ { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--grey-200); border: 1px solid var(--grey-200); margin-bottom: 1.6em; }
.wb-princ > div { background: var(--white); padding: 26px 24px; }
.wb-princ h3 { margin: 0 0 10px; font-size: 17px; }
.wb-princ p { font-size: 14.5px; line-height: 1.6; color: var(--grey-500); margin: 0; }

.wb-steps { counter-reset: s; list-style: none; padding: 0 !important; }
.wb-steps > li { counter-increment: s; position: relative; padding-left: 44px; margin-bottom: 1.1em; }
.wb-steps > li::before {
  content: counter(s, decimal-leading-zero);
  position: absolute; left: 0; top: 3px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; color: var(--grey-300);
}

.wb-cta { border: 1px solid var(--ink); padding: clamp(30px, 3.6vw, 46px); margin-top: 2em; }
.wb-cta h3 { margin: 0 0 10px; font-size: clamp(20px, 2vw, 26px); }
.wb-cta p { color: var(--grey-500); font-size: 15px; }
.wb-cta .ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* ---------------------------------------------------------
   6. Responsive
   --------------------------------------------------------- */
@media (max-width: 1040px) {
  .ct-grid { grid-template-columns: repeat(2, 1fr); }
  .ct-feature { grid-template-columns: 1fr; }
  .ct-feature-mark { border-left: 0; border-top: 1px solid var(--grey-900); flex-direction: row; flex-wrap: wrap; gap: 10px 26px; }
  .wb-grid { grid-template-columns: 1fr; gap: 0; }
  .wb-rail {
    position: static; grid-auto-flow: column; grid-auto-columns: max-content;
    overflow-x: auto; gap: 18px; padding-bottom: 22px; margin-bottom: 34px;
    border-bottom: 1px solid var(--grey-200);
  }
  .wb-rail a { border-left: 0; padding-left: 0; white-space: nowrap; }
  .wb-rail a:hover { border-left-color: transparent; }
}
@media (max-width: 700px) {
  .ct-grid { grid-template-columns: 1fr; }
  .wb-princ { grid-template-columns: 1fr; }
  .art-body, .wb-body { font-size: 16px; }
  .faq-i summary { padding-right: 38px; }
}

/* Le contenu éditorial n'existe qu'en français : la clé est vide côté FR,
   la ligne ne s'affiche donc que sur la version anglaise. */
.ct-frnote {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.08em;
  color: var(--grey-500);
}
.ct-frnote:empty { display: none; }

/* Bloc « Sources » en pied d'article. Citer des sources externes identifiables
   est la tactique GEO la mieux mesurée — et c'est aussi ce qui permet au lecteur
   de vérifier plutôt que de croire. */
.art-sources {
  margin-top: clamp(48px, 6vw, 72px);
  padding-top: 30px;
  border-top: 1px solid var(--grey-200);
}
.art-sources h2 {
  font-family: var(--font-mono) !important;
  font-size: 11px !important;
  font-weight: 400 !important;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin: 0 0 20px !important;
}
.art-sources ul { list-style: none; padding: 0; margin: 0 0 20px; }
.art-sources li {
  font-size: 14px; line-height: 1.55;
  color: var(--grey-500);
  padding: 11px 0;
  border-bottom: 1px solid var(--grey-100);
  margin: 0;
}
.art-sources li a { color: var(--ink); font-weight: 500; border-bottom: 1px solid var(--grey-300); }
.art-sources li a:hover { border-bottom-color: var(--ink); }
.art-sources-note { font-size: 12.5px; line-height: 1.55; color: var(--grey-500); }

/* Un lien sortant dans un tableau de repères reste discret */
.tw td a { border-bottom: 1px solid var(--grey-300); }
.tw td a:hover { border-bottom-color: var(--ink); }

/* ---------------------------------------------------------
   8. Figures — schémas et infographies
   Strictement monochrome : l'accent est un aplat d'encre ou un trait plus
   épais, jamais une couleur. Les libellés sont en mono, les valeurs en
   display — même grammaire que le reste du site.
   --------------------------------------------------------- */
.fg { margin: 2.2em 0; }
.fg-svg { width: 100%; height: auto; display: block; overflow: visible; }
.fg figcaption {
  margin-top: 16px; padding-top: 12px;
  border-top: 1px solid var(--grey-200);
  font-size: 13px; line-height: 1.55; color: var(--grey-500);
}
.fg-bar   { fill: var(--ink); }
.fg-box   { fill: none; stroke: var(--grey-300); stroke-width: 1; }
.fg-box.is-dash { stroke-dasharray: 4 4; }
.fg-box.is-full { fill: var(--ink); stroke: var(--ink); }
.fg-link  { stroke: var(--grey-300); stroke-width: 1; }
.fg-axis  { stroke: var(--grey-200); stroke-width: 1; }
.fg-lab   { font-family: var(--font-mono); font-size: 11px; fill: var(--grey-700); }
.fg-val   { font-family: var(--font-display); font-weight: 700; font-size: 13px; fill: var(--ink); }
.fg-ax    { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase; fill: var(--grey-500); }
.fg-n     { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .2em; }
.fg-t     { font-family: var(--font-display); font-weight: 600; font-size: 13.5px; }
.fg-s     { font-family: var(--font-body); font-size: 11.5px; }
.fg-on    { fill: var(--ink); }
.fg-on-s  { fill: var(--grey-500); }
.fg-in    { fill: var(--white); }
.fg-in-s  { fill: var(--grey-300); }

/* Bandeau de chiffres sourcés */
.stat-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1px; background: var(--grey-200);
  border: 1px solid var(--grey-200);
  margin: 2em 0;
}
.stat-row > div { background: var(--white); padding: 22px 20px; }
.stat-v {
  display: block;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(26px, 3vw, 38px); line-height: 1;
  letter-spacing: -.03em; margin-bottom: 10px;
}
.stat-l { display: block; font-size: 13.5px; line-height: 1.45; color: var(--grey-700); margin-bottom: 8px; }
.stat-s { display: block; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--grey-500); }

/* ---------------------------------------------------------
   9. FAQ d'article, activation, aller plus loin
   --------------------------------------------------------- */
.art-faq { margin-top: clamp(48px, 6vw, 72px); padding-top: 34px; border-top: 1px solid var(--grey-200); }
.art-faq > h2 {
  font-family: var(--font-mono) !important;
  font-size: 11px !important; font-weight: 400 !important;
  letter-spacing: .4em; text-transform: uppercase;
  color: var(--grey-500); margin: 0 0 18px !important;
}
.art-faq .faq-i summary h3 { font-size: clamp(16px, 1.4vw, 19px); }

/* L'article se referme, le bloc d'activation prend toute la largeur en noir */
.art-tail { display: block; }
.art-help { background: var(--ink); color: var(--white); padding: clamp(54px, 7vw, 92px) var(--gutter); }
.art-help-in { max-width: 760px; margin: 0 auto; }
.art-help .eyebrow { color: var(--grey-500); margin-bottom: 18px; }
.art-help h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(26px, 3vw, 42px); line-height: 1.1; letter-spacing: -.02em;
  margin: 0 0 20px;
}
.art-help .lead { color: var(--grey-300); margin-bottom: 28px; }
.art-help-list { list-style: none; padding: 0; margin: 0 0 34px; border-top: 1px solid var(--grey-900); }
.art-help-list li {
  border-bottom: 1px solid var(--grey-900);
  padding: 13px 0 13px 26px; position: relative;
  font-size: 15px; line-height: 1.55; color: var(--grey-300);
}
.art-help-list li::before {
  content: ''; position: absolute; left: 0; top: 21px;
  width: 11px; height: 1px; background: var(--grey-500);
}
.art-help .ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.art-loin { margin-top: clamp(44px, 5vw, 64px); padding-top: 30px; border-top: 1px solid var(--grey-200); }
.art-loin > h2 {
  font-family: var(--font-mono) !important;
  font-size: 11px !important; font-weight: 400 !important;
  letter-spacing: .4em; text-transform: uppercase;
  color: var(--grey-500); margin: 0 0 16px !important;
}
.art-loin-g { display: grid; gap: 1px; background: var(--grey-200); border: 1px solid var(--grey-200); }
.art-loin-g a {
  background: var(--white); padding: 17px 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 15px; font-weight: 500;
  transition: background .2s var(--ease-out);
}
.art-loin-g a:hover { background: var(--offwhite); }
.art-loin-g a .arrow { flex: none; color: var(--grey-500); }
.art-loin-g a:hover .arrow { color: var(--ink); }

@media (max-width: 700px) {
  .fg-lab { font-size: 13px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
}

/* ---------------------------------------------------------
   10. Impact d'une étude de cas
   La section que lit un décideur : ce que l'étude a permis de trancher,
   ce qu'elle a évité, et ce que ça a coûté ou fait gagner.
   --------------------------------------------------------- */
.art-impact { margin-top: clamp(48px, 6vw, 72px); padding-top: 34px; border-top: 1px solid var(--grey-200); }
.art-impact > h2 {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: clamp(24px, 2.5vw, 33px) !important;
  letter-spacing: -.02em; line-height: 1.14;
  margin: 0 0 .6em !important;
}
.imp-lede { font-size: clamp(16px, 1.4vw, 19px); color: var(--grey-700); margin-bottom: 1.6em; }
.imp-g {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--grey-200); border: 1px solid var(--grey-200);
}
.imp-g > div { background: var(--white); padding: 24px 22px; }
.imp-k {
  display: block;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--grey-500); margin-bottom: 11px;
}
.imp-g p { font-size: 14.5px; line-height: 1.55; margin: 0; }
.imp-note { font-size: 12.5px; line-height: 1.55; color: var(--grey-500); margin-top: 16px; }
@media (max-width: 640px) { .imp-g { grid-template-columns: 1fr; } }

/* ---------------------------------------------------------
   11. Illustrations
   Bandeaux pleine largeur entre l'en-tête et le corps, et deux boucles
   vidéo sur les pages qui les portent. Les visuels sont en gris baké à
   l'encodage (comme les vidéos du hero d'accueil) : l'identité est
   monochrome, et un filtre CSS sortirait chaque image du chemin rapide
   du compositeur.
   --------------------------------------------------------- */
.art-illus {
  margin-top: clamp(36px, 4.5vw, 56px);
  background: var(--offwhite);
  overflow: hidden;
}
.art-illus img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 8 / 3; object-fit: cover;
}

/* Le média du bloc mis en avant, côté hub */
.ct-feature-media {
  border-left: 1px solid var(--grey-900);
  overflow: hidden;
  min-height: 240px;
  position: relative;
}
.ct-feature-media video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  /* Le plan est clair et la colonne est noire : on le fond dans le bord
     intérieur plutôt que de laisser une vignette rapportée. */
  mask-image: linear-gradient(90deg, transparent 0%, #000 34%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 34%);
  opacity: .9;
}

/* Le média du livre blanc, sous le titre */
.wb-media {
  margin-top: clamp(34px, 4vw, 52px);
  overflow: hidden;
}
.wb-media video {
  width: 100%; height: auto; display: block;
  aspect-ratio: 16 / 7; object-fit: cover;
}

/* Mouvement réduit : les boucles s'arrêtent sur leur poster.
   `autoplay` ne se désactive pas en CSS — c'est le JS de page qui met en
   pause (cf. main-illus dans le pied de page des gabarits). */
@media (prefers-reduced-motion: reduce) {
  .ct-feature-media video, .wb-media video { animation: none; }
}

@media (max-width: 1040px) {
  .ct-feature-media { min-height: 200px; }
  .ct-feature-media video {
    mask-image: linear-gradient(180deg, transparent 0%, #000 40%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 40%);
  }
}

/* ---------------------------------------------------------
   12. Signature
   Une prise de position vaut par celui qui la tient. Les initiales en
   pastille reprennent la présentation de l'équipe sur « qui sommes-nous ».
   --------------------------------------------------------- */
.art-by {
  display: flex; align-items: center; gap: 13px;
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid var(--grey-100);
}
.art-by-i {
  flex: none;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border: 1px solid var(--grey-300);
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .06em;
  color: var(--grey-700);
}
.art-by-t { font-size: 14px; line-height: 1.35; color: var(--grey-500); }
.art-by-t a { color: var(--ink); border-bottom: 1px solid var(--grey-300); }
.art-by-t a:hover { border-bottom-color: var(--ink); }
.art-by-r {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--grey-500); margin-top: 3px;
}

/* ---------------------------------------------------------
   13. Hero de la page Contenus
   Texte à gauche, plan à fond perdu à droite. Pas de scrub : c'est une
   page d'entrée, elle doit se lire immédiatement. Le bord intérieur du
   plan est estompé pour qu'il se fonde dans la page plutôt que de
   ressembler à une vignette rapportée.
   --------------------------------------------------------- */
.ct-hero {
  position: relative;
  padding: clamp(110px, 13vw, 180px) 0 clamp(60px, 7vw, 96px);
  overflow: hidden;
  background: var(--white);
}
.ct-hero-in { position: relative; z-index: 2; }
.ct-hero-txt { max-width: min(52ch, 54%); }
/* Le hero du hub tombait sur la regle globale h1.display, qui plafonne a
   104 px : il ecrasait tout le reste du site. Il reprend desormais, valeur
   pour valeur, le hero de l'accueil (.h2-beat dans styles-v4-3.css) — meme
   echelle de titre, meme accent serif, meme corps de chapo.
   Les couleurs --on-plate ne sont pas reprises : elles ne sont definies que
   dans styles-v4-2.css, que cette page ne charge pas. --grey-700 en tient
   lieu, a trois valeurs pres. */
.ct-hero h1.display { font-size: clamp(38px, 4.9vw, 76px); margin: 0; }
.ct-hero h1 .serif {
  font-family: 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
  font-style: italic; font-weight: 400; letter-spacing: -.01em;
  color: var(--grey-500);
}
.ct-hero .lead {
  margin-top: 20px; max-width: 40ch;
  font-size: clamp(15px, 1.2vw, 19px); line-height: 1.5;
}
.ct-hero-media {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(46vw, 720px);
  z-index: 1;
  pointer-events: none;
}
.ct-hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  /* Le plan est clair et la page est blanche : seul le bord qui rencontre
     la typographie a besoin de fondre. */
  mask-image: linear-gradient(90deg, transparent 0%, #000 42%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 42%);
}
@media (max-width: 1000px) {
  .ct-hero { padding-top: clamp(96px, 12vw, 140px); }
  .ct-hero-txt { max-width: none; }
  .ct-hero-media {
    position: relative; width: auto; height: 42vw; max-height: 340px;
    margin-top: 36px;
  }
  .ct-hero-media video {
    mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
  }
}

/* ==== Pages légales ====
   Une colonne de texte, pas de décor : ces pages se lisent en diagonale
   pour y trouver un nom, une durée ou une adresse. */
.legal { max-width: 760px; }
.legal-sec { margin-top: 48px; }
.legal-sec:first-child { margin-top: 0; }
.legal-sec h2 {
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 23px); font-weight: 700; line-height: 1.2;
  margin: 0 0 16px; color: var(--ink);
}
.legal-sec p { margin: 0 0 14px; font-size: 15.5px; line-height: 1.65; color: var(--grey-700); }
.legal-sec ul { margin: 0 0 14px; padding-left: 20px; }
.legal-sec li { margin-bottom: 8px; font-size: 15.5px; line-height: 1.6; color: var(--grey-700); }
.legal-sec a { text-decoration: underline; text-underline-offset: 3px; }
.legal-revision {
  margin-top: 56px; padding-top: 20px;
  border-top: 1px solid var(--grey-200);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em;
  color: var(--grey-500);
}
