/* ============================================================
   MÉDECINE CULINAIRE — medecineculinaire.ca
   Design tokens et styles globaux
   Identité institutionnelle Médecine culinaire (Université Laval)
   Co-branding fondateur Michel Lucas
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght,SOFT,WONK@0,9..144,300..900,0..100,0..1;1,9..144,300..900,0..100,0..1&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&display=swap');

:root {
  /* Couleurs Médecine culinaire — primaires */
  --mc-vert: #4c654e;
  --mc-vert-fonce: #3d5040;
  --mc-vert-encre: #2a3a2c;       /* encre de chêne, presque noir vert */
  --mc-vert-clair: #6b8a6e;
  --mc-beige: #e4dfd5;
  --mc-beige-clair: #f0ede8;
  --mc-blanc-casse: #faf8f3;

  /* Vélin / papier vieilli — atmosphère éditoriale */
  --mc-vellum: #fbf7ec;            /* page apaisée, plus lumineuse */
  --mc-vellum-fonce: #f0e9d6;
  --mc-encre: #14130d;             /* encre profonde, contraste max */

  /* Accents éditoriaux + co-branding Michel Lucas */
  --mc-or: #B8860B;
  --mc-or-clair: #d4a93d;
  --mc-or-feuille: #c8a04a;        /* or feuille pour rules / mosaïques */
  --mc-bordeaux: #6b2c2c;          /* sang de bœuf, accent rare */
  --mc-noir: #1a1a1a;
  --mc-gris: #6b6b6b;
  --mc-gris-leger: #a8a8a8;
  --mc-rule: rgba(28, 26, 20, 0.18);

  /* Typographie — Fraunces (titres) + Source Sans 3 (corps, humaniste, ultra-lisible) */
  --font-display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: 'Source Sans 3', system-ui, sans-serif;
  --font-settings-display: "opsz" 144, "SOFT" 50, "WONK" 0;

  /* Échelle typo — confiante, généreuse */
  --text-6xl: 6rem;
  --text-5xl: 4.75rem;
  --text-4xl: 3.6rem;
  --text-3xl: 2.6rem;
  --text-2xl: 2.05rem;
  --text-xl: 1.55rem;
  --text-lg: 1.3rem;
  --text-md: 1.18rem;
  --text-sm: 1.02rem;
  --text-xs: 0.92rem;

  /* Espacement */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 5rem;
  --space-4xl: 8rem;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 76px;
  --header-height: 88px;
  --stb-height: 36px;
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 28px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 18px 52px rgba(0, 0, 0, 0.16);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 400;
  line-height: 1.65;
  color: var(--mc-noir);
  background: var(--mc-blanc-casse);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--mc-vert-encre); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--mc-or); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--mc-vert-fonce);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
  font-weight: 500;
}
h1 { font-size: clamp(2.6rem, 6vw, var(--text-5xl)); font-weight: 500; letter-spacing: -0.03em; }
h2 { font-size: clamp(2.1rem, 4vw, var(--text-4xl)); font-weight: 500; letter-spacing: -0.03em; margin-bottom: var(--space-lg); }
h3 { font-size: var(--text-2xl); font-weight: 500; letter-spacing: -0.02em; margin-bottom: var(--space-md); line-height: 1.15; }
h4 { font-size: var(--text-lg); font-weight: 600; margin-bottom: var(--space-sm); letter-spacing: -0.01em; line-height: 1.25; font-variation-settings: "opsz" 24, "SOFT" 50, "WONK" 0; }
h1 em, h2 em, h3 em { font-style: italic; font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1; font-weight: 400; }
p { margin-bottom: var(--space-lg); }

blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-xl);
  color: var(--mc-vert-fonce);
  border-left: 3px solid var(--mc-or);
  padding-left: var(--space-xl);
  margin: var(--space-2xl) 0;
}

.overline {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.875rem;
  color: var(--mc-or);
  margin-bottom: var(--space-md);
  display: inline-block;
  font-feature-settings: "ss03";
}

.lead { font-family: var(--font-body); font-size: 1.2rem; line-height: 1.6; letter-spacing: 0; color: var(--mc-encre); font-weight: 400; }

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section { padding: var(--space-4xl) 0; }
.section--compact { padding: var(--space-3xl) 0; }
.section--vert { background: var(--mc-vert); color: var(--mc-beige); }
.section--vert h1, .section--vert h2, .section--vert h3, .section--vert h4 { color: var(--mc-beige); }
.section--vert .overline { color: var(--mc-or-clair); }
.section--vert-fonce { background: var(--mc-vert-fonce); color: var(--mc-beige); }
body.vellum .section--vert-fonce h1,
body.vellum .section--vert-fonce h3,
body.vellum .section--vert-fonce h4 { color: var(--mc-beige); }
body.vellum .section--vert-fonce h2 { color: #fff; }
.section--vert-fonce .overline { color: var(--mc-or-clair); }
.section--vert-fonce strong { color: var(--mc-or-clair); }
.section--beige { background: var(--mc-beige); }
.section--beige-clair { background: var(--mc-beige-clair); }

.text-center { text-align: center; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3xl); align-items: center; }
.split--narrow { gap: var(--space-2xl); }
@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; gap: var(--space-2xl); }
}

.grid { display: grid; gap: var(--space-xl); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
}

/* --- Boutons --- */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-md);
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
}
.btn--primary { background: var(--mc-vert); color: var(--mc-beige); border-color: var(--mc-vert-encre); }
.btn--primary:hover { background: var(--mc-vert-fonce); color: #fff; }
.btn--outline { background: transparent; color: var(--mc-vert-encre); border-color: var(--mc-vert-encre); }
.btn--outline:hover { background: var(--mc-vert); color: var(--mc-beige); }
.btn--ghost { background: transparent; color: var(--mc-beige); border-color: var(--mc-beige); }
.btn--ghost:hover { background: var(--mc-beige); color: var(--mc-vert-encre); }
.btn--gold { background: var(--mc-or); color: #fff; border-color: var(--mc-or); }
.btn--gold:hover { background: var(--mc-vert); border-color: var(--mc-vert-encre); }

.btn-group { display: flex; flex-wrap: wrap; gap: var(--space-md); }

/* --- Save-the-date persistant — bandeau OR ANCIEN bien voyant --- */
.std-banner {
  background: var(--mc-or);
  color: var(--mc-encre);
  font-size: var(--text-sm);
  text-align: center;
  padding: 0.5rem 1rem;
  position: relative;
  letter-spacing: 0.02em;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.std-banner a { color: #fff !important; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; font-weight: 700; }
.std-banner a:hover { color: var(--mc-vellum) !important; }
.std-banner__close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  color: var(--mc-encre); font-size: 1.3rem; opacity: 0.65;
  font-weight: 700;
}
.std-banner__close:hover { opacity: 1; }
.std-banner.is-hidden { display: none; }

/* --- Brand header --- */
.brand-header {
  background: #45664C;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--mc-vert-encre);
}
.brand-header__logo img { height: 110px !important; width: auto; display: block; }
@media (max-width: 720px) {
  .brand-header__logo img { height: 84px !important; }
}

/* Carte signature à droite — « Du savoir au pouvoir d'agir » */
.brand-header__right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 110px;
  background: transparent;
  padding: var(--space-md) var(--space-lg);
  overflow: hidden;
}
.brand-header__watermark {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  height: 96px;
  width: auto;
  opacity: 0.22;
  pointer-events: none;
}
.brand-header__quote {
  position: relative;
  z-index: 1;
  text-align: center;
}
.brand-header__quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--mc-vellum);
  line-height: 1.3;
  margin: 0 0 6px;
  font-variation-settings: "opsz" 24, "SOFT" 100, "WONK" 1;
}
.brand-header__quote-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mc-or-clair);
  margin: 0;
}
@media (max-width: 880px) {
  .brand-header__right { display: none; }
}
.brand-header .container {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.brand-header__logo { margin-right: auto; }
.brand-header__logo { display: flex; align-items: center; gap: var(--space-md); text-decoration: none; }
.brand-header__logo img { height: 56px; width: auto; }
.brand-header__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-header__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--mc-vert-fonce);
  letter-spacing: 0.04em;
}
.brand-header__baseline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-sm);
  color: var(--mc-vert-encre);
}
.brand-header__institutional {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--mc-gris);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-top: 2px;
}
.brand-header__lang {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  font-weight: 600;
}
.brand-header__lang a { color: rgba(244, 236, 219, 0.75); }
.brand-header__lang a:hover { color: var(--mc-or-clair); }
.brand-header__lang a.is-active { color: var(--mc-vellum); text-decoration: underline; text-underline-offset: 4px; }
.brand-header__lang-sep { color: rgba(244, 236, 219, 0.4); }

