/* =======================================================================
   YOHSEO — EDITORIAL TECH · V3 (Tier 1)
   ======================================================================= */

:root {
  --bg:        #0d0b09;
  --bg-2:      #161310;
  --bg-3:      #1f1a16;
  --bg-plate:  #efe8db;

  --fg:        #f5efe2;
  --fg-soft:   #c7beab;
  --fg-muted:  #8a8273;
  --fg-subtle: #4b4539;

  --accent:    #ff5a1f;
  --accent-2:  #ffa070;
  --accent-wash: rgba(255,90,31,0.12);
  --accent-ink:  #1a0a00;

  --hair:      rgba(245,239,226,0.08);
  --hair-2:    rgba(245,239,226,0.16);
  --hair-3:    rgba(245,239,226,0.28);

  --ff-display: 'Fraunces', ui-serif, Georgia, serif;
  --ff-sans:    'Geist', ui-sans-serif, system-ui, sans-serif;
  --ff-mono:    'Geist Mono', ui-monospace, 'JetBrains Mono', monospace;

  --ease:       cubic-bezier(0.625, 0.05, 0, 1);
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);

  --gutter:    clamp(20px, 3vw, 40px);
  --inset:     clamp(20px, 4vw, 56px);
  --wrap:      min(1440px, calc(100vw - (var(--inset) * 2)));
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--accent); color: var(--accent-ink); }

html {
  color-scheme: dark;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--ff-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-feature-settings: 'ss01','cv11';
}

/* Lenis — désactiver le scroll-behavior natif pour éviter les conflits */
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; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

@media (min-width: 900px) {
  body { cursor: none; }
  a, button, [role="button"], input, textarea, select { cursor: none !important; }
}

a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; color: inherit; }
img, svg { display: block; max-width: 100%; }

/* =======================================================================
   PRELOADER
   ======================================================================= */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: clip-path 1.1s cubic-bezier(0.76, 0, 0.24, 1);
}
.preloader.is-done {
  clip-path: inset(0 0 100% 0);
  pointer-events: none;
}
.preloader__mark {
  font-family: var(--ff-display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
  font-weight: 400;
  font-size: clamp(120px, 22vw, 320px);
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: var(--fg);
  display: flex;
  align-items: baseline;
  gap: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: preMark 1s var(--ease) 0.1s forwards;
}
.preloader__mark em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  transform-origin: center;
  animation: preDot 1s var(--ease) 0.6s forwards;
  opacity: 0;
  transform: scale(0);
  display: inline-block;
}
@keyframes preMark {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes preDot {
  to { opacity: 1; transform: scale(1); }
}
.preloader__sub {
  margin-top: 24px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  opacity: 0;
  animation: preFade 0.6s var(--ease) 0.8s forwards;
}
.preloader__bar {
  margin-top: 36px;
  width: 160px;
  height: 1px;
  background: var(--hair-2);
  overflow: hidden;
  opacity: 0;
  animation: preFade 0.4s var(--ease) 0.9s forwards;
}
.preloader__bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 0%;
  background: var(--accent);
  animation: preBar 1.4s var(--ease-out) 1s forwards;
}
@keyframes preFade { to { opacity: 1; } }
@keyframes preBar { to { width: 100%; } }

/* =======================================================================
   GRAIN + VIGNETTE
   ======================================================================= */
.grain, .vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
}
.grain {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.96 0 0 0 0 0.94 0 0 0 0 0.89 0 0 0 0.45 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.06;
  mix-blend-mode: overlay;
}
.vignette {
  background: radial-gradient(ellipse at center, transparent 55%, rgba(0,0,0,0.55) 100%);
  z-index: 49;
}

/* =======================================================================
   CURSOR
   ======================================================================= */
.cur {
  position: fixed;
  left: 0; top: 0;
  width: 12px; height: 12px;
  border-radius: 999px;
  background: var(--fg);
  pointer-events: none;
  z-index: 9999;
  transform: translate3d(-50%, -50%, 0);
  mix-blend-mode: difference;
  transition:
    width .35s var(--ease-out),
    height .35s var(--ease-out),
    background .2s ease;
}
.cur--ring {
  width: 36px; height: 36px;
  border: 1px solid var(--fg);
  background: transparent;
  opacity: 0.6;
}
.cur.is-hover { width: 60px; height: 60px; background: var(--accent); }
.cur--ring.is-hover { width: 8px; height: 8px; opacity: 0; }
@media (hover: none), (max-width: 899px) {
  .cur, .cur--ring { display: none; }
}

