/* MOV Studio — Brice — design system v.021 */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/cormorant.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+FEFF, U+FFFD;
}

:root {
  --bg: #FAF8F4;
  --bg-soft: #FFFFFF;
  --bg-deep: #F2EDE2;
  --text: #1F1B16;
  --bronze: #7A5F30;
  --bronze-soft: #9B7F4A;
  --green: #2C5F4F;
  --green-deep: #1E4538;
  --line: #E5DFD3;
  --line-soft: #ECE7DA;
  --muted: #6B6157;
  --max-width: 1180px;
  --max-narrow: 920px;
  --shadow-sm: 0 6px 18px rgba(31,27,22,.05);
  --shadow-md: 0 16px 36px rgba(31,27,22,.08);
  --shadow-lg: 0 28px 60px rgba(31,27,22,.12);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--text); text-decoration-color: var(--bronze); text-underline-offset: 3px; }
a:hover { color: var(--bronze); }

:focus-visible { outline: 2px solid var(--bronze); outline-offset: 3px; border-radius: 2px; }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.012em;
  margin: 0 0 .4em;
  color: var(--text);
}

p { margin: 0 0 1em; }

.wrap {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

/* ============================ Header ============================ */
.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(250, 248, 244, .92);
  backdrop-filter: saturate(1.4) blur(8px);
  -webkit-backdrop-filter: saturate(1.4) blur(8px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
}
.brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.brand .dot { color: var(--bronze); }
.nav { display: flex; align-items: center; gap: 26px; font-size: 14.5px; }
.nav a { text-decoration: none; color: var(--muted); }
.nav a:hover { color: var(--text); }
.nav a.cta {
  color: #3a2a18;
  border: 1px solid rgba(196, 148, 84, .55);
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 600;
  background:
    linear-gradient(180deg, rgba(255,250,240,.45) 0%, rgba(255,245,225,.18) 60%, rgba(180,140,90,.12) 100%),
    url('/css/textures/wood-light.jpg?v=1') center/cover no-repeat;
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 228, 0.85),
    inset 0 -1px 0 rgba(122, 95, 48, 0.10),
    0 1px 2px rgba(31, 27, 22, 0.04),
    0 4px 10px rgba(31, 27, 22, 0.06),
    0 14px 28px -10px rgba(122, 95, 48, 0.22),
    0 32px 60px -20px rgba(31, 27, 22, 0.28);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s ease;
}
.nav a.cta:hover {
  border-color: rgba(196, 148, 84, .75);
  transform: translateY(-2px);
  color: #2a1d0e;
  background:
    linear-gradient(180deg, rgba(255,250,240,.55) 0%, rgba(255,245,225,.22) 60%, rgba(180,140,90,.18) 100%),
    url('/css/textures/wood-light.jpg?v=1') center/cover no-repeat;
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 228, 0.95),
    inset 0 -1px 0 rgba(122, 95, 48, 0.14),
    0 2px 4px rgba(31, 27, 22, 0.06),
    0 6px 14px rgba(31, 27, 22, 0.08),
    0 18px 34px -10px rgba(122, 95, 48, 0.32),
    0 38px 70px -20px rgba(31, 27, 22, 0.34);
}

/* ============================ Hero ============================ */
.hero {
  padding: 88px 0 72px;
  background: linear-gradient(180deg, var(--bg) 0%, #F6F1E5 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: start;
}
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 22px;
  font-weight: 500;
}
.hero h1 {
  font-size: clamp(38px, 5.6vw, 64px);
  max-width: 16ch;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero .lede {
  font-size: 17.5px;
  max-width: 50ch;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.65;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* Hero visual stack */
.hero-visual { position: relative; }
.hero-stack {
  position: relative;
  border-radius: 14px;
  isolation: isolate;
}
.hv-desktop {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: #fff;
  aspect-ratio: 1280/820;
  object-fit: cover;
  object-position: top center;
  transform: rotate(-1.2deg);
}
.hv-mobile {
  position: absolute;
  right: -28px;
  bottom: -38px;
  width: 38%;
  border-radius: 14px;
  border: 6px solid #1F1B16;
  aspect-ratio: 9/16;
  object-fit: cover;
  object-position: top center;
  background: #fff;
  transform: rotate(4deg);
  box-shadow:
    0 0 0 1px rgba(196, 148, 84, 0.32),
    0 4px 8px rgba(15, 8, 2, 0.35),
    0 14px 28px -8px rgba(15, 8, 2, 0.5),
    0 30px 60px -18px rgba(15, 8, 2, 0.65),
    0 55px 100px -35px rgba(0, 0, 0, 0.8);
}
.hv-caption {
  margin: 38px 0 0;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

/* Hero trust strip */
.hv-trust {
  margin: 72px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 18px 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.72) 0%, rgba(255,255,255,.52) 100%);
  border: 1px solid rgba(196, 148, 84, 0.42);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 228, 0.85),
    inset 0 -1px 0 rgba(122, 95, 48, 0.10),
    0 1px 2px rgba(31, 27, 22, 0.04),
    0 4px 10px rgba(31, 27, 22, 0.06),
    0 14px 28px -10px rgba(122, 95, 48, 0.22),
    0 32px 60px -20px rgba(31, 27, 22, 0.28);
  transition:
    transform .4s cubic-bezier(.2,.7,.2,1),
    border-color .35s ease,
    box-shadow .45s ease,
    background .45s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Shine en diagonale qui balaye le cadre au survol */
.hv-trust::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(105deg,
    transparent 0%,
    rgba(255, 247, 228, 0) 30%,
    rgba(255, 247, 228, 0.55) 50%,
    rgba(255, 247, 228, 0) 70%,
    transparent 100%);
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity .25s ease;
}
.hv-trust:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 148, 84, 0.65);
  background:
    linear-gradient(180deg, rgba(255,255,255,.85) 0%, rgba(255,250,238,.65) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 228, 0.95),
    inset 0 -1px 0 rgba(122, 95, 48, 0.16),
    0 2px 4px rgba(31, 27, 22, 0.05),
    0 8px 16px rgba(31, 27, 22, 0.08),
    0 22px 40px -10px rgba(122, 95, 48, 0.32),
    0 44px 80px -20px rgba(31, 27, 22, 0.34);
}
.hv-trust:hover::after {
  opacity: 1;
  animation: hvTrustSweep 1.1s cubic-bezier(.2,.7,.2,1) forwards;
}
.hv-trust:hover .hv-trust-icon {
  background: rgba(196, 148, 84, 0.28);
  transform: scale(1.08) rotate(-4deg);
}
.hv-trust-icon {
  transition: background .35s ease, transform .4s cubic-bezier(.2,.7,.2,1);
}
@keyframes hvTrustSweep {
  0%   { left: -60%; opacity: 0; }
  25%  { opacity: 1; }
  100% { left: 130%; opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hv-trust, .hv-trust::after, .hv-trust-icon { transition: none; animation: none; }
  .hv-trust:hover { transform: none; }
}
.hv-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}
.hv-trust-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(196, 148, 84, 0.14);
  color: var(--bronze);
}
.hv-trust-label {
  font-size: 12.5px;
  line-height: 1.3;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.hv-trust-label strong {
  display: block;
  color: var(--ink);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0;
}
@media (max-width: 760px) {
  .hv-trust { grid-template-columns: 1fr; gap: 12px; padding: 14px 16px; }
}

/* ============================ Buttons ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--text);
  background: var(--text);
  color: var(--bg);
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .15s ease;
  min-height: 48px;
  letter-spacing: 0.005em;
}
.btn:hover { background: var(--bronze); border-color: var(--bronze); color: #fff; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { background: transparent; border-color: var(--bronze); color: var(--bronze); }
.btn-whatsapp {
  background: linear-gradient(180deg, #2EE571 0%, #25D366 55%, #1FBB5C 100%);
  color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 rgba(0, 40, 12, 0.18);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.32) inset,
    0 -1px 0 rgba(0, 40, 12, 0.18) inset,
    0 1px 2px rgba(20, 120, 60, 0.18),
    0 6px 14px -4px rgba(20, 120, 60, 0.35),
    0 14px 28px -10px rgba(20, 120, 60, 0.42);
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease;
}
.btn-whatsapp:hover {
  background: linear-gradient(180deg, #35EB78 0%, #28D86A 55%, #1FBB5C 100%);
  color: #fff;
  border-color: rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 -1px 0 rgba(0, 40, 12, 0.22) inset,
    0 2px 4px rgba(20, 120, 60, 0.22),
    0 10px 22px -6px rgba(20, 120, 60, 0.45),
    0 24px 44px -14px rgba(20, 120, 60, 0.55);
}

/* ============================ Sections — alternance fonds ============================ */
main > section {
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
main > section:nth-of-type(odd):not(.hero) { background: var(--bg-soft); }
main > section:nth-of-type(2n+3) { background: var(--bg-deep); }
section h2 {
  font-size: clamp(28px, 3.8vw, 42px);
  margin-bottom: 14px;
}
section .lead {
  font-size: 17px;
  color: var(--muted);
  max-width: 58ch;
  margin-bottom: 44px;
  line-height: 1.65;
}

/* ============================ Portfolio carrousel ============================ */
#portfolio .section-title,
#portfolio .section-subtitle { display: block; }
.section-title {
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.6vw, 38px);
  color: var(--text);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.section-subtitle {
  text-align: center;
  color: var(--bronze);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 22px;
}
#portfolio .lead { text-align: center; margin: 0 auto 28px; }

.carousel { position: relative; margin-top: 32px; }
.car-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 6px 6px 28px;
  -webkit-overflow-scrolling: touch;
}
.car-track::-webkit-scrollbar { display: none; }
.car-slide {
  flex: 0 0 calc((100% - 44px) / 3);
  scroll-snap-align: start;
  text-decoration: none;
  color: var(--text);
  display: block;
  position: relative;
}
.car-slide figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  height: 100%;
}
.car-slide:hover figure {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--bronze);
}
.car-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  background: var(--line);
}
.car-slide figcaption {
  padding: 20px 22px 24px;
}
.pf-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  margin-bottom: 8px;
}
.car-slide h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 23px;
  font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: .005em;
}
.car-slide p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
.car-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.car-nav:hover { background: var(--bronze); color: #fff; border-color: var(--bronze); transform: translateY(-50%) scale(1.05); }
.car-nav:disabled { opacity: .35; cursor: not-allowed; }
.car-prev { left: -22px; }
.car-next { right: -22px; }
.car-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.car-dots button {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, transform .2s ease;
}
.car-dots button.active { background: var(--bronze); transform: scale(1.3); }
.compare-note {
  margin: 32px auto 0;
  font-size: 14.5px;
  color: var(--muted);
  max-width: 64ch;
  text-align: center;
}

/* ============================ Before / After ============================ */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.compare figure { margin: 0; }
.compare figcaption {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}
.compare .tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.compare .tag.before { background: #EAE2D0; color: var(--muted); }
.compare .tag.after { background: var(--green); color: #fff; }
.compare img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  aspect-ratio: 1280/820;
  object-fit: cover;
  object-position: top center;
  box-shadow: var(--shadow-sm);
}

/* ============================ Process steps ============================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 12px;
}
.step {
  border-top: 1px solid var(--line);
  padding-top: 28px;
  position: relative;
}
.step .num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 38px;
  color: var(--bronze);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.step .step-ico {
  width: 22px;
  height: 22px;
  color: var(--bronze);
  margin-bottom: 14px;
  display: block;
}
.step h3 { font-size: 23px; margin-bottom: 12px; }
.step p { color: var(--muted); font-size: 15.5px; margin: 0; }

/* ============================ Checklist 2-col thématique ============================ */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-top: 12px;
}
.checklist-head {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px;
  color: var(--text);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  letter-spacing: -0.005em;
}
.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15.5px;
  line-height: 1.55;
}
.checklist li strong { color: var(--text); font-weight: 600; }
.checklist .ico {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--green);
}

