/* ============================================================
   KLEMAVENTURE, style.css
   Design system : Terre cuite & Papier
   ============================================================ */

/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--encre);
  background: var(--papier);
}
/* Verrou anti-débordement horizontal : la page ne peut jamais
   se balader de gauche à droite sur mobile, quelle que soit la source
   (élément hors écran, arrondi de police, contenu insécable...) */
html, body { overflow-x: hidden; }
@supports (overflow-x: clip) {
  html, body { overflow-x: clip; }
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* --- Variables CSS --- */
:root {
  --papier: #F8F2E5;
  --terre: #C44B2D;
  --terre-fonce: #B04428;
  --encre: #1E1A15;
  --or: #D4A557;
  --cuir: #8B5E3C;
  --riziere: #5C7C5C;
  --blanc-pur: #FDFBF7;
  --papier-fonce: #E8DFCC;

  --font-display: 'Clash Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script: 'Caveat', cursive;

  --gutter-mobile: 20px;
  --gutter-desktop: 32px;
  --section-padding-mobile: 64px;
  --section-padding-desktop: 100px;

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 12px;

  --header-h: 80px;
  --header-h-mobile: 64px;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: var(--gutter-mobile);
  padding-right: var(--gutter-mobile);
}
@media (min-width: 768px) {
  .container {
    padding-left: var(--gutter-desktop);
    padding-right: var(--gutter-desktop);
  }
}

.container--narrow { max-width: 820px; }
.container--legal  { max-width: 720px; }

/* --- Section spacing --- */
.section {
  padding-top: var(--section-padding-mobile);
  padding-bottom: var(--section-padding-mobile);
}
@media (min-width: 1024px) {
  .section {
    padding-top: var(--section-padding-desktop);
    padding-bottom: var(--section-padding-desktop);
  }
}

/* ============================================================
   TYPOGRAPHIE
   ============================================================ */
.font-display { font-family: var(--font-display); }
.font-script  { font-family: var(--font-script); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }

h1 { font-size: clamp(40px, 6vw, 64px); }
h2 { font-size: clamp(32px, 4.5vw, 48px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
h4 { font-size: 18px; }

.kicker {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cuir);
  display: block;
  margin-bottom: 16px;
}
.kicker--or  { color: var(--or); }
.kicker--papier { color: var(--papier); }

/* H2 bicolore : 1e ligne Encre / 2e ligne italique Terre (ou Or sur fond sombre) */
.h2-bicolor .line2 { color: var(--terre); font-style: italic; }
.h2-bicolor--or .line2 { color: var(--or); font-style: italic; }

/* Pull quote Caveat */
.pull-quote {
  font-family: var(--font-script);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--terre);
  text-align: center;
  max-width: 600px;
  margin: 48px auto;
  line-height: 1.3;
}
.pull-quote--or { color: var(--or); }

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  transition: transform 150ms ease-out, background 150ms ease-out, opacity 150ms;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--terre);
  color: var(--papier);
  padding: 14px 28px;
}
.btn--primary:hover { background: var(--terre-fonce); transform: translateY(-2px); }
.btn--primary:active { transform: translateY(0); }

.btn--primary-lg { padding: 16px 32px; font-size: 16px; }
.btn--primary-xl { padding: 20px 40px; font-size: 17px; }

.btn--outline-dark {
  background: transparent;
  color: var(--encre);
  border: 1.5px solid var(--encre);
  padding: 14px 28px;
}
.btn--outline-dark:hover { background: rgba(30,26,21,0.05); }

.btn--outline-light {
  background: transparent;
  color: var(--papier);
  border: 1.5px solid var(--papier);
  padding: 14px 28px;
}
.btn--outline-light:hover { background: rgba(248,242,229,0.08); }

.btn--link {
  color: var(--terre);
  font-size: 15px;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 0;
}
.btn--link:hover { color: var(--terre-fonce); text-decoration: none; }

/* ============================================================
   HEADER / MENU
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h-mobile);
  display: flex;
  align-items: center;
  transition: background 200ms, box-shadow 200ms;
}
.site-header.scrolled {
  background: var(--papier);
  box-shadow: 0 2px 8px rgba(30,26,21,0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--papier);
  transition: color 200ms;
}
.site-header.scrolled .site-logo { color: var(--encre); }
.site-header.on-light .site-logo { color: var(--encre); }

/* Nav desktop */
.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .site-header { height: var(--header-h); }
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .nav-desktop a {
    font-size: 15px;
    font-weight: 500;
    color: var(--papier);
    transition: color 150ms;
  }
  .site-header.scrolled .nav-desktop a,
  .site-header.on-light .nav-desktop a { color: var(--encre); }
  .nav-desktop a:hover { color: var(--terre); }
  .nav-desktop a.active { color: var(--terre); }

  /* Dropdown */
  .dropdown { position: relative; }
  .dropdown-toggle {
    display: flex; align-items: center; gap: 4px;
    cursor: pointer;
  }
  .dropdown-toggle::after {
    content: '▾';
    font-size: 11px;
    transition: transform 200ms;
  }
  .dropdown:hover .dropdown-toggle::after { transform: rotate(180deg); }
  .dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--blanc-pur);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(30,26,21,0.12);
    min-width: 220px;
    padding: 8px 0;
    z-index: 100;
  }
  .dropdown:hover .dropdown-menu,
  .dropdown:focus-within .dropdown-menu { display: block; }
  /* Pont invisible : couvre le gap de 12px pour que la souris
     puisse passer du toggle au sous-menu sans le fermer */
  .dropdown-menu::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
  }
  .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--encre) !important;
    font-size: 14px;
  }
  .dropdown-menu a:hover { color: var(--terre) !important; background: var(--papier); }
  .dropdown-menu .sweet-spot { color: var(--or) !important; }
}

/* Hamburger mobile */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px 0;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--papier);
  border-radius: 2px;
  transition: transform 250ms, opacity 250ms, background 200ms;
}
.site-header.scrolled .nav-toggle span,
.site-header.on-light .nav-toggle span { background: var(--encre); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Mobile menu panel */
.nav-mobile {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 100vw);
  background: var(--papier);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 250ms ease-out;
  padding: 100px 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow-y: auto;
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--encre);
  font-weight: 700;
}
.nav-mobile a.active { color: var(--terre); }
.nav-mobile .sub-label {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--cuir);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: -12px;
  margin-top: 8px;
}
.nav-mobile .sub-links { display: flex; flex-direction: column; gap: 12px; padding-left: 16px; }
.nav-mobile .sub-links a { font-size: 18px; }
.nav-mobile .btn--primary { margin-top: 24px; align-self: flex-start; }
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(30,26,21,0.4);
  z-index: 999;
}
.nav-overlay.open { display: block; }

