/* ============================================================
   Totaro & Co — main.css
   Lora (titres) + DM Sans (corps) + Ubuntu (& du logo)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;1,400&family=DM+Sans:wght@300;400;500;600&family=Ubuntu:wght@400&display=swap');

:root {
  --obsidian: #0B0C0A;
  --charcoal: #181A15;
  --slate:    #252820;
  --stone:    #636358;
  --mist:     #BABCAF;
  --ivory:    #F2F1EB;
  --lime:     #6FA832;
  --forest:   #1E3D14;
  --sub:      #4A4A40;
  --hairline-dark:  rgba(255,255,255,0.06);
  --hairline-light: rgba(0,0,0,0.08);

  --font-display: 'Lora', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-amp:     'Ubuntu', sans-serif;

  --pad-section-y: 120px;
  --pad-x: 80px;
  --max: 1200px;
}

@media (max-width: 1024px) { :root { --pad-section-y: 96px; --pad-x: 48px; } }
@media (max-width: 640px)  { :root { --pad-section-y: 72px; --pad-x: 24px; } }

/* ── reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ivory);
  background: var(--obsidian);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* ── typographie ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.1; letter-spacing: -0.01em; }
em { font-style: italic; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--lime);
  display: inline-block;
}
.eyebrow-light { color: var(--forest); }
.eyebrow-stone { color: var(--stone); }

/* ── logo Totaro & co ───────────────────────────────────── */
.tlogo { display: inline-flex; align-items: baseline; line-height: 1; font-size: 22px; }
.tlogo-name { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.02em; }
.tlogo-amp  { font-family: var(--font-amp);     font-weight: 400; margin: 0 0.22em; }
.tlogo-co   { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.01em; }
.tlogo-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.14em;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  display: block;
  margin-top: 0.8em;
}
.t-dark .tlogo-name, .t-dark .tlogo-co { color: var(--ivory); }
.t-dark .tlogo-amp { color: var(--lime); }
.t-dark .tlogo-sub { color: var(--sub); }
.t-light .tlogo-name, .t-light .tlogo-co { color: #1A1A14; }
.t-light .tlogo-amp { color: var(--forest); }
.t-light .tlogo-sub { color: #C8C9BC; }

/* ── nav ────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--obsidian);
  border-bottom: 1px solid var(--hairline-dark);
  padding: 18px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--stone);
  transition: color 150ms ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--ivory); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-mobile {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--obsidian);
  flex-direction: column;
  padding: 32px var(--pad-x);
  gap: 8px;
  z-index: 99;
  border-top: 1px solid var(--hairline-dark);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  color: var(--ivory);
  min-height: 44px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--hairline-dark);
}
.nav-mobile .btn { margin-top: 16px; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ── boutons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 2px;
  transition: opacity 150ms ease, transform 150ms ease, background 150ms ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-lime { background: var(--lime); color: var(--obsidian); }
.btn-lime:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-outline-dark {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-outline-dark:hover { border-color: var(--ivory); }
.btn-outline-light {
  background: transparent;
  color: #1A1A14;
  border: 1px solid rgba(0,0,0,0.2);
}
.btn-outline-light:hover { border-color: #1A1A14; }
.btn-lg { padding: 18px 36px; font-size: 15px; }
.btn svg { width: 16px; height: 16px; }

@media (max-width: 640px) {
  .btn, .btn-lg { width: 100%; justify-content: center; }
  .btn-row { flex-direction: column; align-items: stretch; }
}

.link-arrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 150ms ease;
  color: var(--lime);
}
.link-arrow:hover { opacity: 0.7; }
.link-arrow.muted { color: var(--forest); }
.link-arrow svg { width: 14px; height: 14px; }

/* ── sections ──────────────────────────────────────────── */
.section { padding: var(--pad-section-y) var(--pad-x); }
.section-obsidian { background: var(--obsidian); color: var(--ivory); }
.section-charcoal { background: var(--charcoal);  color: var(--ivory); }
.section-ivory    { background: var(--ivory);     color: #1A1A14; }
.container { max-width: var(--max); margin: 0 auto; }
.container-narrow { max-width: 720px; margin: 0 auto; }

.title-h1 { font-size: clamp(40px, 6vw, 60px); line-height: 1.05; }
.title-h2 { font-size: clamp(32px, 4vw, 44px); line-height: 1.1; }
.title-h3 { font-size: clamp(26px, 3vw, 32px); line-height: 1.15; }

.lead { font-size: 18px; color: var(--mist); max-width: 560px; }
.section-ivory .lead { color: var(--stone); }

.tiny { font-size: 13px; font-weight: 300; }
.note-italic { font-style: italic; color: var(--stone); font-size: 13px; }

/* ── hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding: 120px var(--pad-x);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  z-index: -2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(11,12,10,0.85) 0%,
    rgba(11,12,10,0.60) 60%,
    rgba(11,12,10,0.30) 100%);
  z-index: -1;
}
.hero-overlay-flat { background: rgba(11,12,10,0.70); }
.hero-content { max-width: 720px; }
.hero h1 { color: var(--ivory); margin-top: 20px; }
.hero h1 em { color: var(--lime); font-style: italic; }
.hero .lead { margin-top: 24px; }
.hero .btn-row { margin-top: 36px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero .note-italic { margin-top: 16px; color: var(--stone); }

.hero-internal { min-height: 56vh; }

/* ── reality / centered narrative ──────────────────────── */
.narrative {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.narrative h2 { color: var(--ivory); margin: 20px 0 28px; }
.narrative h2 em { color: var(--lime); font-style: italic; }
.narrative p { color: var(--mist); margin-bottom: 18px; line-height: 1.8; }
.narrative p:last-child { color: var(--ivory); margin-top: 28px; }

/* ── services cards ────────────────────────────────────── */
.services-head { text-align: center; margin-bottom: 64px; }
.services-head h2 { color: #1A1A14; margin: 16px 0 20px; }
.services-head .lead { margin: 0 auto; }

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .cards-3 { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }

.card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E0E0D8;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-featured { border-top: 3px solid var(--lime); }
.card-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--lime);
  color: var(--obsidian);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 12px;
}
.card h3 { font-family: var(--font-display); font-weight: 400; font-size: 24px; color: #1A1A14; }
.card-price { font-family: var(--font-body); font-weight: 600; font-size: 32px; color: var(--forest); }
.card hr { border: 0; border-top: 1px solid #E0E0D8; margin: 4px 0; }
.card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.card ul li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  color: #2A2A24;
  line-height: 1.5;
}
.card ul li svg { flex-shrink: 0; width: 16px; height: 16px; color: var(--forest); margin-top: 4px; }
.card-meta { font-size: 13px; color: var(--stone); }
.card .btn { width: 100%; justify-content: center; margin-top: auto; }
.card-note { font-size: 12px; color: #9A9A8E; text-align: center; }

.disclaimer-line {
  text-align: center;
  font-size: 13px;
  color: #9A9A8E;
  max-width: 560px;
  margin: 56px auto 0;
  line-height: 1.7;
}

/* ── approach (split) ──────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split h2 { color: var(--ivory); }
.split-body p {
  color: var(--mist);
  margin-bottom: 18px;
  line-height: 1.8;
}
.split-body p:last-child { color: var(--ivory); }
.legal-note {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline-dark);
  font-size: 12px;
  font-style: italic;
  color: var(--sub);
  line-height: 1.7;
  max-width: 720px;
}

/* ── founder section ──────────────────────────────────── */
.founder {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 880px) { .founder { grid-template-columns: 1fr; gap: 40px; } }

.founder-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.9);
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
          mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.founder-body h2 { margin: 16px 0 28px; color: #1A1A14; }
.founder-body p { color: var(--stone); margin-bottom: 18px; line-height: 1.8; font-size: 16px; }
.founder-sig { font-family: var(--font-display); font-style: italic; font-size: 16px; color: #1A1A14; margin-top: 28px; }
.founder-sig small { display: block; font-style: normal; font-family: var(--font-body); font-weight: 300; font-size: 13px; color: var(--stone); margin-top: 4px; }

/* ── EC affiliate box ─────────────────────────────────── */
.ec-affiliate {
  background: var(--ivory);
  padding: var(--pad-section-y) var(--pad-x);
}
.ec-box {
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid #E0E0D8;
  background: #FFFFFF;
  padding: 28px 32px;
  text-align: center;
}
.ec-box p {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 16px;
}
.ec-box p:last-child { margin-bottom: 0; }

/* ── final CTA ────────────────────────────────────────── */
.cta-final { text-align: center; }
.cta-final h2 { color: var(--ivory); margin-bottom: 24px; max-width: 720px; margin-left: auto; margin-right: auto; }
.cta-final h2 em { color: var(--lime); font-style: italic; }
.cta-final .lead { margin: 0 auto 36px; color: var(--mist); }
.cta-final .note-italic { margin-top: 20px; color: var(--sub); }

/* ── footer ───────────────────────────────────────────── */
.footer {
  background: var(--obsidian);
  padding: 56px var(--pad-x) 32px;
  border-top: 1px solid var(--hairline-dark);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--hairline-dark);
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-nav a { font-size: 13px; color: var(--stone); transition: color 150ms ease; }
.footer-nav a:hover { color: var(--ivory); }
.footer-bottom {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-disclaimer {
  font-size: 11px;
  color: var(--sub);
  font-style: italic;
  line-height: 1.7;
  max-width: 720px;
}
.footer-copy { font-size: 11px; color: var(--sub); white-space: nowrap; }
.last-updated {
  margin-top: 24px;
  text-align: center;
  font-size: 10px;
  color: var(--sub);
  opacity: 0.7;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
}

/* ── service pages: blocks ────────────────────────────── */
.price-tag {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 56px;
  color: var(--lime);
  letter-spacing: -0.02em;
  margin: 24px 0;
  display: block;
}
.deliverable-list {
  column-count: 2;
  column-gap: 3rem;
  margin-top: 48px;
}
@media (max-width: 880px) { .deliverable-list { column-count: 1; } }
.deliverable {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 3rem;
}
.deliverable:last-child { margin-bottom: 0; }
.deliverable-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--forest);
}
.deliverable-icon svg { width: 20px; height: 20px; }
.deliverable h3 { font-size: 18px; margin-bottom: 8px; color: #1A1A14; }
.deliverable p { font-size: 15px; color: var(--stone); line-height: 1.7; }

/* timeline (horizontal on desktop, vertical on mobile) */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 48px;
}
/* variante 4 colonnes desktop — utilisée par /audit + /analyse */
.timeline.cols-4 { grid-template-columns: repeat(4, 1fr); gap: 2rem; }

.timeline-step { position: relative; padding-left: 0; }
.timeline-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--obsidian);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.timeline-step h3 { font-size: 18px; color: var(--ivory); margin-bottom: 10px; }
.timeline-step p { font-size: 15px; color: var(--mist); line-height: 1.7; }

@media (max-width: 880px) {
  /* mobile: stack vertical, numéro et contenu côte à côte (grid 36px + 1fr) */
  .timeline,
  .timeline.cols-4 {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-left: 0;
  }
  .timeline::before { display: none; } /* pas de ligne verticale, le numéro est inline */

  .timeline-step {
    display: grid;
    grid-template-columns: 36px 1fr;
    column-gap: 16px;
    padding-left: 0;
  }
  .timeline-step .timeline-num {
    position: static;
    grid-column: 1;
    grid-row: 1;
    align-self: start;
    margin: 0;
  }
  .timeline-step h3,
  .timeline-step p {
    grid-column: 2;
    margin: 0;
  }
  .timeline-step h3 { margin-bottom: 8px; }
}

/* for-whom list */
.forwhom { display: flex; flex-direction: column; gap: 24px; margin-top: 48px; max-width: 720px; }
.forwhom li {
  list-style: none;
  display: flex;
  gap: 16px;
  font-size: 16px;
  color: var(--mist);
  line-height: 1.7;
}
.forwhom li svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--lime); margin-top: 6px; }

/* legal box */
.legal-box {
  background: var(--charcoal);
  border-left: 2px solid var(--lime);
  padding: 28px 32px;
  max-width: 760px;
  margin: 0 auto;
  font-size: 13px;
  font-style: italic;
  color: var(--mist);
  line-height: 1.8;
}
.legal-box-light {
  background: #FFFFFF;
  border-left: 2px solid var(--forest);
  color: var(--stone);
}

/* ── form ─────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }

.contact-info h2 { color: var(--ivory); margin-bottom: 20px; }
.contact-info .lead { color: var(--mist); margin-bottom: 36px; }
.contact-direct {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--hairline-dark);
}
.contact-direct .label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sub);
  margin-bottom: 8px;
  display: block;
}
.contact-direct a {
  display: block;
  font-size: 17px;
  color: var(--ivory);
  margin-bottom: 8px;
  transition: color 150ms ease;
}
.contact-direct a:hover { color: var(--lime); }

.form { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242,241,235,0.5);
}
.field input,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  padding: 12px 0;
  width: 100%;
  outline: none;
  transition: border-color 200ms ease;
  resize: vertical;
}
.field textarea { min-height: 120px; }
.field input:focus, .field textarea:focus { border-color: var(--lime); }

.form-note {
  font-size: 12px;
  font-style: italic;
  color: var(--sub);
  margin-top: 8px;
}

/* ── pont (cross-link box) ───────────────────────────── */
.pont {
  margin-top: 48px;
  padding: 24px 28px;
  border: 1px solid var(--hairline-dark);
  font-size: 14px;
  color: var(--mist);
  text-align: center;
  line-height: 1.7;
}

/* ── hero carousel ──────────────────────────────────── */
.hero-carousel {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  isolation: isolate;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 120px var(--pad-x) 22vh var(--pad-x);
  opacity: 0;
  transition: opacity 600ms ease;
  pointer-events: none;
}
@media (max-width: 880px) { .hero-slide { padding-bottom: 24vh; } }
@media (max-width: 640px) { .hero-slide { padding-bottom: 20vh; } }
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.hero-slide .hero-content { max-width: 820px; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  z-index: -2;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(11,12,10,0.85) 0%,
    rgba(11,12,10,0.65) 50%,
    rgba(11,12,10,0.40) 100%);
  z-index: -1;
}
.hero-carousel .lead,
.hero-internal .lead {
  color: rgba(242,241,235,0.85);
  font-size: 1.125rem;
}

/* image miroir horizontal — pour slides où le sujet doit passer à droite */
.hero-slide-bg.flip-x { transform: scaleX(-1); }
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 5;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(242,241,235,0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}
.hero-dot:hover { background: rgba(242,241,235,0.6); }
.hero-dot.active { background: var(--lime); transform: scale(1.25); }
.hero-dot:focus-visible { outline: 2px solid var(--lime); outline-offset: 4px; }

@media (max-width: 640px) {
  .hero-dots { bottom: 24px; gap: 10px; }
  .hero-dot { width: 12px; height: 12px; }
}

/* ── price-note (mention discrète sous le prix) ────── */
.price-note {
  font-style: italic;
  color: var(--forest);
  font-size: 0.95rem;
  margin: 0.5rem 0 1.5rem;
  line-height: 1.6;
  max-width: 560px;
}
.section-obsidian .price-note,
.hero .price-note,
.hero-internal .price-note {
  color: var(--lime);
  opacity: 0.85;
}

/* ── change-grid (homepage section 5 — 2 cols + finale full) ── */
.change-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 64px;
  margin-bottom: 48px;
}
@media (max-width: 880px) { .change-grid { grid-template-columns: 1fr; gap: 48px; } }
.benefit-number {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  color: var(--lime);
  margin-bottom: 0.5rem;
  line-height: 1;
}
.change-item h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ivory);
  margin-bottom: 10px;
}
.change-item p {
  color: var(--mist);
  font-size: 16px;
  line-height: 1.75;
}
.change-finale {
  border-top: 1px solid var(--hairline-dark);
  padding-top: 48px;
  margin-top: 16px;
}
.change-finale h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--lime);
  margin-bottom: 10px;
}
.change-finale p { color: var(--ivory); font-size: 17px; line-height: 1.75; }

/* ── deux-questions (border-left forest + body left) ── */
.dq-block {
  border-left: 3px solid var(--forest);
  padding-left: 2rem;
  margin-bottom: 4rem;
  text-align: left;
}
.dq-block h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: #1A1A14;
  margin-bottom: 16px;
  line-height: 1.3;
}
.dq-block p {
  color: var(--stone);
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 18px;
}
.dq-block p:last-child { margin-bottom: 0; }

/* ── credit-line (Analyse / Audit) ─────────────────── */
.credit-line {
  display: inline-block;
  background: rgba(111,168,50,0.08);
  border: 1px solid rgba(111,168,50,0.3);
  color: var(--lime);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  padding: 10px 16px;
  margin: 16px 0 24px;
  line-height: 1.6;
}
.section-ivory .credit-line {
  background: rgba(30,61,20,0.06);
  border-color: rgba(30,61,20,0.3);
  color: var(--forest);
}

/* ── fade-in ─────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
}
