/* =====================================================================
   Sud Recrutement — feuille de style principale
   Reprise fidèle du design Claude Design « Sud Recrutement V2 »
   ===================================================================== */

:root {
  --cream:        #FBF7EA;   /* fond de page */
  --surface:      #FFFDF6;   /* cartes claires */
  --ink:          #1C3A2A;   /* vert profond, texte et aplats */
  --ink-soft:     #33504A;   /* texte secondaire */
  --muted:        #5B6F66;   /* texte tertiaire */
  --terracotta:   #B8461F;   /* accent chaud / hover */
  --terracotta-2: #C8512A;   /* cadre du visuel principal */
  --yellow:       #F5E04A;
  --mint:         #8FE3C6;
  --lilac:        #E4D2F6;
  --pink:         #F9D2DD;
  --on-dark:      #C8D5CC;   /* texte secondaire sur vert */
  --on-warm:      #FCE7DC;   /* texte secondaire sur terracotta */

  --sans:    'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --display: 'Bricolage Grotesque', 'Helvetica Neue', Arial, sans-serif;

  --wrap: 1180px;
}

/* ------------------------------- base ------------------------------- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

h1, h2, h3 { text-wrap: balance; }

a { color: var(--ink); }
a:hover { color: var(--terracotta); }

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

/* doit rester après les règles `display` ci-dessus : les styles auteur
   l'emportent sinon sur le [hidden] de la feuille de style du navigateur */
[hidden] { display: none !important; }

.icon { display: block; }

.wrap { max-width: var(--wrap); margin: 0 auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  padding: 12px 18px; background: var(--ink); color: var(--cream);
  font-weight: 600; text-decoration: none; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; color: var(--cream); }

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

@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.rise      { animation: rise .7s ease both; }
.rise--1   { animation-delay: .08s; }
.rise--2   { animation-delay: .16s; }
.rise--3   { animation-delay: .24s; }
.rise--4   { animation-delay: .32s; }

