*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg:    #EAEAEA;
  --ink:   #0E0E0E;
  --mid:   #6B6B6B;
  --faint: #D2D2D2;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans:  'DM Sans', sans-serif;
}
html {
  scroll-behavior: auto;
}
body {
  background: var(--bg); color: var(--ink);
  font-family: var(--sans); font-weight: 400;
  overflow-x: hidden;
  font-size: clamp(14px, 1.1vw, 24px);
}
body.no-scroll { overflow: hidden; }

/* ── CURSOR ── */
@media (pointer: fine) {
  body { cursor: none; }
  #cur {
    position: fixed; pointer-events: none; z-index: 9999;
    width: 10px; height: 10px; background: var(--ink); border-radius: 50%;
    transform: translate(-50%,-50%);
    transition: width .2s ease, height .2s ease;
  }
  body.hl #cur { width: 44px; height: 44px; opacity: .15; }
}

/* ══════════════════════════════════
   PRELOADER
══════════════════════════════════ */
#loader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px 48px 48px;
}
#loader-label { font-size: 10px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--mid); margin-bottom: 12px; }
#loader-pct {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(80px, 16vw, 200px);
  line-height: .88; letter-spacing: -.04em; color: var(--ink);
}
#loader-bar-wrap { width: 100%; height: 1px; background: var(--faint); margin-top: 32px; overflow: hidden; }
#loader-bar { height: 100%; background: var(--ink); width: 0%; }
#loader.hide {
  transform: translateY(-100%);
  transition: transform .9s cubic-bezier(.76,0,.24,1) .1s;
}

/* ══════════════════════════════════
   NAV
══════════════════════════════════ */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: start;
  mix-blend-mode: difference;
}
/* mix-blend-mode difference : le noir devient blanc sur fond sombre, reste noir sur fond clair */
.n-logo { font-size: 14px; font-weight: 700; color: #fff; text-decoration: none; letter-spacing: -.01em; }
.n-logo:hover { opacity: .5; }
.n-nav-links { display: flex; flex-direction: column; gap: 2px; list-style: none; }
.n-nav-links a { font-size: clamp(11px, 0.9vw, 18px); font-weight: 400; color: #fff; text-decoration: none; transition: opacity .2s; }
.n-nav-links a:hover { opacity: .45; }
.n-location { font-size: clamp(11px, 0.85vw, 16px); color: #fff; line-height: 1.5; }
.n-time { font-size: clamp(11px, 0.85vw, 16px); color: #fff; text-align: right; line-height: 1.5; }

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
#hero {
  min-height: 100vh;
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Colonne gauche — textes dispersés */
.hero-left {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 120px 32px 0;
  position: relative; z-index: 2;
}
.hero-avail {
  font-size: clamp(13px, 1vw, 20px); font-weight: 400; color: var(--ink); line-height: 1.5;
  opacity: 0; transform: translateY(8px);
  transition: opacity .6s ease .8s, transform .6s ease .8s;
}
body.ready .hero-avail { opacity: 1; transform: translateY(0); }

.hero-desc-block {
  font-size: clamp(16px, 1.3vw, 28px); font-weight: 400; color: var(--ink); line-height: 1.6;
  opacity: 0; transform: translateY(8px);
  transition: opacity .6s ease 1s, transform .6s ease 1s;
}
body.ready .hero-desc-block { opacity: 1; transform: translateY(0); }

/* Spacer bas colonne gauche pour laisser de la place au titre */
.hero-left-bottom { height: clamp(100px, 16vw, 210px); }

/* Colonne droite — image */
.hero-right-col {
  position: relative;
  display: flex; align-items: flex-start; justify-content: flex-end;
  padding: 80px 32px 0 0;
  z-index: 2;
}
.hero-photo-wrap {
  width: clamp(260px, 38vw, 560px);
  aspect-ratio: .72/1;
  background: #B8B8B8;
  position: relative;
  transform: translateY(30px); opacity: 0;
  transition: transform 1s cubic-bezier(.22,1,.36,1) .3s, opacity .8s ease .3s;
}
body.ready .hero-photo-wrap { transform: translateY(0); opacity: 1; }
.hero-photo-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-style: italic; font-size: 14px; color: rgba(0,0,0,.3);
}

/* TITRE GÉANT qui déborde en bas — position absolute */
#hero-title-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 10; overflow: hidden;
  pointer-events: none;
  height: clamp(100px, 16vw, 210px);
  mix-blend-mode: difference;
}
.hero-title-track {
  display: flex; align-items: flex-end; gap: 0;
  white-space: nowrap;
  animation: hero-marquee 8s linear infinite;
}
@keyframes hero-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.hero-title-word {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(90px, 15vw, 400px);
  line-height: .88; letter-spacing: -.04em;
  color: #fff;
  display: inline-block; padding-right: .25em;
  transform: translateY(110%);
  transition: transform .95s cubic-bezier(.22,1,.36,1);
}
.hero-title-word:nth-child(1) { transition-delay: .15s; }
.hero-title-word:nth-child(2) { transition-delay: .22s; }
.hero-title-word:nth-child(3) { transition-delay: .29s; color: var(--mid); }
.hero-title-word:nth-child(4) { transition-delay: .36s; }
.hero-title-word:nth-child(5) { transition-delay: .43s; color: var(--mid); }
.hero-title-word:nth-child(6) { transition-delay: .50s; }
body.ready .hero-title-word { transform: translateY(0); }

/* ══════════════════════════════════
   MARQUEE HORIZONTAL (scroll-driven)
══════════════════════════════════ */
#marquee-outer {
  border-top: 1px solid var(--faint);
  overflow: hidden; padding: 14px 0;
  background: var(--bg);
}
.marquee-inner { display: inline-flex; animation: mq 24s linear infinite; }
.marquee-inner span {
  font-size: clamp(11px, 1.2vw, 14px); font-weight: 400; color: var(--mid);
  padding: 0 36px; border-right: 1px solid var(--faint);
  white-space: nowrap;
}
@keyframes mq { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ══════════════════════════════════
   PROJETS — full height
══════════════════════════════════ */
#projets {
  min-height: 100vh;
  padding: 0 clamp(24px, 2.5vw, 56px);
  display: flex; flex-direction: column; justify-content: center;
}
.sec-label {
  font-size: clamp(10px, 0.8vw, 16px); font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 56px;
  display: flex; align-items: center; gap: 16px;
}
.sec-label::after { content: ''; flex: 1; height: 1px; background: var(--faint); }

.proj-list { list-style: none; }
.proj-row {
  border-top: 1px solid var(--faint);
  padding: 32px 0;
  display: grid; grid-template-columns: 64px 1fr auto;
  align-items: center; gap: 28px;
  transition: opacity .25s; position: relative; cursor: pointer;
}
.proj-row:last-child { border-bottom: 1px solid var(--faint); }
.proj-list:hover .proj-row { opacity: .25; }
.proj-list:hover .proj-row:hover { opacity: 1; }

.proj-num {
  font-family: var(--sans); font-size: clamp(11px, 0.9vw, 18px); font-weight: 500;
  letter-spacing: .08em; color: var(--mid);
  align-self: flex-start; padding-top: 6px;
}
.proj-main { display: flex; flex-direction: column; gap: 8px; }
.proj-title {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(26px, 3.5vw, 120px);
  letter-spacing: -.035em; line-height: 1;
  transition: letter-spacing .3s ease, opacity .2s;
}
.proj-row:hover .proj-title { letter-spacing: -.01em; }
.proj-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  font-size: clamp(9px, 0.7vw, 14px); font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  color: var(--mid); border: 1px solid var(--faint); padding: 3px 10px; border-radius: 20px;
  transition: border-color .2s, color .2s;
}
.proj-row:hover .tag { border-color: var(--ink); color: var(--ink); }
.proj-year {
  font-size: clamp(11px, 0.9vw, 18px); font-weight: 400; color: var(--mid);
  letter-spacing: .04em; align-self: flex-start; padding-top: 6px;
}

