/* ==========================================================================
   Anim'ta Terre — styles.css
   Palette : sable #F1E3CB · crème #FFF6E8 · encre #33301C · olive #56552A
             terracotta #CE4F2C · ocre #C5872B · doré #E9BC6B
   ========================================================================== */

/* ---------- Polices auto-hébergées ---------- */
@font-face {
  font-family: 'Fredoka';
  src: url('/fonts/fredoka-latin-var.woff2') format('woff2-variations');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito';
  src: url('/fonts/nunito-latin-var.woff2') format('woff2-variations');
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Caveat';
  src: url('/fonts/caveat-latin-var.woff2') format('woff2-variations');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
  --sable: #F1E3CB;
  --sable-2: #E7D3B0;
  --creme: #FFF6E8;
  --encre: #33301C;
  --olive: #56552A;
  --terracotta: #CE4F2C;
  --terracotta-2: #A93E20;
  --ocre: #C5872B;
  --ocre-2: #A56F1E;
  --dore: #E9BC6B;
  --ff-titres: 'Fredoka', 'Trebuchet MS', sans-serif;
  --ff-corps: 'Nunito', 'Segoe UI', sans-serif;
  --ff-manuscrit: 'Caveat', cursive;
  --ombre-carte: 0 12px 30px rgba(51, 48, 28, 0.10);
  --ombre-carte-hover: 0 22px 44px rgba(51, 48, 28, 0.16);
  --nav-h: 64px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--sable);
  color: var(--encre);
  font-family: var(--ff-corps);
  font-size: 17px;
  line-height: 1.7;
  overflow-x: clip;
}
img { max-width: 100%; height: auto; }
a { color: var(--terracotta); }
a:hover { color: var(--terracotta-2); }
::selection { background: var(--ocre); color: var(--creme); }
h1, h2, h3 { font-family: var(--ff-titres); font-weight: 600; line-height: 1.12; margin: 0; text-wrap: balance; }
p { margin: 0 0 16px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--encre); color: var(--creme);
  padding: 10px 18px; border-radius: 0 0 12px 0;
  font-family: var(--ff-titres); text-decoration: none;
}
.skip-link:focus { left: 0; color: var(--creme); }

:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 3px; border-radius: 4px; }

.section { scroll-margin-top: var(--nav-h); }

/* Fond crème pour la barre de défilement générale */
html { scrollbar-color: var(--olive) var(--sable); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-block;
  font-family: var(--ff-titres); font-weight: 600; font-size: 17px;
  text-decoration: none;
  padding: 14px 30px; border-radius: 999px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--terracotta); color: var(--creme); box-shadow: 0 10px 26px rgba(30, 28, 12, 0.30); }
.btn--primary:hover { background: var(--terracotta-2); color: var(--creme); transform: translateY(-3px); }
.btn--light { background: rgba(241, 227, 203, 0.92); color: var(--olive); }
.btn--light:hover { background: var(--creme); color: var(--encre); transform: translateY(-3px); }
.btn--olive { background: var(--olive); color: var(--creme); flex-shrink: 0; font-size: 16px; padding: 13px 26px; }
.btn--olive:hover { background: var(--encre); color: var(--creme); transform: translateY(-3px); }

.kicker {
  font-family: var(--ff-titres); font-weight: 600;
  color: var(--terracotta);
  letter-spacing: 0.12em; text-transform: uppercase;
  font-size: 14px; margin: 0 0 10px;
}
.kicker--center { text-align: center; }
.kicker--gold { color: var(--dore); text-align: center; }
.accent { color: var(--terracotta); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 10px 28px;
  background: rgba(241, 227, 203, 0.90);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(86, 85, 39, 0.15);
  transition: box-shadow 0.3s ease;
}
.nav.is-scrolled { box-shadow: 0 6px 24px rgba(51, 48, 28, 0.10); }
.nav__logo img { height: 44px; width: auto; display: block; }
.nav__links { display: flex; align-items: center; gap: 26px; font-family: var(--ff-titres); font-weight: 500; font-size: 16px; }
.nav__links a { color: var(--encre); text-decoration: none; transition: color 0.2s ease; }
.nav__links a:hover { color: var(--terracotta); }
.nav__links a.nav__cta {
  color: var(--creme); background: var(--terracotta);
  padding: 9px 20px; border-radius: 999px;
  transition: background 0.2s ease;
}
.nav__links a.nav__cta:hover { background: var(--terracotta-2); color: var(--creme); }
.nav__burger { display: none; }