.kicker {
  margin: 0;
  font: 600 12px/1 var(--display);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.kicker--muted { color: var(--muted); }

/* ------------------------------ boutons ----------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 26px;
  border: 0; border-radius: 10px;
  font-family: inherit; font-weight: 600; font-size: 16px; line-height: 1;
  text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

.btn--dark    { background: var(--ink); color: var(--cream); }
.btn--dark:hover { background: var(--terracotta); color: #FFFFFF; }

.btn--outline {
  padding: 15px 26px;
  border: 1.5px solid var(--ink); color: var(--ink);
  background: rgba(255, 253, 246, .7);
}
.btn--outline:hover { background: var(--ink); color: var(--cream); }

.btn--outline-light {
  border: 1.5px solid var(--surface); color: var(--surface); background: transparent;
}
.btn--outline-light:hover { background: var(--surface); color: var(--terracotta); }

.btn--mint    { background: var(--mint); color: var(--ink); }
.btn--mint:hover { background: var(--yellow); color: var(--ink); }

.btn--block   { display: flex; width: 100%; }

.btn--sm      { padding: 12px 18px; border-radius: 9px; font-size: 14px; }
.btn--ghost {
  padding: 11px 16px; border: 1.5px solid var(--ink); border-radius: 9px;
  color: var(--ink); background: var(--surface); font-size: 14px;
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }

/* ------------------------------ en-tête ----------------------------- */

.site-header {
  position: sticky; top: 0; z-index: 50;
  padding: 14px 20px 8px;
  background: linear-gradient(var(--cream) 70%, rgba(251, 247, 234, 0));
}

.site-header__bar {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 14px 28px;
  max-width: var(--wrap); margin: 0 auto;
  padding: 10px 12px 10px 16px;
  background: var(--surface);
  border: 1.5px dashed rgba(28, 58, 42, .35);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(28, 58, 42, .06);
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__mark {
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 9px;
  background: var(--yellow); color: var(--ink);
}
.brand__mark--sm { width: 34px; height: 34px; border-radius: 8px; }
.brand__name { font: 800 21px/1 var(--display); letter-spacing: -.02em; }
.brand__name--sm { font-size: 19px; }

.site-nav {
  display: flex; flex-wrap: wrap; flex: 1; justify-content: center;
  gap: 10px 26px; min-width: 0; font-size: 15px;
}
.site-nav a { text-decoration: none; }

.site-header__actions {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 10px; margin-left: auto;
}

.burger {
  display: none;
  margin-left: auto;
  width: 44px; height: 40px; padding: 0;
  background: transparent; border: 1.5px solid rgba(28, 58, 42, .35); border-radius: 9px;
  cursor: pointer;
}
.burger span {
  display: block; width: 20px; height: 2px; margin: 4px auto;
  background: var(--ink); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.site-header.is-open .burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-header.is-open .burger span:nth-child(2) { opacity: 0; }
.site-header.is-open .burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* -------------------------------- hero ------------------------------- */

.hero { position: relative; overflow: hidden; padding: clamp(44px, 6vw, 88px) 20px 0; }

.hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(28, 58, 42, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 58, 42, .09) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 40%, #000 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 60% 70% at 50% 40%, #000 20%, transparent 100%);
}

.hero__inner { position: relative; max-width: var(--wrap); margin: 0 auto; text-align: center; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0; padding: 7px 14px 7px 10px;
  border-radius: 6px; font-size: 14px; font-weight: 600; color: var(--ink);
}
.badge--yellow { background: var(--yellow); }
.badge--lilac  { background: var(--lilac); padding: 6px 12px 6px 9px; font-size: 13.5px; }

.hero__title {
  margin: 28px auto 0; max-width: 1000px;
  font: 800 clamp(44px, 6.6vw, 88px)/.98 var(--display);
  letter-spacing: -.035em;
}

.mark-highlight {
  display: inline-block;
  padding: 0 .18em; margin: 0 -.06em;
  background: var(--yellow); border-radius: .12em;
  transform: rotate(-1.5deg);
}

.hero__lead {
  margin: 30px auto 0; max-width: 760px;
  font-size: clamp(18px, 1.6vw, 22px); line-height: 1.55; color: var(--ink-soft);
}

.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 36px; }

.logo-strip {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 14px 32px;
  max-width: 900px; margin: 52px auto 0;
  padding-bottom: 22px; border-bottom: 1.5px solid var(--ink);
}
.logo-strip__label { font-size: 14px; color: var(--ink-soft); }
.logo-strip__logos {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 14px 30px; color: var(--muted);
}
.logo-1 { font: 700 19px/1 var(--display); letter-spacing: .08em; }
.logo-2 { font: italic 600 21px/1 var(--sans); }
.logo-3 { font: 600 18px/1 ui-monospace, Menlo, monospace; letter-spacing: -.02em; }
.logo-4 { font: 800 20px/1 var(--display); letter-spacing: -.04em; }
.logo-5 { font: 500 19px/1 'Helvetica Neue', Arial, sans-serif; letter-spacing: .14em; }

/* --------------------------- visuel principal ------------------------ */

.showcase { padding: clamp(40px, 5vw, 72px) 20px 0; }
.showcase__inner { position: relative; max-width: var(--wrap); margin: 0 auto; }

.showcase__frame {
  padding: 14px; background: var(--terracotta-2); border-radius: 32px;
  box-shadow: 0 30px 60px rgba(28, 58, 42, .14);
}
.showcase__media {
  position: relative; width: 100%; aspect-ratio: 16 / 9; min-height: 320px;
  border-radius: 20px; overflow: hidden; background: #EFE7D2;
}
.showcase__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.note {
  position: absolute; width: 230px;
  padding: 18px 18px 16px;
  color: var(--ink); border-radius: 6px;
  box-shadow: 0 18px 40px rgba(28, 58, 42, .18);
  pointer-events: none;
}
.note--tl { left: -8px; top: -34px; background: var(--yellow); transform: rotate(-5deg); }
.note--br { right: -8px; bottom: -30px; background: var(--lilac); transform: rotate(4deg); }

.note__tape {
  position: absolute; top: -10px; left: 50%;
  width: 74px; height: 20px;
  transform: translateX(-50%) rotate(2deg);
  background: rgba(255, 255, 255, .55); border: 1px solid rgba(28, 58, 42, .08);
}
.note--br .note__tape { transform: translateX(-50%) rotate(-3deg); }

.note__kicker { margin: 0; font: 600 10.5px/1 var(--display); letter-spacing: .1em; text-transform: uppercase; }
.note__title  { margin: 10px 0 0; font: 800 19px/1.1 var(--display); letter-spacing: -.02em; }
.note__text   { margin: 8px 0 0; font-size: 13.5px; line-height: 1.45; }

/* --------------------------- preuve + chiffres ----------------------- */

.proof { padding: clamp(88px, 10vw, 140px) 20px clamp(64px, 8vw, 110px); }

.pull-quote { max-width: 880px; margin: 0 auto; text-align: center; }
.pull-quote__avatar {
  display: grid; place-items: center; margin: 0 auto;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--mint); border: 3px solid var(--cream); color: var(--ink);
}
.pull-quote blockquote {
  margin: 22px 0 0;
  font: 500 clamp(24px, 3vw, 38px)/1.25 var(--display); letter-spacing: -.02em;
}
.pull-quote blockquote strong { font-weight: 800; }
.pull-quote figcaption { margin-top: 18px; font-size: 15px; color: var(--ink-soft); }

.stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 18px; margin: 64px 0 0; padding: 0; list-style: none;
}
.stat {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between; gap: 24px;
  min-height: 190px; padding: 30px 28px 28px; border-radius: 18px;
}
.stat--mint   { background: var(--mint); }
.stat--pink   { background: var(--pink); }
.stat--lilac  { background: var(--lilac); }
.stat--yellow { background: var(--yellow); }

.stat__value { font: 800 clamp(40px, 4vw, 56px)/1 var(--display); letter-spacing: -.04em; }
.stat__label { max-width: 220px; font-size: 15px; line-height: 1.5; }

.stat__deco { position: absolute; border-radius: 50%; }
.stat__deco--a { right: -50px; top: -60px;    width: 170px; height: 170px; border: 3px solid rgba(28, 58, 42, .18); }
.stat__deco--b { right: -40px; bottom: -70px; width: 170px; height: 170px; border: 3px solid rgba(28, 58, 42, .18); }
.stat__deco--c { right: -60px; top: 20px;     width: 170px; height: 170px; border: 3px dashed rgba(28, 58, 42, .22); }
.stat__deco--d { right: -30px; top: -50px;    width: 140px; height: 140px; background: rgba(28, 58, 42, .08); }

