/* ============================================
   REGA — Studio web normand
   Palette : crème + orange + brun-orange (zéro noir)
   ============================================ */

:root {
  --cream:        #FAF5EE;
  --cream-2:      #F4ECDF;
  --orange:       #EE4E27;
  --orange-deep:  #C73E1D;
  --orange-soft:  #FCD9CB;
  --ink:          #2A100A;   /* brun-orange très foncé, jamais noir */
  --ink-soft:     #5C3526;
  --ink-mute:     #8C6553;
  --line:         rgba(42, 16, 10, 0.12);
  --shadow-sm:    0 2px 8px rgba(42, 16, 10, 0.06);
  --shadow-md:    0 12px 40px rgba(42, 16, 10, 0.08);
  --shadow-lg:    0 30px 80px rgba(238, 78, 39, 0.18);
  --radius:       18px;
  --radius-lg:    28px;
  --radius-xl:    40px;
}

* { margin:0; padding:0; box-sizing:border-box; }

html {
  scroll-behavior: smooth;
  /* Scrollbar toujours réservée → empêche le décalage horizontal
     quand le preloader/lightbox alterne overflow hidden/auto sur body */
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

/* ============================================
   PRELOADER — full-screen orange + curtain reveal
   ============================================ */

body.is-loading { overflow: hidden; }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: translateY(0);
  transition: transform 1.1s cubic-bezier(.77,0,.175,1) .25s;
  will-change: transform;
}

/* Grain papier subtil */
.preloader__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.55'/></svg>");
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.preloader__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Wrapper : porte l'animation de flottement (boucle infinie) */
.preloader__logo-wrap {
  animation: pl-float 4.5s ease-in-out 1s infinite;
  display: inline-block;
  will-change: transform;
}

/* Logo : pop d'entrée + scale au lift, indépendamment du float du wrapper */
.preloader__logo {
  width: clamp(240px, 30vw, 400px);
  height: auto;
  transform: scale(.7);
  opacity: 0;
  animation: pl-pop .85s cubic-bezier(.34,1.56,.64,1) .15s forwards;
  filter: drop-shadow(0 14px 40px rgba(42,16,10,0.18));
  transition: transform .3s ease-out;
  display: block;
}

@keyframes pl-pop {
  to { transform: scale(1); opacity: 1; }
}

@keyframes pl-float {
  0%, 100% { transform: translateY(0)     rotate(0deg);    }
  50%      { transform: translateY(-14px) rotate(-1.5deg); }
}

/* Cue scroll en bas — positionné par rapport au preloader (full-screen) */
.preloader__cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  opacity: 0;
  transform: translateX(-50%);
  animation: pl-cue-in .55s ease 1s forwards;
  z-index: 3;
}
.preloader__cue-arrow {
  font-size: 26px;
  color: var(--cream);
  line-height: 1;
  animation: pl-bounce 1.6s ease-in-out 1.6s infinite;
}
.preloader__cue-text {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
  opacity: 0.92;
  transform: rotate(-2deg);
  letter-spacing: 0.02em;
}

@keyframes pl-cue-in {
  from { opacity: 0; transform: translate(-50%, 16px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
@keyframes pl-bounce {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

/* Séquence de lift : logo zoom court puis tout le calque remonte */
.preloader.is-leaving { transform: translateY(-101%); }
.preloader.is-leaving .preloader__logo {
  transform: scale(1.08);
}
.preloader.is-leaving .preloader__cue {
  opacity: 0;
  transition: opacity .3s ease-out;
}
/* Stoppe le flottement pile au moment du lift, pour éviter le mouvement parasite */
.preloader.is-leaving .preloader__logo-wrap {
  animation-play-state: paused;
}

body {
  font-family: 'Sora', sans-serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.script {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  color: var(--orange);
  font-style: normal;
}

/* ============================================
   NAV
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 48px;
  background: rgba(250, 245, 238, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav__logo img {
  height: 52px;
  width: auto;
  transition: transform .3s ease;
}
.nav__logo:hover img { transform: rotate(-8deg); }

.nav__links {
  display: flex;
  gap: 38px;
  font-size: 15px;
  font-weight: 500;
}
.nav__links a {
  position: relative;
  color: var(--ink);
  transition: color .2s ease;
}
.nav__links a:hover { color: var(--orange); }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width .25s ease;
}
.nav__links a:hover::after { width: 100%; }

/* ============================================
   BUTTONS — style "estampille REGA"
   Border-radius asymétrique organique + couche décalée
   pour rappeler le lettrage du logo (rond, dessiné à la main)
   ============================================ */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  /* blob asymétrique : ni cercle ni pilule, organique */
  border-radius: 26px 18px 24px 20px / 22px 26px 20px 24px;
  background: transparent;
  color: inherit;
  transition: border-radius .55s cubic-bezier(.34,1.56,.64,1),
              transform .35s ease,
              background .25s ease,
              color .25s ease;
  white-space: nowrap;
  isolation: isolate;
}

.btn:hover {
  /* morph subtil de la forme */
  border-radius: 18px 28px 20px 26px / 26px 20px 28px 18px;
  transform: translate(-2px, -2px);
}

.btn--lg { padding: 19px 32px; font-size: 16px; }
.btn--xl { padding: 24px 40px; font-size: 18px; }

/* Calque "ombre estampille" décalée derrière le bouton */
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--ink);
  transform: translate(4px, 4px);
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
}
.btn:hover::before {
  opacity: 0.18;
  transform: translate(6px, 6px);
}

/* Variantes */
.btn--primary {
  background: var(--orange);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--orange-deep);
}
.btn--primary::before { background: var(--orange-deep); }

.btn--ghost {
  background: var(--cream);
  color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--cream);
  box-shadow: inset 0 0 0 2px var(--ink);
}

.btn--white {
  background: var(--cream);
  color: var(--orange);
}
.btn--white:hover { background: #fff; }
.btn--white::before { background: rgba(42, 16, 10, 0.4); }

.btn--ghost-white {
  background: transparent;
  color: var(--cream);
  box-shadow: inset 0 0 0 2px var(--cream);
}
.btn--ghost-white:hover {
  background: var(--cream);
  color: var(--orange);
  box-shadow: inset 0 0 0 2px var(--cream);
}

.btn__arrow {
  display: inline-block;
  transition: transform .25s ease;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

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

.hero {
  position: relative;
  padding: 70px 48px 0;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border: 1.5px solid var(--line);
  background: var(--cream-2);
  /* blob asymétrique discret, cohérent avec le reste */
  border-radius: 18px 24px 20px 22px / 22px 18px 24px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
  margin-bottom: 28px;
  cursor: default;
  transition: border-radius .55s cubic-bezier(.34,1.56,.64,1),
              border-color .35s ease,
              background .35s ease,
              transform .35s ease;
}
.tag:hover {
  border-color: var(--orange);
  background: var(--cream);
  border-radius: 22px 18px 24px 20px / 18px 24px 20px 22px;
  transform: translate(-1px, -1px);
}

.tag__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(238, 78, 39, 0.18);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(238, 78, 39, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(238, 78, 39, 0.05); }
}

.hero__title {
  font-size: clamp(42px, 5.5vw, 78px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}

.hero__title .script {
  font-size: 1.2em;
  display: inline-block;
  transform: rotate(-3deg) translateY(8px);
}

.hero__sub {
  max-width: 560px;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero__sub-lead {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.hero__sub-lead em {
  font-style: normal;
  color: var(--orange);
  font-weight: 600;
  position: relative;
  white-space: nowrap;
}
.hero__sub-lead em::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: var(--orange-soft);
  z-index: -1;
  opacity: 0.55;
  border-radius: 4px;
  transform: skewX(-8deg);
}

.hero__sub-body {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  padding-left: 18px;
  border-left: 2px solid var(--orange-soft);
}
.hero__sub-body strong {
  display: inline;
  font-weight: 700;
  color: var(--ink);
  background: linear-gradient(transparent 62%, rgba(238, 78, 39, 0.22) 62%);
  padding: 0 3px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.hero__cta-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-mute);
  margin-bottom: 38px;
  line-height: 1.4;
}
.hero__cta-hint strong {
  color: var(--ink);
  font-weight: 600;
}
.hero__cta-hint-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 480px;
}
.hero__proof-num {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--orange);
  letter-spacing: -0.04em;
}
.hero__proof-text {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.4;
}
.hero__proof-text strong { color: var(--ink); font-weight: 600; }

