/* Digital Giri — 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: var(--text);
  border: 1px solid var(--text);
  padding: 8px 16px;
  border-radius: 100px;
  transition: background .15s ease, color .15s ease;
}
.nav a.cta:hover { background: var(--text); color: var(--bg); }

/* ============================ 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: center;
}
.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;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 9/16;
  object-fit: cover;
  object-position: top center;
  background: #fff;
  transform: rotate(4deg);
}
.hv-caption {
  margin: 38px 0 0;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

/* ============================ 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: #25D366;
  color: #fff;
  border: 1px solid #1ebe5d;
}
.btn-whatsapp:hover { background: #1ebe5d; color: #fff; border-color: #1ebe5d; }

/* ============================ 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 {
  text-align: center;
  padding: 24px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.audience div:hover {
  border-color: var(--bronze);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ============================ 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: baseline;
  gap: 10px;
  padding: 11px 20px;
  margin: 4px 0 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 0.95rem;
  color: var(--text);
  flex-wrap: wrap;
}
.price-badge .pb-amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--bronze);
  letter-spacing: 0.5px;
}
.price-badge .pb-sep { color: var(--line); }
.price-badge .pb-delay,
.price-badge .pb-host { color: var(--muted); font-size: 0.92rem; }

/* ============================ 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: 10px 14px; gap: 6px; }
  .price-badge .pb-amount { font-size: 1.25rem; }
  .price-badge .pb-sep { display: none; }
  .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;
}
.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: 22px 26px;
  background: #1F1B16;
  color: #F4EFE5;
  border-radius: 14px;
  box-shadow: 0 24px 50px -28px rgba(31, 27, 22, 0.5);
}
.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: 0; left: 0; right: 0;
  z-index: 200;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 12px 18px calc(12px + env(safe-area-inset-bottom));
  background: #25D366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 -8px 24px -10px rgba(0,0,0,0.2);
  font-weight: 500;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.sticky-cta:hover { color: #fff; background: #1FB855; }
.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: #1F1B16;
  color: #FAF8F4;
  border-color: var(--bronze);
  box-shadow: 0 26px 60px -28px rgba(31, 27, 22, 0.5);
}
.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;
}
