/* ==========================================================================
   Melvyn Barros : artiste pop, Nîmes
   DA : galerie noire, l'œuvre fait la couleur. Chrome neutre (noir + blanc
   cassé), accents polychromes MESURÉS sur ses toiles (magenta, vert croco,
   cyan, ambre, rouge), réservés au graphisme (splat, boutons, surlignage).
   Display Anton (affiche d'expo) + corps Hanken Grotesk. Zéro requête externe.
   ========================================================================== */

:root {
  /* Fonds : noir de galerie mesuré sur les toiles (p03/p04/p08 dominent en noir) */
  --bg:        #0B0B0D;
  --bg-2:      #131317;
  --bg-3:      #1B1B21;
  --line:      rgba(236,237,232,0.12);
  --line-2:    rgba(236,237,232,0.20);

  /* Texte : blanc cassé de galerie (mesuré p09 #EEEFE6 / p06 #E9ECF1) */
  --text:      #ECEDE8;
  --muted:     #A6A69E;   /* AA sur --bg (~6.4:1) */

  /* Accents polychromes : pics MESURÉS sur les œuvres */
  --pop:       #F12C9D;   /* magenta, pic 7,32% p08 : accent principal */
  --pop-ink:   #0B0B0D;   /* texte sur aplat magenta (~6,3:1) */
  --green:     #4AE022;   /* vert croco de Nîmes, pic 13,17% p04 */
  --cyan:      #15E0FD;   /* cyan, pic 5,77% p07 */
  --amber:     #FED214;   /* ambre, pic 5,34% p07 */
  --red:       #F71824;   /* rouge, pic 8,02% p08 */
  --violet:    #D431E8;   /* violet, pic 1,93% p08 */

  --font-display: 'Anton', 'Arial Narrow', 'Franklin Gothic Bold', sans-serif;
  --font-body:    'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --space-sm: 0.5rem; --space-md: 1rem; --space-lg: 2rem; --space-xl: 4rem; --space-2xl: 7rem;
  --radius-sm: 8px; --radius-md: 14px; --radius-lg: 22px; --radius-full: 9999px;

  --t-fast:  0.16s cubic-bezier(0.4,0,0.2,1);
  --t-base:  0.32s cubic-bezier(0.4,0,0.2,1);
  --t-slow:  0.7s  cubic-bezier(0.22,1,0.36,1);

  --wrap: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.15rem, 4vw, 2.5rem); }

/* Eyebrow */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--pop);
}

/* Étoiles Google : calque clippé, jamais 5 pleines pour 4,9.
   Cinq étoiles dessinées en SVG data-uri, servant de masque au fond. */