/* =======================================================================
   PROGRESS
   ======================================================================= */
.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--hair);
  z-index: 120;
}
.progress__fill {
  height: 100%;
  background: var(--accent);
  width: 0;
  transform-origin: left;
}

/* =======================================================================
   NAV
   ======================================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--inset);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,11,9,0.82), rgba(13,11,9,0));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: -1;
  mask-image: linear-gradient(180deg, black 60%, transparent);
}
.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--ff-display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 96, 'SOFT' 50;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.logo__mark {
  display: inline-block;
  font-style: italic;
  color: var(--accent);
}
.logo__sub {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 500;
  padding-bottom: 4px;
}
.nav__links {
  display: flex;
  list-style: none;
  gap: 36px;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--ff-mono);
  letter-spacing: 0.02em;
}
.nav__links a {
  position: relative;
  padding: 4px 0;
  color: var(--fg-soft);
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--accent);
  transition: right .45s var(--ease-out);
}
.nav__links a:hover { color: var(--fg); }
.nav__links a:hover::after { right: 0; }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 22px;
  border: 1px solid var(--hair-2);
  border-radius: 999px;
  font-size: 13px;
  font-family: var(--ff-mono);
  letter-spacing: 0.02em;
  transition: all .4s var(--ease), transform .5s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav__cta .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent);
  animation: pulse 2.4s var(--ease) infinite;
}
.nav__cta:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,90,31,0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(255,90,31,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,90,31,0); }
}
@media (max-width: 900px) {
  .nav__links { display: none; }
  .logo__sub { display: none; }
}

/* =======================================================================
   HERO
   ======================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px var(--inset) 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__wrap { width: var(--wrap); margin: 0 auto; position: relative; z-index: 2; }

.hero__meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 56px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  opacity: 0;
  transform: translateY(12px);
}
.is-ready .hero__meta { animation: heroFadeUp 0.9s var(--ease) 0.15s forwards; }
.hero__meta-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero__meta-col strong { color: var(--fg); font-weight: 500; letter-spacing: 0.18em; }

/* Headline (split char-by-char via JS) */
.hero__title {
  font-family: var(--ff-display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-weight: 400;
  font-size: clamp(58px, 11vw, 200px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  margin-bottom: 56px;
  max-width: 14ch;
}
.hero__title em {
  font-style: italic;
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  color: var(--accent);
}
.hero__title .slash {
  display: inline-block;
  color: var(--fg-subtle);
  font-style: normal;
  font-weight: 300;
  margin: 0 0.05em;
}
.hero__title .line {
  display: block;
  overflow: hidden;
  /* bottom padding laisse respirer les descenders (j, p, g) coupés par overflow:hidden */
  padding: 0.08em 0 0.22em;
  margin-bottom: -0.14em;
}
.hero__title .line:last-child { margin-bottom: 0; }
.sp-word {
  display: inline-block;
  white-space: nowrap;
}
.hero__title .sp-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%) rotate(8deg) skewY(4deg);
  will-change: transform, opacity;
  transition:
    opacity .9s var(--ease),
    transform .95s var(--ease);
  transition-delay: calc(var(--i, 0) * 22ms);
}
.is-ready .hero__title .sp-char {
  opacity: 1;
  transform: translateY(0) rotate(0) skewY(0);
}

.hero__body {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: end;
}
.hero__lead {
  max-width: 52ch;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--fg-soft);
  opacity: 0;
  transform: translateY(20px);
}
.is-ready .hero__lead {
  animation: heroFadeUp 1s var(--ease) 0.85s forwards;
}
.hero__lead em {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--fg);
  font-variation-settings: 'opsz' 24, 'SOFT' 100;
  font-weight: 400;
}
@keyframes heroFadeUp { to { opacity: 1; transform: translateY(0); } }

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(20px);
}
.is-ready .hero__ctas {
  animation: heroFadeUp 1s var(--ease) 1.05s forwards;
}

/* MAGNETIC BUTTONS — wrapper fait le mouvement, inner fait le hover */
.btn-wrap {
  display: inline-flex;
  transition: transform .6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}
.btn {
  --btn-bg: var(--accent);
  --btn-fg: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border-radius: 999px;
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform .45s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--fg);
  transform: translateY(101%);
  transition: transform .55s var(--ease);
  z-index: 0;
}
.btn:hover::before { transform: translateY(0); }
.btn > * { position: relative; z-index: 1; transition: color .5s var(--ease); }
.btn:hover > * { color: var(--bg); }
.btn.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--fg);
  border: 1px solid var(--hair-2);
}
.btn.btn--ghost::before { background: var(--fg); }
.btn__arrow {
  width: 14px; height: 14px;
  transition: transform .5s var(--ease-spring);
}
.btn__arrow svg { width: 100%; height: 100%; stroke: currentColor; }
.btn-wrap:hover .btn__arrow { transform: translateX(4px); }

