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

@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(58, 42, 24, .35);
  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,255,255,.5), 0 1px 2px rgba(58,42,24,.12);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.nav a.cta:hover {
  border-color: rgba(58, 42, 24, .55);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6), 0 3px 8px rgba(58,42,24,.18);
  transform: translateY(-1px);
  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;
}

/* ============================ 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: 28px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  border-radius: 14px;
  backdrop-filter: blur(6px);
}
.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; }
  .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: 8px 16px; gap: 10px; white-space: normal; flex-wrap: wrap; row-gap: 6px; }
  .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 24px;
  padding: 10px 16px;
  background: rgba(122, 95, 48, 0.06);
  border: 1px solid rgba(122, 95, 48, 0.2);
  border-radius: 999px;
  font-size: .92rem;
  color: var(--text);
  font-feature-settings: 'ss01';
}
.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(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: #F4EFE5;
  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);
}
.guarantee-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.15);
  color: #D4A574;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.guarantee-head {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: #FAF8F4;
}
.guarantee-body {
  margin: 0;
  font-size: .95rem;
  line-height: 1.55;
  color: rgba(244, 239, 229, 0.85);
}
.guarantee-body strong { color: #FAF8F4; font-weight: 600; }
@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: var(--bronze-soft); }
.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: -10px;
  right: 20px;
  background: var(--bronze);
  color: #FAF8F4;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}
.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: invert(1) brightness(2.1);
  opacity: 0.92;
}
.guarantee-sign .sig-caption {
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 235, 215, 0.55);
  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: #3a2a18;
  border: 1px solid rgba(120, 80, 30, 0.45);
  letter-spacing: 0.04em;
  text-shadow: 0 1px 0 rgba(255, 245, 220, 0.6);
  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: #2a1d0e;
  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 {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(196, 148, 84, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, #F5EFE2 0%, #F1E9D7 100%);
  position: relative;
}
#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;
}

/* 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; }
}
