/* ============================================================
   EREM Hydrocurage & Caméra — Paris 8e (75008)
   Identité visuelle officielle EREM : navy / gold / ivory
   Typo : Fraunces (display) + Inter (corps)
   ============================================================ */

:root {
  /* Palette EREM officielle */
  --navy-deep: #0F2942;
  --navy-night: #1A3A5C;
  --steel: #264C72;
  --gold: #C9A961;
  --gold-dark: #A68B47;
  --ivory: #FAF7F2;
  --ivory-light: #FDFBF7;
  --anthracite: #1C1F26;
  --taupe: #6B6358;
  --urgence: #C8472B;
  --urgence-dark: #A93A21;

  --gold-border: rgba(201, 169, 97, 0.30);
  --gold-border-soft: rgba(201, 169, 97, 0.20);
  --gold-glow: rgba(201, 169, 97, 0.35);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --maxw: 1280px;
  --radius: 10px;
  --radius-lg: 16px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 0.4s var(--ease-out);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: var(--topbar-h, 96px); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

/* CSS officiel Lenis — indispensable, sinon le scroll se bloque/saccade */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* Masqué visuellement mais conservé dans le source HTML (crawlable SEO) */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

body {
  font-family: var(--font-body);
  color: var(--anthracite);
  background: var(--ivory);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.italic { font-style: italic; font-weight: 400; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}

.section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }
.section--navy { background: var(--navy-deep); color: var(--ivory); }
.section--ivory { background: var(--ivory); color: var(--anthracite); }
.section--ivory-light { background: var(--ivory-light); color: var(--anthracite); }

/* Sur-titre + séparateur gold */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}
.eyebrow::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-top: 16px;
  transform-origin: left;
}
.section-title {
  font-size: clamp(34px, 5.2vw, 68px);
  margin-bottom: 22px;
  max-width: 18ch;
}
.section--navy .section-title { color: var(--ivory); }
.section-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--taupe);
  max-width: 62ch;
  margin-bottom: 56px;
}
.section--navy .section-sub { color: rgba(250, 247, 242, 0.78); }

.gold-text { color: var(--gold); }
.num-marker {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.4em;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  padding: 17px 32px;
  border-radius: 8px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: var(--transition);
  text-align: center;
  letter-spacing: 0.01em;
}
.btn--gold { background: var(--gold); color: var(--navy-deep); }
.btn--gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 12px 30px var(--gold-glow); }
.btn--outline { background: transparent; border-color: rgba(250,247,242,0.5); color: var(--ivory); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--urgence { background: var(--urgence); color: var(--ivory); }
.btn--urgence:hover { background: var(--urgence-dark); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(200,71,43,0.4); }
.btn--navy { background: var(--navy-deep); color: var(--ivory); }
.btn--navy:hover { background: var(--navy-night); transform: translateY(-2px); }
.btn--lg { font-size: 18px; padding: 21px 44px; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Barre sticky unifiée (urgence + header) ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ---------- Bandeau urgence ---------- */
.urgence-bar {
  position: relative;
  background: var(--urgence);
  color: var(--ivory);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 9px 16px;
  overflow: hidden;
}
.urgence-bar a { display: block; }
.urgence-bar::before {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  animation: shimmer 5s infinite;
}
@keyframes shimmer { 0%,70% { left: -120%; } 100% { left: 130%; } }
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--ivory); margin-right: 6px; animation: blink 1.4s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ---------- Header ---------- */
.header {
  background: rgba(15, 41, 66, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px clamp(20px,5vw,64px); }
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-mark { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 26px; color: var(--ivory); letter-spacing: 0.04em; }
.logo-sub { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-top: 5px; }
.nav { display: flex; gap: 30px; align-items: center; }
.nav a { font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(250,247,242,0.85); transition: color 0.25s; }
.nav a:hover { color: var(--gold); }
.header .btn { padding: 12px 22px; font-size: 14px; }
.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--ivory); margin: 5px 0; transition: 0.3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--ivory);
  isolation: isolate;
  padding: 80px 0 60px;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.4) sepia(0.25) saturate(1.1) brightness(0.65); }
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(120deg, rgba(15,41,66,0.92) 0%, rgba(15,41,66,0.78) 55%, rgba(26,58,92,0.7) 100%);
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  padding: 9px 18px; border-radius: 999px;
  margin-bottom: 30px;
  background: rgba(15,41,66,0.4);
}
.hero-pill .dot { background: var(--gold); }
.hero h1 {
  font-size: clamp(44px, 8.5vw, 124px);
  margin-bottom: 26px;
  max-width: 16ch;
}
.hero h1 .italic { color: var(--ivory); }
.hero-subtitle {
  font-size: clamp(16px, 1.9vw, 21px);
  color: rgba(250,247,242,0.85);
  max-width: 64ch;
  margin-bottom: 38px;
  line-height: 1.6;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 44px; }
