/* ============================================================
   La Clarté (theme-13, d'après habita) - système de design
   Polices Google Fonts (Funnel Display, Hanken Grotesk, JetBrains Mono)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300;400;500;600;700;800&family=Hanken+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #efebe4;
  --bg-soft: #f4f1ea;
  --bg-card: #ffffff;
  --ink: #1f1f1d;
  --ink-2: #3a3a37;
  --muted: #8a8680;
  --line: rgba(31, 31, 29, 0.10);
  --line-light: rgba(255, 255, 255, 0.16);
  --accent: #c87f4a;
  --accent-soft: #e9c7a8;

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --display: "Funnel Display", "Helvetica Neue", sans-serif;
  --text: "Hanken Grotesk", "Helvetica Neue", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

img, video, svg, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none !important; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.display {
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: lowercase;
}
.display .ac { color: var(--accent); }
.display small {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  vertical-align: 10px;
  margin-left: 14px;
}

.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* === EYEBROW : petit label mono uppercase (10+ usages partout) === */
.eyebrow {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow--accent { color: var(--accent); }
.eyebrow--ink    { color: var(--ink); }
.eyebrow--light  { color: rgba(239, 235, 228, 0.55); }
.eyebrow--xs     { font-size: 10px; letter-spacing: 0.14em; }

/* === LEAD : texte d'introduction (sous hero, sous titre de section) === */
.lead {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 560px;
  text-wrap: pretty;
}

/* === BODY TEXT helpers === */
.body-sm { font-size: 13.5px; line-height: 1.55; color: var(--ink-2); }
.body-md { font-size: 14.5px; line-height: 1.55; color: var(--ink-2); }
.body-lg { font-size: 16px;   line-height: 1.6;  color: var(--ink-2); }

/* === Décorations === */
.asterisk {
  display: inline-block;
  color: var(--ink);
  font-family: var(--display);
  font-weight: 300;
  font-size: 56px;
  line-height: 1;
}
.asterisk.accent { color: var(--accent); }

.slash {
  display: inline-block;
  color: var(--accent);
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -0.1em;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-radius: var(--r-pill);
  font-family: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: transform .25s ease, background .2s, color .2s, border-color .2s;
}
.btn:hover { transform: translateY(-2px); }

/* Primaire : pill sombre */
.btn--primary {
  background: var(--ink);
  color: var(--bg);
  padding: 12px 24px;
}
.btn--primary:hover { background: var(--accent); }

/* Accent : pill orange (form submit principal) */
.btn--accent {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  font-size: 13px;
}
.btn--accent:hover { background: var(--ink); }

/* Pill blanche avec flèche orange (CTA hero) */
.btn--pill {
  background: #fff;
  color: var(--ink);
  padding: 8px 8px 8px 24px;
  box-shadow: 0 10px 30px rgba(31, 31, 29, 0.08);
}
.btn--pill .arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent);
  display: grid; place-items: center;
  color: #fff;
  transition: transform .25s;
}
.btn--pill:hover .arrow { transform: rotate(-15deg); }

/* Lien souligné (CTA secondaire) */
.btn--link {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  border-radius: 0;
  gap: 6px;
}
.btn--link:hover { transform: none; color: var(--accent); border-color: var(--accent); }

/* Chip outline (socials) */
.btn--chip {
  padding: 8px 16px;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 400;
}
.btn--chip:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); transform: translateY(-1px); }

/* Nav CTA (cohérent avec .btn--primary mais compact) */
.btn--nav {
  padding: 9px 18px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.btn--nav:hover { background: var(--accent); transform: none; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  border-radius: var(--r-md);
  padding: 22px 24px;
}

/* Verre clair (sur image / fond clair) */
.card--glass {
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(22px) saturate(1.1);
  -webkit-backdrop-filter: blur(22px) saturate(1.1);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #1a1a18;
  box-shadow: 0 18px 50px rgba(0,0,0,0.10);
}

/* Verre clair plus opaque (hero featured, stats) */
.card--glass-solid {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--ink);
}

/* Solide blanche */
.card--solid {
  background: #fff;
  border: 1px solid var(--line);
}

/* Solide soft beige (sections internes) */
.card--soft {
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

/* Solide sombre (newsletter, sections "ink") */
.card--ink {
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-lg);
}

/* ============================================================
   STAT BLOCK : chiffre + label, plusieurs tailles
   ============================================================ */