/* Hero right */

.hero__right {
  position: relative;
}

.hero__visual {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
  background: var(--orange-soft);
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__sticker {
  position: absolute;
  z-index: 3;
  background: var(--cream);
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: default;
  transition: transform .55s cubic-bezier(.34,1.56,.64,1),
              background .35s ease,
              color .35s ease,
              border-radius .55s cubic-bezier(.34,1.56,.64,1),
              box-shadow .35s ease;
}

/* ----- Sticker 1 : ancre locale ----- */
.hero__sticker--1 {
  top: -18px;
  left: -28px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  /* blob asymétrique cohérent avec les boutons */
  border-radius: 22px 32px 26px 28px / 28px 22px 32px 26px;
  border: 1.5px solid var(--line);
  transform: rotate(-4deg);
}
.hero__sticker--1 strong {
  font-weight: 700;
  color: var(--ink);
}
.hero__sticker-star {
  color: var(--orange);
  font-size: 18px;
  display: inline-block;
  transition: transform .6s ease;
}
.hero__sticker--1:hover {
  transform: rotate(-1deg) translate(-2px, -3px);
  background: var(--orange);
  color: var(--cream);
  border-color: var(--orange);
  border-radius: 28px 24px 32px 22px / 24px 28px 22px 32px;
  box-shadow: 0 14px 32px rgba(238, 78, 39, 0.25);
}
.hero__sticker--1:hover .hero__sticker-star,
.hero__sticker--1:hover strong { color: var(--cream); }
.hero__sticker--1:hover .hero__sticker-star {
  transform: rotate(72deg) scale(1.15);
}

/* ----- Sticker 2 : argument "zéro minute" ----- */
.hero__sticker--2 {
  bottom: 26px;
  right: -36px;
  background: var(--ink);
  color: var(--cream);
  padding: 18px 26px;
  text-align: center;
  line-height: 1;
  border-radius: 26px 18px 28px 20px / 22px 28px 18px 26px;
  transform: rotate(5deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.hero__sticker--2 strong {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--cream);
  display: block;
}
.hero__sticker--2 .script {
  font-size: 32px;
  color: var(--orange);
  display: block;
  margin-top: -6px;
  transform: rotate(-3deg);
}
.hero__sticker--2 small {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--orange-soft);
  margin-top: 6px;
  text-transform: uppercase;
}
.hero__sticker--2:hover {
  transform: rotate(2deg) translate(-3px, -4px);
  border-radius: 20px 28px 22px 26px / 28px 22px 26px 20px;
  box-shadow: 0 18px 40px rgba(42, 16, 10, 0.35);
}
.hero__sticker--2:hover .script {
  transform: rotate(2deg) scale(1.06);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}

/* ============================================
   TICKER
   ============================================ */

.ticker {
  background: var(--ink);
  color: var(--cream);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  margin: 0 -48px;
}

.ticker__track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: scroll 50s linear infinite;
  font-size: 22px;
  font-weight: 500;
}
.ticker__track span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.ticker__icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: inline-block;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS COMMUNES
   ============================================ */

.section {
  padding: 130px 48px;
  position: relative;
}

.section__head {
  max-width: 880px;
  margin: 0 auto 70px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.eyebrow--light { color: var(--orange-soft); }

.h2 {
  font-size: clamp(36px, 4.5vw, 62px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.h2--light { color: var(--cream); }
.h2 .script {
  font-size: 1.15em;
  display: inline-block;
  transform: rotate(-3deg) translateY(6px);
}

.section__lead {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   POUR QUI
   ============================================ */

.trades {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 24px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 0;
}

.trade {
  position: relative;
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 24px 32px 26px 30px / 28px 24px 32px 26px;
  padding: 32px 28px 28px;
  cursor: default;
  --rot: 0deg;
  transform: rotate(var(--rot));
  transition: transform .45s cubic-bezier(.34,1.56,.64,1),
              background .35s ease,
              border-color .35s ease,
              box-shadow .35s ease;
}


/* Rotations alternées par position pour casser la grille rigide */
.trade:nth-child(1) { --rot: -1.5deg; }
.trade:nth-child(2) { --rot:  1deg;   }
.trade:nth-child(3) { --rot: -0.5deg; }
.trade:nth-child(4) { --rot:  1.5deg; }
.trade:nth-child(5) { --rot: -1deg;   }
.trade:nth-child(6) { --rot:  0.5deg; }
.trade:nth-child(7) { --rot: -1.5deg; }
.trade:nth-child(8) { --rot:  1deg;   }

.trade:hover {
  background: var(--cream);
  border-color: var(--orange);
  transform: rotate(0deg) translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* === Vedette : carte orange plein === */
.trade--featured {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 22px 50px rgba(238, 78, 39, 0.25);
}
.trade--featured h3,
.trade--featured p { color: var(--cream); }
.trade--featured p { opacity: 0.92; }
.trade--featured .trade__icon {
  background: rgba(255, 255, 255, 0.16);
  color: var(--cream);
  box-shadow: inset 0 0 0 1.5px var(--cream);
}
.trade--featured:hover {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
  box-shadow: 0 30px 70px rgba(238, 78, 39, 0.35);
}
.trade--featured:hover .trade__icon {
  background: var(--cream);
  color: var(--orange);
  box-shadow: inset 0 0 0 1.5px var(--cream);
}

/* Bande de scotch sur la carte vedette (cohérence DA) */
.trade--featured::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 28px;
  width: 72px;
  height: 18px;
  background: rgba(250, 245, 238, 0.55);
  border-radius: 1px;
  transform: rotate(-3deg);
  box-shadow: 0 2px 4px rgba(42, 16, 10, 0.12);
  z-index: 2;
}

/* Stamp Caveat encadré */
.trade__stamp {
  position: absolute;
  top: 20px;
  right: 14px;
  font-family: 'Caveat', cursive;
  font-size: 18px;
  font-weight: 700;
  color: var(--cream);
  padding: 2px 10px;
  border: 2px solid currentColor;
  border-radius: 6px;
  transform: rotate(8deg);
  letter-spacing: 0.04em;
  white-space: nowrap;
  z-index: 2;
}

/* Annotations Caveat manuscrites en débord */
.trade__doodle {
  position: absolute;
  font-family: 'Caveat', cursive;
  font-size: 24px;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
  pointer-events: none;
  z-index: 3;
}
.trade__doodle--br { /* bottom-right en débord */
  bottom: -14px;
  right: -8px;
  transform: rotate(-4deg);
}
.trade__doodle--tl { /* top-left en débord */
  top: -18px;
  left: -10px;
  transform: rotate(-5deg);
}
.trade__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--orange);
  /* blob organique, rappel logo + boutons */
  border-radius: 22px 28px 24px 26px / 26px 22px 28px 24px;
  box-shadow: inset 0 0 0 1.5px var(--orange);
  transition: all .45s cubic-bezier(.34,1.56,.64,1);
}
.trade__icon svg {
  width: 30px;
  height: 30px;
}
.trade:hover .trade__icon {
  background: var(--orange);
  color: var(--cream);
  border-radius: 28px 22px 26px 24px / 24px 28px 22px 26px;
  transform: rotate(-6deg);
}

.trade h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.trade p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.trades__more {
  text-align: center;
  margin-top: 50px;
  font-size: 16px;
  color: var(--ink-soft);
}
.trades__more strong { color: var(--ink); }

/* ============================================
   CONSTAT
   ============================================ */

.constat {
  background: var(--cream-2);
  padding: 64px 48px 32px;
  overflow: hidden;
}
.constat__inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.constat .eyebrow { margin-bottom: 14px; }

.constat__title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 16px;
}
.constat__dots {
  display: inline-block;
  color: var(--orange);
  margin-left: 2px;
}

.constat__intro {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 14px;
  line-height: 1.5;
}

/* Faux champ Google, façon papier collé */
.constat__search {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 11px 22px;
  font-family: ui-monospace, "Cascadia Code", Menlo, monospace;
  font-size: 15px;
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(42, 16, 10, 0.09);
  transform: rotate(-1deg);
  margin: 4px auto 26px;
  max-width: 100%;
}
.constat__search-icon {
  width: 18px;
  height: 18px;
  color: var(--orange);
  flex-shrink: 0;
}
.constat__search-text {
  display: inline-flex;
  align-items: baseline;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
#constat-trade {
  display: inline-block;
  min-width: 0;
  text-align: left;
}
.constat__search-suffix {
  color: var(--ink-mute);
  font-weight: 400;
  white-space: nowrap;
}
.constat__search-caret {
  display: inline-block;
  width: 2px;
  height: 16px;
  background: var(--orange);
  margin-left: 2px;
  animation: constat-blink 1s steps(1, end) infinite;
  vertical-align: -2px;
}
@keyframes constat-blink {
  50% { opacity: 0; }
}

/* Verdict en 2 colonnes : ce qu'il s'est passé · ce que ça donne au global */
.constat__verdict {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
  margin: 4px auto 18px;
  text-align: center;
}
.constat__verdict-sep {
  display: block;
  width: 1px;
  height: 100%;
  min-height: 90px;
  border-left: 1px dashed var(--line);
}

/* La phrase qui frappe */
.constat__hit {
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  display: inline-block;
}
.constat__hit sup { font-size: 0.55em; font-weight: 600; }
.constat__hit-mark {
  display: block;
  font-family: 'Caveat', cursive;
  font-size: 1.55em;
  font-weight: 700;
  color: var(--orange);
  transform: rotate(-2.5deg);
  margin-top: 2px;
  position: relative;
  z-index: 1;
}
.constat__hit-mark::before {
  content: '';
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: 8px;
  height: 14px;
  background: var(--orange-soft);
  z-index: -1;
  transform: rotate(0.6deg);
  border-radius: 4px;
  opacity: 0.7;
}

/* Bloc droit : multiplicateur + verdict global */
.constat__chute {
  display: inline-block;
}
.constat__chute-mult {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: var(--ink-soft);
  margin-bottom: 4px;
  transform: rotate(-1deg);
  display: inline-block;
  line-height: 1.1;
}
.constat__chute-body {
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.constat__chute-body strong {
  color: var(--orange);
  font-weight: 700;
  font-style: italic;
}

/* Signature finale, sous le verdict 2 colonnes */
.constat__chute-sign {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--ink-soft);
  transform: rotate(-1.5deg);
  display: inline-block;
  line-height: 1;
  margin-top: 4px;
}
@keyframes bounce-x {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(10px); }
}