/* hide/show */
#proj-list-view { display: block; }

/* PREVIEW CURSEUR */
#proj-preview {
  position: fixed; pointer-events: none; z-index: 150;
  width: 270px; aspect-ratio: 4/3;
  opacity: 0; transition: opacity .3s ease; border-radius: 2px; overflow: hidden;
}
#proj-preview.show { opacity: 1; }
.pv-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px; }
.pv-lbl { font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--mid); }
.pv-n { font-family: var(--serif); font-size: 76px; font-weight: 700; color: rgba(14,14,14,.08); line-height: 1; letter-spacing: -.04em; position: absolute; bottom: 14px; right: 18px; }
.pi0{background:#DDDDD8}.pi1{background:#D8DEDD}.pi2{background:#D8DDDE}.pi3{background:#DDDAD8}.pi4{background:#D8D8DE}

.hpar-sec {
  min-height: 100vh;
  padding: 0 clamp(24px, 2.5vw, 56px);
  border-top: 1px solid var(--faint);
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px; align-items: center;
  position: relative;
}
.hpar-label { font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); align-self: center; }

/* Placeholder image/GIF — positionné en absolu */
.hpar-media {
  position: absolute;
  width: clamp(200px, 24vw, 340px);
  aspect-ratio: 3/4;
  border-radius: 0;
  overflow: hidden;
  pointer-events: all;
  z-index: 1;
}
.hpar-media-icon { display: none; }
.hpar-media-label { display: none; }
.hpar-media img {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
}

/* Texte option D */
.hpar-text {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(28px, 4vw, 96px);
  line-height: 1.1; letter-spacing: -.03em; word-spacing: .18em;
  color: var(--ink);
  position: relative; z-index: 2;
}
.hpar-text em {
  font-style: normal; font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--ink);
  text-stroke: 1.5px var(--ink);
  position: relative; display: inline-block;
}
/* Ligne soulignée animée */
.hpar-text em::after {
  content: '';
  position: absolute; left: 0; bottom: -3px;
  width: 0%; height: 2px;
  background: var(--ink);
  transition: width .5s cubic-bezier(.22,1,.36,1);
}
.hpar-text em:hover::after { width: 100%; }
/* Le mot se remplit au hover */
.hpar-text em:hover {
  color: var(--ink);
  -webkit-text-stroke: 0px;
}