/* Stats */
.hero__stats {
  position: relative;
  z-index: 2;
  margin-top: 120px;
  padding-top: 28px;
  border-top: 1px solid var(--hair);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gutter);
}
.hero__stat {
  opacity: 0;
  transform: translateY(14px);
}
.is-ready .hero__stat { animation: heroFadeUp .9s var(--ease) forwards; }
.is-ready .hero__stat:nth-child(1) { animation-delay: 1.25s; }
.is-ready .hero__stat:nth-child(2) { animation-delay: 1.32s; }
.is-ready .hero__stat:nth-child(3) { animation-delay: 1.39s; }
.is-ready .hero__stat:nth-child(4) { animation-delay: 1.46s; }
.hero__stat strong {
  display: block;
  font-family: var(--ff-display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 48, 'SOFT' 50;
  font-weight: 400;
  font-size: clamp(30px, 3.4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
  font-feature-settings: 'tnum' 1; /* tabular figures pour stabilité counter */
}
.hero__stat strong em { font-style: italic; color: var(--accent); font-variation-settings: 'opsz' 48, 'SOFT' 100; }
.hero__stat small {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: block;
}

.hero__ghost {
  position: absolute;
  inset: auto -4vw 10vh -4vw;
  font-family: var(--ff-display);
  font-style: italic;
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-weight: 300;
  font-size: 42vw;
  line-height: 0.78;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,239,226,0.045);
  user-select: none;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
  will-change: transform;
}

@media (max-width: 800px) {
  .hero__body { grid-template-columns: 1fr; gap: 32px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 60px; }
  .hero__meta { grid-template-columns: 1fr; gap: 8px; }
}

/* =======================================================================
   MARQUEE
   ======================================================================= */
.marquee {
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 32px 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--bg-2);
  position: relative;
}
.marquee__track {
  display: inline-flex;
  gap: 72px;
  padding-right: 72px;
  animation: scroll 50s linear infinite;
}
.marquee span {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 96, 'SOFT' 80;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(36px, 5.2vw, 68px);
  letter-spacing: -0.025em;
  color: var(--fg-subtle);
  display: inline-flex;
  align-items: center;
  gap: 72px;
  line-height: 1;
}
.marquee span::after {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 999px;
  background: var(--accent);
  vertical-align: middle;
  flex-shrink: 0;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =======================================================================
   SECTIONS
   ======================================================================= */
section[data-section] {
  padding: clamp(90px, 12vh, 160px) var(--inset);
  position: relative;
}
.sec { width: var(--wrap); margin: 0 auto; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--accent);
}

.sec__title {
  font-family: var(--ff-display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 96, 'SOFT' 40;
  font-weight: 400;
  font-size: clamp(40px, 6.2vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  max-width: 18ch;
}
.sec__title em {
  font-style: italic;
  font-variation-settings: 'opsz' 96, 'SOFT' 100;
  color: var(--accent);
}
.sec__title .sp-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%) rotate(4deg);
  transition:
    opacity .75s var(--ease),
    transform .9s var(--ease);
  transition-delay: calc(var(--i, 0) * 18ms);
  will-change: transform, opacity;
}
.sec__title.is-in .sp-char {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

.sec__lead {
  max-width: 58ch;
  color: var(--fg-soft);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
  margin-bottom: 72px;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

.reveal--stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal--stagger.is-in > * { opacity: 1; transform: translateY(0); }
.reveal--stagger.is-in > *:nth-child(2) { transition-delay: .08s; }
.reveal--stagger.is-in > *:nth-child(3) { transition-delay: .16s; }
.reveal--stagger.is-in > *:nth-child(4) { transition-delay: .24s; }
.reveal--stagger.is-in > *:nth-child(5) { transition-delay: .32s; }
.reveal--stagger.is-in > *:nth-child(6) { transition-delay: .4s; }
.reveal--stagger.is-in > *:nth-child(7) { transition-delay: .48s; }
.reveal--stagger.is-in > *:nth-child(8) { transition-delay: .56s; }

/* =======================================================================
   SERVICES
   ======================================================================= */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--hair);
}
.services-wrap { border-bottom: 1px solid var(--hair); }
.service {
  padding: clamp(32px, 4vw, 56px);
  border-right: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: background .55s var(--ease);
}
.service:nth-child(2n) { border-right: 0; }
.service:nth-last-child(1), .service:nth-last-child(2) { border-bottom: 0; }
.service::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 50%), var(--accent-wash), transparent 42%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  z-index: -1;
}
.service:hover::before { opacity: 1; }

