/* =========================================================
   Buns Burger : maquette bespoke (Timy Studio)
   DA "Nimes, minuit" derivee de LEURS vraies photos de facade :
   nuit violine sous les arcades en pierre, rose des balcons
   eclaires, jaune de leur "Passez votre commande par telephone",
   vert de la feuille de leur enseigne.
   ========================================================= */

:root {
  /* La nuit sous l'arcade */
  --color-bg:        #14111B;   /* ciel entre les arches */
  --color-bg-alt:    #1D1826;   /* bandes, sections secondaires */
  --color-surface:   #262032;   /* cartes, surfaces elevees */

  /* La pierre eclairee */
  --color-text:       #F4EFE7;
  --color-text-muted: #A79BB2;

  /* Leur enseigne, couleur par couleur */
  --color-accent:       #FFD23F;  /* le jaune du numero sur leur vitrine */
  --color-accent-hover: #FFE178;
  --color-glow:         #E8385F;  /* le rose des balcons eclaires (aplats, traits) */
  --color-glow-text:    #FF6B8A;  /* meme rose, monte en clarte : 5,8:1 sur les cartes (AA) */
  --color-glow-deep:    #C42348;  /* meme rose, descendu : blanc dessus passe a 5,7:1 (AA) */
  --color-leaf:         #5FBB48;  /* la feuille de leur logo */
  --color-ember:        #F0722A;  /* le pain du haut de leur enseigne (embleme SVG) */

  --color-border:   rgba(244, 239, 231, 0.12);
  --color-border-2: rgba(244, 239, 231, 0.22);
  --color-star:     #FFD23F;

  /* Deux polices, zero requete externe : signage + systeme */
  --font-display: 'Arial Black', 'Arial Bold', 'Helvetica Neue', Helvetica, sans-serif;
  --font-body:    system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --space-xs:  0.25rem;
  --space-sm:  0.5rem;
  --space-md:  1rem;
  --space-lg:  2rem;
  --space-xl:  4rem;
  --space-2xl: 8rem;

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-full: 9999px;

  --t-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --t-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ease:   cubic-bezier(0.22, 1, 0.36, 1);

  --wrap: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  /* Halo des neons dans la rue, tres bas en intensite */
  background-image:
    radial-gradient(90% 45% at 78% -8%, rgba(232, 56, 95, 0.16), transparent 62%),
    radial-gradient(70% 40% at -6% 8%, rgba(255, 210, 63, 0.07), transparent 58%);
  background-attachment: fixed;
  color: var(--color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 26px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

/* ---------- Elements de langage ---------- */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--color-glow);
  border-radius: 2px;
}

.sec-head { max-width: 720px; margin-bottom: var(--space-xl); }

.sec-head h2 {
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  margin: var(--space-md) 0;
}

.sec-head p {
  color: var(--color-text-muted);
  font-size: 1.06rem;
  max-width: 58ch;
}

/* Le trait neon sous les titres : rappel des enseignes de la rue */
.neon {
  color: var(--color-accent);
  position: relative;
  white-space: nowrap;
}

.neon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.1em;
  background: var(--color-glow);
  box-shadow: 0 0 14px rgba(232, 56, 95, 0.85);
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border: 0;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}

.btn-main {
  background: var(--color-accent);
  color: #17130A;
}

.btn-main:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 210, 63, 0.28);
}

.btn-ghost {
  background: rgba(244, 239, 231, 0.06);
  color: var(--color-text);
  border: 1px solid var(--color-border-2);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  background: rgba(244, 239, 231, 0.13);
  transform: translateY(-2px);
}

.btn .arr { transition: transform var(--t-fast); }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- Bandeau maquette ---------- */

.pitch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 18px;
  background: var(--color-glow-deep);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
}

.pitch-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  animation: blink 2.4s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.25; }
}

/* ---------- Navigation ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 17, 27, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}

.nav-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 9px rgba(240, 114, 42, 0.5));
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.16rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 30px;
  font-size: 0.92rem;
  font-weight: 500;
}

.nav-links a {
  text-decoration: none;
  color: var(--color-text-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(--color-accent);
  transition: width var(--t-base);
}

.nav-links a:hover { color: var(--color-text); }
.nav-links a:hover::after { width: 100%; }

.nav-tel {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.15;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-accent);
  transition: background var(--t-fast);
}

.nav-tel-label {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 700;
  transition: color var(--t-fast);
}

.nav-tel-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: color var(--t-fast);
}

.nav-tel:hover { background: var(--color-accent); }
.nav-tel:hover .nav-tel-label { color: #17130A; }
.nav-tel:hover .nav-tel-num { color: #17130A; }

/* ---------- Hero : leur facade, de nuit ---------- */

.hero {
  position: relative;
  min-height: min(94vh, 860px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--space-2xl) + 40px) 0 var(--space-xl);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Cadrage sur la bande eclairee : arcades et enseigne, pas le ciel noir */
  object-position: center 58%;
}