/* ------------------------------- méthode ----------------------------- */

.section-head h2 {
  margin: 0;
  font: 800 clamp(34px, 4.6vw, 60px)/1.02 var(--display); letter-spacing: -.03em;
}
.section-head--center { max-width: 720px; margin: 0 auto; text-align: center; }
.section-head--center > p { margin: 22px auto 0; max-width: 600px; font-size: 17.5px; line-height: 1.6; }

.underline-solid {
  text-decoration: underline; text-decoration-color: var(--yellow);
  text-decoration-thickness: .12em; text-underline-offset: .14em;
}
.underline-wavy {
  text-decoration: underline wavy;
  text-decoration-thickness: .08em; text-underline-offset: .12em;
}
.underline-wavy--mint  { text-decoration-color: var(--mint); }
.underline-wavy--lilac { text-decoration-color: var(--lilac); }

.method {
  position: relative; overflow: hidden; scroll-margin-top: 90px;
  padding: clamp(80px, 9vw, 130px) 20px;
  background: var(--terracotta); color: var(--surface);
}
.method .wrap { position: relative; }
.method__lines {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255, 253, 246, .09) 1px, transparent 1px);
  background-size: 100% 44px;
}
.method .section-head--center > p { color: var(--on-warm); }

.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 34px 26px; margin: 72px 0 0; padding: 0 12px; list-style: none;
}
.step {
  position: relative;
  padding: 26px 24px 24px; border-radius: 6px; color: var(--ink);
  box-shadow: 0 24px 50px rgba(60, 20, 5, .25);
}
.step--yellow { background: var(--yellow); transform: rotate(-3deg); }
.step--lilac  { background: var(--lilac);  transform: rotate(2deg) translateY(14px); }
.step--mint   { background: var(--mint);   transform: rotate(-2deg); }
.step--pink   { background: var(--pink);   transform: rotate(3deg) translateY(10px); }

.step .note__tape { width: 84px; height: 22px; top: -11px; }
.step--yellow .note__tape { transform: translateX(-50%) rotate(2deg); }
.step--lilac  .note__tape { transform: translateX(-50%) rotate(-3deg); }
.step--mint   .note__tape { transform: translateX(-50%) rotate(3deg); }
.step--pink   .note__tape { transform: translateX(-50%) rotate(-2deg); }

.step__kicker { margin: 0; font: 600 10.5px/1 var(--display); letter-spacing: .1em; text-transform: uppercase; }
.step h3 { margin: 16px 0 0; font: 800 24px/1.1 var(--display); letter-spacing: -.02em; }
.step p:not(.step__kicker) { margin: 12px 0 0; font-size: 14.5px; line-height: 1.55; }

.method__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 76px; }

/* ------------------------------ expertises --------------------------- */

.expertise { scroll-margin-top: 90px; padding: clamp(80px, 9vw, 130px) 20px; }

.section-head--split {
  display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap;
  gap: 20px 40px;
}
.section-head--split h2 { max-width: 560px; }
.section-head--split > p { margin: 0; max-width: 400px; font-size: 17px; line-height: 1.6; color: var(--ink-soft); }

.cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
  gap: 16px; margin: 52px 0 0; padding: 0; list-style: none;
}
.card {
  padding: 28px 26px 30px;
  background: var(--surface);
  border: 1px solid rgba(28, 58, 42, .14); border-radius: 18px;
  transition: border-color .18s ease;
}
.card:hover { border-color: var(--ink); }
.card__icon {
  display: grid; place-items: center;
  width: 44px; height: 44px; border-radius: 10px; color: var(--ink);
}
.card__icon--mint   { background: var(--mint); }
.card__icon--yellow { background: var(--yellow); }
.card__icon--lilac  { background: var(--lilac); }
.card__icon--pink   { background: var(--pink); }
.card h3 { margin: 20px 0 0; font: 800 22px/1.15 var(--display); letter-spacing: -.02em; }
.card p  { margin: 10px 0 0; font-size: 15px; line-height: 1.55; color: var(--ink-soft); }

.banner {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 24px 40px;
  margin-top: 16px; padding: clamp(30px, 4vw, 48px);
  background: var(--ink); color: var(--cream); border-radius: 18px;
}
.banner__deco {
  position: absolute; right: -60px; top: -80px; width: 280px; height: 280px;
  color: var(--mint); opacity: .14; transform: rotate(12deg); pointer-events: none;
}
.banner__text { position: relative; max-width: 620px; }
.banner__text h3 { margin: 0; font: 800 clamp(26px, 3vw, 38px)/1.1 var(--display); letter-spacing: -.025em; }
.banner__text p  { margin: 12px 0 0; font-size: 16.5px; line-height: 1.55; color: var(--on-dark); }
.banner .btn { position: relative; }

/* ------------------------------ honoraires --------------------------- */