@media (max-width: 720px) {
  .brand-header__institutional { display: none; }
  .brand-header__logo img { height: 44px; }
  .brand-header__name { font-size: var(--text-lg); }
}

/* --- Navigation --- */
.nav {
  background: var(--mc-vert);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}
.nav__links {
  list-style: none;
  display: flex;
  gap: var(--space-xl);
  align-items: center;
  margin: 0;
  padding: 0;
}
.nav__links > li { position: relative; }
.nav__links a {
  color: var(--mc-beige);
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.nav__links a:hover, .nav__links a.active {
  color: #fff;
  border-bottom-color: var(--mc-or-clair);
}

/* JFMC dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown > a::after { content: " ▾"; font-size: 0.7em; opacity: 0.7; }
.nav__submenu {
  position: absolute;
  top: 100%;
  left: -16px;
  background: var(--mc-vert-fonce);
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  min-width: 220px;
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  display: none;
  z-index: 110;
}
.nav__dropdown:hover .nav__submenu,
.nav__dropdown:focus-within .nav__submenu {
  display: block;
}
.nav__submenu li { padding: 0; }
.nav__submenu a {
  display: block;
  padding: 0.6rem 1.25rem;
  border-bottom: none;
  color: var(--mc-beige);
}
.nav__submenu a:hover { background: rgba(255, 255, 255, 0.08); border-bottom-color: transparent; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--mc-beige);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--mc-vert);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-md) 0;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.2s ease;
    box-shadow: var(--shadow-md);
  }
  .nav__links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 0.85rem var(--space-xl); border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav__submenu {
    position: static;
    box-shadow: none;
    background: rgba(0,0,0,0.18);
    display: block;
    padding: 0;
    border-radius: 0;
  }
  .nav__submenu a { padding-left: calc(var(--space-xl) * 1.5); }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: var(--mc-vert);
  color: var(--mc-beige);
  overflow: hidden;
  padding: var(--space-3xl) 0;
}
.hero--with-image::before {
  content: "";
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-image: var(--hero-image);
  opacity: 0.32;
  z-index: 0;
}
.hero--with-image::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(61,80,64,0.85) 0%, rgba(61,80,64,0.55) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero h1 { color: var(--mc-beige); margin-bottom: var(--space-lg); }
.hero h1 em { font-style: italic; color: var(--mc-or-clair); font-weight: 500; }
.hero .overline { color: var(--mc-or-clair); }
.hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  margin-bottom: var(--space-xl);
  max-width: 640px;
  color: rgba(255,255,255,0.95);
}
.hero__signature {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--mc-or-clair);
  font-size: var(--text-xl);
  margin: var(--space-xl) 0;
}

/* --- Cards --- */
.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card__number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  color: var(--mc-or);
  line-height: 1;
  margin-bottom: var(--space-md);
}
.card__image {
  margin: calc(var(--space-2xl) * -1) calc(var(--space-2xl) * -1) var(--space-xl);
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.card__image img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.card--dark { background: var(--mc-vert-fonce); color: var(--mc-beige); }
.card--dark h3, .card--dark h4 { color: var(--mc-beige); }
.card--dark .card__number { color: var(--mc-or-clair); }
.card--beige { background: var(--mc-beige); }
.card--beige-clair { background: var(--mc-beige-clair); }

/* --- Carte produit (4 espaces) --- */
.product-card {
  background: var(--mc-beige-clair);
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  border-left: 4px solid var(--mc-vert);
  font-family: var(--font-body);
}
.product-card h3 {
  color: var(--mc-vert-fonce);
  margin-bottom: 0.4rem;
  font-family: var(--font-display);
  font-variation-settings: "opsz" 24, "SOFT" 50, "WONK" 0;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.product-card__sub {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--mc-gris);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
  letter-spacing: 0;
}
.product-card p,
.product-card li { font-size: 1.3rem; line-height: 1.6; letter-spacing: 0; }
.product-card--axe { border-left-color: var(--mc-or); }
.product-card--axe p,
.product-card--axe li { font-size: clamp(1.3rem, 1.7vw, 1.5rem); line-height: 1.55; }
.product-card .axe-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mc-or);
  margin-bottom: 0.4rem;
}
.product-card .axe-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mc-or);
  margin-bottom: 0.4rem;
}
.product-card__icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-pill);
  background: rgba(188, 196, 108, 0.22);
  color: var(--mc-vert-fonce);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-lg);
}
.product-card__icon svg {
  width: 30px; height: 30px;
  stroke-width: 1.6;
}

/* --- Diagramme ADN simplifié (texte) --- */
.adn {
  background: var(--mc-beige-clair);
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
}
.adn__category {
  border-top: 1px solid rgba(76,101,78,0.18);
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
}
.adn__category:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.adn__category h4 {
  color: var(--mc-vert-fonce);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: var(--text-base);
  margin-bottom: 0.35rem;
}
.adn__category-sub {
  font-style: italic;
  color: var(--mc-gris);
  font-size: var(--text-base);
  margin-bottom: var(--space-md);
}
.adn__pillar {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--space-md);
  align-items: start;
  margin-bottom: var(--space-md);
}
.adn__num {
  width: 40px; height: 40px;
  border-radius: var(--radius-pill);
  background: var(--mc-or);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
}
.adn__pillar--alt .adn__num { background: var(--mc-vert); }
.adn__pillar--core .adn__num { background: var(--mc-vert-fonce); }
.adn__pillar p { margin-bottom: 0; font-size: var(--text-base); line-height: 1.6; }
.adn__pillar h5 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--mc-vert-fonce);
  margin-bottom: 6px;
}
.adn__pillar h5 small { font-style: italic; font-weight: 400; color: var(--mc-gris); font-size: var(--text-base); }
.adn__ref { font-size: var(--text-sm); color: var(--mc-gris); font-style: italic; }

