/* ============================================================
   Dorian Bouchet — v2.css
   « Le fil rouge » : papier, encre, surligneur.
   MOBILE-FIRST. Anime avec GSAP (site-v2.js).
   ============================================================ */

:root {
  --paper: #f5f0e4;
  --paper-2: #ede7d7;
  --ink: #1b1812;
  --ink-soft: #56503f;
  --hl: #d6f0ff;            /* surligneur */
  --rouge: #c5371d;         /* fil rouge */
  --rouge-deep: #8a2a14;
  /* mapping pour captures.css */
  --g1: #8a2a14;
  --g2: #c5371d;
  --g3: #d98b16;
  --blue-deep: #1f3a5f;
  --line: #d9d2bd;
  --bg2: #ede7d7;            /* utilisé par captures.css */
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'Instrument Sans', 'Helvetica Neue', sans-serif;
  --mono: ui-monospace, 'SF Mono', Menlo, monospace;
  --pad: 22px;
  --max: 1100px;
  --header-h: 58px;
  --ink-muted: #56503f;     /* alias captures.css */
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--hl); color: var(--ink); }
img { max-width: 100%; display: block; }
a { color: inherit; }

body[data-motion="reduit"] *,
body[data-motion="reduit"] *::before,
body[data-motion="reduit"] *::after {
  animation-duration: 0.001s !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001s !important;
}

/* ---------- grain ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 90; pointer-events: none;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  opacity: 0.05;
  animation: grain-shift 0.9s steps(2) infinite;
}
@keyframes grain-shift {
  0% { transform: translate(0,0); } 25% { transform: translate(-1.5%,1%); }
  50% { transform: translate(1%, -1.5%); } 75% { transform: translate(-1%, -0.5%); }
  100% { transform: translate(0,0); }
}

/* ---------- intro overlay ---------- */
.intro {
  position: fixed; inset: 0; z-index: 300;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 14px;
}
.intro .intro-name {
  font-family: var(--serif); font-size: clamp(34px, 9vw, 64px);
  color: var(--paper); letter-spacing: 0.01em; line-height: 1.1;
  display: flex; gap: 0.32em;
}
.intro .intro-name em { font-style: normal; color: inherit; }
.intro .intro-name span { display: inline-block; }
.intro .intro-line {
  width: 0px; height: 3px; background: var(--rouge); border-radius: 2px;
}
body.no-intro .intro { display: none; }
/* filet de sécurité : si JS/GSAP ne tourne pas, l'intro s'efface seule */
.intro { animation: intro-failsafe 0.5s 4s forwards; }
@keyframes intro-failsafe { to { opacity: 0; visibility: hidden; pointer-events: none; } }

/* ---------- fil rouge (SVG plein-page, dessiné au scroll) ---------- */
.fil-rouge {
  position: absolute; top: 0; left: 0;
  width: 100%; pointer-events: none; z-index: 40;
  overflow: visible;
}
.fil-rouge path {
  fill: none; stroke: var(--rouge); stroke-width: 2.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.fil-rouge circle { fill: var(--rouge); }
body[data-fil="off"] .fil-rouge { display: none; }

/* ---------- surligneur ---------- */
.hl {
  background-image: linear-gradient(to right, color-mix(in srgb, var(--hl) 88%, transparent), color-mix(in srgb, var(--hl) 88%, transparent));
  background-repeat: no-repeat;
  background-size: 0% 78%;
  background-position: 0 62%;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
  padding: 0 0.08em; margin: 0 -0.08em;
  border-radius: 2px;
}
/* griffonnages SVG (soulignés / cercles) */
.scribble { position: relative; white-space: nowrap; }
.scribble svg {
  position: absolute; overflow: visible; pointer-events: none;
}
.scribble svg path {
  fill: none; stroke: var(--rouge); stroke-linecap: round;
}
.scribble-under svg { left: -2%; bottom: -0.14em; width: 104%; height: 0.32em; }
.scribble-under svg path { stroke-width: 7; }
.scribble-circle svg { left: -9%; top: -16%; width: 118%; height: 132%; }
.scribble-circle svg path { stroke-width: 5; }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--pad);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.logo {
  font-family: var(--serif); font-size: 18px; text-decoration: none; line-height: 1;
  color: var(--ink);
}
.logo em { font-style: normal; color: inherit; }