/* ══════════════════════════════════
   APPROACH — style Jason
══════════════════════════════════ */
.approach-sec {
  padding: 100px 32px 120px;
  border-top: 1px solid var(--faint);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.approach-left {
  display: flex; flex-direction: column; gap: 40px;
  padding-top: 12px;
}
.approach-left-label { font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); margin-bottom: 14px; }
.approach-left-txt { font-size: clamp(13px, 1vw, 20px); line-height: 1.75; color: var(--mid); }
.approach-right {}
.approach-big {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 76px);
  line-height: 1.04;
  letter-spacing: -.035em;
  color: var(--ink);
}

.about-sec {
  min-height: 100vh;
  padding: 0 clamp(24px, 2.5vw, 56px);
  display: flex; flex-direction: column; justify-content: center; gap: 0;
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; margin-bottom: 80px; align-items: start; }
.about-big { font-family: var(--serif); font-size: clamp(26px,3.8vw,48px); font-weight: 400; line-height: 1.2; letter-spacing: -.015em; }
.about-big em { font-style: italic; color: var(--mid); }
.about-right { display: flex; flex-direction: column; gap: 30px; padding-top: 4px; }
.abl { font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); margin-bottom: 6px; }
.abt { font-size: clamp(13px, 1vw, 20px); line-height: 1.75; color: var(--mid); }

.stats-row { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--faint); }
.stat { padding: 44px 0 44px 40px; border-right: 1px solid var(--faint); transition: background .2s; cursor: default; }
.stat:last-child { border-right: none; }
.stat:hover { background: var(--faint); }
.sn { font-family: var(--sans); font-weight: 700; font-size: clamp(44px,6vw,80px); letter-spacing: -.04em; line-height: 1; margin-bottom: 8px; color: var(--ink); }
.sl { font-size: clamp(11px, 0.85vw, 18px); font-weight: 400; color: var(--mid); letter-spacing: .04em; }

.tools-sec {
  min-height: 100vh;
  padding: 0 clamp(24px, 2.5vw, 56px);
  border-top: 1px solid var(--faint);
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.tools-sec-label {
  font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 56px;
}

/* Bandes asymétriques */
.tools-band {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: start;
  padding: 40px 0;
  border-top: 1px solid var(--faint);
  gap: 48px;
  position: relative; z-index: 2;
  transition: opacity .25s;
}
.tools-band:last-child { border-bottom: 1px solid var(--faint); }
.tools-sec:hover .tools-band { opacity: .35; }
.tools-sec:hover .tools-band:hover { opacity: 1; }

.tools-band-left {}
.tools-band-num {
  font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 12px;
}
.tools-band-title {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(36px, 6vw, 160px);
  line-height: .95; letter-spacing: -.04em; color: var(--ink);
  transition: letter-spacing .3s ease;
}
.tools-band:hover .tools-band-title { letter-spacing: -.01em; }

.tools-band-right {
  padding-top: 8px;
  display: flex; flex-direction: column; gap: 10px;
}
.tools-band-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tools-band-desc {
  font-size: clamp(13px, 1vw, 20px); line-height: 1.7; color: var(--mid);
  max-width: 380px;
}


/* ══════════════════════════════════
   NOM GÉANT EN BAS DE PAGE
══════════════════════════════════ */
.name-giant-wrap {
  overflow: hidden;
  border-top: 1px solid var(--faint);
  line-height: .85;
  padding: 0;
}
.name-giant {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 19.5vw;
  letter-spacing: -.04em;
  color: var(--ink);
  white-space: nowrap;
  display: block;
  width: 100%;
  text-align: center;
  transform: translateY(110%);
  transition: transform 1.1s cubic-bezier(.22,1,.36,1);
}
.name-giant-wrap.on .name-giant { transform: translateY(0); }

/* ══════════════════════════════════
   STACK
══════════════════════════════════ */
.stack-sec { padding: 0 32px 120px; }
.stack-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--faint); border: 1px solid var(--faint); }
.sc { background: var(--bg); padding: 30px 26px; transition: background .2s; }
.sc:hover { background: var(--faint); }
.sc-cat { font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); margin-bottom: 13px; }
.sc ul { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.sc li { font-size: clamp(13px, 1vw, 20px); color: var(--mid); transition: color .2s; }
.sc:hover li { color: var(--ink); }

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
.contact-sec {
  padding: clamp(72px, 7vw, 140px) clamp(24px, 2.5vw, 56px);
  border-top: 1px solid var(--faint);
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative;
}
.contact-sec > :not(.contact-gif) { position: relative; z-index: 1; }
.ct-eyebrow { font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); margin-bottom: 24px; }
.ct-title { font-family: var(--sans); font-size: clamp(44px,8vw,200px); font-weight: 700; line-height: .93; letter-spacing: -.04em; }
.ct-title em { font-style: italic; color: var(--mid); font-weight: 700; }
.ct-right { display: flex; flex-direction: column; gap: 24px; padding-bottom: 8px; }
.ct-block-label { font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); margin-bottom: 4px; }
.ct-block-val { font-size: clamp(14px, 1.1vw, 22px); font-weight: 400; }
.ct-links { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.cl {
  font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--faint); padding-bottom: 2px;
  transition: border-color .2s;
  display: inline-block;
}
.cl:hover { border-color: var(--ink); }
.cl.pill {
  background: var(--ink); color: var(--bg);
  padding: 11px 22px; border: none; border-radius: 2px;
  font-size: clamp(10px, 0.8vw, 16px); transition: opacity .2s;
}
.cl.pill:hover { opacity: .7; }