/* --- Litanie de clôture ADN (verticale lyrique) --- */
.adn-finale {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--space-3xl);
  align-items: stretch;
  margin-top: var(--space-3xl);
}
.adn-finale__image {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 100%;
}
.adn-finale__image img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .adn-finale { grid-template-columns: 1fr; }
  .adn-finale__image img { min-height: 320px; }
}
.adn-litany {
  max-width: none;
  margin: 0;
  padding: var(--space-lg) 0 var(--space-lg) var(--space-xl);
  border-left: 2px solid var(--mc-or);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--mc-vert-fonce);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
}
.adn-litany__intro {
  font-size: var(--text-lg);
  margin: 0 0 var(--space-md);
  opacity: 0.85;
}
.adn-litany__pillars {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-xl);
  display: grid;
  gap: var(--space-sm);
}
.adn-litany__pillars li {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  align-items: baseline;
  gap: var(--space-sm);
  font-size: var(--text-xl);
  line-height: 1.5;
}
.adn-litany__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--mc-or);
  font-size: clamp(1.7rem, 2.4vw, 2.1rem);
  text-align: right;
  letter-spacing: 0.02em;
  font-variation-settings: 'opsz' 144, 'SOFT' 50, 'WONK' 0;
}
.adn-litany__pillars strong {
  font-style: normal;
  font-weight: 600;
  color: var(--mc-vert-encre);
}
.adn-litany__envoi {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--mc-or);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin: 0;
  letter-spacing: 0.02em;
}

/* --- Distinctions tableaux --- */
.dist-table {
  width: 100%;
  max-width: 1280px;
  table-layout: fixed;
  border-collapse: collapse;
  margin: var(--space-lg) auto var(--space-2xl);
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.dist-table th:first-child, .dist-table td:first-child { width: 38%; }
.dist-table th:last-child, .dist-table td:last-child { width: 62%; }
.dist-table th, .dist-table td { white-space: nowrap; }
@media (max-width: 1100px) {
  .dist-table th, .dist-table td { white-space: normal; overflow-wrap: anywhere; }
}
.dist-table th, .dist-table td {
  padding: 1.15rem 1.4rem;
  text-align: left;
  border-bottom: 1px solid var(--mc-beige);
  font-size: var(--text-lg);
  line-height: 1.5;
}
.dist-table th {
  color: var(--mc-beige);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--text-xl);
  letter-spacing: 0.01em;
}
@media (max-width: 600px) {
  .dist-table { table-layout: auto; }
  .dist-table th:first-child, .dist-table td:first-child,
  .dist-table th:last-child, .dist-table td:last-child { width: auto; }
  .dist-table th, .dist-table td { padding: 0.7rem 0.6rem; font-size: 0.9rem; line-height: 1.35; }
  .dist-table th { font-size: 0.95rem; }
}
body.vellum .section--vert-fonce h2 {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.dist-table th:first-child { background: #7B8580; }
.dist-table th:last-child { background: var(--mc-or); color: #fff; }
.dist-table td:first-child { color: var(--mc-gris); }
.dist-table td:first-child strong { color: var(--mc-gris); font-weight: 700; }
.dist-table td:last-child { font-weight: 600; color: var(--mc-or); }
.dist-table .tw-normal { font-weight: 400; color: var(--mc-gris); }
.dist-table tr:last-child td { border-bottom: none; }
.section--vert-fonce .dist-table { box-shadow: 0 4px 24px rgba(0,0,0,0.18); }

/* --- Témoignages --- */
.testimonial {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}
.testimonial__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--text-lg);
  line-height: 1.55;
  color: var(--mc-vert-fonce);
  margin-bottom: var(--space-md);
}
.testimonial__author {
  font-weight: 600;
  color: var(--mc-or);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- Manifeste — colonne unique sur fond beige-clair --- */
.manifeste {
  background: var(--mc-beige-clair);
  color: var(--mc-vert-fonce);
  padding: var(--space-4xl) 0;
}
.manifeste__verses {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 clamp(var(--space-xl), 5vw, var(--space-3xl));
}
.manifeste__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}
.manifeste__logo {
  display: block;
  margin: 0 auto var(--space-xl);
  width: clamp(360px, 45vw, 600px);
  height: auto;
}
.manifeste__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(2.6rem, 5.4vw, 4.2rem);
  letter-spacing: 0.32em;
  color: #4D5E4F;
  margin: 0 0 var(--space-md);
  font-style: normal;
}
.manifeste__header .manifeste__subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  color: var(--mc-vert-fonce);
  margin: 0;
  letter-spacing: 0.01em;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  opacity: 0.9;
  line-height: 1.2;
}
.manifeste__verses p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.25rem, 1.75vw, 1.55rem);
  line-height: 1.55;
  margin-bottom: var(--space-lg);
  color: var(--mc-vert-fonce);
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 24, "SOFT" 80, "WONK" 0;
}
.manifeste__verses p em { font-style: italic; }
.manifeste__cite {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  color: var(--mc-vert-fonce);
  margin-top: var(--space-xl);
  letter-spacing: -0.005em;
  border-top: 1px solid rgba(61, 80, 64, 0.15);
  padding-top: var(--space-lg);
}

/* --- Encadré fondateur (co-branding) --- */
.founder-card {
  background: var(--mc-beige);
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: var(--space-2xl);
  align-items: center;
  border-top: 4px solid var(--mc-or);
}
.founder-card__photo {
  width: 160px; height: 160px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: var(--mc-vert);
}
.founder-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-card h3 { color: var(--mc-vert-fonce); margin-bottom: var(--space-sm); }
.founder-card p { margin-bottom: var(--space-md); }
.founder-card__link {
  font-weight: 600;
  color: var(--mc-or);
  border-bottom: 1px dashed var(--mc-or);
}
.founder-card__link:hover { color: var(--mc-vert-encre); border-bottom-color: var(--mc-vert-encre); }
@media (max-width: 700px) {
  .founder-card { grid-template-columns: 1fr; text-align: center; }
  .founder-card__photo { margin: 0 auto; }
}

/* --- Comité — cartes membres --- */
.member-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  text-align: center;
  font-family: var(--font-body);
}
.member-card h4 { font-family: var(--font-display); font-variation-settings: "opsz" 24, "SOFT" 50, "WONK" 0; font-weight: 600; line-height: 1.15; letter-spacing: -0.015em; }
.member-card__photo {
  width: 140px; height: 140px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin: 0 auto var(--space-md);
  background: var(--mc-beige);
}
.member-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.member-card h4 { margin-bottom: 0.25rem; color: var(--mc-vert-fonce); }
.member-card__title {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--mc-gris);
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: var(--space-md);
  letter-spacing: 0;
}
.member-card__role {
  font-size: 0.95rem;
  line-height: 1.55;
  letter-spacing: 0;
  color: var(--mc-encre);
}

/* --- Logos partenaires --- */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  padding: var(--space-xl) 0;
}
.logo-strip__item {
  height: 48px;
  display: flex; align-items: center;
  filter: grayscale(1);
  opacity: 0.85;
  transition: filter 0.2s, opacity 0.2s;
}
.logo-strip__item:hover { filter: none; opacity: 1; }
.logo-strip__item img { height: 100%; width: auto; }
.logo-strip__placeholder {
  height: 48px; min-width: 140px;
  background: rgba(0,0,0,0.06);
  border: 1px dashed rgba(0,0,0,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--mc-gris);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0 1rem;
}

