/* ══════════════════════════════════════════════════════════
   LE BUREAU — Design System v2
   Unbounded · Instrument Serif · Space Grotesk · Space Mono
══════════════════════════════════════════════════════════ */

:root {
  --cream:  #f6f2ec;
  --ink:    #0d0c0a;
  --ink-2:  #171512;
  --acid:   #c9f31e;
  --sage:   #e1e3cc;
  --mauve:  #9282a6;
  --gray:   #7a7a7a;
  --t-body: #2a2a2a;
  --t-mut:  #6f6b64;

  --f-disp: 'Unbounded', sans-serif;
  --f-serif: 'Instrument Serif', serif;
  --f-body: 'Space Grotesk', sans-serif;
  --f-mono: 'Space Mono', monospace;

  --fs-hero: clamp(2.6rem, 7.5vw, 7rem);
  --fs-h2:   clamp(2rem, 5vw, 4.2rem);
  --fs-h3:   clamp(1.15rem, 2vw, 1.6rem);
  --fs-body: clamp(1rem, 1.15vw, 1.125rem);

  --gut: clamp(20px, 4vw, 64px);
  --sect: clamp(90px, 12vw, 180px);

  --ease: cubic-bezier(.65, .05, 0, 1);
  --ease-out: cubic-bezier(.19, 1, .22, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: clip; }
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }

body {
  background: var(--cream);
  color: var(--t-body);
  font-family: var(--f-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}
/* Curseur natif conservé — le point/anneau custom est un accent, pas un remplacement */

::selection { background: var(--acid); color: var(--ink); }

/* GRAIN */
body::after {
  content: '';
  position: fixed;
  inset: -50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 2000;
  mix-blend-mode: multiply;
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0) }
  20% { transform: translate(-2%,2%) }
  40% { transform: translate(2%,-1%) }
  60% { transform: translate(-1%,-2%) }
  80% { transform: translate(1%,2%) }
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -60px; left: 16px; z-index: 5000;
  background: var(--acid); color: var(--ink);
  font-family: var(--f-mono); font-size: 12px;
  padding: 10px 18px; text-decoration: none;
  transition: top .3s;
}
.skip-link:focus { top: 16px; }

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

/* ══════════ PRELOADER ══════════ */
.preloader {
  position: fixed; inset: 0; z-index: 4000;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: transform 1s var(--ease);
}
.preloader.done { transform: translateY(-101%); }
.preloader-logo {
  width: clamp(220px, 28vw, 420px);
  overflow: hidden;
}
.preloader-logo img {
  width: 100%; display: block;
  transform: translateY(105%) rotate(3deg);
  animation: pre-up .9s var(--ease) .15s forwards;
}
.preloader-count {
  position: absolute;
  right: var(--gut); bottom: 5vh;
  font-family: var(--f-mono); font-size: 13px;
  color: var(--acid); letter-spacing: 2px;
}
@keyframes pre-up { to { transform: translateY(0) } }
body.no-preload .preloader { display: none; }

/* ══════════ TRANSITION CURTAIN ══════════ */
.curtain {
  position: fixed; inset: 0; z-index: 3500;
  background: var(--ink);
  transform: translateY(101%);
  pointer-events: none;
}
.curtain.in { transition: transform .55s var(--ease); transform: translateY(0); }
.curtain.out { transition: transform .6s var(--ease); transform: translateY(-101%); }