.service__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
}
.service__num {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--fg-muted);
  padding-top: 6px;
}
.service__name {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 48, 'SOFT' 50;
  font-weight: 400;
  font-size: clamp(26px, 2.8vw, 40px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 10px;
}
.service__name em {
  font-style: italic;
  font-variation-settings: 'opsz' 48, 'SOFT' 100;
  color: var(--accent);
}
.service__tag {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.service__desc {
  color: var(--fg-soft);
  font-size: 15px;
  line-height: 1.6;
  max-width: 42ch;
  margin-bottom: 40px;
}

.service__foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--hair);
}
.service__price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.service__price s {
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--fg-subtle);
  text-decoration: line-through;
}
.service__price strong {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 96, 'SOFT' 50;
  font-weight: 400;
  font-size: clamp(36px, 4.2vw, 58px);
  letter-spacing: -0.035em;
  line-height: 1;
}
.service__price strong em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  font-size: 0.65em;
}
.service__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--fg);
  transition: color .3s, border-color .3s;
}
.service:hover .service__cta { color: var(--accent); border-color: var(--accent); }
.service__cta svg { width: 12px; height: 12px; }

@media (max-width: 800px) {
  .services { grid-template-columns: 1fr; }
  .service { border-right: 0 !important; }
  .service:nth-last-child(2) { border-bottom: 1px solid var(--hair); }
}

/* =======================================================================
   WHY
   ======================================================================= */
.why {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hair);
}
.why__col {
  padding: 48px 40px;
  border-right: 1px solid var(--hair);
  position: relative;
  transition: background .4s var(--ease);
}
.why__col:last-child { border-right: 0; }
.why__col:hover { background: var(--bg-2); }

.why__num {
  font-family: var(--ff-display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(80px, 11vw, 180px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px var(--hair-2);
  margin-bottom: 24px;
  transition: -webkit-text-stroke-color .4s, color .4s;
}
.why__col:hover .why__num {
  -webkit-text-stroke-color: var(--accent);
  color: var(--accent-wash);
}

.why__ttl {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 48, 'SOFT' 40;
  font-weight: 400;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.why__ttl em { font-style: italic; color: var(--accent); font-variation-settings: 'opsz' 48, 'SOFT' 100; }
.why__desc {
  color: var(--fg-soft);
  font-size: 15px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .why { grid-template-columns: 1fr; }
  .why__col { border-right: 0; border-bottom: 1px solid var(--hair); }
  .why__col:last-child { border-bottom: 0; }
}

/* =======================================================================
   PROJECTS
   ======================================================================= */
.projects {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hair);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
}
.project--featured { grid-column: span 2; }
.project--featured .project__thumb { aspect-ratio: 16 / 9; }
.project--featured .project__name { font-size: clamp(26px, 2.4vw, 36px); }
.project--featured .project__mono { width: 52px; height: 52px; font-size: 20px; }
@media (max-width: 1100px) {
  .projects { grid-template-columns: repeat(2, 1fr); }
  .project--featured { grid-column: span 2; }
}
@media (max-width: 600px) {
  .projects { grid-template-columns: 1fr; }
  .project--featured { grid-column: span 1; }
}

.project {
  background: var(--bg);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  transition: background .5s var(--ease);
}
.project:hover { background: var(--bg-2); }

.project__thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-2), var(--bg-3));
  border-bottom: 1px solid var(--hair);
}
.project__thumb::before {
  /* placeholder shimmer during mShots generation */
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(245,239,226,0.03) 50%,
      transparent 100%
    );
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
  z-index: 0;
}
@keyframes shimmer {
  from { background-position: -100% 0; }
  to   { background-position: 100% 0; }
}
.project__thumb img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity .6s var(--ease), transform .8s var(--ease);
  z-index: 1;
}
.project__thumb img[data-loaded="1"] { opacity: 1; }
.project:hover .project__thumb img { transform: scale(1.04); }

.project__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,11,9,0.65) 100%);
  z-index: 2;
  pointer-events: none;
}