.stat-block { display: flex; flex-direction: column; }
.stat-block .stat-val {
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1;
  font-size: 42px;
  color: var(--ink);
}
.stat-block .stat-lbl {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.stat-block--sm .stat-val { font-size: 36px; }
.stat-block--md .stat-val { font-size: 42px; }
.stat-block--lg .stat-val { font-size: 64px; }
.stat-block--xl .stat-val { font-size: 80px; }
.stat-block--light .stat-val { color: var(--bg); }
.stat-block--light .stat-lbl { color: rgba(239, 235, 228, 0.55); }
.stat-block--center { text-align: center; }

/* ============================================================
   MEDIA wrapper (image avec radius + overflow + ratio)
   ============================================================ */
.media {
  border-radius: var(--r-md);
  overflow: hidden;
}
.media--lg     { border-radius: var(--r-lg); }
.media--pill   { border-radius: var(--r-pill); }
.media--cover  { width: 100%; height: 100%; }
.media--4x3    { aspect-ratio: 4 / 3; }
.media--5x3    { aspect-ratio: 5 / 3.4; }
.media--5x3-2  { aspect-ratio: 5 / 3.2; }
.media--3x4    { aspect-ratio: 3 / 4; }

.real-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================================================
   PAGE LAYOUT
   ============================================================ */
.shell { max-width: 1240px; margin: 0 auto; padding: 0 18px; }

/* ============================================================
   NAV
   ============================================================ */
.nav-wrap {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 36px);
  max-width: 1240px;
}
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 10px 26px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 30px rgba(31, 31, 29, 0.06);
  transition: border-radius .25s;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav ul a { color: var(--ink-2); transition: color .2s; }
.nav ul a:hover, .nav ul a.active { color: var(--accent); }
.nav .logo-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink);
  display: grid; place-items: center;
  color: var(--bg);
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
}
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 38px; height: 38px;
  cursor: pointer;
  gap: 5px;
  border-radius: 50%;
  background: rgba(31, 31, 29, 0.04);
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .25s, opacity .25s;
}

/* ============================================================
   SECTION-RULE (délimiteur)
   ============================================================ */
.section-rule {
  margin: 0 18px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-rule .line { height: 1px; background: var(--line); }

/* ============================================================
   HERO (index)
   ============================================================ */
.hero { position: relative; padding-bottom: 80px; }
.hero-media {
  position: relative;
  height: 100vh;
  min-height: 720px;
  max-height: 980px;
  overflow: hidden;
  background: #2a2825;
}
.hero-media .bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0) 60%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-top {
  position: absolute;
  top: 120px;
  left: 56px; right: 56px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  color: #fff;
}
.hero-top .eyebrow { color: rgba(255,255,255,0.75); }
.hero-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  text-align: right;
  line-height: 1.7;
  max-width: 280px;
}

.hero-bottom {
  position: absolute;
  bottom: 40px; left: 56px; right: 56px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.hero-stats { z-index: 5; display: flex; flex-direction: row; gap: 10px; }
.hero-stats .stat-block { padding: 16px 24px; min-width: 140px; text-align: center; }

/* === Hero content : H1 + CTAs directement sur l'image === */
.hero-content {
  position: absolute;
  left: 56px;
  right: 56px;
  bottom: 160px;
  z-index: 5;
  color: #fff;
  max-width: 880px;
}
.hero-content h1 {
  font-family: var(--display);
  font-weight: 300;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  line-height: 0.92;
  /* clamp fluide : min très bas pour tenir jusqu'à 330px, échelle viewport, plafond habita */
  font-size: clamp(1.9rem, 6.4vw, 104px);
  color: #fff;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
  /* anti-débordement : casser les mots longs ("comprendre") si nécessaire */
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
  max-width: 100%;
}
.hero-content h1 .ac { color: var(--accent); }
.hero-content .hero-cta-bar { margin-top: 32px; }
.hero-content .btn--link {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.6);
}
.hero-content .btn--link:hover {
  color: #fff;
  border-color: #fff;
}

.hero-cta-bar {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding-bottom: 10px;
}

/* ============================================================
   ABOUT (preview index)
   ============================================================ */
.about { padding: 60px 0 120px; position: relative; }
.about-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.about-head h2 { font-size: clamp(90px, 13vw, 200px); flex: 1; }
.about-head h2 small { vertical-align: 8px; margin: 0 24px 0 -8px; }
.about-head .asterisk { margin-top: 12px; }