/* ============================ Audience grid ============================ */
.audience {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 12px;
}
.audience div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 22px 14px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14.5px;
  color: var(--text);
  background: #fff;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.audience div:hover {
  border-color: var(--bronze);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  background: #FFFCF6;
}
.audience div:hover .aud-icon { color: var(--bronze); transform: scale(1.06); }
.aud-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--bronze-soft, #C49454);
  transition: color .2s ease, transform .2s ease;
}
.aud-icon svg { width: 100%; height: 100%; }
.aud-label { font-weight: 500; letter-spacing: 0.005em; }

/* ============================ Pricing ============================ */
.pricing-shell {
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 44px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
}
.pricing {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 42px;
  box-shadow: var(--shadow-md);
}
.pricing .label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 10px;
  font-weight: 500;
}
.pricing h3 {
  font-size: 26px;
  margin-bottom: 14px;
  line-height: 1.25;
}
.pricing > p { color: var(--muted); margin: 0 0 22px; font-size: 15px; }
.pricing-bullets {
  list-style: none;
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
}
.pricing-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
}
.pricing-bullets svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
}
.pricing-seal {
  aspect-ratio: 1;
  max-width: 220px;
  margin: 0 auto;
}

/* ============================ Contact ============================ */
#contact { background: var(--bg-deep); }
#contact .lead { max-width: 60ch; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.contact-card p { color: var(--muted); margin: 0 0 12px; }
.contact-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bronze), var(--bronze-soft));
  color: #fff;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  color: var(--text);
  margin: 0 0 2px;
  font-size: 16.5px;
}
.author-role {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  letter-spacing: 0.005em;
}
.contact-card .email-line {
  font-size: 15px;
  margin: 6px 0;
  color: var(--text);
}
.contact-card .email-line a { font-weight: 500; }

.contact-faq { margin-top: 24px; border-top: 1px solid var(--line); padding-top: 18px; }
.contact-faq details {
  border-bottom: 1px solid var(--line-soft);
  padding: 12px 0;
}
.contact-faq details:last-child { border-bottom: 0; }
.contact-faq summary {
  cursor: pointer;
  font-weight: 500;
  font-size: 15px;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 4px;
}
.contact-faq summary::-webkit-details-marker { display: none; }
.contact-faq summary::after {
  content: '+';
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  color: var(--bronze);
  line-height: 1;
  transition: transform .2s ease;
}
.contact-faq details[open] summary::after { content: '–'; }
.contact-faq details p {
  margin: 8px 0 4px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ============================ Form ============================ */
form { display: grid; gap: 18px; }
label {
  font-size: 13.5px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 6px;
  letter-spacing: 0.005em;
  color: var(--text);
}
input, textarea {
  font: inherit;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg-soft);
  color: var(--text);
  width: 100%;
  min-height: 48px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, textarea:focus {
  border-color: var(--bronze);
  outline: none;
  box-shadow: 0 0 0 3px rgba(139,111,63,.12);
}
form .btn { width: 100%; }
.form-foot {
  font-size: 12.5px;
  color: var(--muted);
  margin: -4px 0 0;
}

.form-feedback {
  margin-top: 10px;
  padding: 13px 16px;
  border-radius: 8px;
  font-size: 14px;
  display: none;
}
.form-feedback.ok {
  display: block;
  background: #ecf7ee;
  color: #1d6b34;
  border: 1px solid #b7e0c1;
}
.form-feedback.err {
  display: block;
  background: #fbecec;
  color: #8a2222;
  border: 1px solid #e4b9b9;
}
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; pointer-events: none; }

/* ============================ Price badge hero ============================ */
.price-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 9px 22px;
  margin: 4px 0 24px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FBF7EE 100%);
  border: 1px solid rgba(120, 80, 30, 0.18);
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 1px 2px rgba(120, 80, 30, 0.08),
    0 6px 14px -8px rgba(120, 80, 30, 0.18);
  color: var(--text);
  white-space: nowrap;
  width: max-content;
  max-width: 100%;
}
.price-badge .pb-price {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
}
.price-badge .pb-amount {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--bronze);
  letter-spacing: 0.5px;
  line-height: 1;
  transform: translateY(-2px);
}
.price-badge .pb-amount-label {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.price-badge .pb-divider {
  width: 1px;
  height: 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(120, 80, 30, 0.28) 50%, transparent 100%);
}
.price-badge .pb-feature {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}
.price-badge .pb-feature strong {
  color: var(--bronze);
  font-weight: 700;
}
.price-badge .pb-icon {
  color: var(--bronze);
  flex-shrink: 0;
}