.project__overlay {
  position: absolute;
  top: 18px; left: 18px; right: 18px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  z-index: 3;
}
.project__mono {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(13,11,9,0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--hair-2);
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 48, 'SOFT' 80;
  font-weight: 400;
  font-style: italic;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--fg);
  transition: all .5s var(--ease);
}
.project:hover .project__mono {
  border-color: var(--accent);
  color: var(--accent);
  transform: rotate(-8deg) scale(1.05);
}

.project__badge {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.project__badge--client {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 0 24px rgba(255,90,31,0.4);
}
.project__badge--lab {
  color: var(--fg);
  background: rgba(13,11,9,0.72);
  border: 1px solid var(--hair-2);
}

.project__info {
  padding: 24px 26px 28px;
}
.project__name {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 48, 'SOFT' 40;
  font-weight: 500;
  font-size: clamp(20px, 1.7vw, 25px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 4px;
}
.project__url {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.project__url::after {
  content: '↗';
  font-size: 12px;
  opacity: 0.6;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.project:hover .project__url::after { transform: translate(2px, -2px); opacity: 1; }
.project__desc {
  font-size: 13px;
  line-height: 1.55;
  color: var(--fg-soft);
  margin-bottom: 18px;
}
.project__stack {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.project__stack span {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  padding: 3px 8px;
  border: 1px solid var(--hair-2);
  border-radius: 999px;
}

/* =======================================================================
   PROCESS
   ======================================================================= */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  position: relative;
  padding-top: 32px;
  border-top: 1px solid var(--hair);
}
.process::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.8s var(--ease);
}
.process.is-in::before { transform: scaleX(1); }
.step {
  position: relative;
}
.step::before {
  content: '';
  position: absolute;
  top: -37px; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--accent);
  transform: scale(0);
  transition: transform .5s var(--ease) .3s;
}
.process.is-in .step::before { transform: scale(1); }
.process.is-in .step:nth-child(2)::before { transition-delay: .5s; }
.process.is-in .step:nth-child(3)::before { transition-delay: .7s; }
.process.is-in .step:nth-child(4)::before { transition-delay: .9s; }

.step__num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
  margin-bottom: 24px;
}
.step__ttl {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 48, 'SOFT' 40;
  font-weight: 400;
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.step__ttl em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: 'opsz' 48, 'SOFT' 100;
}
.step__desc {
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .process { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .process { grid-template-columns: 1fr; gap: 40px; }
}

/* =======================================================================
   GUARANTEES
   ======================================================================= */
.guars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.guar {
  padding: 40px 36px 44px;
  border: 1px solid var(--hair);
  border-radius: 28px;
  background: var(--bg);
  transition: all .5s var(--ease);
  position: relative;
  overflow: hidden;
}
.guar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at 100% 0%, var(--accent-wash), transparent 60%);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.guar:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.guar:hover::before { opacity: 1; }

.guar__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.guar__icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hair-2);
  border-radius: 999px;
  color: var(--accent);
  transition: all .4s var(--ease);
}
.guar:hover .guar__icon {
  border-color: var(--accent);
  background: var(--accent-wash);
  transform: rotate(-10deg);
}
.guar__icon svg { width: 18px; height: 18px; }
.guar__num {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
}
.guar__ttl {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 48, 'SOFT' 40;
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.guar__ttl em { font-style: italic; color: var(--accent); font-variation-settings: 'opsz' 48, 'SOFT' 100; }
.guar__desc {
  color: var(--fg-soft);
  font-size: 14px;
  line-height: 1.6;
}
@media (max-width: 900px) {
  .guars { grid-template-columns: 1fr; }
}

/* =======================================================================
   PRICING
   ======================================================================= */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--hair);
  border-radius: 32px;
  overflow: hidden;
}
.plan {
  padding: 48px 40px 44px;
  border-right: 1px solid var(--hair);
  background: var(--bg);
  position: relative;
  transition: background .4s var(--ease);
}
.plan:last-child { border-right: 0; }
.plan:hover { background: var(--bg-2); }
.plan--featured {
  background: linear-gradient(180deg, rgba(255,90,31,0.08), transparent 60%);
  position: relative;
}
.plan--featured::before {
  content: 'Le plus choisi';
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 500;
}