.stars {
  --star: #FED214;
  --star-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='12.5' viewBox='0 0 72 12.5'%3E%3Cg fill='%23000'%3E%3Cpath d='M7.2 1 8.9 4.5 12.7 5 9.9 7.7 10.6 11.5 7.2 9.7 3.8 11.5 4.5 7.7 1.7 5 5.5 4.5z'/%3E%3Cpath d='M21.6 1 23.3 4.5 27.1 5 24.3 7.7 25 11.5 21.6 9.7 18.2 11.5 18.9 7.7 16.1 5 19.9 4.5z'/%3E%3Cpath d='M36 1 37.7 4.5 41.5 5 38.7 7.7 39.4 11.5 36 9.7 32.6 11.5 33.3 7.7 30.5 5 34.3 4.5z'/%3E%3Cpath d='M50.4 1 52.1 4.5 55.9 5 53.1 7.7 53.8 11.5 50.4 9.7 47 11.5 47.7 7.7 44.9 5 48.7 4.5z'/%3E%3Cpath d='M64.8 1 66.5 4.5 70.3 5 67.5 7.7 68.2 11.5 64.8 9.7 61.4 11.5 62.1 7.7 59.3 5 63.1 4.5z'/%3E%3C/g%3E%3C/svg%3E");
  position: relative;
  display: inline-block;
  width: 7.2em;
  height: 1.25em;
  font-size: 0.9rem;
  vertical-align: middle;
  background: rgba(255,255,255,0.16);
  -webkit-mask: var(--star-mask) no-repeat center / 100% 100%;
          mask: var(--star-mask) no-repeat center / 100% 100%;
}
.stars-fill {
  position: absolute; inset: 0;
  background: var(--star);
  -webkit-mask: var(--star-mask) no-repeat center / 100% 100%;
          mask: var(--star-mask) no-repeat center / 100% 100%;
}
.stars-lg { font-size: 1.5rem; }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  padding: 0.85em 1.5em;
  border-radius: var(--radius-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-base), border-color var(--t-base), color var(--t-base);
  will-change: transform;
}
.btn .arr { transition: transform var(--t-base); }
.btn:hover .arr { transform: translateX(4px); }
.btn-pop { background: var(--pop); color: var(--pop-ink); }
.btn-pop:hover { transform: translateY(-2px); background: #ff43ad; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-2); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--text); background: rgba(236,237,232,0.06); }

/* ---------- Pitch (marqueur maquette) ---------- */
.pitch {
  position: relative; z-index: 30;
  background: linear-gradient(90deg, #17171d, #101015);
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
  padding: 0.62rem 1.1rem;
  border-bottom: 1px solid var(--line);
}
.pitch-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--pop); margin-right: 0.5em; vertical-align: middle; box-shadow: 0 0 0 0 rgba(241,44,157,0.6); animation: pulse 2.4s ease-out infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(241,44,157,0.55);} 70%{box-shadow:0 0 0 8px rgba(241,44,157,0);} 100%{box-shadow:0 0 0 0 rgba(241,44,157,0);} }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 25;
  transition: background var(--t-base), border-color var(--t-base), backdrop-filter var(--t-base);
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(11,11,13,0.82); backdrop-filter: blur(14px); border-bottom-color: var(--line); }
.nav-in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.85rem; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; }
.brand-mark { width: 34px; height: 34px; flex: none; }
.brand-name { font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.02em; font-size: 1.18rem; }
.nav-links { display: flex; gap: 1.6rem; }
.nav-links a { font-weight: 600; font-size: 0.92rem; color: var(--muted); transition: color var(--t-fast); position: relative; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -5px; width: 0; height: 2px; background: var(--pop); transition: width var(--t-base); }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-tel { display: inline-flex; flex-direction: column; align-items: flex-end; line-height: 1.1; }
.nav-tel-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted); }
.nav-tel-num { font-family: var(--font-display); font-size: 1.05rem; color: var(--text); }
.nav-tel:hover .nav-tel-num { color: var(--pop); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 6rem); overflow: hidden; }
.hero::before {
  /* Halo coloré très discret derrière l'œuvre, teintes des toiles */
  content: ""; position: absolute; top: -20%; right: -10%; width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle at 60% 40%, rgba(241,44,157,0.16), transparent 55%),
              radial-gradient(circle at 30% 70%, rgba(21,224,253,0.12), transparent 55%);
  filter: blur(20px); pointer-events: none; z-index: 0;
}
.hero-in { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-text { max-width: 34rem; }
.hero h1 { font-size: clamp(2.9rem, 8vw, 5.6rem); margin: 0.5rem 0 1.1rem; letter-spacing: 0.005em; }
.hero .hl {
  position: relative;
  background: linear-gradient(90deg, var(--pop) 0%, var(--red) 22%, var(--amber) 44%, var(--green) 66%, var(--cyan) 84%, var(--violet) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero-lede { color: var(--muted); font-size: 1.12rem; max-width: 30rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.7rem; }
.hero-proof { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 1.4rem; margin-top: 1.9rem; padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: 0.9rem; }
.hero-proof li { display: inline-flex; align-items: center; gap: 0.5em; color: var(--muted); }
.hero-proof .proof-k { color: var(--text); font-weight: 700; }
.hero-proof .stars { margin-right: 0.15em; }

.hero-art { position: relative; }
.hero-art img { width: 100%; border-radius: var(--radius-md); border: 1px solid var(--line-2); box-shadow: 0 30px 70px -30px rgba(0,0,0,0.8); }
.hero-art figcaption, .m-cell figcaption, .a-cell figcaption {
  font-size: 0.8rem; color: var(--muted); margin-top: 0.7rem; letter-spacing: 0.02em;
}
.hero-art { cursor: zoom-in; }

/* Éclaboussure de points colorés */
.splat { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.splat span {
  position: absolute; left: var(--x); top: var(--y); width: var(--d); height: var(--d);
  background: var(--c); border-radius: 50%; opacity: 0; transform: scale(0);
}
.js .splat span { animation: splatpop 0.6s cubic-bezier(0.34,1.56,0.64,1) forwards; animation-delay: calc(var(--y) * 0.006 + 0.5s); }

@keyframes splatpop { to { opacity: 0.9; transform: scale(1); } }

.hero-scroll { position: absolute; left: 50%; bottom: 1.1rem; transform: translateX(-50%); z-index: 3; }
.hero-scroll span { display: block; width: 22px; height: 34px; border: 2px solid var(--line-2); border-radius: 12px; position: relative; }
.hero-scroll span::after { content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 3px; height: 7px; border-radius: 3px; background: var(--muted); animation: scrolldot 1.8s ease-in-out infinite; }
@keyframes scrolldot { 0%,100%{opacity:0;transform:translate(-50%,0);} 50%{opacity:1;transform:translate(-50%,8px);} }

/* ---------- Facts band ---------- */
.facts { border-block: 1px solid var(--line); background: var(--bg-2); }
.facts-in { display: grid; grid-template-columns: repeat(4, 1fr); }
.fact { padding: 1.5rem clamp(0.6rem, 2vw, 1.4rem); text-align: center; border-left: 1px solid var(--line); }
.fact:first-child { border-left: 0; }
.fact strong { display: block; font-family: var(--font-display); font-size: clamp(1.15rem, 2.4vw, 1.6rem); letter-spacing: 0.01em; }
.fact span { display: block; font-size: 0.82rem; color: var(--muted); margin-top: 0.2rem; }

/* ---------- Section head ---------- */
section { padding-block: var(--space-2xl); }
.facts { padding-block: 0; }
.sec-head { max-width: 44rem; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.sec-head h2 { font-size: clamp(2rem, 5vw, 3.4rem); margin: 0.7rem 0 0.9rem; }
.sec-head p { color: var(--muted); font-size: 1.08rem; }

/* ---------- Œuvres (mosaïque) ---------- */
.mosaic { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; gap: 1rem; }
.m-cell { position: relative; overflow: hidden; border-radius: var(--radius-md); border: 1px solid var(--line); background: #000; cursor: zoom-in; grid-row: span 1; }
.m-cell.m-tall { grid-row: span 2; }
.m-cell.m-wide { grid-column: span 2; }
.m-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.m-cell:hover img { transform: scale(1.05); }
.m-cell figcaption {
  position: absolute; inset: auto 0 0 0; margin: 0;
  padding: 1.4rem 1rem 0.85rem; color: var(--text); font-weight: 600; font-size: 0.86rem;
  background: linear-gradient(to top, rgba(0,0,0,0.82), transparent);
  transform: translateY(6px); opacity: 0; transition: opacity var(--t-base), transform var(--t-base);
}
.m-cell:hover figcaption, .m-cell:focus-within figcaption { opacity: 1; transform: translateY(0); }

/* ---------- Artiste ---------- */
.artiste-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.artiste-photo { overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--line-2); cursor: zoom-in; box-shadow: 0 30px 70px -34px rgba(0,0,0,0.85); }
.artiste-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.artiste-text h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); margin: 0.7rem 0 1rem; }
.artiste-text .lede { color: var(--text); font-size: 1.1rem; margin-bottom: 1.6rem; }
.notes { list-style: none; display: grid; gap: 1.05rem; }
.notes li { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; padding-top: 1.05rem; border-top: 1px solid var(--line); }
.notes-k { font-family: var(--font-display); font-size: 1.15rem; color: var(--pop); line-height: 1; }
.notes h4 { font-family: var(--font-body); font-weight: 700; text-transform: none; font-size: 1.02rem; letter-spacing: 0; margin-bottom: 0.15rem; }
.notes p { color: var(--muted); font-size: 0.96rem; line-height: 1.55; }

/* ---------- Atelier ---------- */
.atelier { background: var(--bg-2); border-block: 1px solid var(--line); }
.atelier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.a-cell { position: relative; overflow: hidden; border-radius: var(--radius-md); border: 1px solid var(--line); background: #000; cursor: zoom-in; }
.a-cell img { width: 100%; height: 340px; object-fit: cover; transition: transform var(--t-slow); }
.a-cell:hover img { transform: scale(1.05); }
.a-cell figcaption {
  position: absolute; inset: auto 0 0 0; margin: 0;
  padding: 1.4rem 1rem 0.85rem; color: var(--text); font-weight: 600; font-size: 0.86rem;
  background: linear-gradient(to top, rgba(0,0,0,0.82), transparent);
}

/* ---------- Avis (note reelle + verbatim Google) ---------- */
.avis { border-top: 1px solid var(--line); }
.avis-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; margin-bottom: clamp(2rem, 4vw, 3rem); }
.avis-head h2 { font-size: clamp(2rem, 5vw, 3.4rem); margin-top: 0.6rem; }
.avis-score { text-align: right; }
.avis-note { font-family: var(--font-body); font-size: 1.1rem; margin-top: 0.55rem; color: var(--muted); }
.avis-note strong { font-family: var(--font-display); font-size: 1.7rem; color: var(--text); margin-right: 0.12em; }
.avis-note a { color: var(--text); border-bottom: 1px solid var(--pop); }
.avis-note a:hover { color: var(--pop); }

.avis-grid { columns: 2; column-gap: 1rem; }
.avis-card {
  break-inside: avoid; margin-bottom: 1rem;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: clamp(1.3rem, 2.5vw, 1.8rem);
}
.avis-card .stars { font-size: 0.82rem; }
.avis-card p { color: var(--text); font-size: 1.02rem; line-height: 1.6; margin: 0.85rem 0 1.1rem; }
.avis-card cite { font-style: normal; font-weight: 700; display: flex; flex-direction: column; line-height: 1.3; }
.avis-card cite span { font-weight: 400; font-size: 0.78rem; color: var(--muted); letter-spacing: 0.04em; margin-top: 0.15rem; }
.avis-feature p { font-size: 1.12rem; }
.avis-foot { text-align: center; color: var(--muted); margin-top: clamp(1.6rem, 3vw, 2.4rem); font-size: 0.98rem; }
.avis-foot a { color: var(--text); border-bottom: 1px solid var(--pop); }
.avis-foot a:hover { color: var(--pop); }
.contact-meta a { color: var(--text); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-info h2 { font-size: clamp(1.9rem, 4.4vw, 2.9rem); margin: 0.7rem 0 0.8rem; }
.contact-lede { color: var(--muted); margin-bottom: 1.3rem; }
.contact-tel { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 2.8rem); color: var(--text); display: inline-block; transition: color var(--t-fast); }
.contact-tel:hover { color: var(--pop); }
.contact-meta { margin-top: 1.6rem; display: grid; gap: 0.9rem; }
.contact-meta > div { display: grid; grid-template-columns: 8rem 1fr; gap: 1rem; padding-top: 0.9rem; border-top: 1px solid var(--line); font-size: 0.96rem; }
.contact-meta dt { color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.72rem; padding-top: 0.15rem; }
.contact-meta a { border-bottom: 1px solid var(--line-2); }
.contact-meta a:hover { border-color: var(--pop); color: var(--pop); }

.hours { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2rem); }
.hours h3 { font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.82rem; color: var(--muted); margin-bottom: 1rem; }
.hours-list { display: grid; gap: 0.15rem; }
.hours-list > div { display: flex; justify-content: space-between; gap: 1rem; padding: 0.5rem 0; border-bottom: 1px solid var(--line); font-size: 0.96rem; }
.hours-list > div:last-child { border-bottom: 0; }
.hours-list dt { color: var(--text); font-weight: 600; }
.hours-list dd { color: var(--text); font-variant-numeric: tabular-nums; }
.hours-list .is-closed dt, .hours-list .is-closed dd { color: var(--muted); }

/* ---------- Footer ---------- */
.foot { border-top: 1px solid var(--line); background: var(--bg-2); padding-block: 2.6rem; }
.foot-in { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.4rem; }
.foot-brand { display: inline-flex; align-items: center; gap: 0.75rem; }
.foot-brand .brand-mark { width: 32px; height: 32px; }
.foot-brand strong { display: block; font-family: var(--font-display); text-transform: uppercase; letter-spacing: 0.02em; }
.foot-brand span { font-size: 0.84rem; color: var(--muted); }
.foot-links { display: flex; flex-wrap: wrap; gap: 1.3rem; }
.foot-links a { color: var(--muted); font-size: 0.9rem; transition: color var(--t-fast); }
.foot-links a:hover { color: var(--text); }
.foot-cred { width: 100%; text-align: center; color: var(--muted); font-size: 0.8rem; padding-top: 1rem; border-top: 1px solid var(--line); }

/* ---------- FAB (bouton d'appel flottant) ---------- */
.fab {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 24;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--pop); color: var(--pop-ink);
  box-shadow: 0 12px 30px -8px rgba(241,44,157,0.55);
  transition: transform var(--t-fast);
}
.fab svg { width: 26px; height: 26px; }
.fab:hover { transform: scale(1.07); }
@media (min-width: 900px) { .fab { display: none; } }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 60; display: none; place-items: center; background: rgba(6,6,8,0.94); padding: 3.5rem 1rem; }
.lightbox.open { display: grid; }
.lb-img { max-width: min(94vw, 1100px); max-height: 86vh; width: auto; border-radius: 8px; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.9); }
.lb-close, .lb-nav { position: absolute; background: rgba(255,255,255,0.08); color: var(--text); border: 1px solid var(--line-2); border-radius: 50%; cursor: pointer; display: grid; place-items: center; transition: background var(--t-fast), transform var(--t-fast); }
.lb-close { top: 1rem; right: 1rem; width: 46px; height: 46px; font-size: 1.7rem; line-height: 1; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; line-height: 1; }
.lb-prev { left: 1rem; } .lb-next { right: 1rem; }
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,0.18); }
.lb-nav:hover { transform: translateY(-50%) scale(1.06); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal.is-in { opacity: 1; transform: none; }
:root:not(.js) .reveal { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-in { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-proof { gap: 0.5rem 1rem; }
  .artiste-grid { grid-template-columns: 1fr; }
  .artiste-photo { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .mosaic { grid-auto-rows: 190px; }
}
@media (max-width: 620px) {
  body { font-size: 1rem; }
  .facts-in { grid-template-columns: repeat(2, 1fr); }
  .fact:nth-child(3) { border-left: 0; }
  .fact:nth-child(odd) { border-left: 0; }
  .fact { border-top: 1px solid var(--line); }
  .fact:nth-child(1), .fact:nth-child(2) { border-top: 0; }
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .m-cell.m-wide { grid-column: span 2; }
  .atelier-grid { grid-template-columns: 1fr; }
  .a-cell img { height: 260px; }
  .avis-grid { columns: 1; }
  .avis-head { align-items: flex-start; }
  .avis-score { text-align: left; }
  .nav-tel-label { display: none; }
  .contact-meta > div { grid-template-columns: 1fr; gap: 0.15rem; }
  .lb-nav { width: 44px; height: 44px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .splat span { animation: none !important; opacity: 0.9; transform: scale(1); }
  .pitch-dot { animation: none; }
  .hero-scroll span::after { animation: none; }
  .m-cell img, .a-cell img { transition: none; }
}