/* ══════════ CURSOR v2 ══════════ */
.cursor, .cursor-ring, .cursor-tag {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 4500;
}
.cursor {
  width: 10px; height: 10px;
  background: var(--acid); border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(13,12,10,.55);
  transition: opacity .25s, scale .25s;
}
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid var(--acid); border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(13,12,10,.18), inset 0 0 0 1px rgba(13,12,10,.18);
  transition: width .3s var(--ease), height .3s var(--ease), opacity .3s, border-color .3s, background .3s;
}
.cursor-ring.hover { width: 58px; height: 58px; background: rgba(201,243,30,.12); }
.cursor.hidden, .cursor-ring.hidden, .cursor-tag.hidden { opacity: 0; }
.cursor-tag {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--ink); color: var(--acid);
  border: 1px solid rgba(201,243,30,.4);
  padding: 8px 14px; border-radius: 999px;
  white-space: nowrap;
  opacity: 0; scale: .6;
  transition: opacity .25s var(--ease), scale .25s var(--ease);
}
.cursor-tag.on { opacity: 1; scale: 1; }
iframe { cursor: auto; }

/* ══════════ SCROLL PROGRESS ══════════ */
.progress-bar {
  position: fixed; top: 0; left: 0; width: 100%; height: 2px;
  background: var(--acid);
  transform: scaleX(0); transform-origin: 0 50%;
  z-index: 3000;
}

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--acid); outline-offset: 3px;
}

/* Split chars (GSAP) */
.ch-w { display: inline-block; overflow: hidden; vertical-align: bottom; }
.ch { display: inline-block; will-change: transform; }

/* ══════════ NAV ══════════ */
nav {
  position: fixed; top: 0; left: 0; width: 100%;
  z-index: 900;
  padding: 22px var(--gut);
  display: flex; justify-content: space-between; align-items: center;
  mix-blend-mode: difference;
}
.nav-logo { display: block; text-decoration: none; line-height: 1; }
.nav-logo-img {
  height: 52px !important; width: auto; display: block;
  transition: height .4s var(--ease), transform .3s var(--ease);
}
nav.scrolled .nav-logo-img { height: 42px !important; }
.nav-logo:hover .nav-logo-img { transform: rotate(-3deg) scale(1.05); }
.nav-links { display: flex; gap: 34px; list-style: none; }
.nav-links a {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: #fff; text-decoration: none;
  display: inline-block; overflow: hidden; height: 1.3em; line-height: 1.3;
}
.nav-links a .roll { display: block; transition: transform .4s var(--ease); }
.nav-links a .roll span { display: block; }
.nav-links a:hover .roll,
.nav-links a:focus-visible .roll { transform: translateY(-1.3em); }
.nav-links a[aria-current="page"] { color: var(--acid); }

.hamburger {
  display: none; background: none; border: 0;
  width: 40px; height: 40px; position: relative; z-index: 1001;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: #fff; margin: 6px auto;
  transition: transform .35s var(--ease), opacity .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 800;
  background: var(--ink);
  display: flex; flex-direction: column;
  justify-content: center; gap: 8px;
  padding: 0 var(--gut);
  clip-path: inset(0 0 100% 0);
  transition: clip-path .6s var(--ease);
}
.mobile-menu.open { clip-path: inset(0 0 0% 0); }
.mobile-menu a {
  font-family: var(--f-disp); font-weight: 500;
  font-size: clamp(2rem, 8vw, 3.4rem);
  color: var(--cream); text-decoration: none;
  padding: 6px 0;
  display: flex; align-items: baseline; gap: 18px;
  transform: translateY(30px); opacity: 0;
  transition: transform .5s var(--ease-out), opacity .5s, color .3s;
}
.mobile-menu a i {
  font-style: normal; font-family: var(--f-mono);
  font-size: 12px; color: var(--acid);
}
.mobile-menu.open a { transform: translateY(0); opacity: 1; }
.mobile-menu.open a:nth-child(1) { transition-delay: .15s }
.mobile-menu.open a:nth-child(2) { transition-delay: .22s }
.mobile-menu.open a:nth-child(3) { transition-delay: .29s }
.mobile-menu.open a:nth-child(4) { transition-delay: .36s }
.mobile-menu a:hover { color: var(--acid); }

