/* ============================================================
   MOSL Habitat — Design system
   Jeune & sérieux · mobile-first · prêt pour la vidéo
   Palette : encre navy profond + accent vert "propre/sain"
   ============================================================ */

:root {
  /* Couleurs */
  --ink:        #0B1322;   /* fond sombre premium (cohérent logo navy) */
  --ink-2:      #111c30;
  --navy:       #16285C;   /* couleur marque (logo) */
  --paper:      #F7F8F5;   /* clair chaud */
  --paper-2:    #EDEFF4;
  --white:      #FFFFFF;
  --text:       #131A28;
  --muted:      #61708A;
  --line:       #E3E7EF;
  --line-dk:    rgba(255,255,255,.12);
  --accent:     #12D483;   /* vert frais — le souffle jeune */
  --accent-dk:  #0BB36E;
  --accent-ink: #04321F;   /* texte sur accent */
  --warm:       #FFB020;   /* touche chaude : rappels saison */
  --danger:     #E5484D;

  /* Typo */
  --font-display: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Mesures */
  --container: 1180px;
  --header-h: 64px;
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(11,19,34,.06);
  --shadow:    0 14px 40px rgba(11,19,34,.12);
  --shadow-lg: 0 30px 70px rgba(11,19,34,.22);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

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

body.nav-open { overflow: hidden; }

img, video { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
h2 { font-size: clamp(1.7rem, 5.5vw, 2.5rem); }

p { margin: 0; }

:focus-visible {
  outline: 3px solid rgba(18,212,131,.55);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: min(100% - 36px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 2000;
  padding: 10px 14px; border-radius: var(--r-sm);
  background: var(--ink); color: #fff; font-weight: 600;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Utilitaires ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: .8rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent-dk);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; border-radius: 2px;
  background: var(--accent);
}
.on-dark .eyebrow { color: var(--accent); }

.section { padding: 64px 0; }
.section-head { max-width: 640px; margin-bottom: 32px; }
.section-head h2 {
  margin-top: 12px;
  font-size: clamp(1.85rem, 7vw, 3rem);
}
.section-head p { margin-top: 14px; color: var(--muted); font-size: 1.05rem; }
.on-dark .section-head p { color: rgba(255,255,255,.72); }

.lead { font-size: 1.12rem; color: var(--muted); }

/* ---------- Boutons ---------- */
.btn {
  --bg: var(--accent); --fg: var(--accent-ink);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 50px; padding: 13px 22px;
  border: 0; border-radius: 999px;
  background: var(--bg); color: var(--fg);
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
  box-shadow: 0 8px 22px rgba(18,212,131,.35);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(18,212,131,.45); }
.btn:active { transform: translateY(0); }
.btn svg { width: 20px; height: 20px; }

.btn-ghost {
  --bg: transparent; --fg: var(--text);
  border: 1.5px solid var(--line); box-shadow: none;
}
.btn-ghost:hover { background: var(--white); box-shadow: var(--shadow-sm); }
.on-dark .btn-ghost { --fg: #fff; border-color: rgba(255,255,255,.28); }
.on-dark .btn-ghost:hover { background: rgba(255,255,255,.08); }

.btn-dark { --bg: var(--ink); --fg: #fff; box-shadow: 0 8px 22px rgba(11,19,34,.25); }
.btn-dark:hover { box-shadow: 0 14px 30px rgba(11,19,34,.35); }

.btn-wa { --bg: #25D366; --fg: #04210f; box-shadow: 0 8px 22px rgba(37,211,102,.4); }
.btn-block { width: 100%; white-space: normal; }
.btn-sm { min-height: 42px; padding: 9px 16px; font-size: .92rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 1000;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(247,248,245,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(11,19,34,.06);
}
.header-inner { display: flex; align-items: center; gap: 14px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.brand img { height: 42px; width: auto; border-radius: 10px; }
.brand-name { display: none; font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; letter-spacing: -.02em; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.nav-list { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.nav-list a {
  display: inline-flex; padding: 9px 13px; border-radius: 999px;
  font-weight: 600; font-size: .95rem; color: var(--text);
  transition: background .15s, color .15s;
}
.nav-list a:hover, .nav-list a.active { background: rgba(11,19,34,.06); color: var(--ink); }
.header-cta { margin-left: 8px; }

.burger {
  margin-left: auto;
  display: none; width: 46px; height: 46px;
  border: 1px solid var(--line); border-radius: 12px;
  background: var(--white); cursor: pointer;
  position: relative; flex: 0 0 auto;
}
.burger span, .burger::before, .burger::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 20px; height: 2px; border-radius: 2px; background: var(--ink);
  transform: translate(-50%,-50%);
  transition: transform .25s var(--ease), opacity .2s;
}
.burger::before { margin-top: -6px; }
.burger::after  { margin-top: 6px; }
.burger[aria-expanded="true"] span { opacity: 0; }
.burger[aria-expanded="true"]::before { margin-top: 0; transform: translate(-50%,-50%) rotate(45deg); }
.burger[aria-expanded="true"]::after  { margin-top: 0; transform: translate(-50%,-50%) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; isolation: isolate;
  padding: calc(var(--header-h) + 38px) 0 46px;
  color: #fff; overflow: hidden;
  background: var(--ink);
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(11,19,34,.55) 0%, rgba(11,19,34,.78) 60%, rgba(11,19,34,.94) 100%),
    radial-gradient(120% 80% at 80% 0%, rgba(18,212,131,.22), transparent 55%);
}
.hero-inner { position: relative; max-width: 720px; }
.hero .badge-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16);
  font-size: .82rem; font-weight: 600; backdrop-filter: blur(6px);
}
.badge svg { width: 15px; height: 15px; color: var(--accent); }
.hero h1 {
  font-size: clamp(2.3rem, 9.5vw, 4.4rem); font-weight: 800;
  letter-spacing: -.03em;
}
.hero h1 .hl { color: var(--accent); }
.hero-sub { margin: 18px 0 26px; font-size: clamp(1.05rem, 4vw, 1.3rem); color: rgba(255,255,255,.82); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
/* Bouton secondaire lisible sur la photo du hero (scrim sombre flouté) */
.hero .btn-ghost {
  color: #fff;
  background: rgba(11,19,34,.5);
  border-color: rgba(255,255,255,.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 22px rgba(0,0,0,.28);
}
.hero .btn-ghost:hover { background: rgba(11,19,34,.68); border-color: #fff; }
.hero-proof {
  display: flex; flex-wrap: wrap; gap: 18px 26px; margin-top: 30px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14);
}
.hero-proof .stat { display: grid; }
.hero-proof .stat b { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; }
.hero-proof .stat span { font-size: .82rem; color: rgba(255,255,255,.66); }

/* ---------- Bandeau confiance (marquee) ---------- */
.trustbar { background: var(--ink-2); color: #fff; padding: 16px 0; overflow: hidden; }
.trust-track {
  display: flex; gap: 36px; align-items: center;
  white-space: nowrap; animation: marquee 26s linear infinite;
}
.trustbar:hover .trust-track { animation-play-state: paused; }
.trust-item { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: .95rem; color: rgba(255,255,255,.9); }
.trust-item svg { width: 18px; height: 18px; color: var(--accent); flex: 0 0 auto; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.svc {
  position: relative; display: grid; gap: 12px;
  padding: 22px; border-radius: var(--r);
  background: var(--white); border: 1px solid var(--line);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
  overflow: hidden;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.svc-ic {
  width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: 14px; background: rgba(18,212,131,.12); color: var(--accent-dk);
}
.svc-ic svg { width: 28px; height: 28px; }
.svc h3 { font-size: 1.2rem; }
.svc p { color: var(--muted); font-size: .96rem; }
.svc .svc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 4px; }
.svc .price-tag { font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: .92rem; }
.svc .price-tag b { color: var(--accent-dk); }
.svc-arrow { color: var(--accent-dk); font-weight: 700; font-size: .9rem; display: inline-flex; gap: 5px; }

/* ---------- Vidéo / TikTok ---------- */
.video-sec { background: var(--ink); color: #fff; }
.video-sec .section-head { max-width: 720px; }
.vid-rail {
  display: flex; gap: 16px; overflow-x: auto; padding: 4px 2px 20px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.vid-rail::-webkit-scrollbar { display: none; }
.vid-card {
  position: relative; flex: 0 0 auto;
  width: min(74vw, 260px); aspect-ratio: 9 / 16;
  border-radius: var(--r-lg); overflow: hidden;
  scroll-snap-align: center;
  background: linear-gradient(160deg, #1b2942, #0d1424);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
}
.vid-card video, .vid-card img, .vid-card iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border: 0;
}
.vid-card .vid-ph {
  position: absolute; inset: 0; display: grid; place-items: center; gap: 10px;
  text-align: center; padding: 18px; color: rgba(255,255,255,.62);
}
.vid-card .vid-ph svg { width: 40px; height: 40px; color: var(--accent); }
.vid-card .vid-ph span { font-size: .82rem; }
.vid-card .play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,.92); display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,.35); z-index: 2;
  transition: transform .2s var(--ease);
}
.vid-card:hover .play { transform: translate(-50%,-50%) scale(1.08); }
.vid-card .play svg { width: 24px; height: 24px; color: var(--ink); margin-left: 3px; }
.vid-card .vid-tag {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  padding: 6px 11px; border-radius: 999px; font-size: .78rem; font-weight: 700;
  background: rgba(11,19,34,.6); backdrop-filter: blur(6px); color: #fff;
}
.vid-hint { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.6); font-size: .9rem; }
.vid-hint svg { width: 18px; height: 18px; color: var(--accent); }
.vid-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; margin-top: 14px; }
.vid-sound {
  position: absolute; right: 10px; top: 10px; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(11,19,34,.55); border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px); display: grid; place-items: center; cursor: pointer;
  transition: background .15s, transform .15s var(--ease);
}
.vid-sound:hover { transform: scale(1.06); }
.vid-sound.on { background: var(--accent); border-color: var(--accent); }
.vid-sound svg { width: 19px; height: 19px; color: #fff; }
.vid-sound.on svg { color: var(--accent-ink); }

/* ---------- Avant / Après (slider) ---------- */
.ba-wrap {
  position: relative; max-width: 760px; margin-inline: auto;
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 16 / 10; user-select: none; touch-action: pan-y;
  box-shadow: var(--shadow); background: var(--paper-2);
  cursor: ew-resize;
}
.ba-img { position: absolute; inset: 0; }
.ba-img img { width: 100%; height: 100%; object-fit: cover; }
.ba-after { z-index: 1; }
.ba-before { z-index: 2; clip-path: inset(0 50% 0 0); }
.ba-label {
  position: absolute; top: 14px; z-index: 3;
  padding: 6px 12px; border-radius: 999px; font-size: .78rem; font-weight: 700;
  background: rgba(11,19,34,.62); color: #fff; backdrop-filter: blur(6px);
}
.ba-label.l { left: 14px; }
.ba-label.r { right: 14px; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; z-index: 4;
  width: 3px; background: #fff; transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(0,0,0,.06);
}
.ba-knob {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 46px; height: 46px; border-radius: 50%; background: #fff;
  display: grid; place-items: center; box-shadow: var(--shadow);
}
.ba-knob svg { width: 22px; height: 22px; color: var(--ink); }
.ba-range { position: absolute; inset: 0; z-index: 5; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }

/* ---------- Prix sur mesure ---------- */
.price-sec { background: var(--paper-2); }
.price-grid { display: grid; gap: 22px; align-items: center; }
.price-card {
  background: var(--white); border-radius: var(--r-lg); padding: 26px;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.price-steps { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.price-steps li { display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start; }
.price-steps .n {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: var(--ink); color: #fff; font-family: var(--font-display); font-weight: 800;
}
.price-steps h4 { font-size: 1.05rem; margin-bottom: 2px; }
.price-steps p { color: var(--muted); font-size: .94rem; }

/* ---------- Garanties ---------- */
.guard-sec { background: var(--ink); color: #fff; }
.guard-grid { display: grid; gap: 14px; }
.guard {
  display: grid; gap: 12px; padding: 24px;
  border-radius: var(--r); background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  transition: transform .25s var(--ease), background .25s;
}
.guard:hover { transform: translateY(-4px); background: rgba(255,255,255,.07); }
.guard .g-ic {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(18,212,131,.16); color: var(--accent);
}
.guard .g-ic svg { width: 26px; height: 26px; }
.guard h3 { font-size: 1.12rem; }
.guard p { color: rgba(255,255,255,.7); font-size: .94rem; }

/* ---------- Histoire / humain ---------- */
.story-grid { display: grid; gap: 26px; align-items: center; }
.story-media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 4/5; background: linear-gradient(160deg,#16285C,#0B1322);
  box-shadow: var(--shadow);
}
.story-media img, .story-media video { width: 100%; height: 100%; object-fit: cover; }
.story-media .ph {
  position: absolute; inset: 0; display: grid; place-content: center; gap: 10px;
  text-align: center; color: rgba(255,255,255,.6); padding: 24px;
}
.story-media .ph svg { width: 46px; height: 46px; color: var(--accent); margin-inline: auto; }
.story-badge {
  position: absolute; left: 16px; bottom: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 14px; border-radius: 14px; background: rgba(255,255,255,.95);
  box-shadow: var(--shadow); font-weight: 700; color: var(--ink); font-size: .9rem;
}
.story-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(18,212,131,.25); }
.story-copy h2 { font-size: clamp(1.8rem,6vw,2.6rem); margin-bottom: 8px; }
.story-copy .quote {
  margin: 18px 0; padding-left: 18px; border-left: 3px solid var(--accent);
  font-size: 1.15rem; font-style: italic; color: var(--text);
}
.sign { font-family: var(--font-display); font-weight: 700; }
.sign span { display: block; color: var(--muted); font-weight: 500; font-size: .9rem; font-family: var(--font-body); }

/* ---------- Rappels entretien (saison) ---------- */
.season-sec { background: var(--paper); }
.season-grid { display: grid; gap: 14px; }
.season {
  position: relative; padding: 22px; border-radius: var(--r);
  background: var(--white); border: 1px solid var(--line); overflow: hidden;
}
.season::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent); }
.season.warm::before { background: var(--warm); }
.season .when { font-family: var(--font-display); font-weight: 800; color: var(--accent-dk); font-size: .9rem; text-transform: uppercase; letter-spacing: .04em; }
.season.warm .when { color: #C77F00; }
.season h3 { font-size: 1.15rem; margin: 6px 0 8px; }
.season p { color: var(--muted); font-size: .94rem; }
.season-note {
  margin-top: 18px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  padding: 16px 18px; border-radius: var(--r); background: rgba(255,176,32,.12);
  border: 1px solid rgba(255,176,32,.3); color: #7a5200; font-weight: 600;
}
.season-note svg { width: 22px; height: 22px; color: var(--warm); flex: 0 0 auto; }

/* ---------- Devis / Contact ---------- */
.cta-sec { background: var(--ink); color: #fff; }
.cta-grid { display: grid; gap: 26px; align-items: start; }
/* Empêche les enfants de grille de déborder (min-width:auto par défaut) */
.cta-grid > * { min-width: 0; }
.dform {
  display: grid; gap: 16px; padding: 24px; border-radius: var(--r-lg);
  background: var(--white); color: var(--text); box-shadow: var(--shadow);
}
.dform .row { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-weight: 700; font-size: .9rem; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 50px; padding: 13px 14px;
  border: 1.5px solid var(--line); border-radius: 12px;
  font: inherit; color: var(--text); background: var(--paper);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(18,212,131,.16); background: #fff;
}
.field textarea { min-height: 110px; resize: vertical; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 9px 14px; border-radius: 999px; border: 1.5px solid var(--line);
  background: var(--paper); font-size: .9rem; font-weight: 600; cursor: pointer;
  transition: all .15s;
}
.chip:hover { border-color: var(--accent); }
.chip.sel { background: var(--ink); color: #fff; border-color: var(--ink); }
.form-mini { font-size: .82rem; color: var(--muted); display: flex; align-items: center; gap: 7px; }
.form-mini svg { width: 15px; height: 15px; color: var(--accent-dk); }

.contact-card {
  display: grid; gap: 18px; padding: 26px; border-radius: var(--r-lg);
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
}
.phone-xl {
  display: block; margin-top: 8px;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.7rem, 7vw, 2.4rem); color: #fff; line-height: 1.05;
  white-space: nowrap; letter-spacing: -.01em;
}
.contact-line { display: grid; grid-template-columns: 40px 1fr; gap: 12px; align-items: start; }
.contact-line svg { width: 24px; height: 24px; color: var(--accent); margin-top: 2px; }
.contact-line p { color: rgba(255,255,255,.72); font-size: .94rem; }
.contact-line b { color: #fff; font-weight: 700; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-2); color: rgba(255,255,255,.78); padding: 48px 0 0; }
.footer-top { display: grid; gap: 28px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand img { height: 48px; border-radius: 12px; margin-bottom: 14px; }
.footer-brand p { max-width: 320px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 10px 18px; justify-content: space-between; align-items: center; padding: 18px 0; font-size: .85rem; color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: #fff; }
.footer-sign { color: rgba(255,255,255,.5); }
.footer-sign a, .footer-sign strong { color: var(--accent); font-weight: 600; text-decoration: none; }
.footer-sign a:hover { text-decoration: underline; }

/* ---------- Barre d'action mobile ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  display: none; gap: 10px; padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(247,248,245,.92); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.mobile-bar .btn { flex: 1; box-shadow: none; }

/* ---------- Page intérieure (hero court) ---------- */
.page-hero { background: var(--ink); color: #fff; padding: calc(var(--header-h) + 44px) 0 48px; }
.page-hero h1 { font-size: clamp(2rem, 8vw, 3.2rem); }
.page-hero p { margin-top: 14px; color: rgba(255,255,255,.72); max-width: 620px; }

/* ---------- Galerie réalisations ---------- */
.gallery { display: grid; gap: 16px; grid-template-columns: 1fr; }
.gcard {
  border-radius: var(--r); overflow: hidden; background: var(--white);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.gcard .gmedia {
  aspect-ratio: 4/3; background: linear-gradient(150deg,#e7eaf1,#f4f6fa);
  display: grid; place-items: center; color: var(--muted); position: relative;
}
.gcard .gmedia img, .gcard .gmedia video { width: 100%; height: 100%; object-fit: cover; }
.gcard .gmedia .ph { display: grid; gap: 8px; text-align: center; padding: 18px; }
.gcard .gmedia .ph svg { width: 38px; height: 38px; color: var(--accent-dk); margin-inline: auto; }
.gcard .gbody { padding: 16px 18px; }
.gcard .gbody h3 { font-size: 1.05rem; }
.gcard .gbody p { color: var(--muted); font-size: .9rem; margin-top: 4px; }
.gtag { display: inline-block; margin-top: 10px; padding: 5px 11px; border-radius: 999px; background: rgba(18,212,131,.12); color: var(--accent-dk); font-size: .78rem; font-weight: 700; }

/* Paire avant / après dans une carte galerie */
.gpair { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.gpair figure { position: relative; margin: 0; aspect-ratio: 1 / 1; overflow: hidden; }
.gpair img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.gcard:hover .gpair img { transform: scale(1.04); }
.ba-mini {
  position: absolute; top: 8px; z-index: 2;
  padding: 4px 9px; border-radius: 999px; font-size: .7rem; font-weight: 700;
  backdrop-filter: blur(6px);
}
.ba-mini.l { left: 8px; background: rgba(11,19,34,.62); color: #fff; }
.ba-mini.r { right: 8px; background: var(--accent); color: var(--accent-ink); }

/* ---------- Toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: 90px; z-index: 1500;
  transform: translateX(-50%) translateY(20px);
  padding: 13px 18px; border-radius: 14px; background: var(--ink); color: #fff;
  font-weight: 600; box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s var(--ease); max-width: 90vw; text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Reveal (fallback: visible sans JS) ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .nav, .header-cta { display: none; }
  .burger { display: block; }
  .nav.open {
    display: block; position: fixed; inset: var(--header-h) 0 auto;
    margin: 0; padding: 16px; background: var(--paper);
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .nav.open .nav-list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav.open .nav-list a { padding: 14px 16px; font-size: 1.05rem; }
  .nav.open .header-cta { display: flex; margin: 8px 0 0; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 74px; }
  .wa-float { bottom: 86px; }
}

@media (min-width: 600px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .guard-grid { grid-template-columns: 1fr 1fr; }
  .season-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .vid-card { width: 240px; }
}

@media (min-width: 861px) {
  :root { --header-h: 72px; }
  .brand-name { display: inline; }
  .section { padding: 92px 0; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .guard-grid { grid-template-columns: repeat(4, 1fr); }
  .season-grid { grid-template-columns: repeat(4, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .price-grid { grid-template-columns: 1.05fr .95fr; }
  .story-grid { grid-template-columns: .9fr 1.1fr; }
  .cta-grid { grid-template-columns: 1.15fr .85fr; }
  .dform .row.two { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .hero { padding: calc(var(--header-h) + 70px) 0 80px; min-height: 88vh; display: flex; align-items: center; }
}

@media (min-width: 1100px) {
  .hero h1 { font-size: 4.6rem; }
}

/* ---------- WhatsApp flottant ---------- */
.wa-float {
  position: fixed; right: 16px; bottom: 16px; z-index: 850;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.45);
  transition: transform .2s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .trust-track { animation: none; }
}