.fees { scroll-margin-top: 90px; padding: 0 20px clamp(80px, 9vw, 130px); }
.fees__panel {
  position: relative; overflow: hidden;
  max-width: var(--wrap); margin: 0 auto;
  padding: clamp(36px, 5vw, 72px);
  background: var(--yellow); color: var(--ink); border-radius: 28px;
}
.fees__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(28, 58, 42, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 58, 42, .1) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: linear-gradient(90deg, transparent 35%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 35%, #000 100%);
}
.fees__cols {
  position: relative;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: clamp(32px, 4vw, 64px); align-items: center;
}
.fees__title {
  margin: 18px 0 0;
  font: 800 clamp(40px, 5.6vw, 76px)/.98 var(--display); letter-spacing: -.04em;
}
.fees__card {
  padding: clamp(24px, 3vw, 36px);
  background: var(--surface); border-radius: 18px;
  box-shadow: 0 20px 50px rgba(28, 58, 42, .12);
}
.fees__card > p { margin: 0; font-size: 17px; line-height: 1.6; color: var(--ink-soft); }

.ticks { display: grid; gap: 12px; margin: 22px 0 0; padding: 0; list-style: none; font-size: 15.5px; line-height: 1.5; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; }
.tick {
  flex: none; margin-top: 6px; width: 10px; height: 10px;
  border-radius: 50%; border: 1.5px solid var(--ink);
}
.tick--mint  { background: var(--mint); }
.tick--lilac { background: var(--lilac); }
.tick--pink  { background: var(--pink); }
.fees__card .btn--block { margin-top: 28px; padding: 16px 24px; }

/* ------------------------------ témoignages -------------------------- */

.testimonials { scroll-margin-top: 90px; padding: 0 20px clamp(80px, 9vw, 130px); }
.testimonials__title {
  margin: 0; text-align: center;
  font: 800 clamp(34px, 4.6vw, 60px)/1.02 var(--display); letter-spacing: -.03em;
}
.testimonials__layout {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: clamp(32px, 5vw, 80px); align-items: center; margin-top: 56px;
}

.quote { margin: 0; }
.quote__company { margin: 0; font: italic 500 15px/1 var(--sans); color: var(--muted); }
.quote blockquote {
  margin: 22px 0 0;
  font: 500 clamp(22px, 2.4vw, 32px)/1.3 var(--display); letter-spacing: -.02em;
}
.quote figcaption { margin-top: 22px; font-size: 15px; line-height: 1.5; color: var(--ink-soft); }
.quote figcaption strong { display: block; font-weight: 600; color: var(--ink); }

.carousel-controls { display: flex; align-items: center; gap: 18px; margin-top: 36px; }
.round-btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--ink); background: transparent; color: var(--ink);
  font: 500 20px/1 var(--sans); cursor: pointer;
  transition: background-color .18s ease, color .18s ease;
}
.round-btn:hover { background: var(--ink); color: var(--cream); }

.dots { display: flex; gap: 8px; margin-left: 8px; }
.dot {
  width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%;
  background: rgba(28, 58, 42, .25); cursor: pointer;
  transition: background-color .18s ease;
}
.dot.is-active { background: var(--ink); }

.testimonials__media { position: relative; width: 100%; max-width: 460px; margin: 0 auto; aspect-ratio: 1 / 1; }
.blob {
  position: absolute; left: -6%; top: 6%; width: 86%; height: 86%;
  background: var(--mint);
  border-radius: 58% 42% 55% 45% / 45% 58% 42% 55%;
}
.dashed-circle {
  position: absolute; right: -4%; bottom: -2%; width: 44%; height: 44%;
  border: 3px dashed rgba(28, 58, 42, .3); border-radius: 50%;
}
.testimonials__photo {
  position: absolute; left: 10%; top: 0; width: 82%; height: 88%;
  border-radius: 36px; overflow: hidden; transform: rotate(3deg);
  box-shadow: 0 30px 60px rgba(28, 58, 42, .18);
}
.testimonials__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------------------------------- FAQ ------------------------------ */

.faq { scroll-margin-top: 90px; padding: 0 20px clamp(80px, 9vw, 130px); }
.faq__inner { max-width: 860px; margin: 0 auto; }
.faq .section-head--center { max-width: none; }
.faq .section-head--center h2 { margin: 18px 0 0; }
.faq .section-head--center > p { margin: 14px 0 0; font-size: 16px; color: var(--ink-soft); }

.accordion { display: grid; gap: 6px; margin-top: 44px; }
.acc-item {
  padding: 0 20px; border-radius: 14px;
  border-bottom: 1.5px dashed rgba(28, 58, 42, .25);
  background: transparent;
  transition: background-color .2s ease;
}
.acc-item.is-open.acc-item--lilac  { background: var(--lilac); }
.acc-item.is-open.acc-item--mint   { background: var(--mint); }
.acc-item.is-open.acc-item--yellow { background: var(--yellow); }
.acc-item.is-open.acc-item--pink   { background: var(--pink); }

.acc-item h3 { margin: 0; font: inherit; }
.acc-trigger {
  display: flex; width: 100%; justify-content: space-between; align-items: center;
  gap: 16px; padding: 20px 0;
  background: none; border: 0; cursor: pointer; text-align: left;
  font: 700 17px/1.35 var(--display); color: var(--ink);
}
.acc-icon { flex: none; font: 500 22px/1 var(--sans); }
.acc-panel p { margin: -4px 0 22px; max-width: 720px; font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); }

/* -------------------------------- contact ---------------------------- */