/* ---------- Héro ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: -12% 0 auto 0;
  width: 100%; height: 118%;
  object-fit: cover; object-position: center 42%;
  will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(51, 48, 28, 0.38) 0%, rgba(51, 48, 28, 0.18) 45%, rgba(86, 85, 39, 0.70) 100%);
}
.hero__content {
  position: relative;
  text-align: center;
  padding: 110px 24px 80px;
  max-width: 900px;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.hero__logo {
  width: min(380px, 64vw); height: auto; display: block;
  filter: drop-shadow(0 10px 28px rgba(30, 28, 12, 0.5));
}
.hero__tagline {
  font-family: var(--ff-titres); font-weight: 500;
  font-size: clamp(20px, 3vw, 28px);
  color: var(--creme); margin: 0;
  text-shadow: 0 2px 18px rgba(30, 28, 12, 0.6);
  line-height: 1.35;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: var(--creme); font-size: 26px; opacity: 0.85;
  animation: at-float 3s ease-in-out infinite;
}

/* Papillon décoratif */
.butterfly {
  position: absolute; width: 44px; z-index: 2;
  filter: drop-shadow(0 6px 12px rgba(30, 28, 12, 0.3));
  animation: at-butterfly 9s ease-in-out infinite;
}
.butterfly--hero { top: 22%; right: 12%; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--terracotta); color: var(--creme);
  overflow: hidden; padding: 13px 0;
  border-top: 3px solid var(--terracotta-2);
}
.marquee__track {
  display: flex; width: max-content;
  animation: at-marquee 26s linear infinite;
  font-family: var(--ff-titres); font-weight: 500; font-size: 17px;
  letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap;
}
.marquee__track span { padding-right: 28px; }