/* Voile qui laisse vivre les neons du haut et pose le texte en bas */
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(20, 17, 27, 0.97) 6%, rgba(20, 17, 27, 0.78) 38%, rgba(20, 17, 27, 0.34) 68%, rgba(20, 17, 27, 0.52) 100%),
    linear-gradient(to right, rgba(20, 17, 27, 0.62), transparent 62%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero h1 {
  font-size: clamp(2.6rem, 7.2vw, 5.4rem);
  margin: var(--space-md) 0 var(--space-lg);
  text-shadow: 0 4px 40px rgba(20, 17, 27, 0.75);
}

.hero-lede {
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  color: rgba(244, 239, 231, 0.9);
  max-width: 54ch;
  margin-bottom: var(--space-lg);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Pastille ouvert/ferme, calculee sur leurs vrais horaires */
.statut {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 17px 8px 14px;
  border-radius: var(--radius-full);
  background: rgba(20, 17, 27, 0.72);
  border: 1px solid var(--color-border-2);
  backdrop-filter: blur(8px);
  font-size: 0.87rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.statut-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-text-muted);
  flex-shrink: 0;
}

.statut[data-etat="ouvert"] .statut-dot {
  background: var(--color-leaf);
  animation: pulse 2.6s ease-out infinite;
}

.statut[data-etat="ferme"] .statut-dot { background: var(--color-glow); }

.statut-txt strong { color: var(--color-text); }
.statut-txt span   { color: var(--color-text-muted); font-weight: 500; }

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(95, 187, 72, 0.6); }
  70%  { box-shadow: 0 0 0 9px rgba(95, 187, 72, 0); }
  100% { box-shadow: 0 0 0 0 rgba(95, 187, 72, 0); }
}

/* ---------- Bande de faits ---------- */

.faits {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.faits-in {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
}

.fait {
  background: var(--color-bg-alt);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fait strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 9px;
}

.fait span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* ---------- Etoiles partielles (3,8 sur 5, honnete) ---------- */

.stars {
  position: relative;
  display: inline-block;
  line-height: 1;
  flex-shrink: 0;
}

.stars-bg,
.stars-fg {
  display: block;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.stars-bg { color: rgba(244, 239, 231, 0.22); }

.stars-fg {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: var(--color-star);
  /* 3,8 / 5 = 76% : leur note reelle, pas cinq etoiles pleines */
  width: 76%;
}

/* ---------- La carte ---------- */

.carte { padding: var(--space-2xl) 0; }

.carte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin-bottom: var(--space-lg);
}

.cat {
  position: relative;
  padding: 26px 22px 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, var(--color-surface), var(--color-bg-alt));
  overflow: hidden;
  transition: transform var(--t-base), border-color var(--t-base);
}

.cat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 70% at 50% 120%, rgba(232, 56, 95, 0.22), transparent 70%);
  opacity: 0;
  transition: opacity var(--t-base);
}

.cat:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-2);
}

.cat:hover::before { opacity: 1; }

.cat-k {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.74rem;
  color: var(--color-glow-text);
  letter-spacing: 0.06em;
}

.cat h3 {
  position: relative;
  font-size: 1.32rem;
  margin-top: 8px;
}

.carte-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 210, 63, 0.07);
  border: 1px dashed rgba(255, 210, 63, 0.35);
  color: var(--color-text-muted);
  font-size: 0.94rem;
}

.carte-note strong { color: var(--color-accent); font-weight: 700; }

/* ---------- Galerie : uniquement leurs vraies photos ---------- */

.galerie { padding: 0 0 var(--space-2xl); }

.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}

.m-cell {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  cursor: zoom-in;
  background: var(--color-surface);
}

.m-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.m-cell:hover img { transform: scale(1.05); }

.m-cell figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 16px 13px;
  background: linear-gradient(to top, rgba(20, 17, 27, 0.94), transparent);
  font-size: 0.82rem;
  font-weight: 600;
}

.m-tall { grid-row: span 2; }
.m-wide { grid-column: span 2; }

/* ---------- La salle ---------- */

.salle {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: var(--space-2xl) 0;
}

.salle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.salle-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.salle-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.salle-text h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  margin: var(--space-md) 0;
}

.salle-text > p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: var(--space-lg);
}

.atouts {
  list-style: none;
  display: grid;
  gap: 12px;
}

.atouts li {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px 17px;
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  font-size: 0.95rem;
}

.atouts svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--color-leaf);
}

.atouts strong { display: block; }
.atouts small { color: var(--color-text-muted); font-size: 0.86rem; }

/* ---------- Avis ---------- */

.avis { padding: var(--space-2xl) 0; }

.avis-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.avis-head h2 { font-size: clamp(1.8rem, 3.8vw, 2.7rem); margin-top: var(--space-md); }