footer {
  padding: 56px 32px 48px;
  border-top: 1px solid var(--faint);
  background: var(--bg);
}
.footer-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 32px; margin-bottom: 56px;
}
.footer-col-label {
  font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 16px;
}
.footer-col-main {
  font-size: 15px; font-weight: 400; color: var(--ink);
  border-bottom: 1px solid var(--faint); padding-bottom: 10px; margin-bottom: 4px;
  display: block; text-decoration: none;
  transition: opacity .2s;
}
a.footer-col-main:hover { opacity: .5; }
.footer-col-sub { font-size: clamp(11px, 0.85vw, 16px); color: var(--mid); line-height: 1.5; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0; }
.footer-links a {
  font-size: 15px; color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--faint); padding: 10px 0;
  display: block; transition: opacity .2s;
}
.footer-links a:hover { opacity: .5; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--faint); padding-top: 20px;
}
.footer-bottom span { font-size: 10px; font-weight: 400; color: var(--mid); letter-spacing: .04em; }

/* ══════════════════════════════════
   REVEAL
══════════════════════════════════ */
.rev { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.rev.on { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════
   MÉTHODE
══════════════════════════════════ */
.method-sec {
  min-height: 100vh;
  padding: 0 clamp(24px, 2.5vw, 56px);
  border-top: 1px solid var(--faint);
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.method-top { margin-bottom: 64px; }
.method-grid {}
.contact-gif {
  position: absolute;
  bottom: 8%; right: 4%;
  width: clamp(160px, 18vw, 260px);
  aspect-ratio: 3/4;
  border-radius: 0;
  overflow: hidden;
  transform: rotate(-2.5deg);
  pointer-events: none;
  z-index: 0;
}
.contact-gif img { width: 100%; height: 100%; object-fit: cover; display: block; }
.method-label {
  font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 20px;
}
.method-title {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(32px, 5.5vw, 120px);
  line-height: 1.04; letter-spacing: -.035em; color: var(--ink);
  /* chaque mot arrive au scroll */
}
.method-title .mw {
  display: inline-block;
  opacity: 0; transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}
.method-title .mw.on { opacity: 1; transform: translateY(0); }

/* Grille */
.method-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--faint);
  border-left: 1px solid var(--faint);
}
.method-step {
  border-right: 1px solid var(--faint);
  border-bottom: 1px solid var(--faint);
  overflow: hidden; position: relative;
}

.method-step-inner {
  position: relative; z-index: 1;
  padding: 32px 28px 40px;
  display: flex; flex-direction: column; gap: 18px;
}

.method-step-num {
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--mid);
}
.method-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--ink); flex-shrink: 0;
}
.method-step-title {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: -.02em; color: var(--ink);
  text-transform: uppercase;
  opacity: 0; transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.method-step.visible .method-step-title { opacity: 1; transform: translateY(0); }
.method-step-desc {
  font-size: clamp(13px, 1vw, 20px); line-height: 1.7; color: var(--mid);
  opacity: 0; transform: translateY(12px);
  transition: opacity .6s ease .08s, transform .6s ease .08s;
}
.method-step.visible .method-step-desc { opacity: 1; transform: translateY(0); }

/* stagger au scroll par colonne */
.method-step[data-step="0"] .method-step-title,
.method-step[data-step="0"] .method-step-desc { transition-delay: 0s, 0s, 0s; }
.method-step[data-step="1"] .method-step-title { transition-delay: .1s; }
.method-step[data-step="1"] .method-step-desc  { transition-delay: .18s; }
.method-step[data-step="2"] .method-step-title { transition-delay: .2s; }
.method-step[data-step="2"] .method-step-desc  { transition-delay: .28s; }
.method-step[data-step="3"] .method-step-title { transition-delay: .3s; }
.method-step[data-step="3"] .method-step-desc  { transition-delay: .38s; }
.method-step-line { display: none; }



/* ══════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
══════════════════════════════════ */
@media (min-width: 641px) and (max-width: 1024px) {

  /* NAV */
  #main-nav { grid-template-columns: 1fr auto; padding: 18px 24px; }
  .n-nav-links { flex-direction: row; gap: 16px; }
  .n-nav-links a { font-size: 12px; }
  .n-location, .n-time { display: none; }

  /* HERO — garde photo droite sur tablet landscape */
  #hero { grid-template-columns: 1fr 1fr; min-height: 80svh; }
  .hero-right-col { display: flex; }
  .hero-left { padding: 80px 24px 0; gap: 28px; }
  .hero-left-bottom { height: clamp(90px, 12vw, 140px); }
  #hero-title-strip { height: clamp(64px, 10vw, 110px); }
  .hero-title-word { font-size: clamp(56px, 9.5vw, 110px); }

  /* TOUTES LES SECTIONS — hauteur naturelle sur tablet */
  #projets, .hpar-sec, .tools-sec, .method-sec, .about-sec, .contact-sec {
    min-height: 0 !important;
    height: auto !important;
  }

  /* PROJETS */
  #projets { padding: 64px 24px; }
  .proj-row { padding: 20px 0; gap: 16px; }
  .proj-title { font-size: clamp(18px, 2.6vw, 32px); }
  .proj-num { font-size: 10px; }

  /* APPROCHE */
  .hpar-sec { padding: 64px 24px; grid-template-columns: 100px 1fr; gap: 24px; }
  .hpar-text { font-size: clamp(18px, 2.6vw, 32px); word-spacing: .1em; }
  .hpar-media { width: clamp(120px, 14vw, 180px); }

  /* CE QUE JE FAIS */
  .tools-sec { padding: 64px 24px; }
  .tools-band { grid-template-columns: 1fr 180px; gap: 20px; padding: 24px 0; }
  .tools-band-title { font-size: clamp(26px, 4vw, 52px); }
  .tools-band-desc { font-size: 12px; }

  /* METHODE */
  .method-sec { padding: 64px 24px; }
  .method-top { margin-bottom: 40px; }
  .method-title { font-size: clamp(24px, 3.5vw, 44px); }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .method-step:nth-child(2) { border-right: none; }
  .method-step:nth-child(3) { border-top: 1px solid var(--faint); }
  .method-step:nth-child(4) { border-top: 1px solid var(--faint); border-right: none; }
  .method-step-inner { padding: 22px 18px 26px; }
  .method-step-title { font-size: clamp(13px, 1.6vw, 18px); }
  .method-gif { width: clamp(100px, 12vw, 160px); }

  /* ABOUT */
  .about-sec { padding: 64px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 40px; }
  .about-big { font-size: clamp(18px, 2.8vw, 32px); }
  .stats-row { grid-template-columns: repeat(3, 1fr); }
  .stat { padding: 24px 0 24px 16px; }
  .sn { font-size: clamp(28px, 4.5vw, 48px); }

  /* CONTACT */
  .contact-sec { padding: 64px 24px; gap: 28px; }
  .contact-gif { width: clamp(100px, 12vw, 160px); }
  .ct-title { font-size: clamp(28px, 5vw, 56px); }
  .ct-right { gap: 14px; }

  /* NOM GÉANT + FOOTER */
  .name-giant-wrap { padding: 0 8px; }
  .name-giant { font-size: 19.5vw; text-align: center; }
  footer { padding: 40px 24px 36px; }
  .footer-grid { grid-template-columns: repeat(2,1fr); gap: 28px 20px; margin-bottom: 36px; }

  /* CASE STUDY */
  .cs-nav { padding: 14px 24px; }
  .cs-hero { padding: 48px 24px 40px; grid-template-columns: 1fr; gap: 32px; }
  .cs-title { font-size: clamp(28px, 4.5vw, 52px); }
  .cs-metas { grid-template-columns: 1fr 1fr; gap: 14px 20px; }
  .cs-cover { aspect-ratio: 16/8; }
  .cs-body { padding: 40px 24px; grid-template-columns: 120px 1fr; gap: 28px; }
  .cs-body-label { font-size: 9px; }
  .cs-body-text p { font-size: 14px; }
  .cs-gallery-header,.cs-gallery-foot { padding-left: 24px; padding-right: 24px; }
  .cs-gallery-track-area { padding: 20px 24px; }
  .cs-gallery-item { width: 70vw; }
  .cs-next { padding: 40px 24px; }
  .cs-next-title { font-size: clamp(22px, 3vw, 36px); }
}