/* ---------- Qui suis-je ---------- */
.about {
  max-width: 1120px; margin: 0 auto;
  padding: 110px 28px 90px;
  display: grid; grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 64px; align-items: center;
}
.about__portrait { position: relative; display: flex; flex-direction: column; align-items: center; }
.about__photo { position: relative; width: min(380px, 100%); }
.about__blob {
  position: absolute; inset: 6% 2% 0 2%;
  border-radius: 50% 50% 42% 42%;
  background: conic-gradient(from 40deg, #C5872B, #CE4F2C, #56552A, #C5872B);
  opacity: 0.92;
}
.about__dot {
  position: absolute; top: -12px; right: -6px;
  width: 74px; height: 74px; border-radius: 50%;
  background: var(--dore);
  animation: at-float 5s ease-in-out infinite;
}
.about__photo img {
  position: relative; z-index: 1; width: 100%; display: block;
  filter: drop-shadow(0 18px 36px rgba(51, 48, 28, 0.3));
}
.about__name {
  margin-top: -26px; z-index: 2; position: relative;
  background: var(--olive); color: var(--creme);
  font-family: var(--ff-titres); font-weight: 600;
  font-size: clamp(24px, 2.6vw, 32px);
  padding: 14px 34px; border-radius: 999px;
  transform: rotate(-2deg);
  box-shadow: 0 14px 30px rgba(51, 48, 28, 0.28);
}
.about__role {
  margin: 14px 0 0;
  font-family: var(--ff-manuscrit); font-size: 24px;
  color: var(--terracotta);
  transform: rotate(-1deg);
}
.about__text h2 { font-size: clamp(30px, 4vw, 44px); margin: 0 0 22px; }
.about__text p { font-size: 17.5px; line-height: 1.75; }
.about__stats { display: flex; gap: 36px; flex-wrap: wrap; margin-top: 12px; }
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat__num { font-family: var(--ff-titres); font-weight: 700; font-size: 42px; line-height: 1; }
.stat--terracotta { color: var(--terracotta); }
.stat--ocre { color: var(--ocre); }
.stat--olive { color: var(--olive); }
.stat__label { font-size: 14.5px; font-weight: 700; color: var(--olive); }

/* ---------- Pour qui ---------- */
.publics {
  background: var(--sable-2);
  border-top: 3px solid rgba(86, 85, 39, 0.15);
  border-bottom: 3px solid rgba(86, 85, 39, 0.15);
  padding: 80px 28px;
  position: relative; overflow: hidden;
}
.publics__sun {
  position: absolute; top: 4px; left: 50%;
  transform: translateX(-50%) translateY(110px);
  width: 220px; opacity: 0; pointer-events: none;
}
.publics__inner { max-width: 1120px; margin: 0 auto; position: relative; }
.publics h2 { font-size: clamp(28px, 3.4vw, 38px); margin: 0 0 12px; text-align: center; }
.publics__sub { text-align: center; font-size: 17px; margin: 0 auto 44px; max-width: 560px; }
.publics__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.card-public {
  background: var(--sable);
  border-radius: 20px; padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 10px 26px rgba(51, 48, 28, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-public:hover { transform: translateY(-6px); box-shadow: 0 18px 36px rgba(51, 48, 28, 0.14); }
.card-public svg { width: 56px; height: 42px; }
.card-public h3 { font-size: 20px; }
.card-public p { margin: 0; font-size: 15.5px; line-height: 1.65; }

/* ---------- Mes animations ---------- */
.ateliers { max-width: 1180px; margin: 0 auto; padding: 100px 28px 90px; }
.ateliers__title { font-size: clamp(30px, 4vw, 44px); margin: 0 0 14px; text-align: center; }
.ateliers__sub { text-align: center; font-size: 17px; margin: 0 auto 52px; max-width: 620px; }
.ateliers__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.card-atelier {
  background: var(--creme);
  border-radius: 22px; overflow: hidden;
  box-shadow: var(--ombre-carte);
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-atelier:hover { transform: translateY(-6px); box-shadow: var(--ombre-carte-hover); }
.card-atelier__media { position: relative; height: 230px; }
.card-atelier__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-atelier__media picture { display: block; height: 100%; }
.badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--sable); color: var(--olive);
  font-family: var(--ff-titres); font-weight: 600; font-size: 13px;
  padding: 6px 14px; border-radius: 999px;
  pointer-events: none;
}
.card-atelier__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; }
.card-atelier__body h3 { font-size: 21px; }
.card-atelier__body p { margin: 0; font-size: 15.5px; line-height: 1.65; }

.card-surmesure {
  grid-column: 1 / -1;
  border: 3px dashed var(--terracotta);
  border-radius: 22px;
  padding: 36px 34px;
  display: flex; align-items: center; gap: 28px; flex-wrap: wrap;
  background: rgba(255, 246, 232, 0.6);
}
.card-surmesure__plus {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--terracotta); color: var(--creme);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-titres); font-weight: 600; font-size: 38px;
  flex-shrink: 0;
  animation: at-float 5s ease-in-out infinite;
}
.card-surmesure__text { flex: 1; min-width: 260px; }
.card-surmesure__text h3 { font-size: 24px; margin: 0 0 8px; }
.card-surmesure__text p { margin: 0; font-size: 16px; line-height: 1.7; }