.about-statement {
  margin: 60px 0 60px auto;
  max-width: 880px;
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.32;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-wrap: pretty;
}
.about-statement .ac { color: var(--accent); }
.about-statement .pill-img {
  display: inline-block;
  vertical-align: middle;
  width: 80px; height: 32px;
  border-radius: var(--r-pill);
  overflow: hidden;
  margin: -4px 6px;
}
.about-statement .slash { margin-left: 14px; font-size: 1.1em; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px 48px;
  align-items: start;
  margin-top: 60px;
}
.about-grid p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 480px;
  text-wrap: pretty;
}

/* ============================================================
   WHY (section décorative avec cartes glass)
   ============================================================ */
.why {
  position: relative;
  min-height: clamp(720px, 85vh, 920px);
  border-radius: var(--r-lg);
  margin: 60px 18px 80px;
  overflow: hidden;
  background: var(--bg-soft);
}
.why-bg { position: absolute; inset: 0; z-index: 0; }
.why-bg .real-img { filter: brightness(0.92) saturate(1.05); }
.why-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.16) 38%, rgba(0,0,0,0.42) 100%);
}

.why-title {
  position: absolute;
  top: 56px; left: 60px;
  max-width: 42%;
  z-index: 3;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.why-title .display { font-size: clamp(60px, 7.8vw, 110px); line-height: 0.9; }
.why-title .display small {
  color: rgba(255,255,255,0.7);
  text-shadow: none;
  vertical-align: 10px;
  margin-left: 6px;
}
.why-title .brand { color: var(--accent); }

.why-slashes {
  position: absolute;
  top: 60px; right: 60px;
  z-index: 3;
  color: var(--accent);
  font-family: var(--display);
  font-weight: 300;
  font-size: 36px;
  letter-spacing: -0.15em;
}
.why-foot {
  position: absolute;
  bottom: 60px; left: 60px;
  z-index: 3;
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  max-width: 320px;
  line-height: 1.7;
  text-shadow: 0 1px 14px rgba(0,0,0,0.3);
}
.why-mark {
  position: absolute;
  bottom: 60px; right: 60px;
  z-index: 3;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(31,31,29,0.55);
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  backdrop-filter: blur(6px);
}

.why-cards { position: absolute; top: 200px; bottom: 160px; left: 54%; right: 60px; z-index: 2; }
.why-card { position: absolute; font-size: 13.5px; line-height: 1.45; text-wrap: pretty; transition: transform .35s ease; }
.why-card:hover { transform: translateY(-4px); }
.why-card.solid { background: rgba(255,255,255,0.94); border-color: rgba(255,255,255,0.9); color: var(--ink); }

.why-card.c1 { top: 0;     left: 0;   width: 52%; transform: rotate(-1.5deg); }
.why-card.c2 { top: 34%;   right: 0;  width: 54%; transform: rotate(1deg); }
.why-card.c3 { bottom: 0;  left: 8%;  width: 50%; transform: rotate(-0.8deg); }
.why-card.c1:hover { transform: rotate(-1.5deg) translateY(-4px); }
.why-card.c2:hover { transform: rotate(1deg)    translateY(-4px); }
.why-card.c3:hover { transform: rotate(-0.8deg) translateY(-4px); }

/* ============================================================
   ARTICLES (bento)
   ============================================================ */
.articles { padding: 80px 18px 120px; }
.articles-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  gap: 24px;
}
.articles-head h2 { font-size: clamp(70px, 9vw, 130px); line-height: 0.9; }
.articles-head .meta { text-align: right; }
.articles-head .meta .eyebrow { display: block; }
.articles-head .meta a {
  display: inline-block;
  margin-top: 10px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  font-size: 13px;
}
.articles-head .meta a:hover { color: var(--accent); border-color: var(--accent); }

/* grille bento : 1 feature (gauche, 2 lignes) + 2 tall (droite) + 3 bot */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 36px;
  align-items: start;
}
.article-card.a-feat  { grid-column: 1; grid-row: 1 / span 2; }
.article-card.a-tall1 { grid-column: 2; grid-row: 1; }
.article-card.a-tall2 { grid-column: 3; grid-row: 1; }
.article-card.a-bot1  { grid-column: 1; grid-row: 3; }
.article-card.a-bot2  { grid-column: 2; grid-row: 2 / span 2; }
.article-card.a-bot3  { grid-column: 3; grid-row: 2 / span 2; }

