/* Formaly-T — Refonte premium éditoriale · palette navy de la marque */
/* Typo comme architecture · serif + mono · lignes fines · grain · micro-interactions */

:root {
  --bg: #f7f6f2;
  --ink: #0f2040;
  --sub: #4d5b74;
  --line: rgba(15, 32, 64, 0.16);
  --line-soft: rgba(15, 32, 64, 0.09);
  --accent: #5b78b5;
  --accent-lt: #7a9fd4;
  --accent-soft: rgba(91, 120, 181, 0.10);
  --gold: #b8935a;
  --gold-lt: #d8bd85;
  --paper-dark: #0c1a35;
  --serif: 'Newsreader', Georgia, serif;
  --sans: 'Public Sans', Helvetica, Arial, sans-serif;
  --mono: 'Spline Sans Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; }
::selection { background: var(--accent); color: #fff; }

/* ── Grain (désactivable via Tweaks) ──────────────────────────── */
/* fond animé « aurora » (désactivable via Tweaks) */
.bg-aurora {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
body.no-aurora .bg-aurora { display: none; }

/* fond d'écran shader interactif (réagit au curseur / clic, choix via Tweaks) */
#fond-shader {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  display: block;
  pointer-events: none;
}
.bg-aurora .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  will-change: transform;
}
.bg-aurora .b1 {
  width: 62vw; height: 62vw;
  top: -20vw; right: -16vw;
  background: var(--accent);
  opacity: 0.30;
  animation: blob-drift-1 30s ease-in-out infinite alternate;
}
.bg-aurora .b2 {
  width: 50vw; height: 50vw;
  bottom: -18vw; left: -14vw;
  background: var(--accent-lt);
  opacity: 0.24;
  animation: blob-drift-2 38s ease-in-out infinite alternate;
}
.bg-aurora .b3 {
  width: 36vw; height: 36vw;
  top: 36%; left: 30%;
  background: var(--ink);
  opacity: 0.10;
  animation: blob-drift-3 46s ease-in-out infinite alternate;
}
.bg-aurora .b4 {
  width: 34vw; height: 34vw;
  top: 8%; left: -10vw;
  background: var(--accent);
  opacity: 0.18;
  animation: blob-drift-2 52s ease-in-out infinite alternate-reverse;
}
@keyframes blob-drift-1 {
  from { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-9vw, 7vh) scale(1.12); }
  to   { transform: translate(-4vw, 13vh) scale(0.94); }
}
@keyframes blob-drift-2 {
  from { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(10vw, -8vh) scale(1.16); }
  to   { transform: translate(3vw, -14vh) scale(0.92); }
}
@keyframes blob-drift-3 {
  from { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-7vw, -9vh) scale(1.2); }
  to   { transform: translate(8vw, 6vh) scale(0.9); }
}
@media (prefers-reduced-motion: reduce) {
  .bg-aurora .blob { animation: none; }
}

/* les sections encre passent au-dessus du fond animé */
.numbers, .testimonials, .footer { position: relative; }

body::after {
  content: "";
  position: fixed;
  inset: -50%;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)'/%3E%3C/svg%3E");
}
body.no-grain::after { display: none; }

.wrap { padding-left: 72px; padding-right: 72px; }

.mono-tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