.contact { scroll-margin-top: 90px; padding: 0 20px clamp(80px, 9vw, 130px); }
.contact__panel {
  position: relative; overflow: hidden;
  max-width: var(--wrap); margin: 0 auto;
  padding: clamp(40px, 6vw, 88px) clamp(24px, 4vw, 64px);
  background: var(--ink); color: var(--cream); border-radius: 28px;
}
.contact__deco { position: absolute; pointer-events: none; }
.contact__deco--a { left: -90px; top: -90px; width: 300px; height: 300px; color: var(--lilac); opacity: .18; transform: rotate(-14deg); }
.contact__deco--b { right: -60px; bottom: -110px; width: 320px; height: 320px; color: var(--yellow); opacity: .16; transform: rotate(18deg); }
.contact__circle {
  position: absolute; right: 12%; top: -40px; width: 160px; height: 160px;
  border: 3px dashed rgba(143, 227, 198, .35); border-radius: 50%;
}
.contact__inner { position: relative; max-width: 760px; margin: 0 auto; text-align: center; }
.contact__inner h2 {
  margin: 0; font: 800 clamp(36px, 5vw, 66px)/1 var(--display); letter-spacing: -.035em;
}
.mint { color: var(--mint); }
.contact__inner > p { margin: 22px auto 0; max-width: 600px; font-size: 17.5px; line-height: 1.6; color: var(--on-dark); }
.contact__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 36px; }
.contact__actions .btn--mint { padding: 17px 28px; }
.contact__actions .btn--outline-light { padding: 16px 28px; border-color: rgba(251, 247, 234, .6); color: var(--cream); }
.contact__actions .btn--outline-light:hover { background: var(--cream); color: var(--ink); }
.contact__meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px;
  margin-top: 34px; font-size: 14.5px; color: var(--on-dark);
}
.contact__meta a { color: var(--cream); text-decoration: none; overflow-wrap: anywhere; }
.contact__meta a:hover { color: var(--mint); }

/* ------------------------------ pied de page ------------------------- */

.site-footer { overflow: hidden; padding: 0 20px; }
.site-footer__cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: 36px 32px;
  max-width: var(--wrap); margin: 0 auto;
  padding-top: 24px; border-top: 1.5px solid var(--ink);
}
.site-footer__blurb { margin: 16px 0 0; max-width: 300px; font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); }
.site-footer__links { display: grid; gap: 10px; margin-top: 16px; font-size: 15px; line-height: 1.5; }
.site-footer__links a { text-decoration: none; overflow-wrap: anywhere; }
.site-footer__links span { color: var(--ink-soft); }

.site-footer__wordmark {
  max-width: var(--wrap); margin: 40px auto 0;
  height: .62em; overflow: hidden;
  font: 800 min(15vw, 232px)/1 var(--display); letter-spacing: -.05em;
  white-space: nowrap; color: var(--ink);
}

/* ------------------------------- responsive -------------------------- */

@media (max-width: 900px) {
  .burger { display: block; }
  .site-nav,
  .site-header__actions { display: none; }
  .site-header.is-open .site-nav {
    display: flex; flex-direction: column; align-items: flex-start;
    flex-basis: 100%; gap: 4px;
    padding-top: 6px; border-top: 1.5px dashed rgba(28, 58, 42, .2);
  }
  .site-header.is-open .site-nav a { padding: 8px 0; font-size: 16px; }
  .site-header.is-open .site-header__actions {
    display: flex; flex-basis: 100%; margin-left: 0; padding-bottom: 4px;
  }
  .site-header.is-open .site-header__actions .btn { flex: 1; }
}

@media (max-width: 760px) {
  .note { width: 168px; padding: 14px 14px 13px; }
  .note--tl { top: -26px; }
  .note--br { bottom: -22px; }
  .note__tape { width: 58px; height: 16px; top: -8px; }
  .note__title { font-size: 16px; }
  .note__text { font-size: 12px; }
  .showcase__media { min-height: 240px; }
  .steps { padding: 0; }
  .step { transform: none !important; }
  .method__cta { margin-top: 48px; }
}

@media (max-width: 520px) {
  .note { width: 142px; }
  .note__title { font-size: 14.5px; }
  .note__text { font-size: 11.5px; }
  .carousel-controls { gap: 12px; }
  .contact__circle { display: none; }
}


/* =====================================================================
   ANIMATIONS
   Toutes les animations sont neutralisées par le bloc
   `prefers-reduced-motion` en fin de fichier.
   ===================================================================== */

/* ------------------------- apparition au scroll ---------------------- */
/* L'état masqué n'est appliqué que si JS est actif (classe `js` posée
   dans le <head>), pour que le contenu reste lisible sans JavaScript.   */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity   .75s cubic-bezier(.22, .61, .36, 1) var(--reveal-delay, 0ms),
    transform .75s cubic-bezier(.22, .61, .36, 1) var(--reveal-delay, 0ms);
}
.js [data-reveal="fade"] { transform: none; }
.js [data-reveal].is-in   { opacity: 1; transform: none; }

/* ------------------------------ parallaxe ---------------------------- */
/* Les valeurs sont écrites en style inline par le JS ; ces règles ne
   servent qu'à préparer la composition.                                 */

[data-parallax] { will-change: transform; }

/* ------------------------- halo suivant le curseur ------------------- */

