/* =================================================================
   Curage Canalisation Urgence 91 — Design System
   Direction : organique péri-urbain (vert forêt, terre, ambre)
   Palette : #2F5D3A / #1C2E20 / #F3EEE2 / #E0A24A
   Typo : Bricolage Grotesque (titres) + Inter Tight (corps)
   ================================================================= */

/* ---------- TOKENS ---------- */
:root {
  /* Couleurs de base imposées */
  --c-primary: #2F5D3A;
  --c-dark: #1C2E20;
  --c-light: #F3EEE2;
  --c-accent: #E0A24A;

  /* Nuances primaire (vert forêt) */
  --c-primary-900: #142b1b;
  --c-primary-800: #1f4128;
  --c-primary-700: #275032;
  --c-primary-600: #2F5D3A;
  --c-primary-500: #3a7148;
  --c-primary-400: #57906a;
  --c-primary-300: #84b393;
  --c-primary-200: #b6d4bf;
  --c-primary-100: #dcebe1;

  /* Nuances sombre (terre profonde) */
  --c-dark-900: #131e16;
  --c-dark-800: #1C2E20;
  --c-dark-700: #28402d;

  /* Nuances clair (crème / sable) */
  --c-light-100: #fbf9f3;
  --c-light-200: #F3EEE2;
  --c-light-300: #e8e0cd;
  --c-light-400: #d8ccb1;

  /* Nuances accent (ambre) */
  --c-accent-700: #b97f2c;
  --c-accent-600: #cf9038;
  --c-accent-500: #E0A24A;
  --c-accent-400: #ecb96f;
  --c-accent-300: #f3d09a;

  /* Sémantique */
  --bg: var(--c-light-200);
  --bg-alt: var(--c-light-100);
  --bg-dark: var(--c-dark-800);
  --surface: #ffffff;
  --text: #21281f;
  --text-soft: #4c5848;
  --text-invert: var(--c-light-100);
  --border: #e0d8c4;
  --border-strong: #cbbf9f;

  /* Échelle typo fluide */
  --fs-xs: clamp(0.74rem, 0.71rem + 0.15vw, 0.82rem);
  --fs-sm: clamp(0.84rem, 0.8rem + 0.2vw, 0.94rem);
  --fs-base: clamp(0.98rem, 0.94rem + 0.25vw, 1.08rem);
  --fs-md: clamp(1.1rem, 1.02rem + 0.4vw, 1.28rem);
  --fs-lg: clamp(1.3rem, 1.15rem + 0.7vw, 1.65rem);
  --fs-xl: clamp(1.65rem, 1.4rem + 1.2vw, 2.3rem);
  --fs-2xl: clamp(2.1rem, 1.7rem + 2vw, 3.1rem);
  --fs-3xl: clamp(2.6rem, 2rem + 3vw, 4.2rem);

  /* Familles */
  --font-head: "Bricolage Grotesque", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter Tight", system-ui, -apple-system, sans-serif;

  /* Espacements */
  --sp-1: 0.4rem;
  --sp-2: 0.8rem;
  --sp-3: 1.2rem;
  --sp-4: 1.8rem;
  --sp-5: 2.6rem;
  --sp-6: 3.6rem;
  --sp-7: 5rem;
  --sp-8: 7rem;

  /* Rayons */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Ombres */
  --sh-sm: 0 2px 8px rgba(28, 46, 32, 0.08);
  --sh-md: 0 10px 30px rgba(28, 46, 32, 0.12);
  --sh-lg: 0 24px 60px rgba(20, 43, 27, 0.18);
  --sh-accent: 0 12px 34px rgba(224, 162, 74, 0.35);

  /* Transitions / easing organique */
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 180ms var(--ease-soft);
  --t-mid: 360ms var(--ease-soft);
  --t-slow: 720ms var(--ease-out);

  --container: 1180px;
  --header-h: 76px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--c-dark-800);
}
:focus-visible {
  outline: 3px solid var(--c-accent-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- UTILITAIRES ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.2rem);
}
.section { padding-block: clamp(3.2rem, 7vw, 6rem); position: relative; }
.section--dark { background: var(--bg-dark); color: var(--text-invert); }
.section--dark h2, .section--dark h3 { color: var(--c-light-100); }
.section--alt { background: var(--bg-alt); }
.section--cream { background: linear-gradient(180deg, var(--c-light-100), var(--c-light-200)); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head); font-weight: 600;
  font-size: var(--fs-sm); letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--c-primary-600);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--c-accent-500);
}
.section--dark .eyebrow { color: var(--c-accent-400); }
.lead { font-size: var(--fs-md); color: var(--text-soft); max-width: 60ch; }
.section--dark .lead { color: #cdd6c8; }
.text-accent { color: var(--c-accent-600); }
.center { text-align: center; }
.center .lead, .center .eyebrow { margin-inline: auto; }
.section-head { max-width: 64ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; }
.section-head h2 { font-size: var(--fs-2xl); margin-bottom: var(--sp-3); }

/* ---------- BOUTONS ---------- */
.btn {
  --bg: var(--c-primary-600);
  --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--font-head); font-weight: 600;
  font-size: var(--fs-base); line-height: 1;
  padding: 0.95em 1.5em; border-radius: var(--r-pill);
  background: var(--bg); color: var(--fg);
  border: 2px solid transparent;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  position: relative; will-change: transform;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }
.btn-primary { --bg: var(--c-primary-600); box-shadow: var(--sh-md); }
.btn-primary:hover { --bg: var(--c-primary-700); box-shadow: var(--sh-lg); }
.btn-call {
  --bg: var(--c-accent-500); --fg: var(--c-dark-900);
  box-shadow: var(--sh-accent); font-weight: 700;
}
.btn-call:hover { --bg: var(--c-accent-400); }
.btn-ghost {
  background: transparent; color: var(--c-primary-700);
  border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--c-primary-600); background: var(--c-primary-100); }
.section--dark .btn-ghost { color: var(--c-light-100); border-color: rgba(243,238,226,0.35); }
.section--dark .btn-ghost:hover { background: rgba(243,238,226,0.1); border-color: var(--c-accent-400); }
.btn-lg { padding: 1.1em 1.9em; font-size: var(--fs-md); }
.btn-block { width: 100%; }
.btn-call .pulse-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--c-dark-800);
  box-shadow: 0 0 0 0 rgba(28,46,32,0.5); animation: ring 1.8s infinite;
}
@keyframes ring {
  0% { box-shadow: 0 0 0 0 rgba(28,46,32,0.45); }
  70% { box-shadow: 0 0 0 9px rgba(28,46,32,0); }
  100% { box-shadow: 0 0 0 0 rgba(28,46,32,0); }
}

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 249, 243, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--t-mid), border-color var(--t-mid), background var(--t-mid);
}
.site-header.scrolled {
  box-shadow: var(--sh-sm); border-color: var(--border);
  background: rgba(251, 249, 243, 0.94);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-3); min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: var(--font-head); font-weight: 800; font-size: 1.05rem;
  color: var(--c-dark-800); letter-spacing: -0.02em;
}
.brand-sub { font-size: 0.7rem; color: var(--c-primary-600); font-weight: 600; letter-spacing: 0.04em; }