/* ── Nav ──────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 72px;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, padding 0.35s ease;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 84%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-soft);
  padding-top: 12px;
  padding-bottom: 12px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-brand svg { width: 34px; height: 34px; }
.nav-brand .brand-logo { height: 54px; width: auto; display: block; }
.nav.scrolled .brand-logo { height: 46px; }
.nav-brand .name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.nav-brand .sub {
  display: block;
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sub);
  margin-top: 1px;
}
.nav-links {
  display: flex;
  gap: 34px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--sub);
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--ink);
  padding: 10px 20px;
  transition: background 0.25s ease, color 0.25s ease;
}
.nav-cta:hover { background: var(--ink); color: var(--bg); }

/* ── Nav au-dessus du hero vidéo : liens, marque et CTA clairs ── */
.nav.over-hero .nav-links a { color: rgba(247, 246, 242, 0.78); }
.nav.over-hero .nav-links a:hover { color: #fff; }
.nav.over-hero .nav-brand .name { color: #fff; }
.nav.over-hero .nav-brand .sub { color: rgba(247, 246, 242, 0.6); }
.nav.over-hero .nav-cta {
  color: #fff;
  border-color: rgba(247, 246, 242, 0.5);
}
.nav.over-hero .nav-cta:hover { background: #fff; color: var(--ink); border-color: #fff; }
.nav.over-hero.scrolled {
  background: rgba(9, 18, 42, 0.55);
  border-bottom-color: rgba(247, 246, 242, 0.1);
}

/* ── Menu mobile (hamburger) ───────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 101;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s ease, background 0.3s ease;
}
.nav.over-hero .nav-burger span { background: #fff; }
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-burger.is-open span { background: var(--ink) !important; }

.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.32s var(--ease), transform 0.32s var(--ease), visibility 0.32s;
}
.nav-mobile.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav-mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.nav-mobile-links a {
  font-family: var(--serif);
  font-size: clamp(30px, 9vw, 40px);
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  padding: 12px 18px;
  letter-spacing: -0.01em;
}
.nav-mobile-links a:active { color: var(--accent); }
.nav-mobile-cta {
  margin-top: 30px;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bg);
  background: var(--ink);
  text-decoration: none;
  padding: 16px 34px;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero { padding-top: 92px; padding-bottom: 64px; }
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.hero-eyebrow .rule { flex: 0 0 56px; height: 1px; background: var(--accent); }
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(58px, 6.6vw, 116px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 0;
  text-wrap: balance;
  max-width: 20ch;
}
.hero h1 .tw {
  font-style: italic;
  color: var(--accent);
  border-right: 2px solid var(--accent);
  padding-right: 6px;
  animation: blink 0.9s step-end infinite;
}
@keyframes blink {
  0%, 100% { border-color: var(--accent); }
  50% { border-color: transparent; }
}
@media (prefers-reduced-motion: reduce) {
  .hero h1 .tw { animation: none; }
}
.hero-foot {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
  margin-top: 60px;
}
.hero-sub {
  font-size: 18.5px;
  line-height: 1.65;
  color: var(--sub);
  max-width: 54ch;
  margin: 0;
}
.hero-actions {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: flex-end;
}
.btn-primary {
  display: inline-block;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 17px 34px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}
.btn-primary::before {
  content: "";
  position: absolute;
  left: var(--lx, 50%);
  top: var(--ly, 50%);
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border-radius: 50%;
  background: var(--accent);
  transform: scale(0);
  transition: transform 0.5s var(--ease);
}
.btn-primary:hover::before { transform: scale(25); }
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(120px circle at var(--hx, 50%) var(--hy, 50%), rgba(216,189,133,0.35), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary, .nav-cta, .dv-opt { will-change: transform; }
  inset: 0;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform 0.35s var(--ease);
}
.btn-primary:hover::before { transform: translateY(0); }
.btn-primary span { position: relative; z-index: 1; }
.btn-ghost {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 4px;
  white-space: nowrap;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); }
.hero-trust {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sub);
}
.hero-trust .sep { width: 40px; height: 1px; background: var(--line); }

/* ── Marquee ──────────────────────────────────────────────────── */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 16px 0;
  display: flex;
}
.marquee-track {
  display: flex;
  flex-shrink: 0;
  animation: marquee 38s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--serif);
  font-style: italic;
  font-size: 23px;
  white-space: nowrap;
  color: var(--sub);
  display: flex;
  align-items: center;
}
.marquee-item::after {
  content: "·";
  color: var(--gold);
  margin: 0 30px;
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ── Têtes de section ─────────────────────────────────────────── */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 32px;
  margin-bottom: 18px;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 3.4vw, 52px);
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.section-head h2 em { font-style: italic; color: var(--accent); }
.section-head .meta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sub);
  white-space: nowrap;
}

