/* ============================================================
   VOKUM — Landing page
   Tokens extraits du design handoff (hifi)
   ============================================================ */

:root {
  /* couleurs */
  --ink: #1a1a14;
  --black: #16160f;
  --green: #3d7a57;
  --green-dark: #2d5a43;
  --text-2: #45453c;
  --text-2b: #5a5a50;
  --text-3: #8a8a7e;
  --text-3b: #9a9a8e;
  --bg: #ffffff;
  --border-card: #e9e7df;
  --border-btn: #d8d6cd;
  --timeline: #bcc9bc;
  --quote: #cdd9cd;
  /* layout */
  --container: 1240px;
  --pad-x: 40px;
  /* fonts */
  --display: 'Anton', 'Helvetica Neue', sans-serif;
  --body: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --script: 'Caveat', cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* transitions de page natives (dégrade silencieusement si non supporté) */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation-duration: .18s; }
::view-transition-new(root) { animation-duration: .28s; animation-timing-function: cubic-bezier(.22,.61,.36,1); }

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: #cfe0d2; }

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

a { color: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  width: 100%;
}

/* ---- shared bits ---- */
.icon-arrow {
  width: 1em; height: 1em;
  fill: none; stroke: currentColor; stroke-width: 2.2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform .25s ease;
}

.eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.2px; color: var(--green);
  margin-bottom: 16px;
}
.eyebrow--muted { font-size: 10.5px; letter-spacing: 1px; color: var(--text-3); margin-bottom: 20px; }
.eyebrow--light { color: #a9c9af; letter-spacing: 1.5px; margin-bottom: 18px; }

.h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(30px, 1.6vw + 24px, 42px); letter-spacing: .5px;
  margin: 0; text-transform: uppercase; line-height: 1;
}
.h2--tight { line-height: .98; }
.h2--light { color: #fff; }

.section { padding: 90px 0 80px; }
.section--tight { padding: 50px 0 80px; }
.section__head { margin-bottom: 56px; }
.section__head--center { text-align: center; }
.section__head--split { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 34px; gap: 24px; }

.grid { display: grid; gap: 22px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 700;
  letter-spacing: .6px; text-decoration: none;
  border-radius: 10px; cursor: pointer;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn .icon-arrow { font-size: 14px; }
.btn--dark { background: var(--black); color: #fff; padding: 13px 20px; font-size: 11.5px; border: 0; }
.btn--dark:hover { background: #000; transform: translateY(-2px); box-shadow: 0 12px 24px -12px rgba(0,0,0,.5); }
.btn--lg { padding: 16px 26px; font-size: 12.5px; border-radius: 11px; }
.btn--lg .icon-arrow { font-size: 15px; }
.btn--outline { background: transparent; color: var(--ink); border: 1px solid var(--border-btn); padding: 13px 18px; font-size: 11px; letter-spacing: .5px; }
.btn--outline .icon-arrow { font-size: 13px; }
.btn--outline:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--black); padding: 15px 28px; font-size: 12px; border-radius: 11px; }
.btn--light:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -14px rgba(0,0,0,.55); }
.btn:hover .icon-arrow { transform: translate(2px, -2px); }
.btn:active { transform: translateY(0) scale(.98); transition-duration: .08s; }

/* focus clavier propre, cohérent avec l'accent */
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }
.btn:focus-visible { outline-offset: 2px; }

.link-underline {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink); font-size: 12px; font-weight: 700;
  letter-spacing: .6px; text-decoration: none;
  border-bottom: 1.5px solid var(--ink); padding-bottom: 3px;
}
.link-underline .icon-arrow { font-size: 14px; }
.link-underline:hover .icon-arrow { transform: translate(2px, -2px); }

