/* ============================================================
   BAM. — Studio web 2026
   Direction artistique : néo-brutalisme doux, type XXL,
   vert acide signature, mouvement partout.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --ink: #0B0B0F;
  --ink-soft: #1a1a22;
  --cream: #F4F1EA;
  --cream-2: #ECE7DA;
  --lime: #C8FF00;
  --violet: #6C2BFF;
  --coral: #FF5C39;
  --blue: #0AB6FF;
  --yellow: #FFC93C;

  --bg: var(--cream);
  --fg: var(--ink);

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-serif: "Fraunces", Georgia, serif;

  --maxw: 1240px;
  --radius: 26px;
  --radius-sm: 16px;
  --border: 2.5px solid var(--ink);
  --shadow: 7px 7px 0 var(--ink);
  --shadow-lg: 12px 12px 0 var(--ink);

  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);

  --space-md: 2rem;
  --space-lg: clamp(5.5rem, 12vw, 13rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: clip; /* clip (pas hidden) → ne casse pas position:sticky du scroll horizontal */
  cursor: none;
  transition: background-color .9s ease;
  font-optical-sizing: auto;
  text-rendering: optimizeLegibility;
}

/* Lenis smooth scroll */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
@media (max-width: 900px) { body { cursor: auto; } }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: none; border: none; background: none; }
@media (max-width: 900px) { button { cursor: pointer; } }
ul { list-style: none; }
::selection { background: var(--lime); color: var(--ink); }

/* ---------- Grain & global FX ---------- */
.grain {
  position: fixed; inset: 0; z-index: 9000; pointer-events: none;
  opacity: 0.045; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 4px; width: 100%; z-index: 9100;
  background: linear-gradient(90deg, var(--violet), var(--coral), var(--lime));
  transform: scaleX(0); transform-origin: left;
}

