/* ═══════════════════════════════════════════════════════════
   les Artisans du Soin — style.css v2
   Éditorial premium — pas un dashboard
   Typo : Playfair Display (titres) + Lora (corps) + DM Sans (UI)
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;1,400&family=Lora:ital,wght@0,400;0,500;1,400&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:     #F7F4EF;
  --ink:       #1A1714;
  --ink-soft:  #4A4540;
  --ink-muted: #9A948D;
  --accent:    #C8622A;
  --accent-bg: #F5EDE6;
  --white:     #FFFFFF;
  --rule:      rgba(26,23,20,0.1);

  --serif: 'Playfair Display', Georgia, serif;
  --body:  'Lora', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;

  --gutter: 40px;
  --max:    1100px;
}

html {
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img  { display: block; max-width: 100%; height: auto; object-fit: cover; }
a    { color: inherit; text-decoration: none; }
main { flex: 1; max-width: var(--max); margin: 0 auto; width: 100%; }

/* ─── Nav ────────────────────────────────────────────────── */

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  height: 60px;
  border-bottom: 1px solid var(--rule);
  background: var(--cream);
  position: sticky;
  top: 0;
  z-index: 100;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.nav-logo span { color: var(--accent); font-style: normal; }

.nav-cats {
  display: flex;
  gap: 0;
  align-items: center;
}

.nav-cat {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  padding: 6px 14px;
  transition: color 0.15s;
  border-right: 1px solid var(--rule);
}
.nav-cat:last-child { border-right: none; }
.nav-cat:hover, .nav-cat.active { color: var(--ink); }
.nav-cat-cta { color: var(--accent); font-weight: 500; }
.nav-cat-cta:hover { color: var(--accent); opacity: 0.75; }

.nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  padding: 7px 14px;
  border: 1px solid var(--rule);
  border-radius: 2px;
  transition: border-color 0.15s, color 0.15s;
}
.nav-wa:hover { border-color: var(--accent); color: var(--accent); }
.nav-wa svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ─── Hero ───────────────────────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-bottom: 1px solid var(--rule);
}

.hero-main {
  padding: 60px var(--gutter) 48px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-kicker {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.hero-signature {
  font-family: var(--body);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--ink-muted);
  margin-bottom: 32px;
}

.hero-hook {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.hero-hook em { font-style: italic; color: var(--accent); }

.hero-sub {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 40px;
  max-width: 440px;
}

/* Proof — chiffres en grand */
.hero-proof {
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  margin-bottom: 28px;
}

.proof-grid {
  display: flex;
  gap: 32px;
  align-items: baseline;
  margin-bottom: 10px;
}

.ps {}
.pn {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.pl {
  font-family: var(--sans);
  font-size: 0.6rem;
  color: var(--ink-muted);
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-top: 3px;
  display: block;
}
.psrc {
  font-family: var(--body);
  font-size: 0.75rem;
  color: var(--ink-muted);
  font-style: italic;
}

/* Hero article link */
.hero-article-link {
  display: block;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.hero-article-link:hover .hero-article-title { color: var(--accent); }

.hero-article-tag {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.hero-article-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 10px;
  transition: color 0.15s;
}

.hero-article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent-bg);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: 0.5rem; font-weight: 500; color: var(--accent);
}
.meta-txt { font-family: var(--sans); font-size: 0.7rem; color: var(--ink-muted); font-weight: 300; }
.dot { width: 2px; height: 2px; border-radius: 50%; background: var(--ink-muted); flex-shrink: 0; }

/* Hero right */
.hero-right { display: flex; flex-direction: column; }

.hero-img {
  flex: 1;
  background: var(--ink);
  overflow: hidden;
  min-height: 300px;
  display: block;
  position: relative;
}
.hero-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 0.6s ease;
}
.hero-img:hover img { transform: scale(1.03); }

.hero-img-ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; opacity: 0.12; color: var(--cream);
}
.hero-img-ph span { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; }

.hero-side { border-top: 1px solid var(--rule); }

