/* ============================================================
   EREM Hydrocurage & Caméra — Paris 16e
   Design tokens : navy / gold / ivoire — sobre & épuré
   ============================================================ */

/* Mots-clés SEO invisibles (technique CSS clip = WCAG-safe,
   reste dans le DOM, indexable, PAS display:none / PAS color blanc) */
.seo-hidden-keywords {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  font-size: 1px;
  color: transparent;
}

/* La bannière cookies (bottom, pleine largeur) recouvre les boutons
   flottants appel/WhatsApp à la 1re visite (trafic Google Ads) :
   on masque le .fab tant que le consentement n'est pas donné. */
body.cookie-open .fab { display: none; }

:root {
  --navy: #0F2942;
  --navy-night: #1A3A5C;
  --gold: #C9A961;
  --ivory: #FAF7F2;
  --white: #FFFFFF;
  --off-white: #FDFBF7;
  --line: #EFECE6;
  --ink: #2D2D2D;
  --taupe: #7A7468;
  --taupe-light: #B8B0A3;
  --brick: #C8472B;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "Inter", ui-monospace, monospace;

  --maxw: 1180px;
  --pad-section: 120px;
  --radius: 6px;
  --radius-lg: 8px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* ---------- Lenis (smooth scroll) — CSS requise sinon le scroll est cassé ---------- */
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-scrolling iframe { pointer-events: none; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Typographie ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; color: var(--navy); line-height: 1.15; }
h1 { font-size: clamp(36px, 5.4vw, 70px); font-style: italic; }
h2 { font-size: clamp(28px, 3.6vw, 46px); font-style: italic; }
h3 { font-size: 22px; font-weight: 500; font-style: normal; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--taupe);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.gold-rule { width: 40px; height: 2px; background: var(--gold); margin: 0 0 28px; transition: width .6s ease; }
.section-lead { font-size: 16px; color: var(--ink); max-width: 720px; margin: 18px 0 0; }

/* ---------- Sections ---------- */
section { padding: var(--pad-section) 0; }
.bg-ivory { background: var(--ivory); }
.bg-white { background: var(--white); }
.bg-off { background: var(--off-white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  padding: 14px 26px; border-radius: var(--radius);
  transition: transform .2s ease, background .2s ease, color .2s ease;
  min-height: 44px;
}
.btn-navy { background: var(--navy); color: var(--ivory); }
.btn-navy:hover { background: var(--navy-night); transform: scale(1.02); }
.btn-outline { border: 1px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--ivory); }
.btn-brick { background: var(--brick); color: var(--ivory); font-size: 16px; padding: 18px 34px; }
.btn-brick:hover { transform: scale(1.02); filter: brightness(1.05); }
.btn-outline-ivory { border: 1px solid var(--ivory); color: var(--ivory); }
.btn-outline-ivory:hover { background: var(--ivory); color: var(--navy); }
.link-gold { color: var(--navy); border-bottom: 1px solid var(--gold); padding-bottom: 2px; font-weight: 500; }
.link-gold:hover { color: var(--gold); }

/* ---------- Bandeau urgence ---------- */
.topbar {
  background: var(--brick); color: var(--ivory);
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em;
  text-align: center; height: 32px; display: flex; align-items: center; justify-content: center;
}
.topbar a { font-weight: 600; }
.topbar .dot { color: var(--ivory); margin-right: 8px; }

/* ---------- Skip link (accessibilité clavier) ---------- */
.skip-link {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -120%);
  z-index: 1200; background: var(--navy); color: var(--ivory);
  padding: 10px 18px; font-size: 13px; border-radius: 0 0 6px 6px;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translate(-50%, 0); outline: 2px solid var(--gold); outline-offset: 2px; }

/* Ancrage : compense le header collant pour ne pas masquer les titres */
section[id], [id="top"] { scroll-margin-top: 88px; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(250,247,242,.82);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  backdrop-filter: saturate(140%) blur(10px);
  height: 72px; display: flex; align-items: center;
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(250,247,242,.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 12px rgba(15,41,66,.06);
}
.header .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }

/* Barre de progression de lecture (fin liseré gold, sobre) */
.scroll-progress {
  position: absolute; left: 0; bottom: -1px; height: 2px; width: 0;
  background: linear-gradient(90deg, var(--gold), #e3c987);
  transition: width .1s linear; will-change: width;
}

.brand { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 24px; color: var(--navy); transition: opacity .2s ease; }
.brand:hover { opacity: .72; }
.brand small { display: block; font-family: var(--font-body); font-style: normal; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav > a:not(.nav-cta) {
  font-size: 13px; color: var(--ink); position: relative;
  padding: 6px 0; border-bottom: 1px solid transparent;
}
.nav > a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 1px; background: var(--gold); transition: right .25s ease;
}
.nav > a:not(.nav-cta):hover::after,
.nav > a.active::after { right: 0; }
.nav > a.active { color: var(--navy); font-weight: 600; }
.nav a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* CTA téléphone : visible uniquement dans le menu mobile */
.nav-cta {
  display: none;
  background: var(--navy); color: var(--ivory);
  padding: 14px 20px; border-radius: var(--radius); font-size: 15px; font-weight: 600;
  text-align: center; justify-content: center;
}

.burger {
  display: none; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  background: none; border: 0; cursor: pointer;
}
.burger span {
  width: 24px; height: 2px; background: var(--navy); display: block;
  transition: transform .28s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Voile sombre derrière le menu mobile */
.nav-backdrop {
  position: fixed; inset: 0; z-index: 850;
  background: rgba(15,41,66,.42); opacity: 0;
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  transition: opacity .3s ease;
}
.nav-backdrop.show { opacity: 1; }
body.nav-locked { overflow: hidden; }

/* ---------- Hero ---------- */
.hero { background: var(--ivory); padding: 80px 0 100px; }
.hero .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-photo { border-radius: var(--radius-lg); filter: sepia(.08); object-fit: cover; width: 100%; height: 480px; }
.hero h1 { margin: 0 0 22px; }
.hero p.sub { font-size: 16px; color: var(--ink); margin-bottom: 32px; }
.hero-cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }
.trust-bar { font-size: 12px; color: var(--taupe); display: flex; flex-wrap: wrap; gap: 14px; }
.trust-bar span:not(:last-child)::after { content: "|"; margin-left: 14px; color: var(--taupe-light); }

/* ---------- Chiffres clés ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-top: 12px; }
.stat .num { font-family: var(--font-display); font-style: italic; font-size: clamp(40px, 5vw, 64px); color: var(--navy); }
.stat .label { font-size: 14px; color: var(--taupe); margin-top: 6px; }

/* ---------- Cards génériques ---------- */
.cards { display: grid; gap: 20px; margin-top: 48px; }
.cards.c4 { grid-template-columns: repeat(4, 1fr); }
.cards.c3 { grid-template-columns: repeat(3, 1fr); }
.cards.c2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px;
  transition: border-color .25s ease;
}
.card:hover { border-color: var(--gold); }
.card .idx { font-family: var(--font-mono); font-size: 13px; color: var(--taupe); margin-bottom: 14px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 15px; color: var(--ink); }
.card .price { color: var(--gold); font-weight: 500; }

.urgency-cta { margin-top: 48px; text-align: center; }

/* ---------- Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.chip {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: 10px 20px; font-size: 14px; color: var(--ink);
}
.chip:hover { border-color: var(--gold); }

/* ---------- Quartiers ---------- */
.quartiers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }
.q-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
  display: flex; flex-direction: column; gap: 6px;
}
.q-card:hover { border-color: var(--gold); }
.q-card h3 { font-size: 16px; }
.q-card .meta { font-size: 12px; color: var(--taupe); }
.q-card .arrow { color: var(--gold); margin-top: 8px; }