/* Body padding-top to account for fixed header */
.page-body { padding-top: var(--header-h-mobile); }
@media (min-width: 1024px) { .page-body { padding-top: var(--header-h); } }
/* Brief gratuit : pas de header, pas de padding-top */
.page-body--no-header { padding-top: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--encre);
  color: var(--papier);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
}
.footer-col__logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--papier);
}
.footer-col__by {
  font-family: var(--font-script);
  font-size: 16px;
  color: var(--or);
  font-style: italic;
  display: block;
  margin-top: 4px;
}
.footer-col__tagline {
  font-size: 13px;
  color: rgba(248,242,229,0.7);
  margin-top: 12px;
  font-style: italic;
  line-height: 1.5;
}
.footer-col__title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px;
  color: rgba(248,242,229,0.8);
  transition: color 150ms;
}
.footer-col ul a:hover { color: var(--papier); }
.footer-col .sweet-spot-link { color: rgba(212,165,87,0.8); }
.footer-col .sweet-spot-link:hover { color: var(--or); }
.footer-email {
  font-size: 14px;
  color: var(--papier);
  margin-top: 12px;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid rgba(248,242,229,0.15);
  padding: 20px 0;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-bottom span {
  font-size: 12px;
  color: rgba(248,242,229,0.6);
}
.footer-bottom em { font-style: italic; }

/* ============================================================
   STICKY CTA MOBILE
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: var(--encre);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
  height: 64px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(100%);
  transition: transform 200ms ease-out;
}
.sticky-cta.visible { transform: translateY(0); }
@media (max-width: 1023px) { .sticky-cta { display: flex; } }
.sticky-cta__text {
  font-size: 13px;
  color: var(--papier);
  font-weight: 500;
}
.sticky-cta .btn--primary { padding: 10px 18px; font-size: 14px; }

/* ============================================================
   HERO SECTIONS
   ============================================================ */

/* Hero vidéo homepage */
.hero-video {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--encre);
  margin-top: calc(-1 * var(--header-h-mobile));
}
@media (min-width: 1024px) {
  .hero-video { margin-top: calc(-1 * var(--header-h)); }
}
.hero-video__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video__bg video,
.hero-video__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-video__overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,26,21,0.5);
  z-index: 1;
}
.hero-video__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0;
}
.hero-video__kicker {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(248,242,229,0.85);
  margin-bottom: 20px;
  display: block;
}
.hero-video h1 {
  color: var(--papier);
  margin-bottom: 24px;
}
.hero-video__subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(248,242,229,0.9);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-video__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero offres (2 colonnes) */
.hero-offre {
  background: var(--papier);
  padding: 80px 0 64px;
}
.hero-offre .container { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) {
  .hero-offre .container { grid-template-columns: 3fr 2fr; }
}
.hero-offre__badge {
  display: inline-block;
  background: var(--or);
  color: var(--encre);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.hero-offre__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--cuir);
  margin-bottom: 24px;
  transition: color 150ms;
}
.hero-offre__breadcrumb:hover { color: var(--terre); }
.hero-offre h1 { color: var(--encre); margin-bottom: 12px; }
.hero-offre__subtitle {
  font-size: 20px;
  font-style: italic;
  color: var(--terre);
  font-family: var(--font-display);
  margin-bottom: 16px;
}
.hero-offre__desc { font-size: 17px; color: var(--encre); margin-bottom: 28px; max-width: 540px; }
.hero-offre__tarif {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--terre);
  margin-bottom: 4px;
}
.hero-offre__tarif-baseline { font-size: 13px; color: var(--cuir); margin-bottom: 4px; }
.hero-offre__mention { font-size: 13px; color: var(--cuir); font-style: italic; margin-bottom: 28px; }
.hero-offre__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.hero-offre__trust { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-offre__trust span { font-size: 14px; color: var(--riziere); font-weight: 600; }

/* Hero compact FAQ */
.hero-compact {
  background: var(--papier);
  padding: 80px 0 64px;
  text-align: center;
}
.hero-compact h1 { margin-bottom: 20px; }
.hero-compact .line2 { color: var(--terre); font-style: italic; display: block; }
.hero-compact__subtitle { font-size: 17px; color: var(--encre); max-width: 600px; margin: 0 auto; }

/* Hero À propos */
.hero-apropos {
  background: var(--papier);
  padding: 80px 0;
}
.hero-apropos .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .hero-apropos .container { grid-template-columns: 1fr 1fr; }
}
.hero-apropos h1 .line2 { color: var(--terre); font-style: italic; display: block; }
.hero-apropos__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--papier-fonce);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-apropos__photo-placeholder {
  text-align: center;
  padding: 32px;
  color: var(--cuir);
}
.hero-apropos__photo-placeholder .placeholder-icon { font-size: 48px; margin-bottom: 12px; }
.hero-apropos__photo-placeholder span { font-size: 13px; font-style: italic; }
.hero-apropos__caption {
  font-family: var(--font-script);
  font-size: 16px;
  color: var(--cuir);
  text-align: center;
  margin-top: 12px;
}

/* Hero brief gratuit (no header) */
.hero-brief {
  background: var(--papier);
  padding: 80px 0 64px;
  min-height: 100svh;
  display: flex;
  align-items: flex-start;
}
.hero-brief .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .hero-brief .container { grid-template-columns: 9fr 11fr; align-items: start; }
}
.brief-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--cuir);
  margin-bottom: 40px;
  transition: color 150ms;
}
.brief-back-link:hover { color: var(--terre); }
.hero-brief__trust { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.hero-brief__trust li { font-size: 15px; color: var(--riziere); font-weight: 600; display: flex; align-items: center; gap: 8px; }

/* ============================================================
   PROOF BAR
   ============================================================ */
.proof-bar {
  background: var(--encre);
  padding: 40px 0;
}
.proof-bar .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  text-align: center;
}
@media (min-width: 768px) {
  .proof-bar .container { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .proof-bar .proof-item:not(:last-child) {
    border-right: 1px solid rgba(248,242,229,0.15);
  }
}
.proof-item__number {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--or);
  line-height: 1;
  display: block;
}
.proof-item__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--papier);
  display: block;
  margin: 6px 0 4px;
}
.proof-item__baseline {
  font-size: 13px;
  color: rgba(248,242,229,0.65);
}