.side-item {
  display: grid;
  grid-template-columns: 1fr 72px;
  gap: 16px;
  align-items: start;
  padding: 20px 24px;
  border-bottom: 1px solid var(--rule);
  transition: background 0.12s;
}
.side-item:last-child { border-bottom: none; }
.side-item:hover { background: var(--accent-bg); }
.side-item:hover .side-title { color: var(--accent); }

.side-tag { font-family: var(--sans); font-size: 0.58rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 5px; }
.side-title { font-family: var(--serif); font-size: 0.95rem; font-weight: 400; line-height: 1.35; color: var(--ink); margin-bottom: 5px; transition: color 0.15s; }
.side-meta { font-family: var(--sans); font-size: 0.65rem; color: var(--ink-muted); }

.side-thumb {
  width: 72px; height: 52px;
  border-radius: 2px;
  background: rgba(26,23,20,0.08);
  overflow: hidden; flex-shrink: 0;
}
.side-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Section header ─────────────────────────────────────── */

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 48px var(--gutter) 20px;
}

.section-title-text {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.section-more {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 400;
  transition: opacity 0.15s;
}
.section-more:hover { opacity: 0.7; }

/* ─── Recents ────────────────────────────────────────────── */

.recents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.recent-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 18px;
  padding: 24px var(--gutter);
  border-right: 1px solid var(--rule);
  align-items: start;
  transition: background 0.12s;
}
.recent-card:last-child { border-right: none; }
.recent-card:hover { background: var(--accent-bg); }
.recent-card:hover .feed-title { color: var(--accent); }

.recent-thumb {
  width: 80px; height: 58px;
  border-radius: 2px;
  background: rgba(26,23,20,0.08);
  overflow: hidden; flex-shrink: 0;
}
.recent-thumb img { width: 100%; height: 100%; object-fit: cover; }

