/* ==========================================================================
   AND STUDIO — l'atelier immersif
   Thème clair, typo affiche, accents rose & orange de la marque.
   ========================================================================== */

:root{
  --bg:      #FBFAF6;
  --bg-soft: #F1EEE6;
  --text:    #101010;
  --muted:   #6E6A61;
  --line:    rgba(16,16,16,0.12);
  --pink:    #ff8dc1;
  --orange:  #f48521;
  --plate:   #101010;

  --font-head: "Syne", -apple-system, sans-serif;
  --font-body: "Space Grotesk", -apple-system, sans-serif;

  --ease: cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after{ box-sizing: border-box; }

html{ background: var(--bg); scroll-behavior: smooth; overflow-x: clip; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ display: block; max-width: 100%; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1,h2,h3,p{ margin: 0; }
h1,h2,h3{ overflow-wrap: normal; }

::selection{ background: var(--pink); color: #101010; }

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

/* Halo doux qui suit la souris */
.glow{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(620px circle at var(--mx, 70%) var(--my, 20%),
      rgba(255,141,193,0.16), rgba(244,133,33,0.08) 45%, transparent 70%);
}

/* Grain papier très léger */
body::after{
  content: "";
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Curseur personnalisé (pointeurs fins uniquement) */
.cursor-dot, .cursor-ring{
  position: fixed;
  top: 0; left: 0;
  z-index: 300;
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%,-50%);
  display: none;
}
.cursor-dot{
  width: 8px; height: 8px;
  background: var(--orange);
}
.cursor-ring{
  width: 38px; height: 38px;
  border: 1.5px solid rgba(16,16,16,0.35);
  transition: width .25s, height .25s, border-color .25s;
}
body.cursor-hover .cursor-ring{
  width: 62px; height: 62px;
  border-color: var(--pink);
}
@media (pointer: fine){
  .cursor-dot, .cursor-ring{ display: block; }
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 64px);
  background: linear-gradient(rgba(251,250,246,0.92), rgba(251,250,246,0));
}

.logo{ position: relative; z-index: 102; }
.logo img{ height: 42px; width: 104px; max-width: none; }

.nav{
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav a{ position: relative; padding-bottom: 4px; }
.nav a::after{
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0%; height: 2px;
  background: var(--orange);
  transition: width .3s var(--ease);
}
.nav a:hover::after, .nav a:focus-visible::after{ width: 100%; }

.nav .btn-pill{
  background: var(--text);
  color: var(--bg);
  padding: 12px 24px;
  border-radius: 999px;
  transition: background .25s, color .25s;
}
.nav .btn-pill:hover{ background: var(--pink); color: #101010; }
.nav .btn-pill::after{ display: none; }

.nav-toggle{ display: none; }

@media (max-width: 780px){
  body.menu-open{
    overflow: hidden;
  }

  .nav{
    position: fixed;
    inset: 0;
    z-index: 100;
    min-height: 100dvh;
    padding: 112px 22px 34px;
    background:
      radial-gradient(420px circle at 72% 18%, rgba(255,141,193,0.22), transparent 62%),
      var(--bg);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    font-size: clamp(2rem, 10vw, 3.6rem);
    line-height: 1;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s .35s;
  }
  .nav.is-open{
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
    transition: opacity .35s var(--ease), transform .35s var(--ease);
  }
  .nav a{
    display: flex;
    align-items: center;
    min-height: 72px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-weight: 800;
    letter-spacing: 0;
  }
  .nav a::after{ display: none; }
  .nav a[aria-current="page"],
  .nav a:hover,
  .nav a:focus-visible{
    color: var(--pink);
  }
  .nav .btn-pill{
    margin-top: 24px;
    min-height: 54px;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 16px 20px;
    background: var(--text);
    color: var(--bg);
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: 0.04em;
  }
  .nav-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    position: relative;
    z-index: 101;
    margin: -10px -10px -10px 0;
    border-radius: 999px;
    touch-action: manipulation;
  }
  .nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    height: 2.5px;
    background: var(--text);
    top: calc(50% - 1px);
    border-radius: 999px;
    transition: transform .28s var(--ease), opacity .2s var(--ease);
  }
  .nav-toggle span::before{ top: -8px; left: 0; right: 0; }
  .nav-toggle span::after{ top: 8px; left: 0; right: 0; }
  .nav-toggle[aria-expanded="true"] span{ background: transparent; }
  .nav-toggle[aria-expanded="true"] span::before{ transform: translateY(8px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span::after{ transform: translateY(-8px) rotate(-45deg); }
}

/* ==========================================================================
   Hero — l'affiche
   ========================================================================== */

.hero{
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 112px clamp(20px, 5vw, 64px) 76px;
  overflow: hidden;
}

.hero__scene{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.58;
  contain: layout paint size;
}
.hero__stack, .hero__tag{ position: relative; z-index: 1; }

.hero__stack{
  position: relative;
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  max-width: 78vw;
}
.hero__word{
  display: block;
  font-size: clamp(3.8rem, 13.2vw, 12rem);
}
/* « Création » est plus long que « Studio » : taille réduite pour tenir sur la ligne */
.hero__word--last{
  font-size: clamp(3rem, 8.8vw, 8.4rem);
}
.hero__word--outline{
  color: transparent;
  -webkit-text-stroke: 2px var(--text);
}
.hero__word em{
  font-style: normal;
  color: var(--pink);
}

.hero__tag{
  margin-top: clamp(20px, 4vh, 34px);
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.hero__tagline{
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  color: var(--muted);
  max-width: 44ch;
}

/* Stickers flottants */
.sticker{
  position: absolute;
  z-index: 2;
  will-change: transform;
  pointer-events: none;
}
.sticker--hand{ top: 6%; right: 12%; width: clamp(80px, 11vw, 150px); transform: rotate(12deg); }
.sticker--star{ bottom: 16%; right: 30%; width: clamp(44px, 6vw, 80px); transform: rotate(-10deg); }
.sticker--spiral{ top: 30%; left: 58%; width: clamp(50px, 7vw, 90px); }

/* Badge circulaire rotatif */
.ring{
  position: absolute;
  bottom: 9%;
  right: clamp(20px, 6vw, 90px);
  width: clamp(110px, 13vw, 170px);
  height: clamp(110px, 13vw, 170px);
  animation: ringspin 16s linear infinite;
}
.ring text{
  font-family: var(--font-head);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  fill: var(--text);
}
@keyframes ringspin{ to{ transform: rotate(360deg); } }

.hero__scroll{
  position: absolute;
  bottom: 26px;
  left: clamp(20px, 5vw, 64px);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ==========================================================================
   Marquee
   ========================================================================== */

.marquee{
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  background: var(--bg);
}
.marquee--tilt{
  margin: 0;
  transform: rotate(-1.6deg) scale(1.04);
  transform-origin: center;
  background: var(--text);
  color: var(--bg);
  border: 0;
  box-shadow: 0 10px 0 var(--bg-soft), 0 -10px 0 var(--bg);
}
.marquee__track{
  display: flex;
  gap: 44px;
  width: max-content;
  animation: marquee 26s linear infinite;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__track i{ font-style: normal; color: var(--orange); }
@keyframes marquee{ to{ transform: translateX(-50%); } }
.marquee:hover .marquee__track{ animation-play-state: paused; }

/* ==========================================================================
   Manifesto — scène épinglée
   ========================================================================== */

.manifesto{
  position: relative;
  z-index: 1;
  background: var(--bg-soft);
  overflow: clip;
  min-height: auto;
  margin-top: clamp(-24px, -2vw, -12px);
  padding: clamp(82px, 9vw, 132px) 0 clamp(34px, 6vw, 86px);
}
.manifesto::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: clamp(-58px, -5vw, -28px);
  height: clamp(96px, 10vw, 150px);
  z-index: -1;
  background: var(--bg-soft);
}
.manifesto__stage{
  position: relative;
  display: block;
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px);
}
.manifesto__line{
  position: relative;
  min-height: clamp(520px, 78svh, 760px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(92px, 0.18fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(22px, 5vw, 76px);
  padding-bottom: clamp(34px, 5vw, 72px);
  font-family: var(--font-head);
  font-weight: 700;
  text-align: left;
  isolation: isolate;
  will-change: opacity, transform;
}
.manifesto__line::before{
  content: attr(data-step);
  position: absolute;
  top: 50%;
  left: clamp(-18px, -1vw, 0px);
  z-index: -1;
  transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: rgba(16,16,16,0.045);
}
.manifesto__line::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(6px, 1.4vw, 18px);
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--orange), rgba(16,16,16,0.08));
  transform-origin: left center;
}
.manifesto__line:nth-child(even){
  grid-template-columns: minmax(0, 1fr) minmax(92px, 0.18fr);
  text-align: right;
}
.manifesto__line:nth-child(even)::before{
  left: auto;
  right: clamp(-18px, -1vw, 0px);
}
.manifesto__line:nth-child(even)::after{
  background: linear-gradient(90deg, rgba(16,16,16,0.08), var(--orange), var(--pink));
  transform-origin: right center;
}
.manifesto__kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
.manifesto__line:nth-child(even) .manifesto__kicker{
  grid-column: 2;
  justify-self: end;
}
.manifesto__text{
  position: relative;
  z-index: 1;
  display: block;
  max-width: 18ch;
  font-size: clamp(2.3rem, 6vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}
.manifesto__line:nth-child(even) .manifesto__text{
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}
.manifesto__line em{ font-style: normal; color: var(--orange); }
.manifesto__line strong{ font-weight: 800; color: var(--pink); }

/* ==========================================================================
   Sections communes
   ========================================================================== */

.section{
  position: relative;
  z-index: 1;
  padding: clamp(90px, 14vh, 150px) clamp(20px, 5vw, 64px);
}

.section__label{
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
}

.section__title{
  margin-top: 14px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.section__title em{ font-style: normal; color: var(--pink); }

.fx-title{ overflow: hidden; }

/* ==========================================================================
   Galerie horizontale — les planches
   ========================================================================== */

.gallery{
  position: relative;
  z-index: 2;
  padding: clamp(72px, 11vh, 128px) 0 clamp(90px, 14vh, 150px);
  overflow: hidden;
  background: var(--bg);
}
.gallery::before{ content: none; }
.gallery__head{
  position: relative;
  z-index: 4;
  padding: 0 clamp(20px, 5vw, 64px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.gallery__hint{
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.gallery__scroll{
  margin-top: clamp(44px, 7vh, 76px);
  display: flex;
  align-items: flex-start;
  gap: clamp(18px, 2.6vw, 34px);
  overflow-x: auto;
  padding: 10px clamp(20px, 5vw, 64px) 30px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.gallery__scroll::-webkit-scrollbar{ display: none; }

/* Mode épinglé : le scroll vertical translate la rangée, plus d'overflow natif */
.gallery__scroll.is-pinned{
  overflow: visible;
  width: fit-content;
  max-width: none;
  scroll-snap-type: none;
  will-change: transform;
}

.plate{
  flex: 0 0 clamp(280px, 34vw, 460px);
  scroll-snap-align: start;
  background: var(--plate);
  color: #f4f4f4;
  border-radius: 16px;
  overflow: hidden;
  transform: translateY(0);
  transition: transform .45s var(--ease), box-shadow .45s;
  box-shadow: 0 10px 30px rgba(16,16,16,0.10);
}
.plate:hover{
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 26px 60px rgba(16,16,16,0.22);
}

.plate__art{ aspect-ratio: 460/300; overflow: hidden; }
.plate__art svg{ width: 100%; height: 100%; display: block; }
.plate__art img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.plate:hover .plate__art img{ transform: scale(1.06); }

.plate__body{ padding: 20px 24px 26px; }
.plate__cat{
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}
.plate__name{
  margin-top: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
}
.plate__desc{
  margin-top: 6px;
  font-size: 0.9rem;
  color: rgba(244,244,244,0.65);
}

.gallery__bar{
  margin: 26px clamp(20px, 5vw, 64px) 0;
  height: 2px;
  background: var(--line);
}
.gallery__bar i{
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  transition: width .15s linear;
}

.gallery__more{
  margin: 40px clamp(20px, 5vw, 64px) 0;
}

/* ==========================================================================
   Studio — services
   ========================================================================== */

.studio__intro{
  position: relative;
  margin-top: clamp(22px, 3.6vh, 42px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.48fr);
  align-items: start;
  gap: clamp(36px, 7vw, 108px);
  min-height: clamp(520px, 64vh, 680px);
}
.studio__intro::before{
  content: "";
  position: absolute;
  left: clamp(0px, 1vw, 18px);
  top: clamp(22px, 5vh, 54px);
  width: min(42vw, 540px);
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--orange), transparent);
}
.studio__copy{
  align-self: center;
  max-width: 66ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.studio__copy p + p{ margin-top: 18px; }
.studio__facts{
  margin-top: clamp(24px, 4vh, 42px);
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 240px));
  gap: clamp(16px, 2.8vw, 28px);
}
.studio__facts span{
  display: block;
  min-width: 0;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.studio__facts strong{
  display: block;
  margin-bottom: 6px;
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  line-height: 0.92;
  letter-spacing: 0;
  white-space: nowrap;
  color: var(--text);
}
.studio__portrait{
  position: relative;
  margin: 0;
  justify-self: end;
  width: min(100%, 420px);
  isolation: isolate;
}
.studio__portrait::before{
  content: "";
  position: absolute;
  right: -14px;
  bottom: 34px;
  width: 58%;
  height: 70%;
  z-index: -1;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink), rgba(244,133,33,0.42));
  transform: rotate(1.8deg);
}
.studio__portrait img{
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  border: 1px solid var(--line);
  filter: saturate(0.95) contrast(1.03);
  box-shadow: 0 18px 36px rgba(16,16,16,0.12);
}
.studio__portrait figcaption{
  position: relative;
  z-index: 2;
  margin-top: 14px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

.services{
  margin-top: clamp(40px, 7vh, 70px);
  border-top: 1px solid var(--line);
}
.service{
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: baseline;
  gap: clamp(16px, 3vw, 36px);
  padding: clamp(22px, 3.6vh, 34px) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left .35s var(--ease);
}
.service:hover{ padding-left: 16px; }
.service__num{
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
}
.service__name{
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.5rem, 3.8vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  transition: color .3s;
}
.service:hover .service__name{ color: var(--orange); }
.service__desc{
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 34ch;
}

/* ==========================================================================
   Avis
   ========================================================================== */

.quotes{
  margin-top: clamp(36px, 6vh, 60px);
  display: grid;
  gap: clamp(22px, 4vh, 40px);
}
.quote{
  border-left: 3px solid var(--pink);
  padding: 6px 0 6px clamp(18px, 3vw, 32px);
  max-width: 820px;
}
.quote:nth-child(2){ border-color: var(--orange); margin-left: clamp(0px, 8vw, 130px); }
.quote:nth-child(3){ margin-left: clamp(0px, 16vw, 260px); }
.quote p{
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.5;
}
.quote cite{
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

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

.contact{
  text-align: center;
  overflow: hidden;
}
.contact .section__title{
  font-size: clamp(2.6rem, 9vw, 7.5rem);
  max-width: none;
}
.contact__sub{
  margin: 24px auto 0;
  max-width: 46ch;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.btn{
  display: inline-block;
  padding: 18px 36px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background .25s, color .25s, transform .25s var(--ease);
  will-change: transform;
}
.btn:hover{ background: var(--pink); color: #101010; }
.contact .btn{ margin-top: 40px; }

.link-arrow{
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--text);
  padding-bottom: 3px;
  transition: border-color .25s, color .25s;
}
.link-arrow:hover{ color: var(--orange); border-color: var(--orange); }

.contact__mail{
  display: block;
  margin-top: 22px;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  transition: color .25s;
}
.contact__mail:hover{ color: var(--orange); }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer{
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 32px clamp(20px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 13px;
  color: var(--muted);
}
.site-footer img{ height: 34px; width: 84px; max-width: none; }
.site-footer nav{ display: flex; gap: 22px; flex-wrap: wrap; }
.site-footer a{ transition: color .25s; }
.site-footer a:hover{ color: var(--orange); }

/* Apparitions génériques */
.reveal{
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible{ opacity: 1; transform: none; }

@media (max-width: 820px){
  body{
    font-size: 15.5px;
    line-height: 1.55;
  }
  .cursor-dot,
  .cursor-ring{ display: none !important; }

  .site-header{
    padding: 14px 18px;
    background: rgba(251,250,246,0.94);
    backdrop-filter: blur(10px);
  }
  .logo img{ width: 90px; height: auto; }
  .nav{
    align-items: stretch;
  }
  .nav a{
    width: 100%;
  }
  .nav .btn-pill{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 14px 20px;
  }

  .hero{
    min-height: 100svh;
    justify-content: center;
    padding: 108px 18px 56px;
  }
  .hero__scene{
    inset: 70px 0 auto 28%;
    width: 96%;
    height: 44%;
    opacity: 0.24;
  }
  .hero__stack{
    max-width: 100%;
    line-height: 0.94;
  }
  .hero__word{
    font-size: clamp(2.55rem, 14vw, 4.65rem);
  }
  .hero__word--last{
    font-size: clamp(2rem, 10.2vw, 3.45rem);
  }
  .hero__word--outline{ -webkit-text-stroke-width: 1.4px; }
  .hero__tag{
    margin-top: 22px;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .hero__tagline{
    max-width: 32ch;
    font-size: 1rem;
  }
  .hero__scroll{
    bottom: 18px;
    left: 18px;
    font-size: 10.5px;
  }
  .sticker--star{
    right: 18px;
    bottom: 18%;
    width: 42px;
  }
  .sticker--spiral,
  .ring{ display: none; }

  .marquee{
    padding: 12px 0;
  }
  .marquee--tilt{
    margin: 0;
    transform: rotate(-1.2deg) scale(1.05);
    box-shadow: 0 8px 0 var(--bg-soft), 0 -8px 0 var(--bg);
  }
  .marquee__track{
    gap: 28px;
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .manifesto{
    min-height: auto;
    margin-top: -14px;
    padding: 70px 0 118px;
  }
  .manifesto::before{
    top: -42px;
    height: 82px;
  }
  .manifesto__stage{
    min-height: auto;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 0 18px;
    gap: 18px;
  }
  .manifesto__line{
    grid-area: auto;
    opacity: 1;
    min-height: auto;
    display: block;
    text-align: left;
    max-width: none;
    padding: 0 0 26px;
    border-bottom: 1px solid var(--line);
    font-size: clamp(1.42rem, 7.55vw, 2.05rem);
    line-height: 1.12;
  }
  .manifesto__line::before{
    position: static;
    display: block;
    transform: none;
    margin-bottom: 6px;
    font-size: 2.8rem;
    line-height: 0.9;
    color: rgba(16,16,16,0.08);
  }
  .manifesto__line::after{
    display: none;
  }
  .manifesto__kicker{
    display: block;
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: 0.18em;
    writing-mode: initial;
    transform: none;
  }
  .manifesto__text{
    max-width: none;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: 0;
  }
  .manifesto__line:nth-child(even){
    text-align: left;
  }
  .manifesto__line:nth-child(even) .manifesto__kicker,
  .manifesto__line:nth-child(even) .manifesto__text{
    grid-column: auto;
    grid-row: auto;
    justify-self: auto;
  }

  .section{
    padding: 72px 18px;
  }
  .section__title{
    margin-top: 10px;
    font-size: clamp(1.9rem, 8.8vw, 2.85rem);
    line-height: 1.04;
    letter-spacing: 0;
    text-wrap: balance;
  }
  .gallery .section__title{
    font-size: clamp(2rem, 9.2vw, 3rem);
  }

  .gallery{
    padding: 58px 0 78px;
  }
  .gallery::before{ height: 72px; }
  .gallery__head{
    display: block;
    padding: 0 18px;
  }
  .gallery__scroll{
    margin-top: 26px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    overflow: visible;
    padding: 0 18px 10px;
    scroll-padding-left: 18px;
  }
  .plate{
    width: 100%;
    min-width: 0;
    border-radius: 10px;
    transform: none;
  }
  .plate:nth-child(n+5){ display: none; }
  .plate:hover{ transform: none; }
  .plate__art{ aspect-ratio: 16/11; }
  .plate__body{ padding: 16px 17px 18px; }
  .plate__cat{
    font-size: 9px;
    letter-spacing: 0.16em;
  }
  .plate__name{ font-size: 1.25rem; }
  .plate__desc{ font-size: 0.86rem; }
  .gallery__bar{ display: none; }
  .gallery__more{ margin: 28px 18px 0; }

  .services{
    margin-top: 42px;
  }
  .studio__intro{
    margin-top: 26px;
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
  }
  .studio__intro::before{
    width: 100%;
    top: -14px;
  }
  .studio__copy{
    max-width: none;
    font-size: 1rem;
  }
  .studio__facts{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
  }
  .studio__facts span{
    font-size: 9px;
    letter-spacing: 0.12em;
  }
  .studio__facts strong{
    font-size: clamp(1.85rem, 11vw, 2.4rem);
  }
  .studio__portrait{
    justify-self: stretch;
    width: min(100%, 340px);
  }
  .studio__portrait img{
    height: auto;
  }
  .studio__portrait::before{
    right: -10px;
    bottom: 34px;
    width: 54%;
    height: 66%;
    border-radius: 12px;
  }
  .studio__portrait figcaption{
    font-size: 10px;
    letter-spacing: 0.15em;
  }
  .service{
    grid-template-columns: 38px 1fr;
    gap: 12px 16px;
    padding: 22px 0;
  }
  .service:hover{ padding-left: 0; }
  .service__name{
    font-size: clamp(1.18rem, 6.45vw, 1.7rem);
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: normal;
  }
  .service__desc{
    grid-column: 2;
    max-width: none;
    font-size: 0.94rem;
  }

  .quotes{
    gap: 24px;
  }
  .quote,
  .quote:nth-child(2),
  .quote:nth-child(3){
    margin-left: 0;
  }
  .quote p{
    font-size: 1.05rem;
    line-height: 1.45;
  }

  .contact .section__title{
    max-width: 100%;
    font-size: clamp(1.75rem, 7.8vw, 2.35rem);
    line-height: 0.96;
    text-wrap: balance;
    white-space: nowrap;
  }
  .contact .section__title em{
    display: inline-block;
  }
  .contact__sub{
    max-width: 31ch;
    font-size: 1rem;
  }
  .btn{
    width: 100%;
    max-width: 340px;
    padding: 16px 22px;
    font-size: 11.5px;
    line-height: 1.2;
    white-space: normal;
  }

  .site-footer{
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 18px;
  }
  .site-footer nav{
    gap: 12px 18px;
  }

  .reveal{
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 520px){
  .hero__word{ font-size: clamp(2.35rem, 13.6vw, 3.3rem); }
  .hero__word--last{ font-size: clamp(1.82rem, 9.9vw, 2.5rem); }
  .hero__scene{
    inset: 78px 0 auto 28%;
    width: 98%;
    height: 38%;
  }
  .manifesto__line{
    font-size: clamp(1.32rem, 7.15vw, 1.85rem);
  }
  .contact .section__title{
    font-size: clamp(1.58rem, 7.25vw, 1.95rem);
  }
  .contact__sub{
    max-width: 27ch;
  }
  .btn{
    max-width: 100%;
    padding-inline: 16px;
  }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal{ opacity: 1; transform: none; }
  .cursor-dot, .cursor-ring{ display: none !important; }
}