/* ══════════ LABELS & TITRES ══════════ */
.label {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 3.5px; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 12px;
  color: inherit;
}
.label::before {
  content: ''; width: 34px; height: 1px;
  background: var(--acid); display: inline-block;
}
h1, h2, h3 { font-family: var(--f-disp); font-weight: 500; line-height: 1.05; letter-spacing: -.01em; }
h2 em, h1 em, .cta-big em {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  letter-spacing: 0; line-height: .9;
  font-size: 1.12em;
}

/* Split line reveal */
.sl { display: block; overflow: hidden; }
.sl > span {
  display: block;
  transform: translateY(115%) rotate(2deg);
  transform-origin: left top;
  transition: transform 1s var(--ease);
}
.inview .sl > span, .sl.inview > span { transform: translateY(0) rotate(0); }
.sl:nth-child(2) > span { transition-delay: .08s }
.sl:nth-child(3) > span { transition-delay: .16s }
.sl:nth-child(4) > span { transition-delay: .24s }

/* Fade reveals */
[data-reveal] {
  opacity: 0; transform: translateY(46px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
[data-reveal].inview { opacity: 1; transform: none; }
[data-reveal="left"]  { transform: translateX(-46px); }
[data-reveal="right"] { transform: translateX(46px); }
[data-reveal="left"].inview, [data-reveal="right"].inview { transform: none; }
[data-delay="1"] { transition-delay: .1s }
[data-delay="2"] { transition-delay: .2s }
[data-delay="3"] { transition-delay: .3s }

/* Image clip reveal */
.clip-img { overflow: hidden; position: relative; }
.clip-img img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.15);
  transition: transform 1.4s var(--ease);
}
.clip-img::after {
  content: ''; position: absolute; inset: 0;
  background: var(--acid);
  transform: translateY(0);
  transition: transform 1.1s var(--ease);
}
.clip-img.inview::after { transform: translateY(-101%); }
.clip-img.inview img { transform: scale(1.02); }

/* ══════════ BOUTONS ══════════ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 20px 38px;
  text-decoration: none;
  border-radius: 999px;
  overflow: hidden;
  transition: color .35s var(--ease);
  isolation: isolate;
  border: 1px solid transparent;
}
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  border-radius: 999px;
  transform: translateY(101%);
  transition: transform .45s var(--ease);
}
.btn:hover::before, .btn:focus-visible::before { transform: translateY(0); }
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover .arr { transform: translateX(6px); }

.btn-acid { background: var(--acid); color: var(--ink); }
.btn-acid::before { background: var(--cream); }
.btn-ghost { border-color: rgba(246,242,236,.35); color: var(--cream); }
.btn-ghost::before { background: var(--acid); }
.btn-ghost:hover { color: var(--ink); border-color: var(--acid); }
.btn-dark { background: var(--ink); color: var(--cream); }
.btn-dark::before { background: var(--acid); }
.btn-dark:hover { color: var(--ink); }

/* ══════════ HERO (home) ══════════ */
.hero {
  min-height: 100svh;
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: clip;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
}
.hero-left {
  padding: calc(90px + 4vh) var(--gut) 12vh;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 3;
}
.hero-eyebrow { color: var(--mauve); margin-bottom: 4vh; }
.hero-logo-wrap {
  display: block;
  width: clamp(300px, 34vw, 620px);
}
.hero-logo-img {
  width: 100%; height: auto; display: block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s var(--ease) .2s, transform 1.2s var(--ease) .2s;
  transform: translateX(-3%);
}
.hero-logo-wrap.inview .hero-logo-img { clip-path: inset(0 -2% 0 0); transform: none; }
.hero-sub {
  max-width: 46ch;
  margin: 4.5vh 0 5vh;
  color: rgba(246,242,236,.78);
  font-weight: 300;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
}
.hero-sub strong { color: var(--cream); font-weight: 500; }
.hero-right { position: relative; z-index: 2; }
.hero-photo {
  position: absolute; inset: 0;
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(12%) contrast(1.04);
  will-change: transform;
}
.hero-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--ink) 0%, transparent 32%);
}
.hero-photo-label {
  position: absolute; bottom: 28px; right: var(--gut); z-index: 4;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(246,242,236,.75);
  background: rgba(13,12,10,.45);
  backdrop-filter: blur(6px);
  padding: 10px 16px;
}
.hero-index {
  position: absolute; top: calc(90px + 2vh); right: var(--gut); z-index: 4;
  font-family: var(--f-disp); font-weight: 300;
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(246,242,236,.4);
  line-height: 1;
}
.hero-scroll {
  position: absolute; left: var(--gut); bottom: 4vh; z-index: 4;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(246,242,236,.6);
  display: flex; align-items: center; gap: 14px;
}
.hero-scroll-line {
  width: 52px; height: 1px; background: rgba(246,242,236,.3);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ''; position: absolute; inset: 0;
  background: var(--acid);
  animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: translateX(-100%) } 55% { transform: translateX(0) } 100% { transform: translateX(100%) }
}