/* ============================================
   OFFRE
   ============================================ */

.offre {
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.offre::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(238, 78, 39, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.offre::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(238, 78, 39, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

/* ============================================
   OFFRE — étiquette prix + carnet manuscrit
   ============================================ */

.offre__layout {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: 36px;
  align-items: stretch;
}

/* === Carte prix — pendant orange du carnet manuscrit === */
.offre__price-card {
  position: relative;
  background: linear-gradient(160deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: var(--cream);
  /* même blob asymétrique que le carnet, en miroir */
  border-radius: 32px 22px 30px 24px / 24px 30px 22px 32px;
  padding: 44px 36px 32px;
  box-shadow: 0 30px 80px rgba(238, 78, 39, 0.30);
  transform: rotate(-1deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform .4s ease;
  text-align: center;
}
.offre__price-card:hover { transform: rotate(0.2deg) translateY(-4px); }

/* Bande de scotch crème en haut, miroir du carnet (qui a un scotch orange sur fond crème) */
.offre__price-card::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
  width: 96px;
  height: 22px;
  background: rgba(250, 245, 238, 0.55);
  border-radius: 1px;
  box-shadow: 0 2px 4px rgba(42, 16, 10, 0.12);
}

.offre__price-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 4px;
}

.offre__price-main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 0.85;
}
.offre__price-num {
  font-family: 'Caveat', cursive;
  font-size: clamp(150px, 17vw, 220px);
  font-weight: 700;
  line-height: 0.85;
  letter-spacing: -0.025em;
}
.offre__price-curr {
  font-size: 60px;
  font-weight: 600;
  margin-top: 18px;
  margin-left: 4px;
  font-family: 'Sora', sans-serif;
}

.offre__price-once {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.88;
  margin-top: -2px;
}

/* Trait pointillé séparateur (cohérent avec ceux du process et de la sheet) */
.offre__price-divider {
  width: 70%;
  height: 0;
  border-top: 2px dashed rgba(250, 245, 238, 0.4);
  margin: 18px 0 12px;
}

.offre__price-mensuel {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
}
.offre__price-mensuel-num {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}
.offre__price-mensuel-num sup { font-size: 0.55em; }
.offre__price-mensuel-lbl {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.85;
}

.offre__price-tagline {
  font-size: 14px;
  opacity: 0.92;
  margin-top: 4px;
  margin-bottom: 18px;
}
.offre__price-tagline .script {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  font-weight: 700;
  margin-right: 4px;
  display: inline-block;
  transform: rotate(-3deg) translateY(2px);
}

.offre__price-cta { margin-top: auto; }

/* Bloc "+150€ par fonction spéciale" — discret sous le CTA */
.offre__price-extras {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 2px dashed rgba(250, 245, 238, 0.35);
  text-align: left;
  width: 100%;
  justify-content: center;
}
.offre__price-extras-num {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.offre__price-extras-num .script {
  font-family: 'Caveat', cursive;
  font-size: 36px;
  display: inline-block;
  transform: rotate(-3deg);
  margin-right: 1px;
  font-weight: 700;
}
.offre__price-extras-lbl {
  font-size: 12px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

/* === Carnet manuscrit des inclusions === */
.offre__sheet {
  position: relative;
  background: var(--cream);
  color: var(--ink);
  border-radius: 22px 32px 24px 30px / 28px 22px 32px 24px;
  padding: 38px 36px 28px;
  box-shadow: 0 30px 80px rgba(42, 16, 10, 0.20);
  transform: rotate(1deg);
  display: flex;
  flex-direction: column;
  gap: 22px;
  transition: transform .4s ease;
}
.offre__sheet:hover { transform: rotate(0.2deg) translateY(-4px); }

/* Bande de scotch en haut, comme sur les cartes process */
.offre__sheet::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 96px;
  height: 22px;
  background: rgba(238, 78, 39, 0.32);
  border-radius: 1px;
  box-shadow: 0 2px 4px rgba(42,16,10,.08);
}

.offre__sheet-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.offre__sheet-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.offre__sheet-title .script {
  font-family: 'Caveat', cursive;
  font-size: 38px;
  color: var(--orange);
  display: inline-block;
  transform: rotate(-3deg) translateY(2px);
  margin-right: 4px;
  font-weight: 700;
}
.offre__sheet-stamp {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--orange);
  border: 2px solid currentColor;
  padding: 2px 12px;
  border-radius: 6px;
  transform: rotate(8deg);
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.offre__sheet-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 28px;
  padding: 0;
}
.offre__sheet-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.offre__check {
  flex-shrink: 0;
  color: var(--cream);
  background: var(--orange);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}

.offre__note {
  font-family: 'Caveat', cursive;
  font-size: 18px;
  color: var(--orange);
  font-weight: 700;
  font-style: normal;
  display: inline-block;
  margin-left: 6px;
  transform: rotate(-2deg);
  white-space: nowrap;
}

.offre__sheet-foot {
  font-size: 13px;
  color: var(--ink-mute);
  border-top: 1px dashed var(--line);
  padding-top: 16px;
  text-align: center;
  margin-top: 4px;
}
.offre__sheet-foot .script {
  font-family: 'Caveat', cursive;
  font-size: 22px;
  color: var(--orange);
  font-weight: 700;
  margin-right: 4px;
  display: inline-block;
  transform: rotate(-2deg);
}

.offre__sheet-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 18px auto 0;
  align-self: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.02em;
  padding: 10px 18px;
  border-radius: 22px 14px 20px 16px / 18px 22px 16px 20px;
  background: rgba(238, 78, 39, 0.08);
  border: 1.5px dashed var(--orange);
  transition: background .25s ease, transform .3s ease, gap .3s ease;
}
.offre__sheet-link:hover {
  background: var(--orange);
  color: var(--cream);
  transform: translateY(-2px);
  gap: 12px;
}
.offre__sheet-link .btn__arrow {
  transition: transform .3s ease;
}
.offre__sheet-link:hover .btn__arrow {
  transform: translateX(4px);
}

/* ============================================
   PROCESS
   ============================================ */

/* ============================================
   PROCESS — Carnet de route serpentant
   ============================================ */

.process {
  /* fond subtil "papier" pour soutenir la métaphore carnet */
  background:
    radial-gradient(circle at 10% 10%, rgba(238,78,39,0.04) 0, transparent 35%),
    radial-gradient(circle at 90% 80%, rgba(238,78,39,0.04) 0, transparent 35%),
    var(--cream);
}

.roadmap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  row-gap: 0;
  padding: 60px 0 40px;
}