/* ── Services : liste éditoriale ──────────────────────────────── */
.services { padding-top: 96px; padding-bottom: 110px; }
.service-row {
  display: grid;
  grid-template-columns: 80px 1.1fr 1.3fr 56px;
  gap: 28px;
  align-items: start;
  padding: 36px 20px;
  margin: 0 -20px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.3s ease;
}
.service-row:first-of-type { border-top: 1px solid var(--line); }
.service-row .num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-top: 8px;
}
.service-row h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(25px, 2.1vw, 32px);
  letter-spacing: -0.015em;
  margin: 0;
  transition: transform 0.3s var(--ease);
}
.service-row .desc p {
  color: var(--sub);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0 0 16px;
  max-width: 52ch;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.service-tags span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sub);
}
.service-tags span::before { content: "— "; color: var(--accent); }
.service-row .arrow {
  font-family: var(--serif);
  font-size: 26px;
  justify-self: end;
  padding-top: 4px;
  transform: translateX(-10px);
  opacity: 0;
  transition: transform 0.3s var(--ease), opacity 0.3s ease;
}
.service-row:hover { background: var(--accent-soft); }
.service-row:hover h3 { transform: translateX(8px); font-style: italic; }
.service-row:hover .arrow { transform: translateX(0); opacity: 1; }

/* badges de rôle (qui fait quoi) */
.svc-title { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.role-badge {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  white-space: nowrap;
}
.role-badge.formaly {
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  background: var(--accent-soft);
}
.role-badge.partner {
  color: var(--sub);
  border: 1px dashed var(--line);
}
.perimeter-note {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--sub);
  max-width: 72ch;
  margin: 28px 0 0;
  padding-left: 20px;
  border-left: 1px solid var(--accent);
}

/* ── Offres ───────────────────────────────────────────────────── */
.offers { padding-top: 96px; padding-bottom: 110px; }
.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
}
.offer {
  border-top: 1px solid var(--ink);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.offer h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 27px;
  letter-spacing: -0.01em;
  margin: 14px 0 18px;
}
.offer .price {
  font-family: var(--serif);
  font-size: clamp(34px, 2.8vw, 44px);
  font-style: italic;
  letter-spacing: -0.02em;
  color: var(--gold);
  margin-bottom: 22px;
}
.offer .price .per {
  font-family: var(--mono);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sub);
  margin-left: 8px;
}
.offer ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.offer li {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--sub);
  padding: 10px 0;
  border-top: 1px solid var(--line-soft);
  display: flex;
  gap: 12px;
  align-items: baseline;
}
.offer li::before {
  content: "—";
  color: var(--accent);
  font-family: var(--mono);
  flex-shrink: 0;
}
.offer .btn-ghost { margin-top: auto; }

/* ── Chiffres clés : encre ────────────────────────────────────── */
/* ── Pour qui ── */
.audience { padding-top: 96px; padding-bottom: 20px; }
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
}
.audience-card { border-top: 1px solid var(--ink); padding-top: 22px; }
.audience-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.01em;
  margin: 14px 0 12px;
}
.audience-card p {
  color: var(--sub);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* ── Risques ── */
.risks { padding-top: 96px; padding-bottom: 110px; }
.risks-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: start;
  margin-top: 56px;
}
.risks-statement { position: sticky; top: 120px; }
.risks-statement p {
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.4;
  font-style: italic;
  color: var(--ink);
  margin: 0 0 32px;
  max-width: 22ch;
  text-wrap: balance;
}
.risk-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.risk-item .num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-top: 5px;
}
.risk-item h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.risk-item p {
  color: var(--sub);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
  max-width: 52ch;
}

/* ── FAQ ── */
.faq { padding-top: 96px; padding-bottom: 110px; }
.faq-list { margin-top: 56px; }
.faq details {
  border-top: 1px solid var(--line);
}
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 4px;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.7vw, 25px);
  letter-spacing: -0.01em;
  transition: color 0.25s ease;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); font-style: italic; }
