/* Mano — site public. Mêmes tokens que l'application (DA figée). */

:root {
  --ink: #141210;
  --paper: #FCF8F3;
  --paper-2: #F7F2EA;
  --card: #FFFFFF;
  --terra: #C75B39;
  --terra-dark: #A84A2D;
  --peach: #F7E8DC;
  --apricot: #E8A87C;
  --green: #2E7D5B;
  --muted: #6B655E;
  --gray: #8A8580;
  --border: #E8E3DC;
  --night: #211E29;
  --night-2: #2C2839;
  --ease: cubic-bezier(.22, .8, .3, 1);
  --wrap: 1140px;
  --r: 22px;
  --shadow: 0 4px 28px rgba(20, 18, 16, .06);
  --shadow-lg: 0 18px 60px rgba(20, 18, 16, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
/* Les ancres du menu s'arrêtent sous la barre fixe, jamais derrière */
section[id] { scroll-margin-top: 84px; }
::selection { background: var(--peach); color: var(--ink); }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px; line-height: 1.55; -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.02em; font-weight: 700; }
h1 { font-size: clamp(38px, 6.2vw, 66px); }
h2 { font-size: clamp(29px, 4.2vw, 45px); letter-spacing: -.025em; }
/* Interlignage plus ouvert sur les petits titres : à 1.08 un titre sur deux lignes se colle.
   22 px : l'échelon qui manquait entre les h2 (45) et le corps (17) — sans lui, un titre
   de carte ressemble à du texte en gras. */
h3 { font-size: 22px; letter-spacing: -.015em; line-height: 1.22; }
p { margin: 0; }
em { font-style: normal; color: var(--terra); }
.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }

.skip {
  position: absolute; left: -9999px; top: 8px; background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: 12px; z-index: 100;
}
.skip:focus { left: 16px; }