/* ============ HEADER ============ */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 243, 228, .72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow .3s ease, background .3s ease;
}
.header.is-scrolled { box-shadow: 0 1px 0 rgba(0,0,0,.06); background: rgba(255,255,255,.82); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 22px; padding-bottom: 22px;
}
.brand { font-family: var(--body); font-weight: 800; font-size: 24px; letter-spacing: -.5px; text-decoration: none; color: var(--ink); }
.brand__dot { color: var(--green); }
.nav { display: flex; gap: 36px; }
.nav a {
  position: relative; font-size: 12.5px; font-weight: 600;
  letter-spacing: .6px; color: var(--ink); text-decoration: none;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 1.5px; background: var(--ink);
  transform: scaleX(0); transform-origin: right; transition: transform .3s ease;
}
.nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 22px; height: 2px; background: var(--ink); transition: transform .3s ease, opacity .3s ease; }
.burger.is-open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.burger.is-open span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 45;
  background: #f6f0e4;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 26px; text-align: center; }
.mobile-menu nav a { font-size: 20px; font-weight: 700; letter-spacing: 1px; text-decoration: none; color: var(--ink); }
.mobile-menu .btn { justify-content: center; margin-top: 14px; }

/* ============ HERO ============ */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(100deg, #f8f4ec 0%, #f6f1e6 40%, #efe7d9 100%);
  min-height: calc(100vh - 76px);
  min-height: calc(100svh - 76px);
  display: flex; align-items: center;
}
/* photo plein bord à droite, fondue dans le fond crème */
.hero__media {
  position: absolute; right: -2%; bottom: 0; width: min(1140px, 74%);
  z-index: 0; pointer-events: none;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,.35) 16%, rgba(0,0,0,.85) 32%, #000 44%),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,.6) 10%, #000 24%);
  mask-image:
    linear-gradient(90deg, transparent 0%, rgba(0,0,0,.35) 16%, rgba(0,0,0,.85) 32%, #000 44%),
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,.6) 10%, #000 24%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
.hero__img { width: 100%; height: auto; max-width: none; }
/* fondu bas vers la section suivante */
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 14%;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.55));
  z-index: 1; pointer-events: none;
}
.hero > .container { width: 100%; position: relative; z-index: 2; }
.hero__grid {
  display: grid; grid-template-columns: minmax(0, 620px);
  align-items: center; padding-top: 40px; padding-bottom: 64px;
}
.hero__left { padding-top: 20px; }
.hero__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(46px, 4.6vw + 24px, 100px); line-height: .94; letter-spacing: .5px;
  margin: 0; text-transform: uppercase;
}
.hero__script {
  font-family: var(--script); font-weight: 700;
  font-size: clamp(34px, 2.6vw + 20px, 62px); color: var(--green-dark); margin: 2px 0 0 6px;
}
.hero__lead { font-size: 17px; line-height: 1.6; color: var(--text-2); max-width: 400px; margin: 32px 0 0; }
.hero__actions { display: flex; align-items: center; gap: 30px; margin-top: 36px; flex-wrap: wrap; }

.trust { margin-top: 70px; }
.trust__logos { display: flex; align-items: center; gap: 30px; flex-wrap: wrap; opacity: .82; }