/* ---------- Tableaux tarifs ---------- */
.price-table { width: 100%; border-collapse: collapse; margin: 28px 0 8px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.price-table caption { text-align: left; font-family: var(--font-display); font-style: italic; font-size: 20px; color: var(--navy); margin-bottom: 12px; }
.price-table th, .price-table td { text-align: left; padding: 14px 20px; font-size: 15px; border-bottom: 1px solid var(--line); }
.price-table th { background: var(--ivory); color: var(--taupe); font-weight: 500; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.price-table td:last-child { color: var(--gold); font-weight: 500; white-space: nowrap; }
.price-table tr:last-child td { border-bottom: none; }
.tables-stack { display: grid; gap: 40px; margin-top: 40px; }

/* ---------- Pricing cards ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.plan { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px 30px; position: relative; }
.plan.featured { border: 1px solid var(--gold); }
.plan .badge { position: absolute; top: -12px; left: 30px; background: var(--gold); color: var(--white); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px; }
.plan h3 { margin-bottom: 6px; }
.plan .plan-price { font-family: var(--font-display); font-style: italic; font-size: 24px; color: var(--gold); margin-bottom: 22px; }
.plan ul li { font-size: 14px; padding: 8px 0 8px 22px; position: relative; border-bottom: 1px solid var(--line); }
.plan ul li::before { content: "✓"; color: var(--gold); position: absolute; left: 0; }
.plan ul li:last-child { border-bottom: none; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.step .idx { font-family: var(--font-mono); font-size: 13px; color: var(--gold); margin-bottom: 10px; }
.step h3 { margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--ink); }
.quote { text-align: center; max-width: 760px; margin: 72px auto 0; }
.quote blockquote { font-family: var(--font-display); font-style: italic; font-size: 28px; color: var(--navy); line-height: 1.4; }
.quote cite { display: block; font-style: normal; font-size: 13px; color: var(--taupe); margin-top: 18px; }

/* ---------- Pourquoi (2 colonnes) ---------- */
.why { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 48px; }
.why img { border-radius: var(--radius); filter: sepia(.08); width: 100%; height: 420px; object-fit: cover; }
.why ul li { font-size: 15px; padding: 10px 0 10px 26px; position: relative; }
.why ul li::before { content: "✓"; color: var(--gold); position: absolute; left: 0; font-weight: 600; }
.trust-box { margin-top: 28px; background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: var(--radius); padding: 22px 26px; font-size: 14px; color: var(--taupe); }

/* ---------- Galerie ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.gallery img { border-radius: var(--radius); filter: sepia(.08); height: 240px; object-fit: cover; width: 100%; transition: transform .4s ease; }
.gallery img:hover { transform: scale(1.02); }

/* ---------- Témoignages ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.review { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.review .stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; margin-bottom: 12px; }
.review p { font-size: 15px; font-style: italic; color: var(--ink); }
.review cite { display: block; font-style: normal; font-size: 13px; color: var(--taupe); margin-top: 14px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 48px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; font-size: 17px; color: var(--navy); font-weight: 500; }
.faq-q .ico { color: var(--gold); font-size: 22px; flex-shrink: 0; transition: transform .25s ease; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 0 22px; font-size: 15px; color: var(--ink); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; margin-top: 48px; }
.contact-info dt { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--taupe); margin-top: 20px; }
.contact-info dd { font-size: 16px; color: var(--ink); }
.contact-info dd a { color: var(--navy); border-bottom: 1px solid var(--gold); }
form .field { margin-bottom: 18px; }
form label { display: block; font-size: 13px; color: var(--taupe); margin-bottom: 6px; }
form input, form select, form textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px;
  padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white); color: var(--ink);
}
form input:focus, form select:focus, form textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
form textarea { min-height: 110px; resize: vertical; }
.radio-row { display: flex; gap: 20px; flex-wrap: wrap; }
.radio-row label { display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--ink); }
.radio-row input { width: auto; }
.check-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--taupe); }
.check-row input { width: auto; margin-top: 3px; }
.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; }
.form-note { font-size: 13px; color: var(--taupe); margin-top: 14px; }

/* ---------- CTA final ---------- */
.cta-final { background: var(--brick); text-align: center; }
.cta-final h2 { color: var(--ivory); margin-bottom: 28px; }
.cta-final h2 strong { font-style: normal; font-weight: 600; }

/* ---------- Footer ---------- */
.footer { background: var(--ivory); border-top: 1px solid var(--line); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { margin-bottom: 12px; }
.footer .tagline { font-size: 12px; color: var(--taupe); }
.footer h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--taupe); margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: var(--ink); }
.footer-links a:hover { color: var(--gold); }
.zones-seo { margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--line); }
.zones-seo h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--taupe); margin-bottom: 14px; }
.zones-seo p { font-size: 12px; line-height: 1.9; color: var(--taupe); column-count: 2; column-gap: 40px; }
.footer-badges { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); font-size: 11px; color: var(--taupe); }
.footer-badges span:not(:last-child)::after { content: "·"; margin: 0 8px; color: var(--taupe-light); }
.footer-copy { margin-top: 18px; font-size: 12px; color: var(--taupe-light); }