/* ══════════════════════════════════
   RESPONSIVE — MOBILE (≤ 640px)
══════════════════════════════════ */
@media (max-width: 640px) {

  /* LOADER */
  #loader { padding: 20px 20px 28px; }
  #loader-pct { font-size: clamp(56px, 14vw, 96px); }

  /* NAV — logo + hamburger (liens en colonne cachés) */
  #main-nav {
    grid-template-columns: 1fr auto;
    padding: 16px 20px;
  }
  .n-nav-links {
    display: none; /* masqué sur mobile — liens dans le footer */
  }
  .n-logo { font-size: 13px; letter-spacing: .04em; }
  .n-location { display: none; }
  .n-time { display: block; font-size: 11px; }

  /* HERO mobile — image plein écran, texte en bas, bandeau en overlay */
  #hero {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    min-height: 100svh;
    position: relative;
    overflow: hidden;
  }
  /* Image plein écran en fond absolu */
  .hero-right-col {
    display: block !important;
    position: absolute; inset: 0;
    padding: 0; z-index: 1;
  }
  .hero-photo-wrap {
    width: 100%; height: 100%;
    aspect-ratio: unset;
    opacity: 1 !important; transform: none !important;
  }
  .hero-photo-placeholder { font-size: 12px; }
  /* Dégradé bas → lisibilité texte */
  .hero-right-col::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to bottom,
      transparent 40%,
      rgba(234,234,234,.85) 75%,
      rgba(234,234,234,1) 100%);
    z-index: 2;
  }
  /* Colonne gauche — texte en bas de la grille, par-dessus l'image */
  .hero-left {
    grid-row: 1; grid-column: 1;
    position: relative; z-index: 3;
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 80px 20px 20px;
    gap: 8px;
  }
  .hero-left-bottom { display: none; }
  .hero-avail { font-size: 11px; }
  .hero-desc-block { font-size: 13px; max-width: 100%; }
  /* Bandeau — grid row 2 par-dessus */
  #hero-title-strip {
    grid-row: 2; grid-column: 1;
    position: relative; z-index: 3;
    height: clamp(56px, 14vw, 80px);
    overflow: hidden;
  }
  .hero-title-word { font-size: clamp(48px, 12.5vw, 78px); }

  /* MARQUEE */
  .marquee-inner span { padding: 0 20px; font-size: 10px; }

  /* PROJETS mobile — liste éditoriale simple */
  #projets { padding: 56px 20px; min-height: auto; }
  .sec-label { margin-bottom: 20px; font-size: 9px; }
  .proj-row {
    grid-template-columns: 32px 1fr;
    gap: 10px; padding: 18px 0;
    display: grid; align-items: start;
  }
  .proj-year { display: none; }
  .proj-title { font-size: clamp(18px, 5.5vw, 26px); }
  .proj-num { font-size: 10px; padding-top: 4px; }
  .proj-tags { gap: 4px; }
  .tag { font-size: 8px; padding: 2px 7px; }

  /* APPROCHE */
  /* APPROCHE — texte + gif empilés */
  .hpar-sec {
    min-height: auto;
    padding: 56px 20px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 24px;
    position: relative;
    align-items: start;
  }
  .hpar-label { align-self: auto; grid-row: 1; }
  .hpar-text {
    font-size: clamp(22px, 6.5vw, 34px);
    word-spacing: .08em; line-height: 1.15;
    grid-row: 2; position: relative; z-index: 2;
  }
  /* GIF en dessous du texte, centré */
  .hpar-media {
    position: relative !important;
    width: 72vw; max-width: 280px;
    bottom: auto; top: auto; right: auto; left: auto;
    margin: 0 auto;
    grid-row: 3;
    transform: rotate(-2deg) !important;
  }

  /* CE QUE JE FAIS */
  .tools-sec { padding: 56px 20px; min-height: auto; }
  .tools-sec-label { margin-bottom: 36px; }
  .tools-band { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }
  .tools-band-title { font-size: clamp(32px, 9.5vw, 50px); }
  .tools-band-desc { font-size: 12px; max-width: 100%; }
  .tools-band-tags { gap: 5px; }

  /* METHODE */
  .method-sec { padding: 56px 20px; min-height: auto; }
  .method-top { margin-bottom: 36px; }
  .method-title { font-size: clamp(24px, 7.5vw, 38px); }
  .method-grid { grid-template-columns: 1fr; }
  .method-step { border-right: none; border-bottom: 1px solid var(--faint); }
  .method-step:last-child { border-bottom: none; }
  .method-step:nth-child(2) { border-right: none; }
  .method-step:nth-child(3),
  .method-step:nth-child(4) { border-top: none; }
  .method-step-inner { padding: 24px 20px 28px; }
  .method-gif { display: none; }

  /* ABOUT */
  .about-sec { padding: 56px 20px; min-height: auto; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .about-big { font-size: clamp(22px, 6vw, 32px); }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat {
    border-right: none; border-bottom: 1px solid var(--faint);
    padding: 24px 0 24px 16px;
  }
  .stats-row .stat:nth-child(odd) { border-right: 1px solid var(--faint); }
  .stats-row .stat:last-child,
  .stats-row .stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }
  .sn { font-size: clamp(36px, 9vw, 54px); }
  .sl { font-size: 9px; }

  /* CONTACT */
  .contact-sec {
    min-height: auto; padding: 56px 20px;
    grid-template-columns: 1fr; gap: 32px; align-items: start;
  }
  .ct-eyebrow { font-size: 9px; }
  .ct-title { font-size: clamp(36px, 11vw, 60px); }
  .ct-right { gap: 16px; }
  .ct-block-label { font-size: 9px; }
  .ct-block-val { font-size: 14px; }
  .ct-links { flex-wrap: wrap; gap: 8px; }
  .cl { font-size: 10px; padding: 8px 14px; }
  .contact-gif {
    width: clamp(100px, 30vw, 160px);
    top: 16px; right: 16px;
    bottom: auto;
    transform: rotate(-2deg) !important;
  }

  /* NOM GÉANT */
  .name-giant-wrap { padding: 0 4px; }
  .name-giant { font-size: 19.5vw; }

  /* FOOTER */
  footer { padding: 36px 20px 28px; display: block; overflow: visible; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
  .footer-bottom {
    flex-direction: column; align-items: flex-start; gap: 4px;
  }
  .footer-bottom span { font-size: 9px; }

  /* CASE STUDY MOBILE */
  /* Nav fixe en haut */
  .cs-nav {
    padding: 14px 20px;
    position: sticky; top: 0; z-index: 10;
    background: var(--bg);
  }
  .cs-back { font-size: 11px; }
  .cs-pname { font-size: 11px; max-width: 50%; text-align: right; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

  /* Hero — 1 colonne : titre puis metas */
  .cs-hero {
    padding: 32px 20px 28px !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    align-items: start !important;
  }
  .cs-metas {
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
  }
  .cs-eyebrow { font-size: 9px; margin-bottom: 8px; letter-spacing: .1em; }
  .cs-title {
    font-size: clamp(26px, 7.5vw, 40px);
    letter-spacing: -.03em;
    margin-bottom: 16px;
  }
  .cs-tags { gap: 4px; flex-wrap: wrap; }
  .tag { font-size: 8px; padding: 2px 8px; }
  /* Metas en 2 colonnes sur mobile */
  .cs-metas {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .cs-meta { border-top: 1px solid var(--faint); padding-top: 10px; }
  .cs-mlabel { font-size: 9px; margin-bottom: 3px; }
  .cs-mval { font-size: 13px; line-height: 1.4; }
  .cs-mval a { font-size: 12px; }

  /* Cover 16/9 */
  .cs-cover { aspect-ratio: 16/9; }

  /* Body — 1 colonne, label caché */
  .cs-body {
    padding: 28px 20px !important;
    display: block !important;
    grid-template-columns: unset !important;
    gap: 0 !important;
  }
  .cs-body-label { display: none !important; }
  .cs-body-text {
    width: 100% !important;
    max-width: 100% !important;
    grid-column: unset !important;
  }
  .cs-body-text p { font-size: 13px; line-height: 1.7; margin-bottom: 12px; }

  /* Galerie mobile — override le mode sticky desktop */
  .cs-gallery {
    position: relative !important;
    height: auto !important;
    overflow: visible !important;
    border-top: 1px solid var(--faint);
  }
  .cs-gallery-spacer { height: auto !important; position: static !important; }
  .cs-gallery-track-area { display: none !important; }
  .cs-gallery-scroll { display: flex !important; }
  .cs-gallery-header { padding: 14px 20px; }
  .cs-gallery-item {
    width: calc(100vw - 40px) !important;
    aspect-ratio: 16/9 !important;
    height: auto !important;
  }
  .cs-gallery-foot { padding: 10px 20px 16px; }

  /* Spacer galerie */

  /* Projet suivant */
  .cs-next {
    padding: 28px 20px 36px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .cs-next-label { font-size: 9px; }
  .cs-next-title { font-size: clamp(22px, 6.5vw, 34px); }

  /* DIVERS */
  #proj-preview { display: none; }
}

/* ══════════════════════════════════
   CASE STUDY OVERLAY
══════════════════════════════════ */
#cs-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: var(--bg); overflow-y: auto; overflow-x: hidden;
  transform: translateY(100%);
  transition: transform .75s cubic-bezier(.76,0,.24,1);
}
#cs-overlay.open { transform: translateY(0); }
#cs-overlay.closing { transform: translateY(100%); }
.cs-nav { position: sticky; top: 0; z-index: 10; padding: 20px 32px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--faint); background: var(--bg); }
.cs-back { display: inline-flex; align-items: center; gap: 8px; font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); background: none; border: none; padding: 0; font-family: var(--sans); cursor: pointer; transition: opacity .2s; }
.cs-back:hover { opacity: .45; }
.cs-pname { font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--mid); letter-spacing: .04em; }
.cs-hero { padding: 80px 32px 72px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: end; border-bottom: 1px solid var(--faint); }
.cs-eyebrow { font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); margin-bottom: 18px; }
.cs-title { font-family: var(--sans); font-size: clamp(40px,6.5vw,84px); font-weight: 700; line-height: .95; letter-spacing: -.04em; margin-bottom: 24px; }
.cs-tags { display: flex; gap: 7px; flex-wrap: wrap; }
.cs-metas { display: flex; flex-direction: column; gap: 20px; }
.cs-meta { border-top: 1px solid var(--faint); padding-top: 14px; }
.cs-mlabel { font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); margin-bottom: 4px; }
.cs-mval { font-size: 14px; line-height: 1.6; }
.cs-cover { width: 100%; aspect-ratio: 16/7; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--faint); background: var(--faint); }
.cs-cover-lbl { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase; color: var(--mid); }
.cs-body { padding: 72px 32px; display: grid; grid-template-columns: 200px 1fr; gap: 72px; }
.cs-body-label { font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); padding-top: 4px; line-height: 1.8; }
.cs-body-text p { font-size: clamp(14px, 1.1vw, 22px); line-height: 1.85; color: var(--mid); margin-bottom: 20px; }
.cs-body-text p:last-child { margin-bottom: 0; }
/* Galerie sticky dans cs-overlay */
/* Galerie — desktop : sticky + translateX */
.cs-gallery-spacer { position: relative; }
.cs-gallery {
  position: sticky; top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex; flex-direction: column;
  background: var(--bg);
  border-top: 1px solid var(--faint);
  user-select: none;
}
.cs-gallery-header {
  flex-shrink: 0;
  padding: 20px 32px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--faint);
}
.cs-gallery-label { font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); }
.cs-gallery-count { font-size: 11px; font-weight: 500; color: var(--mid); }
.cs-gallery-track-area {
  flex: 1; overflow: hidden;
  display: flex; align-items: center;
  padding: 28px 32px;
}
.cs-gallery-track {
  display: flex; gap: 20px; height: 100%;
  will-change: transform;
}
/* Mobile scroll natif */
.cs-gallery-scroll {
  display: flex; gap: 16px;
  overflow-x: scroll; overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 16px 20px 20px;
  cursor: grab;
  flex: 1;
}
.cs-gallery-scroll::-webkit-scrollbar { display: none; }
.cs-gallery-item {
  flex-shrink: 0;
  width: calc(100vw - 128px);
  aspect-ratio: 16/9;
  height: auto;
  border-radius: 6px;
  overflow: hidden; position: relative;
  background: #D0CEC8;
  box-shadow: 0 8px 32px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.07);
}
.cs-gallery-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.cs-gallery-item-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--mid);
}
.cs-gallery-foot {
  flex-shrink: 0;
  padding: 0 32px 20px;
  display: flex; align-items: center; gap: 12px;
}
.cs-gallery-hint { font-size: 9px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); }
.cs-gallery-progress { flex: 1; height: 2px; background: var(--faint); }
.cs-gallery-progress-fill { height: 100%; background: var(--ink); width: 0%; transition: width .08s linear; }
.cs-next { padding: 72px 32px; border-top: 1px solid var(--faint); display: flex; justify-content: space-between; align-items: center; }
.cs-next-label { font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); margin-bottom: 10px; }
.cs-next-title { font-family: var(--sans); font-size: clamp(28px,4vw,48px); font-weight: 700; letter-spacing: -.04em; cursor: pointer; transition: opacity .2s; display: inline-block; }
.cs-next-title:hover { opacity: .45; }