/* ============================ Footer ============================ */
.site-footer {
  padding: 64px 0 32px;
  background: #1F1B16;
  color: #C9C0B0;
  font-size: 14.5px;
  border-top: 1px solid #2A2520;
}
.site-footer a { color: #C9C0B0; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 44px;
  border-bottom: 1px solid #2A2520;
}
.footer-col p, .footer-col a { display: block; margin: 0 0 10px; }
.ft-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 26px;
  color: #fff;
  margin-bottom: 12px;
}
.ft-brand .dot { color: var(--bronze-soft); }
.ft-tag {
  color: #C9C0B0;
  font-size: 14px;
  line-height: 1.6;
  max-width: 36ch;
  margin-bottom: 18px;
}
.ft-meta { font-size: 12.5px; color: #8C8377; line-height: 1.7; }
.ft-meta-lite { font-size: 12.5px; color: #8C8377; }
.ft-head {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: 12.5px;
  color: #8C8377;
}
.footer-bottom p { margin: 0; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-size: 12.5px; }

/* ============================ Legal pages ============================ */
.legal { padding: 64px 0 96px; }
.legal h1 { font-size: clamp(32px, 4.5vw, 46px); margin-bottom: 28px; }
.legal h2 { font-size: 22px; margin-top: 36px; margin-bottom: 12px; }
.legal p, .legal li { font-size: 16px; color: var(--text); }
.legal ul { padding-left: 22px; }
.legal a { color: var(--bronze); }

/* ============================ Reveal animations ============================ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s cubic-bezier(.2,.7,.3,1), transform .6s cubic-bezier(.2,.7,.3,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================ Responsive ============================ */
@media (max-width: 1100px) {
  .hero-wrap { gap: 36px; }
  .audience { grid-template-columns: repeat(3, 1fr); }
  .pricing-shell { grid-template-columns: 1fr; gap: 32px; }
  .pricing-seal { max-width: 180px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 980px) {
  .car-slide { flex: 0 0 calc((100% - 22px) / 2); }
  .car-prev { left: -8px; }
  .car-next { right: -8px; }
}

@media (max-width: 880px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { margin: 0 auto; max-width: 480px; width: 100%; }
  .hv-mobile { width: 32%; right: -16px; bottom: -24px; }
  .hero h1 { max-width: 18ch; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .wrap { padding: 0 22px; }
  .nav { gap: 12px; font-size: 13.5px; }
  .nav a:not(.cta) { display: none; }
  .nav a.cta { padding: 7px 14px; }
  .hero { padding: 56px 0 48px; }
  .hero h1 { font-size: 36px; }
  .hero .lede { font-size: 16.5px; }
  .hv-desktop { transform: rotate(-.8deg); }
  .hv-mobile { width: 36%; right: -8px; bottom: -20px; border-width: 4px; }
  main > section { padding: 56px 0; }
  section h2 { font-size: 28px; }
  .compare { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .step { border-top: 0; padding-top: 0; }
  .checklist-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-wrap { grid-template-columns: minmax(0, 1fr); gap: 32px; max-width: 100%; }
  .hero-text { max-width: 100%; min-width: 0; overflow-wrap: break-word; }
  .hero .lede { max-width: 100%; }
  .audience { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pricing { padding: 28px 24px; }
  .pricing h3 { font-size: 22px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-card { padding: 26px 22px; }
  .btn { width: 100%; }
  .cta-row { flex-direction: column; align-items: stretch; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

@media (max-width: 520px) {
  .price-badge { padding: 10px 16px; gap: 8px 12px; white-space: normal; flex-wrap: wrap; row-gap: 8px; width: 100%; max-width: 100%; box-sizing: border-box; justify-content: flex-start; }
  .price-badge .pb-price { width: 100%; }
  .price-badge .pb-feature { width: 100%; }
  .price-badge .pb-amount { font-size: 1.3rem; }
  .price-badge .pb-divider { display: none; }
  .price-badge .pb-feature { font-size: 0.85rem; }
  .car-slide { flex: 0 0 calc(100% - 22px); }
  .car-prev, .car-next { display: none; }
}

/* === Accessibility polish (cold audit 2026-05-15) === */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  background: #1F1B16;
  color: #FAF8F4;
  padding: 12px 18px;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  font-weight: 500;
  font-size: .95rem;
}
.skip-link:focus { left: 0; outline: 2px solid var(--bronze, #8B6F3F); outline-offset: 2px; }
:focus-visible { outline: 2px solid var(--bronze, #8B6F3F); outline-offset: 3px; border-radius: 4px; }
summary:focus-visible { outline-offset: 4px; }
button:focus-visible, .cta:focus-visible, .btn:focus-visible { outline-offset: 4px; }
main:focus { outline: none; }

/* Hide eyebrow on small screens — avoid awkward 2-line wrap */
@media (max-width: 520px) {
  .eyebrow { display: none; }
}

/* ============ Hero scarcity badge (expert audit 2026-05-15) ============ */
.hero-scarcity {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 28px;
  padding: 10px 18px;
  background:
    linear-gradient(180deg, rgba(255,247,228,.55) 0%, rgba(255,247,228,.25) 100%),
    rgba(122, 95, 48, 0.06);
  border: 1px solid rgba(196, 148, 84, 0.42);
  border-radius: 999px;
  font-size: .92rem;
  color: var(--text);
  font-feature-settings: 'ss01';
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 228, 0.85),
    inset 0 -1px 0 rgba(122, 95, 48, 0.10),
    0 1px 2px rgba(31, 27, 22, 0.04),
    0 4px 10px rgba(31, 27, 22, 0.06),
    0 14px 28px -10px rgba(122, 95, 48, 0.22),
    0 32px 60px -20px rgba(31, 27, 22, 0.28);
}
.hero-scarcity strong { color: var(--bronze); font-weight: 600; }
.hero-scarcity .dot-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #2BAA5C; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(43, 170, 92, .6);
  animation: pulseDot 2.2s ease-out infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(43, 170, 92, .55); }
  70%  { box-shadow: 0 0 0 8px rgba(43, 170, 92, 0); }
  100% { box-shadow: 0 0 0 0 rgba(43, 170, 92, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scarcity .dot-pulse { animation: none; }
}

/* ============ Testimonials ============ */
#temoignages { background: var(--bg-soft); }
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.testimonial {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 26px;
  margin: 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 18px 40px -28px rgba(31, 27, 22, 0.18);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.testimonial blockquote { margin: 0; }
.testimonial blockquote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.22rem;
  line-height: 1.45;
  color: var(--text);
  font-style: italic;
  font-weight: 500;
  margin: 0;
}
.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.tm-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: 1px;
  flex-shrink: 0;
  object-fit: cover;
  background: #efe9e1;
}
.tm-meta { display: flex; flex-direction: column; gap: 2px; line-height: 1.35; }
.tm-meta strong { font-weight: 600; color: var(--text); font-size: .96rem; }
.tm-meta span { color: var(--muted); font-size: .82rem; }
.tm-note {
  margin-top: 32px;
  text-align: center;
  font-size: .85rem;
  color: var(--muted);
  font-style: italic;
}
@media (max-width: 980px) {
  .testimonials { grid-template-columns: 1fr; gap: 18px; }
}

/* ============ VSL placeholder ============ */
#presentation { background: var(--bg); }
.vsl-wrap { max-width: 920px; }
.vsl-wrap .section-title { text-align: center; }
.vsl-wrap .section-subtitle { text-align: center; }
.vsl-frame {
  margin-top: 36px;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #1F1B16 0%, #2A241D 100%);
  box-shadow: 0 30px 70px -32px rgba(31, 27, 22, 0.5);
}
.vsl-placeholder {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255, 250, 240, 0.7);
  text-align: center;
  padding: 24px;
}
.vsl-placeholder svg { color: rgba(255, 250, 240, 0.55); }
.vsl-soon {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-style: italic;
  color: rgba(255, 250, 240, 0.95);
  margin: 0;
}
.vsl-hint {
  font-size: .9rem;
  color: rgba(255, 250, 240, 0.5);
  margin: 0;
  max-width: 360px;
}

/* ============ Legal pages meta line ============ */
.legal-meta {
  font-size: .88rem;
  color: var(--muted);
  margin: -16px 0 36px;
  font-style: italic;
}
.legal-meta a { color: var(--bronze); }

/* ============ Guarantee bar (sous pricing) ============ */
.guarantee-bar {
  margin-top: 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 26px 30px;
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0.42) 0%, rgba(248, 235, 208, 0.30) 100%),
    url('/css/textures/wood-light.jpg?v=1') center/cover no-repeat,
    #E8D7B0;
  color: #2A1B0C;
  border-radius: 22px;
  border: 1px solid rgba(120, 80, 30, 0.40);
  box-shadow:
    0 1px 0 rgba(255, 245, 220, 0.55) inset,
    0 -1px 0 rgba(60, 40, 14, 0.20) inset,
    0 0 0 1px rgba(196, 148, 84, 0.30),
    0 2px 4px rgba(80, 50, 18, 0.18),
    0 10px 22px -8px rgba(80, 50, 18, 0.30),
    0 28px 60px -22px rgba(80, 50, 18, 0.40),
    0 50px 90px -40px rgba(40, 25, 8, 0.55);
}
.guarantee-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(120, 80, 30, 0.18);
  color: #6B4A1F;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(120, 80, 30, 0.25);
}
.guarantee-head {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #1F1308;
  text-shadow: 0 1px 0 rgba(255, 250, 235, 0.45);
}
.guarantee-body {
  margin: 0;
  font-size: .95rem;
  line-height: 1.55;
  color: #1F1308;
  font-weight: 700;
  text-shadow: 0 1px 0 rgba(255, 250, 235, 0.30);
}
.guarantee-body strong { color: #1F1308; font-weight: 800; }
.guarantee-body a { font-weight: 700; }
.guarantee-sign .sig-caption { font-weight: 700 !important; color: rgba(35, 22, 8, 0.85) !important; }
@media (max-width: 640px) {
  .guarantee-bar { grid-template-columns: 1fr; gap: 14px; padding: 20px; }
}

/* ============ Anti-promesses list ============ */
.anti-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 12px;
  max-width: 820px;
}
.anti-list li {
  display: flex;
  gap: 14px;
  padding: 14px 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: .95rem;
  line-height: 1.5;
  color: var(--text);
}
.anti-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(160, 30, 30, 0.08);
  color: #A01E1E;
  font-weight: 600;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============ Sticky CTA mobile ============ */
.sticky-cta {
  position: fixed;
  bottom: 14px; left: 14px; right: 14px;
  z-index: 200;
  display: none;
  align-items: center;
  gap: 14px;
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, #2EE571 0%, #25D366 55%, #1FBB5C 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 rgba(0, 40, 12, 0.2);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 -1px 0 rgba(0, 40, 12, 0.22) inset,
    0 2px 4px rgba(20, 120, 60, 0.22),
    0 12px 28px -8px rgba(20, 120, 60, 0.45),
    0 26px 48px -14px rgba(20, 120, 60, 0.55);
  transition: transform .22s ease, box-shadow .28s ease, background .25s ease;
  backdrop-filter: saturate(140%);
}
.sticky-cta:hover {
  color: #fff;
  background: linear-gradient(180deg, #35EB78 0%, #28D86A 55%, #1FBB5C 100%);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.42) inset,
    0 -1px 0 rgba(0, 40, 12, 0.25) inset,
    0 3px 6px rgba(20, 120, 60, 0.28),
    0 16px 32px -8px rgba(20, 120, 60, 0.5),
    0 32px 56px -16px rgba(20, 120, 60, 0.6);
}
.sticky-cta:focus-visible { outline: 2px solid #fff; outline-offset: -4px; }
.sticky-label { display: flex; flex-direction: column; line-height: 1.2; }
.sticky-label strong { font-weight: 600; font-size: 1rem; }
.sticky-sub { font-size: .78rem; opacity: .85; }
@media (max-width: 760px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
  .site-footer { padding-bottom: 84px !important; }
}

/* ============ Compare section (C3) ============ */
.compare-section { background: var(--bg-soft); }
.compare-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.compare-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
.cmp-label {
  margin: 0;
  font-size: .78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.cmp-name {
  margin: 0 0 8px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  font-style: italic;
}
.cmp-price {
  margin: 4px 0 12px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.cmp-amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1;
}
.cmp-unit {
  font-size: .92rem;
  color: var(--muted);
  font-weight: 400;
}
.cmp-note {
  margin: auto 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: .88rem;
  line-height: 1.5;
  color: var(--text);
  opacity: .85;
}
.compare-card-mine {
  background:
    linear-gradient(180deg, rgba(20, 12, 4, 0.62) 0%, rgba(28, 18, 8, 0.58) 100%),
    url('/css/textures/wood-medium.jpg?v=1') center/cover no-repeat,
    #1F1B16;
  color: #FAF8F4;
  border-radius: 22px;
  border: 1px solid rgba(196, 148, 84, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 228, 178, 0.22) inset,
    0 -1px 0 rgba(0, 0, 0, 0.45) inset,
    0 0 0 1px rgba(120, 80, 30, 0.35),
    0 2px 4px rgba(20, 12, 4, 0.35),
    0 10px 22px -8px rgba(15, 8, 2, 0.55),
    0 28px 60px -22px rgba(15, 8, 2, 0.72),
    0 50px 90px -40px rgba(0, 0, 0, 0.85);
}
.compare-card-mine .cmp-label { color: #FFFFFF; }
.compare-card-mine .cmp-name { color: #FAF8F4; }
.compare-card-mine .cmp-amount { color: #FAF8F4; }
.compare-card-mine .cmp-unit { color: rgba(250, 248, 244, 0.65); }
.compare-card-mine .cmp-note {
  color: rgba(250, 248, 244, 0.8);
  border-top-color: rgba(250, 248, 244, 0.15);
}
.cmp-ribbon {
  position: absolute;
  top: -12px;
  right: 20px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 700;
  color: #FFFFFF;
  background:
    linear-gradient(180deg, rgba(255,250,240,.45) 0%, rgba(255,243,220,.22) 60%, rgba(180,140,90,.18) 100%),
    url("/css/textures/wood-light.jpg?v=1") center/cover no-repeat,
    #F0E5CF;
  border: 1px solid rgba(120, 80, 30, 0.5);
  text-shadow:
    0 1px 1px rgba(31, 20, 6, 0.85),
    0 2px 4px rgba(60, 40, 14, 0.70),
    0 0 12px rgba(60, 40, 14, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 -1px 0 rgba(120, 80, 30, 0.22),
    0 0 0 1px rgba(180, 140, 90, 0.28),
    0 2px 4px rgba(120, 80, 30, 0.20),
    0 6px 14px -4px rgba(120, 80, 30, 0.35);
}
.cmp-foot {
  margin: 28px auto 0;
  max-width: 720px;
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  opacity: .8;
}
@media (max-width: 980px) {
  .compare-grid { grid-template-columns: 1fr; gap: 16px; }
  .compare-card-mine { order: -1; }
}

/* ============ VSL video (remplace placeholder) ============ */
.vsl-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}


/* ============ CTA Contact — bois noble + relief premium ============ */
#contact-submit.btn {
  background:
    linear-gradient(180deg, rgba(20, 12, 4, 0.55) 0%, rgba(28, 18, 8, 0.55) 100%),
    url('/css/textures/wood-medium.jpg?v=1') center/cover no-repeat,
    #1F1B16;
  color: #F4EFE5;
  border: 1px solid rgba(196, 148, 84, 0.6);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 228, 178, 0.28) inset,
    0 -1px 0 rgba(0, 0, 0, 0.5) inset,
    0 0 0 1px rgba(120, 80, 30, 0.4),
    0 2px 4px rgba(20, 12, 4, 0.4),
    0 8px 18px -6px rgba(15, 8, 2, 0.6),
    0 18px 36px -14px rgba(15, 8, 2, 0.75);
  transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease, color .18s ease;
}
#contact-submit.btn:hover {
  background:
    linear-gradient(180deg, rgba(20, 12, 4, 0.45) 0%, rgba(28, 18, 8, 0.45) 100%),
    url('/css/textures/wood-medium.jpg?v=1') center/cover no-repeat,
    #1F1B16;
  color: #FFF6E0;
  border-color: rgba(220, 175, 110, 0.85);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 232, 188, 0.4) inset,
    0 -1px 0 rgba(0, 0, 0, 0.55) inset,
    0 0 0 1px rgba(180, 130, 60, 0.55),
    0 4px 8px rgba(20, 12, 4, 0.45),
    0 14px 28px -8px rgba(15, 8, 2, 0.7),
    0 28px 56px -18px rgba(15, 8, 2, 0.85);
}
#contact-submit.btn:active {
  transform: translateY(0);
  box-shadow:
    0 1px 0 rgba(255, 228, 178, 0.2) inset,
    0 -1px 0 rgba(0, 0, 0, 0.5) inset,
    0 0 0 1px rgba(120, 80, 30, 0.4),
    0 2px 4px rgba(20, 12, 4, 0.4),
    0 4px 10px -2px rgba(15, 8, 2, 0.5);
}


/* ============ Bouton outline noble (CTA secondaire élégant) ============ */
.btn.btn-outline-noble {
  background: transparent;
  color: #1F1B16;
  border: 1px solid rgba(122, 95, 48, 0.55);
  letter-spacing: 0.02em;
  padding: 14px 22px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 1px 2px rgba(20, 12, 4, 0.06),
    0 6px 14px -6px rgba(20, 12, 4, 0.18);
  transition: color .2s ease, border-color .2s ease, background .25s ease, box-shadow .25s ease, transform .15s ease;
}
.btn.btn-outline-noble span { display: inline-flex; gap: 6px; align-items: baseline; }
.btn.btn-outline-noble em {
  font-style: normal;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.08em;
  color: var(--bronze);
  font-weight: 600;
}
.btn.btn-outline-noble svg { transition: transform .25s ease; }
.btn.btn-outline-noble:hover {
  background: rgba(122, 95, 48, 0.06);
  color: #1F1B16;
  border-color: rgba(122, 95, 48, 0.85);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 0 0 1px rgba(122, 95, 48, 0.18),
    0 2px 4px rgba(20, 12, 4, 0.1),
    0 12px 24px -8px rgba(20, 12, 4, 0.28);
}
.btn.btn-outline-noble:hover em { color: #5C4720; }
.btn.btn-outline-noble:hover svg { transform: translateX(4px); }
.btn.btn-outline-noble:active { transform: translateY(0); }

/* === P2 — Audit conversion 2026-05-16 === */
.optional {
  font-weight: 400;
  font-size: 0.85em;
  color: #8b7d6c;
  margin-left: 4px;
}
.cmp-tco {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(139,111,63,0.3);
  font-size: 0.86rem;
  color: #6b5d52;
  letter-spacing: 0.2px;
}
.cmp-tco strong {
  color: #1f1b16;
  font-weight: 600;
}
.compare-card-mine .cmp-tco {
  color: rgba(245,242,235,0.85);
  border-top-color: rgba(245,242,235,0.25);
}
.compare-card-mine .cmp-tco strong {
  color: #f5f2eb;
}

/* === P3 — Audit conversion 2026-05-16 === */
.tm-link {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: #8B6F3F;
  text-decoration: none;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(139,111,63,0.3);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.tm-link:hover, .tm-link:focus {
  color: #6b5328;
  border-bottom-color: #6b5328;
}
.tm-link span {
  margin-left: 2px;
  display: inline-block;
  transition: transform 0.2s;
}
.tm-link:hover span {
  transform: translateX(3px);
}

/* ============================ DG Monogram Seal ============================ */
.dg-seal-wrap {
  width: 130px;
  height: 130px;
  margin: 0 0 22px;
  color: var(--bronze-soft, #C49454);
  opacity: 0.95;
}
.dg-seal { width: 100%; height: 100%; display: block; }
.dg-seal-mini {
  display: inline-flex;
  vertical-align: middle;
  width: 22px;
  height: 22px;
  margin-left: 8px;
  color: var(--bronze, #8B6F3F);
  opacity: 0.85;
}
.dg-seal-mini svg { width: 100%; height: 100%; display: block; }
.author-name { display: inline-flex; align-items: center; }
@media (max-width: 760px) {
  .dg-seal-wrap { width: 100px; height: 100px; }
}

/* ============================ Brice handwritten signature ============================ */
.sig-img {
  display: block;
  height: auto;
  max-width: 100%;
  filter: invert(1) brightness(2);
  opacity: 0.88;
  pointer-events: none;
}
.guarantee-sign {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.guarantee-sign .sig-img {
  width: 160px;
  margin-left: -8px;
  filter: none;
  opacity: 0.92;
}
.guarantee-sign .sig-caption {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(50, 32, 12, 0.70);
  margin-top: 2px;
}
.sig-img--card {
  width: 140px;
  height: auto;
  margin-top: 6px;
  margin-left: -6px;
  filter: none;
  opacity: 0.78;
}


/* ============ AUDIT pass-4 : ajustements finition ============ */

/* Hero overline — plus prononcé (cap-tracking élargi) */
.eyebrow {
  font-size: 13px;
  letter-spacing: 0.32em;
  font-weight: 500;
  color: var(--bronze);
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 26px;
}
.eyebrow::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 1px;
  background: var(--bronze);
  opacity: 0.55;
}

/* Audience — alternance subtile pour casser la régularité */
.audience div:nth-child(2n) {
  background: #FBF8F1;
}
.audience div:nth-child(3n+1) {
  background: #fff;
}

/* Lien sous le carousel — élégant et discret */
.car-after-link {
  text-align: center;
  margin: 8px auto 0;
}
.car-after-link a {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--bronze);
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color .22s ease, gap .22s ease;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.car-after-link a em {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 16px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text);
}
.car-after-link a:hover {
  color: var(--text);
  gap: 12px;
  border-bottom-color: var(--bronze);
}

/* Bouton « Recevoir ma maquette gratuite » — texture bois noble */
.btn.btn-wood-noble {
  background:
    linear-gradient(180deg, rgba(255,250,240,.42) 0%, rgba(255,243,220,.22) 60%, rgba(180,140,90,.18) 100%),
    url("/css/textures/wood-light.jpg?v=1") center/cover no-repeat,
    #F0E5CF;
  color: #FFFFFF;
  border: 1px solid rgba(120, 80, 30, 0.45);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 1px rgba(31, 20, 6, 0.85), 0 2px 4px rgba(60, 40, 14, 0.70), 0 4px 10px rgba(31, 20, 6, 0.55), 0 0 18px rgba(60, 40, 14, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 -1px 0 rgba(120, 80, 30, 0.22) inset,
    0 0 0 1px rgba(180, 140, 90, 0.28),
    0 2px 4px rgba(120, 80, 30, 0.18),
    0 8px 18px -6px rgba(120, 80, 30, 0.3),
    0 18px 36px -14px rgba(120, 80, 30, 0.35);
  transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease, color .18s ease;
}
.btn.btn-wood-noble:hover {
  background:
    linear-gradient(180deg, rgba(255,250,240,.52) 0%, rgba(255,243,220,.28) 60%, rgba(180,140,90,.22) 100%),
    url("/css/textures/wood-light.jpg?v=1") center/cover no-repeat,
    #F0E5CF;
  color: #FFFFFF;
  border-color: rgba(120, 80, 30, 0.7);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 -1px 0 rgba(120, 80, 30, 0.28) inset,
    0 0 0 1px rgba(180, 130, 60, 0.45),
    0 4px 8px rgba(120, 80, 30, 0.25),
    0 14px 28px -8px rgba(120, 80, 30, 0.4),
    0 28px 56px -18px rgba(120, 80, 30, 0.5);
}
.btn.btn-wood-noble:active {
  transform: translateY(0);
}

/* Footer DG seal : diamant favicon — médaillon dans cercle gold */
.dg-seal image {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.45));
}

/* ============================================================
   PASS 6 — décrochage du 10/10
   ============================================================ */

/* Section présentation vidéo : fond crème velouté pour séparer
   du flux blanc, créer un écrin autour de la VSL */
#presentation {
  /* Fond crème qui termine exactement sur le blanc du portfolio (#FFFFFF) */
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(196, 148, 84, 0.06) 0%, transparent 70%),
    linear-gradient(180deg,
      #F5EFE2 0%,
      #F3ECDB 50%,
      #F1E9D7 68%,
      #F4EEE0 80%,
      #F9F4E8 88%,
      #FDFAF3 94%,
      #FFFFFF 100%);
  position: relative;
  border-bottom: 0 !important;
}
/* Le portfolio absorbe la fin du fade VSL sur ses 140 premiers px
   → aucune frontière section/section perceptible */
#portfolio {
  position: relative;
}
#portfolio::after {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 140px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(180deg,
    #FFFFFF 0%,
    rgba(255, 255, 255, 0.7) 40%,
    rgba(255, 255, 255, 0.35) 70%,
    rgba(255, 255, 255, 0) 100%),
    linear-gradient(180deg,
      #FDFAF3 0%,
      #FFFFFF 100%);
}
#portfolio > * { position: relative; z-index: 1; }
#presentation::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(31, 27, 22, 0.025) 1px, transparent 0);
  background-size: 14px 14px;
  pointer-events: none;
  opacity: 0.6;
}
#presentation .wrap { position: relative; z-index: 1; }
.vsl-frame {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 30px 70px -28px rgba(31, 27, 22, 0.42),
    0 60px 120px -50px rgba(31, 27, 22, 0.25);
}

/* Mini-captures de site dans les cartes témoignages */
.tm-thumb {
  display: block;
  width: 100%;
  margin: 14px 0 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(31, 27, 22, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.7) inset,
    0 10px 22px -12px rgba(31, 27, 22, 0.28);
  aspect-ratio: 16 / 10;
  background: var(--bg-deep);
  position: relative;
  text-decoration: none;
}
.tm-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.tm-thumb::after {
  content: Voir le site;
  position: absolute;
  inset: auto 0 0 0;
  padding: 8px 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(31, 27, 22, 0.72) 100%);
  opacity: 0;
  transition: opacity .25s ease;
  font-weight: 500;
}
.tm-thumb:hover img { transform: scale(1.04); }
.tm-thumb:hover::after { opacity: 1; }

/* Hide tm-link when tm-thumb is present in the same card */
.testimonial:has(.tm-thumb) .tm-link { display: none; }

/* Hero scarcity badge — wrap propre mobile */
.hero-scarcity .hs-content { display: contents; }
@media (max-width: 520px) {
  .hero-scarcity {
    align-items: flex-start;
    border-radius: 18px;
    padding: 12px 16px;
    line-height: 1.45;
  }
  .hero-scarcity .dot-pulse { margin-top: 7px; }
  .hero-scarcity .hs-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .hero-scarcity .hs-sep { display: none; }
}

/* ============================================================
   PASS 7 — VISION 2035 : sceau vivant, bois réactif,
   slider holographique, empreinte carbone
   ============================================================ */

/* ===== B — Sceau vivant : rotation lente + respiration ===== */
.dg-seal-wrap { position: relative; display: inline-block; }
@media (prefers-reduced-motion: no-preference) {
  .dg-seal-live {
    animation: sealRotateSlow 80s linear infinite;
  }
  .dg-seal-wrap::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 148, 84, 0.18) 0%, transparent 70%);
    opacity: 0;
    animation: sealBreath 6s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
  }
}
@keyframes sealRotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes sealBreath {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50%      { opacity: 0.9; transform: scale(1.08); }
}
/* Sweep light — éclair doré qui traverse le sceau toutes les 14s */
.dg-seal-wrap::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 232, 170, 0.45) 48%, rgba(255, 232, 170, 0.65) 50%, rgba(255, 232, 170, 0.45) 52%, transparent 70%);
  background-size: 250% 250%;
  background-position: -100% 0%;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 2;
}
@media (prefers-reduced-motion: no-preference) {
  .dg-seal-wrap::before {
    animation: sealSweep 14s ease-in-out infinite;
  }
}
@keyframes sealSweep {
  0%, 80%, 100% { background-position: -100% 0%; opacity: 0; }
  84%           { opacity: 1; }
  92%           { background-position: 200% 0%; opacity: 1; }
  92.5%         { opacity: 0; }
}