.faq summary .plus {
  font-family: var(--mono);
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq details[open] summary { font-style: italic; color: var(--accent); }
.faq .answer {
  padding: 0 4px 28px;
  color: var(--sub);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 68ch;
}

.numbers {
  background: var(--ink);
  color: var(--bg);
  padding: 86px 72px;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.numbers-grid > div { padding: 8px 36px; }
.numbers-grid > div + div { border-left: 1px solid rgba(247, 246, 242, 0.18); }
.numbers-grid .val {
  font-family: var(--serif);
  font-size: clamp(48px, 4.6vw, 72px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}
.numbers-grid .val .suffix {
  font-style: italic;
  color: var(--gold-lt);
  font-size: 0.62em;
}
.numbers-grid p {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--bg) 55%, transparent);
  margin: 16px 0 0;
}

/* ── Approche ─────────────────────────────────────────────────── */
.approach { padding-top: 100px; padding-bottom: 110px; }
.approach-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 72px;
  align-items: start;
  margin-top: 56px;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.step .num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding-top: 6px;
}
.step h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
}
.step p {
  color: var(--sub);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  max-width: 50ch;
}
.why-panel {
  position: sticky;
  top: 110px;
  border: 1px solid var(--line);
  padding: 38px 36px;
}
.why-panel h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}
.why-panel > p {
  color: var(--sub);
  font-size: 14.5px;
  margin: 0 0 24px;
}
.why-list { list-style: none; margin: 0; padding: 0; }
.why-list li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  padding: 13px 0;
  border-top: 1px solid var(--line-soft);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink);
}
.why-list li::before {
  content: "—";
  color: var(--accent);
  font-family: var(--mono);
  flex-shrink: 0;
}
.why-panel .why-cta {
  display: inline-block;
  margin-top: 26px;
}

/* ── Témoignages ──────────────────────────────────────────────── */
.testimonials {
  background: var(--ink);
  color: var(--bg);
  padding: 100px 72px 110px;
}
.testimonials .section-head h2 { color: var(--bg); }
.testimonials .section-head h2 em { color: var(--accent-lt); }
.testimonials .section-head .meta { color: color-mix(in srgb, var(--bg) 55%, transparent); }
.tst-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-top: 56px;
}
.tst-card {
  border-top: 1px solid rgba(247, 246, 242, 0.25);
  padding-top: 26px;
  display: flex;
  flex-direction: column;
}
.tst-card blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  margin: 0 0 28px;
  flex: 1;
  color: color-mix(in srgb, var(--bg) 92%, transparent);
}
.tst-card .who {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--bg) 55%, transparent);
}
.tst-card .who b {
  display: block;
  color: var(--accent-lt);
  font-weight: 500;
  margin-bottom: 4px;
}

/* cartes engagements (rassurance factuelle) */
.tst-grid.eng-grid { grid-template-columns: repeat(4, 1fr); gap: 40px; }
.eng-card .eng-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--gold-lt);
  display: block;
  margin-bottom: 18px;
}
.eng-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 23px;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--bg);
}
.eng-card p {
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
  color: color-mix(in srgb, var(--bg) 62%, transparent);
}

/* ── Contact ──────────────────────────────────────────────────── */
.contact { padding-top: 100px; padding-bottom: 110px; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
  margin-top: 56px;
}
.ct-list { display: flex; flex-direction: column; }
.ct-line {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  align-items: baseline;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  transition: background 0.25s ease;
}
.ct-line:last-of-type { border-bottom: 1px solid var(--line); }
.ct-line .lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sub);
}
.ct-line b {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
a.ct-line:hover b { color: var(--accent); font-style: italic; }
.ct-note {
  margin-top: 28px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--sub);
  max-width: 40ch;
}