.plan__name {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.plan__price {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 144, 'SOFT' 60;
  font-weight: 400;
  font-size: clamp(56px, 7vw, 96px);
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin-bottom: 2px;
}
.plan__price em {
  font-style: italic;
  font-size: 0.5em;
  color: var(--fg-muted);
  font-variation-settings: 'opsz' 48, 'SOFT' 100;
}
.plan__period {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--fg-muted);
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}
.plan__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--hair);
  padding-top: 24px;
}
.plan__features li {
  font-size: 14px;
  color: var(--fg-soft);
  padding-left: 28px;
  position: relative;
  line-height: 1.4;
}
.plan__features li strong { color: var(--fg); font-weight: 500; }
.plan__features li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 1px;
  background: var(--accent);
}
@media (max-width: 900px) {
  .plans { grid-template-columns: 1fr; border-radius: 24px; }
  .plan { border-right: 0; border-bottom: 1px solid var(--hair); }
  .plan:last-child { border-bottom: 0; }
  .plan--featured::before { top: 16px; right: 16px; }
}

/* =======================================================================
   CTA FINAL
   ======================================================================= */
.cta-final {
  padding: clamp(120px, 20vh, 220px) var(--inset);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--hair);
  isolation: isolate;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px circle at 50% 0%, rgba(255,90,31,0.18), transparent 60%),
    radial-gradient(600px circle at 20% 100%, rgba(255,160,112,0.08), transparent 50%);
  z-index: -1;
}
.cta-final__ttl {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 144, 'SOFT' 40;
  font-weight: 400;
  font-size: clamp(48px, 9vw, 140px);
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin-bottom: 40px;
  max-width: 12ch;
  margin-inline: auto;
}
.cta-final__ttl em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
}
.cta-final__ttl .sp-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%) rotate(4deg);
  transition:
    opacity .85s var(--ease),
    transform 1s var(--ease);
  transition-delay: calc(var(--i, 0) * 18ms);
}
.cta-final__ttl.is-in .sp-char {
  opacity: 1;
  transform: translateY(0) rotate(0);
}
.cta-final__lead {
  font-size: 18px;
  color: var(--fg-soft);
  margin-bottom: 56px;
  max-width: 58ch;
  margin-inline: auto;
  line-height: 1.55;
}
.cta-final__lead em {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--fg);
  font-variation-settings: 'opsz' 24, 'SOFT' 100;
}
.cta-final__btn { padding: 24px 40px; font-size: 14px; }
.cta-final__meta {
  margin-top: 40px;
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
}
.cta-final__meta a { color: var(--fg); }

/* =======================================================================
   FOOTER
   ======================================================================= */
footer {
  padding: 40px var(--inset);
  border-top: 1px solid var(--hair);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  text-transform: uppercase;
}
footer a:hover { color: var(--fg); }
footer nav { display: flex; gap: 28px; flex-wrap: wrap; }

/* =======================================================================
   REDUCED MOTION
   ======================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero__ghost { display: none; }
  .marquee__track { animation: none; }
  .preloader { display: none; }
  .sp-char { opacity: 1 !important; transform: none !important; }
}

/* =======================================================================
   PAGE SERVICES (Vitrine, Blog, Shopify, Woo)
   ======================================================================= */

/* Hero compact pour les sous-pages */
.page-hero {
  padding: 140px var(--inset) 80px;
  position: relative;
  border-bottom: 1px solid var(--hair);
  overflow: hidden;
}
.page-hero__wrap { width: var(--wrap); margin: 0 auto; position: relative; z-index: 2; }
.page-hero__meta {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 28px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.page-hero__meta a { color: var(--fg-muted); transition: color .3s var(--ease); }
.page-hero__meta a:hover { color: var(--accent); }
.page-hero__meta .sep { color: var(--fg-subtle); }
.page-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.page-hero__tag::before {
  content: '';
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--accent);
  animation: pulse 2.4s var(--ease) infinite;
}
.page-hero__title {
  font-family: var(--ff-display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
  font-weight: 400;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
  max-width: 16ch;
}
.page-hero__title em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  color: var(--accent);
}
.page-hero__lead {
  max-width: 62ch;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--fg-soft);
  margin-bottom: 48px;
}
.page-hero__lead em {
  font-family: var(--ff-display);
  font-style: italic;
  color: var(--fg);
  font-variation-settings: 'opsz' 24, 'SOFT' 100;
  font-weight: 400;
}