/* ===== C — Bois réactif : lumière qui suit le curseur ===== */
.btn.btn-wood-noble,
.btn.btn-outline-noble,
#contact-submit.btn {
  position: relative;
  overflow: hidden;
}
.btn.btn-wood-noble::after,
.btn.btn-outline-noble::after,
#contact-submit.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 120px at var(--mx, 50%) var(--my, 50%),
    rgba(255, 232, 170, 0.32) 0%,
    rgba(255, 200, 110, 0.12) 35%,
    transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s ease;
  mix-blend-mode: screen;
  border-radius: inherit;
  z-index: 1;
}
.btn.btn-wood-noble:hover::after,
.btn.btn-outline-noble:hover::after,
#contact-submit.btn:hover::after { opacity: 1; }
.btn.btn-wood-noble > *,
.btn.btn-outline-noble > *,
#contact-submit.btn > * { position: relative; z-index: 2; }

/* ===== D — Compare slider holographique ===== */
.compare-slider {
  margin: 36px 0 0;
  max-width: 1100px;
}
.compare-slider + .compare-slider { margin-top: 56px; }
.cs-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1280 / 820;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-deep);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 30px 70px -28px rgba(31, 27, 22, 0.42),
    0 60px 120px -50px rgba(31, 27, 22, 0.25);
  user-select: none;
  touch-action: pan-y;
  --pos: 50%;
}
.cs-after, .cs-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cs-after { z-index: 1; }
.cs-before-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  -webkit-clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.cs-label {
  position: absolute;
  top: 16px;
  padding: 7px 14px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: #FFF6E0;
  background: rgba(20, 12, 4, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 243, 210, 0.18);
  border-radius: 999px;
  z-index: 4;
  pointer-events: none;
}
.cs-label-before { left: 16px; }
.cs-label-after  { right: 16px; }
.cs-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  transform: translateX(-50%);
  z-index: 5;
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.cs-divider::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(180deg,
    rgba(196, 148, 84, 0) 0%,
    rgba(255, 232, 170, 0.9) 18%,
    rgba(255, 232, 170, 0.9) 82%,
    rgba(196, 148, 84, 0) 100%);
  transform: translateX(-50%);
  box-shadow: 0 0 16px rgba(255, 232, 170, 0.55);
}
.cs-handle {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 243, 210, 0.95) 0%, rgba(220, 175, 110, 1) 25%, rgba(139, 105, 20, 1) 75%, rgba(85, 60, 10, 1) 100%);
  color: #FFF6E0;
  border: 2px solid rgba(255, 243, 210, 0.45);
  box-shadow:
    0 0 0 1px rgba(20, 12, 4, 0.5),
    0 4px 14px rgba(20, 12, 4, 0.5),
    0 0 28px rgba(255, 232, 170, 0.55),
    0 1px 0 rgba(255, 243, 210, 0.6) inset;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, box-shadow .25s ease;
  pointer-events: auto;
  padding: 0;
}
.cs-handle:hover {
  transform: scale(1.1);
  box-shadow:
    0 0 0 1px rgba(20, 12, 4, 0.5),
    0 6px 18px rgba(20, 12, 4, 0.55),
    0 0 40px rgba(255, 232, 170, 0.75),
    0 1px 0 rgba(255, 243, 210, 0.7) inset;
}
.cs-handle:active { cursor: grabbing; }
.cs-handle:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 4px;
}
.cs-hint {
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 14px 0 0;
  font-weight: 500;
  opacity: 0.7;
}
.compare-slider.cs-touched .cs-hint { opacity: 0; transition: opacity .4s ease; }
@media (max-width: 720px) {
  .cs-label { font-size: 9.5px; top: 10px; padding: 5px 10px; }
  .cs-label-before { left: 10px; }
  .cs-label-after  { right: 10px; }
  .cs-handle { width: 42px; height: 42px; }
}