.main-nav ul { display: flex; align-items: center; gap: 0.15rem; }
.main-nav a {
  display: inline-block; padding: 0.5rem 0.7rem; border-radius: var(--r-sm);
  font-size: var(--fs-sm); font-weight: 500; color: var(--text-soft);
  position: relative; transition: color var(--t-fast), background var(--t-fast);
}
.main-nav a::after {
  content: ""; position: absolute; left: 0.7rem; right: 0.7rem; bottom: 0.32rem;
  height: 2px; border-radius: 2px; background: var(--c-accent-500);
  transform: scaleX(0); transform-origin: left; transition: transform var(--t-mid);
}
.main-nav a:hover { color: var(--c-primary-700); }
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav a.active { color: var(--c-primary-700); font-weight: 600; }
.main-nav a.active::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 0.7rem; }
.header-tel {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-head); font-weight: 700; color: var(--c-primary-700);
  font-size: 1rem; white-space: nowrap;
}
.header-tel svg { width: 1.1em; height: 1.1em; }

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: var(--r-sm);
  background: var(--c-primary-600); position: relative;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; width: 22px; height: 2.5px;
  background: #fff; border-radius: 2px; transform: translateX(-50%);
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-toggle span { top: 50%; transform: translate(-50%, -50%); }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: translateX(-50%) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative; overflow: hidden;
  color: var(--text-invert);
  min-height: clamp(560px, 86vh, 820px);
  display: flex; align-items: center;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: -8% 0 -8% 0; z-index: -2;
  width: 100%; height: 116%; object-fit: cover;
  will-change: transform;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,43,27,0.55) 0%, rgba(20,43,27,0.35) 35%, rgba(28,46,32,0.85) 100%),
    radial-gradient(120% 80% at 15% 30%, rgba(47,93,58,0.45), transparent 60%);
}
.hero .container { position: relative; z-index: 1; padding-block: var(--sp-6); }
.hero-inner { max-width: 720px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: var(--sp-3); }
.hero h1 {
  color: #fff; font-size: var(--fs-3xl); font-weight: 800;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
  margin-bottom: var(--sp-3);
}
.hero h1 .hl { color: var(--c-accent-400); }
.hero p.lead { color: #eef2e9; font-size: var(--fs-md); margin-bottom: var(--sp-4); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; align-items: center; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1.4rem; margin-top: var(--sp-4);
  padding-top: var(--sp-3); border-top: 1px solid rgba(243,238,226,0.2);
}
.hero-meta .hm {
  display: flex; align-items: center; gap: 0.5rem; font-size: var(--fs-sm); color: #e7ecdf;
}
.hero-meta svg { width: 1.2em; height: 1.2em; color: var(--c-accent-400); flex: none; }
.hero-scroll {
  position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%);
  z-index: 1; color: rgba(243,238,226,0.7); font-size: var(--fs-xs);
  display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.hero-scroll .arrow {
  width: 22px; height: 22px; border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor; transform: rotate(45deg);
  animation: bob 2.2s var(--ease-soft) infinite;
}
@keyframes bob { 0%,100% { transform: rotate(45deg) translate(0,0);} 50%{ transform: rotate(45deg) translate(4px,4px);} }

/* ---------- BADGES / CHIPS ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.42rem 0.85rem; border-radius: var(--r-pill);
  font-size: var(--fs-xs); font-weight: 600; font-family: var(--font-head);
  background: rgba(243,238,226,0.15); color: #fff;
  border: 1px solid rgba(243,238,226,0.25); backdrop-filter: blur(4px);
}
.badge svg { width: 1em; height: 1em; color: var(--c-accent-400); }
.chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.35rem 0.8rem; border-radius: var(--r-pill);
  background: var(--c-primary-100); color: var(--c-primary-700);
  font-size: var(--fs-xs); font-weight: 600; border: 1px solid var(--c-primary-200);
}

/* ---------- BANDE RÉASSURANCE ---------- */
.reassurance { background: var(--c-dark-800); color: var(--c-light-200); }
.reassurance .reassurance-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.reassurance .ra {
  display: flex; align-items: center; gap: 0.85rem;
  padding: clamp(1.2rem,2.5vw,1.6rem) clamp(1rem,2.5vw,1.6rem);
  border-right: 1px solid rgba(243,238,226,0.12);
}
.reassurance .ra:last-child { border-right: none; }
.reassurance .ra-ico {
  width: 42px; height: 42px; flex: none; border-radius: 12px;
  display: grid; place-items: center; background: rgba(224,162,74,0.18); color: var(--c-accent-400);
}
.reassurance .ra-ico svg { width: 22px; height: 22px; }
.reassurance strong { font-family: var(--font-head); display: block; font-size: 0.98rem; color: #fff; }
.reassurance span { font-size: var(--fs-xs); color: #b7c2b1; }

/* ---------- GRILLES & CARTES ---------- */
.grid { display: grid; gap: var(--sp-4); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: clamp(1.4rem, 2.4vw, 2rem);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-mid), box-shadow var(--t-mid), border-color var(--t-mid);
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--c-primary-500), var(--c-accent-500));
  transform: scaleX(0); transform-origin: left; transition: transform var(--t-mid);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--c-primary-200); }