.page-hero__price {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--hair);
  flex-wrap: wrap;
}
.page-hero__price-main {
  font-family: var(--ff-display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  font-weight: 400;
  font-size: clamp(56px, 7vw, 110px);
  letter-spacing: -0.045em;
  line-height: 0.95;
}
.page-hero__price-main em {
  font-style: italic;
  color: var(--accent);
  font-size: 0.55em;
  font-variation-settings: 'opsz' 48, 'SOFT' 100;
}
.page-hero__price-aside {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-hero__price-aside s {
  font-family: var(--ff-mono);
  font-size: 14px;
  color: var(--fg-subtle);
}
.page-hero__price-aside small {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.page-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* Target list (for who / not for who) */
.target {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--hair);
  border-radius: 28px;
  overflow: hidden;
}
.target__col { padding: 40px 36px; }
.target__col:first-child { border-right: 1px solid var(--hair); }
.target__head {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.target__head--yes { color: var(--accent); }
.target__head--no { color: var(--fg-muted); }
.target__head .icon {
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  font-size: 14px;
}
.target__head--yes .icon { background: var(--accent-wash); color: var(--accent); }
.target__head--no .icon { background: rgba(245,239,226,0.06); color: var(--fg-muted); }
.target ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.target li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg-soft);
  padding-left: 22px;
  position: relative;
}
.target li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 10px; height: 1px;
  background: currentColor;
  opacity: 0.4;
}
.target li strong { color: var(--fg); font-weight: 500; }
@media (max-width: 900px) {
  .target { grid-template-columns: 1fr; }
  .target__col:first-child { border-right: 0; border-bottom: 1px solid var(--hair); }
}