/* ===== F — Empreinte carbone footer ===== */
.ft-eco {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 14px;
  opacity: 0.75;
  font-size: .85em;
  vertical-align: baseline;
}
.ft-eco svg {
  color: rgba(140, 200, 130, 0.9);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .ft-eco { margin-left: 0; margin-top: 6px; display: flex; }
}

/* ===== Carrousel témoignages (pass-8) ===== */
/* Le .car-track.testimonials hérite du grid via .testimonials → on annule */
.testimonials-carousel .car-track.testimonials {
  display: flex;
  grid-template-columns: none;
  gap: 22px;
  margin-top: 0;
}
.testimonials-carousel .car-slide.testimonial {
  flex: 0 0 calc((100% - 44px) / 3);
  scroll-snap-align: start;
  /* la testimonial garde son fond + padding */
  height: auto;
}
@media (max-width: 980px) {
  .testimonials-carousel .car-slide.testimonial { flex: 0 0 calc((100% - 22px) / 2); }
}
@media (max-width: 640px) {
  .testimonials-carousel .car-slide.testimonial { flex: 0 0 calc(100% - 22px); }
}

/* Mini-captures plus petites */
.tm-thumb {
  max-width: 260px;
  margin: 14px auto 0;
  aspect-ratio: 16 / 10;
}
.tm-thumb.tm-thumb-static {
  cursor: default;
}
.tm-thumb.tm-thumb-static::after { display: none; }

@media (max-width: 640px) {
  .tm-thumb { max-width: 100%; }
}

/* Pass-8.1 — protéger avatars + meta dans le carrousel témoignages */
.testimonials-carousel .car-slide.testimonial .tm-avatar {
  width: 44px !important;
  height: 44px !important;
  aspect-ratio: auto !important;
  border-radius: 50% !important;
  object-position: center !important;
}
.testimonials-carousel .car-slide.testimonial .tm-thumb img {
  width: 100% !important;
  aspect-ratio: auto !important;
  object-position: top center;
}
.testimonials-carousel .car-slide.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
}
.testimonials-carousel .car-slide.testimonial .tm-meta {
  min-width: 0;
  flex: 1 1 auto;
}
.testimonials-carousel .car-slide.testimonial .tm-meta strong,
.testimonials-carousel .car-slide.testimonial .tm-meta span {
  white-space: normal;
  word-break: break-word;
}