/* ============================================================
   SECTION PROBLÈME (TikTok)
   ============================================================ */
.section-probleme { background: var(--papier); }
.probleme__header { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.probleme__header h2 { margin-bottom: 16px; }
.probleme__header .subtitle { font-size: 17px; color: var(--cuir); }
/* ── Carrousel dynamique (section problème) ── */
.carousel { position: relative; }
.carousel__viewport {
  overflow: hidden;
  padding: 10px 0;
  touch-action: pan-y;
  /* Fondu progressif sur les côtés : les cartes en aperçu s'estompent
     vers le fond au lieu d'être coupées net */
  --fade: 8%;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 var(--fade), #000 calc(100% - var(--fade)), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 var(--fade), #000 calc(100% - var(--fade)), transparent 100%);
}
@media (min-width: 768px)  { .carousel__viewport { --fade: 11%; } }
@media (min-width: 1024px) { .carousel__viewport { --fade: 14%; } }
.carousel__track {
  display: flex;
  gap: 24px;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
  will-change: transform;
  transition: transform 550ms cubic-bezier(0.22,0.61,0.36,1);
  cursor: grab;
}
.carousel.is-dragging { user-select: none; }
.carousel.is-dragging .carousel__track { transition: none; cursor: grabbing; }
.carousel__slide {
  flex: 0 0 86%;
  display: flex;
  opacity: 0.45;
  transform: scale(0.93);
  transition: opacity 450ms ease, transform 450ms ease;
}
.carousel__slide > .probleme-card { width: 100%; }
.carousel__slide.is-active { opacity: 1; transform: none; }
@media (min-width: 768px)  { .carousel__slide { flex-basis: 56%; } }
@media (min-width: 1024px) { .carousel__slide { flex-basis: 40%; } }

/* Flèches */
.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blanc-pur);
  color: var(--encre);
  border: 1px solid rgba(139,94,60,0.2);
  box-shadow: 0 6px 18px rgba(30,26,21,0.14);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 200ms, color 200ms, transform 150ms;
}
.carousel__arrow:hover { background: var(--terre); color: var(--papier); border-color: var(--terre); }
.carousel__arrow:active { transform: translateY(-50%) scale(0.9); }
.carousel__arrow--prev { left: 6px; }
.carousel__arrow--next { right: 6px; }
@media (min-width: 768px) { .carousel__arrow { display: flex; } }
@media (min-width: 1024px) {
  .carousel__arrow--prev { left: -10px; }
  .carousel__arrow--next { right: -10px; }
}

/* Points de navigation */
.carousel__dots { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.carousel__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(139,94,60,0.3);
  border: none; padding: 0;
  cursor: pointer;
  transition: background 250ms, width 250ms, border-radius 250ms;
}
.carousel__dot:hover { background: rgba(139,94,60,0.55); }
.carousel__dot.is-active { background: var(--terre); width: 26px; border-radius: 5px; }

@media (prefers-reduced-motion: reduce) {
  .carousel__track { transition: none; }
  .carousel__slide { opacity: 1; transform: none; transition: none; }
}

.probleme-card {
  background: var(--blanc-pur);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(30,26,21,0.07);
  overflow: hidden;
}
.probleme-card__top {
  background: var(--encre);
  padding: 20px 24px;
}
.probleme-card__label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(248,242,229,0.5);
  margin-bottom: 8px;
  display: block;
}
.probleme-card__top p { font-size: 15px; color: var(--papier); font-style: italic; }
.probleme-card__bottom { padding: 20px 24px; }
.probleme-card__bottom .label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cuir);
  margin-bottom: 8px;
  display: block;
}
.probleme-card__bottom p { font-size: 15px; color: var(--encre); }
.probleme__transition { text-align: center; margin-top: 48px; font-size: 20px; font-style: italic; color: var(--terre); font-family: var(--font-display); }

/* ============================================================
   SECTION PROMESSE
   ============================================================ */
.section-promesse { background: var(--papier); }
.promesse__h2 { font-size: clamp(40px, 6vw, 64px); line-height: 1.08; margin-bottom: 12px; }
/* Petits écrans : les mots raturés étant insécables (white-space nowrap),
   on réduit la taille pour que « guide générique » tienne toujours en largeur */
@media (max-width: 480px) {
  .promesse__h2 { font-size: clamp(28px, 9.4vw, 40px); }
}

/* Emphase "Pas un X" : biffure manuscrite (comme rayé au stylo) */
.rejet { position: relative; white-space: nowrap; }
.rejet__strike {
  position: absolute;
  left: 0; width: 100%;
  top: 0.06em; height: 0.92em;
  overflow: hidden;
  pointer-events: none;
}
.rejet__strike path {
  fill: none;
  stroke: var(--terre);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.promesse__pivot { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); font-style: italic; color: var(--terre); margin-bottom: 64px; line-height: 1.15; }

/* Piliers : colonnes éditoriales, filets fins + accent terre cuite */
.promesse__pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.pilier {
  position: relative;
  padding: 30px 0 32px;
  border-top: 1px solid rgba(139,94,60,0.20);
}
.pilier::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 46px; height: 2px;
  background: var(--terre);
  transition: width 400ms cubic-bezier(0.22,0.61,0.36,1);
}
@media (min-width: 768px) {
  .promesse__pillars { grid-template-columns: repeat(3, 1fr); column-gap: 44px; }
  .pilier { padding-bottom: 8px; }
}
.pilier__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  color: rgba(139,94,60,0.45);
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
  transition: color 300ms;
}
.pilier__title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terre);
  margin-bottom: 12px;
  display: block;
}
.pilier__text {
  font-size: 17px;
  line-height: 1.5;
  color: var(--encre);
  margin-bottom: 14px;
  max-width: 32ch;
}
.pilier__sub {
  font-size: 14px;
  color: var(--cuir);
  font-style: italic;
  line-height: 1.5;
  padding-top: 14px;
  border-top: 1px dashed rgba(139,94,60,0.28);
  max-width: 32ch;
}
/* Micro-interaction (desktop) : l'accent s'étend, le numéro se colore */
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .pilier:hover::before { width: 100%; }
  .pilier:hover .pilier__num { color: var(--terre); }
}

/* ============================================================
   CARDS OFFRES
   ============================================================ */