.article-card { display: flex; flex-direction: column; gap: 14px; cursor: pointer; transition: transform .3s; }
.article-card:hover { transform: translateY(-4px); }
.article-card .img { display: block; aspect-ratio: 4 / 3; border-radius: var(--r-md); overflow: hidden; background: var(--bg-soft); }
.article-card.a-feat .img { aspect-ratio: 4 / 5; }
.article-card img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: var(--r-md); }
.article-card h3,
.article-card .display {
  font-family: var(--display);
  font-weight: 300;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
  text-transform: lowercase;
}
.article-card.a-feat h3 { font-size: clamp(30px, 3vw, 42px); }
.article-card .meta-row {
  display: flex;
  gap: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.article-card .meta-row span:not(:last-child)::after {
  content: "·";
  margin-left: 14px;
  color: var(--accent);
}

.article-title {
  font-family: var(--display);
  font-weight: 300;
  text-transform: lowercase;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
  font-size: clamp(1.4rem, 2.45vw, 1.75rem);
  line-height: 1.3;
  margin: 1rem 0;
}

/* ============================================================
   NEWSLETTER strip (et "STATS BAR" sur about - même section .news)
   ============================================================ */
.news {
  margin: 40px 18px 80px;
  background: var(--ink);
  color: var(--bg);
  border-radius: var(--r-lg);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.news::before {
  content: "*";
  position: absolute;
  right: -30px; top: -40px;
  color: var(--accent);
  font-family: var(--display);
  font-weight: 300;
  font-size: 280px;
  opacity: 0.18;
}
.news-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.news h2 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(50px, 6.5vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: lowercase;
}
.news h2 .ac { color: var(--accent); }
.news .sub { margin-top: 22px; font-size: 14px; color: rgba(239, 235, 228, 0.7); max-width: 380px; line-height: 1.55; }

.news-form {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line-light);
  border-radius: var(--r-pill);
  padding: 8px 8px 8px 26px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.news-form input {
  flex: 1; background: none; border: 0; outline: 0;
  color: var(--bg); font: 500 14px var(--text); padding: 12px 0;
}
.news-form input::placeholder { color: rgba(239,235,228,0.5); }
.news-form button {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  font: 500 13px var(--text);
}

.news-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ============================================================
   FOOTER
   ============================================================ */
.foot { padding: 80px 18px 60px; border-top: 1px solid var(--line); }
.foot-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
.foot-top h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  font-weight: 400;
}
.foot-top ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.foot-top ul a:hover { color: var(--accent); }
.foot-brand h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: 72px;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: lowercase;
}
.foot-brand p { margin-top: 18px; font-size: 13px; color: var(--ink-2); max-width: 280px; line-height: 1.55; }
.foot-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

/* ============================================================
   ABOUT PAGE - hero
   ============================================================ */