/* ── Témoignages : figcaption (avatar + nom + métier + lieu) EN HAUT ── */
.testimonials-carousel .car-slide.testimonial {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonials-carousel .car-slide.testimonial figcaption {
  order: 1;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 14px;
  border-top: 0;
  border-bottom: 1px solid var(--line);
}
.testimonials-carousel .car-slide.testimonial blockquote { order: 2; }
.testimonials-carousel .car-slide.testimonial .tm-thumb { order: 3; }

/* Cartes témoignages compactes mais aérées */
.testimonials-carousel .car-slide.testimonial {
  padding: 18px 18px 16px;
  gap: 12px;
  border-radius: 12px;
}
.testimonials-carousel .car-slide.testimonial figcaption {
  gap: 10px;
  padding-bottom: 10px;
}
.testimonials-carousel .car-slide.testimonial .tm-avatar {
  width: 36px;
  height: 36px;
}
.testimonials-carousel .car-slide.testimonial .tm-meta strong { font-size: .88rem; }
.testimonials-carousel .car-slide.testimonial .tm-meta span { font-size: .76rem; }
.testimonials-carousel .car-slide.testimonial blockquote p {
  font-size: 1.02rem;
  line-height: 1.5;
}
/* ───────────────────────────────────────────────────────── */

/* Pass-9 — densifier audience grid en mobile (row layout) */
@media (max-width: 640px) {
  .audience {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .audience div {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: 10px 12px;
    gap: 10px;
    font-size: 13.5px;
  }
  .aud-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }
}

/* ============================ Option Suivi mensuel ============================ */
.suivi-option {
  margin-top: 28px;
  padding: 28px 32px;
  background: linear-gradient(180deg, #FBF7EE 0%, #F6EEDC 100%);
  border: 1px solid rgba(120, 80, 30, 0.18);
  border-radius: 18px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 6px 16px -10px rgba(120, 80, 30, 0.18);
}
.suivi-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.suivi-tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
  background: rgba(139, 105, 20, 0.1);
  border: 1px solid rgba(139, 105, 20, 0.28);
  border-radius: 999px;
}
.suivi-option h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: #1F1B16;
}
.suivi-option h3 em {
  font-style: italic;
  font-weight: 400;
  color: var(--muted);
  font-size: 0.78em;
}
.suivi-pitch {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 680px;
}
.suivi-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}
.suivi-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.suivi-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--text);
}
.suivi-bullets svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--bronze);
  margin-top: 2px;
}
.suivi-prices {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.suivi-price-card {
  position: relative;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid rgba(120, 80, 30, 0.18);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(120, 80, 30, 0.08);
}
.suivi-price-card.suivi-best {
  border-color: rgba(139, 105, 20, 0.55);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 1px 2px rgba(120, 80, 30, 0.1),
    0 6px 14px -6px rgba(139, 105, 20, 0.22);
}
.spc-badge {
  position: absolute;
  top: -10px;
  right: 14px;
  padding: 3px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--bronze);
  border-radius: 999px;
}
.spc-amount {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--bronze);
  line-height: 1;
}
.spc-amount strong {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.spc-amount span {
  font-family: Inter, sans-serif;
  font-size: 0.82rem;
  color: var(--muted);
  margin-left: 4px;
  letter-spacing: 0;
}
.spc-meta {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}
.suivi-note {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(120, 80, 30, 0.14);
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 760px) {
  .suivi-option { padding: 22px 18px; }
  .suivi-grid { grid-template-columns: 1fr; gap: 18px; }
  .suivi-option h3 { font-size: 1.35rem; }
}

/* ── Hero badge avant/après — v.008 ─────────────────────── */
.hv-pill{
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto 22px;
  padding: 11px 18px 11px 14px;
  background:
    linear-gradient(135deg, #FFF7E4 0%, #F6E7C2 45%, #E9D098 100%);
  border: 1px solid #C49454;
  border-radius: 999px;
  color: #5A4218;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    inset 0 -1px 0 rgba(122,95,48,.18),
    0 8px 20px -8px rgba(122,95,48,.45),
    0 2px 4px rgba(31,27,22,.06);
  transition: transform .25s ease, box-shadow .25s ease;
  width: max-content;
  max-width: 100%;
  /* on isole de l'ombre du smartphone */
  isolation: isolate;
}
.hero-visual{
  display: flex;
  flex-direction: column;
  align-items: center;
  /* le badge prend sa place sans être mangé par les ombres */
  padding-top: 4px;
}
.hv-pill:hover{
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    inset 0 -1px 0 rgba(122,95,48,.22),
    0 14px 28px -8px rgba(122,95,48,.55),
    0 3px 6px rgba(31,27,22,.08);
}
.hv-pill:focus-visible{
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
}
.hv-pill-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7A5F30, #C49454);
  color: #FFF7E4;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 1px 2px rgba(31,27,22,.18);
}
.hv-pill-text{
  white-space: nowrap;
}
.hv-pill-text em{
  font-style: normal;
  opacity: .55;
  margin: 0 2px;
}
.hv-pill-text strong{
  font-weight: 800;
  letter-spacing: .06em;
  background: linear-gradient(180deg, #3D2C0E 0%, #7A5F30 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hv-pill-cta{
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(31,27,22,.85);
  color: #F6E7C2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}
/* léger pulse pour attirer l'œil — discret, 1 cycle / 4s */
.hv-pill::before{
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 999px;
  background: linear-gradient(120deg, transparent 30%, rgba(255,247,228,.75) 50%, transparent 70%);
  background-size: 250% 100%;
  background-position: 200% 0;
  pointer-events: none;
  animation: hvShimmer 4.5s ease-in-out infinite;
  z-index: -1;
  filter: blur(2px);
  opacity: .9;
}
@keyframes hvShimmer{
  0%, 70%, 100% { background-position: 200% 0; }
  40%          { background-position: -50% 0; }
}
@media (prefers-reduced-motion: reduce){
  .hv-pill::before{ animation: none; }
}
@media (max-width: 760px){
  .hv-pill{
    font-size: 12px;
    padding: 9px 12px 9px 10px;
    gap: 9px;
  }
  .hv-pill-icon{ width: 24px; height: 24px; }
  .hv-pill-icon svg{ width: 15px; height: 15px; }
  .hv-pill-cta{ font-size: 10px; padding: 2px 7px; }
}
/* ───────────────────────────────────────────────────────── */

/* ── Flèche scroll oeuvre d art — v.3 ivoire-or + pulse multi-anneaux ── */
.scroll-arrow {
  display: flex;
  justify-content: center;
  margin: 56px auto 0;
  width: 100%;
  text-decoration: none;
  color: #5A4218;
  position: relative;
  z-index: 2;
}
/* Halo de respiration ultra-doux derriere toute la fleche */
.scroll-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 50% 50%,
    rgba(255, 247, 228, 0.40) 0%,
    rgba(233, 208, 152, 0.18) 35%,
    rgba(196, 148, 84, 0.06) 60%,
    transparent 80%);
  filter: blur(14px);
  z-index: 0;
  animation: saBreathe 5.2s ease-in-out infinite;
  pointer-events: none;
}
/* 3eme anneau de pulse (le plus large, le plus lent) */
.scroll-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(196, 148, 84, 0.22);
  animation: saPulse 4.8s ease-out infinite;
  animation-delay: 3.2s;
  pointer-events: none;
  z-index: 0;
}
.sa-ring {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* Version d avant : ivoire → or vieux doux */
  background: linear-gradient(180deg,
    #FFF7E4 0%,
    #F6E7C2 55%,
    #E9D098 100%);
  border: 1px solid rgba(196, 148, 84, 0.55);
  color: #5A4218;
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 228, 0.95),
    inset 0 -1px 0 rgba(122, 95, 48, 0.18),
    0 1px 2px rgba(31, 27, 22, 0.04),
    0 4px 10px rgba(31, 27, 22, 0.06),
    0 14px 28px -10px rgba(122, 95, 48, 0.28),
    0 32px 60px -20px rgba(31, 27, 22, 0.32);
  transition:
    transform .35s cubic-bezier(.2,.7,.2,1),
    box-shadow .4s ease,
    border-color .35s ease;
  animation: saBob 4.2s cubic-bezier(.45,.05,.55,.95) infinite;
  z-index: 2;
}
.sa-ring svg {
  position: relative;
  z-index: 3;
  color: #5A4218;
  stroke: #5A4218;
  filter: drop-shadow(0 1px 0 rgba(255, 247, 228, 0.65));
}
/* 1er anneau de pulse : proche, rapide */
.sa-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(196, 148, 84, 0.45);
  animation: saPulse 4.8s ease-out infinite;
  animation-delay: 0s;
  pointer-events: none;
  z-index: 1;
}
/* 2eme anneau de pulse : medium, decale */
.sa-ring::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(196, 148, 84, 0.32);
  animation: saPulse 4.8s ease-out infinite;
  animation-delay: 1.6s;
  pointer-events: none;
  z-index: 1;
}
.scroll-arrow:hover .sa-ring {
  transform: translateY(-2px);
  border-color: rgba(196, 148, 84, 0.85);
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 228, 1),
    inset 0 -1px 0 rgba(122, 95, 48, 0.22),
    0 2px 3px rgba(31, 27, 22, 0.05),
    0 6px 14px rgba(31, 27, 22, 0.08),
    0 20px 36px -10px rgba(122, 95, 48, 0.36),
    0 42px 72px -20px rgba(31, 27, 22, 0.38);
}
.scroll-arrow:focus-visible .sa-ring {
  outline: 2px solid #C49454;
  outline-offset: 4px;
}
@keyframes saBob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}
@keyframes saPulse {
  0%   { transform: translate(-50%, -50%) scale(1);   opacity: 0.7; }
  70%  { transform: translate(-50%, -50%) scale(1.85); opacity: 0;   }
  100% { transform: translate(-50%, -50%) scale(1.85); opacity: 0;   }
}
/* Pour les ::before/::after du .sa-ring (qui n ont pas de translate base) */
.sa-ring::before, .sa-ring::after {
  animation-name: saPulseRing;
}
@keyframes saPulseRing {
  0%   { transform: scale(1);    opacity: 0.7; }
  70%  { transform: scale(1.85); opacity: 0;   }
  100% { transform: scale(1.85); opacity: 0;   }
}
@keyframes saBreathe {
  0%, 100% { opacity: 0.55; filter: blur(14px); }
  50%      { opacity: 1;    filter: blur(18px); }
}
@media (prefers-reduced-motion: reduce) {
  .sa-ring, .sa-ring::before, .sa-ring::after,
  .scroll-arrow::before, .scroll-arrow::after { animation: none; }
}
@media (max-width: 760px) {
  .scroll-arrow { margin-top: 40px; }
  .scroll-arrow::before { width: 140px; height: 140px; }
  .scroll-arrow::after { width: 50px; height: 50px; }
  .sa-ring { width: 50px; height: 50px; }
  .sa-ring svg { width: 18px; height: 18px; }
}
/* ───────────────────────────────────────────────────────── */

/* ── Comparateur Avant/Après v2 — toggle pilule + cross-fade + peek hover ── */
.compare-v2 {
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.compare-v2 + .compare-v2 { margin-top: 56px; }

/* Pilule toggle premium */
.cv-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #FFF7E4 0%, #F6E7C2 100%);
  border: 1px solid rgba(196, 148, 84, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 228, 0.95),
    inset 0 -1px 0 rgba(122, 95, 48, 0.18),
    0 1px 2px rgba(31, 27, 22, 0.04),
    0 4px 10px rgba(31, 27, 22, 0.06),
    0 14px 28px -10px rgba(122, 95, 48, 0.22);
  z-index: 2;
}
.cv-pill {
  position: relative;
  z-index: 2;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 8px 22px;
  font-family: inherit;
  font-size: .82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a7548;
  cursor: pointer;
  border-radius: 999px;
  transition: color .35s ease;
  font-weight: 600;
}
.cv-pill[aria-selected="true"] { color: #FFF8E7; }
.cv-pill:focus-visible {
  outline: 2px solid #C49454;
  outline-offset: 2px;
}
/* Indicateur or qui glisse */
.cv-thumb {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  border-radius: 999px;
  background: linear-gradient(165deg, #C49454 0%, #A57835 50%, #8A6428 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 228, 0.45),
    inset 0 -1px 0 rgba(74, 53, 18, 0.32),
    0 2px 6px rgba(122, 95, 48, 0.32);
  transition: transform .45s cubic-bezier(.25,.85,.3,1);
  z-index: 1;
  pointer-events: none;
}
.compare-v2[data-state="before"] .cv-thumb { transform: translateX(0); }
.compare-v2[data-state="after"]  .cv-thumb { transform: translateX(100%); }

/* Scène image */
.cv-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1280 / 820;
  border-radius: 18px;
  overflow: hidden;
  background: #1a1a1a;
  box-shadow:
    0 1px 2px rgba(31, 27, 22, 0.04),
    0 8px 18px rgba(31, 27, 22, 0.06),
    0 28px 56px -16px rgba(122, 95, 48, 0.22),
    0 56px 90px -28px rgba(31, 27, 22, 0.34);
  cursor: pointer;
}
.cv-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: opacity .6s cubic-bezier(.4,.0,.2,1), transform 1.2s ease;
  will-change: opacity;
}
/* État APRÈS (par défaut) : after visible, before caché */
.compare-v2[data-state="after"] .cv-img-after  { opacity: 1; }
.compare-v2[data-state="after"] .cv-img-before { opacity: 0; }
/* État AVANT : inverse */
.compare-v2[data-state="before"] .cv-img-after  { opacity: 0; }
.compare-v2[data-state="before"] .cv-img-before { opacity: 1; }



/* Petit hint discret */
.cv-hint {
  font-size: .76rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin: 0;
  opacity: .75;
}
.compare-v2.cv-touched .cv-hint { opacity: 0; transition: opacity .4s ease; }