.feed-tag { font-family: var(--sans); font-size: 0.58rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.feed-title { font-family: var(--serif); font-size: 1rem; font-weight: 400; line-height: 1.35; color: var(--ink); margin-bottom: 6px; transition: color 0.15s; }
.feed-excerpt { font-family: var(--body); font-size: 0.82rem; line-height: 1.7; color: var(--ink-soft); margin-bottom: 8px; }
.feed-meta { font-family: var(--sans); font-size: 0.65rem; color: var(--ink-muted); }

/* ─── Clientes ───────────────────────────────────────────── */

.clientes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.cliente-card {
  padding: 24px 20px;
  border-right: 1px solid var(--rule);
  transition: background 0.12s;
}
.cliente-card:last-child { border-right: none; }
.cliente-card:hover { background: var(--accent-bg); }
.cliente-card:hover .cliente-name { color: var(--accent); }

.cliente-img {
  width: 100%; height: 80px;
  border-radius: 2px;
  background: rgba(26,23,20,0.08);
  margin-bottom: 14px;
  overflow: hidden;
}
.cliente-img img { width: 100%; height: 100%; object-fit: cover; }

.cliente-name { font-family: var(--serif); font-size: 1rem; font-weight: 400; color: var(--ink); margin-bottom: 3px; transition: color 0.15s; }
.cliente-lieu { font-family: var(--sans); font-size: 0.65rem; color: var(--ink-muted); margin-bottom: 10px; }
.cliente-stats { display: flex; flex-direction: column; gap: 4px; }
.cliente-stat {
  font-family: var(--sans); font-size: 0.7rem; color: var(--ink-soft);
  display: flex; align-items: center; gap: 6px;
}
.cliente-stat::before { content: ''; width: 3px; height: 3px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* ─── François ───────────────────────────────────────────── */

.francois {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--rule);
}

.francois-img {
  background: var(--ink);
  overflow: hidden;
  min-height: 240px;
  display: flex; align-items: center; justify-content: center;
}
.francois-img img { width: 100%; height: 100%; object-fit: cover; }
.francois-img-ph { opacity: 0.12; color: var(--cream); text-align: center; }
.francois-img-ph svg { width: 40px; height: 40px; stroke: currentColor; fill: none; stroke-width: 1; display: block; margin: 0 auto 8px; }
.francois-img-ph span { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; }

.francois-content { padding: 48px var(--gutter); border-left: 1px solid var(--rule); }

.francois-eyebrow { font-family: var(--sans); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.francois-name { font-family: var(--serif); font-size: 2rem; font-weight: 400; color: var(--ink); margin-bottom: 4px; }
.francois-title { font-family: var(--sans); font-size: 0.75rem; color: var(--ink-muted); letter-spacing: 0.04em; margin-bottom: 20px; }
.francois-bio { font-family: var(--body); font-size: 1rem; line-height: 1.85; color: var(--ink-soft); margin-bottom: 20px; max-width: 560px; }
.francois-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.ftag { font-family: var(--sans); font-size: 0.65rem; padding: 4px 12px; border: 1px solid var(--rule); border-radius: 20px; color: var(--ink-muted); }

/* ─── Accompagnement ─────────────────────────────────────── */

.accompagnement { padding: 80px var(--gutter); background: var(--cream); }

.accomp-eyebrow { font-family: var(--sans); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; text-align: center; }

.accomp-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  text-align: center;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 10px;
}
.accomp-title em { font-style: italic; color: var(--accent); }

.accomp-sub { font-family: var(--body); font-size: 1rem; text-align: center; color: var(--ink-muted); line-height: 1.75; margin-bottom: 60px; }

/* Le Diagnostic */
.diag {
  border-top: 2px solid var(--accent);
  padding: 48px 0;
  margin-bottom: 60px;
}

.diag-hdr {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.diag-name {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.1;
}
.diag-name em { font-style: italic; color: var(--accent); }

.diag-desc {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-top: 12px;
  max-width: 560px;
  border-left: 2px solid var(--accent);
  padding-left: 18px;
}

.diag-price {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
}
.diag-price span { font-family: var(--sans); font-size: 0.8rem; color: var(--ink-muted); font-weight: 300; display: block; margin-top: 4px; text-align: right; }

.diag-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 32px 0;
}

.di {
  font-family: var(--body);
  font-size: 0.9rem;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 10px;
}
.di::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

.diag-note { font-family: var(--body); font-size: 0.82rem; color: var(--ink-muted); font-style: italic; margin-bottom: 28px; }

.diag-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--ink);
  color: var(--cream);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.15s;
}
.diag-cta:hover { background: var(--accent); }
.diag-cta svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; }

/* Offres grid */
.offres-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  border-top: 1px solid var(--rule);
  padding-top: 48px;
}

.offre { border-top: 1px solid var(--accent); padding-top: 24px; }

.offre-badge {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.offre-name { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; color: var(--ink); margin-bottom: 4px; line-height: 1.2; }
.offre-price { font-family: var(--sans); font-size: 0.78rem; color: var(--accent); font-weight: 500; margin-bottom: 24px; }
.offre-pour { font-family: var(--sans); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 8px; }
.offre-target { font-family: var(--body); font-size: 0.9rem; font-style: italic; line-height: 1.75; color: var(--ink-soft); margin-bottom: 20px; }

.offre-ca { margin-bottom: 20px; }
.offre-ca-lbl { font-family: var(--sans); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 4px; }
.offre-ca-val { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); }

.offre-items { list-style: none; margin-bottom: 20px; }
.offre-items li {
  font-family: var(--body); font-size: 0.88rem; color: var(--ink-soft);
  padding: 6px 0; border-bottom: 1px solid rgba(26,23,20,0.06);
  display: flex; align-items: center; gap: 10px;
}
.offre-items li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

.offre-moat { margin-bottom: 24px; }
.offre-moat-lbl { font-family: var(--sans); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 6px; }
.offre-moat-txt { font-family: var(--body); font-size: 0.88rem; font-style: italic; line-height: 1.7; color: var(--ink-soft); border-left: 2px solid var(--accent); padding-left: 14px; }

.offre-cta {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: opacity 0.15s;
}
.offre-cta:hover { opacity: 0.7; }

/* ─── Page article ───────────────────────────────────────── */