.trust-bar {
  display: flex; flex-wrap: wrap; gap: 14px 32px;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--gold);
  padding-top: 32px;
  border-top: 1px solid var(--gold-border);
}
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--gold-border);
}
.hero-stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(36px, 5vw, 64px); color: var(--ivory); line-height: 1; }
.hero-stat .lbl { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(250,247,242,0.7); margin-top: 10px; }

/* ---------- Statut temps réel ---------- */
.status-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.status-card {
  background: var(--ivory-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.status-card .led { width: 11px; height: 11px; border-radius: 50%; background: #2ecc71; box-shadow: 0 0 0 0 rgba(46,204,113,0.6); animation: pulse-led 2s infinite; display: inline-block; margin-bottom: 14px; }
@keyframes pulse-led { 0% { box-shadow: 0 0 0 0 rgba(46,204,113,0.55); } 70% { box-shadow: 0 0 0 12px rgba(46,204,113,0); } 100% { box-shadow: 0 0 0 0 rgba(46,204,113,0); } }
.status-card h3 { font-family: var(--font-body); font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.status-card p { font-size: 14px; color: var(--taupe); }

/* ---------- Cards génériques ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.card--white { background: #fff; border: 1px solid var(--gold-border-soft); }
.card--white:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 18px 40px rgba(15,41,66,0.10); }
.card--ivory { background: var(--ivory-light); border: 1px solid var(--gold-border-soft); }
.card--ivory:hover { transform: translateY(-4px); border-color: var(--gold); }
.card--navy { background: var(--navy-night); border: 1px solid var(--gold-border); color: var(--ivory); }
.card--navy:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 0 30px var(--gold-glow); }
.card .ico { font-size: 30px; margin-bottom: 16px; display: block; }
.card h3 { font-family: var(--font-display); font-size: 21px; margin-bottom: 10px; }
.card--navy h3 { color: var(--ivory); }
.card p { font-size: 15px; color: var(--taupe); }
.card--navy p { color: rgba(250,247,242,0.78); }
.card .card-num { font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--gold); display: block; margin-bottom: 12px; }
.price { font-family: var(--font-body); font-weight: 700; color: var(--gold-dark); font-variant-numeric: tabular-nums; }
.card--navy .price { color: var(--gold); }

/* ---------- Clientèle exigeante ---------- */
.note-italic { font-family: var(--font-display); font-style: italic; color: var(--taupe); margin-top: 28px; font-size: 16px; }

/* ---------- Chips besoins ---------- */
.chips { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.chip {
  background: var(--navy-night);
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ivory);
  transition: var(--transition);
}
.chip:hover { border-color: var(--gold); transform: scale(1.03); }

/* ---------- Quartiers ---------- */
.quartiers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.quartier {
  background: var(--navy-night);
  border: 1px solid var(--gold-border-soft);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: var(--transition);
}
.quartier:hover { border-color: var(--gold); box-shadow: 0 0 26px var(--gold-glow); transform: translateY(-3px); }
.quartier h3 { font-family: var(--font-display); font-style: italic; font-size: 22px; color: var(--ivory); margin-bottom: 8px; }
.quartier p { font-size: 13px; color: rgba(250,247,242,0.6); }
.quartier .q-cta { display: flex; justify-content: space-between; align-items: center; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- Services avec image ---------- */
.svc-card { overflow: hidden; padding: 0; }
.svc-card .svc-img { aspect-ratio: 16/10; overflow: hidden; }
.svc-card .svc-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.3) sepia(0.18) saturate(1.05); transition: 0.6s var(--ease-out); }
.svc-card:hover .svc-img img { filter: none; transform: scale(1.05); }
.svc-card .svc-body { padding: 30px 28px; }

/* ---------- Tableaux tarifs ---------- */
.price-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gold-border-soft); margin-bottom: 28px; }
.price-table caption { font-family: var(--font-display); font-style: italic; font-size: 20px; text-align: left; padding: 0 0 14px; color: var(--anthracite); }
.price-table th { background: var(--navy-deep); color: var(--ivory); font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; padding: 16px 22px; text-align: left; }
.price-table td { padding: 15px 22px; font-size: 15px; border-top: 1px solid var(--gold-border-soft); }
.price-table td:last-child { text-align: right; font-weight: 700; color: var(--gold-dark); font-variant-numeric: tabular-nums; white-space: nowrap; }
.price-table tr:hover td { background: var(--ivory); }

/* ---------- Contrats pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.plan { background: var(--navy-night); border: 1px solid var(--gold-border); border-radius: var(--radius-lg); padding: 38px 32px; position: relative; display: flex; flex-direction: column; }
.plan--featured { border: 2px solid var(--gold); box-shadow: 0 0 40px var(--gold-glow); transform: scale(1.04); }
.plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy-deep); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 7px 18px; border-radius: 999px; white-space: nowrap; }
.plan h3 { font-family: var(--font-display); font-style: italic; font-size: 26px; color: var(--ivory); margin-bottom: 8px; }
.plan .plan-price { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: var(--gold); margin: 6px 0 22px; }
.plan ul { display: flex; flex-direction: column; gap: 11px; flex: 1; }
.plan li { font-size: 14px; color: rgba(250,247,242,0.85); padding-left: 24px; position: relative; }
.plan li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.plan .btn { margin-top: 26px; }

/* ---------- Process timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.tl-step .tl-num { font-family: var(--font-display); font-style: italic; font-size: clamp(60px, 8vw, 96px); color: var(--gold); line-height: 1; opacity: 0.85; }
.tl-step h3 { font-family: var(--font-display); font-size: 22px; margin: 14px 0 8px; }
.tl-step p { font-size: 15px; color: var(--taupe); }
.quote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(24px, 3.4vw, 44px);
  text-align: center; max-width: 22ch; margin: 80px auto 0;
  line-height: 1.3;
}
.quote cite { display: block; font-family: var(--font-body); font-style: normal; font-weight: 600; font-size: 15px; color: var(--gold); margin-top: 22px; letter-spacing: 0.05em; }

/* ---------- Engagements 2 col ---------- */
.engage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 48px; }
.engage-grid li { padding-left: 30px; position: relative; font-size: 16px; color: rgba(250,247,242,0.88); }
.engage-grid li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; font-size: 18px; }
.trust-box { border: 1.5px solid var(--gold); border-radius: var(--radius); padding: 28px 32px; margin-top: 48px; font-size: 15px; color: rgba(250,247,242,0.85); }