.section-offres { background: var(--papier); }
.offres__header { text-align: center; margin-bottom: 12px; }
.offres__sub { text-align: center; font-size: 20px; font-style: italic; color: var(--terre); font-family: var(--font-display); margin-bottom: 48px; }
.offres__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .offres__grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
}
.offre-card {
  background: var(--blanc-pur);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px rgba(30,26,21,0.08);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 200ms, box-shadow 200ms;
  position: relative;
}
.offre-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(30,26,21,0.14); }

.offre-card--sweet {
  background: var(--encre);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
  padding-top: 44px;
}
.offre-card--sweet:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,0,0,0.25); }

.offre-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--or);
  color: var(--encre);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}
.offre-card__kicker {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cuir);
  margin-bottom: 8px;
  display: block;
}
.offre-card--sweet .offre-card__kicker { color: var(--or); }
.offre-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--encre);
  margin-bottom: 4px;
}
.offre-card--sweet .offre-card__name { color: var(--papier); }
.offre-card__tagline {
  font-family: var(--font-script);
  font-size: 14px;
  color: var(--terre);
  font-style: italic;
  margin-bottom: 16px;
  display: block;
}
.offre-card--sweet .offre-card__tagline { color: var(--or); }
.offre-card__tarif {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--terre);
  margin-bottom: 2px;
}
.offre-card--sweet .offre-card__tarif { color: var(--papier); }
.offre-card__baseline { font-size: 11px; color: var(--cuir); margin-bottom: 20px; }
.offre-card--sweet .offre-card__baseline { color: rgba(248,242,229,0.6); }
.offre-card__signature {
  background: rgba(248,242,229,0.35);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-bottom: 20px;
}
.offre-card--sweet .offre-card__signature { background: rgba(212,165,87,0.12); border: 1px solid rgba(212,165,87,0.2); }
.offre-card__signature p { font-size: 13px; line-height: 1.5; color: var(--encre); }
.offre-card--sweet .offre-card__signature p { color: rgba(248,242,229,0.9); }
.offre-card__bullets { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.offre-card__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--encre);
  line-height: 1.5;
}
.offre-card--sweet .offre-card__bullets li { color: rgba(248,242,229,0.9); }
.offre-card__bullets .check-icon { flex-shrink: 0; margin-top: 2px; }
.offre-card__sep {
  border: none;
  border-top: 0.5px dashed var(--papier-fonce);
  margin: 16px 0;
}
.offre-card--sweet .offre-card__sep { border-color: rgba(212,165,87,0.25); }
.offre-card__non-inclus { font-size: 11px; font-style: italic; color: var(--cuir); margin-bottom: 20px; line-height: 1.5; }
.offre-card--sweet .offre-card__non-inclus { color: rgba(212,165,87,0.7); }
.offre-card .btn { width: 100%; justify-content: center; margin-top: auto; }
.offre-card--sweet .btn--outline-dark { color: var(--papier); border-color: var(--papier); }
.offre__footer { text-align: center; margin-top: 36px; }
.offre__footer a { font-size: 15px; color: var(--cuir); }
.offre__footer a:hover { color: var(--terre); }

/* ============================================================
   SECTION PROCESS (timeline)
   ============================================================ */
.section-process { background: var(--papier); }
.section-process--dark { background: var(--encre); color: var(--papier); }
.section-process--dark .kicker { color: var(--papier); opacity: 0.6; }
.section-process--dark h2 { color: var(--papier); }
.section-process--dark .line2 { color: var(--or); }
.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .process__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .process__steps--4col { grid-template-columns: repeat(4, 1fr); }
}
.process-step {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.process-step__num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--or);
  text-transform: uppercase;
}
.process-step__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--papier);
}
.section-process:not(.section-process--dark) .process-step__title { color: var(--encre); }
.process-step__short { font-size: 13px; color: var(--or); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.section-process:not(.section-process--dark) .process-step__short { color: var(--cuir); }
.process-step__text { font-size: 15px; color: rgba(248,242,229,0.8); line-height: 1.65; }
.section-process:not(.section-process--dark) .process-step__text { color: var(--encre); opacity: 0.85; }
.process__group-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or);
  margin-top: 32px;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212,165,87,0.2);
}
.section-process:not(.section-process--dark) .process__group-label { color: var(--cuir); border-color: var(--papier-fonce); }

/* ============================================================
   "Du brief au décollage" (accueil) : colonnes éditoriales
   Même langage que la section LA PROMESSE (numéros + filets)
   ============================================================ */
.process__steps--4col {
  margin-top: 56px;
  gap: 0;
}
.process__steps--4col .process-step {
  position: relative;
  padding: 30px 0 32px;
  border-top: 1px solid rgba(139,94,60,0.20);
  gap: 0;
}
.process__steps--4col .process-step::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 46px; height: 2px;
  background: var(--terre);
  transition: width 400ms cubic-bezier(0.22,0.61,0.36,1);
}
@media (min-width: 768px) {
  .process__steps--4col { grid-template-columns: repeat(2, 1fr); column-gap: 44px; }
}
@media (min-width: 1024px) {
  .process__steps--4col { grid-template-columns: repeat(4, 1fr); column-gap: 40px; }
}
/* Grand numéro en contour (différencie de LA PROMESSE) */
.process__steps--4col .process-step__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 4.5vw, 48px);
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  color: rgba(139,94,60,0.10);
  -webkit-text-stroke: 1.4px rgba(139,94,60,0.42);
          text-stroke: 1.4px rgba(139,94,60,0.42);
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
  transition: color 300ms, -webkit-text-stroke-color 300ms;
}
/* Libellé court (terre cuite) */
.process__steps--4col .process-step__short {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terre);
  margin-bottom: 10px;
}
/* Titre */
.process__steps--4col .process-step__title {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  color: var(--encre);
  margin-bottom: 10px;
  line-height: 1.15;
}
.process__steps--4col .process-step__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--encre);
  opacity: 0.85;
  max-width: 32ch;
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .process__steps--4col .process-step:hover::before { width: 100%; }
  .process__steps--4col .process-step:hover .process-step__num {
    color: rgba(196,75,45,0.12);
    -webkit-text-stroke-color: var(--terre);
  }
}

/* ============================================================
   SECTION POUR QUI / PAS POUR QUI
   ============================================================ */