.roadmap__path {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
}
.roadmap__path path {
  stroke-width: 4;
}

/* Step base */
.step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .45s cubic-bezier(.34,1.56,.64,1);
}

/* Positionnement zigzag avec rotations différentes */
.step--1 { grid-column: 1; padding-right: 30px; transform: rotate(-1.5deg); }
.step--2 { grid-column: 2; margin-top: 110px; padding-left: 30px; transform: rotate(1.5deg); }
.step--3 { grid-column: 1; margin-top: 60px; padding-right: 30px; transform: rotate(-1deg); }
.step--4 { grid-column: 2; margin-top: 110px; padding-left: 30px; transform: rotate(2deg); }

.step:hover { transform: rotate(0deg) translateY(-6px); }

/* Énorme chiffre manuscrit en watermark */
.step__big-num {
  font-family: 'Caveat', cursive;
  font-size: 240px;
  line-height: 0.7;
  color: var(--orange);
  font-weight: 700;
  position: absolute;
  top: -55px;
  z-index: 1;
  opacity: 0.22;
  pointer-events: none;
  transition: opacity .35s ease, transform .55s cubic-bezier(.34,1.56,.64,1);
}
.step--1 .step__big-num,
.step--3 .step__big-num { left: -10px; }
.step--2 .step__big-num,
.step--4 .step__big-num { right: -10px; }
.step:hover .step__big-num { opacity: 0.28; transform: scale(1.05); }

/* Carte de l'étape */
.step__card {
  position: relative;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 24px 32px 26px 30px / 28px 24px 32px 26px;
  padding: 30px 32px;
  box-shadow: 0 18px 50px rgba(42, 16, 10, 0.06);
  transition: border-color .35s ease, box-shadow .35s ease, border-radius .55s cubic-bezier(.34,1.56,.64,1);
}
.step:hover .step__card {
  border-color: var(--orange);
  box-shadow: 0 28px 70px rgba(238, 78, 39, 0.18);
  border-radius: 30px 24px 32px 26px / 24px 30px 26px 32px;
}

/* Bande de scotch sur le haut de chaque carte */
.step__card::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 32px;
  width: 80px;
  height: 22px;
  background: rgba(238, 78, 39, 0.32);
  border-radius: 1px;
  transform: rotate(-3deg);
  box-shadow: 0 2px 4px rgba(42,16,10,.08);
}
.step--2 .step__card::before { left: auto; right: 28px; transform: rotate(3deg); }
.step--3 .step__card::before { left: 40px; transform: rotate(-5deg); }
.step--4 .step__card::before { left: auto; right: 40px; transform: rotate(4deg); }