/* Point de marque — gros point coloré après le nom */
.brand-dot {
  color: var(--rouge);
  font-size: 1.55em;
  line-height: 0;
  font-style: normal;
  font-family: var(--serif);
  display: inline-block;
  translate: 0.02em -0.02em;
}
.intro .brand-dot { color: var(--hl); font-size: 1.4em; }
.avail-pill {
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 13px; border-radius: 99px;
  border: 1.5px solid var(--ink); text-decoration: none;
  background: var(--paper);
}
.avail-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: #2e9e5b; position: relative; flex: none; }
.avail-pill .dot::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 1.5px solid #2e9e5b; animation: pulse-ring 2.2s ease-out infinite;
}
@keyframes pulse-ring { 0% { transform: scale(0.45); opacity: 0.9; } 80%, 100% { transform: scale(1.4); opacity: 0; } }

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); position: relative; z-index: 2; }
section { position: relative; }

.eyebrow-v2 {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rouge);
  display: flex; align-items: center; gap: 10px;
}
.eyebrow-v2 .stop {
  width: 13px; height: 13px; border-radius: 50%;
  border: 2.5px solid var(--rouge); flex: none;
  transform: scale(0);
  background: var(--paper);
}
.eyebrow-v2 .stop.lit { background: var(--rouge); }

/* ============ HERO ============ */
.hero-v2 {
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: calc(var(--header-h) + 30px) 0 92px;
  overflow: hidden;
}
.hero-bgword {
  position: absolute; top: 9%; left: 0; right: 0; z-index: 0;
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(120px, 34vw, 360px); line-height: 0.85;
  letter-spacing: -0.04em; color: transparent;
  -webkit-text-stroke: 1.5px color-mix(in srgb, var(--ink) 14%, transparent);
  white-space: nowrap; pointer-events: none; user-select: none;
}
.hero-bgword span { display: block; padding-left: 4vw; }
.hero-bgword span + span { padding-left: 18vw; }

.hero-copy { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 24px; align-items: flex-start; }
.hero-kicker {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-soft);
}
h1.hero-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(46px, 13vw, 110px);
  line-height: 1.0; letter-spacing: -0.012em; text-wrap: balance;
}
h1.hero-title em { font-style: italic; }
h1 .line { display: block; overflow: hidden; }
h1 .line > span { display: block; transform: translateY(110%); }
body.no-intro h1 .line > span { transform: none; }

/* .hero-lede — version simplifiée */
.hero-lede {
  display: flex; flex-direction: column; gap: 12px;
  max-width: 36ch;
}
.lede-statement {
  font-family: var(--serif); font-size: clamp(18px, 4.8vw, 24px);
  line-height: 1.52; color: var(--ink); text-wrap: pretty;
}
.lede-creds {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-soft);
}
.hero-ctas { display: flex; flex-direction: column; gap: 12px; width: 100%; margin-top: 6px; }

/* boutons */
.btn-v2 {
  font-family: var(--sans); font-weight: 600; font-size: 16px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 15px 26px;
  border-radius: 14px; text-decoration: none; cursor: pointer; border: none;
  position: relative; overflow: hidden;
  transition: transform 0.2s ease;
}
.btn-v2:active { transform: scale(0.97); }
.btn-fill { background: var(--ink); color: var(--paper); box-shadow: 4px 4px 0 var(--rouge); }
.btn-fill::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,0.22) 50%, transparent 65%);
  transform: translateX(-130%); pointer-events: none;
  animation: btn-shine 4.5s ease infinite;
}
@keyframes btn-shine { 0%, 62% { transform: translateX(-130%); } 80%, 100% { transform: translateX(130%); } }
.btn-line { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--ink); }
.btn-block { width: 100%; }