.section-pour-qui { background: var(--papier); }
.pour-qui__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}
@media (min-width: 768px) { .pour-qui__grid { grid-template-columns: 1fr 1fr; } }
.pour-qui__col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--papier-fonce);
}
.pour-qui__col-title--oui { color: var(--riziere); }
.pour-qui__col-title--non { color: var(--cuir); }
.pour-qui__list { display: flex; flex-direction: column; gap: 14px; }
.pour-qui__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
}
.pour-qui__item .icon { flex-shrink: 0; font-size: 18px; margin-top: 2px; }
.pour-qui__item .crossell {
  font-size: 13px;
  color: var(--terre);
  font-weight: 600;
  display: block;
  margin-top: 4px;
}
.pour-qui__item .crossell::before { content: '→ '; }

/* ============================================================
   SECTION CE QUE TU REÇOIS
   ============================================================ */
.section-recos { background: var(--papier); }
.livrables__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}
.livrable {
  border-left: 3px solid var(--papier-fonce);
  padding-left: 24px;
}
.livrable--highlight { border-left-color: var(--terre); }
.livrable__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or);
  display: block;
  margin-bottom: 6px;
}
.livrable__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--encre);
  margin-bottom: 8px;
}
.livrable__desc { font-size: 16px; color: var(--encre); margin-bottom: 12px; }
.livrable__sub { display: flex; flex-direction: column; gap: 6px; }
.livrable__sub li { font-size: 14px; color: var(--cuir); display: flex; align-items: flex-start; gap: 8px; }
.livrable__sub li::before { content: '→'; color: var(--terre); flex-shrink: 0; }

/* Numéro de livrable en grand contour (cohérence avec les sections premium accueil) */
.livrable { transition: border-left-color 300ms ease; }
.livrable__num {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  line-height: 1;
  color: rgba(139,94,60,0.10);
  -webkit-text-stroke: 1.3px rgba(139,94,60,0.42);
          text-stroke: 1.3px rgba(139,94,60,0.42);
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
  transition: color 300ms ease, -webkit-text-stroke-color 300ms ease;
}
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .livrable:hover { border-left-color: var(--terre); }
  .livrable:hover .livrable__num {
    color: rgba(196,75,45,0.12);
    -webkit-text-stroke-color: var(--terre);
  }
}

/* Partie header dans pote/tout-coordonné */
.partie-header {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--or);
  border: 1px solid var(--or);
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
.partie-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.partie-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  line-height: 1.5;
}

/* ============================================================
   GRILLE TARIFAIRE
   ============================================================ */
.section-tarifs { background: var(--papier); }
.tarifs__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(30,26,21,0.08);
  margin: 32px 0;
}
.tarifs__table thead { background: var(--encre); }
.tarifs__table thead th {
  padding: 14px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--papier);
  opacity: 0.7;
}
.tarifs__table tbody tr { background: var(--blanc-pur); }
.tarifs__table tbody tr:nth-child(even) { background: var(--papier); }
.tarifs__table tbody td {
  padding: 14px 20px;
  font-size: 15px;
  color: var(--encre);
  border-bottom: 1px solid var(--papier-fonce);
}
.tarifs__table tbody td:first-child { font-weight: 600; }
.tarifs__table tbody td .prix { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--terre); }
.tarifs__table tbody td .par-jour { font-size: 12px; color: var(--cuir); display: block; }
/* Survol de ligne premium (desktop) */
@media (min-width: 768px) {
  .tarifs__table tbody tr { transition: background 200ms ease, transform 200ms ease; }
  .tarifs__table tbody tr:hover { background: rgba(196,75,45,0.07); }
}
.tarifs__note { font-size: 14px; color: var(--cuir); font-style: italic; margin-bottom: 16px; }
.tarifs__bandeau {
  background: var(--encre);
  color: var(--papier);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* ============================================================
   INCLUS / PAS INCLUS
   ============================================================ */
.section-inclus { background: var(--papier); }
.inclus__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}
@media (min-width: 768px) { .inclus__grid { grid-template-columns: 1fr 1fr; } }
.inclus__col-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--papier-fonce);
}
.inclus__col-title--oui { color: var(--riziere); }
.inclus__col-title--non { color: var(--cuir); }
.inclus__list { display: flex; flex-direction: column; gap: 12px; }
.inclus__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
}
.inclus__item .crossell-link {
  font-size: 13px;
  color: var(--terre);
  font-weight: 600;
  display: block;
  margin-top: 4px;
}
.inclus__item .crossell-link::before { content: '→ '; }

/* ============================================================
   SECTION QUI JE SUIS (home)
   ============================================================ */
.section-qui { background: var(--papier); }
.qui__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) { .qui__grid { grid-template-columns: 2fr 3fr; } }
.qui__photo {
  border-radius: var(--radius-lg);
  background: var(--papier-fonce);
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.qui__photo-placeholder {
  text-align: center;
  padding: 32px;
  color: var(--cuir);
}
.qui__text p { font-size: 17px; margin-bottom: 16px; }
.qui__text .pull-quote { text-align: left; margin: 24px 0; }

/* ============================================================
   ACCORDÉON FAQ
   ============================================================ */
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-top: 1px solid rgba(139,94,60,0.25); }
.faq__item:last-child { border-bottom: 1px solid rgba(139,94,60,0.25); }
.faq__question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  background: none;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--encre);
  transition: color 150ms;
}
.faq__question:hover { color: var(--terre); }
.faq__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1.5px solid var(--cuir);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--cuir);
  transition: transform 250ms, background 150ms, border-color 150ms;
}
.faq__item.open .faq__icon {
  transform: rotate(45deg);
  background: var(--terre);
  border-color: var(--terre);
  color: var(--papier);
}
.faq__answer {
  display: none;
  padding-bottom: 20px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(30,26,21,0.9);
}
.faq__answer--open { display: block; }
.faq__answer a { color: var(--terre); text-decoration: underline; text-underline-offset: 3px; }
.faq__answer ul { margin: 12px 0 12px 16px; display: flex; flex-direction: column; gap: 6px; }
.faq__answer ul li { list-style: disc; font-size: 15px; }
.faq__answer p + p { margin-top: 12px; }

/* FAQ catégories */
.faq-category { margin-top: 60px; }
.faq-category:first-child { margin-top: 40px; }
.faq-category__title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  color: var(--cuir);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--papier-fonce);
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.section-cta-final {
  background: var(--encre);
  padding: 100px 0 120px;
  text-align: center;
}
@media (min-width: 1024px) { .section-cta-final { padding: 120px 0 140px; } }
.section-cta-final h2 {
  color: var(--papier);
  margin-bottom: 20px;
}
.section-cta-final .line2 { color: var(--or); font-style: italic; display: block; }
.section-cta-final .subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(248,242,229,0.9);
  margin-bottom: 36px;
}
.section-cta-final .cta-group { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-bottom: 20px; }
.section-cta-final .cta-note {
  font-family: var(--font-script);
  font-size: 16px;
  color: var(--cuir);
}