[data-spotlight] { position: relative; }
[data-spotlight]::after {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%),
              rgba(143, 227, 198, .16), transparent 68%);
  opacity: 0; transition: opacity .45s ease; pointer-events: none;
}
[data-spotlight]:hover::after { opacity: 1; }

/* ---------------------------- tilt au curseur ------------------------ */

[data-tilt] { transition: transform .35s cubic-bezier(.22, .61, .36, 1); }

/* ------------------------- micro-interactions ------------------------ */

.btn { transition: background-color .18s ease, color .18s ease,
                   border-color .18s ease, transform .25s cubic-bezier(.22,.61,.36,1),
                   box-shadow .25s ease; }
.btn:hover  { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(28, 58, 42, .16); }
.btn:active { transform: translateY(0); box-shadow: none; }
.btn--outline-light:hover,
.contact__actions .btn--outline-light:hover { box-shadow: 0 10px 22px rgba(0, 0, 0, .18); }

/* soulignement animé de la navigation */
.site-nav a { position: relative; padding-bottom: 2px; }
.site-nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1.5px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .3s cubic-bezier(.22, .61, .36, 1);
}
.site-nav a:hover::after { transform: scaleX(1); }
.site-nav a[aria-current="page"] { font-weight: 600; }
.site-nav a[aria-current="page"]::after { transform: scaleX(1); background: var(--terracotta); }

/* logo : la petite étoile tourne légèrement */
.brand__mark svg { transition: transform .5s cubic-bezier(.22, .61, .36, 1); }
.brand:hover .brand__mark svg { transform: rotate(90deg); }

/* cartes d'expertise */
.card { transition: border-color .25s ease, transform .3s cubic-bezier(.22,.61,.36,1),
                    box-shadow .3s ease; }
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(28, 58, 42, .09); }
.card__icon svg { transition: transform .45s cubic-bezier(.22, .61, .36, 1); }
.card:hover .card__icon svg { transform: rotate(90deg) scale(1.08); }

/* post-it : se redressent légèrement au survol */
.step { transition: transform .45s cubic-bezier(.22, .61, .36, 1), box-shadow .45s ease; }
.step:hover { box-shadow: 0 30px 60px rgba(60, 20, 5, .32); }
.step--yellow:hover { transform: rotate(-1deg) translateY(-6px); }
.step--lilac:hover  { transform: rotate(1deg) translateY(8px); }
.step--mint:hover   { transform: rotate(-0.5deg) translateY(-6px); }
.step--pink:hover   { transform: rotate(1.5deg) translateY(4px); }

/* chiffres clés : le cercle décoratif respire */
.stat__deco { transition: transform .6s cubic-bezier(.22, .61, .36, 1); }
.stat:hover .stat__deco { transform: scale(1.12) rotate(8deg); }

/* liens de pied de page */
.site-footer__links a { position: relative; }
.site-footer__links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .28s cubic-bezier(.22, .61, .36, 1);
}
.site-footer__links a:hover::after { transform: scaleX(1); }

/* carrousel */
.round-btn svg, .round-btn { transition: background-color .18s ease, color .18s ease,
                                         transform .28s cubic-bezier(.22,.61,.36,1); }
.round-btn:hover { transform: scale(1.08); }
.dot { transition: background-color .18s ease, transform .28s cubic-bezier(.22,.61,.36,1); }
.dot:hover { transform: scale(1.35); }
.dot.is-active { transform: scale(1.15); }

/* ouverture de la FAQ et changement de témoignage */
@keyframes panelIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
@keyframes softIn  { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.acc-item.is-open .acc-panel { animation: panelIn .38s cubic-bezier(.22, .61, .36, 1) both; }
.acc-trigger span:first-child { transition: transform .3s cubic-bezier(.22, .61, .36, 1); }
.acc-trigger:hover span:first-child { transform: translateX(3px); }
.acc-icon { transition: transform .3s cubic-bezier(.22, .61, .36, 1); }
.acc-item.is-open .acc-icon { transform: rotate(180deg); }

.quote:not([hidden])       { animation: softIn .45s cubic-bezier(.22, .61, .36, 1) both; }
[data-photo]:not([hidden]) { animation: softIn .5s  cubic-bezier(.22, .61, .36, 1) both; }

/* =====================================================================
   PAGES INTÉRIEURES
   ===================================================================== */

/* ----------------------------- hero de page -------------------------- */

.page-hero {
  position: relative; overflow: hidden;
  padding: clamp(40px, 5vw, 76px) 20px clamp(28px, 4vw, 48px);
}
.page-hero__inner { position: relative; max-width: 940px; margin: 0 auto; text-align: center; }
.page-hero h1 {
  margin: 26px auto 0; max-width: 900px;
  font: 800 clamp(38px, 5.4vw, 72px)/1 var(--display); letter-spacing: -.035em;
}
.page-hero__lead {
  margin: 26px auto 0; max-width: 680px;
  font-size: clamp(17px, 1.4vw, 20px); line-height: 1.6; color: var(--ink-soft);
}
.page-hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 34px; }

/* --------------------------- sections communes ----------------------- */

.section { padding: clamp(56px, 7vw, 104px) 20px; }
.section--tight { padding-top: clamp(24px, 3vw, 44px); }
.section--flush { padding-bottom: 0; }