/* fragments flottants — multi-couches parallaxe */
.hero-scraps { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
/* Scraps : cachés sur mobile (trop encombrant) — desktop seulement */
.scrap-v2 { display: none; }
/* Scraps : position mobile — coin supérieur droit, au-dessus du texte */
.scrap-postit {
  top: 5%; right: 3%; width: 118px;
  background: #fff8b8; border-radius: 3px;
  font-family: var(--serif); font-style: italic; font-size: 12px;
  rotate: 4deg; color: #4a4527;
  box-shadow: 0 12px 24px -12px rgba(27,24,18,0.4);
}
.scrap-err {
  top: 17%; right: 3%;
  background: #fff; border: 1px solid var(--line);
  font-family: var(--mono); font-size: 10px; color: var(--rouge);
  rotate: -5deg;
}
.scrap-ok {
  top: 28%; right: 4%;
  background: var(--ink); color: var(--paper);
  rotate: 2deg; display: flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 12px; padding: 8px 11px;
}
.scrap-ok i {
  width: 16px; height: 16px; border-radius: 50%; background: #2e9e5b;
  display: inline-flex; align-items: center; justify-content: center;
  font-style: normal; font-size: 10px; color: #fff; flex: none;
}

/* indice de scroll */
.scroll-cue {
  position: absolute; bottom: 26px; left: var(--pad); z-index: 2;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-soft);
}
.scroll-cue .tick { width: 38px; height: 2px; background: var(--rouge); overflow: hidden; position: relative; }
.scroll-cue .tick::after {
  content: ""; position: absolute; inset: 0; background: var(--paper-2);
  animation: cue-sweep 1.6s ease-in-out infinite;
}
@keyframes cue-sweep { 0% { transform: translateX(-100%); } 60%, 100% { transform: translateX(100%); } }

/* ============ MARQUEE ============ */
.marquee {
  background: var(--ink); color: var(--paper);
  padding: 13px 0; overflow: hidden;
  rotate: -1.6deg; scale: 1.04; margin: 8px 0;
  position: relative; z-index: 3;
}
.marquee-inner {
  display: flex; gap: 0; white-space: nowrap; width: max-content;
  animation: marquee-roll 26s linear infinite;
}
.marquee-chunk {
  display: flex; align-items: center; gap: 26px; padding-right: 26px;
  font-family: var(--sans); font-weight: 500; font-size: 15px; letter-spacing: 0.02em;
}
.marquee-chunk em { font-family: var(--serif); font-style: italic; color: var(--hl); font-size: 17px; }
.marquee-chunk .sep { width: 7px; height: 7px; border-radius: 50%; background: var(--rouge); flex: none; }
@keyframes marquee-roll { to { transform: translateX(-50%); } }

/* ============ 01 CONSTAT ============ */
.constat-v2 { padding: 56px 0; background: var(--paper); }
.constat-v2 .wrap { display: flex; flex-direction: column; gap: 30px; }
.constat-quote {
  font-size: clamp(24px, 6.6vw, 44px); line-height: 1.38;
  font-weight: 400; text-wrap: pretty; max-width: 820px;
}
.constat-quote .w { opacity: 0.16; }
.constat-quote .hl { font-style: italic; }

/* ============ 02 CAS ============ */
.cas-v2 { padding: 56px 0 48px; background: var(--paper-2); border-top: 1.5px solid var(--line); border-bottom: 1.5px solid var(--line); overflow: hidden; }
.section-head-v2 { display: flex; flex-direction: column; gap: 16px; max-width: 720px; margin-bottom: 40px; }
.section-head-v2 h2 {
  font-size: clamp(34px, 9vw, 64px); font-weight: 400;
  line-height: 1.08; letter-spacing: -0.01em; text-wrap: balance;
}
.section-head-v2 h2 em { font-style: italic; }

.cases-v2 { display: flex; flex-direction: column; gap: 52px; }
.case-v2 { position: relative; display: flex; flex-direction: column; gap: 20px; }
.case-num {
  position: absolute; top: -36px; right: -4px; z-index: 0;
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(80px, 24vw, 220px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px color-mix(in srgb, var(--rouge) 30%, transparent);
  pointer-events: none; user-select: none; overflow: hidden;
  max-width: 50%;
}
.case-text-v2 { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 10px; }
.case-kicker-v2 {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--rouge);
}
.case-text-v2 h3 { font-size: clamp(26px, 7vw, 40px); font-weight: 400; line-height: 1.12; }
.case-text-v2 p { font-family: var(--sans); font-size: 16px; color: var(--ink-soft); line-height: 1.6; text-wrap: pretty; max-width: 46ch; }
.case-visual { z-index: 1; }
.case-visual .shot { rotate: -1.2deg; }
.case-v2:nth-child(even) .case-visual .shot { rotate: 1.2deg; }

.cases-close-v2 {
  margin: 48px auto 0; text-align: center;
  font-size: clamp(19px, 5.2vw, 30px); max-width: 660px; text-wrap: balance; line-height: 1.4;
}