.card:hover::before { transform: scaleX(1); }

.service-card .svc-ico {
  width: 56px; height: 56px; border-radius: 16px; margin-bottom: var(--sp-3);
  display: grid; place-items: center;
  background: linear-gradient(140deg, var(--c-primary-100), var(--c-light-300));
  color: var(--c-primary-700);
  transition: transform var(--t-mid), background var(--t-mid), color var(--t-mid);
}
.service-card .svc-ico svg { width: 28px; height: 28px; }
.service-card:hover .svc-ico { background: var(--c-accent-500); color: var(--c-dark-900); transform: rotate(-6deg) scale(1.06); }
.service-card h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
.service-card p { color: var(--text-soft); font-size: var(--fs-sm); margin-bottom: var(--sp-3); }
.card-link {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-head); font-weight: 600; color: var(--c-primary-700);
  font-size: var(--fs-sm);
}
.card-link svg { width: 1.05em; height: 1.05em; transition: transform var(--t-fast); }
.card-link:hover svg { transform: translateX(4px); }

.feature {
  display: flex; gap: 1rem; align-items: flex-start;
}
.feature .ft-ico {
  width: 48px; height: 48px; flex: none; border-radius: 14px;
  display: grid; place-items: center; background: var(--c-primary-100); color: var(--c-primary-700);
}
.feature .ft-ico svg { width: 24px; height: 24px; }
.feature h3 { font-size: var(--fs-md); margin-bottom: 0.35rem; }
.feature p { color: var(--text-soft); font-size: var(--fs-sm); }
.section--dark .feature .ft-ico { background: rgba(224,162,74,0.16); color: var(--c-accent-400); }
.section--dark .feature p { color: #c2cbbb; }

/* ---------- LISTE À PUCES SVG ---------- */
.check-list { display: grid; gap: 0.75rem; }
.check-list li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: var(--fs-base); }
.check-list li::before {
  content: ""; flex: none; width: 22px; height: 22px; margin-top: 2px; border-radius: 50%;
  background:
    var(--c-primary-100)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232F5D3A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")
    center / 14px no-repeat;
}
.section--dark .check-list li::before { background-color: rgba(224,162,74,0.2); }

/* ---------- BLOCS IMAGE ---------- */
.media {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-lg); background: var(--c-dark-800);
}
.media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform var(--t-slow);
}
.media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(160deg, transparent 40%, rgba(28,46,32,0.35));
  mix-blend-mode: multiply;
}
.media:hover img { transform: scale(1.05); }
.media-tag {
  position: absolute; left: 1rem; bottom: 1rem; z-index: 2;
  background: rgba(28,46,32,0.78); color: #fff; backdrop-filter: blur(6px);
  padding: 0.5rem 0.9rem; border-radius: var(--r-pill);
  font-size: var(--fs-xs); font-family: var(--font-head); font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.media-tag svg { width: 1em; height: 1em; color: var(--c-accent-400); }
.media--detail { aspect-ratio: 3/4; }
.media--wide { aspect-ratio: 3/2; }

.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split--reverse .split-media { order: -1; }

.float-card {
  position: absolute; right: -1rem; bottom: -1.2rem; z-index: 3;
  background: var(--surface); border-radius: var(--r-md); padding: 1rem 1.2rem;
  box-shadow: var(--sh-lg); display: flex; align-items: center; gap: 0.8rem;
  border: 1px solid var(--border); max-width: 240px;
}
.float-card .fc-num { font-family: var(--font-head); font-weight: 800; font-size: 1.7rem; color: var(--c-primary-600); line-height: 1; }
.float-card .fc-txt { font-size: var(--fs-xs); color: var(--text-soft); }

/* ---------- PROCESS / ÉTAPES ---------- */
.steps { counter-reset: step; display: grid; gap: var(--sp-4); }
.steps.grid-4 { grid-template-columns: repeat(4, 1fr); }
.step {
  position: relative; padding: var(--sp-4) var(--sp-3) var(--sp-3);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-head); font-weight: 800; font-size: 1.5rem;
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--c-dark-800); color: var(--c-accent-400);
  position: absolute; top: -22px; left: var(--sp-3);
  box-shadow: var(--sh-md);
}
.step h3 { font-size: var(--fs-md); margin: var(--sp-3) 0 0.4rem; }
.step p { color: var(--text-soft); font-size: var(--fs-sm); }
.steps.connected .step:not(:last-child)::after {
  content: ""; position: absolute; top: 4px; right: -22px; width: 44px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--border-strong) 0 6px, transparent 6px 12px);
}