/* --- JFMC — cartes 3 jours --- */
.day-card {
  padding: var(--space-2xl);
  border-radius: var(--radius-md);
  display: flex; flex-direction: column;
  height: 100%;
}
.day-card--vert { background: var(--mc-vert); color: var(--mc-beige); }
.day-card--vert h3, .day-card--vert h4 { color: var(--mc-beige); }
.day-card--beige { background: var(--mc-beige); }
.day-card { font-family: var(--font-body); }
.day-card p { font-size: 1.25rem; line-height: 1.6; letter-spacing: 0; }
.day-card__date {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  font-variation-settings: "opsz" 24, "SOFT" 50, "WONK" 0;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.day-card__kind {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.16em;
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
  color: var(--mc-or);
}
.day-card__where {
  font-style: italic;
  font-size: var(--text-md);
  margin-bottom: var(--space-md);
  opacity: 0.85;
}

/* --- Save-the-date — bloc accueil --- */
.std-block {
  background: linear-gradient(140deg, var(--mc-vert) 0%, var(--mc-vert-fonce) 100%);
  color: var(--mc-beige);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.std-block__visual {
  background-image: url('../images/jfmc-2025-1.jpg');
  background-size: cover;
  background-position: center;
  min-height: 360px;
}
.std-block__content { padding: var(--space-3xl); }
.std-block__content h2 { color: var(--mc-beige); }
.std-block__date {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  color: var(--mc-or-clair);
  font-style: italic;
  margin-bottom: var(--space-md);
}
@media (max-width: 800px) {
  .std-block { grid-template-columns: 1fr; }
  .std-block__visual { min-height: 240px; }
  .std-block__content { padding: var(--space-2xl); }
}

/* --- Form --- */
.form { display: grid; gap: var(--space-md); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form label { font-weight: 600; font-size: var(--text-sm); display: block; margin-bottom: 0.25rem; color: var(--mc-vert-fonce); }
.form input, .form select, .form textarea {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.5;
  letter-spacing: 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(76,101,78,0.25);
  border-radius: var(--radius-sm);
  width: 100%;
  background: #fff;
  color: var(--mc-noir);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--mc-vert-encre);
  box-shadow: 0 0 0 3px rgba(76,101,78,0.18);
}
.form textarea { min-height: 140px; resize: vertical; }
.form__check { display: flex; align-items: flex-start; gap: 0.5rem; }
.form__check input { width: auto; margin-top: 4px; }

/* --- Newsletter inline --- */
.newsletter {
  background: var(--mc-beige);
  padding: var(--space-2xl);
  border-radius: var(--radius-md);
}
.newsletter__form { display: flex; gap: var(--space-sm); margin-top: var(--space-md); }
.newsletter__form input { flex: 1; }
@media (max-width: 600px) { .newsletter__form { flex-direction: column; } }

/* --- Footer --- */
.footer {
  background: #2C392C;
  color: var(--mc-beige);
  padding: var(--space-3xl) 0 var(--space-xl);
}
.footer h4 { color: var(--mc-or-clair); font-size: var(--text-md); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: var(--space-md); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  align-items: start;
}
.footer__grid > div:last-child {
  justify-self: end;
  text-align: center;
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
  .footer__grid > div:last-child { justify-self: start; text-align: left; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; gap: var(--space-xl); }
}
.footer__brand-logo { height: 120px; margin-bottom: var(--space-md); width: auto; }
.footer__brand p { font-size: var(--text-sm); opacity: 0.85; }
.footer__links { list-style: none; padding: 0; }
.footer__links li { margin-bottom: var(--space-sm); font-size: var(--text-sm); }
.footer__links a { color: var(--mc-beige); }
.footer__links a:hover { color: var(--mc-or-clair); }
.footer__newsletter input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--mc-beige);
}
.footer__newsletter input::placeholder { color: rgba(255,255,255,0.55); }
.footer__cobrand {
  margin-top: var(--space-xl);
  padding: var(--space-md);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  font-size: var(--text-xs);
  border-left: 3px solid var(--mc-or);
}
.footer__cobrand a { color: var(--mc-or-clair); border-bottom: 1px dashed var(--mc-or-clair); }
.footer__bottom {
  padding-top: var(--space-xl);
  text-align: center;
  font-size: var(--text-xs);
  opacity: 0.7;
}

/* --- Galerie photos --- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}
@media (max-width: 700px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery img { aspect-ratio: 1/1; object-fit: cover; border-radius: var(--radius-sm); width: 100%; }

/* --- Stat counters --- */
.stat-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  padding: var(--space-2xl) 0;
}
@media (max-width: 800px) { .stat-bar { grid-template-columns: repeat(2, 1fr); } }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 6vw, 3.5rem);
  color: var(--mc-or-clair);
  font-weight: 700;
  line-height: 1;
  overflow-wrap: anywhere;
}
.stat__label {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: var(--space-sm);
  opacity: 0.9;
}

/* --- Utility --- */
.mb-0 { margin-bottom: 0 !important; }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }
.text-or { color: var(--mc-or); }
.text-italic { font-style: italic; }
.text-center { text-align: center; }
.muted { color: var(--mc-gris); }
.shadow-md { box-shadow: var(--shadow-md); }
.rounded { border-radius: var(--radius-md); }
img.img--rounded { border-radius: var(--radius-md); }
img.img--shadow { box-shadow: var(--shadow-md); }

/* ============================================================
   AESTHETIC PROFESSIONNEL — Shafer-inspired
   Italic emphasis, hero cinematic, press strip, service rows
   ============================================================ */

/* --- Italic emphasis utility (Shafer pattern : "The Art Of") --- */
.em-i {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
  color: inherit;
}

/* --- Hero cinematic (full-bleed photo + title overlay) --- */
.cine-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  background: var(--mc-encre);
  color: var(--mc-vellum);
  overflow: hidden;
}
.cine-hero__bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.cine-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.cine-hero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,19,13,0.10) 0%, rgba(20,19,13,0.20) 50%, rgba(20,19,13,0.78) 100%);
}
.cine-hero .container {
  position: relative;
  z-index: 2;
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-3xl);
}
.cine-hero__overline {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mc-or-clair);
  margin-bottom: var(--space-xl);
}
.cine-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--mc-vellum);
  margin: 0 0 var(--space-xl);
  max-width: 14ch;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
}
.cine-hero__title em {
  font-style: italic;
  color: var(--mc-or-clair);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
}
.cine-hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: rgba(244, 236, 219, 0.9);
  max-width: 540px;
  margin-bottom: var(--space-2xl);
  font-weight: 400;
}
.cine-hero__signature {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mc-or-clair);
  font-weight: 500;
  margin-bottom: var(--space-xl);
}
.cine-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* --- Section confidente (Shafer "Welcome to" pattern) --- */
.welcome {
  padding: var(--space-4xl) 0;
  background: var(--mc-vellum);
  text-align: center;
}
.welcome__overline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mc-or);
  font-weight: 600;
  margin-bottom: var(--space-md);
  display: block;
}
.welcome__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--mc-vert-encre);
  max-width: 22ch;
  margin: 0 auto var(--space-xl);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
}
.welcome__title em {
  font-style: italic;
  color: var(--mc-or);
  font-weight: 400;
}
.welcome__body {
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--mc-encre);
  max-width: 720px;
  margin: 0 auto var(--space-xl);
}
.welcome__link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mc-vert-encre);
  font-weight: 600;
  border-bottom: 1px solid var(--mc-or);
  padding-bottom: 4px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.welcome__link:hover { color: var(--mc-or); border-bottom-color: var(--mc-vert-encre); }