@media (prefers-reduced-motion: reduce) {
  .cv-img { transition: none; }
  .cv-thumb { transition: none; }
}
@media (max-width: 640px) {
  .cv-pill { padding: 7px 18px; font-size: .76rem; }
  .cv-stage { border-radius: 14px; }
}
/* ───────────────────────────────────────────────────────── */


/* ── Grid 2 colonnes des comparateurs Avant/Après ── */
.cv-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  margin-top: 28px;
}
.cv-cell {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}
.cv-lead {
  font-size: .92rem;
  line-height: 1.55;
  margin: 0;
}
.cv-grid .compare-v2 {
  margin: 4px 0 0;
  gap: 12px;
}
.cv-grid .cv-pill { padding: 6px 16px; font-size: .72rem; }
.cv-grid .cv-stage { border-radius: 14px; }

@media (max-width: 880px) {
  .cv-grid { grid-template-columns: 1fr; gap: 36px; }
}
/* ───────────────────────────────────────────────────────── */


/* ── Section #exemple — finition premium ── */
#exemple { padding-block: clamp(56px, 7vw, 88px); }
#exemple > .wrap { text-align: center; }
#exemple #ex-title {
  text-align: center;
  margin: 0 auto;
  max-width: 720px;
  position: relative;
}
/* Kicker doré au-dessus du titre */
#exemple #ex-title::before {
  content: "Cas clients";
  display: block;
  font-family: inherit;
  font-size: .72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #C49454;
  margin-bottom: 14px;
  font-weight: 600;
}
/* Ornement doré sous le titre */
#exemple #ex-title::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, transparent 0%, #C49454 50%, transparent 100%);
}
/* Leads centrés au-dessus de chaque comparateur */
#exemple .cv-lead {
  text-align: center;
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.02rem;
  line-height: 1.5;
}
#exemple .cv-grid { margin-top: 40px; }
/* Note finale plus premium */
#exemple .compare-note {
  margin-top: 44px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text);
  opacity: .82;
  max-width: 56ch;
}
/* ───────────────────────────────────────────────────────── */


/* Tag mot-clé au-dessus de chaque aperçu */
#exemple .cv-tag {
  text-align: center;
  margin: 0;
  font-size: .72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  color: #C49454;
}
#exemple .cv-tag span {
  display: inline-block;
  margin: 0 6px;
  color: rgba(196, 148, 84, 0.55);
  font-weight: 400;
}

/* ═════════════════════════════════════════════════════════════
   #approche — Timeline éditoriale cinématographique 2050
   ═════════════════════════════════════════════════════════════ */
#approche {
  padding-block: clamp(72px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}
#approche .ap-wrap {
  position: relative;
  z-index: 2;
}

/* En-tête centré */
.ap-kicker {
  text-align: center;
  margin: 0 0 14px;
  font-size: .72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #C49454;
  font-weight: 600;
}
.ap-h2 {
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 auto 18px;
  color: var(--text);
  max-width: 760px;
  line-height: 1.1;
}
.ap-h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, transparent 0%, #C49454 50%, transparent 100%);
}
.ap-lead {
  text-align: center;
  max-width: 56ch;
  margin: 0 auto 64px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--muted);
  opacity: .9;
}

/* Container timeline */
.ap-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  padding-top: 30px;
}

/* Ligne dorée ondulée qui se dessine */
.ap-line {
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  height: 60px;
  pointer-events: none;
  overflow: visible;
}
.ap-line-path {
  stroke-dasharray: 2600;
  stroke-dashoffset: 2600;
  transition: stroke-dashoffset 2.4s cubic-bezier(.4, 0, .2, 1);
}
.ap-flow.is-revealed .ap-line-path { stroke-dashoffset: 0; }

/* Chaque étape */
.ap-step {
  position: relative;
  padding-top: 50px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s cubic-bezier(.4,0,.2,1), transform .9s cubic-bezier(.4,0,.2,1);
}
.ap-step[data-ap-step="1"] { transition-delay: 0.2s; }
.ap-step[data-ap-step="2"] { transition-delay: 0.7s; }
.ap-step[data-ap-step="3"] { transition-delay: 1.2s; }
.ap-flow.is-revealed .ap-step {
  opacity: 1;
  transform: translateY(0);
}

/* Chiffre romain géant en filigrane */
.ap-numeral {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(120px, 13vw, 180px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196, 148, 84, 0.22);
  letter-spacing: -0.02em;
  pointer-events: none;
  z-index: 0;
  user-select: none;
  transition: -webkit-text-stroke-color .6s ease;
}
.ap-flow.is-revealed .ap-step:hover .ap-numeral {
  -webkit-text-stroke-color: rgba(196, 148, 84, 0.45);
}

/* Marqueur or sur la ligne */
.ap-marker {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #FBE9B8 0%, #E8C77A 35%, #C49454 70%, #A57835 100%);
  border: 1px solid #A57835;
  transform: translate(-50%, -50%) scale(0);
  z-index: 3;
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 228, 0.65),
    0 1px 2px rgba(31, 27, 22, 0.10),
    0 6px 14px -4px rgba(122, 95, 48, 0.45);
  transition: transform .55s cubic-bezier(.34,1.56,.64,1);
}
.ap-step[data-ap-step="1"] .ap-marker { transition-delay: 0.5s; }
.ap-step[data-ap-step="2"] .ap-marker { transition-delay: 1.0s; }
.ap-step[data-ap-step="3"] .ap-marker { transition-delay: 1.5s; }
.ap-flow.is-revealed .ap-marker { transform: translate(-50%, -50%) scale(1); }
.ap-marker::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(196, 148, 84, 0.30);
  animation: apPulse 3.6s ease-out infinite;
  animation-delay: 2.2s;
  opacity: 0;
}
.ap-flow.is-revealed .ap-marker::after { opacity: 1; }
@keyframes apPulse {
  0%   { transform: scale(1);   opacity: .55; }
  70%  { transform: scale(2.6); opacity: 0;   }
  100% { transform: scale(2.6); opacity: 0;   }
}

/* Petit tag uppercase */
.ap-step-tag {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  font-size: .68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #C49454;
  font-weight: 600;
}
/* Titre éditorial Garamond */
.ap-step-title {
  position: relative;
  z-index: 2;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--text);
  letter-spacing: -0.005em;
}
.ap-step-title em {
  font-style: italic;
  color: #C49454;
  font-weight: 400;
}
/* Corps de texte */
.ap-step-body {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 32ch;
  font-size: .94rem;
  line-height: 1.65;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .ap-step, .ap-marker, .ap-line-path { transition: none !important; }
  .ap-step { opacity: 1; transform: none; }
  .ap-marker { transform: translate(-50%, -50%) scale(1); }
  .ap-marker::after { animation: none; }
  .ap-line-path { stroke-dashoffset: 0; }
}

@media (max-width: 880px) {
  .ap-flow {
    grid-template-columns: 1fr;
    gap: 60px;
    padding-top: 20px;
  }
  /* Ligne verticale en mobile */
  .ap-line {
    top: 30px;
    left: 50%;
    width: 60px;
    height: calc(100% - 30px);
    transform: translateX(-50%);
  }
  .ap-line-path { display: none; }
  .ap-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    transform-origin: top;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, #C49454 15%, #E9D098 50%, #C49454 85%, transparent 100%);
    transition: transform 2.4s cubic-bezier(.4,0,.2,1);
  }
  .ap-flow.is-revealed .ap-line::before { transform: translateX(-50%) scaleY(1); }
  .ap-step { padding-top: 70px; }
  .ap-numeral { top: -28px; font-size: clamp(96px, 22vw, 140px); }
  .ap-marker { top: 28px; }
}
/* ─────────────────────────────────────────────────────────── */

/* ═════════════════════════════════════════════════════════════
   #inclus — Bibliothèque dorée éditoriale 2050
   ═════════════════════════════════════════════════════════════ */
#inclus {
  padding-block: clamp(72px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}
#inclus .in-wrap {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
}

/* En-tête centré */
.in-kicker {
  text-align: center;
  margin: 0 0 14px;
  font-size: .72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #C49454;
  font-weight: 600;
}
.in-h2 {
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 auto 18px;
  color: var(--text);
  max-width: 760px;
  line-height: 1.1;
}
.in-h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, transparent 0%, #C49454 50%, transparent 100%);
}
.in-lead {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 64px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--muted);
  opacity: .9;
}
.in-lead em {
  font-style: italic;
  color: #C49454;
  font-weight: 500;
  not-italic: true;
}

/* Grid 2 cartes */
.in-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 56px;
}

/* Carte éditoriale */
.in-card {
  position: relative;
  padding: 44px 40px 38px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 251, 240, 0.55) 0%, rgba(248, 240, 222, 0.35) 100%),
    #FBF6E9;
  border: 1px solid rgba(196, 148, 84, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 0 0 1px rgba(255, 247, 228, 0.4),
    0 1px 0 rgba(196, 148, 84, 0.08),
    0 14px 32px -12px rgba(122, 95, 48, 0.14),
    0 4px 8px -2px rgba(31, 27, 22, 0.04);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s cubic-bezier(.4,0,.2,1), transform .9s cubic-bezier(.4,0,.2,1);
}
.in-card[data-in-card="1"] { transition-delay: 0.1s; }
.in-card[data-in-card="2"] { transition-delay: 0.35s; }
.in-grid.is-revealed .in-card { opacity: 1; transform: translateY(0); }

/* Liseré or fin en haut de carte */
.in-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(196, 148, 84, 0.55) 50%, transparent 100%);
}

/* En-tête de carte */
.in-card-head {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(196, 148, 84, 0.10);
}
.in-medallion { display: none !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, #FBE9B8 0%, #E8C77A 35%, #C49454 70%, #A57835 100%);
  color: #FFFBF0;
  margin-bottom: 14px;
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 228, 0.65),
    inset 0 -1px 0 rgba(74, 50, 18, 0.15),
    0 4px 10px -2px rgba(122, 95, 48, 0.35),
    0 1px 2px rgba(31, 27, 22, 0.10);
}
.in-medallion svg {
  width: 28px;
  height: 28px;
}
.in-card-tag {
  margin: 0 0 8px;
  font-size: .68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #C49454;
  font-weight: 600;
}
.in-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.15;
  margin: 0;
  color: var(--text);
  letter-spacing: -0.005em;
}
.in-card-title em {
  font-style: italic;
  color: #C49454;
  font-weight: 400;
}

/* Liste éditoriale */
.in-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.in-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 14px;
  align-items: start;
  font-size: .96rem;
  line-height: 1.6;
  color: var(--muted);
}
.in-list li strong {
  color: var(--text);
  font-weight: 600;
}