.section-head--left { max-width: 720px; }
.section-head--left > p { margin: 20px 0 0; font-size: 17px; line-height: 1.6; color: var(--ink-soft); }

.lede { margin: 0; font-size: clamp(19px, 1.9vw, 24px); line-height: 1.5; }

/* texte long sur deux colonnes */
.prose-cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(24px, 3vw, 48px); margin-top: 34px;
}
.prose-cols p { margin: 0 0 16px; font-size: 16px; line-height: 1.7; color: var(--ink-soft); }
.prose-cols p:last-child { margin-bottom: 0; }

/* bloc image + texte */
.split {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.split__media {
  position: relative; border-radius: 24px; overflow: hidden;
  aspect-ratio: 4 / 3; background: #EFE7D2;
  box-shadow: 0 26px 54px rgba(28, 58, 42, .14);
}
.split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split__frame { padding: 12px; background: var(--terracotta-2); border-radius: 30px; }
.split__frame .split__media { box-shadow: none; border-radius: 20px; }

/* ------------------------------ convictions -------------------------- */

.values {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 16px; margin: 44px 0 0; padding: 0; list-style: none;
}
.value {
  position: relative; overflow: hidden;
  padding: 28px 26px 30px; border-radius: 18px; color: var(--ink);
}
.value--mint { background: var(--mint); }
.value--lilac { background: var(--lilac); }
.value--pink { background: var(--pink); }
.value--yellow { background: var(--yellow); }
.value__num { margin: 0; font: 800 15px/1 var(--display); letter-spacing: .04em; opacity: .55; }
.value h3 { margin: 14px 0 0; font: 800 21px/1.15 var(--display); letter-spacing: -.02em; }
.value p { margin: 10px 0 0; font-size: 15px; line-height: 1.55; }

/* -------------------------------- équipe ----------------------------- */

.team {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 16px; margin: 44px 0 0; padding: 0; list-style: none;
}
.member {
  padding: 28px 26px 30px; background: var(--surface);
  border: 1px solid rgba(28, 58, 42, .14); border-radius: 18px;
  transition: border-color .25s ease, transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease;
}
.member:hover { border-color: var(--ink); transform: translateY(-4px); box-shadow: 0 16px 34px rgba(28, 58, 42, .09); }
.member__avatar {
  display: grid; place-items: center; width: 56px; height: 56px;
  border-radius: 50%; color: var(--ink);
}
.member__avatar svg { transition: transform .45s cubic-bezier(.22, .61, .36, 1); }
.member:hover .member__avatar svg { transform: rotate(90deg); }
.member h3 { margin: 18px 0 0; font: 800 20px/1.15 var(--display); letter-spacing: -.02em; }
.member__role { margin: 6px 0 0; font-size: 14px; color: var(--muted); }
.member p:last-child { margin: 12px 0 0; font-size: 15px; line-height: 1.55; color: var(--ink-soft); }

/* ------------------------- formats d'accompagnement ------------------ */

.offers {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 16px; margin: 44px 0 0; padding: 0; list-style: none;
}
.offer {
  display: flex; flex-direction: column;
  padding: 30px 28px 32px; background: var(--surface);
  border: 1px solid rgba(28, 58, 42, .14); border-radius: 18px;
  transition: border-color .25s ease, transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease;
}
.offer:hover { border-color: var(--ink); transform: translateY(-4px); box-shadow: 0 16px 34px rgba(28, 58, 42, .09); }
.offer__tag {
  align-self: flex-start; margin: 0; padding: 6px 11px; border-radius: 6px;
  font: 600 12px/1 var(--display); letter-spacing: .08em; text-transform: uppercase;
}
.offer__tag--mint { background: var(--mint); }
.offer__tag--lilac { background: var(--lilac); }
.offer__tag--yellow { background: var(--yellow); }
.offer h3 { margin: 18px 0 0; font: 800 23px/1.15 var(--display); letter-spacing: -.02em; }
.offer > p { margin: 12px 0 0; font-size: 15.5px; line-height: 1.6; color: var(--ink-soft); }
.offer .ticks { margin-top: 20px; font-size: 15px; }

/* ------------------------------- timeline ---------------------------- */

.timeline { margin: 52px 0 0; padding: 0; list-style: none; }
.tl-step {
  position: relative;
  display: grid; grid-template-columns: 84px 1fr; gap: 0 28px;
  padding-bottom: 44px;
}
.tl-step:last-child { padding-bottom: 0; }
.tl-step::before {
  content: ''; position: absolute; left: 41px; top: 76px; bottom: 8px; width: 1.5px;
  background: repeating-linear-gradient(rgba(28,58,42,.35) 0 6px, transparent 6px 12px);
}
.tl-step:last-child::before { display: none; }
.tl-step__num {
  display: grid; place-items: center; width: 84px; height: 84px;
  border-radius: 20px; color: var(--ink);
  font: 800 30px/1 var(--display); letter-spacing: -.03em;
  transition: transform .45s cubic-bezier(.22, .61, .36, 1);
}
.tl-step:hover .tl-step__num { transform: rotate(-4deg) scale(1.04); }
.tl-step__num--yellow { background: var(--yellow); }
.tl-step__num--lilac  { background: var(--lilac); }
.tl-step__num--mint   { background: var(--mint); }
.tl-step__num--pink   { background: var(--pink); }
.tl-step__body { padding-top: 4px; }
.tl-step h3 { margin: 0; font: 800 clamp(24px, 2.6vw, 32px)/1.1 var(--display); letter-spacing: -.025em; }
.tl-step > .tl-step__body > p { margin: 12px 0 0; max-width: 640px; font-size: 16.5px; line-height: 1.65; color: var(--ink-soft); }
.tl-step__meta {
  display: flex; flex-wrap: wrap; gap: 8px 10px; margin: 18px 0 0; padding: 0; list-style: none;
}
.tl-step__meta li {
  padding: 7px 13px; border-radius: 999px;
  border: 1.5px dashed rgba(28, 58, 42, .3); font-size: 13.5px; color: var(--ink-soft);
}

/* --------------------------- offres / postes ------------------------- */

.jobs { display: grid; gap: 12px; margin: 44px 0 0; padding: 0; list-style: none; }
.job {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 14px 28px;
  padding: 24px 26px; background: var(--surface);
  border: 1px solid rgba(28, 58, 42, .14); border-radius: 16px;
  transition: border-color .25s ease, transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease;
}
.job:hover { border-color: var(--ink); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(28, 58, 42, .08); }
.job h3 { margin: 0; font: 800 20px/1.2 var(--display); letter-spacing: -.02em; }
.job__meta { display: flex; flex-wrap: wrap; gap: 6px 18px; margin: 8px 0 0; font-size: 14.5px; color: var(--ink-soft); }
.job__tag {
  padding: 6px 12px; border-radius: 999px; background: var(--mint);
  font: 600 12px/1 var(--display); letter-spacing: .06em; text-transform: uppercase; white-space: nowrap;
}
.job__tag--lilac { background: var(--lilac); }
.job__tag--yellow { background: var(--yellow); }

/* ------------------------------ formulaire --------------------------- */

.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(24px, 4vw, 56px); align-items: start;
}
.form-card {
  padding: clamp(26px, 3.4vw, 40px);
  background: var(--surface); border-radius: 22px;
  box-shadow: 0 20px 50px rgba(28, 58, 42, .1);
}
.field { display: grid; gap: 7px; margin-bottom: 18px; }
.field label { font-size: 14.5px; font-weight: 600; }
.field .hint { font-size: 13px; color: var(--muted); font-weight: 400; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px;
  font-family: inherit; font-size: 15.5px; color: var(--ink);
  background: var(--cream);
  border: 1.5px solid rgba(28, 58, 42, .2); border-radius: 10px;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.field textarea { min-height: 132px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: rgba(28, 58, 42, .45); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ink); background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(143, 227, 198, .45);
}
.field-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr)); gap: 0 16px; }
.form-note { margin: 4px 0 18px; font-size: 13px; line-height: 1.5; color: var(--muted); }
.form-status { margin: 14px 0 0; font-size: 14.5px; line-height: 1.5; color: var(--ink-soft); }