/* ── HAMBURGER ── */
.n-hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 32px; height: 32px;
  background: none; border: none; cursor: pointer; padding: 4px;
  mix-blend-mode: inherit;
}
.n-hamburger span {
  display: block; width: 100%; height: 1.5px;
  background: #fff; transition: transform .3s ease, opacity .3s ease;
}

/* ── MENU MOBILE OVERLAY ── */
#mobile-menu {
  position: fixed; inset: 0; z-index: 999;
  background: var(--ink); color: var(--bg);
  display: flex; flex-direction: column;
  padding: 24px 28px 40px;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.22,1,.36,1);
}
#mobile-menu.open { transform: translateX(0); }
.mm-close {
  align-self: flex-end;
  background: none; border: none; cursor: pointer;
  font-size: 20px; color: var(--bg); opacity: .6;
  transition: opacity .2s; padding: 4px; margin-bottom: 40px;
}
.mm-close:hover { opacity: 1; }
.mm-nav {
  display: flex; flex-direction: column; gap: 6px; flex: 1;
}
.mm-link {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(36px, 10vw, 52px);
  letter-spacing: -.03em; line-height: 1.05;
  color: var(--bg); text-decoration: none;
  opacity: 0; transform: translateX(20px);
  transition: opacity .4s ease, transform .4s ease, color .2s;
}
#mobile-menu.open .mm-link { opacity: 1; transform: translateX(0); }
#mobile-menu.open .mm-link:nth-child(1) { transition-delay: .05s; }
#mobile-menu.open .mm-link:nth-child(2) { transition-delay: .1s; }
#mobile-menu.open .mm-link:nth-child(3) { transition-delay: .15s; }
#mobile-menu.open .mm-link:nth-child(4) { transition-delay: .2s; }
.mm-link:hover { opacity: .5; }
.mm-foot {
  display: flex; flex-direction: column; gap: 4px;
  font-size: 11px; color: rgba(255,255,255,.4); letter-spacing: .04em;
}