/* ---------- Custom cursor ---------- */
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 9500; pointer-events: none;
  border-radius: 50%; mix-blend-mode: difference;
}
.cursor {
  width: 38px; height: 38px; border: 2px solid #fff;
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease-expo), height .3s var(--ease-expo), background .3s;
}
.cursor-dot { width: 6px; height: 6px; background: #fff; transform: translate(-50%, -50%); }
.cursor.grow { width: 76px; height: 76px; background: #fff; }
.cursor-txt {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: .82rem; color: var(--ink);
  opacity: 0; white-space: nowrap;
}
.cursor.cursor--label {
  width: 88px; height: 88px; background: var(--lime); border-color: var(--ink); mix-blend-mode: normal;
}
.cursor.cursor--label .cursor-txt { opacity: 1; }
@media (max-width: 900px) { .cursor, .cursor-dot { display: none; } }

/* Switch couleur d'accent */
.theme-switch {
  position: fixed; left: 18px; bottom: 18px; z-index: 8200; display: flex; gap: 8px;
  padding: 8px; background: var(--cream); border: 2.5px solid var(--ink);
  border-radius: 100px; box-shadow: 4px 4px 0 var(--ink);
}
.theme-switch button {
  width: 22px; height: 22px; border-radius: 50%; background: var(--c);
  border: 2px solid var(--ink); cursor: none; padding: 0;
  transition: transform .2s var(--ease-back);
}
.theme-switch button:hover { transform: scale(1.18); }
.theme-switch button.is-active { box-shadow: 0 0 0 2px var(--cream), 0 0 0 4px var(--ink); }
@media (max-width: 900px) {
  .theme-switch { left: 12px; bottom: 12px; }
  .theme-switch button { cursor: pointer; }
}

/* Confettis (easter eggs) */
.confetti { position: absolute; will-change: transform; }

/* Avant / après */
.ba {
  --ba: 50%;
  position: relative; max-width: 920px; margin: 0 auto; aspect-ratio: 16/10;
  border: var(--border); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); user-select: none; cursor: ew-resize; touch-action: none;
}
@media (max-width: 900px) { .ba { aspect-ratio: 4/3; } }
.ba-after, .ba-before { position: absolute; inset: 0; }
.ba-before { clip-path: inset(0 calc(100% - var(--ba)) 0 0); }
.ba .mock { position: absolute; inset: 0; display: flex; flex-direction: column; }
.mock-bar { height: 34px; background: var(--ink); display: flex; align-items: center; gap: 7px; padding: 0 14px; flex: 0 0 auto; }
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: #fff; opacity: .55; }
.mock-body { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: .8rem; padding: clamp(1rem, 4vw, 2.4rem); }
/* après (Megapaf) */
.mock-after { background: var(--cream); }
.m-logo { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.3rem, 3.5vw, 2.2rem); letter-spacing: -.03em; }
.m-dot { color: var(--lime); -webkit-text-stroke: 1.2px var(--ink); }
.m-h { height: clamp(14px, 2.4vw, 22px); border-radius: 7px; background: var(--ink); width: 78%; }
.m-h.short { width: 48%; }
.m-btn {
  align-self: flex-start; margin-top: .4rem; background: var(--lime); border: 2.5px solid var(--ink);
  border-radius: 100px; padding: .5rem 1.1rem; font-family: var(--font-display); font-weight: 700;
  box-shadow: 3px 3px 0 var(--ink); font-size: clamp(.8rem, 2vw, 1rem);
}
/* avant (moche) */
.mock-before { background: #d9d9d9; filter: saturate(.55); }
.mock-before .mock-bar { background: #8a8a8a; }
.mock-body.bad { font-family: "Times New Roman", Times, serif; color: #1a1a1a; gap: .55rem; }
.m-title-bad { font-size: clamp(1rem, 3vw, 1.7rem); font-weight: 700; color: #cc0000; text-align: center; }
.m-link { color: #0000ee; text-decoration: underline; font-size: clamp(.7rem, 1.8vw, .9rem); }
.m-cons { margin-top: auto; align-self: center; background: #ffec3d; border: 1px dashed #000; padding: .25rem .7rem; font-size: clamp(.7rem, 1.8vw, .85rem); }
/* poignée */
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--ba); width: 4px; background: var(--ink);
  transform: translateX(-50%); pointer-events: none;
}
.ba-handle span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 46px; height: 46px; border-radius: 50%; background: var(--lime); border: 2.5px solid var(--ink);
  display: grid; place-items: center; font-weight: 700; font-size: 1.2rem; box-shadow: 3px 3px 0 var(--ink);
}
.ba-tag {
  position: absolute; top: 16px; font-family: var(--font-display); font-weight: 700; font-size: .82rem;
  padding: .3rem .8rem; border: 2.5px solid var(--ink); border-radius: 100px; background: var(--cream);
}
.tag-before { left: 16px; }
.tag-after { right: 16px; background: var(--lime); }

/* ---------- Loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 9999; background: var(--ink);
  display: grid; place-items: center;
  transition: transform .8s var(--ease-expo);
}
.loader.done { transform: translateY(-100%); }
.loader-mark {
  font-family: var(--font-display); font-weight: 800; color: var(--cream);
  font-size: clamp(3rem, 12vw, 8rem); letter-spacing: -.04em;
  animation: pulse 1s var(--ease-back) infinite alternate;
}
.loader-mark span { color: var(--lime); }
@keyframes pulse { to { transform: scale(1.08); } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: .85rem 1.5rem; border-radius: 100px; border: var(--border);
  background: var(--cream); color: var(--ink);
  transition: transform .25s var(--ease-back), box-shadow .25s var(--ease-expo), background .25s;
  white-space: nowrap; will-change: transform;
}
.btn-lg { padding: 1.1rem 2rem; font-size: 1.12rem; }
.btn-primary { background: var(--lime); box-shadow: var(--shadow); }
.btn-primary:hover { transform: translate(-3px,-3px); box-shadow: var(--shadow-lg); }
.btn-dark { background: var(--ink); color: var(--cream); box-shadow: 7px 7px 0 var(--violet); }
.btn-dark:hover { transform: translate(-3px,-3px); box-shadow: 11px 11px 0 var(--violet); }
.btn-outline { background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--cream); transform: translate(-3px,-3px); box-shadow: var(--shadow); }
.btn-ghost { background: transparent; border-color: var(--ink); }
.btn-ghost:hover { background: var(--cream-2); transform: translate(-3px,-3px); box-shadow: var(--shadow); }
.btn .arrow { transition: transform .25s var(--ease-back); }
.btn:hover .arrow { transform: translateX(5px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 8000;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
  transition: transform .4s var(--ease-expo), background .3s, box-shadow .3s, padding .3s;
}
.nav.scrolled {
  background: rgba(244,241,234,.82); backdrop-filter: blur(14px);
  border-bottom: 2.5px solid var(--ink); padding-top: .7rem; padding-bottom: .7rem;
}
.nav.hide { transform: translateY(-120%); }
.logo-mark {
  font-family: var(--font-display); font-weight: 800; font-size: 1.7rem;
  letter-spacing: -.04em; color: var(--ink);
}
.logo-mark .dot { color: var(--lime); -webkit-text-stroke: 1.5px var(--ink); }
.logo-mark.big { font-size: clamp(3rem, 8vw, 5rem); }
.nav-links { display: flex; gap: 1.8rem; font-weight: 600; font-size: .98rem; }
.nav-cta { font-size: .95rem; padding: .7rem 1.3rem; }

.link-slide { position: relative; }
.link-slide::after {
  content: ''; position: absolute; left: 0; bottom: -4px; height: 2px; width: 100%;
  background: var(--ink); transform: scaleX(0); transform-origin: right;
  transition: transform .4s var(--ease-expo);
}
.link-slide:hover::after { transform: scaleX(1); transform-origin: left; }

.burger { display: none; flex-direction: column; gap: 6px; padding: 8px; }
.burger span { width: 28px; height: 3px; background: var(--ink); border-radius: 2px; transition: .3s var(--ease-expo); }
.burger.open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.burger.open span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 7900; background: var(--cream);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.8rem;
  transform: translateY(-100%); transition: transform .5s var(--ease-expo);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu .btn { font-size: 1.2rem; margin-top: 1rem; }

/* ---------- Layout ---------- */
.section { max-width: var(--maxw); margin: 0 auto; padding: var(--space-lg) clamp(1.2rem, 4vw, 3rem); }
.section-head { max-width: 760px; margin-bottom: clamp(3rem, 6vw, 5rem); }
.kicker {
  font-family: var(--font-serif); font-style: italic; font-weight: 500; font-size: 1.25rem;
  letter-spacing: 0; color: var(--violet); margin-bottom: 1.1rem;
}
.section-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.4rem, 6.2vw, 5rem); line-height: .96; letter-spacing: -.035em;
}
.section-lead, .contact-lead { font-size: 1.15rem; margin-top: 1.4rem; max-width: 60ch; color: #333; }
.accent-word { color: var(--violet); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; padding: 7rem clamp(1.2rem, 4vw, 3rem) 4rem;
  max-width: var(--maxw); margin: 0 auto; overflow: visible;
}
.hero-inner { position: relative; z-index: 3; max-width: 980px; }
.hero-eyebrow {
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  background: var(--ink); color: var(--cream); display: inline-block;
  padding: .4rem 1rem; border-radius: 100px; margin-bottom: 1.6rem;
}
.hero-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(3rem, 11.5vw, 10rem); line-height: .86; letter-spacing: -.04em;
  margin-bottom: 1.6rem;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word { display: inline-block; transform: translateY(110%); }
.accent-word .dot-accent, .hero-title .accent-word { color: var(--violet); }
.dot-accent { color: var(--lime); -webkit-text-stroke: 3px var(--ink); }

.hero-sub { font-size: clamp(1.05rem, 2vw, 1.4rem); max-width: 58ch; color: #2a2a2a; }
.hero-sub strong { color: var(--ink); background: var(--lime); padding: 0 .25em; border-radius: 4px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero-trust { display: flex; align-items: center; gap: 1rem; margin-top: 2.4rem; font-size: .95rem; }
.hero-trust strong { color: var(--violet); }
.avatars { display: flex; }
.avatar {
  width: 38px; height: 38px; border-radius: 50%; border: 2.5px solid var(--cream);
  background: var(--c); margin-left: -12px; box-shadow: 0 0 0 2px var(--ink);
}
.avatar:first-child { margin-left: 0; }

/* hero blobs */
.hero-blob { position: absolute; z-index: 1; filter: blur(8px); opacity: .9; border-radius: 50%; }
.blob-1 {
  width: 46vw; height: 46vw; max-width: 620px; max-height: 620px; right: -8vw; top: 8vh;
  background: radial-gradient(circle at 30% 30%, var(--violet), var(--blue) 70%);
  animation: blobmove 16s var(--ease-expo) infinite alternate;
}
.blob-2 {
  width: 30vw; height: 30vw; max-width: 380px; max-height: 380px; right: 22vw; bottom: 6vh;
  background: radial-gradient(circle at 40% 40%, var(--lime), var(--blue) 80%); opacity: .65;
  animation: blobmove 12s var(--ease-expo) infinite alternate-reverse;
}
@keyframes blobmove {
  0% { border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%; transform: translate(0,0) rotate(0deg); }
  100% { border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%; transform: translate(-30px,30px) rotate(25deg); }
}

/* WebGL fluid gradient (remplace les blobs quand dispo) */
.hero-canvas {
  position: absolute; top: 0; height: 100%; z-index: 1;
  left: 50%; width: 100vw; transform: translateX(-50%);
  display: block; pointer-events: none; opacity: 0; transition: opacity 1.2s ease;
  -webkit-mask-image: linear-gradient(100deg, transparent 4%, rgba(0,0,0,.5) 28%, #000 48%);
          mask-image: linear-gradient(100deg, transparent 4%, rgba(0,0,0,.5) 28%, #000 48%);
}
.webgl-on .hero-canvas { opacity: 1; }
.webgl-on .hero-blob { display: none; }

/* Scène Spline (test) — plein hero */
.hero-spline {
  position: absolute; z-index: 2; top: 0; bottom: 0;
  left: 50%; width: 100vw; transform: translateX(-50%); height: 100%;
  display: block;
}
@media (max-width: 760px) { .hero-spline { opacity: .85; } }

/* PAF! burst (clic sur les boutons) */
.paf-layer { position: fixed; inset: 0; z-index: 9400; pointer-events: none; overflow: hidden; }
.paf-label {
  position: absolute; transform: translate(-50%,-50%);
  font-family: var(--font-display); font-weight: 800; font-size: 2.4rem;
  color: var(--lime); -webkit-text-stroke: 2.5px var(--ink); white-space: nowrap;
  will-change: transform, opacity;
}
.paf-spark { position: absolute; border-radius: 3px; will-change: transform, opacity; }

/* stickers */
.sticker {
  position: absolute; z-index: 4; font-family: var(--font-display); font-weight: 700;
  font-size: .9rem; padding: .55rem 1rem; border: var(--border); border-radius: 100px;
  background: var(--cream); box-shadow: 4px 4px 0 var(--ink);
}
.sticker-1 { top: 16vh; right: 6vw; background: var(--lime); transform: rotate(-7deg); }
.sticker-2 { bottom: 26vh; right: 30vw; background: var(--coral); color: #fff; transform: rotate(8deg); }
.sticker-3 { bottom: 16vh; right: 4vw; background: var(--yellow); transform: rotate(5deg); }
@media (max-width: 900px) { .sticker { display: none; } }

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  font-size: .75rem; text-transform: uppercase; letter-spacing: .2em; color: #555;
}
.scroll-hint i { width: 2px; height: 36px; background: var(--ink); animation: scrolld 1.6s ease-in-out infinite; transform-origin: top; }
@keyframes scrolld { 0%,100% { transform: scaleY(.4); opacity:.3; } 50% { transform: scaleY(1); opacity:1; } }

/* ---------- Marquee ---------- */
.marquee-wrap { background: var(--ink); color: var(--cream); border-block: var(--border); overflow: hidden; }
.marquee { overflow: hidden; padding: 1.1rem 0; }
.marquee-track {
  display: flex; align-items: center; gap: 2.5rem; width: max-content;
  animation: scrollx 28s linear infinite;
  font-family: var(--font-display); font-weight: 700; font-size: clamp(1.4rem, 3.5vw, 2.6rem);
  text-transform: uppercase;
}
.marquee.reverse .marquee-track { animation-direction: reverse; }
.marquee-track .star { color: var(--lime); }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- Bento ---------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.bento-item {
  grid-column: span 2; background: var(--cream); border: var(--border); border-radius: var(--radius);
  padding: 2rem; box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: transform .3s var(--ease-back), box-shadow .3s var(--ease-expo);
}
.bento-item::before {
  content: ''; position: absolute; inset: 0; background: var(--accent); opacity: 0;
  transition: opacity .35s var(--ease-expo); z-index: 0;
}
.bento-item > * { position: relative; z-index: 1; }
.bento-item:hover { transform: translate(-4px,-4px); box-shadow: var(--shadow-lg); }
.bento-item:hover::before { opacity: .14; }
.bento-item.featured { grid-column: span 2; grid-row: span 2; background: var(--ink); color: var(--cream); }
.bento-item.featured h3, .bento-item.featured p { color: var(--cream); }
.bento-item.wide { grid-column: span 4; }
.bento-icon { font-size: 2.6rem; margin-bottom: 1rem; }
.bento-item h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; margin-bottom: .6rem; letter-spacing: -.02em; }
.bento-item.featured h3 { font-size: clamp(2rem, 4vw, 3rem); }
.bento-item p { color: #444; }
.bento-link { display: inline-block; margin-top: 1.2rem; font-family: var(--font-display); font-weight: 700; color: var(--lime); }
.badge-quote {
  display: inline-block; margin-top: 1.1rem; font-family: var(--font-display); font-weight: 700;
  font-size: .85rem; padding: .35rem .85rem; border: var(--border); border-radius: 100px; background: var(--accent);
}

/* ---------- Stats ---------- */
.stats { }
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem;
  background: var(--violet); border: var(--border); border-radius: var(--radius);
  padding: clamp(2rem,4vw,3.5rem); box-shadow: var(--shadow-lg); color: var(--cream);
}
.stat { text-align: center; }
.stat-num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1; color: var(--lime); display: block; letter-spacing: -.03em; }
.stat p { margin-top: .5rem; font-weight: 600; opacity: .9; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }
.step {
  background: var(--cream); border: var(--border); border-radius: var(--radius);
  padding: 2rem 1.6rem; box-shadow: var(--shadow); position: relative;
  transition: transform .3s var(--ease-back);
}
.step:hover { transform: translateY(-6px) rotate(-1deg); }
.step:nth-child(2):hover { transform: translateY(-6px) rotate(1deg); }
.step-num {
  font-family: var(--font-display); font-weight: 800; font-size: 3rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 2px var(--ink); display: block; margin-bottom: 1rem;
}
.step:hover .step-num { color: var(--lime); -webkit-text-stroke: 2px var(--ink); }
.step h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; margin-bottom: .5rem; }
.step p { color: #444; font-size: .98rem; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; align-items: stretch; }
.price-card {
  background: var(--cream); border: var(--border); border-radius: var(--radius);
  padding: 2.2rem; box-shadow: var(--shadow); display: flex; flex-direction: column;
  position: relative; transition: transform .3s var(--ease-back), box-shadow .3s;
}
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.price-card.popular { background: var(--ink); color: var(--cream); transform: scale(1.03); box-shadow: 10px 10px 0 var(--violet); }
.price-card.popular:hover { transform: scale(1.03) translateY(-8px); }
.price-card.popular .price-desc, .price-card.popular .price-list li { color: #d8d4ca; }
.price-flag {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--lime); border: var(--border); border-radius: 100px;
  font-family: var(--font-display); font-weight: 700; font-size: .82rem; padding: .35rem 1rem; white-space: nowrap;
}
.price-name { font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; }
.price-desc { color: #555; margin: .4rem 0 1.4rem; min-height: 2.8em; }
.price-tag { display: flex; flex-direction: column; margin-bottom: 1.6rem; }
.price-tag .from { font-size: .85rem; opacity: .7; }
.price-tag .amount { font-family: var(--font-display); font-weight: 800; font-size: 3rem; line-height: 1; letter-spacing: -.03em; }
.price-card.popular .amount { color: var(--lime); }
.price-tag .cur { font-size: 1.5rem; vertical-align: super; margin-left: 2px; }
.price-list { display: grid; gap: .7rem; margin-bottom: 2rem; flex: 1; }
.price-list li { padding-left: 1.7rem; position: relative; }
.price-list li::before { content: '✦'; position: absolute; left: 0; color: var(--violet); font-weight: 700; }
.price-card.popular .price-list li::before { color: var(--lime); }

/* Configurateur de prix */
.configurator {
  margin-top: 1.8rem; background: var(--cream); border: var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
}
.config-head h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.4rem, 3vw, 2rem); }
.config-head p { color: #555; margin-top: .3rem; }
.config-group { margin-top: 1.6rem; }
.config-label {
  display: block; margin-bottom: .8rem; font-family: var(--font-display); font-weight: 700;
  font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--violet);
}
.config-opts { display: flex; flex-wrap: wrap; gap: .8rem; }
.config-opts.opts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.config-opt { cursor: none; }
@media (max-width: 900px) { .config-opt { cursor: pointer; } }
.config-opt input { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.opt-card {
  display: flex; flex-direction: column; gap: .15rem; height: 100%;
  padding: .85rem 1.1rem; border: 2.5px solid var(--ink); border-radius: 14px; background: #fff;
  transition: transform .2s var(--ease-back), box-shadow .2s, background .2s;
}
.opt-card b { font-family: var(--font-display); font-weight: 700; }
.opt-card i { font-style: normal; color: #666; font-size: .9rem; }
.config-opt:hover .opt-card { transform: translate(-2px,-2px); box-shadow: 3px 3px 0 var(--ink); }
.config-opt input:checked + .opt-card { background: var(--lime); box-shadow: 4px 4px 0 var(--ink); transform: translate(-2px,-2px); }
.config-opt input:checked + .opt-card i { color: var(--ink); }
.config-opt input:focus-visible + .opt-card { outline: 3px solid var(--violet); outline-offset: 2px; }
.config-total {
  margin-top: 2rem; padding-top: 1.4rem; border-top: 2.5px solid var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap;
}
.config-total-label { display: block; font-size: .85rem; color: #555; }
.config-total-val { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 5vw, 3rem); line-height: 1; letter-spacing: -.02em; }

.quote-banner {
  margin-top: 1.8rem; background: var(--lime); border: var(--border); border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.8rem); box-shadow: var(--shadow); display: flex;
  align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.quote-banner h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.4rem,3vw,2rem); }
.quote-banner p { margin-top: .3rem; }

/* ---------- Works ---------- */
.works-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.4rem; }
.work-card {
  border: var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  background: var(--cream); transition: transform .3s var(--ease-back), box-shadow .3s;
}
.work-card:hover { transform: translate(-5px,-5px); box-shadow: var(--shadow-lg); }
.work-thumb { aspect-ratio: 16/10; background: var(--g); display: grid; place-items: center; position: relative; overflow: hidden; }
.work-thumb img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1;
  transition: transform .7s var(--ease-expo);
}
.work-card:hover .work-thumb img { transform: scale(1.06); }
.work-emoji { font-size: clamp(3rem, 8vw, 5.5rem); filter: drop-shadow(3px 3px 0 rgba(0,0,0,.2)); transition: transform .5s var(--ease-back); position: relative; z-index: 1; }
.work-card:hover .work-emoji { transform: scale(1.15) rotate(-6deg); }
.work-meta { padding: 1.4rem 1.6rem; display: flex; justify-content: space-between; align-items: center; }
.work-meta h3 { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; }
.work-meta p { color: #666; font-size: .95rem; }

/* Works — défilement horizontal */
.works-h { position: relative; }
.works-pin {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: center;
}
.works-track {
  display: flex; align-items: center; gap: clamp(1.2rem, 3vw, 2.4rem);
  padding-inline: clamp(1.2rem, 6vw, 7rem); will-change: transform;
}
.works-track .panel { flex: 0 0 auto; }
.works-intro { width: min(86vw, 480px); }
.works-intro .section-title { margin-top: 1rem; }
.works-hint {
  margin-top: 1.6rem; font-family: var(--font-display); font-weight: 700;
  color: var(--violet); font-size: 1.05rem; animation: hintpulse 1.6s ease-in-out infinite;
}
@keyframes hintpulse { 0%,100% { transform: translateX(0); } 50% { transform: translateX(8px); } }
.works-h .work-card { width: min(82vw, 440px); }
.work-cta .work-meta { flex-direction: column; align-items: flex-start; gap: .4rem; }
.work-cta .work-meta a { font-family: var(--font-display); font-weight: 700; color: var(--violet); }

/* fallback mobile / tactile : empilement vertical classique */
@media (max-width: 900px) {
  .works-h { height: auto !important; padding: var(--space-lg) 0; }
  .works-pin { position: static; height: auto; overflow: visible; display: block; }
  .works-track {
    flex-direction: column; transform: none !important;
    padding-inline: clamp(1.2rem, 4vw, 3rem); gap: 1.4rem;
  }
  .works-intro, .works-h .work-card { width: 100%; max-width: 560px; margin-inline: auto; }
  .works-hint { display: none; }
}

/* ---------- Testimonials ---------- */
.testi-wrap { background: var(--coral); border-block: var(--border); padding: 2.5rem 0; overflow: hidden; }
.testi-track { gap: 1.4rem; animation-duration: 40s; }
.testi {
  background: var(--cream); border: var(--border); border-radius: var(--radius-sm);
  padding: 1.4rem 1.8rem; box-shadow: 5px 5px 0 var(--ink); width: min(70vw, 420px); flex-shrink: 0;
}
.testi p { font-family: var(--font-display); font-weight: 600; font-size: 1.15rem; line-height: 1.35; }
.testi cite { display: block; margin-top: .8rem; font-style: normal; font-weight: 700; color: var(--violet); }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 1rem; max-width: 860px; }
.faq-item {
  border: var(--border); border-radius: var(--radius-sm); background: var(--cream);
  box-shadow: var(--shadow); overflow: hidden; transition: box-shadow .3s;
}
.faq-item[open] { box-shadow: var(--shadow-lg); }
.faq-item summary {
  list-style: none; cursor: none; padding: 1.4rem 1.6rem; font-family: var(--font-display);
  font-weight: 700; font-size: clamp(1.05rem,2.2vw,1.4rem); display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
@media (max-width: 900px) { .faq-item summary { cursor: pointer; } }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.faq-item summary i::before, .faq-item summary i::after {
  content: ''; position: absolute; background: var(--ink); border-radius: 2px;
  top: 50%; left: 50%; transition: transform .3s var(--ease-expo);
}
.faq-item summary i::before { width: 16px; height: 3px; transform: translate(-50%,-50%); }
.faq-item summary i::after { width: 3px; height: 16px; transform: translate(-50%,-50%); }
.faq-item[open] summary i::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-body { padding: 0 1.6rem 1.5rem; }
.faq-body p { color: #444; max-width: 65ch; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.contact-points { margin-top: 1.8rem; display: grid; gap: .7rem; font-weight: 600; }
.contact-form {
  background: var(--cream); border: var(--border); border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-lg);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.2rem; }
.field label { font-family: var(--font-display); font-weight: 700; font-size: .92rem; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; padding: .85rem 1rem;
  border: 2.5px solid var(--ink); border-radius: 12px; background: #fff; color: var(--ink);
  transition: box-shadow .2s, transform .2s; cursor: none; resize: vertical;
}
@media (max-width: 900px) { .field input, .field select, .field textarea { cursor: auto; } }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; box-shadow: 4px 4px 0 var(--lime); transform: translate(-2px,-2px);
}
.field input.invalid, .field select.invalid, .field textarea.invalid { box-shadow: 4px 4px 0 var(--coral); }
.form-submit { width: 100%; justify-content: center; margin-top: .5rem; }
.form-note { margin-top: 1rem; font-weight: 600; text-align: center; min-height: 1.4em; }
.form-note.ok { color: #138a36; }
.form-note.err { color: var(--coral); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: var(--cream); border-top: var(--border); margin-top: var(--space-lg); }
.footer-top {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem,6vw,5rem) clamp(1.2rem,4vw,3rem) 2rem;
  display: grid; grid-template-columns: 1.4fr 2fr; gap: 2.5rem;
}
.footer-brand .logo-mark { color: var(--cream); }
.footer-brand p { margin-top: 1rem; color: #b6b2a8; }
.footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.footer-col h4 { font-family: var(--font-display); font-weight: 700; margin-bottom: 1rem; color: var(--lime); }
.footer-col a { display: block; color: #cfcbc1; padding: .3rem 0; transition: color .2s, transform .2s; }
.footer-col a:hover { color: var(--lime); transform: translateX(4px); }
.footer-cta { border-top: 2.5px solid #2a2a33; border-bottom: 2.5px solid #2a2a33; }
.footer-bigcta {
  display: block; max-width: var(--maxw); margin: 0 auto; padding: clamp(2rem,5vw,4rem) clamp(1.2rem,4vw,3rem);
  font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 7vw, 5.5rem);
  letter-spacing: -.03em; line-height: 1; transition: color .3s;
}
.footer-bigcta:hover { color: var(--lime); }
.footer-bigcta .arrow { display: inline-block; transition: transform .3s var(--ease-back); }
.footer-bigcta:hover .arrow { transform: translateX(20px); }
.footer-bottom {
  max-width: var(--maxw); margin: 0 auto; padding: 1.6rem clamp(1.2rem,4vw,3rem);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .9rem; color: #9c988e;
}

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s var(--ease-expo), transform .7s var(--ease-expo); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .bento, .stats-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .bento-item, .bento-item.featured { grid-column: span 1; }
  .bento-item.featured { grid-row: span 1; }
  .bento-item.wide { grid-column: span 2; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-8px); }
  .works-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .bento, .stats-grid, .steps { grid-template-columns: 1fr; }
  .bento-item.wide { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .quote-banner { flex-direction: column; align-items: flex-start; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-title .word { transform: none; }
  html { scroll-behavior: auto; }
}