.article-header {
  max-width: 720px;
  margin: 60px auto 0;
  padding: 0 var(--gutter);
}

.article-kicker {
  font-family: var(--sans);
  font-size: 0.6rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.article-kicker::after { content: ''; flex: 1; height: 1px; background: var(--accent); opacity: 0.2; max-width: 60px; }

.article-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400; line-height: 1.1; color: var(--ink); margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.article-title em { font-style: italic; color: var(--accent); }

.article-excerpt {
  font-family: var(--body);
  font-size: 1.1rem; font-weight: 400; line-height: 1.8; color: var(--ink-soft);
  margin-bottom: 24px; border-left: 2px solid var(--accent); padding-left: 20px;
}

.article-meta { display: flex; align-items: center; gap: 12px; padding-bottom: 28px; border-bottom: 1px solid var(--rule); flex-wrap: wrap; }

.article-cover-wrapper,
.article-cover {
  width: 100%; max-width: var(--max);
  margin: 40px auto 0;
  height: clamp(240px, 42vw, 480px);
  background: var(--ink); overflow: hidden; position: relative; display: block;
}
.article-cover-wrapper img, .article-cover img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.9;
}
.article-cover-placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; opacity: 0.12; color: var(--cream);
}
.article-cover-placeholder svg { width: 44px; height: 44px; stroke: currentColor; fill: none; stroke-width: 1; }
.article-cover-placeholder span { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; }

.article-body {
  max-width: 720px; margin: 60px auto 100px; padding: 0 var(--gutter);
  font-family: var(--body); font-size: 1.05rem; font-weight: 400; line-height: 1.9; color: var(--ink-soft);
}
.article-body h2 { font-family: var(--serif); font-size: 1.7rem; font-weight: 400; color: var(--ink); margin: 2.5em 0 0.8em; line-height: 1.2; }
.article-body h3 { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; font-style: italic; color: var(--ink); margin: 2em 0 0.6em; }
.article-body p { margin-bottom: 1.5em; }
.article-body strong { font-weight: 600; color: var(--ink); font-family: var(--sans); font-size: 0.95em; }
.article-body a { color: var(--accent); border-bottom: 1px solid rgba(200,98,42,0.3); transition: border-color 0.15s; }
.article-body a:hover { border-color: var(--accent); }
.article-body blockquote {
  margin: 2.5em 0; padding: 20px 24px;
  border-left: 2px solid var(--accent);
  font-style: italic; font-size: 1.1rem; color: var(--ink); line-height: 1.7;
}
.article-body ul, .article-body ol { margin: 1em 0 1.5em 1.5em; }
.article-body li { margin-bottom: 0.6em; }
.article-body hr { border: none; border-top: 1px solid var(--rule); margin: 3em 0; }

/* Article — composants spéciaux */
.callout {
  background: var(--accent-bg); border-left: 2px solid var(--accent);
  padding: 18px 22px; margin: 2.5em 0; border-radius: 0 3px 3px 0;
  font-size: 0.95rem; line-height: 1.75; color: var(--ink);
}
.callout strong { display: block; font-family: var(--sans); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; font-size: 0.6rem; }

.verdict {
  background: var(--ink); padding: 36px 40px; border-radius: 2px; margin: 3em 0;
}
.verdict-label { font-family: var(--sans); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.verdict p { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; font-style: italic; line-height: 1.7; color: var(--cream); margin: 0; }

/* Témoignages portrait */
.temoignage { margin: 3.5em 0; border-top: 1px solid var(--rule); padding-top: 2.5em; }
.temoignage-header { display: flex; align-items: center; gap: 16px; margin-bottom: 1.5em; }
.temoignage-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--accent-bg); display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 1.2rem; font-style: italic; color: var(--accent); flex-shrink: 0; }
.temoignage-nom { font-family: var(--serif); font-size: 1rem; font-weight: 400; color: var(--ink); margin-bottom: 2px; }
.temoignage-metier { font-family: var(--sans); font-size: 0.68rem; color: var(--ink-muted); }
.temoignage-num { font-family: var(--serif); font-size: 3.5rem; font-weight: 400; color: rgba(26,23,20,0.05); line-height: 1; flex-shrink: 0; margin-left: auto; }