/* --- Press / Featured In strip (Shafer signature) --- */
.press-strip {
  padding: var(--space-3xl) 0;
  background: var(--mc-vellum);
  border-top: 1px solid var(--mc-rule);
  border-bottom: 1px solid var(--mc-rule);
  text-align: center;
}
.press-strip__overline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--mc-gris);
  font-weight: 600;
  margin-bottom: var(--space-xl);
  display: block;
}
.press-strip__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl) var(--space-3xl);
}
.press-strip__item {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--mc-vert-encre);
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 24, "SOFT" 50, "WONK" 0;
  opacity: 0.75;
  transition: opacity 0.2s ease;
}
.press-strip__item:hover { opacity: 1; }
.press-strip__item small {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mc-gris);
  margin-top: 4px;
  font-weight: 600;
}

/* --- Service row (Shafer galleries pattern) --- */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.service-row--reverse .service-row__media { order: 2; }
.service-row__media {
  position: relative;
  height: 100%;
  min-height: 360px;
  max-height: 480px;
  overflow: hidden;
  background: var(--mc-vert-encre);
}
.service-row__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.service-row:hover .service-row__media img { transform: scale(1.04); }
.service-row__content {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 5vw, 5rem);
  background: var(--mc-vellum);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-row__overline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mc-or);
  font-weight: 600;
  margin-bottom: var(--space-md);
  display: block;
}
.service-row__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--mc-vert-encre);
  margin: 0 0 var(--space-lg);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
}
.service-row__title em {
  font-style: italic;
  color: var(--mc-or);
}
.service-row__body {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--mc-encre);
  margin-bottom: var(--space-lg);
  max-width: 56ch;
}
.service-row__sublinks {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  font-family: var(--font-body);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mc-gris);
  margin-bottom: var(--space-xl);
  font-weight: 600;
}
.service-row__sublinks a {
  color: var(--mc-vert-encre);
  border-bottom: 1px solid transparent;
  padding: 4px 12px 4px 0;
  margin-right: 8px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.service-row__sublinks a + a { border-left: 1px solid var(--mc-rule); padding-left: 12px; }
.service-row__sublinks a:hover { color: var(--mc-or); }
.service-row__cta {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mc-vert-encre);
  font-weight: 700;
  border-bottom: 1px solid var(--mc-or);
  padding-bottom: 6px;
  display: inline-block;
}
.service-row__cta:hover { color: var(--mc-or); }

@media (max-width: 900px) {
  .service-row { grid-template-columns: 1fr; min-height: auto; }
  .service-row--reverse .service-row__media { order: 0; }
  .service-row__media { min-height: 320px; }
  .service-row__content { padding: var(--space-3xl) var(--space-xl); }
}

/* --- Founder block — Shafer "About Dr." --- */
.founder-pro {
  padding: var(--space-4xl) 0;
  background: var(--mc-vellum-fonce);
}
.founder-pro__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-3xl);
  align-items: center;
}
.founder-pro__photo {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.founder-pro__photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-pro__overline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--mc-or);
  font-weight: 600;
  margin-bottom: var(--space-md);
  display: block;
}
.founder-pro__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--mc-vert-encre);
  margin: 0 0 var(--space-lg);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
}
.founder-pro__title em { font-style: italic; color: var(--mc-or); }
.founder-pro__body {
  font-family: var(--font-body);
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--mc-encre);
  margin-bottom: var(--space-lg);
}
@media (max-width: 800px) {
  .founder-pro__grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
}

/* --- Closing CTA (Shafer "Schedule a Consultation") --- */
.closing-cta {
  background: var(--mc-blanc-casse);
  color: var(--mc-encre);
  padding: var(--space-4xl) 0;
  text-align: left;
}
.closing-cta__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--mc-vert-fonce);
  margin: 0 0 var(--space-xl);
  max-width: 24ch;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
}
.closing-cta__title em { font-style: italic; color: var(--mc-or); font-weight: 400; }
.closing-cta__body {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  line-height: 1.55;
  color: var(--mc-encre);
  max-width: 720px;
  margin: 0 0 var(--space-2xl);
}
.closing-cta .btn { background: var(--mc-or); color: var(--mc-encre); border-color: var(--mc-or); font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.85rem; padding: 1.1rem 2.4rem; }
.closing-cta .btn:hover { background: var(--mc-vellum); color: var(--mc-encre); border-color: var(--mc-vellum); }

/* Closing CTA — formulaire infolettre détaillé */
.closing-cta__form {
  max-width: 560px;
  margin: 0;
  background: var(--mc-vellum);
  border: 2px solid var(--mc-vert);
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  text-align: left;
  border-radius: 4px;
}
.closing-cta__field { display: flex; flex-direction: column; gap: 8px; }
.closing-cta__field label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--mc-vert-encre);
  letter-spacing: 0;
}
.closing-cta__field input {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--mc-vert);
  background: #fff;
  color: var(--mc-encre);
  border-radius: 3px;
  width: 100%;
  line-height: 1.4;
}
.closing-cta__field input:focus {
  outline: none;
  border-color: var(--mc-or);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.18);
}
.closing-cta__form .btn {
  align-self: flex-start;
  background: var(--mc-vert);
  color: var(--mc-vellum);
  border-color: var(--mc-vert);
  padding: 0.95rem 2.2rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: none;
  font-size: 1.05rem;
  border-radius: 3px;
  margin-top: var(--space-sm);
}
.closing-cta__form .btn:hover {
  background: var(--mc-vert-encre);
  color: #fff;
  border-color: var(--mc-vert-encre);
}
.closing-cta__form .form__feedback {
  font-size: 0.9rem;
  color: var(--mc-vert);
  margin: 0;
  min-height: 1.2em;
}

/* ============================================================
   Banderolle de petites images (mini-galerie inline)
   ============================================================ */
.mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin: var(--space-2xl) 0;
}
.mini-gallery__item {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--mc-vert-encre);
}
.mini-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.mini-gallery__item:hover img { transform: scale(1.05); }
@media (max-width: 720px) {
  .mini-gallery { grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }
}

/* ============================================================
   Photo band pleine largeur (respiration entre sections)
   ============================================================ */
.photo-band {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--mc-encre);
}
.photo-band img {
  width: 100%;
  height: clamp(320px, 52vh, 520px);
  object-fit: cover;
  display: block;
}
.photo-band--tall img {
  height: clamp(420px, 70vh, 760px);
}

/* ============================================================
   Banderole vidéo (accueil, avant le Manifeste d'ouverture)
   ============================================================ */
.photo-band--video {
  aspect-ratio: 21 / 9;
  position: relative;
}
.photo-band--video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}

.video-banner-quote {
  position: absolute;
  top: clamp(3rem, 6vw, 6.5rem);
  left: clamp(var(--space-lg), 5vw, var(--space-3xl));
  max-width: clamp(280px, 44vw, 640px);
  margin: 0;
  padding: 0;
  border-left: 0;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 2.3vw, 2.1rem);
  line-height: 1.25;
  letter-spacing: -0.005em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 2;
}
.video-banner-quote em {
  font-style: italic;
}
.video-banner-quote__attr {
  display: block;
  margin-top: var(--space-md);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(0.9rem, 1.1vw, 1.1rem);
  letter-spacing: 0;
  text-transform: none;
  opacity: 0.95;
}