/* ============================================================
   MOCKUPS NOTION
   ============================================================ */
.notion-mockup {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 24px 28px;
  font-family: var(--font-body);
  max-width: 100%;
}
.notion-mockup__bar {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.notion-mockup__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E0E0E0;
}
.notion-mockup__bar span:nth-child(1) { background: #FF5F56; }
.notion-mockup__bar span:nth-child(2) { background: #FFBD2E; }
.notion-mockup__bar span:nth-child(3) { background: #27C93F; }
.notion-mockup__title { font-size: 15px; font-weight: 700; color: #1A1A1A; margin-bottom: 16px; }
.notion-mockup__section { margin-bottom: 12px; }
.notion-mockup__section-title { font-size: 11px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.notion-row { display: flex; align-items: baseline; gap: 8px; padding: 4px 0; border-bottom: 1px solid #F5F5F5; }
.notion-row__icon { font-size: 13px; flex-shrink: 0; }
.notion-row__text { font-size: 13px; color: #555; flex: 1; }
.notion-row__sub { font-size: 11px; color: #999; }
.notion-badge { display: inline-block; background: var(--or); color: var(--encre); font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px; margin-top: 8px; }

/* ============================================================
   SECTION À PROPOS : CHAPITRES
   ============================================================ */
.chapter-section { background: var(--papier); }
.chapter-section--dark { background: var(--encre); }
.chapter-kicker {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cuir);
  display: block;
  margin-bottom: 20px;
}
.chapter-section--dark .chapter-kicker { color: var(--or); }
.chapter-text { font-size: 17px; line-height: 1.8; margin-bottom: 16px; }
.chapter-section--dark .chapter-text { color: rgba(248,242,229,0.9); }
.chapter-cliffhanger { font-style: italic; color: var(--cuir); font-size: 16px; text-align: center; margin-top: 32px; }
.chapter-section--dark .chapter-cliffhanger { color: rgba(248,242,229,0.6); }

/* Micro-récits (cartes histoire) */
.recits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 32px 0;
}
@media (min-width: 768px) { .recits__grid { grid-template-columns: repeat(3, 1fr); } }
.recit-card {
  background: var(--blanc-pur);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 4px 12px rgba(30,26,21,0.07);
}
.recit-card__num { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; color: var(--or); text-transform: uppercase; display: block; margin-bottom: 8px; }
.recit-card__title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--encre); margin-bottom: 12px; }
.recit-card p { font-size: 15px; line-height: 1.65; color: var(--encre); }
.recit-card p + p { margin-top: 8px; }

/* Valeurs */
.valeurs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 40px;
}
@media (min-width: 768px) { .valeurs__grid { grid-template-columns: repeat(2, 1fr); } }
.valeur {
  border-left: 3px solid var(--or);
  padding-left: 20px;
}
.valeur__title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--papier); margin-bottom: 8px; }
.valeur p { font-size: 15px; color: rgba(248,242,229,0.8); line-height: 1.65; }

/* Mini-cards offres (À propos section 6) */
.mini-offres__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 28px 0;
}
@media (min-width: 768px) { .mini-offres__grid { grid-template-columns: repeat(3, 1fr); } }
.mini-offre-card {
  background: var(--blanc-pur);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: 0 2px 8px rgba(30,26,21,0.07);
  position: relative;
}
.mini-offre-card--sweet { border: 2px solid var(--or); }
.mini-offre-card__badge { position: absolute; top: -10px; left: 16px; background: var(--or); color: var(--encre); font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; border-radius: var(--radius-sm); }
.mini-offre-card h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--encre); margin-bottom: 4px; }
.mini-offre-card p { font-size: 13px; color: var(--cuir); font-style: italic; margin-bottom: 6px; }
.mini-offre-card .tarif { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--terre); }

/* ============================================================
   FORMULAIRE
   ============================================================ */
.form-card {
  background: var(--blanc-pur);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(30,26,21,0.1);
  padding: 36px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cuir);
}
.form-group .required { color: var(--terre); margin-left: 2px; }
.form-group .optional { font-size: 12px; font-style: italic; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--cuir); opacity: 0.7; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(139,94,60,0.35);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--papier);
  color: var(--encre);
  transition: border-color 150ms, box-shadow 150ms;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terre);
  box-shadow: 0 0 0 4px rgba(196,75,45,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { text-align: center; margin-top: 8px; }
.form-note {
  font-family: var(--font-script);
  font-size: 15px;
  color: var(--cuir);
  margin-top: 12px;
  text-align: center;
}
.form-success {
  text-align: center;
  padding: 40px 24px;
  display: none;
}
.form-success.visible { display: block; }
.form-success h2 { color: var(--encre); margin-bottom: 16px; }
.form-success p { font-size: 16px; color: var(--encre); margin-bottom: 24px; }

/* ============================================================
   PAGES LÉGALES
   ============================================================ */
.page-legal { background: var(--papier); padding: 80px 0 100px; }
.legal__header { margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--papier-fonce); }
.legal__header .breadcrumb {
  display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--cuir);
  margin-bottom: 24px; transition: color 150ms;
}
.legal__header .breadcrumb:hover { color: var(--terre); }
.legal__header h1 { margin-bottom: 12px; }
.legal__header .subtitle { font-size: 16px; font-style: italic; color: var(--cuir); }
.legal-content { font-size: 16px; line-height: 1.8; }
.legal-content h2 { font-size: 22px; font-weight: 700; color: var(--encre); margin: 40px 0 16px; padding-top: 40px; border-top: 1px solid var(--papier-fonce); }
.legal-content h2:first-child { border-top: none; padding-top: 0; }
.legal-content h3 { font-size: 17px; color: var(--cuir); margin: 24px 0 10px; }
.legal-content p { margin-bottom: 14px; }
.legal-content ul, .legal-content ol { margin: 14px 0 14px 24px; display: flex; flex-direction: column; gap: 8px; }
.legal-content ul li { list-style: disc; }
.legal-content ol li { list-style: decimal; }
.legal-content strong { font-weight: 700; color: var(--encre); }
.legal-content a { color: var(--terre); text-decoration: underline; text-underline-offset: 3px; }
.legal-content a:hover { color: var(--terre-fonce); }
.legal-content .cta-legal { display: inline-block; margin-top: 8px; font-weight: 600; }