/* Header de carte : timing + chip Toi/Nous */
.step__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.step__time {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.step__chip {
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 14px 18px 14px 18px / 16px 14px 18px 14px;
  background: var(--cream-2);
  color: var(--ink-soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.step__chip--us {
  background: var(--orange);
  color: var(--cream);
}

.step h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.step p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* Annotations manuscrites latérales */
.step__doodle {
  font-family: 'Caveat', cursive;
  font-size: 24px;
  font-weight: 600;
  color: var(--orange);
  display: inline-block;
  white-space: nowrap;
}
.step__doodle--1 { align-self: flex-end;   transform: rotate(-3deg);  margin-right: 10px; }
.step__doodle--2 { align-self: flex-start; transform: rotate(3deg);   margin-left: 10px;  }
.step__doodle--3 { align-self: flex-end;   transform: rotate(-2deg);  margin-right: 10px; }
.step__doodle--4 { align-self: flex-start; transform: rotate(2deg);   margin-left: 10px;  }

/* PS final manuscrit */
.roadmap__ps {
  text-align: center;
  margin: 80px auto 0;
  max-width: 700px;
  font-size: 17px;
  color: var(--ink-soft);
  font-style: italic;
  line-height: 1.5;
}
.roadmap__ps .script {
  font-style: normal;
  font-size: 28px;
  color: var(--orange);
  display: inline-block;
  transform: rotate(-3deg);
  margin-right: 6px;
}
.roadmap__ps strong {
  color: var(--ink);
  font-style: normal;
  background: linear-gradient(transparent 62%, rgba(238, 78, 39, 0.22) 62%);
  padding: 0 3px;
}

/* ============================================
   PORTFOLIO
   ============================================ */

.portfolio {
  background: var(--cream-2);
}

/* ============================================
   PORTFOLIO — magazine alterné
   ============================================ */

.projects {
  display: flex;
  flex-direction: column;
  gap: 28px;
  /* Full-bleed : déborde le padding de la section ; petit padding interne pour laisser respirer les coins arrondis */
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 24px;
}

/* === Wallet : 2 colonnes (pile à gauche grande, résumé à droite) === */
.projects-wallet {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1040px) minmax(300px, 1fr);
  column-gap: 64px;
  align-items: start;
}
.pstack {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
}

/* === Résumé éditorial : posé directement sur le fond crème (pas de cadre) === */
.psumm-wrap {
  position: relative;
  align-self: stretch;
  min-height: 100%;
}
.psumm {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 12px 0 0 8px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .4s ease, transform .55s cubic-bezier(.4,.2,.2,1);
}
.psumm.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Bandeau haut : logo + eyebrow alignés */
.psumm__top {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Logo client en médaillon circulaire (détouré sur le crème) */
.psumm__logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.psumm__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Volley : fond blanc → multiply pour fondre dans le crème (logo "détouré") */
.psumm__logo--volley img {
  object-fit: contain;
  padding: 4px;
  mix-blend-mode: multiply;
}
/* Cottage : déjà rond sauge, on l'affiche tel quel (cover centré) */
.psumm__logo--cottage img { object-fit: cover; }
/* Croc-Croc : carré noir/doré, cropped en cercle */
.psumm__logo--croc img { object-fit: cover; }
/* Skull & Bones : crâne sur fond charbon, cropped en cercle */
.psumm__logo--skull img { object-fit: cover; }
/* Le Pois Gourmand : logo détouré (PNG transparent), fondu sur le crème */
.psumm__logo--pois img {
  object-fit: contain;
  padding: 6px;
  background: #4F1A16;
}
/* Flash Coiffure : logo détouré clair sur fond shadow */
.psumm__logo--flash img {
  object-fit: contain;
  padding: 7px;
  background: #252323;
}
/* Maison Leboyer : carré chocolat & L doré, on l'affiche en contain sur fond cacao */
.psumm__logo--leboyer img {
  object-fit: contain;
  padding: 4px;
  background: #2B1810;
}

/* Eyebrow simple : numéro + secteur en orange */
.psumm__eyebrow {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 10px;
  min-width: 0;
  flex: 1 1 auto;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}
.psumm__eyebrow .psumm__star {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  line-height: 1;
  color: var(--orange);
  display: inline-block;
  transform: translateY(-1px);
}

/* Titre : Sora gros + un mot manuscrit Caveat orange en accent */
.psumm__title {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.psumm__title .script {
  font-family: 'Caveat', cursive;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.95em;
  margin-right: 6px;
  display: inline-block;
  transform: translateY(2px) rotate(-3deg);
}

.psumm__pitch {
  font-family: 'Sora', sans-serif;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 38ch;
}

/* Objectif : titre Caveat orange + texte */
.psumm__obj {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.psumm__obj-title {
  font-family: 'Caveat', cursive;
  color: var(--orange);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  transform: rotate(-2deg);
  display: inline-block;
  align-self: flex-start;
}
.psumm__obj p {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  font-weight: 500;
  max-width: 36ch;
}

/* Direction artistique — bloc nu, label discret */
.psumm__da {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.psumm__label {
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Couleurs : 4 rectangles verticaux (style swatches de peinture) */
.psumm__colors {
  display: flex;
  gap: 10px;
}
.psumm__chip {
  width: 48px;
  height: 96px;
  border-radius: 3px;
  /* léger inset pour que les couleurs très claires (crème) restent visibles */
  box-shadow: inset 0 0 0 1px rgba(42, 16, 10, 0.06);
}

/* Typos — juste les specimens, label inline minuscule */
.psumm__typos {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.psumm__typo {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.psumm__tlabel {
  font-family: 'Sora', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  min-width: 56px;
}
.psumm__tdemo {
  font-size: 22px;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}

/* Vibe : phrase manuscrite Caveat */
.psumm__vibe {
  font-family: 'Caveat', cursive;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.15;
  margin: 4px 0 0 0;
  transform: rotate(-1deg);
  display: inline-block;
  align-self: flex-start;
}

.projects-allcta {
  grid-column: 1 / -1;
  margin-top: 132px;
  display: flex;
  justify-content: center;
}

/* Responsive : empile à partir de tablette */
@media (max-width: 900px) {
  .projects-wallet { grid-template-columns: 1fr; row-gap: 48px; }
  .psumm-wrap { min-height: auto; }
  .psumm { position: relative; inset: auto; }
  .psumm:not(.is-active) { display: none; }
  .projects-allcta { margin-top: 48px; }
  .projects-allcta .btn { font-size: 17px; padding: 20px 34px; }
}
.projects-allcta .btn {
  font-size: 21px;
  padding: 26px 56px;
  font-weight: 700;
  letter-spacing: 0.01em;
  gap: 14px;
  box-shadow: 0 14px 36px -14px rgba(238, 78, 39, 0.55);
}
.projects-allcta .btn:hover {
  box-shadow: 0 20px 44px -14px rgba(238, 78, 39, 0.7);
}
.projects-allcta .btn__arrow {
  display: inline-block;
  margin-left: 4px;
  font-size: 1.15em;
  transition: transform .3s ease;
}
.projects-allcta .btn:hover .btn__arrow { transform: translateX(6px); }

/* === Carte projet — empilable === */
.pcard {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  background: #2a2a2a;
  /* Ombre douce par défaut — l'ombre orange néo-brut sera réservée à la card du dessus */
  box-shadow:
    0 18px 40px rgba(42, 16, 10, 0.14);
  transform-origin: 50% 100%;
  transition:
    transform .65s cubic-bezier(.4,.2,.2,1),
    opacity .55s ease,
    box-shadow .5s ease,
    filter .5s ease;
  will-change: transform, opacity;
}

/* Position par défaut (data-pos pilote l'éventail) */
.pcard[data-pos="0"] {
  z-index: 30;
  transform: translate3d(0, 0, 0) rotate(0deg);
  opacity: 1;
  filter: none;
  /* Signature néo-brut épurée : trait orange à droite uniquement */
  box-shadow:
    8px 0 0 var(--orange),
    0 22px 38px rgba(42, 16, 10, 0.12);
}
.pcard[data-pos="1"] {
  z-index: 20;
  transform: translate3d(0, 28px, 0) scale(0.96);
  opacity: 0.95;
  filter: brightness(0.95);
}
.pcard[data-pos="2"] {
  z-index: 10;
  transform: translate3d(0, 56px, 0) scale(0.92);
  opacity: 0.85;
  filter: brightness(0.88);
}
.pcard[data-pos="3"] {
  z-index: 5;
  transform: translate3d(0, 84px, 0) scale(0.88);
  opacity: 0.75;
  filter: brightness(0.82);
}
.pcard[data-pos="4"] {
  z-index: 2;
  transform: translate3d(0, 112px, 0) scale(0.84);
  opacity: 0.65;
  filter: brightness(0.76);
}
.pcard[data-pos="5"] {
  z-index: 1;
  transform: translate3d(0, 140px, 0) scale(0.80);
  opacity: 0.55;
  filter: brightness(0.7);
}

/* Hover sur la pile : la card du dessus se soulève — le trait orange s'épaissit */
.pstack.is-hover .pcard[data-pos="0"] {
  transform: translate3d(0, -6px, 0) rotate(0deg);
  box-shadow:
    12px 0 0 var(--orange),
    0 30px 50px rgba(42, 16, 10, 0.16);
}

/* CTA et dot uniquement actifs sur la card du dessus */
.pcard[data-pos="1"] .pcard__cta,
.pcard[data-pos="2"] .pcard__cta,
.pcard[data-pos="3"] .pcard__cta,
.pcard[data-pos="4"] .pcard__cta,
.pcard[data-pos="5"] .pcard__cta { opacity: 0; pointer-events: none; }
.pcard[data-pos="1"]::after,
.pcard[data-pos="2"]::after,
.pcard[data-pos="3"]::after,
.pcard[data-pos="4"]::after,
.pcard[data-pos="5"]::after { opacity: 0; }
.pcard[data-pos="0"] .pcard__cta { opacity: 1; }
.pcard[data-pos="0"]::after { opacity: 1; }
.pcard__cta { transition: opacity .35s ease, transform .3s cubic-bezier(.34,1.56,.64,1), border-radius .55s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease, background .3s ease; }
.pcard::after { transition: opacity .35s ease, box-shadow .35s ease, transform .35s ease !important; }

/* === Wrapper colonne gauche : pile + nav flèches === */
.pstack-col {
  display: flex;
  flex-direction: column;
  align-self: start;
}

/* === Nav flèches sous la pile (DA REGA : néo-brut + signature orange) === */
.pstack-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 140px; /* compense le translateY de la 5e card */
  padding-top: 28px;
  border-top: 2px solid var(--ink);
  position: relative;
}
/* Petit trait orange signature qui démarre la séparation */
.pstack-nav::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 96px;
  height: 6px;
  background: var(--orange);
}

/* Bloc gauche : picto + label cursif */
.pstack-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}
.pstack-meta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  filter: drop-shadow(3px 3px 0 var(--ink));
}
.pstack-meta__icon svg {
  width: 54px;
  height: 54px;
  display: block;
  transform: rotate(-8deg);
}
.pstack-meta__label {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 28px;
  color: var(--orange);
  line-height: 1.05;
  min-width: 0;
  flex: 1 1 auto;
  word-break: keep-all;
}

/* Bloc droite : 2 flèches néo-brut */
.pstack-controls {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}
.pstack-arrow {
  width: 60px;
  height: 60px;
  border: 2px solid var(--ink);
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  font-family: inherit;
  padding: 0;
  position: relative;
}
.pstack-arrow:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 0 var(--orange);
}
.pstack-arrow:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 0 var(--orange);
}
.pstack-arrow svg { width: 22px; height: 22px; display: block; }

/* Mobile : nav plus compacte */
@media (max-width: 900px) {
  .pstack-nav { margin-top: 92px; gap: 16px; flex-wrap: wrap; }
  .pstack-nav::before { width: 64px; height: 5px; }
  .pstack-meta__icon svg { width: 44px; height: 33px; }
  .pstack-meta__label { font-size: 26px; }
  .pstack-arrow { width: 50px; height: 50px; }
  .pstack-arrow svg { width: 18px; height: 18px; }
}

/* === Barre de navigateur (chrome) en haut === */
.pcard__chrome {
  position: absolute;
  inset: 0 0 auto 0;
  height: 38px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 16px;
  background: linear-gradient(180deg, #ececec 0%, #dcdcdc 100%);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.pcard__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
}
.pcard__dot--r { background: #ff5f57; }
.pcard__dot--y { background: #febc2e; margin-left: -8px; }
.pcard__dot--g { background: #28c840; margin-left: -8px; }
.pcard__url {
  flex: 1;
  margin-left: 12px;
  height: 22px;
  padding: 0 14px;
  background: #fbfbfb;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  color: #4a4a4a;
  letter-spacing: 0.01em;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
  max-width: 70%;
  overflow: hidden;
  white-space: nowrap;
}
.pcard__url-lock {
  font-size: 9px;
  opacity: 0.55;
  filter: grayscale(1);
}

/* L'image remplit la zone sous le chrome */
.pcard__shot {
  position: absolute;
  inset: 38px 0 0 0;
  display: block;
  width: 100%;
  height: calc(100% - 38px);
  object-fit: cover;
  object-position: top center;
  transition: transform .8s cubic-bezier(.4,.2,.2,1);
}
.pcard:hover .pcard__shot {
  transform: scale(1.02);
}

/* Bouton CTA en surimpression — bottom-right */
.pcard__cta {
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 22px 16px 24px 18px / 18px 24px 16px 22px;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1),
              border-radius .55s cubic-bezier(.34,1.56,.64,1),
              box-shadow .3s ease,
              background .3s ease;
  white-space: nowrap;
}
.pcard:hover .pcard__cta {
  transform: translate(-3px, -3px);
  border-radius: 16px 22px 18px 24px / 24px 18px 22px 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.pcard:hover .pcard__cta .btn__arrow {
  transform: translateX(4px);
}
.pcard__cta .btn__arrow { transition: transform .3s ease; display: inline-block; }

.pcard--03 .pcard__cta {
  background: var(--cream);
  color: var(--orange);
}

/* === Mini dot orange avec halo — rappel discret de la signature DA === */
/* (cohérence avec le dot pulse du tag manifeste dans le hero) */
.pcard::after {
  content: '';
  position: absolute;
  bottom: 48px;
  left: 48px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(238, 78, 39, 0.20);
  z-index: 4;
  pointer-events: none;
  transition: box-shadow .35s ease, transform .35s ease;
}
.pcard:hover::after {
  box-shadow: 0 0 0 8px rgba(238, 78, 39, 0.28);
  transform: scale(1.1);
}
/* Sur la card 03 (fond orange) : on inverse en blanc cassé pour qu'il ressorte */
.pcard--03::after {
  background: var(--cream);
  box-shadow: 0 0 0 5px rgba(250, 245, 238, 0.35);
}
.pcard--03:hover::after {
  box-shadow: 0 0 0 8px rgba(250, 245, 238, 0.45);
}

.project__browser {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(42, 16, 10, 0.18);
  position: relative;
}

.project__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--cream-2);
  border-bottom: 1px solid var(--line);
}
.project__dots { display: inline-flex; gap: 6px; }
.project__dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--ink-mute);
}
.project__dots span:nth-child(1) { background: #FF5F57; }
.project__dots span:nth-child(2) { background: #FEBC2E; }
.project__dots span:nth-child(3) { background: #28C840; }

.project__url {
  flex: 1;
  padding: 6px 14px;
  font-size: 13px;
  font-family: ui-monospace, "Cascadia Code", Menlo, monospace;
  color: var(--orange);
  background: rgba(238, 78, 39, 0.08);
  border-radius: 5px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* Preview : la "page" du site stylisée selon la vibe du client */
.project__preview {
  padding: 56px 44px 48px;
  min-height: 420px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Stamp Caveat sur le coin */
.project__stamp {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: 'Caveat', cursive;
  font-size: 22px;
  font-weight: 700;
  border: 2px solid currentColor;
  padding: 2px 12px;
  border-radius: 6px;
  transform: rotate(8deg);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  z-index: 2;
}

/* Variante CROC-CROC : néo-brut sombre */
.project__preview--croc {
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06) 0%, transparent 50%),
    linear-gradient(135deg, #2A100A 0%, #4A1F12 100%);
  color: var(--cream);
}
.project__preview--croc::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0, transparent 30px, rgba(238,78,39,0.03) 30px, rgba(238,78,39,0.03) 31px);
  pointer-events: none;
}

/* Variante COTTAGE : sauge & serif italique */
.project__preview--cottage {
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.45) 0%, transparent 50%),
    linear-gradient(135deg, #B5BFA1 0%, #8FA084 100%);
  color: #FAF5EE;
}

.project__preview-title {
  font-size: clamp(54px, 6.2vw, 88px);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.project__preview-title--serif {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  text-transform: none;
  font-size: clamp(70px, 8vw, 110px);
  letter-spacing: 0;
  line-height: 0.9;
}
.project__preview-title--serif em {
  font-family: 'Sora', sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 0.85em;
  letter-spacing: -0.02em;
  display: block;
}

.project__preview-tag {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 28px;
  opacity: 0.92;
  position: relative;
  z-index: 1;
}

.project__preview-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto 22px;
  position: relative;
  z-index: 1;
}
.project__preview-menu li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 7px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
}
.project__preview-menu li:last-child { border-bottom: none; }
.project__preview-menu strong {
  font-weight: 700;
  letter-spacing: -0.01em;
}

.project__preview-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 18px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* Mini thumbs (lookbook Cottage) */
.project__preview-thumbs {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.project__thumb {
  width: 64px;
  height: 80px;
  border-radius: 4px;
  background: rgba(255,255,255,0.4);
}
.project__thumb--a { background: linear-gradient(135deg, #C9D2B6, #A8B597); }
.project__thumb--b { background: linear-gradient(135deg, #DBC4A4, #C4A587); }
.project__thumb--c { background: linear-gradient(135deg, #E8DCC4, #D5C2A2); }

.project__preview-menu--cottage li { border-bottom-color: rgba(255,255,255,0.3); }

/* === Édito côté info === */
.project__info {
  position: relative;
  padding: 24px 0;
}
.project__num {
  position: absolute;
  top: -32px;
  right: -10px;
  font-family: 'Caveat', cursive;
  font-size: clamp(140px, 14vw, 200px);
  font-weight: 700;
  line-height: 0.7;
  color: var(--orange);
  opacity: 0.13;
  pointer-events: none;
  z-index: 0;
  letter-spacing: -0.04em;
  transition: opacity .4s ease, transform .55s cubic-bezier(.34,1.56,.64,1);
}
.project--reverse .project__num { right: auto; left: -10px; }
.project:hover .project__num { opacity: 0.22; }

.project__type {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  position: relative;
}

.project__name {
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  position: relative;
}

.project__desc {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 26px;
  max-width: 480px;
  position: relative;
}

.project__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  position: relative;
}
.project__tags span {
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px 22px 18px 24px / 22px 16px 24px 18px;
  color: var(--ink);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--orange);
  border-bottom: 2px solid currentColor;
  padding-bottom: 4px;
  position: relative;
  letter-spacing: -0.01em;
}
.project__link span { transition: transform .25s ease; display: inline-block; }
.project__link:hover span { transform: translateX(6px); }

/* === Placeholder CTA "le prochain c'est toi" === */
.project--cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 70px 40px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: var(--cream);
  border-radius: 32px 22px 30px 24px / 24px 32px 22px 30px;
  box-shadow: 0 30px 80px rgba(238, 78, 39, 0.28);
  transform: rotate(-0.5deg);
  position: relative;
  overflow: hidden;
}
.project--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, transparent 0, transparent 60px, rgba(255,255,255,0.04) 60px, rgba(255,255,255,0.04) 61px);
  pointer-events: none;
}
.project__cta-script {
  font-family: 'Caveat', cursive;
  font-size: 36px;
  font-weight: 700;
  transform: rotate(-3deg);
  display: inline-block;
  position: relative;
}
.project__cta-title {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 8px;
  position: relative;
}
.project__cta-sub {
  font-size: 16px;
  opacity: 0.92;
  max-width: 440px;
  margin-bottom: 20px;
  position: relative;
}

/* ============================================
   POURQUOI
   ============================================ */

.reasons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1280px;
  margin: 0 auto;
}

.reason {
  padding: 40px 32px 32px;
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
}
.reason:hover {
  background: var(--orange);
  color: var(--cream);
  transform: translateY(-6px);
}
.reason:hover .reason__num,
.reason:hover h3,
.reason:hover p,
.reason:hover .reason__stat-text,
.reason:hover .reason__stat-num { color: var(--cream); }

.reason__num {
  font-family: 'Caveat', cursive;
  font-size: 80px;
  line-height: 0.8;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 18px;
  display: block;
  transition: color .3s ease;
}

.reason h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.015em;
  transition: color .3s ease;
}

/* === Phrase d'accroche (la punchline) === */
.reason__hook {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
  transition: color .3s ease;
}
.reason__hook strong {
  font-weight: 700;
  color: var(--ink);
}

/* Surlignage orange "feutre fluo" */
.reason__hl {
  background: linear-gradient(180deg, transparent 62%, rgba(238, 78, 39, 0.28) 62%);
  padding: 0 4px;
  font-weight: 700;
  color: var(--ink);
  transition: background .3s ease, color .3s ease;
}
.reason:hover .reason__hl {
  background: linear-gradient(180deg, transparent 62%, rgba(250, 245, 238, 0.35) 62%);
}

/* === Détail (texte courant) === */
.reason__detail {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin-bottom: 18px;
  transition: color .3s ease;
}
.reason__detail strong {
  color: var(--ink);
  font-weight: 700;
}
.reason:hover .reason__detail strong,
.reason:hover .reason__hook strong {
  color: var(--cream);
}

/* === Chips "0 truc, 0 chose" === */
.reason__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.reason__chips li {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--orange-deep);
  background: rgba(238, 78, 39, 0.1);
  padding: 5px 11px;
  border-radius: 14px;
  text-transform: lowercase;
  transition: background .3s ease, color .3s ease;
}
.reason:hover .reason__chips {
  border-top-color: rgba(250, 245, 238, 0.3);
}
.reason:hover .reason__chips li {
  background: rgba(250, 245, 238, 0.18);
  color: var(--cream);
}

/* === Stat visuelle (raison 02) === */
.reason__stat {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  transition: border-color .3s ease;
}
.reason__stat-num {
  font-family: 'Anton', sans-serif;
  font-size: 56px;
  line-height: 0.85;
  color: var(--orange);
  letter-spacing: -0.02em;
  transition: color .3s ease;
}
.reason__stat-text {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.35;
  transition: color .3s ease;
}
.reason__stat-text strong {
  color: var(--ink);
  font-weight: 700;
}
.reason:hover .reason__stat,
.reason:hover .reason__chips {
  border-top-color: rgba(250, 245, 238, 0.3);
}
.reason:hover .reason__stat-text strong {
  color: var(--cream);
}

/* === Punch finale (raison 03) === */
.reason__punch {
  font-size: 16px;
  line-height: 1.4;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
  color: var(--ink-soft);
  transition: color .3s ease, border-color .3s ease;
}
.reason__punch em {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  font-weight: 700;
  color: var(--orange);
  font-style: normal;
  vertical-align: -2px;
  transition: color .3s ease;
}
.reason__punch strong {
  color: var(--ink);
  font-weight: 700;
}
.reason:hover .reason__punch {
  border-top-color: rgba(250, 245, 238, 0.3);
}
.reason:hover .reason__punch em {
  color: var(--cream);
}
.reason:hover .reason__punch strong {
  color: var(--cream);
}

/* ============================================
   FAQ
   ============================================ */

.faq__list {
  max-width: 820px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 19px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  letter-spacing: -0.01em;
  transition: color .2s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--orange); }

.faq__plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--orange);
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  transition: all .3s ease;
}
.faq__item[open] .faq__plus {
  background: var(--orange);
  color: var(--cream);
  transform: rotate(45deg);
}