.video-banner-mark {
  position: absolute;
  bottom: clamp(0.25rem, 0.6vw, 0.6rem);
  left: clamp(2rem, 5vw, 3.5rem);
  width: clamp(180px, 18vw, 280px);
  z-index: 2;
  pointer-events: none;
}
.video-banner-mark img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   Mission / Vision / Légitimité — blocs visuels
   ============================================================ */
.mvl-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3xl);
  margin: var(--space-3xl) 0 var(--space-2xl);
}
@media (max-width: 900px) {
  .mvl-grid { grid-template-columns: 1fr; gap: var(--space-xl); }
}

/* --- Légitimité — bloc autonome plein largeur, fond hérité --- */
.legitimite-block {
  margin: var(--space-2xl) 0;
  padding: var(--space-2xl) 0;
  background: transparent;
  border-top: 2px solid var(--mc-or);
  border-bottom: 2px solid var(--mc-or);
  text-align: left;
}
.legitimite-block__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.36em;
  color: var(--mc-or);
  font-weight: 700;
  margin-bottom: var(--space-md);
}
.legitimite-block__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.1;
  color: var(--mc-vert-encre);
  margin: 0 0 var(--space-md);
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.legitimite-block__lead {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.22rem;
  line-height: 1.5;
  color: var(--mc-vert-encre);
  margin-bottom: var(--space-sm);
}
.legitimite-block__body {
  font-family: var(--font-body);
  font-size: 1.18rem;
  line-height: 1.55;
  color: var(--mc-encre);
  margin: 0;
}
.mvl-block {
  position: relative;
  padding: var(--space-md) 0 var(--space-md) var(--space-xl);
  border-left: 2px solid var(--mc-or);
}
.mvl-block__num {
  position: absolute;
  top: -10px;
  left: -22px;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--mc-or);
  color: var(--mc-vellum);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 24, "SOFT" 50, "WONK" 0;
  box-shadow: 0 4px 12px -4px rgba(28,26,20,0.25);
}
.mvl-block__label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--mc-or);
  font-weight: 700;
  margin-bottom: var(--space-md);
}
.mvl-block__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.6rem, 2.3vw, 2rem);
  line-height: 1.1;
  color: var(--mc-vert-encre);
  margin: 0 0 var(--space-md);
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .mvl-block__title { white-space: normal; font-size: 1.85rem; }
}
.mvl-block__lead {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.45;
  color: var(--mc-vert-encre);
  margin-bottom: var(--space-sm);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
@media (max-width: 900px) {
  .mvl-block__lead { white-space: normal; font-size: 1.35rem; }
}
.mvl-block__body {
  font-family: var(--font-body);
  font-size: 1.3rem;
  line-height: 1.55;
  color: var(--mc-encre);
  margin-bottom: 0;
}

/* ==========================================================
   ÉDITORIAL — manuscrit savant + carnet de chef
   Aesthetic layer pour la page d'accueil et progressivement
   les autres pages.
   ========================================================== */

/* Body en mode vellum — appliqué quand <body class="vellum"> */
body.vellum {
  background: var(--mc-vellum);
  color: var(--mc-encre);
  font-family: var(--font-body);
  font-size: var(--text-md);
  position: relative;
}
body.vellum::before { content: none; }
body.vellum h1, body.vellum h2, body.vellum h3, body.vellum h4 {
  font-family: var(--font-display);
  color: var(--mc-vert-encre);
}

/* Réajustement de la nav et brand-header en mode vellum */
body.vellum .brand-header {
  background: #45664C;
  border-bottom-color: var(--mc-vert-encre);
  position: relative;
  z-index: 5;
}
body.vellum .brand-header__name {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 1.4rem;
  color: var(--mc-vert-encre);
}
body.vellum .brand-header__baseline {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--mc-vert-encre);
}
body.vellum .brand-header__institutional { display: none !important; }
body.vellum .brand-header__lang {
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

body.vellum .nav { background: var(--mc-vert-encre); position: relative; z-index: 5; }
body.vellum .nav__links a {
  font-family: var(--font-body);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
}
body.vellum .nav__submenu a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0.01em;
  font-weight: 500;
}

body.vellum .std-banner {
  background: var(--mc-or);
  color: var(--mc-encre);
  border-bottom: 1px solid rgba(20, 19, 13, 0.18);
  font-family: var(--font-body);
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.95rem 1rem;
  font-weight: 700;
}
body.vellum .std-banner a { color: #fff; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
body.vellum .std-banner a:hover { color: var(--mc-vellum); }
body.vellum .std-banner__close { color: var(--mc-encre); font-size: 1.4rem; }
body.vellum .std-banner a { color: var(--mc-or-clair); text-transform: none; letter-spacing: 0.04em; }

body.vellum .container { position: relative; z-index: 2; }

/* Decorative chapter — large roman numeral en marge */
.chapter {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: var(--space-xl);
  align-items: baseline;
  margin-bottom: var(--space-xl);
}
/* Variante : numéro empilé au-dessus du titre */
.chapter--stacked {
  display: block;
  margin-bottom: var(--space-2xl);
}
.chapter--stacked .chapter__num {
  display: block;
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: var(--space-sm);
  line-height: 0.9;
}
.chapter--stacked .chapter__label { margin-bottom: 12px; }
.chapter__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(3.4rem, 8vw, 6.5rem);
  color: var(--mc-or);
  line-height: 1;
  letter-spacing: -0.04em;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.chapter__label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--mc-vert-encre);
  display: block;
  margin-bottom: 14px;
  font-weight: 600;
}
.chapter__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--mc-vert-encre);
  margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
}
.chapter__title em {
  font-style: italic;
  color: var(--mc-or);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
@media (max-width: 720px) {
  .chapter { grid-template-columns: 64px 1fr; gap: var(--space-md); }
}

/* Decorative rule — fine ligne or */
.rule-or {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--mc-or-feuille) 20%, var(--mc-or-feuille) 80%, transparent);
  margin: var(--space-2xl) 0;
  border: none;
}
.rule-or--short {
  width: 80px;
  margin: var(--space-md) 0;
  background: var(--mc-or-feuille);
}

/* Drop cap pour premier paragraphe d'une section */
.has-dropcap > p:first-of-type::first-letter,
.dropcap::first-letter {
  font-family: var(--font-display);
  float: left;
  font-size: 6rem;
  line-height: 0.82;
  padding: 0.45rem 0.7rem 0 0;
  color: var(--mc-vert-encre);
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}

/* Marginalia — colonne de marge style notes en bas de page */
.marginalia {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--mc-encre);
  letter-spacing: 0;
}
.marginalia p {
  margin-bottom: var(--space-md);
  padding-left: 32px;
  text-indent: -32px;
}
.marginalia__num {
  display: inline-block;
  background: var(--mc-or);
  color: #fff;
  width: 22px; height: 22px;
  border-radius: 50%;
  text-align: center;
  font-size: 12px;
  line-height: 22px;
  margin-right: 10px;
  font-weight: 700;
  font-family: var(--font-body);
  text-indent: 0;
  vertical-align: 1px;
}
.marginalia em {
  color: var(--mc-vert-encre);
  font-style: italic;
  font-family: var(--font-body);
  font-weight: 600;
}