/* ============================================================
   SECTIONS BRIEF GRATUIT
   ============================================================ */
.section-pourquoi-brief { background: var(--papier); }
.pourquoi__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}
@media (min-width: 768px) { .pourquoi__grid { grid-template-columns: repeat(3, 1fr); } }
.pourquoi-card {
  background: var(--blanc-pur);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 4px 12px rgba(30,26,21,0.07);
}
.pourquoi-card__num { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; color: var(--or); text-transform: uppercase; display: block; margin-bottom: 10px; }
.pourquoi-card h3 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--encre); margin-bottom: 10px; }
.pourquoi-card p { font-size: 15px; color: var(--encre); line-height: 1.65; }

/* Timeline brief */
.brief-timeline { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.brief-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.brief-step__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--terre);
  color: var(--papier);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}
.brief-step__dur { font-size: 12px; font-weight: 700; color: var(--cuir); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px; display: block; }
.brief-step__title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--encre); margin-bottom: 4px; }
.brief-step__text { font-size: 15px; color: var(--encre); line-height: 1.6; }
.brief-note { font-family: var(--font-script); font-size: 16px; color: var(--cuir); text-align: center; margin-top: 24px; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-terre { color: var(--terre); }
.text-or { color: var(--or); }
.text-cuir { color: var(--cuir); }
.text-papier { color: var(--papier); }
.italic { font-style: italic; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.hidden { display: none; }

/* Screen reader only */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Check / Cross SVG inline */
.icon-check { color: var(--riziere); }
.icon-cross { color: rgba(139,94,60,0.6); }

/* Responsive tables */
@media (max-width: 767px) {
  .tarifs__table thead { display: none; }
  .tarifs__table tbody tr { display: block; background: var(--blanc-pur) !important; border-radius: var(--radius-md); margin-bottom: 12px; box-shadow: 0 2px 8px rgba(30,26,21,0.06); }
  .tarifs__table tbody td { display: flex; justify-content: space-between; align-items: center; padding: 10px 16px; border-bottom: 1px solid var(--papier-fonce); font-size: 14px; }
  .tarifs__table tbody td::before { content: attr(data-label); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cuir); }
}

/* ============================================================
   ANIMATIONS & FINITIONS
   ============================================================ */

@keyframes kmFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: none; }
}
@keyframes kmScrollCue {
  0%   { transform: translate(-50%, 0); opacity: 0.9; }
  50%  { transform: translate(-50%, 8px); opacity: 0.4; }
  100% { transform: translate(-50%, 0); opacity: 0.9; }
}

/* --- Profondeur sur les fonds sombres (dégradés subtils) --- */
.proof-bar {
  background: radial-gradient(120% 160% at 50% 0%, #2a241b 0%, var(--encre) 62%);
}
.section-cta-final {
  background: radial-gradient(130% 120% at 50% -10%, #2c261d 0%, var(--encre) 58%);
}
.section-process--dark {
  background: radial-gradient(120% 130% at 50% 0%, #272219 0%, var(--encre) 60%);
}
.chapter-section--dark {
  background: radial-gradient(120% 130% at 50% 0%, #272219 0%, var(--encre) 60%);
}

/* --- Petit trait déco devant les kickers (dessiné, pas un caractère) --- */
.kicker { position: relative; }
.kicker::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 12px;
  opacity: 0.55;
  border-radius: 2px;
}

/* --- Reflet sur les boutons primaires au survol --- */
.btn--primary { position: relative; overflow: hidden; }
.btn--primary > * { position: relative; z-index: 1; }

@media (prefers-reduced-motion: no-preference) {

  /* Reflet bouton */
  .btn--primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -130%;
    width: 65%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.28), transparent);
    transform: skewX(-20deg);
    transition: left 600ms ease;
    pointer-events: none;
  }
  .btn--primary:hover::after { left: 150%; }

  /* Soulignement animé du menu desktop */
  @media (min-width: 1024px) {
    .nav-desktop > a:not(.btn), .dropdown-toggle { position: relative; }
    .nav-desktop > a:not(.btn)::after,
    .dropdown-toggle::before {
      content: '';
      position: absolute;
      left: 0; right: 0;
      bottom: -6px;
      height: 2px;
      background: var(--terre);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 250ms ease;
    }
    .nav-desktop > a:not(.btn):hover::after,
    .nav-desktop > a:not(.btn).active::after,
    .dropdown:hover .dropdown-toggle::before { transform: scaleX(1); }
  }

  /* --- Entrée animée du hero au chargement --- */
  .hero-video__kicker,
  .hero-video__subtitle,
  .hero-video__ctas,
  .hero-offre__breadcrumb,
  .hero-offre__badge,
  .hero-offre .kicker,
  .hero-offre h1,
  .hero-offre__subtitle,
  .hero-offre__desc,
  .hero-offre__tarif,
  .hero-offre__tarif-baseline,
  .hero-offre__mention,
  .hero-offre__ctas,
  .hero-offre__trust,
  .hero-offre .notion-mockup,
  .hero-apropos .kicker,
  .hero-apropos h1,
  .hero-apropos > .container > div > p,
  .hero-apropos__photo,
  .hero-apropos__caption,
  .hero-compact .kicker,
  .hero-compact h1,
  .hero-compact__subtitle,
  .hero-brief .brief-back-link,
  .hero-brief .kicker,
  .hero-brief h1,
  .hero-brief > .container > div > p,
  .hero-brief__trust,
  .hero-brief .form-card {
    animation: kmFadeUp 700ms cubic-bezier(0.22,0.61,0.36,1) both;
  }

  /* Stagger hero homepage */
  .hero-video__kicker   { animation-delay: 120ms; }
  .hero-video__subtitle { animation-delay: 620ms; }
  .hero-video__ctas     { animation-delay: 760ms; }

  /* Stagger hero offres */
  .hero-offre__breadcrumb { animation-delay: 60ms; }
  .hero-offre__badge      { animation-delay: 100ms; }
  .hero-offre .kicker     { animation-delay: 140ms; }
  .hero-offre h1          { animation-delay: 200ms; }
  .hero-offre__subtitle   { animation-delay: 280ms; }
  .hero-offre__desc       { animation-delay: 340ms; }
  .hero-offre__ctas       { animation-delay: 420ms; }
  .hero-offre__trust      { animation-delay: 500ms; }
  .hero-offre .notion-mockup { animation-delay: 320ms; }

  /* Stagger hero a-propos / compact / brief */
  .hero-apropos h1            { animation-delay: 140ms; }
  .hero-apropos > .container > div > p { animation-delay: 240ms; }
  .hero-apropos__photo        { animation-delay: 200ms; }
  .hero-apropos__caption      { animation-delay: 340ms; }
  .hero-compact h1            { animation-delay: 140ms; }
  .hero-compact__subtitle     { animation-delay: 260ms; }
  .hero-brief h1              { animation-delay: 160ms; }
  .hero-brief__trust          { animation-delay: 340ms; }
  .hero-brief .form-card      { animation-delay: 220ms; }

  /* --- Reveal au scroll (classe ajoutée par le JS) --- */
  .reveal { opacity: 0; }
  .reveal.in-view {
    animation: kmFadeUp 700ms cubic-bezier(0.22,0.61,0.36,1) both;
  }

  /* Indicateur de scroll (hero homepage) */
  .scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    z-index: 3;
    width: 26px;
    height: 42px;
    border: 2px solid rgba(248,242,229,0.6);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 7px;
  }
  .scroll-cue span {
    width: 4px;
    height: 8px;
    border-radius: 2px;
    background: rgba(248,242,229,0.8);
    animation: kmScrollCue 1.6s ease-in-out infinite;
  }
}