/* ============ 03 PREUVE (encre) ============ */
.preuve-v2 { background: var(--ink); color: var(--paper); padding: 60px 0; }
.preuve-v2 .eyebrow-v2 { color: var(--hl); }
.preuve-v2 .eyebrow-v2 .stop { border-color: var(--hl); background: var(--ink); }
.preuve-v2 .eyebrow-v2 .stop.lit { background: var(--hl); }
.preuve-v2 h2 { color: var(--paper); }
.preuve-v2 .hl { color: var(--ink); }

.temoignages-v2 {
  display: grid; grid-auto-flow: column; grid-auto-columns: 84%;
  gap: 14px; margin: 50px calc(var(--pad) * -1) 0;
  padding: 0 var(--pad) 8px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.temoignages-v2::-webkit-scrollbar { display: none; }
.temoignage-v2 {
  scroll-snap-align: center;
  border: 1px solid rgba(245,240,228,0.16); border-radius: 4px;
  padding: 28px 22px; display: flex; flex-direction: column; gap: 16px;
  background: rgba(245,240,228,0.03);
}
.temoignage-v2 .mark { font-family: var(--serif); font-size: 54px; line-height: 0.6; color: var(--rouge); }
.temoignage-v2 p { font-style: italic; font-size: 18px; line-height: 1.55; color: rgba(245,240,228,0.85); }
.temoignage-v2 .who { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; color: rgba(245,240,228,0.45); margin-top: auto; }
.placeholder-tag-v2 {
  font-family: var(--mono); font-size: 10.5px; color: var(--hl);
  border: 1px dashed color-mix(in srgb, var(--hl) 55%, transparent);
  border-radius: 4px; padding: 3px 9px; align-self: flex-start; letter-spacing: 0.05em;
}
.swipe-hint-v2 {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(245,240,228,0.4); margin-top: 18px;
}
.swipe-hint-v2 .arr { animation: nudge 1.8s ease-in-out infinite; }
@keyframes nudge { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(6px); } }

.chiffres-v2 { display: grid; grid-template-columns: 1fr; margin-top: 48px; }
.chiffre-v2 { border-top: 1px solid rgba(245,240,228,0.16); padding: 24px 0; display: flex; flex-direction: column; gap: 8px; }
.chiffre-v2 .num { font-size: clamp(44px, 12vw, 64px); line-height: 1; color: var(--hl); }
.chiffre-v2 .label { font-family: var(--sans); font-size: 13.5px; color: rgba(245,240,228,0.55); }

/* ============ 04 POUR VOUS ============ */
.pourvous-v2 { padding: 60px 0; }
.pourvous-v2 .wrap { display: flex; flex-direction: column; gap: 26px; max-width: 800px; }
.pourvous-v2 p { font-size: clamp(17px, 4.8vw, 27px); line-height: 1.55; text-wrap: pretty; }
.pourvous-v2 p + p { color: var(--ink-soft); }

/* ============ 05 QUI ============ */
.qui-v2 { padding: 60px 0 72px; background: var(--paper-2); border-top: 1.5px solid var(--line); overflow: hidden; }
.qui-grid-v2 { display: flex; flex-direction: column; gap: 36px; }
.qui-photo-v2 {
  position: relative; max-width: 380px;
  rotate: -1.6deg;
}
.qui-photo-v2 .ph-frame {
  background: #fff; padding: 12px 12px 46px;
  box-shadow: 0 28px 56px -28px rgba(27,24,18,0.45);
  position: relative;
}
.qui-photo-v2 .ph-clip { overflow: hidden; }
.qui-photo-v2 img { width: 100%; height: auto; transform: scale(1.12); }
.qui-photo-v2 .ph-cap {
  position: absolute; bottom: 12px; left: 0; right: 0; text-align: center;
  font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--ink-soft);
}
.qui-photo-v2 .tape {
  position: absolute; top: -12px; left: 50%; translate: -50% 0; rotate: -3deg;
  width: 92px; height: 26px; background: color-mix(in srgb, var(--hl) 55%, transparent);
  box-shadow: 0 2px 4px rgba(27,24,18,0.08);
}
.qui-text-v2 { display: flex; flex-direction: column; gap: 18px; }
.qui-text-v2 h2 { font-size: clamp(31px, 8.4vw, 56px); font-weight: 400; line-height: 1.1; text-wrap: balance; }
.qui-text-v2 h2 em { font-style: italic; }
.qui-text-v2 p { font-family: var(--sans); font-size: 16.5px; color: var(--ink-soft); line-height: 1.62; text-wrap: pretty; }
.qui-text-v2 p strong { font-weight: 600; color: var(--ink); }