/* Pull-quote — citation oversize façon magazine */
.pullquote {
  border: none;
  padding: 0;
  margin: var(--space-3xl) 0;
  position: relative;
}
.pullquote { padding-left: clamp(1.2rem, 4vw, 2.5rem); padding-right: clamp(1.2rem, 4vw, 3rem); }
.pullquote__text { position: relative; }
.pullquote::before,
.pullquote__text::after {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--mc-or);
  line-height: 0;
  position: absolute;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
}
.pullquote::before {
  content: "«";
  top: 0.55em;
  left: -0.45em;
}
.pullquote__text::after {
  content: "»";
  bottom: 0.55em;
  right: -0.55em;
}
.pullquote__text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--mc-vert-encre);
  margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.pullquote__attr {
  display: block;
  margin-top: var(--space-lg);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mc-or);
  font-weight: 600;
}

/* Hero éditorial — manuscrit */
.hero-edito {
  background: var(--mc-vellum);
  padding: var(--space-3xl) 0 var(--space-4xl);
  position: relative;
  overflow: hidden;
}
.hero-edito__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: var(--space-3xl);
  align-items: center;
}
.hero-edito__chapter {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(4.5rem, 12vw, 10rem);
  color: var(--mc-or);
  line-height: 0.82;
  margin-bottom: var(--space-md);
  letter-spacing: -0.05em;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.hero-edito__overline {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mc-vert-encre);
  margin-bottom: var(--space-lg);
  display: block;
  font-weight: 600;
}
.hero-edito__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 0.98;
  color: var(--mc-vert-encre);
  letter-spacing: -0.035em;
  margin: 0 0 var(--space-xl);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 0;
}
.hero-edito__title em {
  font-style: italic;
  color: var(--mc-or);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.hero-edito__lead {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.18rem, 1.7vw, 1.35rem);
  line-height: 1.6;
  color: var(--mc-encre);
  max-width: 580px;
  margin-bottom: var(--space-xl);
  letter-spacing: 0;
}
.hero-edito__lead strong { color: var(--mc-vert-encre); font-weight: 600; }
.hero-edito__photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 60px -30px rgba(28,26,20,0.45), 0 8px 20px -8px rgba(28,26,20,0.25);
  transform: rotate(1deg);
}
.hero-edito__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-edito__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 169, 61, 0.6);
  border-radius: 4px;
  pointer-events: none;
  margin: 12px;
}
.hero-edito__caption {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mc-gris);
  margin-top: var(--space-md);
  padding-left: var(--space-md);
  border-left: 1px solid var(--mc-or-feuille);
  font-weight: 500;
}
.hero-edito__meta {
  display: flex;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--mc-rule);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--mc-gris);
  line-height: 1.45;
  text-transform: uppercase;
  font-weight: 500;
}
.hero-edito__meta strong {
  display: block;
  color: var(--mc-vert-encre);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.hero-edito__meta strong { color: var(--mc-vert-encre); font-weight: 500; }
@media (max-width: 880px) {
  .hero-edito__grid { grid-template-columns: 1fr; gap: var(--space-2xl); }
  .hero-edito__photo { transform: rotate(0); max-width: 380px; margin: 0 auto; }
  .hero-edito__chapter { font-size: 5rem; }
}

/* Boutons éditoriaux */
.btn--edito {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 1.15rem 2rem;
  border-radius: 999px;
  background: var(--mc-vert-encre);
  color: var(--mc-vellum);
  border: 1px solid var(--mc-vert-encre);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  transition: all 0.25s ease;
}
.btn--edito:hover {
  background: var(--mc-or);
  border-color: var(--mc-or);
  color: var(--mc-vellum);
}
.btn--edito::after {
  content: "→";
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0;
  transition: transform 0.25s ease;
}
.btn--edito:hover::after { transform: translateX(4px); }
.btn--edito-outline {
  background: transparent;
  color: var(--mc-vert-encre);
  border: 1px solid var(--mc-vert-encre);
}
.btn--edito-outline:hover { background: var(--mc-vert-encre); color: var(--mc-vellum); }

/* Section éditoriale — fond papier */
.section-edito {
  background: var(--mc-vellum);
  padding: var(--space-4xl) 0;
  position: relative;
  z-index: 2;
}
.section-edito--fonce {
  background: var(--mc-vert-encre);
  color: var(--mc-vellum);
}
.section-edito--fonce h1, .section-edito--fonce h2, .section-edito--fonce h3, .section-edito--fonce h4 {
  color: var(--mc-vellum);
}
.section-edito--fonce .chapter__num { color: var(--mc-or-clair); }
.section-edito--fonce .chapter__label { color: var(--mc-or-clair); }
.section-edito--fonce .chapter__title { color: var(--mc-vellum); }
.section-edito--fonce .chapter__title em { color: var(--mc-or-clair); }
.section-edito--fonce .pullquote::before { color: var(--mc-or-clair); }
.section-edito--fonce .pullquote__text { color: var(--mc-vellum); }
.section-edito--fonce .pullquote__attr { color: var(--mc-or-clair); }
.section-edito--fonce .marginalia { color: rgba(244, 236, 219, 0.7); }
.section-edito--fonce .marginalia em { color: var(--mc-or-clair); }
.section-edito--fonce .has-dropcap > p:first-of-type::first-letter { color: var(--mc-or-clair); }
.section-edito--fonce .verbes { border-top-color: rgba(244,236,219,0.18); }
.section-edito--fonce .verbe { border-bottom-color: rgba(244,236,219,0.18); }
.section-edito--fonce .verbe:hover { background: rgba(212,169,61,0.10); }
.section-edito--fonce .verbe__num { color: var(--mc-or-clair); }
.section-edito--fonce .verbe__name { color: var(--mc-vellum); }
.section-edito--fonce .verbe__name small { color: var(--mc-or-clair); }
.section-edito--fonce .verbe__text { color: var(--mc-vellum); }
.section-edito--fonce .verbe__text strong { color: #fff; }
.section-edito--fonce .verbe__text em { color: var(--mc-or-clair); }

/* Quatre verbes — disposition éditoriale en lignes alternées */
.verbes {
  border-top: 1px solid var(--mc-rule);
  margin-top: var(--space-2xl);
}
.verbe {
  display: grid;
  grid-template-columns: 80px 200px 1fr 1.2fr;
  gap: var(--space-2xl);
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--mc-rule);
  align-items: center;
  position: relative;
  transition: background 0.3s ease;
}
.verbe:hover { background: rgba(212, 169, 61, 0.06); }
.verbe__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  color: var(--mc-or);
  line-height: 1;
  text-align: right;
  letter-spacing: -0.05em;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.verbe__name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--mc-vert-encre);
  line-height: 1.0;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.verbe__name small {
  display: block;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mc-gris);
  font-weight: 600;
  margin-top: 0.7rem;
}
.verbe__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 8px 24px -10px rgba(28,26,20,0.3);
}
.verbe__photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: sepia(0.12) saturate(0.9);
  transition: filter 0.4s ease, transform 0.4s ease;
}
.verbe:hover .verbe__photo img { filter: none; transform: scale(1.04); }
.verbe__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--mc-encre);
  letter-spacing: 0;
}
.verbe__text strong {
  font-weight: 700;
  color: var(--mc-vert-encre);
}
.verbe__text em {
  font-family: var(--font-body);
  font-style: italic;
  color: var(--mc-vert-encre);
  font-weight: 600;
}
@media (max-width: 900px) {
  .verbe {
    grid-template-columns: 56px 1fr;
    gap: var(--space-md);
    padding: var(--space-xl) 0;
  }
  .verbe__photo, .verbe__text { grid-column: 1 / -1; }
  .verbe__num { font-size: 2.4rem; align-self: start; }
}