/* ---------- Galerie mosaïque ---------- */
.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.mosaic figure { overflow: hidden; border-radius: var(--radius); }
.mosaic img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.45) sepia(0.3) saturate(1.1) brightness(0.92); transition: 0.6s var(--ease-out); }
.mosaic figure:hover img { filter: none; transform: scale(1.06); }
.mosaic .m-wide { grid-column: span 2; }
.mosaic .m-tall { grid-row: span 2; }

/* ---------- Témoignages ---------- */
.testi-card { background: var(--navy-night); border: 1px solid var(--gold-border); border-radius: var(--radius); padding: 30px 28px; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; margin-bottom: 14px; }
.testi-card p { font-size: 16px; color: var(--ivory); font-style: italic; font-family: var(--font-display); line-height: 1.5; }
.testi-card .author { font-family: var(--font-body); font-style: normal; font-size: 13px; font-weight: 600; color: var(--gold); margin-top: 16px; letter-spacing: 0.04em; }

/* ---------- Mégafigures ---------- */
.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.mega .mega-num { font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: clamp(56px, 9vw, 144px); color: var(--gold); line-height: 1; }
.mega .mega-lbl { font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--taupe); margin-top: 12px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 920px; }
.faq-item { border-top: 1px solid var(--gold-border); }
.faq-item:last-child { border-bottom: 1px solid var(--gold-border); }
.faq-q { width: 100%; background: none; border: 0; cursor: pointer; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 26px 4px; font-family: var(--font-display); font-size: clamp(18px, 2.2vw, 24px); color: var(--ivory); }
.faq-q .chev { color: var(--gold); transition: transform 0.4s var(--ease-out); flex-shrink: 0; font-size: 20px; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease-out); }
.faq-a div { padding: 0 4px 28px; font-size: 16px; color: rgba(250,247,242,0.8); line-height: 1.7; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 36px; }
.contact-card { background: #fff; border: 1px solid var(--gold-border); border-radius: var(--radius-lg); padding: 40px 36px; }
.contact-card ul { display: flex; flex-direction: column; gap: 18px; }
.contact-card li { display: flex; gap: 14px; font-size: 15px; }
.contact-card li .ci { color: var(--gold); font-size: 18px; flex-shrink: 0; }
.contact-card li strong { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--taupe); margin-bottom: 2px; }
.form-card { background: #fff; border: 1px solid var(--gold-border-soft); border-radius: var(--radius-lg); padding: 40px 36px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--taupe); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px;
  padding: 13px 15px; border: 1px solid #d8d2c6; border-radius: 8px;
  background: var(--ivory-light); color: var(--anthracite); transition: 0.25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-glow); background: #fff;
}
.field textarea { resize: vertical; min-height: 110px; }
.radio-row { display: flex; flex-wrap: wrap; gap: 14px; }
.radio-row label { display: inline-flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 500; text-transform: none; letter-spacing: 0; cursor: pointer; }
.check-row { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--taupe); margin-bottom: 16px; }
.check-row input { width: auto; margin-top: 3px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-note { font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--taupe); text-align: center; margin-top: 16px; }