/* ---------- Galerie ---------- */
.galerie { background: var(--olive); padding: 100px 0 90px; overflow: hidden; scroll-margin-top: var(--nav-h); }
.galerie__head { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.galerie h2 { font-size: clamp(30px, 4vw, 44px); margin: 0 0 10px; color: var(--creme); text-align: center; }
.galerie__hint {
  text-align: center;
  font-family: var(--ff-manuscrit); font-size: 23px;
  color: var(--dore);
  margin: 0 0 44px;
}
.galerie__strip {
  display: flex; gap: 30px;
  overflow-x: auto;
  padding: 20px 48px 40px;
  cursor: grab;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.galerie__strip::-webkit-scrollbar { display: none; }
.galerie__strip.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.polaroid {
  flex-shrink: 0; margin: 0;
  background: var(--creme);
  padding: 12px 12px 14px;
  border-radius: 6px;
  box-shadow: 0 16px 34px rgba(30, 28, 12, 0.35);
  transform: rotate(var(--rot, 0deg)) translateY(var(--dy, 0px));
  transition: transform 0.35s ease;
}
.polaroid:hover { transform: rotate(0deg) scale(1.04); z-index: 2; }
.polaroid__btn {
  display: block; padding: 0; border: none; background: none; cursor: pointer;
  border-radius: 3px;
}
.polaroid__btn img {
  width: 250px; height: 300px;
  object-fit: cover; display: block;
  border-radius: 3px;
  user-select: none; -webkit-user-drag: none;
}
.polaroid figcaption {
  font-family: var(--ff-manuscrit); font-size: 21px;
  color: var(--olive); text-align: center;
  padding-top: 10px;
}

/* ---------- Contact ---------- */
.contact {
  max-width: 1120px; margin: 0 auto;
  padding: 110px 28px 90px;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 60px; align-items: center;
}
.contact h2 { font-size: clamp(30px, 4vw, 46px); margin: 0 0 20px; }
.contact__text p { font-size: 17.5px; line-height: 1.75; }
.contact__actions { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; margin: 30px 0 0; }
.btn-contact {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--ff-titres); font-weight: 600; font-size: 17px;
  text-decoration: none; color: var(--creme);
  padding: 12px 26px 12px 14px; border-radius: 999px;
  transition: transform 0.25s ease, background 0.25s ease;
}
.btn-contact:hover { transform: translateY(-3px); color: var(--creme); }
.btn-contact__icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 246, 232, 0.18);
  display: flex; align-items: center; justify-content: center;
}
.btn-contact__icon svg { width: 22px; height: 22px; }
.btn-contact--wa { background: var(--terracotta); box-shadow: 0 10px 26px rgba(206, 79, 44, 0.3); }
.btn-contact--wa:hover { background: var(--terracotta-2); }
.btn-contact--ig { background: var(--ocre); box-shadow: 0 10px 26px rgba(197, 135, 43, 0.3); }
.btn-contact--ig:hover { background: var(--ocre-2); }
.contact__phone { margin-top: 26px; font-size: 16.5px; }
.contact__phone a { font-weight: 700; text-decoration: none; }
.contact__media { position: relative; }
.contact__media img {
  width: 100%;
  border-radius: 200px 200px 24px 24px;
  display: block;
  box-shadow: 0 24px 50px rgba(51, 48, 28, 0.22);
  aspect-ratio: 4 / 4.6;
  object-fit: cover; object-position: center 30%;
}
.contact__dot {
  position: absolute; top: -16px; right: -12px;
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--ocre);
  animation: at-float 4s ease-in-out infinite;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--encre); color: #D8CBA8;
  padding: 30px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer__logo { height: 34px; width: auto; background: var(--sable); border-radius: 8px; padding: 6px 12px; }
.footer p { margin: 0; font-size: 14px; }
.footer a { color: var(--dore); text-decoration: none; }
.footer a:hover { color: var(--creme); }
.footer__links { display: flex; gap: 18px; font-size: 14px; }

/* ---------- Lightbox ---------- */
.lightbox {
  border: none; padding: 0;
  background: transparent;
  max-width: min(92vw, 720px);
}
.lightbox::backdrop { background: rgba(30, 28, 12, 0.82); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.lightbox figure {
  margin: 0; background: var(--creme);
  padding: 14px 14px 16px; border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lightbox img { width: 100%; height: auto; max-height: 74vh; object-fit: contain; display: block; border-radius: 4px; }
.lightbox figcaption {
  font-family: var(--ff-manuscrit); font-size: 26px;
  color: var(--olive); text-align: center; padding-top: 12px;
}
.lightbox__close {
  position: absolute; top: -14px; right: -14px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  border: none; cursor: pointer;
  background: var(--terracotta); color: var(--creme);
  font-size: 26px; line-height: 1;
  font-family: var(--ff-corps);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
}
.lightbox__close:hover { background: var(--terracotta-2); transform: scale(1.08); }

/* ---------- Curseur personnalisé ---------- */
.cursor-ring {
  position: fixed; top: 0; left: 0;
  width: 44px; height: 44px;
  background: radial-gradient(circle, rgba(86, 85, 39, 0.14) 0%, rgba(86, 85, 39, 0) 68%);
  border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-100px, -100px);
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  will-change: transform;
}

/* ---------- Traces d'animaux (générées en JS) ---------- */
.tracks-layer { position: absolute; inset: 0; pointer-events: none; z-index: 3; overflow: hidden; }
.track {
  position: absolute; opacity: 0; transform: scale(0.5);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.track.is-in { opacity: 0.22; transform: scale(1); }

/* ---------- Animations d'apparition ----------
   L'état masqué n'est appliqué que si JS est présent (html.js) :
   sans JS, tout le contenu reste visible. */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

.split-words .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.45em);
}
.split-words.is-in .word {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease var(--word-delay, 0ms), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) var(--word-delay, 0ms);
}

