/* ===================================================================
   Jarrar Rénovation — Feuille de styles premium
   =================================================================== */

:root {
  /* Palette */
  --off-white: #FAF8F4;
  --beige: #EFE8DC;
  --beige-deep: #E4DACA;
  --pearl: #D9D5CE;
  --graphite: #2C2A27;
  --graphite-soft: #4A4742;
  --terracotta: #BE6A47;
  --terracotta-dark: #A6573A;
  --sand: #D9C2A6;
  --green: #6E8268;
  --green-dark: #5C6F57;
  --navy: #29384A;
  --line: rgba(44, 42, 39, 0.10);
  --line-soft: rgba(44, 42, 39, 0.06);
  --white: #ffffff;

  /* Typo */
  --display: "Fraunces", Georgia, "Times New Roman", serif;
  --body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --maxw: 1200px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(44, 42, 39, 0.05);
  --shadow: 0 14px 40px rgba(44, 42, 39, 0.10);
  --shadow-lg: 0 28px 70px rgba(44, 42, 39, 0.16);
  --header-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--body);
  color: var(--graphite);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

/* ---------- Typo helpers ---------- */
h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; color: var(--graphite); }
.kicker {
  display: inline-block;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 14px;
}
.kicker-light { color: var(--sand); }

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.75rem); }
.section-lead { margin-top: 18px; font-size: 1.075rem; color: var(--graphite-soft); }

/* ===================================================================
   BUTTONS
   =================================================================== */