/* ---------- Boutons flottants ---------- */
.fab { position: fixed; right: 20px; bottom: 20px; z-index: 800; display: flex; flex-direction: column; gap: 14px; }
.fab a { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; box-shadow: 0 4px 16px rgba(15,41,66,.18); }
.fab .wa { background: #25D366; color: #fff; }
.fab .call { background: var(--brick); color: #fff; animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 4px 16px rgba(200,71,43,.4); } 50% { box-shadow: 0 4px 26px rgba(200,71,43,.7); } }

/* ---------- Cookies ---------- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 9999;
  background: var(--ivory); border-top: 1px solid rgba(201,169,97,.3);
  box-shadow: 0 -2px 16px rgba(15,41,66,.06); padding: 24px 32px;
}
.cookie-banner.hidden, .cookie-modal.hidden, .is-hidden { display: none; }
.cookie-banner-content { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.cookie-banner-text { flex: 1; min-width: 280px; }
.cookie-banner-title { font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--navy); margin-bottom: 6px; }
.cookie-banner-description { font-size: 13px; color: var(--ink); line-height: 1.6; }
.cookie-link { border-bottom: 1px solid var(--gold); color: var(--navy); }
.cookie-banner-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.btn-cookie-refuse, .btn-cookie-refuse-all { border: 1px solid var(--navy); color: var(--navy); font-size: 13px; padding: 10px 20px; border-radius: var(--radius); }
.btn-cookie-refuse:hover, .btn-cookie-refuse-all:hover { background: var(--navy); color: var(--ivory); }
.btn-cookie-customize { color: var(--navy); border-bottom: 1px solid var(--gold); font-size: 13px; padding: 4px 0; }
.btn-cookie-customize:hover { color: var(--gold); }
.btn-cookie-accept, .btn-cookie-save { background: var(--navy); color: var(--ivory); font-size: 13px; padding: 10px 20px; border-radius: var(--radius); }
.btn-cookie-accept:hover, .btn-cookie-save:hover { background: var(--navy-night); }

.cookie-modal { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 20px; }
.cookie-modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.6); }
.cookie-modal-content { position: relative; background: var(--white); max-width: 600px; width: 100%; max-height: 90vh; overflow-y: auto; padding: 40px; border-radius: var(--radius-lg); }
.cookie-modal-close { position: absolute; top: 16px; right: 20px; font-size: 28px; color: var(--taupe); line-height: 1; }
.cookie-modal-title { font-family: var(--font-display); font-style: italic; font-size: 28px; color: var(--navy); margin-bottom: 12px; }
.cookie-modal-description { font-size: 14px; color: var(--ink); margin-bottom: 24px; }
.cookie-category { padding: 20px 0; border-top: 1px solid var(--line); }
.cookie-category-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.cookie-category h3 { font-size: 16px; margin-bottom: 4px; }
.cookie-category p { font-size: 13px; color: var(--taupe); }
.cookie-toggle { position: relative; display: inline-block; width: 46px; height: 26px; flex-shrink: 0; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider { position: absolute; inset: 0; background: var(--taupe-light); border-radius: 999px; transition: background .2s; }
.cookie-toggle-slider::before { content: ""; position: absolute; height: 20px; width: 20px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform .2s; }
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--gold); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-toggle.disabled { opacity: .55; }
.cookie-modal-actions { display: flex; justify-content: flex-end; gap: 14px; margin-top: 28px; }

/* ---------- Pages légales ---------- */
.legal { max-width: 820px; margin: 0 auto; padding: 60px 24px 100px; }
.legal h1 { font-size: clamp(32px,4vw,48px); margin-bottom: 12px; }
.legal h2 { font-size: 24px; margin: 40px 0 12px; }
.legal h3 { font-size: 18px; margin: 24px 0 8px; }
.legal p, .legal li { font-size: 15px; color: var(--ink); margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.legal th, .legal td { border: 1px solid var(--line); padding: 10px 14px; font-size: 14px; text-align: left; }
.legal a { color: var(--navy); border-bottom: 1px solid var(--gold); }
.legal .back { display: inline-block; margin-bottom: 30px; font-size: 13px; color: var(--taupe); }

/* ---------- Animations ---------- */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.fade-up.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  :root { --pad-section: 80px; }
  .hero .wrap, .why, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-photo, .why img { height: 240px; order: -1; }
  .cards.c4, .cards.c3, .cards.c2, .quartiers, .pricing, .steps, .reviews, .gallery, .stats { grid-template-columns: 1fr 1fr; }
  .header-phone { display: none; }
  .burger { display: flex; }
  .nav {
    position: fixed; top: 0; right: 0; z-index: 880;
    width: min(82vw, 340px); height: 100dvh;
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 4px; padding: 96px 28px 32px;
    background: var(--ivory); border-left: 1px solid var(--line);
    box-shadow: -16px 0 40px rgba(15,41,66,.12);
    transform: translateX(105%); transition: transform .32s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }
  .nav > a:not(.nav-cta) {
    font-size: 17px; padding: 16px 4px; border-bottom: 1px solid var(--line);
  }
  .nav > a:not(.nav-cta)::after { display: none; }
  .nav > a.active { color: var(--gold); }
  .nav-cta { display: flex; margin-top: 20px; }
  .zones-seo p { column-count: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .stats, .cards.c4, .cards.c3, .cards.c2, .quartiers, .pricing, .steps, .reviews, .gallery, .footer-grid { grid-template-columns: 1fr; }
  .cookie-banner { padding: 18px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions button, .cookie-banner-actions .btn-cookie-accept { flex: 1; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .fade-up { opacity: 1; transform: none; }
}