/* ============ CONTACT ============ */
.contact-v2 { padding: 72px 0 80px; overflow: hidden; text-align: center; }
.contact-inner-v2 { display: flex; flex-direction: column; gap: 24px; align-items: center; max-width: 700px; margin: 0 auto; }
.contact-v2 h2 {
  font-size: clamp(38px, 10.5vw, 80px); font-weight: 400;
  line-height: 1.08; letter-spacing: -0.01em; text-wrap: balance;
}
.contact-v2 h2 em { font-style: italic; }
.contact-v2 .lede-v2 { font-family: var(--sans); font-size: clamp(16px, 4.4vw, 20px); color: var(--ink-soft); line-height: 1.6; text-wrap: pretty; max-width: 50ch; }
.contact-v2 .btn-v2 { width: 100%; max-width: 380px; }
.contact-note { font-family: var(--mono); font-size: 11px; color: var(--g3); letter-spacing: 0.05em; }

/* ============ FOOTER ============ */
.footer-v2 { border-top: 1.5px solid var(--line); padding: 28px 0 calc(88px + env(safe-area-inset-bottom)); }
.footer-grid-v2 { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.footer-grid-v2 .name { font-size: 18px; }
.footer-grid-v2 .name em { font-style: normal; color: inherit; }
.footer-ph-v2 { font-family: var(--mono); font-size: 11.5px; color: var(--g3); letter-spacing: 0.04em; }
.footer-grid-v2 .legal { font-family: var(--sans); font-size: 13px; color: var(--ink-soft); }

/* ============ CTA mobile collant ============ */
.mobile-cta-v2 {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  padding: 12px var(--pad) calc(12px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-top: 1.5px solid var(--line);
  transform: translateY(120%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-cta-v2.show { transform: translateY(0); }
.mobile-cta-v2 .btn-v2 { width: 100%; }

/* ======= RICHESSE TYPOGRAPHIQUE ======= */

/* CTA header (desktop seulement — mobile a la barre du bas) */
.header-cta { display: none; }

/* ======= BANDE 2bis ======= */
.bande-v2 { padding: 64px 0; border-top: 1.5px solid var(--line); background: var(--paper); }
.bande-txt {
  font-family: var(--serif); font-size: clamp(23px, 6.4vw, 46px);
  line-height: 1.34; text-wrap: pretty; max-width: 880px;
}
.bande-rest { color: var(--ink-soft); font-style: italic; }

/* ======= Intro sous les titres de section ======= */
.section-intro {
  font-family: var(--sans); font-size: 15.5px; color: var(--ink-soft);
  line-height: 1.62; max-width: 56ch; text-wrap: pretty;
}
.preuve-v2 .section-intro { color: rgba(245,240,228,0.6); }

/* flèche avant → après */
.case-text-v2 p .arr-r { color: var(--rouge); font-weight: 600; }

/* ======= FAQ ======= */
.faq-v2 { padding: 60px 0; background: var(--paper); }
.faq-list { display: flex; flex-direction: column; border-top: 1.5px solid var(--line); }
.faq-item { border-bottom: 1.5px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 0; min-height: 44px;
  font-family: var(--serif); font-size: clamp(18px, 5vw, 23px); line-height: 1.3;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-ic { position: relative; width: 22px; height: 22px; flex: none; }
.faq-ic::before, .faq-ic::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  translate: -50% -50%; background: var(--rouge); border-radius: 2px;
  transition: rotate 0.3s ease, opacity 0.3s ease;
}
.faq-ic::before { width: 14px; height: 2.5px; }
.faq-ic::after { width: 2.5px; height: 14px; }
.faq-item[open] .faq-ic::after { rotate: 90deg; opacity: 0; }
.faq-item p {
  font-family: var(--sans); font-size: 15.5px; color: var(--ink-soft);
  line-height: 1.6; padding: 0 0 20px; max-width: 60ch; text-wrap: pretty;
}
.faq-note {
  font-family: var(--mono); font-size: 10.5px; color: var(--g3);
  border: 1px dashed color-mix(in srgb, var(--g3) 45%, transparent);
  border-radius: 4px; padding: 3px 9px; display: inline-block;
  margin-bottom: 18px; letter-spacing: 0.04em;
}

/* Premier mot en dégradé */
.grad-word {
  background: linear-gradient(90deg, var(--rouge) 0%, color-mix(in srgb, var(--rouge) 48%, var(--g3)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  font-family: var(--sans);
}

/* Anciens styles lede multi-lignes supprimés */

/* Gros texte dans les sections corps */
.text-xl {
  font-size: clamp(20px, 5.5vw, 28px); font-weight: 400;
  line-height: 1.4; color: var(--ink);
}
.text-muted { color: var(--ink-soft); }
.text-italic { font-style: italic; }
.text-strong { font-weight: 600; font-family: var(--sans); }

/* Variation de taille inline */
.sz-sm { font-size: 0.8em; }
.sz-lg { font-size: 1.25em; }

/* Séparateur de section fin */
.section-rule {
  width: 40px; height: 2px;
  background: linear-gradient(90deg, var(--rouge), transparent);
  margin-bottom: 20px;
}
[data-rv] { opacity: 0; }
body.no-js [data-rv], body.no-intro [data-rv] { opacity: 1; }
body.no-intro .hl { background-size: 100% 78%; }
body.no-intro .eyebrow-v2 .stop { transform: scale(1); }
body.no-intro .scrap-v2, body.no-intro .constat-quote .w { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  [data-rv] { opacity: 1 !important; transform: none !important; }
  h1 .line > span { transform: none; }
  .intro { display: none; }
  .marquee-inner { animation: none; }
}

/* ============================================================
   ≥ 700px — tablette
   ============================================================ */
@media (min-width: 700px) {
  :root { --pad: 40px; }
  .hero-ctas { flex-direction: row; width: auto; }
  .hero-ctas .btn-v2 { width: auto; }
  .case-v2 { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 52px; align-items: center; }
  .case-v2:nth-child(even) .case-text-v2 { order: 2; }
  .case-v2:nth-child(even) .case-visual { order: 1; }
  .case-num { top: -70px; }
  .temoignages-v2 {
    grid-auto-flow: initial; grid-template-columns: repeat(3, 1fr); grid-auto-columns: initial;
    overflow: visible; margin-left: 0; margin-right: 0; padding: 0; gap: 20px;
  }
  .swipe-hint-v2 { display: none; }
  .chiffres-v2 { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .qui-grid-v2 { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 64px; align-items: center; }
  .footer-v2 { padding-bottom: 32px; }
  .footer-grid-v2 { flex-direction: row; align-items: baseline; gap: 28px; flex-wrap: wrap; }
}

/* ============================================================
   ≥ 1000px — desktop
   ============================================================ */
@media (min-width: 1000px) {
  :root { --header-h: 70px; }
  .hero-v2 { padding-bottom: 110px; }
  .hero-lede { max-width: 42ch; }
  .scrap-v2 {
    display: block; position: absolute;
    font-family: var(--sans); font-size: 12px; line-height: 1.45;
    border-radius: 10px; padding: 12px 14px;
    box-shadow: 0 14px 30px -14px rgba(27,24,18,0.35);
    opacity: 0;
  }
  .scrap-postit { right: 12%; top: 16%; width: 170px; font-size: 16px; }
  .scrap-err { right: 30%; top: 38%; font-size: 13px; }
  .scrap-ok { right: 10%; top: 52%; font-size: 14px; }
  .marquee { rotate: -1deg; }
  .mobile-cta-v2 { display: none; }
  .contact-v2 .btn-v2 { width: auto; }
  /* Restore desktop section paddings */
  .constat-v2 { padding: 110px 0; }
  .bande-v2 { padding: 110px 0; }
  .faq-v2 { padding: 110px 0; }
  .header-cta { display: inline-flex; min-height: 42px; padding: 10px 18px; font-size: 14px; border-radius: 11px; box-shadow: 3px 3px 0 var(--rouge); }
  .cas-v2 { padding: 96px 0 80px; }
  .section-head-v2 { margin-bottom: 64px; }
  .cases-v2 { gap: 86px; }
  .cases-close-v2 { margin-top: 80px; }
  .preuve-v2 { padding: 100px 0; }
  .pourvous-v2 { padding: 110px 0; }
  .qui-v2 { padding: 96px 0 110px; }
  .contact-v2 { padding: 120px 0 130px; }
  .case-num { top: -54px; right: -8px; font-size: clamp(110px, 30vw, 220px); max-width: none; }
}