/* ---------- Keyframes ---------- */
@keyframes at-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes at-float { 0%, 100% { transform: translateY(0) rotate(-6deg); } 50% { transform: translateY(-14px) rotate(-2deg); } }
@keyframes at-butterfly {
  0%, 100% { transform: translate(0, 0) rotate(-8deg); }
  25% { transform: translate(14px, -18px) rotate(4deg); }
  50% { transform: translate(-6px, -30px) rotate(-4deg); }
  75% { transform: translate(-16px, -12px) rotate(6deg); }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1080px) {
  .nav__links { gap: 18px; }
}

@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; gap: 48px; padding-top: 96px; }
  .about__photo { width: min(320px, 78vw); }
  .contact { grid-template-columns: 1fr; gap: 48px; }
  .contact__media { max-width: 460px; margin: 0 auto; width: 100%; }
  .butterfly--hero { top: 16%; right: 7%; }
}

@media (max-width: 820px) {
  /* Nav opaque sans blur : backdrop-filter créerait un containing block
     qui casserait le position:fixed du menu plein écran */
  .nav {
    background: var(--sable);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  /* Menu mobile plein écran */
  .nav__burger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 46px; height: 46px;
    padding: 10px;
    background: none; border: none; cursor: pointer;
    z-index: 60;
  }
  .nav__burger span {
    display: block; height: 3px; width: 100%;
    background: var(--encre); border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  body.menu-open .nav__burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  body.menu-open .nav__burger span:nth-child(2) { opacity: 0; }
  body.menu-open .nav__burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .nav__links {
    position: fixed; inset: 0;
    flex-direction: column; justify-content: center; gap: 30px;
    background: var(--sable);
    font-size: 26px;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 55;
  }
  body.menu-open .nav__links { opacity: 1; visibility: visible; pointer-events: auto; }
  .nav__links a.nav__cta { padding: 14px 34px; }
  body.menu-open { overflow: hidden; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .section, .about, .ateliers, .contact { padding-left: 20px; padding-right: 20px; }
  .about { padding-top: 88px; padding-bottom: 64px; }
  .ateliers { padding-top: 72px; padding-bottom: 64px; }
  .contact { padding-top: 84px; padding-bottom: 64px; }
  .publics { padding: 64px 20px; }
  .galerie { padding: 72px 0 64px; }
  .galerie__strip { padding: 16px 24px 32px; gap: 22px; }
  .polaroid__btn img { width: 216px; height: 260px; }
  .about__stats { gap: 24px; }
  .stat__num { font-size: 36px; }
  .card-surmesure { padding: 28px 22px; }
  .hero__actions .btn { padding: 13px 24px; font-size: 16px; }
  .contact__dot { right: 4px; }
  .butterfly { width: 34px; }
}

/* ---------- Accessibilité : mouvement réduit ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; flex-wrap: wrap; white-space: normal; width: auto; }
  .marquee__track span:last-child { display: none; }
  .hero__scroll, .about__dot, .contact__dot, .card-surmesure__plus, .butterfly { animation: none; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .split-words .word { opacity: 1; transform: none; }
  .publics__sun { opacity: 0.9 !important; transform: translateX(-50%) !important; }
  .polaroid, .card-atelier, .card-public, .btn, .btn-contact { transition: none; }
  .cursor-ring { display: none !important; }
}