/* marquee défilement continu (activé par site.js qui duplique la rangée) */
.trust__viewport { overflow: hidden; max-width: min(520px, 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.trust__viewport .trust__logos { flex-wrap: nowrap; width: max-content; padding-right: 30px; animation: trustScroll 26s linear infinite; }
.trust__viewport:hover .trust__logos { animation-play-state: paused; }
.trust__viewport .logo { white-space: nowrap; }
@keyframes trustScroll { to { transform: translateX(-50%); } }
.logo { font-family: var(--body); font-weight: 800; font-size: 19px; color: var(--ink); display: inline-flex; align-items: center; gap: 5px; }
.logo--sm { font-weight: 700; font-size: 17px; }
.logo--script { font-family: var(--script); font-weight: 700; font-size: 22px; }
.logo__dot { color: var(--green); }
.logo__dots { display: inline-flex; gap: 2px; }
.logo__dots i { width: 7px; height: 7px; background: var(--ink); border-radius: 50%; display: inline-block; }
.logo__sq { width: 14px; height: 14px; background: var(--ink); border-radius: 3px; display: inline-block; }

/* ============ SERVICES ============ */
.service {
  border: 1px solid var(--border-card); border-radius: 16px;
  padding: 26px 24px 30px; min-height: 230px;
  display: flex; flex-direction: column;
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.service:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -24px rgba(40,50,40,.4); border-color: #ddd9cc; }
.service__icon {
  width: 50px; height: 50px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 50px; color: var(--green-dark);
}
.service__icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.service__title { font-family: var(--body); font-weight: 800; font-size: 14px; letter-spacing: .5px; margin-bottom: 12px; }
.service__desc { font-size: 12.5px; line-height: 1.55; color: var(--text-2b); flex: 1; }
.service__arrow { font-size: 16px; margin-top: 18px; color: var(--ink); }
.service__arrow .icon-arrow { transition: transform .25s ease; }
.service:hover .service__arrow .icon-arrow { transform: translate(3px, -3px); }

/* ============ SERVICES — cartes numérotées ============ */
.section__sub { font-size: 15px; line-height: 1.6; color: var(--text-3); max-width: 560px; margin: 18px auto 0; }
.section__head--center .section__sub { text-align: center; }

.scards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 980px; margin: 0 auto; }
.scard--offer { padding: 34px 32px 30px; }
.scard__list { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-direction: column; gap: 11px; }
.scard__list li { position: relative; padding-left: 24px; font-size: 13.5px; line-height: 1.5; color: var(--text-2); }
.scard__list li::before { content: ""; position: absolute; left: 2px; top: 4px; width: 12px; height: 7px; border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg); }
.scard {
  display: flex; flex-direction: column;
  border: 1px solid var(--border-card); border-radius: 16px;
  padding: 24px 22px 22px; background: #fff;
  text-decoration: none; color: inherit;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.scard:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -26px rgba(40,50,40,.35); border-color: #ddd9cc; }
.scard__top { display: flex; align-items: flex-start; justify-content: space-between; }
.scard__icon {
  width: 50px; height: 50px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center; color: var(--green-dark);
}
.scard__icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.scard__num { font-family: var(--display); font-size: 44px; line-height: 1; color: #e4e1d5; letter-spacing: 1px; }
.scard__rule { display: block; width: 34px; height: 2px; background: var(--ink); margin: 18px 0 22px; }
.scard__title { font-family: var(--body); font-weight: 800; font-size: 15.5px; letter-spacing: .4px; margin: 0 0 12px; text-transform: uppercase; }
.scard__desc { font-size: 13px; line-height: 1.6; color: var(--text-2b); margin: 0; flex: 1; }
.scard__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; }
.scard__more { font-size: 11px; font-weight: 700; letter-spacing: .8px; color: var(--green); }
.scard__foot .icon-arrow { font-size: 15px; color: var(--green); transition: transform .25s ease; }
.scard:hover .scard__foot .icon-arrow { transform: translate(3px, -3px); }

.svc-note { max-width: 640px; margin: 30px auto 0; text-align: center; font-size: 12.5px; line-height: 1.7; color: var(--text-3); }

/* bande de réassurance sous les cartes */
.perks { display: flex; margin-top: 44px; border-top: 1px solid var(--border-card); padding-top: 30px; }
.perk {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 10px;
  font-size: 13px; font-weight: 600; color: var(--text-2);
  border-left: 1px solid var(--border-card); padding: 4px 12px;
}
.perk:first-child { border-left: 0; }
.perk svg { width: 19px; height: 19px; flex: none; fill: none; stroke: var(--green); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* ============ PROCESSUS ============ */
.process { background: linear-gradient(180deg, #eef3ee, #e9f0ea); padding: 78px 0; }
.process__top { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 56px; }
.process__underline { margin-top: 6px; }
.process__media { border-radius: 16px; height: 230px; overflow: hidden; box-shadow: 0 20px 40px -20px rgba(40,60,40,.3); }
.process__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.timeline__line { position: absolute; left: 24px; right: 24px; top: 14px; height: 2px; background: var(--timeline); z-index: 0; }
.timeline__progress { position: absolute; left: 24px; top: 14px; height: 2px; width: 0; max-width: calc(100% - 48px); background: var(--green); z-index: 0; transition: width .15s linear; }
.step__dot { transition: background .35s ease, color .35s ease, border-color .35s ease; }
.step { position: relative; z-index: 1; }
.step__dot {
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; font-family: var(--body);
  border: 3px solid #eef3ee; margin-bottom: 16px;
}
.step__dot--active { background: var(--green); color: #fff; }
.step__dot--idle { background: #fff; color: var(--green); }
.step__title { font-family: var(--body); font-weight: 800; font-size: 13px; letter-spacing: .5px; margin-bottom: 8px; }
.step__desc { font-size: 12px; line-height: 1.5; color: #566356; }

/* ============ RÉALISATIONS ============ */
.work { display: block; text-decoration: none; color: inherit; }
.work__thumb { border-radius: 14px; aspect-ratio: 1440 / 900; overflow: hidden; position: relative; border: 1px solid var(--border-card); box-shadow: 0 18px 40px -26px rgba(40,50,40,.35); }
.work__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.work:hover .work__thumb img { transform: scale(1.05); }
.work__row { display: flex; justify-content: space-between; align-items: flex-start; margin-top: 16px; }
.work__cat { font-size: 9.5px; font-weight: 700; letter-spacing: 1px; color: var(--text-3b); margin-bottom: 7px; }
.work__name { font-family: var(--body); font-weight: 700; font-size: 16px; }
.work__arrow { font-size: 15px; }
.work__arrow .icon-arrow { transition: transform .25s ease; }
.work:hover .work__arrow .icon-arrow { transform: translate(3px, -3px); }
.work__metric { font-size: 12px; color: var(--green); font-weight: 600; margin-top: 8px; display: inline-flex; align-items: center; gap: 5px; }
.work__metric .icon-arrow { font-size: 12px; }

/* ============ CTA BANNER ============ */
.cta-wrap { padding-bottom: 70px; background: #fff; }
.cta {
  position: relative; border-radius: 18px; overflow: hidden;
  aspect-ratio: 2172 / 724;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff;
}
.cta__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta__veil { position: absolute; inset: 0; background: radial-gradient(65% 85% at 52% 50%, rgba(9,20,14,.50) 0%, rgba(9,20,14,.18) 70%, rgba(9,20,14,.05) 100%); }
.cta__content { position: relative; z-index: 1; padding: 0 40px; }
.cta__content .h2 { font-size: 48px; }
.cta__script { font-family: var(--script); font-weight: 600; font-size: 26px; color: #cfe0d2; margin: 6px 0 30px; }

/* ============ FOOTER ============ */
.footer { padding: 20px 0 50px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; }
.brand--footer { font-size: 22px; margin-bottom: 14px; }
.footer__brand p { font-size: 12.5px; line-height: 1.6; color: #6a6a5e; max-width: 240px; margin: 0; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__title { font-size: 10px; font-weight: 700; letter-spacing: 1px; color: var(--text-3b); margin-bottom: 6px; }
.footer__col a, .footer__muted { font-size: 12.5px; color: #4a4a40; text-decoration: none; }
.footer__col a { transition: color .2s ease; }
.footer__col a:hover { color: var(--ink); }
.footer__social { display: flex; gap: 10px; margin-top: 10px; }
.footer__social a {
  width: 26px; height: 26px; border-radius: 6px; background: #ecebe4;
  display: flex; align-items: center; justify-content: center; color: #4a4a40;
  transition: background .2s ease, color .2s ease;
}
.footer__social a:hover { background: var(--green); color: #fff; }
.footer__social svg { width: 13px; height: 13px; fill: currentColor; }

/* ============ REVEAL ANIM ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
.reveal.is-in { opacity: 1; transform: none; }

/* cascade douce dans les grilles */
.grid > .reveal:nth-child(2), .timeline > .reveal:nth-child(3), .posts > .reveal:nth-child(2), .scards > .reveal:nth-child(2) { transition-delay: .08s; }
.grid > .reveal:nth-child(3), .timeline > .reveal:nth-child(4), .posts > .reveal:nth-child(3), .scards > .reveal:nth-child(3) { transition-delay: .16s; }
.grid > .reveal:nth-child(4), .timeline > .reveal:nth-child(5), .posts > .reveal:nth-child(4), .scards > .reveal:nth-child(4) { transition-delay: .24s; }
.scards > .reveal:nth-child(5) { transition-delay: .32s; }
.posts > .reveal:nth-child(5) { transition-delay: .32s; }
.posts > .reveal:nth-child(6) { transition-delay: .4s; }

/* dessin des traits manuscrits (flèche hero, soulignés) au reveal */
.draw path { stroke-dasharray: var(--len, 160); stroke-dashoffset: var(--len, 160); }
.is-in .draw path, .draw.is-in path { animation: drawIn .9s cubic-bezier(.4,0,.2,1) forwards; }
.is-in .draw path:nth-child(2) { animation-delay: .55s; }
@keyframes drawIn { to { stroke-dashoffset: 0; } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .trust__viewport .trust__logos { animation: none; }
  .draw path { stroke-dasharray: none; stroke-dashoffset: 0; animation: none; }
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .cta__content .h2 { font-size: clamp(28px, 3vw + 18px, 38px); }

}

@media (max-width: 900px) {
  :root { --pad-x: 24px; }
  .nav { display: none; }
  .header__cta { display: none; }
  .burger { display: flex; }

  /* mobile : photo repassée sous le texte, plus de fondu latéral */
  .hero { display: block; min-height: 0; padding-top: 8px; }
  .hero::after { display: none; }
  .hero__grid { grid-template-columns: 1fr; padding-top: 24px; padding-bottom: 36px; }
  .hero__left { padding-top: 0; }
  .hero__media {
    position: relative; width: 100%; inset: auto; margin-top: 4px;
    -webkit-mask-image: none; mask-image: none;
  }
  .hero__img { height: auto; object-fit: contain; }

  .process__top { grid-template-columns: 1fr; gap: 28px; }
  .process__media { height: 220px; }

  .scards { grid-template-columns: 1fr; }
  .perks { flex-wrap: wrap; gap: 18px 0; }
  .perk { flex: 1 1 45%; justify-content: flex-start; }
  .perk:nth-child(3) { border-left: 0; }

  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .timeline__line { display: none; }

  .section__head--split { flex-direction: column; align-items: flex-start; }
  .cta { aspect-ratio: auto; min-height: 360px; padding: 50px 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px 30px; }
}

@media (max-width: 560px) {
  .grid--4 { grid-template-columns: 1fr; }
  .scards { grid-template-columns: 1fr; }
  .perk { flex: 1 1 100%; border-left: 0; }
  .timeline { grid-template-columns: 1fr; }
  .hero__actions { gap: 18px; }
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============ POURQUOI UN SITE WEB (accueil) ============ */
.why-script {
  font-family: var(--script); font-weight: 600;
  font-size: clamp(24px, 1.2vw + 18px, 32px);
  color: var(--green); margin-top: 2px;
}
.why-underline { display: block; margin: 10px auto 0; }
.why-intro {
  max-width: 620px; margin: 22px auto 0; text-align: center;
  font-size: 15px; line-height: 1.75; color: var(--text-2b);
}
.why-foot { text-align: center; margin-top: 56px; }
.why-foot__script { font-family: var(--script); font-weight: 600; font-size: clamp(26px, 1.4vw + 20px, 36px); color: var(--green); }
.why-foot__text { max-width: 560px; margin: 12px auto 26px; font-size: 14px; line-height: 1.7; color: var(--text-2b); }




/* ============ OFFRE SPOTLIGHT (accueil, section services) ============ */
.offer {
  display: grid; grid-template-columns: 1.08fr .92fr;
  border: 1px solid var(--border-card); border-radius: 20px;
  background: #fff; overflow: hidden;
  box-shadow: 0 30px 60px -42px rgba(40,50,40,.35);
  max-width: 1080px; margin: 0 auto;
}
.offer__body { padding: 46px 48px 42px; display: flex; flex-direction: column; align-items: flex-start; }
.offer__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #e3ead8; color: var(--green-dark);
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.1px;
  padding: 7px 14px; border-radius: 999px;
}
.offer__badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.offer__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(26px, 1.2vw + 20px, 34px); letter-spacing: .5px;
  text-transform: uppercase; margin: 22px 0 12px;
}
.offer__desc { font-size: 14px; line-height: 1.7; color: var(--text-2b); margin: 0 0 24px; max-width: 460px; }
.offer__list {
  list-style: none; padding: 0; margin: 0 0 30px;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 26px;
  width: 100%;
}
.offer__list li { position: relative; padding-left: 24px; font-size: 13px; line-height: 1.5; color: var(--text-2); }
.offer__list li::before {
  content: ""; position: absolute; left: 2px; top: 4px; width: 12px; height: 7px;
  border-left: 2px solid var(--green); border-bottom: 2px solid var(--green); transform: rotate(-45deg);
}
.offer__cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; width: 100%;
  border-top: 1px solid var(--border-card); padding-top: 26px; margin-top: auto;
}
.offer__price { display: flex; flex-direction: column; gap: 2px; }
.offer__price-from { font-size: 10px; font-weight: 700; letter-spacing: 1.2px; color: var(--text-3); }
.offer__price-val { font-family: var(--display); font-size: 42px; line-height: 1.05; letter-spacing: .5px; color: var(--ink); }
.offer__price-note { font-family: var(--script); font-weight: 600; font-size: 17px; color: var(--green); }
.offer__media { position: relative; background: #f6f0e4; min-height: 100%; }
.offer__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.offer-addon {
  display: flex; align-items: center; gap: 20px;
  max-width: 1080px; margin: 18px auto 0;
  background: #f6f0e4; border: 1px solid #ece4d2; border-radius: 16px;
  padding: 20px 28px; text-decoration: none; color: inherit;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.offer-addon:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -24px rgba(40,50,40,.3); border-color: #e0d6bf; }
.offer-addon__icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: #f3dcd4; color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
}
.offer-addon__icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.offer-addon__text { flex: 1; font-size: 13px; line-height: 1.6; color: var(--text-2b); }
.offer-addon__text strong { color: var(--ink); font-weight: 800; font-size: 13.5px; letter-spacing: .3px; text-transform: uppercase; }
.offer-addon__price { font-family: var(--display); font-size: 20px; letter-spacing: .5px; white-space: nowrap; }
.offer-addon .icon-arrow { font-size: 16px; color: var(--green); flex-shrink: 0; }
.offer-addon:hover .icon-arrow { transform: translate(3px, -3px); }

@media (max-width: 980px) {
  .offer { grid-template-columns: 1fr; }
  .offer__media { min-height: 240px; order: -1; }
  .offer__media img { position: absolute; }
  .offer__body { padding: 34px 28px 32px; }
}
@media (max-width: 560px) {
  .offer__list { grid-template-columns: 1fr; }
  .offer__cta { flex-direction: column; align-items: flex-start; }
  .offer-addon { flex-wrap: wrap; }
}

/* ---- comparateur sans/avec ---- */
.vs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 26px;
  align-items: stretch; max-width: 980px; margin: 52px auto 0;
}
.vs__col { border-radius: 20px; padding: 36px 38px 34px; }
.vs__col--off { background: #fff; border: 1px solid var(--border-card); }
.vs__col--on {
  background: var(--green-dark); color: #f2efe4;
  box-shadow: 0 34px 64px -36px rgba(45,90,67,.6);
  position: relative;
}
.vs__tag {
  display: inline-block; font-size: 10.5px; font-weight: 700;
  letter-spacing: 1.3px; margin-bottom: 10px; color: var(--text-3);
}
.vs__col--on .vs__tag { color: #a9c9af; }
.vs__title {
  font-family: var(--display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(20px, .8vw + 16px, 26px); letter-spacing: .5px; margin: 0 0 24px;
}
.vs__col--off .vs__title { color: var(--text-3b); }
.vs__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; }
.vs__list li {
  display: flex; align-items: baseline; gap: 14px;
  padding: 13px 0; font-size: 14.5px; line-height: 1.45; font-weight: 500;
}
.vs__col--off .vs__list li { color: var(--text-3); border-bottom: 1px dashed var(--border-card); }
.vs__col--off .vs__list li:last-child { border-bottom: none; }
.vs__col--on .vs__list li { color: #f2efe4; font-weight: 600; border-bottom: 1px dashed rgba(255,255,255,.14); }
.vs__col--on .vs__list li:last-child { border-bottom: none; }
.vs__x, .vs__check { flex-shrink: 0; width: 16px; height: 16px; position: relative; top: 2px; }
.vs__x::before, .vs__x::after {
  content: ""; position: absolute; left: 7px; top: 1px; width: 2px; height: 14px;
  background: #cfccc0; border-radius: 2px;
}
.vs__x::before { transform: rotate(45deg); }
.vs__x::after { transform: rotate(-45deg); }
.vs__check::before {
  content: ""; position: absolute; left: 1px; top: 3px; width: 12px; height: 7px;
  border-left: 2.4px solid #7fd89a; border-bottom: 2.4px solid #7fd89a; transform: rotate(-45deg);
}
.vs__note {
  position: absolute; top: -36px; right: 8px;
  font-family: var(--script); font-weight: 700; font-size: 22px;
  color: var(--green); transform: rotate(-3deg); white-space: nowrap;
}
@media (max-width: 900px) {
  .vs { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
  .vs__col { padding: 28px 26px 26px; }
  .vs__note { top: -32px; right: 8px; font-size: 19px; }
}

/* ---- harmonisation home ---- */
.hero__proof {
  list-style: none; padding: 0; margin: 36px 0 0;
  display: flex; flex-wrap: wrap; gap: 12px;
}
.hero__proof li {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid rgba(233,231,223,.9); border-radius: 999px;
  padding: 10px 18px 10px 14px;
  font-size: 13.5px; font-weight: 600; color: var(--text-2);
  box-shadow: 0 6px 18px -10px rgba(40,50,40,.28);
}
.hero__proof li::before {
  content: ""; width: 11px; height: 6px; flex-shrink: 0; position: relative; top: -1px;
  border-left: 2.2px solid var(--green); border-bottom: 2.2px solid var(--green); transform: rotate(-45deg);
}
.process__script {
  font-family: var(--script); font-weight: 600;
  font-size: clamp(19px, .8vw + 15px, 24px); color: var(--green);
  margin-top: 14px;
}
.step__day {
  font-size: 10px; font-weight: 700; letter-spacing: 1.2px;
  color: var(--green); margin: 14px 0 6px;
}
.cta__reassure {
  margin: 16px 0 0; font-size: 12.5px; letter-spacing: .3px;
  color: rgba(255,255,255,.58);
}
@media (max-width: 560px) {
  .hero__proof { gap: 8px; }
  .hero__proof li { padding: 7px 13px 7px 10px; font-size: 12px; }
}

/* ============ ANIMATION D'OUVERTURE (accueil) ============ */
:root { --intro-delay: 1.05s; }
.intro-seen { --intro-delay: .1s; }

.intro {
  position: fixed; inset: 0; z-index: 200;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  animation: introOut .65s cubic-bezier(.72, 0, .25, 1) forwards;
  animation-delay: .95s;
  pointer-events: none;
}
.intro__brand {
  font-family: var(--body); font-weight: 800; font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -.5px; color: #f6f0e4;
  opacity: 0; transform: translateY(14px);
  animation: heroUp .55s cubic-bezier(.22,.61,.36,1) forwards .1s;
}
.intro__brand em { font-style: normal; color: #7fd89a; }
.intro-seen .intro { display: none; }
@keyframes introOut { to { transform: translateY(-101%); } }

/* cascade du hero */
.hero__title .hline { display: block; overflow: hidden; padding: .09em .04em; margin: -.09em -.04em; }
.hero__title .hline > span {
  display: block; transform: translateY(115%);
  animation: heroLine .8s cubic-bezier(.2, .65, .25, 1) forwards;
}
.hero__title .hline:nth-child(1) > span { animation-delay: calc(var(--intro-delay) + .0s); }
.hero__title .hline:nth-child(2) > span { animation-delay: calc(var(--intro-delay) + .09s); }
.hero__title .hline:nth-child(3) > span { animation-delay: calc(var(--intro-delay) + .18s); }
@keyframes heroLine { to { transform: translateY(0); } }

.hero__script, .hero__lead, .hero__actions, .hero__proof {
  opacity: 0; transform: translateY(18px);
  animation: heroUp .7s cubic-bezier(.22,.61,.36,1) forwards;
}
.hero__script  { animation-delay: calc(var(--intro-delay) + .32s); }
.hero__lead    { animation-delay: calc(var(--intro-delay) + .42s); }
.hero__actions { animation-delay: calc(var(--intro-delay) + .52s); }
.hero__proof   { animation-delay: calc(var(--intro-delay) + .62s); }
@keyframes heroUp { to { opacity: 1; transform: translateY(0); } }

/* la photo apparaît en fondu simple (aucun zoom) */
.hero__media {
  opacity: 0;
  animation: heroMedia 1.2s cubic-bezier(.22,.61,.36,1) forwards;
  animation-delay: calc(var(--intro-delay) + .1s);
}
@keyframes heroMedia { to { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .intro { display: none; }
  .hero__title .hline > span, .hero__script, .hero__lead, .hero__actions,
  .hero__proof, .hero__media { animation: none; opacity: 1; transform: none; }
}

/* ============ AFFICHAGE DU CONTENU (global) ============ */
/* typographie : lignes de titres équilibrées, pas de mots orphelins */
h1, h2, h3, .h2, .hero__title, .page-hero__title, .vs__title, .offer__title { text-wrap: balance; }
p, .section__sub, .hero__lead, .page-hero__lead { text-wrap: pretty; }

/* entrée en cascade des heros de pages intérieures */
.page-hero .breadcrumb,
.page-hero__title,
.page-hero__script,
.page-hero__lead,
.page-hero__actions {
  opacity: 0; transform: translateY(16px);
  animation: heroUp .65s cubic-bezier(.22,.61,.36,1) forwards;
}
.page-hero .breadcrumb  { animation-delay: .05s; }
.page-hero__title       { animation-delay: .12s; }
.page-hero__script      { animation-delay: .22s; }
.page-hero__lead        { animation-delay: .32s; }
.page-hero__actions     { animation-delay: .42s; }

@media (prefers-reduced-motion: reduce) {
  .page-hero .breadcrumb, .page-hero__title, .page-hero__script,
  .page-hero__lead, .page-hero__actions { animation: none; opacity: 1; transform: none; }
  h1, h2, h3, .h2 { text-wrap: initial; }
}