.faq__item p {
  margin-top: 18px;
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 720px;
  line-height: 1.6;
}

/* ============================================
   CTA FINAL
   ============================================ */

.finalcta {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(255, 255, 255, 0.18) 0%, transparent 50%),
    linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: var(--cream);
  padding: 110px 48px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.finalcta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 60px, rgba(255,255,255,0.04) 60px, rgba(255,255,255,0.04) 61px);
  pointer-events: none;
}

.finalcta__inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
}

.finalcta__script {
  font-size: 42px;
  color: var(--cream);
  display: inline-block;
  transform: rotate(-4deg);
  margin-bottom: 8px;
  opacity: 0.8;
}

.finalcta__massue {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 600;
  line-height: 1.35;
  max-width: 820px;
  margin: 0 auto 50px;
  padding: 32px 40px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--cream);
  border-radius: 4px 28px 4px 28px / 28px 4px 28px 4px;
  font-style: italic;
  letter-spacing: -0.01em;
}
.finalcta__massue .script {
  font-style: normal;
  color: var(--cream);
  font-size: 1.1em;
  display: inline-block;
  transform: rotate(-3deg) translateY(4px);
  font-weight: 700;
}

.pourquoi__sign {
  text-align: center;
  margin-top: 60px;
  font-size: 16px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.pourquoi__sign .script {
  font-size: 24px;
  display: inline-block;
  transform: rotate(-3deg) translateY(2px);
  margin-left: 4px;
}

.finalcta__title {
  font-size: clamp(56px, 7.5vw, 120px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.finalcta__sub {
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 56px;
  opacity: 0.95;
  line-height: 1.5;
}
.finalcta__sub strong {
  color: var(--cream);
  font-weight: 700;
}

.finalcta__zone {
  font-size: 14px;
  letter-spacing: 0.05em;
  opacity: 0.85;
  margin-top: 44px;
}
.finalcta__zone span { font-weight: 600; }

/* ============================================
   CONTACT — 2 colonnes : appel Gabin + formulaire
   ============================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
  text-align: left;
}
.contact-grid__sep {
  align-self: center;
  font-family: 'Caveat', cursive;
  font-size: 34px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  transform: rotate(-3deg);
  padding: 0 4px;
}

/* === Carte commune === */
.contact-card {
  position: relative;
  border-radius: 24px;
  padding: 38px 34px 32px;
  display: flex;
  flex-direction: column;
}
.contact-card__pill {
  position: absolute;
  top: -12px;
  left: 28px;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.contact-card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
}
.contact-card__icon svg {
  width: 100%;
  height: 100%;
}
.contact-card__title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  line-height: 1.1;
}
.contact-card__sub {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 22px;
}

/* === Carte appel Gabin (gauche) === */
.contact-card--call {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--cream);
}
.contact-card--call .contact-card__pill {
  background: var(--cream);
  color: var(--orange-deep);
}
.contact-card--call .contact-card__sub { opacity: 0.88; }
.contact-card__phone {
  display: inline-block;
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3.4vw, 36px);
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin-top: auto;
  margin-bottom: 8px;
  text-decoration: none;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.10);
  border: 1.5px dashed rgba(255, 255, 255, 0.4);
  border-radius: 14px;
  text-align: center;
  transition: background .2s, border-color .2s;
}
.contact-card__phone:hover {
  background: var(--cream);
  color: var(--orange-deep);
  border-color: var(--cream);
}
.contact-card__hours {
  font-size: 13px;
  opacity: 0.7;
  text-align: center;
  margin-top: 4px;
}