.note-bloc {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.note-chiffre {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.note-detail { font-size: 1.15rem; }

.note-detail a {
  display: block;
  font-size: 0.84rem;
  color: var(--color-text-muted);
  margin-top: 3px;
  text-decoration: none;
  border-bottom: 1px solid var(--color-border-2);
  width: fit-content;
  transition: color var(--t-fast);
}

.note-detail a:hover { color: var(--color-accent); }

.avis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.avis-grid blockquote {
  padding: 30px 26px;
  border-radius: var(--radius-md);
  background: linear-gradient(165deg, var(--color-surface), var(--color-bg-alt));
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.avis-note {
  color: var(--color-star);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}

.avis-grid p {
  font-size: 1rem;
  line-height: 1.6;
  flex-grow: 1;
}

.avis-grid cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.92rem;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.avis-grid cite span {
  display: block;
  font-weight: 500;
  font-size: 0.79rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* ---------- Venir ---------- */

.venir {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: var(--space-2xl) 0;
}

.venir-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.venir-text h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin: var(--space-md) 0; }

.venir-lede {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: var(--space-lg);
}

.tel-geant {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  letter-spacing: -0.02em;
  color: var(--color-accent);
  text-decoration: none;
  margin-bottom: var(--space-lg);
  transition: transform var(--t-fast);
}

.tel-geant svg { width: 26px; height: 26px; flex-shrink: 0; }
.tel-geant:hover { transform: translateX(4px); }

.coords {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.coords div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

.coords dt {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-weight: 700;
  padding-top: 3px;
}

.coords dd { font-size: 1rem; }

.gmaps {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.94rem;
  text-decoration: none;
  color: var(--color-accent);
  border-bottom: 1px solid rgba(255, 210, 63, 0.4);
  padding-bottom: 2px;
  transition: gap var(--t-fast);
}

.gmaps:hover { gap: 12px; }

/* Horaires : leurs vraies plages, le jour courant surligne en JS */
.horaires {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  padding: 30px 28px;
  align-self: start;
}

.horaires h3 {
  font-size: 1.15rem;
  margin-bottom: var(--space-lg);
}

.h-list { list-style: none; display: grid; gap: 2px; }

.h-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 11px 13px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  border: 1px solid transparent;
}

.h-list li span:first-child { color: var(--color-text-muted); }
.h-list li span:last-child  { font-variant-numeric: tabular-nums; font-weight: 600; }

.h-list li.is-today {
  background: rgba(255, 210, 63, 0.11);
  border-color: rgba(255, 210, 63, 0.3);
}

.h-list li.is-today span:first-child { color: var(--color-accent); font-weight: 700; }

/* ---------- Pied de page ---------- */

.foot {
  border-top: 1px solid var(--color-border);
  padding: var(--space-xl) 0;
  background: var(--color-bg);
}

.foot-in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.foot-brand { display: flex; align-items: center; gap: 12px; }
.foot-brand strong { display: block; font-family: var(--font-display); text-transform: uppercase; }
.foot-brand span { font-size: 0.83rem; color: var(--color-text-muted); }

.foot-links { display: flex; gap: 24px; font-size: 0.9rem; }
.foot-links a { color: var(--color-text-muted); text-decoration: none; transition: color var(--t-fast); }
.foot-links a:hover { color: var(--color-text); }

.foot-cred { font-size: 0.82rem; color: var(--color-text-muted); }

/* ---------- Lightbox ---------- */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(12, 10, 16, 0.96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 34px;
}

.lightbox.on { display: flex; }

.lb-img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.lb-close,
.lb-nav {
  position: absolute;
  background: rgba(244, 239, 231, 0.1);
  border: 1px solid var(--color-border-2);
  color: var(--color-text);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--t-fast);
}

.lb-close:hover, .lb-nav:hover { background: rgba(244, 239, 231, 0.24); }

.lb-close { top: 24px; right: 24px; }
.lb-prev  { left: 24px; }
.lb-next  { right: 24px; }

/* ---------- Reveal (JS uniquement, sinon tout reste visible) ---------- */

.js .reveal { opacity: 0; transform: translateY(26px); }

/* ---------- Responsive ---------- */

@media (max-width: 1000px) {
  .nav-links { display: none; }
  .faits-in { grid-template-columns: repeat(2, 1fr); }
  .salle-grid, .venir-grid { grid-template-columns: 1fr; gap: 44px; }
  .avis-grid { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: repeat(2, 1fr); }
  .m-tall { grid-row: span 1; }
  .salle-photo img { aspect-ratio: 4 / 3; }
}

@media (max-width: 560px) {
  :root { --space-2xl: 4.5rem; --space-xl: 2.6rem; }
  .wrap { padding: 0 20px; }
  .nav-tel-label { display: none; }
  .hero { min-height: auto; padding-top: calc(var(--space-2xl) + 90px); }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .faits-in { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .m-wide { grid-column: span 1; }
  .coords div { grid-template-columns: 1fr; gap: 3px; }
  .foot-in { flex-direction: column; align-items: flex-start; }
}

/* ---------- Mouvement reduit : on coupe tout ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}