.btn {
  --btn-pad-y: 13px;
  --btn-pad-x: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn .ico { width: 17px; height: 17px; fill: currentColor; }

.btn-primary { background: var(--terracotta); color: #fff; box-shadow: 0 8px 22px rgba(190, 106, 71, 0.32); }
.btn-primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(190, 106, 71, 0.40); }

.btn-outline { background: transparent; color: var(--graphite); border-color: var(--line); }
.btn-outline:hover { border-color: var(--terracotta); color: var(--terracotta); transform: translateY(-2px); }

.btn-ghost { background: rgba(44,42,39,0.04); color: var(--graphite); }
.btn-ghost:hover { background: rgba(44,42,39,0.09); }

.btn-light { background: #fff; color: var(--graphite); box-shadow: var(--shadow-sm); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-text-light { background: transparent; color: #fff; padding-left: 8px; padding-right: 8px; }
.btn-text-light:hover { color: var(--sand); }

.btn-lg { --btn-pad-y: 16px; --btn-pad-x: 30px; font-size: 1rem; }
.btn-sm { --btn-pad-y: 10px; --btn-pad-x: 18px; font-size: 0.86rem; }
.btn-block { width: 100%; }

/* ===================================================================
   HEADER
   =================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 248, 244, 0.72);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(250, 248, 244, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--graphite), var(--graphite-soft));
  color: var(--sand);
  font-family: var(--display); font-weight: 700; font-size: 1.05rem;
  letter-spacing: 0.02em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-family: var(--display); font-weight: 600; font-size: 1.18rem; }
.brand-tag { font-size: 0.74rem; color: var(--graphite-soft); letter-spacing: 0.01em; }

.main-nav { display: flex; gap: 4px; }
.main-nav a {
  font-size: 0.93rem; font-weight: 500; color: var(--graphite-soft);
  padding: 9px 13px; border-radius: 8px; position: relative;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.main-nav a:hover { color: var(--graphite); background: rgba(44,42,39,0.05); }

.header-actions { display: flex; align-items: center; gap: 10px; }
.btn-call span { font-variant-numeric: tabular-nums; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: rgba(44,42,39,0.05); border: none; border-radius: 12px;
  cursor: pointer; position: relative;
}
.nav-toggle span {
  position: absolute; left: 12px; right: 12px; height: 2px; background: var(--graphite); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 15px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  background: rgba(250,248,244,0.98);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 12px 24px 24px;
  animation: slideDown .3s var(--ease);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav a { padding: 13px 6px; font-size: 1.05rem; font-weight: 500; border-bottom: 1px solid var(--line-soft); }
.mobile-menu-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }

/* ===================================================================
   HERO
   =================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 64px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); animation: heroZoom 14s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(28,26,24,0.78) 0%, rgba(28,26,24,0.50) 42%, rgba(28,26,24,0.12) 78%),
    linear-gradient(0deg, rgba(28,26,24,0.45), rgba(28,26,24,0) 40%);
}
.hero-content { position: relative; z-index: 1; max-width: 720px; color: #fff; }
.hero-eyebrow { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sand); margin-bottom: 18px; }
.hero-title { font-size: clamp(2.4rem, 6vw, 4.2rem); font-weight: 600; color: #fff; }
.hero-sub { margin-top: 22px; font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: rgba(255,255,255,0.88); max-width: 600px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; align-items: center; }
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px 12px; margin-top: 40px;
}
.hero-badges li {
  font-size: 0.85rem; font-weight: 500; color: #fff;
  padding: 8px 15px; border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
}
.hero-badges li strong { color: var(--sand); font-weight: 700; }

/* ===================================================================
   TRUST BAR
   =================================================================== */
.trust-bar { background: var(--graphite); color: #fff; padding: 28px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 4px; padding: 6px 4px; }
.trust-item + .trust-item { border-left: 1px solid rgba(255,255,255,0.10); }
.trust-value { font-weight: 600; font-size: 0.98rem; }
.trust-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.stars { color: #E8B23A; letter-spacing: 2px; font-size: 0.95rem; }
.trust-item .stars { margin-bottom: 2px; }
.ico-line { width: 24px; height: 24px; fill: none; stroke: var(--sand); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* ===================================================================
   PROBLEMS
   =================================================================== */
.problems { background: var(--off-white); }
.cards-grid { display: grid; gap: 22px; }
.problems-grid { grid-template-columns: repeat(3, 1fr); }
.problem-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.problem-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.problem-ico {
  display: inline-grid; place-items: center; width: 52px; height: 52px;
  border-radius: 14px; background: var(--beige); margin-bottom: 16px;
}
.problem-ico svg { width: 26px; height: 26px; fill: none; stroke: var(--terracotta); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.problem-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.problem-card p { font-size: 0.94rem; color: var(--graphite-soft); }

/* ===================================================================
   SERVICES
   =================================================================== */
.services { background: linear-gradient(180deg, var(--beige) 0%, var(--off-white) 60%); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-media { aspect-ratio: 4/3; overflow: hidden; background: var(--pearl); }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.service-card:hover .service-media img { transform: scale(1.07); }
.service-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.service-body h3 { font-size: 1.22rem; margin-bottom: 8px; }
.service-body > p { font-size: 0.92rem; color: var(--graphite-soft); }
.service-benefits { margin: 14px 0 18px; display: flex; flex-direction: column; gap: 7px; }
.service-benefits li { font-size: 0.86rem; color: var(--graphite-soft); padding-left: 22px; position: relative; }
.service-benefits li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 12px; height: 7px;
  border-left: 2px solid var(--green); border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}
.service-body .btn { margin-top: auto; align-self: flex-start; }

/* ===================================================================
   AVANT / APRÈS
   =================================================================== */
.beforeafter { background: var(--off-white); }
.ba-note { text-align: center; font-size: 0.84rem; color: var(--graphite-soft); margin: -24px auto 30px; max-width: 560px; font-style: italic; }
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ba-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/5; box-shadow: var(--shadow); user-select: none; background: var(--pearl);
}
.ba-img { position: absolute; inset: 0; }
.ba-img img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-before { clip-path: inset(0 0 0 50%); }
/* Le calque "avant" reçoit un rendu défraîchi (peinture terne, jaunie, sombre) */
.ba-before img { filter: saturate(0.5) brightness(0.8) contrast(0.92) sepia(0.28); }
.ba-img::after {
  position: absolute; top: 14px; padding: 5px 12px; border-radius: 999px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff; backdrop-filter: blur(4px);
}
.ba-after::after { content: "Après"; right: 14px; background: rgba(110,130,104,0.85); }
.ba-before::after { content: "Avant"; left: 14px; background: rgba(44,42,39,0.7); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 2px; transform: translateX(-50%);
  background: rgba(255,255,255,0.9); pointer-events: none; box-shadow: 0 0 0 1px rgba(0,0,0,0.06);
}
.ba-handle span {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%; background: #fff; box-shadow: var(--shadow);
  display: grid; place-items: center;
}
.ba-handle span::before, .ba-handle span::after {
  content: ""; position: absolute; width: 0; height: 0; border: 5px solid transparent;
}
.ba-handle span::before { border-right-color: var(--graphite); left: 9px; }
.ba-handle span::after { border-left-color: var(--graphite); right: 9px; }
.ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize;
}
.ba-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 16px 14px;
  font-size: 0.88rem; font-weight: 600; color: #fff;
  background: linear-gradient(0deg, rgba(28,26,24,0.7), transparent);
  pointer-events: none;
}

/* ===================================================================
   RÉALISATIONS
   =================================================================== */
.realisations { background: linear-gradient(180deg, var(--off-white) 0%, var(--beige) 100%); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.gal-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.gal-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.gal-media { aspect-ratio: 1/1; overflow: hidden; background: var(--pearl); }
.gal-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gal-card:hover .gal-media img { transform: scale(1.08); }
.gal-body { padding: 18px 18px 20px; }
.gal-type { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--terracotta); margin-bottom: 8px; }
.gal-body h3 { font-size: 1.08rem; margin-bottom: 6px; }
.gal-body p { font-size: 0.88rem; color: var(--graphite-soft); margin-bottom: 12px; }
.gal-link { font-size: 0.86rem; font-weight: 600; color: var(--graphite); transition: color .2s var(--ease); }
.gal-link:hover { color: var(--terracotta); }

/* ===================================================================
   MÉTHODE / TIMELINE
   =================================================================== */
.method { background: var(--graphite); color: #fff; }
.method .section-head h2, .method .kicker { color: #fff; }
.method .kicker { color: var(--sand); }
.method .section-lead { color: rgba(255,255,255,0.7); }
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px 30px; }
.tl-step { position: relative; padding: 28px 24px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--radius); transition: background .3s var(--ease), transform .3s var(--ease); }
.tl-step:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.tl-num {
  display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
  background: var(--terracotta); color: #fff; font-family: var(--display); font-weight: 700; font-size: 1.2rem;
  margin-bottom: 16px;
}
.tl-step h3 { color: #fff; font-size: 1.12rem; margin-bottom: 8px; }
.tl-step p { font-size: 0.9rem; color: rgba(255,255,255,0.72); }

/* ===================================================================
   POURQUOI
   =================================================================== */
.why { background: var(--off-white); }
.why-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center; }
.why-text h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.why-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.why-grid li {
  display: flex; align-items: center; gap: 12px; padding: 16px 18px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; font-weight: 500; font-size: 0.95rem;
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), border-color .25s var(--ease);
}
.why-grid li:hover { transform: translateY(-3px); border-color: var(--green); }
.why-ico { flex: none; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: #fff; font-size: 0.78rem; }

/* ===================================================================
   AVIS
   =================================================================== */
.reviews { background: linear-gradient(180deg, var(--beige) 0%, var(--off-white) 100%); }
.reviews-scores { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 18px; }
.score-pill { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 9px 18px; font-size: 0.9rem; color: var(--graphite-soft); box-shadow: var(--shadow-sm); }
.score-pill strong { color: var(--graphite); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.review-card .stars { font-size: 1.05rem; margin-bottom: 16px; }
.review-card blockquote { font-family: var(--display); font-size: 1.12rem; line-height: 1.5; color: var(--graphite); }
.review-card figcaption { display: flex; align-items: center; gap: 10px; margin-top: 22px; font-weight: 600; font-size: 0.92rem; }
.rv-avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--beige-deep); color: var(--graphite); font-family: var(--display); font-weight: 700; }
.rv-src { color: var(--graphite-soft); font-weight: 400; }

/* ===================================================================
   DEVIS
   =================================================================== */
.quote { background: var(--navy); color: #fff; }
.quote-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.quote-aside h2 { color: #fff; font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
.quote-aside > p { color: rgba(255,255,255,0.78); margin-top: 16px; }
.quote-points { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.quote-points li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.9); font-weight: 500; }
.quote-points li span { width: 22px; height: 22px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--green); font-size: 0.72rem; color: #fff; }
.quote-call { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.14); }
.quote-call span { display: block; font-size: 0.92rem; color: rgba(255,255,255,0.7); margin-bottom: 12px; }

.quote-form { background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field label { font-size: 0.84rem; font-weight: 600; color: var(--graphite); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  font-family: var(--body); font-size: 0.95rem; color: var(--graphite);
  padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 11px;
  background: var(--off-white); transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--terracotta); background: #fff;
  box-shadow: 0 0 0 4px rgba(190,106,71,0.12);
}
.field input.invalid, .field select.invalid { border-color: #c0563f; box-shadow: 0 0 0 4px rgba(192,86,63,0.12); }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.form-note { margin-top: 16px; font-size: 0.82rem; color: var(--graphite-soft); }
.form-note.success { color: var(--green-dark); font-weight: 600; }
.form-note.error { color: #c0563f; font-weight: 600; }

/* ===================================================================
   ZONE / MAPS
   =================================================================== */
.zone { background: var(--off-white); }
.zone-inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 32px; align-items: stretch; }
.zone-info { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.zone-row { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.zone-row:first-child { padding-top: 0; }
.zone-ico { flex: none; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 12px; background: var(--beige); }
.zone-ico svg { width: 24px; height: 24px; fill: none; stroke: var(--terracotta); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.zone-row h3 { font-size: 1.02rem; margin-bottom: 3px; }
.zone-row p { font-size: 0.94rem; color: var(--graphite-soft); }
.zone-actions { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.zone-map { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 420px; border: 1px solid var(--line); background: var(--beige); }
.zone-map iframe { position: relative; z-index: 1; width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: saturate(0.92); }
/* Placeholder carte (sous l'iframe) — évite tout bloc vide si Maps ne charge pas */
.zone-map-placeholder {
  position: absolute; inset: 0; z-index: 0; display: grid; place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(190,106,71,0.10), transparent 60%),
    linear-gradient(135deg, #ece4d6 0%, #e3d8c6 100%);
  background-color: #e7ddcd;
}
.zone-map-placeholder::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(44,42,39,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44,42,39,0.06) 1px, transparent 1px),
    linear-gradient(rgba(44,42,39,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44,42,39,0.04) 1px, transparent 1px);
  background-size: 96px 96px, 96px 96px, 24px 24px, 24px 24px;
}
.zone-map-placeholder::after {
  content: ""; position: absolute; left: -10%; top: 58%; width: 120%; height: 38px;
  background: rgba(110,130,104,0.18); transform: rotate(-7deg);
}
.zmp-pin {
  position: relative; z-index: 2; width: 58px; height: 58px; display: grid; place-items: center;
  border-radius: 50%; background: #fff; box-shadow: var(--shadow); margin-bottom: 14px;
  animation: pinPulse 2.6s var(--ease) infinite;
}
.zmp-pin svg { width: 30px; height: 30px; fill: none; stroke: var(--terracotta); stroke-width: 1.6; }
.zmp-chip {
  position: relative; z-index: 2; background: #fff; color: var(--graphite); font-size: 0.84rem; font-weight: 600;
  padding: 9px 16px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
@keyframes pinPulse { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@media (prefers-reduced-motion: reduce) { .zmp-pin { animation: none; } }

/* ===================================================================
   FAQ
   =================================================================== */
.faq { background: linear-gradient(180deg, var(--beige) 0%, var(--off-white) 100%); }
.faq-inner { max-width: 820px; margin: 0 auto; }
.accordion { display: flex; flex-direction: column; gap: 12px; }
.acc-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: box-shadow .3s var(--ease), border-color .3s var(--ease); }
.acc-item.open { box-shadow: var(--shadow); border-color: transparent; }
.acc-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--display); font-size: 1.08rem; font-weight: 600; color: var(--graphite);
  padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.acc-ico { flex: none; width: 22px; height: 22px; position: relative; }
.acc-ico::before, .acc-ico::after { content: ""; position: absolute; background: var(--terracotta); border-radius: 2px; transition: transform .3s var(--ease); }
.acc-ico::before { top: 10px; left: 0; right: 0; height: 2px; }
.acc-ico::after { left: 10px; top: 0; bottom: 0; width: 2px; }
.acc-item.open .acc-ico::after { transform: scaleY(0); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.acc-a p { padding: 0 22px 22px; font-size: 0.96rem; color: var(--graphite-soft); }

/* ===================================================================
   CTA FINAL
   =================================================================== */
.cta-final { background: linear-gradient(135deg, var(--terracotta) 0%, var(--terracotta-dark) 100%); color: #fff; text-align: center; }
.cta-final-inner { max-width: 720px; margin: 0 auto; }
.cta-final h2 { color: #fff; font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
.cta-final p { margin-top: 16px; font-size: 1.1rem; color: rgba(255,255,255,0.92); }
.cta-final-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }
.cta-final .btn-primary { background: #fff; color: var(--terracotta-dark); box-shadow: 0 10px 30px rgba(0,0,0,0.18); }
.cta-final .btn-primary:hover { background: var(--off-white); }
.cta-final-reminders { display: flex; flex-wrap: wrap; gap: 10px 12px; justify-content: center; margin-top: 34px; }
.cta-final-reminders li { font-size: 0.85rem; font-weight: 600; padding: 7px 15px; border-radius: 999px; background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.28); }

/* ===================================================================
   FOOTER
   =================================================================== */
.site-footer { background: var(--graphite); color: rgba(255,255,255,0.75); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand-name { font-family: var(--display); font-size: 1.4rem; color: #fff; display: block; margin-bottom: 12px; }
.footer-brand p { font-size: 0.92rem; max-width: 320px; margin-bottom: 14px; }
.footer-rate { color: rgba(255,255,255,0.85); font-size: 0.85rem; margin-left: 6px; }
.footer-col h3 { font-family: var(--body); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sand); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-contact li { font-size: 0.92rem; color: rgba(255,255,255,0.72); transition: color .2s var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; padding-top: 24px; font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* ===================================================================
   MOBILE FLOATING BAR
   =================================================================== */
.mobile-bar { display: none; }

/* ===================================================================
   REVEAL ANIMATIONS
   =================================================================== */
.reveal, .reveal-stagger > * { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in, .reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .04s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .10s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .22s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .28s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .34s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: .40s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: .46s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none; }
  .hero-img { animation: none; transform: none; }
}

/* lazy image fade */
.lazy { opacity: 0; transition: opacity .6s var(--ease); }
.lazy.loaded { opacity: 1; }
.hero-img.loaded { opacity: 1; }

/* image fallback (broken / offline) */
.img-fallback {
  background: linear-gradient(135deg, var(--beige-deep), var(--pearl)) !important;
  position: relative;
}
.img-fallback::after {
  content: attr(data-label); position: absolute; inset: 0; display: grid; place-items: center;
  padding: 12px; text-align: center; font-family: var(--display); font-size: 0.92rem;
  color: var(--graphite-soft); opacity: 0.8;
}

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 920px) {
  .main-nav { display: none; }
  .btn-call { display: none; }
  .nav-toggle { display: block; }
  .header-actions .btn-primary { display: none; }
  .why-inner { grid-template-columns: 1fr; gap: 36px; }
  .quote-inner { grid-template-columns: 1fr; gap: 32px; }
  .zone-inner { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); gap: 22px 12px; }
  .trust-item:nth-child(3n+1) { border-left: none; }
}

@media (max-width: 760px) {
  .problems-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero { min-height: 0; padding-top: calc(var(--header-h) + 56px); padding-bottom: 56px; }
  .hero-overlay { background: linear-gradient(0deg, rgba(28,26,24,0.82) 0%, rgba(28,26,24,0.45) 100%); }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .mobile-bar {
    display: flex; position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 95; gap: 10px;
    padding: 9px; background: rgba(250,248,244,0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow);
  }
  .mobile-bar a { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 7px; padding: 13px; border-radius: 11px; font-weight: 600; font-size: 0.92rem; }
  .mb-call { background: rgba(44,42,39,0.06); color: var(--graphite); }
  .mb-call .ico { width: 16px; height: 16px; fill: currentColor; }
  .mb-quote { background: var(--terracotta); color: #fff; }
  body { padding-bottom: 78px; }
  .site-footer { padding-bottom: 90px; }
}

@media (max-width: 460px) {
  .container { padding: 0 18px; }
  .gallery-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .timeline { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(odd) { border-left: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-tag { display: none; }
  .quote-form { padding: 22px; }
}