/* === Carte formulaire (droite) === */
.contact-card--form {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(42, 16, 10, 0.25);
}
.contact-card--form .contact-card__pill {
  background: var(--orange);
  color: var(--cream);
}
.contact-card--form .contact-card__icon { color: var(--orange); }
.contact-card--form .contact-card__sub { color: var(--ink-soft); }

/* === Formulaire === */
.cform {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cform__honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.cform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cform__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cform__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.cform__label em {
  font-style: normal;
  font-weight: 400;
  color: var(--ink-mute);
}
.cform__field input,
.cform__field textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--cream-2);
  border: 1.5px solid transparent;
  border-radius: 10px;
  outline: none;
  transition: border-color .2s, background .2s;
}
.cform__field input::placeholder,
.cform__field textarea::placeholder {
  color: var(--ink-mute);
  opacity: 0.7;
}
.cform__field input:focus,
.cform__field textarea:focus {
  border-color: var(--orange);
  background: var(--cream);
}
.cform__field input:invalid:not(:placeholder-shown) {
  border-color: rgba(184, 68, 61, 0.5);
}
.cform__field textarea {
  resize: vertical;
  min-height: 78px;
  line-height: 1.4;
  font-family: inherit;
}

.cform__submit {
  margin-top: 6px;
  background: var(--orange);
  color: var(--cream);
  border: none;
  padding: 14px 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s, transform .15s;
}
.cform__submit:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
}
.cform__submit:active { transform: translateY(0); }
.cform__submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
.cform__submit-arrow {
  display: inline-block;
  transition: transform .2s;
}
.cform__submit:hover .cform__submit-arrow { transform: translateX(3px); }

.cform__legal {
  font-size: 11.5px;
  color: var(--ink-mute);
  line-height: 1.45;
  text-align: center;
  margin-top: 4px;
}

/* === Message succès === */
.cform__success {
  text-align: center;
  padding: 24px 0 8px;
  animation: cform-success-in .4s ease;
}
@keyframes cform-success-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cform__success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--cream);
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 16px;
}
.cform__success h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.015em;
}
.cform__success p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
  max-width: 320px;
  margin: 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */

.foot {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 48px 30px;
}

.foot__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(250, 245, 238, 0.1);
}

.foot__brand p {
  font-size: 14px;
  margin-top: 18px;
  opacity: 0.75;
  line-height: 1.5;
}

.foot__logo {
  height: 64px;
  filter: brightness(0) saturate(100%) invert(94%) sepia(8%) saturate(420%) hue-rotate(354deg) brightness(99%) contrast(95%);
  /* note: filter approximative pour adoucir le logo en crème */
}

/* en réalité on met juste un fond avec le logo orange */
.foot__logo { filter: none; height: 64px; }

.foot__col h4 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--orange);
}

.foot__col a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.8;
  transition: opacity .2s, color .2s;
}
.foot__col a:hover { opacity: 1; color: var(--orange); }

.foot__bottom {
  max-width: 1280px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  opacity: 0.7;
}
.foot__sign {
  font-size: 22px;
  color: var(--orange);
  opacity: 1;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .nav { padding: 16px 28px; }
  .nav__links { display: none; }
  .hero { padding: 50px 28px 0; }
  .hero__inner { grid-template-columns: 1fr; gap: 50px; padding-bottom: 60px; }
  .ticker { margin: 0 -28px; }
  .section { padding: 90px 28px; }
  .trades { grid-template-columns: repeat(2, 1fr); }
  .constat { padding: 50px 22px 26px; }
  .constat__search {
    transform: rotate(-0.5deg);
    font-size: 13px;
    padding: 10px 16px;
    gap: 8px;
    margin: 4px auto 22px;
  }
  .constat__verdict {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 4px auto 14px;
  }
  .constat__verdict-sep {
    width: 60px;
    height: 1px;
    min-height: 0;
    border-left: none;
    border-top: 1px dashed var(--line);
    justify-self: center;
  }
  .constat__hit-mark { font-size: 1.4em; }
  .roadmap { grid-template-columns: 1fr; column-gap: 0; }
  .roadmap__path { display: none; }
  .step--1, .step--2, .step--3, .step--4 {
    grid-column: 1; padding: 0; margin-top: 30px; transform: none;
  }
  .step--1 { margin-top: 0; }
  .step__big-num { font-size: 160px; opacity: 0.12; }
  .step__doodle { align-self: flex-start !important; transform: rotate(-2deg) !important; }
  .reasons { grid-template-columns: 1fr; }
  .offre__layout { grid-template-columns: 1fr; gap: 28px; }
  .offre__price-card, .offre__sheet { transform: none; }
  .offre__sheet-list { grid-template-columns: 1fr; }
  .pcard { min-height: 360px; }
  .pcard__visual { padding: 40px 28px 80px; min-height: 360px; }
  .pcard__cta { bottom: 18px; right: 18px; padding: 12px 18px; font-size: 13px; }
  .projects { gap: 24px; }
  .foot__inner { grid-template-columns: 1fr 1fr; }
  .finalcta { padding: 80px 22px 70px; }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .contact-grid__sep {
    transform: none;
    text-align: center;
    padding: 4px 0;
  }
  .contact-card { padding: 32px 22px 26px; }
  .contact-card__pill { left: 22px; }
  .cform__row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .nav__cta { padding: 10px 16px; font-size: 13px; }
  .nav__logo img { height: 42px; }
  .hero__title { font-size: 44px; }
  .hero__sticker { font-size: 12px; padding: 8px 14px; }
  .hero__sticker--2 { right: 10px; }
  .trades { grid-template-columns: 1fr; }
  .roadmap__ps { font-size: 15px; padding: 0 20px; }
  .h2 { font-size: 38px; }
  .finalcta__title { font-size: 60px; }
  .foot__inner { grid-template-columns: 1fr; gap: 32px; }
  .foot__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ============================================
   LEGAL — page mentions légales & RGPD
   ============================================ */

.legal {
  background: var(--cream);
  padding: 120px 48px 90px;
  max-width: 100%;
}

.legal__hero {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}
.legal__hero .eyebrow { margin-bottom: 18px; }

.legal__title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(40px, 5.8vw, 72px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: 22px;
}
.legal__title .script {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 0.85em;
  color: var(--orange);
  display: inline-block;
  transform: rotate(-3deg) translateY(4px);
}

.legal__lead {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto;
}

/* Sommaire */
.legal__toc {
  max-width: 760px;
  margin: 0 auto 70px;
  padding: 28px 34px;
  background: var(--cream-2);
  border: 1.5px dashed var(--line);
  border-radius: 20px;
}
.legal__toc-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.legal__toc ol {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 28px;
  counter-reset: toc;
}
.legal__toc ol li {
  font-size: 15px;
  color: var(--ink-soft);
}
.legal__toc ol li a {
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px dotted transparent;
  transition: color .2s, border-color .2s;
}
.legal__toc ol li a:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* Contenu */
.legal__content {
  max-width: 760px;
  margin: 0 auto;
}

.legal__section {
  margin-bottom: 56px;
  scroll-margin-top: 100px;
}
.legal__section h2 {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1.5px solid var(--line);
  line-height: 1.15;
}
.legal__section h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 28px;
  margin-bottom: 12px;
}
.legal__section p,
.legal__section ul {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 14px;
}
.legal__section p strong,
.legal__section ul strong {
  color: var(--ink);
  font-weight: 600;
}
.legal__section ul {
  padding-left: 22px;
  list-style: none;
}
.legal__section ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}
.legal__section ul li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  top: 2px;
}
.legal__section a {
  color: var(--orange);
  border-bottom: 1px dotted var(--orange);
  transition: opacity .2s;
}
.legal__section a:hover { opacity: 0.7; }

/* Cartes identité éditeur */
.legal__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 22px 0 18px;
}
.legal__card {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px;
}
.legal__card--full {
  grid-column: 1 / -1;
}
.legal__card h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 12px;
}
.legal__card ul {
  padding-left: 0;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
}
.legal__card ul li {
  padding-left: 0;
  margin-bottom: 4px;
}
.legal__card ul li::before { content: none; }

.legal__note {
  font-size: 14.5px;
  color: var(--ink-soft);
  background: var(--cream-2);
  padding: 12px 18px;
  border-radius: 10px;
  border-left: 3px solid var(--orange-soft);
  margin-bottom: 10px;
}

/* Crédits */
.legal__credits {
  font-size: 14.5px !important;
}

/* Bloc highlight (cookies "bonne nouvelle") */
.legal__highlight {
  padding: 22px 26px;
  border-radius: 14px;
  background: var(--cream-2);
  border-left: 4px solid var(--orange);
  font-size: 16px;
  color: var(--ink);
  line-height: 1.55;
  margin: 18px 0;
}
.legal__highlight strong { color: var(--orange-deep); }
.legal__highlight--good {
  background: linear-gradient(135deg, rgba(252, 217, 203, 0.5), rgba(252, 217, 203, 0.15));
}

/* Section spéciale "maquettes & portfolio" */
.legal__section--highlight {
  background: var(--cream-2);
  padding: 36px 38px;
  border-radius: 24px;
  border: 1.5px solid var(--orange-soft);
}
.legal__section--highlight h2 {
  border-bottom-color: var(--orange-soft);
}

/* Placeholder TODO — bien visible pour les infos à compléter */
.legal-todo {
  display: inline-block;
  background: rgba(238, 78, 39, 0.12);
  color: var(--orange-deep);
  font-weight: 600;
  font-size: 0.9em;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px dashed var(--orange);
  font-family: ui-monospace, "Cascadia Code", Menlo, monospace;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Outro — CTA retour contact */
.legal__outro {
  text-align: center;
  padding: 48px 28px;
  margin-top: 60px;
  background: var(--cream-2);
  border-radius: 24px;
}
.legal__outro p {
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .legal { padding: 80px 22px 60px; }
  .legal__hero { margin-bottom: 40px; }
  .legal__toc { padding: 22px 24px; margin-bottom: 50px; }
  .legal__toc ol { grid-template-columns: 1fr; gap: 8px; }
  .legal__cards { grid-template-columns: 1fr; }
  .legal__section { margin-bottom: 42px; }
  .legal__section--highlight { padding: 28px 22px; }
  .legal-todo {
    white-space: normal;
    display: inline;
    line-height: 1.6;
  }
}