/* Data points */
.data-point { display: flex; align-items: baseline; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--rule); }
.data-point:first-child { border-top: 1px solid var(--rule); }
.data-point-num { font-family: var(--serif); font-size: 2.5rem; font-weight: 400; color: var(--accent); line-height: 1; flex-shrink: 0; min-width: 90px; }
.data-point-text { font-family: var(--body); font-size: 0.95rem; line-height: 1.7; color: var(--ink-soft); }

/* Pièges numérotés */
.piege { padding: 24px 0; border-bottom: 1px solid var(--rule); }
.piege-num { font-family: var(--serif); font-size: 3rem; font-weight: 400; color: rgba(26,23,20,0.05); line-height: 1; margin-bottom: 4px; }
.piege-titre { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--ink); margin-bottom: 12px; }
.piege-corps { font-family: var(--body); font-size: 0.95rem; line-height: 1.8; color: var(--ink-soft); }

/* Contrat lignes */
.contrat-ligne { display: flex; align-items: flex-start; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--rule); font-size: 0.92rem; }
.contrat-icone { width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.contrat-icone svg { width: 100%; height: 100%; stroke: currentColor; fill: none; stroke-width: 2; }
.contrat-text { font-family: var(--body); color: var(--ink-soft); line-height: 1.65; }

/* Nav article */
.article-nav-back { display: inline-flex; align-items: center; gap: 7px; font-family: var(--sans); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 24px; transition: color 0.15s; }
.article-nav-back:hover { color: var(--accent); }
.article-nav-back svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

.article-footer-nav { max-width: 720px; margin: 60px auto 0; padding: 32px var(--gutter); border-top: 1px solid var(--rule); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-nav-label { font-family: var(--sans); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 6px; }
.footer-nav-title { font-family: var(--serif); font-size: 1rem; font-weight: 400; color: var(--ink); line-height: 1.3; max-width: 240px; transition: color 0.15s; }
.footer-nav-link:hover .footer-nav-title { color: var(--accent); }

/* Barre progression lecture */
.progress-bar { position: fixed; top: 0; left: 0; height: 2px; background: var(--accent); width: 0%; z-index: 200; transition: width 0.1s linear; }

/* ─── Footer ─────────────────────────────────────────────── */

.footer-bar {
  border-top: 1px solid var(--rule);
  padding: 24px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max); margin: 0 auto; width: 100%;
}

.footer-logo { font-family: var(--serif); font-size: 0.9rem; color: var(--ink-muted); font-style: italic; }
.footer-logo span { color: var(--accent); font-style: normal; }
.footer-links { display: flex; gap: 24px; }
.footer-link { font-family: var(--sans); font-size: 0.65rem; color: var(--ink-muted); transition: color 0.15s; }
.footer-link:hover { color: var(--ink); }

/* ─── Responsive ─────────────────────────────────────────── */

@media (max-width: 900px) {
  :root { --gutter: 24px; }
  html { font-size: 17px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-main { border-right: none; border-bottom: 1px solid var(--rule); padding: 40px var(--gutter) 32px; }
  .hero-right { border-top: none; }
  .clientes-grid { grid-template-columns: 1fr 1fr; }
  .offres-grid { grid-template-columns: 1fr; gap: 32px; }
  .recents { grid-template-columns: 1fr; }
  .recent-card { border-right: none; border-bottom: 1px solid var(--rule); }
  .francois { grid-template-columns: 1fr; }
  .francois-img { min-height: 180px; }
  .diag-hdr { flex-direction: column; }
}

@media (max-width: 600px) {
  :root { --gutter: 20px; }
  html { font-size: 16px; }
  .nav-cats { display: none; }
  .clientes-grid { grid-template-columns: 1fr 1fr; }
  .diag-items { grid-template-columns: 1fr; }
  .footer-bar { flex-direction: column; gap: 12px; text-align: center; }
  .proof-grid { gap: 20px; flex-wrap: wrap; }
}