/* Indicateur de scroll : caché si pas d'animation ou sur mobile */
.scroll-cue { display: none; }
@media (prefers-reduced-motion: no-preference) and (min-width: 768px) {
  .scroll-cue { display: flex; }
}

/* ============================================================
   INNOVATIONS 2025
   View Transitions · Marquee kinétique · Reveal par masque ·
   Barre de progression · Cartes 3D
   ============================================================ */

/* --- 1. Transitions de page fluides (View Transitions API) --- */
@view-transition { navigation: auto; }
/* Le header et le footer restent stables pendant que le contenu se fond */
.site-header { view-transition-name: site-header; }
.site-footer { view-transition-name: site-footer; }
@media (prefers-reduced-motion: no-preference) {
  ::view-transition-old(root) {
    animation: vtOut 280ms cubic-bezier(0.4,0,0.2,1) both;
  }
  ::view-transition-new(root) {
    animation: vtIn 460ms cubic-bezier(0.22,0.61,0.36,1) both;
  }
}
@keyframes vtOut { to   { opacity: 0; transform: translateY(-10px) scale(0.99); } }
@keyframes vtIn  { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* --- 2. Barre de progression de lecture (injectée en JS) --- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--terre), var(--or));
  z-index: 1200;
  pointer-events: none;
  border-radius: 0 2px 2px 0;
  transition: width 90ms linear;
}

/* --- 3. Hero accueil : révélation des titres par masque (ligne par ligne) --- */
.hero-video h1 .line-mask { display: block; overflow: hidden; padding-bottom: 0.04em; }
.hero-video h1 .line-mask > span { display: block; }
@media (prefers-reduced-motion: no-preference) {
  .hero-video h1 .line-mask > span {
    transform: translateY(115%);
    animation: lineUp 950ms cubic-bezier(0.22,0.61,0.36,1) forwards;
  }
  .hero-video h1 .line-mask:nth-child(1) > span { animation-delay: 260ms; }
  .hero-video h1 .line-mask:nth-child(2) > span { animation-delay: 420ms; }
}
@keyframes lineUp { to { transform: none; } }

/* --- 4. Marquee kinétique des 12 pays --- */
.marquee {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 3vw, 30px) 0;
  background: var(--papier);
  border-top: 1px solid rgba(139,94,60,0.16);
  border-bottom: 1px solid rgba(139,94,60,0.16);
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: clamp(60px, 12vw, 160px);
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0;  background: linear-gradient(90deg, var(--papier), transparent); }
.marquee::after  { right: 0; background: linear-gradient(270deg, var(--papier), transparent); }
.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marqueeScroll 42s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 4.6vw, 54px);
  line-height: 1;
  color: var(--encre);
  padding: 0 26px;
  white-space: nowrap;
}
.marquee__item--ghost {
  color: transparent;
  -webkit-text-stroke: 1.4px var(--cuir);
  text-stroke: 1.4px var(--cuir);
}
.marquee__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--terre);
  flex-shrink: 0;
}
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; gap: 4px 0; }
}

/* --- 5. Cartes d'offres en relief 3D + halo lumineux (desktop) --- */
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .offres__grid { perspective: 1300px; }
  .offre-card {
    transform-style: preserve-3d;
    will-change: transform;
  }
  .offre-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 350ms ease;
    background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 50%), rgba(196,75,45,0.10), transparent 55%);
  }
  .offre-card--sweet::after {
    background: radial-gradient(380px circle at var(--mx, 50%) var(--my, 50%), rgba(212,165,87,0.16), transparent 55%);
  }
  .offre-card:hover::after { opacity: 1; }
  /* Le contenu reste au-dessus du halo */
  .offre-card > * { position: relative; z-index: 2; }
}

/* ============================================================
   ÉQUIVALENT EURO INDICATIF (visiteurs Europe, injecté en JS)
   ============================================================ */
.tarif-cad {
  font-size: 0.52em;
  font-weight: 600;
  color: var(--cuir);
  opacity: 0.9;
  white-space: nowrap;
  letter-spacing: 0;
}
.offre-card--sweet .tarif-cad { color: rgba(248,242,229,0.65); }
.prix-eur {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--riziere);
  margin-top: 2px;
}
.eur-note {
  font-size: 12.5px;
  color: var(--cuir);
  font-style: italic;
  margin-top: 12px;
  line-height: 1.5;
}
.eur-note--center { text-align: center; }

/* ============================================================
   ACCESSIBILITÉ & UX
   ============================================================ */

/* Lien d'évitement : invisible jusqu'au focus clavier */
.skip-link {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 2000;
  background: var(--encre);
  color: var(--papier);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  transform: translateY(-200%);
  transition: transform 150ms ease;
}
.skip-link:focus { transform: none; outline: 3px solid var(--or); outline-offset: 2px; }

/* Focus clavier visible et de marque (sans gêner la souris) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--terre);
  outline-offset: 2px;
  border-radius: 3px;
}
.section-cta-final a:focus-visible,
.chapter-section--dark a:focus-visible,
.section-process--dark a:focus-visible {
  outline-color: var(--or);
}