/* Gemme dorée */
.in-gem {
  position: relative;
  width: 11px;
  height: 11px;
  margin-top: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #FBE9B8 0%, #E8C77A 35%, #C49454 70%, #A57835 100%);
  border: 1px solid rgba(165, 120, 53, 0.65);
  flex-shrink: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 228, 0.7),
    0 1px 2px rgba(31, 27, 22, 0.08),
    0 3px 6px -2px rgba(122, 95, 48, 0.25);
}
.in-gem::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(196, 148, 84, 0.18);
  pointer-events: none;
}

/* Sceau final */
.in-seal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto;
  max-width: 620px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s ease 0.6s, transform 1s ease 0.6s;
}
.in-grid.is-revealed ~ .in-seal { opacity: .85; transform: translateY(0); }
.in-seal-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(196, 148, 84, 0.4) 50%, transparent 100%);
  max-width: 120px;
}
.in-seal-text {
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.in-seal-text strong {
  color: #C49454;
  font-weight: 500;
  font-style: italic;
}

@media (prefers-reduced-motion: reduce) {
  .in-card, .in-seal { transition: none !important; opacity: 1; transform: none; }
}

@media (max-width: 880px) {
  .in-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 44px;
  }
  .in-card { padding: 36px 28px 30px; }
  .in-seal { font-size: .95rem; gap: 12px; }
  .in-seal-line { max-width: 60px; }
}
/* ─────────────────────────────────────────────────────────── */

/* ═════════════════════════════════════════════════════════════
   #audience — Constellation des métiers 2050
   ═════════════════════════════════════════════════════════════ */
#audience {
  padding-block: clamp(72px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}
#audience .au-wrap {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
}

/* En-tête centré */
.au-kicker {
  text-align: center;
  margin: 0 0 14px;
  font-size: .72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #C49454;
  font-weight: 600;
}
.au-h2 {
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 auto 18px;
  color: var(--text);
  max-width: 760px;
  line-height: 1.1;
}
.au-h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, transparent 0%, #C49454 50%, transparent 100%);
}
.au-lead {
  text-align: center;
  max-width: 62ch;
  margin: 0 auto 60px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--muted);
  opacity: .9;
}
.au-lead em {
  color: #C49454;
  font-weight: 500;
}

/* Constellation grid */
.au-constellation {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 24px;
  padding: 30px 10px 10px;
}

/* Lignes dorées en fond (décor) */
.au-constellation::before,
.au-constellation::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(196, 148, 84, 0.18) 20%, rgba(196, 148, 84, 0.32) 50%, rgba(196, 148, 84, 0.18) 80%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.au-constellation::before { top: 33%; }
.au-constellation::after { top: 66%; }

/* Étoile métier */
.au-star {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 14px 8px 18px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .75s cubic-bezier(.4,0,.2,1), transform .75s cubic-bezier(.4,0,.2,1);
}
.au-constellation.is-revealed .au-star { opacity: 1; transform: translateY(0); }
.au-constellation.is-revealed .au-star:nth-child(1)  { transition-delay: 0.05s; }
.au-constellation.is-revealed .au-star:nth-child(2)  { transition-delay: 0.12s; }
.au-constellation.is-revealed .au-star:nth-child(3)  { transition-delay: 0.19s; }
.au-constellation.is-revealed .au-star:nth-child(4)  { transition-delay: 0.26s; }
.au-constellation.is-revealed .au-star:nth-child(5)  { transition-delay: 0.33s; }
.au-constellation.is-revealed .au-star:nth-child(6)  { transition-delay: 0.40s; }
.au-constellation.is-revealed .au-star:nth-child(7)  { transition-delay: 0.47s; }
.au-constellation.is-revealed .au-star:nth-child(8)  { transition-delay: 0.54s; }
.au-constellation.is-revealed .au-star:nth-child(9)  { transition-delay: 0.61s; }
.au-constellation.is-revealed .au-star:nth-child(10) { transition-delay: 0.68s; }
.au-constellation.is-revealed .au-star:nth-child(11) { transition-delay: 0.75s; }
.au-constellation.is-revealed .au-star:nth-child(12) { transition-delay: 0.82s; }

/* Médaillon ivoire — icône or */
.au-pearl {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, #FFFBF0 0%, #FBF4E0 60%, #F5EAC8 100%);
  color: #C49454;
  border: 1px solid rgba(196, 148, 84, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 0 0 1px rgba(255, 247, 228, 0.6),
    0 1px 0 rgba(196, 148, 84, 0.10),
    0 6px 14px -4px rgba(122, 95, 48, 0.20),
    0 2px 5px -1px rgba(31, 27, 22, 0.05);
  transition: transform .5s cubic-bezier(.34,1.56,.64,1), box-shadow .5s ease, color .35s ease;
}
.au-pearl::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(196, 148, 84, 0.18);
  opacity: 0;
  transition: opacity .4s ease, transform .4s ease;
  transform: scale(.9);
}
.au-star:hover .au-pearl {
  transform: translateY(-3px) scale(1.06);
  color: #A57835;
  border-color: rgba(165, 120, 53, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 0 0 1px rgba(255, 247, 228, 0.7),
    0 1px 0 rgba(196, 148, 84, 0.18),
    0 12px 22px -6px rgba(122, 95, 48, 0.30),
    0 3px 8px -1px rgba(31, 27, 22, 0.08);
}
.au-star:hover .au-pearl::after {
  opacity: 1;
  transform: scale(1);
}
.au-pearl svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.4;
}

/* Label éditorial */
.au-name {
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: 0.005em;
  transition: color .3s ease;
}
.au-star:hover .au-name {
  color: #8A6428;
}

@media (prefers-reduced-motion: reduce) {
  .au-star { opacity: 1; transform: none; transition: none; }
  .au-pearl { transition: none; }
}

@media (max-width: 980px) {
  .au-constellation {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 16px;
  }
  .au-constellation::before { top: 25%; }
  .au-constellation::after { top: 75%; }
}
@media (max-width: 600px) {
  .au-constellation {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 12px;
  }
  .au-constellation::before,
  .au-constellation::after { display: none; }
  .au-pearl { width: 56px; height: 56px; }
  .au-pearl svg { width: 24px; height: 24px; }
  .au-name { font-size: .98rem; }
}
/* ─────────────────────────────────────────────────────────── */

/* ═════ Manifeste — pourquoi 350 € ═════ */
.cmp-manifesto {
  position: relative;
  margin: 40px auto 0;
  max-width: 680px;
  padding: 24px 32px 22px;
  text-align: center;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 251, 240, 0.65) 0%, rgba(248, 240, 222, 0.4) 100%),
    #FBF6E9;
  border: 1px solid rgba(196, 148, 84, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 0 0 1px rgba(255, 247, 228, 0.5),
    0 1px 0 rgba(196, 148, 84, 0.10),
    0 10px 24px -10px rgba(122, 95, 48, 0.14),
    0 3px 6px -2px rgba(31, 27, 22, 0.04);
}
.cmp-manifesto::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30%;
  right: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(196, 148, 84, 0.6) 50%, transparent 100%);
}
.cmp-manifesto-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: .62rem;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: #C49454;
  font-weight: 600;
}
.cmp-manifesto-quote {
  margin: 0 auto 14px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.35;
  color: var(--text);
  letter-spacing: -0.005em;
  max-width: 48ch;
}
.cmp-manifesto-quote em {
  font-style: italic;
  color: #C49454;
  font-weight: 500;
}
.cmp-manifesto-chips {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 8px;
}
.cmp-manifesto-chips li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px 5px 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #FFFBF0 0%, #F6EBD3 100%);
  border: 1px solid rgba(196, 148, 84, 0.22);
  font-size: .80rem;
  letter-spacing: 0.01em;
  color: var(--text);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 1px 2px rgba(31, 27, 22, 0.04);
}
.cmp-chip-x {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #FBE9B8 0%, #E8C77A 35%, #C49454 70%, #A57835 100%);
  color: #4A3212;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 247, 228, 0.7),
    0 1px 2px rgba(31, 27, 22, 0.08);
}
.cmp-manifesto-sign {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: .98rem;
  line-height: 1.45;
  color: var(--muted);
}
.cmp-manifesto-sign strong {
  color: #C49454;
  font-weight: 500;
  font-style: italic;
}

@media (max-width: 720px) {
  .cmp-manifesto { padding: 30px 22px 26px; margin-top: 40px; }
  .cmp-manifesto-chips li { padding: 7px 14px 7px 10px; font-size: .84rem; }
}


/* Espace sous le h2 contact */
#ct-title { margin-bottom: 36px; }

/* ═════ Bloc consentements RGPD + CGV ═════ */
.consent-block {
  margin: 18px 0 18px;
  padding: 16px 18px 14px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 251, 240, 0.55) 0%, rgba(248, 240, 222, 0.32) 100%), #FBF7EB;
  border: 1px solid rgba(196, 148, 84, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 1px 2px rgba(31, 27, 22, 0.03);
}
.consent-head {
  margin: 0 0 10px;
  font-size: .68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #C49454;
  font-weight: 600;
}
.consent-block .consent-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .84rem;
  line-height: 1.5;
  color: var(--text);
  padding: 6px 0;
  margin: 0;
  cursor: pointer;
}
.consent-block .consent-row + .consent-row {
  border-top: 1px dashed rgba(196, 148, 84, 0.18);
}
.consent-block .consent-row input[type="checkbox"] {
  margin: 3px 0 0;
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  accent-color: #C49454;
  cursor: pointer;
}
.consent-block .consent-row a {
  color: #C49454;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(196, 148, 84, 0.4);
  text-underline-offset: 2px;
}
.consent-block .consent-row a:hover {
  text-decoration-color: #C49454;
}
.consent-ref {
  display: inline;
  font-size: .78rem;
  color: var(--muted);
  opacity: .8;
}

/* ═════ Titre "En option" ═════ */
.opt-kicker {
  text-align: center;
  margin: 0 0 14px;
  font-size: .72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #C49454;
  font-weight: 600;
}
.opt-h2 {
  text-align: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 auto 44px;
  color: var(--text);
  line-height: 1.1;
}
.opt-h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  margin: 22px auto 0;
  background: linear-gradient(90deg, transparent 0%, #C49454 50%, transparent 100%);
}


/* Avatar photo Brice (carte contact) */
.author-avatar.author-avatar-photo {
  width: 80px;
  height: 80px;
  padding: 0;
  background: linear-gradient(135deg, #C49454, #A57835);
  box-shadow: 0 3px 10px -2px rgba(122, 95, 48, 0.32), inset 0 0 0 1.5px rgba(255,247,228,.55);
  overflow: hidden;
}
.author-avatar.author-avatar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

/* ====== Manifesto chip-check (Pourquoi 1 500 € — 2026-06-03) ====== */
.cmp-chip-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #DFF5DC 0%, #B2DDA1 35%, #6AA663 70%, #3F7A47 100%);
  color: #1F4A28;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 1px 2px rgba(31, 27, 22, 0.08);
  margin-right: 8px;
  flex-shrink: 0;
}