/* ══════════ TICKER ══════════ */
.ticker {
  background: var(--acid);
  overflow: clip;
  padding: 16px 0;
  transform: rotate(-1.2deg) scale(1.02);
  margin: -28px 0;
  position: relative; z-index: 5;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}
.ticker-track {
  display: flex; gap: 44px; width: max-content;
  will-change: transform;
}
.ticker span {
  font-family: var(--f-disp); font-weight: 500;
  font-size: clamp(.85rem, 1.4vw, 1.15rem);
  text-transform: uppercase; letter-spacing: .04em;
  color: var(--ink); white-space: nowrap;
}
.ticker .dot { color: var(--ink); font-size: .7em; align-self: center; }

/* ══════════ ABOUT (home) ══════════ */
.about {
  background: var(--sage);
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: var(--gut);
  padding: var(--sect) var(--gut);
}
.about-headline { font-size: var(--fs-h2); color: var(--ink); margin-bottom: 5vh; }
.about-body { max-width: 52ch; color: var(--t-body); font-weight: 400; }
.about-body strong { font-weight: 600; }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4vh; }
.tag {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid rgba(13,12,10,.35);
  border-radius: 999px; color: var(--ink);
  transition: background .3s, color .3s, border-color .3s;
}
.tag:hover { background: var(--ink); color: var(--sage); border-color: var(--ink); }
.tag.green { background: var(--acid); border-color: var(--acid); color: var(--ink); }
.tag.filled { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.stats { display: flex; flex-direction: column; }
.stat {
  display: grid; grid-template-columns: auto 1fr; gap: 26px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid rgba(13,12,10,.25);
}
.stat:last-child { border-bottom: 1px solid rgba(13,12,10,.25); }
.stat-n {
  font-family: var(--f-disp); font-weight: 600;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  color: var(--ink); line-height: 1;
  min-width: 2ch; display: flex; align-items: baseline;
}
.stat-suffix { font-size: .32em; font-weight: 500; margin-left: 6px; font-family: var(--f-mono); letter-spacing: 1px; }
.stat-l {
  display: block;
  font-family: var(--f-disp); font-weight: 500;
  font-size: clamp(.85rem, 1.1vw, 1rem);
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--ink); margin-bottom: 8px;
}
.stat-detail { font-size: .92rem; color: #4d4c45; font-weight: 400; }

/* ══════════ DIVIDER TEXTE GÉANT ══════════ */
.text-divider {
  background: var(--ink);
  overflow: clip; padding: clamp(40px, 6vw, 90px) 0;
}
.text-divider-track {
  display: flex; gap: 48px; width: max-content;
  will-change: transform;
}
.text-divider-word {
  font-family: var(--f-disp); font-weight: 600;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 1; white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(246,242,236,.35);
  transition: color .4s;
}
.text-divider-word:hover { color: var(--acid); -webkit-text-stroke-color: var(--acid); }
.text-divider-dot { color: var(--acid); font-size: clamp(1.5rem, 3vw, 2.6rem); align-self: center; }

/* ══════════ SERVICES (home) ══════════ */
.services { padding: var(--sect) var(--gut); background: var(--cream); }
.services-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 7vh; gap: 20px;
}
.services-h { font-size: var(--fs-h2); color: var(--ink); margin-top: 18px; }
.services-count { font-family: var(--f-mono); font-size: 12px; letter-spacing: 2px; color: var(--t-mut); }
.svc-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(13,12,10,.2);
  border-left: 1px solid rgba(13,12,10,.2);
}
.svc-card {
  position: relative;
  padding: clamp(28px, 3.5vw, 52px);
  border-right: 1px solid rgba(13,12,10,.2);
  border-bottom: 1px solid rgba(13,12,10,.2);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(230px, 26vw, 330px);
  display: flex; flex-direction: column;
}
.svc-card::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: var(--ink);
  transform: translateY(101%);
  transition: transform .5s var(--ease);
}
.svc-card:hover::before, .svc-card:focus-visible::before { transform: translateY(0); }
.svc-num {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 2px;
  color: var(--t-mut); margin-bottom: 22px;
  transition: color .4s;
}
.svc-name {
  font-size: var(--fs-h3); font-weight: 500;
  color: var(--ink); text-transform: uppercase; letter-spacing: .03em;
  margin-bottom: 16px;
  transition: color .4s;
}
.svc-desc { font-size: .95rem; color: var(--t-mut); max-width: 40ch; transition: color .4s; flex: 1; }
.svc-arrow {
  margin-top: 24px;
  font-size: 22px; color: var(--ink);
  transition: color .4s, transform .5s var(--ease);
  align-self: flex-end;
}
.svc-card:hover .svc-num { color: var(--acid); }
.svc-card:hover .svc-name { color: var(--cream); }
.svc-card:hover .svc-desc { color: rgba(246,242,236,.65); }
.svc-card:hover .svc-arrow { color: var(--acid); transform: translateX(8px) rotate(-45deg); }