/* Value stack */
.stack {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .stack { grid-template-columns: 1fr; gap: 40px; }
}
.stack__list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.stack__list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--hair);
}
.stack__list li:first-child { border-top: 1px solid var(--hair); }
.stack__list .check {
  color: var(--accent);
  font-family: var(--ff-mono);
  font-size: 12px;
}
.stack__list .check--bonus {
  color: var(--fg);
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 13px;
}
.stack__list .label { color: var(--fg-soft); font-size: 15px; line-height: 1.45; }
.stack__list .label strong { color: var(--fg); font-weight: 500; }
.stack__list .price {
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--fg-muted);
  white-space: nowrap;
}
.stack__aside {
  position: sticky;
  top: 100px;
  padding: 32px 28px;
  border: 1px solid var(--accent);
  border-radius: 24px;
  background: linear-gradient(180deg, var(--accent-wash), transparent 80%);
}
.stack__aside-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.stack__aside-total {
  font-family: var(--ff-display);
  font-size: 14px;
  color: var(--fg-soft);
  margin-bottom: 4px;
}
.stack__aside-total s { color: var(--fg-subtle); }
.stack__aside-price {
  font-family: var(--ff-display);
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  font-weight: 400;
  font-size: clamp(48px, 5vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 12px 0 16px;
}
.stack__aside-price em {
  font-style: italic;
  color: var(--accent);
  font-size: 0.5em;
  font-variation-settings: 'opsz' 48, 'SOFT' 100;
}
.stack__aside-saving {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.stack__aside .btn { width: 100%; justify-content: center; }

/* Case study */
.case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .case { grid-template-columns: 1fr; gap: 32px; }
}
.case__media {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--hair);
  aspect-ratio: 16/10;
  background: var(--bg-2);
}
.case__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.case__chip {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  margin-bottom: 20px;
}
.case__ttl {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 96, 'SOFT' 40;
  font-weight: 400;
  font-size: clamp(32px, 3.8vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.case__ttl em { font-style: italic; color: var(--accent); font-variation-settings: 'opsz' 96, 'SOFT' 100; }
.case__desc {
  color: var(--fg-soft);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.case__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  margin-bottom: 28px;
}
.case__metric strong {
  display: block;
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 96, 'SOFT' 50;
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.case__metric strong em { font-style: italic; color: var(--accent); }
.case__metric small {
  font-family: var(--ff-mono);
  font-size: 10px;
  color: var(--fg-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.case__quote {
  padding: 24px 28px;
  border: 1px solid var(--hair);
  border-radius: 20px;
  background: var(--bg-2);
  margin-top: 20px;
  font-family: var(--ff-display);
  font-style: italic;
  font-variation-settings: 'opsz' 24, 'SOFT' 100;
  font-size: 18px;
  line-height: 1.45;
  color: var(--fg-soft);
  position: relative;
}
.case__quote::before {
  content: '"';
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 56px;
  color: var(--accent);
  position: absolute;
  top: -6px; left: 12px;
  line-height: 1;
}
.case__quote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--ff-mono);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* FAQ accordion */
.faq {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--hair);
}
.faq__item { border-bottom: 1px solid var(--hair); }
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  cursor: pointer;
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 48, 'SOFT' 40;
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 24px);
  letter-spacing: -0.015em;
  color: var(--fg);
  list-style: none;
  transition: color .3s var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after {
  content: '+';
  font-family: var(--ff-display);
  font-size: 28px;
  line-height: 1;
  color: var(--accent);
  transition: transform .4s var(--ease-spring);
  flex-shrink: 0;
}
.faq__item[open] .faq__q { color: var(--accent); }
.faq__item[open] .faq__q::after { transform: rotate(45deg); }
.faq__a {
  padding: 0 0 28px;
  color: var(--fg-soft);
  font-size: 15px;
  line-height: 1.7;
  max-width: 68ch;
}
.faq__a strong { color: var(--fg); font-weight: 500; }
.faq__a a { color: var(--accent); border-bottom: 1px solid var(--accent); }

/* Scarcity banner */
.scarcity {
  padding: 36px var(--inset);
  text-align: center;
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  background:
    radial-gradient(600px circle at 50% 50%, var(--accent-wash), transparent 70%),
    var(--bg);
  position: relative;
}
.scarcity__ttl {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 96, 'SOFT' 60;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 36px);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 12px;
}
.scarcity__ttl em { font-style: italic; color: var(--accent); font-variation-settings: 'opsz' 96, 'SOFT' 100; }
.scarcity__sub {
  font-family: var(--ff-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  text-transform: uppercase;
}

/* Related packs (cross-sell) */
.related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .related { grid-template-columns: 1fr; } }
.related a {
  padding: 28px 26px;
  border: 1px solid var(--hair);
  border-radius: 20px;
  transition: all .5s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.related a:hover {
  border-color: var(--accent);
  background: var(--bg-2);
  transform: translateY(-3px);
}
.related__tag {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.related__name {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 48, 'SOFT' 50;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.02em;
}
.related__name em { font-style: italic; color: var(--accent); font-variation-settings: 'opsz' 48, 'SOFT' 100; }
.related__price {
  font-family: var(--ff-mono);
  font-size: 13px;
  color: var(--fg-soft);
}
.related__price s { color: var(--fg-subtle); margin-right: 6px; }
.related__price strong { color: var(--fg); font-weight: 500; }
.related__arrow {
  margin-top: auto;
  font-family: var(--ff-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.related a:hover .related__arrow { color: var(--accent); }

/* =======================================================================
   STORY / BIO (page /a-propos)
   ======================================================================= */
.story {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 80px;
  align-items: start;
}
@media (max-width: 1000px) {
  .story { grid-template-columns: 1fr; gap: 40px; }
}
.story__prose {
  max-width: 64ch;
}
.story__prose > p {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.7;
  color: var(--fg-soft);
  margin-bottom: 24px;
}
.story__prose > p:first-of-type {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 24, 'SOFT' 60;
  font-weight: 400;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.45;
  letter-spacing: -0.012em;
  color: var(--fg);
  margin-bottom: 36px;
}
.story__prose > p:first-of-type::first-letter {
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-weight: 500;
  font-style: italic;
  font-size: 4em;
  line-height: 0.88;
  float: left;
  color: var(--accent);
  margin: 6px 14px -4px 0;
}
.story__prose em {
  font-family: var(--ff-display);
  font-style: italic;
  font-variation-settings: 'opsz' 24, 'SOFT' 100;
  color: var(--fg);
  font-weight: 400;
}
.story__prose strong {
  color: var(--fg);
  font-weight: 500;
}
.story__prose blockquote {
  font-family: var(--ff-display);
  font-style: italic;
  font-variation-settings: 'opsz' 96, 'SOFT' 100;
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--fg);
  padding: 32px 0 32px 32px;
  margin: 40px 0;
  border-left: 2px solid var(--accent);
  position: relative;
}
.story__prose blockquote::before {
  content: '"';
  position: absolute;
  left: 18px; top: 4px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 64px;
  color: var(--accent);
  line-height: 1;
  opacity: 0.25;
}

.story__aside {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1000px) {
  .story__aside { position: static; }
}
.story__card {
  padding: 28px 26px;
  border: 1px solid var(--hair);
  border-radius: 20px;
  background: var(--bg-2);
}
.story__card-label {
  font-family: var(--ff-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 14px;
}
.story__stats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.story__stats li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hair);
  font-size: 13px;
  color: var(--fg-soft);
  font-family: var(--ff-mono);
  letter-spacing: 0.02em;
}
.story__stats li:last-child { border-bottom: 0; padding-bottom: 0; }
.story__stats li strong {
  color: var(--fg);
  font-weight: 500;
  font-family: var(--ff-display);
  font-variation-settings: 'opsz' 24, 'SOFT' 50;
  font-size: 15px;
  letter-spacing: -0.005em;
}
.story__stats li strong em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: 'opsz' 24, 'SOFT' 100;
}