/* Carte d'invitation JFMC — letterpress */
.invite-card {
  background: var(--mc-vellum-fonce);
  border: 1px solid var(--mc-or-feuille);
  padding: var(--space-3xl);
  text-align: center;
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(28,26,20,0.35);
}
.invite-card::before, .invite-card::after {
  content: "";
  position: absolute;
  width: 32px; height: 32px;
  border: 1px solid var(--mc-or-feuille);
}
.invite-card::before { top: 12px; left: 12px; border-right: none; border-bottom: none; }
.invite-card::after { bottom: 12px; right: 12px; border-left: none; border-top: none; }
.invite-card__overline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--mc-or);
  margin-bottom: var(--space-lg);
  display: block;
  font-weight: 600;
}
.invite-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--mc-vert-encre);
  margin: 0 0 var(--space-md);
  line-height: 1.0;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.invite-card__date {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--mc-vert-encre);
  margin: var(--space-md) 0;
  letter-spacing: 0;
  line-height: 1.15;
  font-variation-settings: "opsz" 24, "SOFT" 50, "WONK" 0;
}
.invite-card__date span {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: 0.7em;
  color: var(--mc-gris);
  margin-top: 8px;
  letter-spacing: 0;
  font-variation-settings: "opsz" 24, "SOFT" 100, "WONK" 1;
}
.invite-card__rsvp {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--mc-rule);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

/* Logos partenaires — version éditoriale épurée */
.logo-strip-edito {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2xl);
  padding: var(--space-2xl) 0;
  align-items: center;
  border-top: 1px solid var(--mc-rule);
  border-bottom: 1px solid var(--mc-rule);
}
.logo-strip-edito__item {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.3rem;
  text-align: center;
  color: var(--mc-vert-encre);
  padding: var(--space-md) 0;
  border-right: 1px solid var(--mc-rule);
  letter-spacing: -0.015em;
  line-height: 1.15;
  font-variation-settings: "opsz" 24, "SOFT" 100, "WONK" 1;
}
.logo-strip-edito__item:nth-child(4n) { border-right: none; }
.logo-strip-edito__item small {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mc-gris);
  margin-top: 8px;
  font-weight: 600;
}
@media (max-width: 800px) {
  .logo-strip-edito { grid-template-columns: repeat(2, 1fr); }
  .logo-strip-edito__item { border-right: 1px solid var(--mc-rule); }
  .logo-strip-edito__item:nth-child(2n) { border-right: none; }
}

/* Témoignages — coupures de presse */
.clipping {
  background: var(--mc-vellum-fonce);
  padding: var(--space-2xl);
  position: relative;
  border-left: 3px solid var(--mc-or);
}
.clipping::before {
  content: "Témoignage";
  position: absolute;
  top: -12px;
  left: var(--space-2xl);
  background: var(--mc-vellum);
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--mc-or);
  padding: 4px 12px;
  font-weight: 700;
}
.clipping__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--mc-encre);
  margin-bottom: var(--space-md);
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 24, "SOFT" 100, "WONK" 1;
}
.clipping__author {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mc-gris);
  font-weight: 600;
}

/* Souscription — carte d'abonnement type magazine littéraire */
.subscribe-card {
  background: var(--mc-vert-encre);
  color: var(--mc-vellum);
  padding: var(--space-3xl);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  border: 1px solid var(--mc-or-feuille);
}
.subscribe-card::before {
  content: "№";
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--mc-or-clair);
}
.subscribe-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--mc-vellum);
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.subscribe-card p { color: rgba(244, 236, 219, 0.85); margin-bottom: var(--space-lg); }
.subscribe-card form { display: flex; flex-direction: column; gap: var(--space-sm); }
.subscribe-card input {
  font-family: var(--font-body);
  background: transparent;
  border: 1px solid var(--mc-or-feuille);
  color: var(--mc-vellum);
  padding: 0.85rem 1rem;
  font-size: 1rem;
}
.subscribe-card input::placeholder { color: rgba(244, 236, 219, 0.5); }
.subscribe-card .btn--edito { background: var(--mc-or); border-color: var(--mc-or); color: var(--mc-vert-encre); }
.subscribe-card .btn--edito:hover { background: var(--mc-or-clair); border-color: var(--mc-or-clair); }
@media (max-width: 720px) { .subscribe-card { grid-template-columns: 1fr; } }

/* Marginalia + texte — disposition à 2 colonnes */
.editorial-grid {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: var(--space-3xl);
  align-items: start;
}
@media (max-width: 800px) {
  .editorial-grid { grid-template-columns: 1fr; }
}

/* Texte courant éditorial */
.prose {
  font-family: var(--font-body);
  font-size: 1.18rem;
  line-height: 1.7;
  color: var(--mc-encre);
  letter-spacing: 0;
}
.prose p { margin-bottom: var(--space-md); }
.prose strong { color: var(--mc-vert-encre); font-weight: 700; }
.prose em {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  color: var(--mc-vert-encre);
}

/* Animation reveal au scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }

/* Underline manuscrit pour mots-clés */
.underline-hand {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 6' preserveAspectRatio='none'%3E%3Cpath d='M0,3 Q25,0 50,3 T100,3' stroke='%23B8860B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 5px;
  padding-bottom: 4px;
}

/* Footer — papier vélin */
body.vellum .footer {
  background: #2C392C;
  color: var(--mc-vellum);
  position: relative;
  z-index: 5;
}
body.vellum .footer h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--mc-or-clair);
  font-weight: 600;
  text-transform: uppercase;
}
body.vellum .footer__brand-logo { height: 130px; }
body.vellum .footer__links { font-size: 1.02rem; line-height: 1.55; }
body.vellum .footer__links li { margin-bottom: 0.55rem; }
body.vellum .footer__brand p { font-size: 1.05rem; line-height: 1.4; }
body.vellum .footer__brand p em { font-family: var(--font-body); font-style: italic; color: var(--mc-or-clair); font-size: 1.1rem; font-weight: 500; }
body.vellum .footer__cobrand { font-family: var(--font-body); font-style: normal; font-size: 0.95rem; line-height: 1.45; }
body.vellum .footer__brand img { filter: brightness(1.1); }
body.vellum .footer__cobrand { background: rgba(212, 169, 61, 0.08); border-left-color: var(--mc-or-clair); font-family: var(--font-display); font-style: italic; font-size: 0.95rem; }

/* ============================================================
   Vidéos — grille 2 colonnes (cards cliquables avec play overlay)
   ============================================================ */
.videos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  margin-top: var(--space-xl);
}
.video-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.video-card__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  background: #000;
}
.video-card__frame iframe,
.video-card__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  display: block;
}
.video-card--link { cursor: pointer; }
.video-card--link .video-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--mc-vert-fonce);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  pointer-events: none;
}
.video-card--link .video-card__play svg {
  width: 36px; height: 36px;
  margin-left: 4px;
}
.video-card--link:hover .video-card__play {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--mc-or);
  color: #fff;
}
.video-card__caption {
  margin-top: var(--space-md);
  font-size: var(--text-sm);
  color: var(--mc-vert-encre);
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .videos-grid { grid-template-columns: 1fr; }
}