/* ══════════ PORTFOLIO (home) ══════════ */
.portfolio { background: var(--ink); padding: var(--sect) var(--gut); }
.portfolio-top {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 7vh; gap: 20px;
}
.portfolio-h { font-size: var(--fs-h2); color: var(--cream); }
.portfolio-link {
  font-family: var(--f-mono); font-size: 12px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--acid); text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
  white-space: nowrap;
}
.portfolio-link:hover { border-color: var(--acid); }
.pf-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 32px);
  perspective: 1400px;
}
.pf-card a {
  display: block; text-decoration: none; position: relative;
  will-change: transform; transform-style: preserve-3d;
}
.pf-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink-2);
  display: flex; align-items: center; justify-content: center;
}
.pf-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s var(--ease), filter .9s var(--ease);
  filter: grayscale(18%);
}
.pf-card:hover .pf-img img { transform: scale(1.06); filter: grayscale(0%); }
.pf-placeholder { font-family: var(--f-disp); font-weight: 300; color: var(--acid); }
.pf-overlay { padding: 22px 4px 0; }
.pf-client {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--mauve); margin-bottom: 8px;
}
.pf-name {
  font-family: var(--f-disp); font-weight: 500;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  color: var(--cream);
  display: inline-block; position: relative;
}
.pf-name::after {
  content: ''; position: absolute; left: 0; bottom: -3px;
  width: 100%; height: 1px; background: var(--acid);
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.pf-card:hover .pf-name::after { transform: scaleX(1); }
.pf-type { font-family: var(--f-mono); font-size: 11px; color: rgba(246,242,236,.5); margin-top: 8px; letter-spacing: 1px; }

/* ══════════ CTA ══════════ */
.cta-section {
  background: var(--sage);
  padding: var(--sect) var(--gut);
  text-align: center;
  position: relative; overflow: clip;
}
.cta-big { font-size: var(--fs-h2); color: var(--ink); margin-bottom: 4vh; }
.cta-sub { max-width: 54ch; margin: 0 auto 6vh; color: var(--t-body); }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ══════════ FOOTER ══════════ */
footer {
  background: var(--ink);
  padding: clamp(60px, 8vw, 110px) var(--gut) 34px;
  position: relative; overflow: clip;
}
.footer-word {
  display: block; text-decoration: none;
  margin-bottom: clamp(32px, 5vw, 64px);
  width: clamp(180px, 24vw, 300px);
}
.footer-logo-img {
  width: 100%; height: auto; display: block;
  transition: transform .6s var(--ease);
}
.footer-word:hover .footer-logo-img { transform: scale(1.015) rotate(-.6deg); }
.footer-meta {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: 26px;
}
.footer-time, .footer-city {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(246,242,236,.55);
  display: inline-flex; align-items: center; gap: 10px;
}
.footer-time::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--acid); display: inline-block;
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink { 0%,100% { opacity: 1 } 50% { opacity: .25 } }
.to-top {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(246,242,236,.3);
  background: transparent; color: var(--cream);
  font-size: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .3s, color .3s, border-color .3s, transform .3s var(--ease);
}
.to-top:hover { background: var(--acid); color: var(--ink); border-color: var(--acid); transform: translateY(-4px); }
.footer-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  border-top: 1px solid rgba(246,242,236,.15);
  padding-top: 28px;
}
.footer-copy { font-family: var(--f-mono); font-size: 11px; color: rgba(246,242,236,.45); letter-spacing: 1px; }
.footer-links { display: flex; gap: 26px; }
.footer-links a {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(246,242,236,.7);
  text-decoration: none;
  display: inline-block; overflow: hidden; height: 1.3em; line-height: 1.3;
}
.footer-links a .roll { display: block; transition: transform .4s var(--ease); }
.footer-links a .roll span { display: block; }
.footer-links a:hover .roll { transform: translateY(-1.3em); }
.footer-links a:hover { color: var(--acid); }