@media (max-width: 640px) {
  .n-hamburger { display: flex; }
  .n-nav-links { display: none !important; }
  .n-location { display: none; }
}

/* ══════════════════════════════════
   TABLET PORTRAIT (641px – 900px)
   Sections height: auto
══════════════════════════════════ */
@media (min-width: 641px) and (max-width: 900px) {

  /* Toutes les sections : hauteur naturelle — reset forcé */
  section,
  #projets,
  .hpar-sec,
  .tools-sec,
  .method-sec,
  .about-sec,
  .about-inner,
  #contact,
  .contact-sec,
  #hero ~ * {
    min-height: 0 !important;
    height: auto !important;
  }

  /* Paddings verticaux raisonnables */
  #projets       { padding: 56px 24px; }
  .hpar-sec      { padding: 56px 24px; grid-template-columns: 100px 1fr; gap: 24px; }
  .hpar-text     { font-size: clamp(20px, 3vw, 32px); }
  .hpar-media    { width: clamp(120px, 18vw, 180px); }
  .tools-sec     { padding: 56px 24px; }
  .tools-band    { padding: 20px 0; grid-template-columns: 1fr 180px; gap: 20px; }
  .tools-band-title { font-size: clamp(26px, 4.5vw, 48px); }
  .method-sec    { padding: 56px 24px; }
  .method-top    { margin-bottom: 40px; }
  .method-title  { font-size: clamp(24px, 4vw, 40px); }
  .method-grid   { grid-template-columns: repeat(2, 1fr); }
  .method-step:nth-child(2) { border-right: none; }
  .method-step:nth-child(3) { border-top: 1px solid var(--faint); }
  .method-step:nth-child(4) { border-top: 1px solid var(--faint); border-right: none; }
  .method-gif    { width: 120px; }
  .about-sec     { padding: 56px 24px; }
  .about-grid    { grid-template-columns: 1fr; gap: 28px; margin-bottom: 40px; }
  .stats-row     { grid-template-columns: repeat(2, 1fr); }
  .stat          { padding: 24px 0 24px 16px; }
  .sn            { font-size: clamp(28px, 5vw, 44px); }
  #contact       { padding: 56px 24px; gap: 32px; }
  .ct-title      { font-size: clamp(28px, 5vw, 52px); }
  .contact-gif   { width: 120px; }

  /* Hero — réduit la hauteur */
  #hero          { min-height: 80svh !important; }
  .hero-left     { padding: 80px 24px 0; gap: 28px; }
  .hero-title-word { font-size: clamp(56px, 10vw, 110px); }

  /* Snap désactivé aussi sur tablet portrait */
  /* (géré en JS) */
}