/* ---------- STATS / COMPTEURS ---------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); }
.stat { text-align: center; }
.stat .num {
  font-family: var(--font-head); font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 1; color: var(--c-accent-400);
  display: inline-flex; align-items: baseline;
}
.stat .num .suffix { font-size: 0.55em; color: var(--c-accent-300); margin-left: 0.1em; }
.stat .label { margin-top: 0.6rem; font-size: var(--fs-sm); color: #c2cbbb; }

/* ---------- TARIFS ---------- */
.price-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: var(--surface); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-md); border: 1px solid var(--border);
}
.price-table caption { text-align: left; padding: 0 0 0.8rem; color: var(--text-soft); font-size: var(--fs-sm); }
.price-table th, .price-table td { padding: 1rem 1.2rem; text-align: left; }
.price-table thead th {
  background: var(--c-dark-800); color: var(--c-light-200);
  font-family: var(--font-head); font-weight: 600; font-size: var(--fs-sm);
  letter-spacing: 0.02em;
}
.price-table tbody tr { border-top: 1px solid var(--border); }
.price-table tbody tr:nth-child(even) { background: var(--c-light-100); }
.price-table tbody td:first-child { font-weight: 600; color: var(--c-dark-800); }
.price-table .price { font-family: var(--font-head); font-weight: 700; color: var(--c-primary-700); white-space: nowrap; }
.price-table tr.highlight { background: var(--c-primary-100) !important; }
.price-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--sp-4); box-shadow: var(--sh-sm); display: flex; flex-direction: column;
}
.price-card.featured { border-color: var(--c-accent-500); box-shadow: var(--sh-accent); position: relative; }
.price-card.featured::after {
  content: "Le + demandé"; position: absolute; top: -12px; right: 1.2rem;
  background: var(--c-accent-500); color: var(--c-dark-900); font-family: var(--font-head);
  font-weight: 700; font-size: var(--fs-xs); padding: 0.3rem 0.8rem; border-radius: var(--r-pill);
}
.price-card .pc-name { font-family: var(--font-head); font-weight: 700; font-size: var(--fs-md); }
.price-card .pc-price { font-family: var(--font-head); font-weight: 800; font-size: 2.2rem; color: var(--c-primary-700); margin: 0.4rem 0; }
.price-card .pc-price small { font-size: 0.9rem; font-weight: 500; color: var(--text-soft); }
.price-card .check-list { margin: var(--sp-3) 0; flex: 1; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0.9rem; max-width: 820px; }
.faq details {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 0 1.3rem; box-shadow: var(--sh-sm); overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.faq details[open] { border-color: var(--c-primary-300); box-shadow: var(--sh-md); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.15rem 0; padding-right: 2rem;
  font-family: var(--font-head); font-weight: 600; font-size: var(--fs-md);
  color: var(--c-dark-800); position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 0; top: 1.35rem; width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232F5D3A' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform var(--t-mid);
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq details > *:not(summary) { padding-bottom: 1.2rem; color: var(--text-soft); font-size: var(--fs-base); }

/* ---------- AVIS / TÉMOIGNAGES ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-4); }
.review {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--sp-4); box-shadow: var(--sh-sm); display: flex; flex-direction: column; gap: 0.9rem;
}
.review .stars { display: flex; gap: 0.15rem; color: var(--c-accent-500); }
.review .stars svg { width: 18px; height: 18px; }
.review blockquote { font-size: var(--fs-base); color: var(--text); line-height: 1.6; }
.review .who { display: flex; align-items: center; gap: 0.7rem; margin-top: auto; }
.review .avatar {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: linear-gradient(140deg, var(--c-primary-500), var(--c-primary-700));
  color: #fff; display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem;
}
.review .who strong { display: block; font-size: var(--fs-sm); color: var(--c-dark-800); }
.review .who span { font-size: var(--fs-xs); color: var(--text-soft); }

/* ---------- BANDE CTA ---------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--c-primary-700), var(--c-dark-800));
  color: #fff; padding: clamp(2.2rem, 5vw, 3.6rem);
  box-shadow: var(--sh-lg);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; opacity: 0.5;
  background:
    radial-gradient(50% 120% at 90% 10%, rgba(224,162,74,0.35), transparent 60%),
    radial-gradient(40% 90% at 0% 100%, rgba(132,179,147,0.25), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; font-size: var(--fs-2xl); margin-bottom: var(--sp-2); }
.cta-band p { color: #e3eadd; max-width: 54ch; margin-bottom: var(--sp-4); }
.cta-band .cta-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

/* ---------- BREADCRUMB ---------- */
.breadcrumb { background: var(--c-light-300); border-bottom: 1px solid var(--border); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; padding-block: 0.9rem; font-size: var(--fs-sm); }
.breadcrumb li { display: flex; align-items: center; gap: 0.5rem; color: var(--text-soft); }
.breadcrumb li:not(:last-child)::after { content: "/"; color: var(--border-strong); }
.breadcrumb a { color: var(--c-primary-700); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--c-dark-800); font-weight: 600; }

/* ---------- ZONES ---------- */
.zones-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.7rem; }
.zone-chip {
  display: flex; align-items: center; gap: 0.55rem;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 0.85rem 1rem; font-size: var(--fs-sm); font-weight: 500;
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.zone-chip svg { width: 1.05em; height: 1.05em; color: var(--c-primary-500); flex: none; }
.zone-chip:hover { transform: translateY(-3px); border-color: var(--c-primary-300); box-shadow: var(--sh-sm); }

/* ---------- FORMULAIRE ---------- */
.form-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: clamp(1.6rem, 3vw, 2.4rem); box-shadow: var(--sh-md);
}
.form-row { display: grid; gap: var(--sp-3); }
.form-row.cols-2 { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: var(--sp-3); }
.field label { font-family: var(--font-head); font-weight: 600; font-size: var(--fs-sm); color: var(--c-dark-800); }
.field input, .field select, .field textarea {
  font: inherit; padding: 0.85rem 1rem; border-radius: var(--r-sm);
  border: 1.5px solid var(--border-strong); background: var(--c-light-100); color: var(--text);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--c-primary-500); background: #fff;
  box-shadow: 0 0 0 4px rgba(47,93,58,0.12);
}
.field .hint { font-size: var(--fs-xs); color: var(--text-soft); }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--c-dark-900); color: #c2cbbb; padding-top: var(--sp-7); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--sp-5);
  padding-bottom: var(--sp-6);
}
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: var(--c-accent-400); }
.site-footer p { font-size: var(--fs-sm); margin-top: var(--sp-3); line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-head); font-size: var(--fs-sm); text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--c-accent-400); margin-bottom: var(--sp-3); font-weight: 600;
}
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a, .footer-col li { font-size: var(--fs-sm); color: #c2cbbb; transition: color var(--t-fast); }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.7rem; }
.footer-contact svg { width: 1.1em; height: 1.1em; color: var(--c-accent-400); flex: none; margin-top: 3px; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(243,238,226,0.12); padding-block: var(--sp-4);
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
}
.footer-bottom p { margin: 0; font-size: var(--fs-xs); color: #93a08c; }
.footer-bottom nav { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.footer-bottom a { font-size: var(--fs-xs); color: #93a08c; }
.footer-bottom a:hover { color: #fff; }

/* ---------- BARRE STICKY MOBILE ---------- */
.mobile-callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; gap: 0.6rem; padding: 0.6rem;
  background: rgba(28,46,32,0.96); backdrop-filter: blur(10px);
  border-top: 1px solid rgba(243,238,226,0.15);
  transform: translateY(120%); transition: transform var(--t-mid);
}
.mobile-callbar.show { transform: translateY(0); }
.mobile-callbar .btn { flex: 1; padding: 0.85em 1em; font-size: var(--fs-sm); }

/* ---------- REVEAL / ANIMATIONS ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--t-slow), transform var(--t-slow); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity var(--t-slow), transform var(--t-slow); }
.reveal-left.in-view { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity var(--t-slow), transform var(--t-slow); }
.reveal-right.in-view { opacity: 1; transform: none; }
.reveal-zoom { opacity: 0; transform: scale(0.94); transition: opacity var(--t-slow), transform var(--t-slow); }
.reveal-zoom.in-view { opacity: 1; transform: none; }
/* cascade : enfants décalés */
[data-stagger] > * { opacity: 0; transform: translateY(24px); transition: opacity var(--t-slow), transform var(--t-slow); }
[data-stagger].in-view > * { opacity: 1; transform: none; }
[data-stagger].in-view > *:nth-child(1){ transition-delay: .05s; }
[data-stagger].in-view > *:nth-child(2){ transition-delay: .13s; }
[data-stagger].in-view > *:nth-child(3){ transition-delay: .21s; }
[data-stagger].in-view > *:nth-child(4){ transition-delay: .29s; }
[data-stagger].in-view > *:nth-child(5){ transition-delay: .37s; }
[data-stagger].in-view > *:nth-child(6){ transition-delay: .45s; }
[data-stagger].in-view > *:nth-child(7){ transition-delay: .53s; }
[data-stagger].in-view > *:nth-child(8){ transition-delay: .61s; }
/* accent ambre qui s'allume */
.ember { transition: color var(--t-mid), text-shadow var(--t-mid); }
.in-view .ember, .ember.lit { color: var(--c-accent-400); text-shadow: 0 0 24px rgba(224,162,74,0.35); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps.grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
  .steps.connected .step:not(:last-child)::after { display: none; }
}
@media (max-width: 920px) {
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .header-tel { display: none; }
  .reassurance .reassurance-grid { grid-template-columns: repeat(2, 1fr); }
  .reassurance .ra:nth-child(2) { border-right: none; }
  .reassurance .ra { border-bottom: 1px solid rgba(243,238,226,0.12); }

  .main-nav.open {
    display: block; position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
    background: var(--c-light-100); padding: var(--sp-4);
    overflow-y: auto; animation: slideIn var(--t-mid);
  }
  .main-nav.open ul { flex-direction: column; align-items: stretch; gap: 0.2rem; }
  .main-nav.open a {
    padding: 0.95rem 1rem; font-size: var(--fs-md); border-radius: var(--r-md);
    border: 1px solid var(--border);
  }
  .main-nav.open a::after { display: none; }
  .main-nav.open a.active { background: var(--c-primary-100); }
  .main-nav.open .mnav-cta { margin-top: var(--sp-3); display: grid; gap: 0.7rem; }
  @keyframes slideIn { from { opacity: 0; transform: translateY(-8px);} to { opacity:1; transform:none;} }
  .mobile-callbar { display: flex; }
}
@media (max-width: 720px) {
  .grid-2, .grid-3, .split { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .form-row.cols-2 { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .float-card { position: static; margin-top: 1rem; max-width: none; }
  .price-table { display: block; overflow-x: auto; white-space: nowrap; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  body { padding-bottom: 72px; }
}
@media (max-width: 460px) {
  .grid-4 { grid-template-columns: 1fr; }
  .steps.grid-4 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .zones-grid { grid-template-columns: 1fr; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important; scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-zoom, [data-stagger] > * {
    opacity: 1 !important; transform: none !important;
  }
  .hero-bg { transform: none !important; }
  .hero-scroll .arrow, .btn-call .pulse-dot { animation: none !important; }
}