/* ---------- Bandeau CTA final ---------- */
.cta-final { background: var(--urgence); color: var(--ivory); text-align: center; padding: clamp(60px, 9vw, 110px) 0; }
.cta-final h2 { font-family: var(--font-display); font-size: clamp(30px, 5vw, 60px); margin-bottom: 30px; }
.cta-final h2 .italic { color: var(--ivory); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-deep); color: rgba(250,247,242,0.7); padding: 80px 0 40px; border-top: 1px solid var(--gold-border); }
.footer-cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.footer-cols h4 { font-family: var(--font-body); font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 18px; }
.footer-cols a, .footer-cols li { font-size: 14px; line-height: 2; color: rgba(250,247,242,0.65); }
.footer-cols a:hover { color: var(--gold); }
.footer .logo-mark { font-size: 28px; }
.footer .footer-tag { font-family: var(--font-display); font-style: italic; color: rgba(250,247,242,0.7); margin-top: 12px; font-size: 16px; }
.seo-block { font-size: 11px; line-height: 1.9; color: rgba(250,247,242,0.32); columns: 4; column-gap: 32px; padding: 32px 0; border-top: 1px solid var(--gold-border-soft); border-bottom: 1px solid var(--gold-border-soft); margin-bottom: 32px; }
.badges-row { display: flex; flex-wrap: wrap; gap: 12px 20px; margin-bottom: 28px; }
.badges-row span { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); border: 1px solid var(--gold-border); padding: 7px 14px; border-radius: 999px; }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; font-size: 12px; color: rgba(250,247,242,0.5); padding-top: 24px; border-top: 1px solid var(--gold-border-soft); }
.footer-legal a:hover { color: var(--gold); }

/* ---------- Boutons flottants ---------- */
.floating { position: fixed; right: 20px; bottom: 22px; z-index: 998; display: flex; flex-direction: column; gap: 14px; }
.fab { width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; box-shadow: 0 8px 24px rgba(0,0,0,0.28); transition: transform 0.25s; }
.fab:hover { transform: scale(1.08); }
.fab--wa { background: #25D366; color: #fff; }
.fab--call { background: var(--urgence); color: #fff; animation: pulse-call 2.2s infinite; }
@keyframes pulse-call { 0% { box-shadow: 0 0 0 0 rgba(200,71,43,0.55); } 70% { box-shadow: 0 0 0 18px rgba(200,71,43,0); } 100% { box-shadow: 0 0 0 0 rgba(200,71,43,0); } }

/* ---------- Cookies ---------- */
.cookie { position: fixed; left: 16px; bottom: 16px; z-index: 997; max-width: 360px; background: var(--navy-deep); color: rgba(250,247,242,0.85); border: 1px solid var(--gold-border); border-radius: var(--radius); padding: 16px 18px; font-size: 12px; display: flex; gap: 12px; align-items: center; }
.cookie button { background: var(--gold); color: var(--navy-deep); border: 0; padding: 8px 16px; border-radius: 6px; font-weight: 600; cursor: pointer; font-size: 12px; white-space: nowrap; }

/* ---------- Reveal animations ---------- */
/* Caché uniquement quand GSAP a pris le relais : si le JS échoue,
   le contenu reste visible et la page scrolle normalement. */
.anim-ready .reveal { opacity: 0; transform: translateY(40px); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4, .status-grid, .quartiers-grid, .chips, .mega-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .pricing-grid, .timeline { grid-template-columns: 1fr; }
  .plan--featured { transform: none; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .seo-block { columns: 2; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--navy-deep); padding: 24px clamp(20px,5vw,64px); gap: 20px; border-bottom: 1px solid var(--gold-border);
  }
  .burger { display: block; }
  .header .btn { display: none; }
  .grid-2, .grid-4, .status-grid, .quartiers-grid, .chips, .contact-grid, .engage-grid, .hero-stats, .mega-grid { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .mosaic .m-wide, .mosaic .m-tall { grid-column: auto; grid-row: auto; }
  .price-table { display: block; overflow-x: auto; }
  .footer-cols { grid-template-columns: 1fr; }
  .seo-block { columns: 1; }
  .cookie { left: 10px; right: 10px; max-width: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .btn { width: 100%; justify-content: center; }
  .hero-cta { flex-direction: column; }
}