.about-hero { padding-top: 100px; padding-bottom: 0; position: relative; }
.about-hero-grid {
  margin: 0 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.about-hero-img {
  height: 70vh;
  min-height: 540px;
  max-height: 720px;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.about-hero-text {
  padding: 40px 8px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.about-hero-text h1 { font-size: clamp(80px, 11vw, 180px); }
.about-hero-text .lead { margin-top: 40px; }
.about-hero-text .bottom-row {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   MISSION (about page)
   ============================================================ */
.mission { padding: 140px 18px 100px; }
.mission-head {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(40px, 5.2vw, 78px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  max-width: 980px;
  text-wrap: pretty;
}
.mission-head .ac { color: var(--accent); }

.mission-cols {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.mission-cols .col h4 { margin-bottom: 14px; font-weight: 400; }
.mission-cols .col p  { max-width: 320px; }
.mission-cols .col .num {
  font-family: var(--display);
  font-weight: 300;
  font-size: 64px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
  margin-bottom: 16px;
}

/* ============================================================
   VALUES (about page)
   ============================================================ */
.values { padding: 60px 18px 120px; }
.values h2 { font-size: clamp(70px, 10vw, 140px); margin-bottom: 60px; }

.values-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.values-row .v-cell { padding: 32px 24px; border-right: 1px solid var(--line); }
.values-row .v-cell:last-child { border-right: 0; }
.values-row .v-cell:first-child { padding-left: 0; }
.values-row .v-cell h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: 36px;
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  margin-top: 14px;
  margin-bottom: 16px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero { padding: 140px 18px 80px; text-align: center; }
.contact-hero-inner { max-width: 820px; margin: 0 auto; }
.contact-hero h1 { font-size: clamp(80px, 12vw, 180px); margin-top: 28px; }
.contact-hero .lead { margin: 32px auto 0; }
.contact-hero-meta {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-form-section { padding: 80px 18px 100px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact-left h2 { font-size: clamp(50px, 6vw, 86px); }
.contact-left-text { margin-top: 28px; max-width: 380px; color: var(--ink-2); line-height: 1.55; }

.contact-channels {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.channel {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 20px;
  align-items: baseline;
}
.channel .v { font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.channel .v a:hover { color: var(--accent); }

/* Form */
.contact-form { padding: 40px; display: flex; flex-direction: column; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-weight: 400; }
.field input,
.field select,
.field textarea {
  background: var(--bg-soft);
  border: 1px solid transparent;
  border-radius: var(--r-md);
  padding: 14px 16px;
  font: 400 14px var(--text);
  color: var(--ink);
  outline: 0;
  transition: border-color .2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--accent); }
.field textarea { resize: vertical; min-height: 120px; }

.contact-submit { align-self: flex-start; padding: 14px 24px; }
.contact-submit .arrow { display: inline-grid; place-items: center; margin-left: 4px; }

/* FAQ */
.faq { padding: 80px 18px 120px; }
.faq-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}
.faq-head h2 { font-size: clamp(60px, 7vw, 110px); }
.faq-intro { max-width: 340px; }

.faq-list { display: grid; grid-template-columns: 1fr 1fr; gap: 40px 80px; }
.faq-item { border-top: 1px solid var(--line); padding-top: 24px; }
.faq-q {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 0;
  width: 100%;
  text-align: left;
}
.faq-q .plus {
  margin-left: auto;
  position: relative;
  width: 16px; height: 16px;
  flex-shrink: 0;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--accent);
  transition: transform .25s;
}
.faq-q .plus::before { top: 50%; left: 0; width: 16px; height: 1.5px; transform: translateY(-50%); }
.faq-q .plus::after  { left: 50%; top: 0; height: 16px; width: 1.5px; transform: translateX(-50%); }
.faq-item.is-open .faq-q .plus::after { transform: translateX(-50%) scaleY(0); }
.faq-item h3 {
  font-family: var(--display);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq-a > * { overflow: hidden; }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-a .body-md { padding-top: 14px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why { min-height: auto; padding-bottom: 40px; }
  .why-title {
    position: relative; top: auto; left: auto; max-width: none; padding: 56px 40px 0;
  }
  .why-title .display { font-size: clamp(54px, 12vw, 90px); line-height: 1; }
  .why-slashes { top: 70px; right: 30px; }
  .why-cards {
    position: relative; top: auto; bottom: auto; left: auto; right: auto;
    margin-top: 48px; padding: 0 40px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  }
  .why-card { position: static; width: auto !important; transform: none !important; }
  .why-card:hover { transform: translateY(-3px) !important; }
  .why-foot { position: relative; top: auto; bottom: auto; left: auto; right: auto; max-width: none; padding: 40px 40px 0; }
  .why-mark { bottom: 30px; right: 30px; }

  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .faq-list, .faq-head { grid-template-columns: 1fr; }
}

/* === MOBILE NAV (burger) === */
@media (max-width: 980px) {
  .nav {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 8px 8px 8px 18px;
  }
  .nav .logo-mark { order: 1; }
  .nav-burger { display: inline-flex; order: 2; }
  .nav .nav-left { order: 3; display: none; }
  .nav .nav-right { order: 4; display: none; }
  .nav .nav-left,
  .nav .nav-right {
    width: 100%;
    flex-direction: column;
    gap: 0;
  }
  .nav .nav-left li,
  .nav .nav-right li {
    padding: 14px 8px;
    border-top: 1px solid var(--line);
  }
  .nav-toggle:checked ~ .nav {
    border-radius: var(--r-lg);
    padding-bottom: 12px;
  }
  .nav-toggle:checked ~ .nav .nav-left,
  .nav-toggle:checked ~ .nav .nav-right { display: flex; }
  .nav-toggle:checked ~ .nav .nav-burger { background: rgba(31,31,29,0.10); }
  .nav-toggle:checked ~ .nav .nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-toggle:checked ~ .nav .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav .nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* sous-menu catégories en mobile : déplié dans la feuille */
  .nav-cat-dd { width: 100%; }
  .nav-toggle:checked ~ .nav .nav-cat-menu {
    position: static; display: flex; box-shadow: none; border: 0;
    background: transparent; padding: 8px 0 0; margin: 0;
  }
  .nav-cat-menu a { padding: 8px 0; }

  /* === Layout adjustments === */
  .hero-stats { flex-direction: row; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .news-inner { grid-template-columns: 1fr; }
  .news { padding: 50px 32px; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-brand { grid-column: 1 / -1; }
  .about-hero-grid { grid-template-columns: 1fr; }
  .about-hero-img {
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: 4 / 3;
  }
  .values-row { grid-template-columns: 1fr 1fr; }
  .values-row .v-cell:first-child { padding-left: 24px; }
  .values-row .v-cell:nth-child(2n) { border-right: 0; }
  .values-row .v-cell:nth-child(n+3) { border-top: 1px solid var(--line); }
  .mission-cols { grid-template-columns: 1fr; }

  /* bento articles → grille fluide */
  .article-grid { grid-template-columns: 1fr 1fr; }
  .article-card.a-feat,
  .article-card.a-tall1,
  .article-card.a-tall2,
  .article-card.a-bot1,
  .article-card.a-bot2,
  .article-card.a-bot3 { grid-column: auto; grid-row: auto; }
  .article-card.a-feat .img { aspect-ratio: 4 / 3; }
}

@media (max-width: 720px) {
  .contact-hero { padding: 110px 18px 60px; }
  .contact-form { padding: 24px; }
  .field-row { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; gap: 24px; }
  .foot-brand { grid-column: auto; }
}

@media (max-width: 640px) {
  .hero-tag { display: none; }
  .hero-top, .hero-bottom { left: 24px; right: 24px; }
  .hero-content { left: 24px; right: 24px; bottom: 190px; }
  .hero-content h1 { font-size: clamp(1.55rem, 8.4vw, 80px); }
  .hero-content .hero-cta-bar { margin-top: 24px; gap: 14px; }
  .hero-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    bottom: 24px;
  }
  .hero-meta { padding-bottom: 0; }
  .hero-stats {
    width: 100%;
  }
  .hero-stats .stat-block { min-width: 0; flex: 1; padding: 12px 16px; }
  .about, .articles, .mission, .values { padding-left: 18px; padding-right: 18px; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; margin-top: 40px; }
  .news { padding: 40px 24px; }
  .news-stats { grid-template-columns: 1fr; }
  .values-row { grid-template-columns: 1fr; }
  .values-row .v-cell { padding: 28px 0; border-right: 0; border-top: 1px solid var(--line); }
  .values-row .v-cell:first-child { padding-left: 0; border-top: 0; }
  .values-row .v-cell:nth-child(n+3) { border-top: 1px solid var(--line); }
  .why-cards { grid-template-columns: 1fr; padding: 0 24px; }
  .article-grid { grid-template-columns: 1fr; }
  .foot-bot {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .news-form {
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--r-md);
    padding: 12px;
    gap: 10px;
  }
  .news-form input { padding: 12px 14px; }
  .news-form button { width: 100%; padding: 14px; }
  .news { padding: 32px 18px; }
  .news-inner { gap: 32px; }
}

/* ============================================================
   REVEAL (apparition au scroll, forcée fiable en capture)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; transform: none; }


/* ============================================================
   LAZARRE — intégration moteur (habillage « La Clarté » / theme-13)
   Classes générées par le moteur (/blog, archives, article, auteur, pages, contact).
   Palette habita : --ink #1f1f1d, --accent #c87f4a, --bg #efebe4.
   ============================================================ */

/* utilitaire SEO (H1 réel hors composition décorative du hero) */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---- dropdown catégories (nav) ---- */
.nav-cat-dd { position: relative; display: inline-flex; align-items: center; }
.nav-cat-menu {
  position: absolute; top: 100%; left: 0; min-width: 210px;
  display: none; flex-direction: column;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 10px 0; margin-top: 14px; z-index: 160;
  box-shadow: 0 26px 54px -26px rgba(31,31,29,0.28);
}
.nav-cat-dd:hover > .nav-cat-menu { display: flex; }
.nav-cat-menu a {
  display: block; padding: 9px 20px; white-space: nowrap;
  font-family: var(--text); font-size: 13px; letter-spacing: 0; text-transform: none; color: var(--ink-2);
}
.nav-cat-menu a:hover { color: var(--accent); }
.nav-mobile-cat { display: none; }

/* ---- listing blog + archives ---- */
.blog-listing {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 36px;
  max-width: 1240px; margin: 0 auto; padding: 0 18px;
}
.blog-card {
  position: relative; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 440px; padding: 24px; overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--bg-soft) center/cover no-repeat; color: #fff;
  box-shadow: 0 30px 60px -32px rgba(31,31,29,0.45);
  transition: transform .35s ease;
}
.blog-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(31,31,29,0) 36%, rgba(31,31,29,0.82) 100%);
}
.blog-card:hover { transform: translateY(-6px); }
.blog-card > * { position: relative; z-index: 2; }
.blog-card-cover { position: absolute; inset: 0; z-index: 3; }
.blog-card-category {
  position: absolute; top: 16px; left: 16px; z-index: 4;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #fff; background: var(--accent); padding: 6px 12px; border-radius: var(--r-pill);
}
.blog-card-date {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.82); margin-bottom: 10px;
}
.blog-card-title {
  font-family: var(--display); font-weight: 300; font-size: 1.75rem; line-height: 1.05;
  letter-spacing: -0.02em; text-transform: lowercase; color: #fff;
}
.blog-card-title em { font-style: normal; color: var(--accent-soft); }
.blog-card-excerpt {
  margin-top: 10px; font-family: var(--text); font-size: 0.95rem; line-height: 1.5;
  color: rgba(255,255,255,0.82);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-empty {
  grid-column: 1 / -1; font-family: var(--display); font-weight: 300; text-transform: lowercase;
  font-size: 1.8rem; color: var(--muted); text-align: center; padding: 80px 18px;
}
@media (max-width: 1024px) { .blog-listing { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .blog-listing { grid-template-columns: 1fr; } }

/* ---- pages génériques / légales / archives (.page) ---- */
.page { max-width: 880px; margin: 0 auto; padding: clamp(120px, 12vw, 170px) 18px clamp(72px, 9vw, 120px); }
.page > h1 {
  font-family: var(--display); font-weight: 300; font-size: clamp(46px, 7vw, 96px);
  line-height: 0.94; letter-spacing: -0.04em; text-transform: lowercase; color: var(--ink); margin: 0 0 28px;
}
.page > h1 em { font-style: normal; color: var(--accent); }
.page .intro {
  font-family: var(--text); font-size: clamp(18px, 1.6vw, 24px); line-height: 1.5;
  color: var(--ink-2); margin: 0 0 36px; max-width: 60ch;
}
.page .content { font-family: var(--text); font-size: 1.08rem; line-height: 1.75; color: var(--ink-2); }
.page .content > * + * { margin-top: 1.1em; }
.page .content h2 {
  font-family: var(--display); font-weight: 300; font-size: 2rem; line-height: 1.1;
  letter-spacing: -0.02em; text-transform: lowercase; color: var(--ink); margin: 1.6em 0 0.4em;
}
.page .content h3 {
  font-family: var(--display); font-weight: 300; font-size: 1.5rem; line-height: 1.15;
  letter-spacing: -0.02em; text-transform: lowercase; color: var(--ink); margin: 1.4em 0 0.3em;
}
.page .content a { color: var(--accent); text-decoration: underline !important; text-underline-offset: 3px; }
.page .content a:hover { color: var(--ink); }
.archive-desc { font-family: var(--text); font-size: 1.15rem; color: var(--muted); max-width: 60ch; margin: 0 0 8px; }

/* ---- article (.post) ---- */
.post { max-width: 760px; margin: 0 auto; padding: clamp(120px, 12vw, 160px) 18px clamp(64px, 8vw, 110px); }
.post > header { margin-bottom: 40px; }
.post > header img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover; margin-bottom: 32px;
  border-radius: var(--r-lg); background: var(--bg-soft);
}
.post > header h1 {
  font-family: var(--display); font-weight: 300; font-size: clamp(36px, 5.5vw, 68px);
  line-height: 0.98; letter-spacing: -0.03em; text-transform: lowercase; color: var(--ink); margin: 0 0 20px; text-wrap: balance;
}
.post > header h1 em { font-style: normal; color: var(--accent); }
.post .content { font-family: var(--text); font-size: 1.1rem; line-height: 1.78; color: var(--ink-2); }
.post .content > * + * { margin-top: 1.15em; }
.post .content .lede { font-size: 1.3rem; line-height: 1.5; color: var(--ink); }
.post .content h2 {
  font-family: var(--display); font-weight: 300; font-size: 1.9rem; line-height: 1.1;
  letter-spacing: -0.02em; text-transform: lowercase; color: var(--ink); margin: 1.7em 0 0.4em;
}
.post .content h3 {
  font-family: var(--display); font-weight: 300; font-size: 1.45rem; line-height: 1.15;
  letter-spacing: -0.02em; text-transform: lowercase; color: var(--ink); margin: 1.5em 0 0.3em;
}
.post .content img { width: 100%; margin: 1.5em 0; border-radius: var(--r-md); }
.post .content a { color: var(--accent); text-decoration: underline !important; text-underline-offset: 3px; }
.post .content a:hover { color: var(--ink); }
.post .content blockquote {
  margin: 1.5em 0; padding: 6px 0 6px 28px; border-left: 2px solid var(--accent);
  font-family: var(--display); font-weight: 300; font-size: 1.5rem; line-height: 1.25;
  letter-spacing: -0.01em; color: var(--ink);
}

/* ---- méta article : date · auteur · catégorie ---- */
.meta.article-meta,
.article-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); margin: 0;
}
.article-meta-sep { color: var(--line); }
.article-meta-author, .article-meta-category { color: var(--accent); }
.article-meta-author:hover, .article-meta-category:hover { color: var(--ink); }

/* ---- box auteur sous l'article ---- */
.author-box {
  display: flex; gap: 22px; align-items: center; margin-top: 52px; padding: 28px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--r-lg);
}
.author-box-photo img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; background: var(--bg); }
.author-box-name {
  font-family: var(--display); font-weight: 300; font-size: 1.5rem; text-transform: lowercase;
  color: var(--ink); display: inline-block; margin-bottom: 6px;
}
a.author-box-name:hover { color: var(--accent); }
.author-box-bio { margin: 0; font-family: var(--text); color: var(--ink-2); font-size: 1rem; line-height: 1.55; }

/* ---- page auteur (overrides légers des styles inline du moteur) ---- */
.author-page { max-width: 1240px; margin: 0 auto; padding: clamp(120px, 12vw, 170px) 18px 80px; }
.author-page-header h1 {
  font-family: var(--display); font-weight: 300; font-size: clamp(44px, 6vw, 84px);
  line-height: 1; letter-spacing: -0.03em; text-transform: lowercase; color: var(--ink);
}
.author-page-bio { color: var(--muted) !important; font-family: var(--text) !important; }
.author-page-articles h2,
.author-page-bio-long h2 {
  font-family: var(--display); font-weight: 300; font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.1; letter-spacing: -0.02em; text-transform: lowercase; color: var(--ink);
}
.author-page-bio-long .content { color: var(--ink-2) !important; font-family: var(--text) !important; }

/* ---- grille auteurs — section « norme » de l'À propos ---- */
.authors { padding: clamp(80px, 10vw, 130px) 18px; max-width: 1240px; margin: 0 auto; }
.authors .author-head { margin-bottom: clamp(40px, 5vw, 64px); }
.authors .author-head .eyebrow {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); display: inline-block; margin-bottom: 18px;
}
.authors .author-head h2 {
  font-family: var(--display); font-weight: 300; font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1; letter-spacing: -0.03em; text-transform: lowercase; color: var(--ink);
}
.authors .author-head h2 em { font-style: normal; color: var(--accent); }
.authors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 48px 40px; }
.author-mini { display: flex; flex-direction: column; gap: 14px; }
.author-mini__img {
  margin: 0; padding: 14px 14px 10px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); box-shadow: 0 24px 48px -24px rgba(31,31,29,0.18); max-width: 260px;
}
.author-mini__img img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; display: block; border-radius: var(--r-sm);
  transition: transform 1s cubic-bezier(.2,.6,.2,1);
}
.author-mini:hover .author-mini__img img { transform: scale(1.04); }
.author-mini__role { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.author-mini__name {
  font-family: var(--display); font-weight: 300; font-size: 2rem; line-height: 1;
  letter-spacing: -0.03em; text-transform: lowercase; color: var(--ink); margin: 0;
}
.author-mini__bio { font-family: var(--text); font-size: 1rem; line-height: 1.6; color: var(--ink-2); margin: 0; max-width: 38ch; }
.author-mini__cta {
  margin-top: auto; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); display: inline-flex; gap: 8px; align-items: center;
}
.author-mini__cta .arrow { transition: transform .25s; }
.author-mini__cta:hover { color: var(--ink); }
.author-mini__cta:hover .arrow { transform: translateX(4px); }

/* ---- alertes du formulaire contact (handler PHP) ---- */
.cf-alert { padding: 16px 20px; margin-bottom: 22px; border-radius: var(--r-md); font-family: var(--text); font-size: 0.95rem; line-height: 1.5; }
.cf-alert-success { background: rgba(200,127,74,0.10); border: 1px solid var(--accent); color: #8a4f24; }
.cf-alert-error   { background: rgba(31,31,29,0.05); border: 1px solid var(--line); color: var(--ink); }
.cf-alert ul { margin: 8px 0 0; padding-left: 18px; }

/* ---- pont invisible : comble la zone morte entre "Blog" et le menu (le gap visuel reste) ---- */
.nav-cat-dd{ position:relative; }
.nav-cat-dd::after{ content:""; position:absolute; left:0; right:0; top:100%; height:22px; }