.info-list { display: grid; gap: 22px; margin: 32px 0 0; padding: 0; list-style: none; }
.info-list li { display: grid; gap: 4px; }
.info-list .kicker { color: var(--muted); }
.info-list a, .info-list span { font-size: 17px; line-height: 1.5; }
.info-list a { text-decoration: none; overflow-wrap: anywhere; }

.side-card {
  margin-top: 32px; padding: 26px 26px 28px;
  background: var(--lilac); border-radius: 18px;
}
.side-card h3 { margin: 0; font: 800 20px/1.15 var(--display); letter-spacing: -.02em; }
.side-card p { margin: 10px 0 18px; font-size: 15px; line-height: 1.55; }

/* --------------------------- bandeau CTA de fin ---------------------- */

.cta-band { padding: 0 20px clamp(72px, 8vw, 120px); }

/* ------------------------------- responsive -------------------------- */

@media (max-width: 620px) {
  .tl-step { grid-template-columns: 64px 1fr; gap: 0 18px; }
  .tl-step__num { width: 64px; height: 64px; border-radius: 16px; font-size: 24px; }
  .tl-step::before { left: 31px; top: 58px; }
  .job { align-items: flex-start; }
}


/* ---------------------------- petits utilitaires --------------------- */

.h-md {
  margin: 16px 0 0;
  font: 800 clamp(30px, 3.4vw, 44px)/1.08 var(--display); letter-spacing: -.03em;
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15.5px; text-decoration: none; color: var(--ink);
}
.link-arrow > span { border-bottom: 1.5px solid currentColor; padding-bottom: 2px; }
.link-arrow::after { content: '\2192'; transition: transform .3s cubic-bezier(.22, .61, .36, 1); }
.link-arrow:hover::after { transform: translateX(5px); }

/* le halo du curseur doit passer derrière le contenu des panneaux sombres */
.contact__inner, .banner__text, .banner .btn { z-index: 1; }

/* =====================================================================
   ACCESSIBILITÉ — mouvement réduit
   Doit rester le dernier bloc du fichier.
   ===================================================================== */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  /* le contenu reste visible : le JS n'active ni reveal ni parallaxe */
  .js [data-reveal] { opacity: 1; transform: none; }
  [data-spotlight]::after { display: none; }
  .btn:hover, .card:hover, .member:hover, .offer:hover, .job:hover,
  .round-btn:hover, .dot:hover { transform: none; }
}