/* Navigation au clavier : un anneau visible sur tous les fonds, y compris les sections sombres */
:focus-visible { outline: 3px solid var(--terra); outline-offset: 3px; border-radius: 6px; }
.sec-dark :focus-visible, .foot :focus-visible { outline-color: var(--apricot); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 56px; padding: 0 26px; border-radius: 100px; font-size: 17px; font-weight: 600;
  text-decoration: none; white-space: nowrap; border: 1.5px solid transparent;
  transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
}
.btn:active { transform: scale(.97); }
.btn-sm { height: 44px; padding: 0 20px; font-size: 15.5px; }
.btn-primary { background: var(--terra); color: #fff; box-shadow: 0 6px 22px rgba(199, 91, 57, .28); }
.btn-primary:hover { background: var(--terra-dark); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(199, 91, 57, .36); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-light:hover, .btn-ghost-light:hover { transform: translateY(-2px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .3); }
.btn-ghost-light:hover { background: rgba(255, 255, 255, .08); }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50; padding: 14px 0;
  background: rgba(252, 248, 243, .82); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s var(--ease);
}
.nav.stuck { border-bottom-color: var(--border); }
.nav-in { display: flex; align-items: center; gap: 28px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 21px; text-decoration: none; letter-spacing: -.02em; }
.nav-links { display: flex; gap: 26px; margin-left: auto; font-size: 16px; font-weight: 500; }
.nav-links a {
  text-decoration: none; color: var(--muted); padding-bottom: 3px;
  background: linear-gradient(var(--terra), var(--terra)) left bottom / 0 2px no-repeat;
  transition: color .18s var(--ease), background-size .25s var(--ease);
}
.nav-links a:hover { color: var(--ink); background-size: 100% 2px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(40px, 7vw, 82px) 0 clamp(56px, 8vw, 104px); overflow: hidden; }
.hero-in { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(24px, 5vw, 64px); align-items: center; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--terra); margin-bottom: 18px;
}
.eyebrow.light { color: var(--apricot); }
.hero h1 { margin-bottom: 22px; }
.lead { font-size: clamp(17px, 2vw, 19.5px); color: var(--muted); max-width: 34em; }
.hero .lead strong { color: var(--ink); font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.trust {
  display: flex; flex-wrap: wrap; gap: 8px 22px; list-style: none; padding: 0;
  margin: 26px 0 0; font-size: 14.5px; font-weight: 500; color: var(--gray);
}
.trust li { display: flex; align-items: center; gap: 8px; }
.trust li::before { content: ''; width: 6px; height: 6px; border-radius: 100px; background: var(--green); }

/* Maquette de téléphone (pas une capture : toujours à jour, ultra légère) */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: flex-end; }
.phone-mock {
  width: min(280px, 74%); aspect-ratio: 9 / 18.4; border-radius: 40px; padding: 9px;
  background: linear-gradient(160deg, #2A2622, #141210); box-shadow: var(--shadow-lg);
  transform: rotate(-3deg); position: relative; z-index: 1;
}
.pm-screen { position: relative; width: 100%; height: 100%; border-radius: 32px; overflow: hidden; background: var(--paper); display: flex; flex-direction: column; }

.pm-map { position: relative; flex: 1; min-height: 0; }
.pm-map svg { width: 100%; height: 100%; }
.pm-mk {
  position: absolute; width: 30px; height: 30px; border-radius: 100px; background: var(--green);
  box-shadow: 0 3px 12px rgba(20, 18, 16, .22); border: 2.5px solid #fff;
}
.pm-mk::after {
  content: ''; position: absolute; inset: -2.5px; border-radius: 100px;
  background: inherit; opacity: .45; animation: pulse 2.4s ease-out infinite;
}
.pm-mk::before {
  content: ''; position: absolute; inset: 0; z-index: 2; background: #fff;
  -webkit-mask: var(--icon) center / 15px 15px no-repeat; mask: var(--icon) center / 15px 15px no-repeat;
}
.pm-mk.c::before { -webkit-mask-size: 13px 13px; mask-size: 13px 13px; }
.pm-mk.a { left: 22%; top: 34%; }
.pm-mk.b { left: 58%; top: 46%; background: var(--terra); }
.pm-mk.b::after { animation-delay: .8s; }
.pm-mk.c { left: 38%; top: 62%; width: 25px; height: 25px; background: #D68C2A; }
.pm-mk.c::after { animation-delay: 1.5s; }
@keyframes pulse { 0% { transform: scale(1); opacity: .45; } 70% { transform: scale(2.2); opacity: 0; } 100% { opacity: 0; } }
.pm-pill {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%); white-space: nowrap;
  background: #fff; border-radius: 100px; padding: 7px 13px; font-size: 11px; font-weight: 500;
  box-shadow: var(--shadow);
}
.pm-sheet {
  background: #fff; border-radius: 22px 22px 0 0; margin-top: -18px; padding: 9px 14px 16px;
  box-shadow: 0 -6px 24px rgba(20, 18, 16, .08); position: relative;
}
.pm-grab { display: block; width: 36px; height: 4px; border-radius: 100px; background: var(--border); margin: 0 auto 12px; }
.pm-title { display: block; font-size: 14px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 11px; }
.pm-card { display: flex; align-items: center; gap: 9px; background: var(--paper-2); border-radius: 13px; padding: 9px; margin-bottom: 7px; }
.pm-ic { flex: none; width: 32px; height: 32px; border-radius: 10px; background: var(--apricot); position: relative; }
.pm-ic.pale { background: var(--peach); }
.pm-ic::after {
  content: ''; position: absolute; inset: 0; background: #B04D2C;
  -webkit-mask: var(--icon) center / 17px 17px no-repeat; mask: var(--icon) center / 17px 17px no-repeat;
}
.pm-tx { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.pm-tx b { font-size: 12.5px; }
.pm-tx .ok { font-size: 11px; color: var(--green); font-weight: 600; }

/* Les rendus du castor ont un fond opaque calé sur la couleur de leur section
   (jamais de détourage sale) : donc aucune ombre portée, elle dessinerait le rectangle.
   Ancré au bas de la section : les mains reposent exactement sur la bordure de la
   section suivante — la mascotte s'y accoude. */
.hero-castor {
  position: absolute; right: max(2vw, calc(50% - var(--wrap) / 2 - 40px)); bottom: 0;
  width: clamp(230px, 27vw, 340px); z-index: 0; pointer-events: none;
}

/* ---------- Sections ----------
   Rythme vertical en trois familles : respiration (temps forts), contenu (défaut),
   enchaînée (deux blocs qui se répondent). Un titre reste toujours nettement plus
   proche de son contenu que de la section précédente. */
.sec { padding: clamp(56px, 7.5vw, 96px) 0; }
.sec-breathe { padding-top: clamp(84px, 11vw, 144px); padding-bottom: clamp(84px, 11vw, 144px); }
.sec-chained { padding-top: clamp(32px, 4.5vw, 56px); }
.sec h2 { max-width: 20ch; }
.sec-lead { font-size: clamp(17px, 2vw, 19px); color: var(--muted); max-width: 60ch; margin-top: 18px; }
.sec-problem { background: var(--paper-2); }
.note { font-size: 15px; color: var(--gray); margin-top: 18px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 34px; }
.card {
  background: var(--card); border-radius: var(--r); padding: 26px 24px 28px;
  box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 10px;
  border: 1px solid rgba(20, 18, 16, .05);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(20, 18, 16, .09); }
.card-num { font-size: 13px; font-weight: 700; color: var(--apricot); letter-spacing: .08em; }
.card p { color: var(--muted); font-size: 16px; }
.card .link {
  margin-top: auto; padding-top: 10px; font-weight: 600; color: var(--terra);
  text-decoration: none; font-size: 16px; align-self: flex-start; padding-bottom: 2px;
  background: linear-gradient(currentColor, currentColor) left bottom / 0 1.5px no-repeat;
  transition: color .2s var(--ease), background-size .25s var(--ease);
}
.card .link:hover { color: var(--terra-dark); background-size: 100% 1.5px; }

/* Les 4 besoins */
.needs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; }
.need {
  background: var(--card); border-radius: var(--r); padding: 24px 22px 26px; box-shadow: var(--shadow);
  border: 1px solid rgba(20, 18, 16, .05);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.need:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(20, 18, 16, .09); }
.need h3 { margin: 16px 0 8px; }
.need p { color: var(--muted); font-size: 15.5px; }
/* Icônes de l'application, reprises telles quelles et posées en masque :
   la couleur et la taille sont décidées par l'élément qui les porte. */
.ic-bowl { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M3 9h14a7 7 0 0 1-14 0Z'/%3E%3Crect x='2' y='6.6' width='16' height='1.8' rx='.9'/%3E%3C/svg%3E"); }
.ic-drop { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 1c4 5.5 6.5 8.5 6.5 11.5a6.5 6.5 0 0 1-13 0C3.5 9.5 6 6.5 10 1Z'/%3E%3C/svg%3E"); }
.ic-moon { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M15.5 12.7A7.3 7.3 0 1 1 7.3 4.5a5.9 5.9 0 0 0 8.2 8.2Z'/%3E%3C/svg%3E"); }
.ic-bench { --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5 8.5V6a3 3 0 0 1 3-3h4a3 3 0 0 1 3 3v2.5a3.2 3.2 0 0 0-1.8 2v.8H6.8v-.8A3.2 3.2 0 0 0 5 8.5Z'/%3E%3Cpath d='M3 9a2 2 0 0 1 2 2v1.2h10V11a2 2 0 0 1 4 0v4a2 2 0 0 1-2 2H3a2 2 0 0 1-2-2v-4a2 2 0 0 1 2-2Z'/%3E%3C/svg%3E"); }

.need-ic { display: block; width: 48px; height: 48px; border-radius: 15px; background: var(--peach); position: relative; }
.need-ic::after {
  content: ''; position: absolute; inset: 0; background: var(--terra);
  -webkit-mask: var(--icon) center / 24px 24px no-repeat; mask: var(--icon) center / 24px 24px no-repeat;
}

/* Blocs texte + image */
.split { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(24px, 5vw, 64px); align-items: center; margin-top: 56px; }
.sec-droits .split { margin-top: 0; }
.split.reverse .split-img { order: -1; }
.split-txt h3 { font-size: clamp(23px, 2.6vw, 30px); margin-bottom: 16px; }
.split-txt p { color: var(--muted); }
.split-img img { margin-inline: auto; }
.ticks { list-style: none; padding: 0; margin: 24px 0 0; display: flex; flex-direction: column; gap: 13px; }
.ticks li { position: relative; padding-left: 32px; color: var(--muted); font-size: 16.5px; }
.ticks li::before {
  content: ''; position: absolute; left: 0; top: 3px; width: 21px; height: 21px; border-radius: 100px;
  background: var(--peach) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23C75B39' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 10.5 8 13.5 15 6.5'/%3E%3C/svg%3E") center / 13px no-repeat;
}

/* Section sombre */
.sec-dark { background: var(--night); color: #fff; }
.on-dark { color: #fff; }
.sec-dark .sec-lead { color: rgba(255, 255, 255, .68); }
.card.dark { background: var(--night-2); box-shadow: none; border: 1px solid rgba(255, 255, 255, .07); }
.card.dark:hover { box-shadow: 0 16px 44px rgba(0, 0, 0, .32); border-color: rgba(255, 255, 255, .15); }
.card.dark p { color: rgba(255, 255, 255, .66); }
.dark-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

/* Observatoire */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 36px; }
.stat { background: var(--peach); border-radius: var(--r); padding: 26px 22px; }
/* Chiffres tabulaires : sans eux, les compteurs animés sautillent en largeur */
.stat b { display: block; font-size: clamp(34px, 4.6vw, 48px); font-weight: 700; letter-spacing: -.03em; color: var(--terra-dark); line-height: 1; font-variant-numeric: tabular-nums; }
.stat span { display: block; margin-top: 10px; font-size: 15px; color: var(--muted); }
.obs-note { margin-top: 26px; padding: 24px 26px; border-radius: var(--r); border: 1px dashed var(--border); }
/* Sans limite, cette ligne atteignait 132 caractères : l'œil perd le début de la ligne suivante */
.obs-note p { color: var(--muted); font-size: 16.5px; max-width: 68ch; }

/* Ouvrir */
.sec-open { background: var(--paper-2); }
.open-in { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(20px, 4vw, 56px); align-items: center; }
.open-castor { width: min(280px, 100%); margin-inline: auto; }

/* ---------- Pied de page (4 colonnes : marque · produit · participer · contact) ---------- */
.foot { background: var(--night); color: rgba(255, 255, 255, .7); padding: 64px 0 36px; }
.foot-grid { display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr 1fr; gap: 34px; }
.foot-brand p { line-height: 1.4; }
.foot-name { color: #fff; font-weight: 700; font-size: 21px; letter-spacing: -.02em; margin-top: 16px; }
.foot-tag { color: rgba(255, 255, 255, .75); font-weight: 500; margin-top: 6px; }
.foot-place { color: rgba(255, 255, 255, .45); font-size: 14.5px; margin-top: 18px; }
.foot-col { display: flex; flex-direction: column; align-items: flex-start; }
.foot-h {
  font-size: 12.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--apricot); margin-bottom: 14px;
}
.foot-col a {
  color: rgba(255, 255, 255, .74); text-decoration: none; font-size: 15.5px;
  padding: 6px 0; /* cible tactile confortable sans écarter visuellement les lignes */
  background: linear-gradient(#fff, #fff) left calc(100% - 4px) / 0 1.5px no-repeat;
  transition: color .18s var(--ease), background-size .25s var(--ease);
}
.foot-col a:hover { color: #fff; background-size: 100% 1.5px; }
.foot-bottom {
  display: flex; justify-content: space-between; gap: 10px 28px; flex-wrap: wrap;
  margin-top: 52px; padding-top: 22px; border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: 13.5px; color: rgba(255, 255, 255, .45);
}
@media (max-width: 940px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .foot-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; }
  .foot-col a { padding: 9px 0; }
}

/* ---------- Pages intérieures (vague 2) ---------- */
.page-hero { padding: clamp(44px, 6vw, 76px) 0 clamp(28px, 4vw, 44px); }
.page-hero h1 { font-size: clamp(34px, 5vw, 54px); max-width: 18ch; }
.page-hero .lead { margin-top: 18px; }

.prose { max-width: 70ch; }
.prose h2 { font-size: clamp(24px, 3vw, 32px); margin: 44px 0 14px; }
.prose h3 { font-size: 20px; margin: 30px 0 10px; }
.prose p { color: var(--muted); margin: 0 0 16px; }
.prose strong { color: var(--ink); }
.prose ul { color: var(--muted); padding-left: 22px; margin: 0 0 16px; display: flex; flex-direction: column; gap: 8px; }
.prose pre {
  background: var(--night); color: #EDE7DD; border-radius: 16px; padding: 18px 20px;
  overflow-x: auto; font-size: 13.5px; line-height: 1.65; margin: 18px 0;
}
.prose blockquote {
  margin: 22px 0; padding: 16px 20px; border-left: 3px solid var(--apricot);
  background: var(--peach); border-radius: 0 16px 16px 0; color: var(--ink); font-weight: 500;
}

/* Journal */
.article { padding: 34px 0; border-top: 1px solid var(--border); }
.article:first-of-type { border-top: 0; padding-top: 10px; }
.art-date { font-size: 13.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--terra); }
.article h2 { font-size: clamp(25px, 3.4vw, 36px); margin: 10px 0 16px; max-width: 24ch; }

/* FAQ */
.faq-group { margin-top: 40px; }
.faq-group > .d-label { font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--terra); }
.faq { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.faq details {
  background: var(--card); border: 1px solid rgba(20, 18, 16, .05); border-radius: 18px;
  box-shadow: var(--shadow); overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; gap: 14px;
  padding: 18px 20px; font-weight: 600; font-size: 17px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; margin-left: auto; flex: none; width: 22px; height: 22px; border-radius: 100px;
  background: var(--peach) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23C75B39' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M10 5v10M5 10h10'/%3E%3C/svg%3E") center / 12px no-repeat;
  transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 20px 20px; margin: 0; color: var(--muted); max-width: 62ch; }

/* Ressources et presse */
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; }
.res-card {
  background: var(--card); border: 1px solid rgba(20, 18, 16, .05); border-radius: var(--r);
  box-shadow: var(--shadow); padding: 22px 20px; display: flex; flex-direction: column; gap: 8px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.res-card:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(20, 18, 16, .09); }
.res-card h3 { font-size: 18px; }
.res-card p { color: var(--muted); font-size: 15px; flex: 1; }
.badge { align-self: flex-start; font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; padding: 5px 10px; border-radius: 100px; }
.badge.ok { background: #E7F0E9; color: var(--green); }
.badge.soon { background: var(--chipbg, #F1EDE6); color: var(--gray); }
.dl {
  display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 15px;
  color: var(--terra); text-decoration: none; padding-bottom: 2px; align-self: flex-start;
  background: linear-gradient(currentColor, currentColor) left bottom / 0 1.5px no-repeat;
  transition: background-size .25s var(--ease);
}
.dl:hover { background-size: 100% 1.5px; }
.press-figs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 30px 0 6px; }
.press-fig { background: var(--peach); border-radius: 18px; padding: 18px; }
.press-fig b { display: block; font-size: 27px; letter-spacing: -.02em; color: var(--terra-dark); }
.press-fig span { font-size: 13.5px; color: var(--muted); }
.asset-thumb {
  height: 92px; border-radius: 14px; background: var(--paper-2); display: flex;
  align-items: center; justify-content: center; margin-bottom: 4px; border: 1px solid var(--border);
}
.asset-thumb.dark { background: var(--night); }
.asset-thumb img { max-height: 56px; width: auto; }

/* Villes */
.villes-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 60px); align-items: center; margin-top: 30px; }
.fr-map { position: relative; }
.fr-map svg { width: 100%; height: auto; display: block; }
.city-dot { position: absolute; width: 16px; height: 16px; border-radius: 100px; background: var(--terra); border: 3px solid #fff; box-shadow: 0 2px 10px rgba(20, 18, 16, .25); }
.city-dot::after { content: ''; position: absolute; inset: -3px; border-radius: 100px; background: var(--terra); opacity: .4; animation: pulse 2.4s ease-out infinite; }
.city-label { position: absolute; font-size: 13.5px; font-weight: 700; color: var(--ink); transform: translate(-50%, 10px); }

@media (max-width: 940px) {
  .res-grid { grid-template-columns: repeat(2, 1fr); }
  .press-figs { grid-template-columns: repeat(2, 1fr); }
  .villes-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 560px) { .res-grid { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .res-card:hover { transform: none; } .city-dot::after { animation: none; } }

/* ---------- Apparition au défilement ---------- */
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

/* ---------- Adaptation ---------- */
@media (max-width: 940px) {
  .hero-in, .split, .open-in { grid-template-columns: 1fr; }
  .split.reverse .split-img { order: 0; }
  .split-img { max-width: 380px; }
  .grid-3, .needs, .stats { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .hero-visual { margin-top: 34px; }
  .hero-castor { right: 2vw; width: clamp(180px, 34vw, 260px); }
}
@media (max-width: 560px) {
  body { font-size: 16.5px; }
  .grid-3, .needs, .stats { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .btn-sm { width: auto; }
  .hero-cta, .dark-cta { flex-direction: column; align-items: stretch; }
  .phone-mock { width: min(250px, 64%); margin-left: -14%; }
  .hero-castor { width: 44%; right: -2%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .pm-mk::after { animation: none; opacity: 0; }
  .card:hover, .need:hover, .btn:hover { transform: none; }
}