/* formulaire éditorial : champs soulignés */
.form-ed h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; }
.f-group { margin-bottom: 26px; }
.f-group label {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sub);
  margin-bottom: 8px;
}
.f-group input,
.f-group select,
.f-group textarea {
  width: 100%;
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 8px 0 10px;
  outline: none;
  border-radius: 0;
  transition: border-color 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
}
.f-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234d5b74' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  cursor: pointer;
}
.f-group textarea { resize: vertical; min-height: 90px; line-height: 1.5; }
.f-group input::placeholder,
.f-group textarea::placeholder { color: color-mix(in srgb, var(--sub) 55%, transparent); font-style: italic; }
.f-group input:focus,
.f-group select:focus,
.f-group textarea:focus { border-bottom-color: var(--accent); }
.f-ok {
  display: none;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.f-ok.show { display: block; }
.f-err {
  display: none;
  margin-top: 18px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: #c0603f;
}
.f-err a { color: #c0603f; text-decoration: underline; }
.f-err.show { display: block; }

/* ── CTA final ────────────────────────────────────────────────── */
.cta {
  text-align: center;
  padding: 120px 72px;
  border-top: 1px solid var(--line);
}
.cta h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(42px, 4.4vw, 68px);
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  text-wrap: balance;
}
.cta h2 em { font-style: italic; color: var(--accent); }
.cta p {
  color: var(--sub);
  font-size: 16.5px;
  margin: 0 0 40px;
}

/* ── Footer ───────────────────────────────────────────────────── */
.footer { background: var(--paper-dark); color: rgba(247, 246, 242, 0.6); }
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding: 56px 72px 28px;
}
.footer-brand { display: flex; align-items: flex-start; gap: 12px; max-width: 300px; }
.footer-brand svg { width: 30px; height: 30px; flex-shrink: 0; }
.footer-brand .footer-logo { height: 72px; width: auto; flex-shrink: 0; }
.footer-brand p {
  font-size: 13.5px;
  line-height: 1.65;
  margin: 6px 0 0;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 246, 242, 0.45);
  font-weight: 500;
  margin: 0 0 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(247, 246, 242, 0.8);
  text-decoration: none;
  font-size: 14.5px;
  transition: color 0.25s ease;
}
.footer-col a:hover { color: var(--accent-lt); }
.footer-col li { font-size: 14.5px; }
.footer-wordmark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(100px, 14.5vw, 250px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-align: center;
  padding: 30px 24px 0;
  white-space: nowrap;
  color: rgba(247, 246, 242, 0.92);
  user-select: none;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 22px 72px 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 246, 242, 0.35);
}
.footer-bottom a { color: rgba(247, 246, 242, 0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--accent-lt); }

/* ── Révélation au scroll ─────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  }
  .reveal.in { opacity: 1; transform: none; }
  .reveal-d1 { transition-delay: 0.1s; }
  .reveal-d2 { transition-delay: 0.2s; }
  .reveal-d3 { transition-delay: 0.3s; }
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .wrap, .nav, .numbers, .testimonials, .cta { padding-left: 40px; padding-right: 40px; }
  .footer-top, .footer-bottom { padding-left: 40px; padding-right: 40px; }
  .hero-foot { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions { justify-content: flex-start; }
  .approach-grid { grid-template-columns: 1fr; gap: 48px; }
  .offers-grid { grid-template-columns: 1fr; gap: 36px; }
  .audience-grid { grid-template-columns: 1fr; gap: 36px; }
  .risks-grid { grid-template-columns: 1fr; gap: 40px; }
  .risks-statement { position: static; }
  .why-panel { position: static; }
  .tst-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .numbers-grid { grid-template-columns: 1fr 1fr; gap: 32px 0; }
  .numbers-grid > div:nth-child(3) { border-left: none; }
  .service-row { grid-template-columns: 56px 1fr; }
  .service-row .desc { grid-column: 2; }
  .service-row .arrow { display: none; }
}
@media (max-width: 640px) {
  .wrap, .nav, .numbers, .testimonials, .cta { padding-left: 22px; padding-right: 22px; }
  .footer-top { flex-direction: column; padding: 44px 22px 20px; }
  .footer-bottom { padding-left: 22px; padding-right: 22px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: flex; }
  .f-row { grid-template-columns: 1fr; }
  .numbers { padding-top: 60px; padding-bottom: 60px; }
  .numbers-grid { grid-template-columns: 1fr; }
  .numbers-grid > div { border-left: none !important; padding: 16px 0; }
}