/* ══════════ PAGES INTÉRIEURES — HERO COMPACT ══════════ */
.page-hero {
  background: var(--ink); color: var(--cream);
  padding: calc(110px + 6vh) var(--gut) 9vh;
  position: relative; overflow: clip;
}
.page-hero .label { color: var(--mauve); margin-bottom: 3.5vh; }
.page-hero h1 { font-size: clamp(2.4rem, 6vw, 5.5rem); color: var(--cream); }
.page-hero .page-hero-sub {
  max-width: 52ch; margin-top: 3.5vh;
  color: rgba(246,242,236,.75); font-weight: 300;
}
.page-hero-index {
  position: absolute; top: calc(100px + 2vh); right: var(--gut);
  font-family: var(--f-disp); font-weight: 300;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  color: transparent; -webkit-text-stroke: 1px rgba(246,242,236,.35);
  line-height: 1;
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 52vh; order: -1; }
  .hero-photo::after { background: linear-gradient(0deg, var(--ink) 0%, transparent 40%); }
  .hero-left { padding: 6vh var(--gut) 14vh; }
  .hero-index { display: none; }
  .about { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .pf-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: block; }
}
@media (max-width: 980px) {
  nav { mix-blend-mode: normal; transition: background .4s; }
  nav.scrolled { background: rgba(13,12,10,.85); backdrop-filter: blur(10px); }
}
@media (min-width: 981px) {
  .mobile-menu { display: none; }
}

/* ══════════ REDUCED MOTION ══════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .sl > span, [data-reveal], .ch { transform: none !important; opacity: 1 !important; }
  .clip-img::after { display: none; }
  .clip-img img { transform: none; }
  .preloader { display: none; }
  .hero-logo-img { clip-path: none !important; transform: none !important; }
  .progress-bar { display: none; }
  body::after { animation: none; }
}
