﻿/*
Theme Name: Roze — Couverture Zinguerie
Theme URI: https://couverture-zinguerie-roze.fr
Author: Couverture Zinguerie Roze
Description: Thème sur mesure pour Couverture Zinguerie Roze. Design system inspiré de Linear/Notion : animations transform/opacity uniquement, transitions 150–250 ms, grille 8 px, états hover/active/focus/loading/vide/erreur/succès. Polices auto-hébergées (RGPD).
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 8.1
License: GNU General Public License v2 or later
Text Domain: roze
*/

/* ===================================================================
   Design tokens — grille 8 px, palette ardoise + cuivre
   =================================================================== */

/* Polices auto-hébergées (RGPD : aucune requête vers Google) */
@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('assets/fonts/manrope-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('assets/fonts/fraunces-latin.woff2') format('woff2');
}

:root {
  /* Palette : bleu ardoise (confiance) + anthracite + orange (action) */
  --slate-950: #14243a;
  --slate-900: #1f3a5f;
  --slate-800: #27466e;
  --slate-700: #3a3a3a;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;

  --text: #3a3a3a;

  --accent:      #f28c28;
  --accent-dark: #d97917;
  --accent-soft: #fdf0e0;
  --on-accent:   #1f3a5f; /* texte marine sur orange : contraste AA */

  --green-600: #16a34a;
  --green-soft: #f0fdf4;
  --red-600: #dc2626;
  --red-soft: #fef2f2;

  --white: #ffffff;
  --ring: rgba(242, 140, 40, 0.4);

  --font-sans: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;

  /* Grille 8 px */
  --s-1: 8px; --s-2: 16px; --s-3: 24px; --s-4: 32px;
  --s-5: 40px; --s-6: 48px; --s-8: 64px; --s-12: 96px;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 10px 30px -12px rgba(15, 23, 42, 0.25);
  --shadow-lg: 0 24px 60px -20px rgba(15, 23, 42, 0.35);

  /* Mouvements : 150–250 ms, courbes douces */
  --t-fast: 150ms;
  --t-base: 200ms;
  --t-slow: 250ms;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --container: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { line-height: 1.15; color: var(--slate-900); margin: 0 0 .5em; }
h1 { font-family: var(--font-serif); font-weight: 600; font-size: clamp(2rem, 4.5vw, 3.4rem); letter-spacing: -0.01em; }
h2 { font-family: var(--font-serif); font-weight: 600; font-size: clamp(1.6rem, 3.2vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 var(--s-2); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2rem); }

/* Accessibilité */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--slate-900); color: #fff; padding: var(--s-1) var(--s-2); border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

:focus-visible { outline: 3px solid var(--ring); outline-offset: 2px; border-radius: 4px; }

/* ===================== BOUTONS — hover / active / focus / loading ===================== */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-1);
  font-weight: 700; font-size: .98rem; padding: 14px 24px;
  border-radius: 999px; border: 2px solid transparent; cursor: pointer;
  font-family: inherit;
  transition: transform var(--t-fast) var(--ease), background-color var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease), color var(--t-base) var(--ease);
  white-space: nowrap;
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(1px) scale(.99); transition-duration: var(--t-fast); }

.btn-primary { background: var(--accent); color: var(--on-accent); box-shadow: 0 8px 20px -8px var(--accent); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-ghost { background: transparent; color: var(--slate-900); border-color: var(--slate-200); }
.btn-ghost:hover { border-color: var(--slate-400); background: var(--slate-50); }
.btn-block { width: 100%; }

/* État loading : spinner (rotation = transform uniquement) */
.btn.is-loading { pointer-events: none; color: transparent; }
.btn.is-loading::after {
  content: ""; position: absolute; width: 18px; height: 18px;
  border: 2.5px solid rgba(31,58,95,.35); border-top-color: var(--on-accent); border-radius: 50%;
  animation: roze-spin .6s linear infinite;
}
@keyframes roze-spin { to { transform: rotate(360deg); } }

.eyebrow {
  text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 700;
  color: var(--accent); margin: 0 0 var(--s-1);
}
.eyebrow-light { color: #fbbf8f; }

/* ===================== ALERTES — succès / erreur (état système) ===================== */
.alert {
  display: flex; align-items: flex-start; gap: var(--s-1);
  padding: var(--s-2) var(--s-3); border-radius: var(--radius);
  font-weight: 600; margin-bottom: var(--s-3);
  animation: roze-enter var(--t-slow) var(--ease-out) both;
}
.alert-success { background: var(--green-soft); color: var(--green-600); border: 1px solid #bbf7d0; }
.alert-error { background: var(--red-soft); color: var(--red-600); border: 1px solid #fecaca; }
@keyframes roze-enter {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===================== EN-TÊTE ===================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--slate-100);
}
body.admin-bar .site-header { top: var(--wp-admin--admin-bar--height, 32px); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: flex; align-items: center; gap: var(--s-1); }
.brand-mark {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
  background: var(--slate-900); color: #fff;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-size: 1.02rem; color: var(--slate-900); letter-spacing: -0.01em; }
.brand-text em { font-style: normal; font-size: .8rem; color: var(--accent); font-weight: 700; letter-spacing: .04em; }

.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-list a {
  display: inline-block; padding: var(--s-1) 14px; border-radius: 999px;
  font-weight: 600; font-size: .95rem; color: var(--slate-700);
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.nav-list a:hover { background: var(--slate-100); color: var(--slate-900); }
.nav-list a:active { transform: scale(.98); }
.nav-cta { background: var(--slate-900); color: #fff !important; }
.nav-cta:hover { background: var(--accent) !important; }

.nav-toggle { display: none; }

/* ===================== HERO ===================== */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(242,140,40,.16), transparent 60%),
    linear-gradient(180deg, var(--slate-900), var(--slate-950));
  color: #fff;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
}
.hero-inner { position: relative; z-index: 1; padding-top: clamp(3.5rem, 8vw, 6.5rem); padding-bottom: clamp(3.5rem, 7vw, 6rem); }
.hero-content { max-width: 720px; }
.hero h1 { color: #fff; }
.hero .eyebrow { color: #fbbf8f; }
.hero-lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--slate-200); max-width: 600px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-2); margin: var(--s-4) 0; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.hero .btn-ghost:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: var(--s-2) var(--s-5); list-style: none; margin: 0;
  padding: var(--s-3) 0 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-trust li { font-size: .95rem; color: var(--slate-200); }
.hero-trust strong { display: block; font-family: var(--font-serif); font-size: 1.5rem; color: #fff; }

/* ===================== SECTIONS ===================== */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-muted { background: var(--slate-50); }
.section-head { max-width: 640px; margin: 0 0 var(--s-5); }
.section-sub { color: var(--slate-500); font-size: 1.05rem; }

/* Apparition au scroll — opacity + transform uniquement */
.reveal { opacity: 0; transform: translateY(16px); }
.reveal.is-visible {
  opacity: 1; transform: translateY(0);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out);
}

/* Cartes services — hover : transform + ombre via ::after en opacity */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
.card {
  position: relative;
  background: #fff; border: 1px solid var(--slate-100); border-radius: var(--radius-lg);
  padding: var(--s-4); box-shadow: var(--shadow-sm);
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
  will-change: transform;
}
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  box-shadow: var(--shadow-md); opacity: 0;
  transition: opacity var(--t-base) var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--slate-200); }
.card:hover::after { opacity: 1; }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent); margin-bottom: var(--s-2);
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: var(--s-1); }
.card p { color: var(--slate-500); margin: 0; font-size: .98rem; }

/* Section accent (entretien) */
.section-accent {
  background: linear-gradient(180deg, var(--slate-900), var(--slate-800));
  color: #fff;
}
.section-accent h2 { color: #fff; }
.section-accent p { color: var(--slate-200); }
.split { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.stat-headline { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.stat-headline span { color: var(--accent); }
.section-accent .stat-headline span { color: #fdba74; }
.split-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--s-1); }
.split-list li {
  display: flex; align-items: center; gap: var(--s-2); background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); padding: 14px var(--s-2); border-radius: 12px; font-weight: 600;
}
.check {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: var(--accent); color: var(--on-accent); font-size: .85rem; font-weight: 800;
}

/* Chiffres clés */
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-2); }
.stat-box {
  background: var(--accent-soft); border: 1px solid #f6ddca; border-radius: var(--radius);
  padding: var(--s-3); text-align: center;
}
.stat-box strong { display: block; font-family: var(--font-serif); font-size: 2.2rem; color: var(--accent-dark); line-height: 1; }
.stat-box span { color: var(--slate-500); font-size: .9rem; font-weight: 600; }

/* Avis */
.review {
  background: #fff; border: 1px solid var(--slate-100); border-radius: var(--radius-lg);
  padding: var(--s-4); margin: 0; box-shadow: var(--shadow-sm);
}
.stars { color: #f59e0b; letter-spacing: .1em; margin-bottom: var(--s-1); font-size: 1.05rem; }
.review p { color: var(--slate-700); font-style: italic; }
.review cite { color: var(--slate-500); font-style: normal; font-weight: 700; font-size: .9rem; }
.reviews-note { text-align: center; color: var(--slate-400); font-size: .85rem; margin-top: var(--s-3); }

/* Contact */
.split-contact { align-items: stretch; }
.contact-list { list-style: none; margin: var(--s-3) 0 0; padding: 0; display: grid; gap: var(--s-2); }
.contact-list li { display: flex; align-items: center; gap: var(--s-2); }
.contact-icon {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: var(--slate-900); color: #fff;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-label { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--slate-400); font-weight: 700; }
.contact-list a { font-weight: 700; color: var(--slate-900); transition: color var(--t-fast) var(--ease); }
.contact-list a:hover { color: var(--accent); }

.contact-form {
  background: var(--slate-50); border: 1px solid var(--slate-100);
  border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2rem);
}
.field { margin-bottom: var(--s-2); }
.field label { display: block; font-weight: 700; font-size: .9rem; margin-bottom: 6px; color: var(--slate-700); }
.field input, .field textarea {
  width: 100%; padding: 13px var(--s-2); border: 1.5px solid var(--slate-200); border-radius: 10px;
  font: inherit; color: var(--slate-900); background: #fff;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--ring); }
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: var(--red-600); }
.field textarea { resize: vertical; }
.field-consent { display: flex; align-items: flex-start; gap: var(--s-1); }
.field-consent input[type="checkbox"] {
  width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0;
  accent-color: var(--accent); cursor: pointer;
}
.field-consent label { font-weight: 500; font-size: .85rem; color: var(--slate-500); margin: 0; cursor: pointer; }
.field-consent a, .form-note a { color: var(--accent); text-decoration: underline; font-weight: 600; }
.form-note { font-size: .8rem; color: var(--slate-400); margin: var(--s-2) 0 0; text-align: center; }

/* Honeypot anti-spam : caché visuellement, invisible pour les humains */
.field-hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ===================== PAGES INTERNES (mentions légales, etc.) ===================== */
.page-content { padding: clamp(2.5rem, 6vw, 4.5rem) 0; max-width: 760px; }
.page-content h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: var(--s-3); }
.entry-content h2 { font-size: 1.25rem; margin-top: var(--s-4); }
.entry-content p, .entry-content li { color: var(--slate-700); }
.entry-content a { color: var(--accent); text-decoration: underline; }
.entry-content mark { color: var(--accent-dark); background: var(--accent-soft); padding: 0 .3em; border-radius: 4px; font-weight: 600; }
.entry-content table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.entry-content th, .entry-content td { border: 1px solid var(--slate-200); padding: var(--s-1) 12px; text-align: left; vertical-align: top; }
.entry-content th { background: var(--slate-50); }

/* État vide (archives sans contenu) */
.empty-state {
  text-align: center; padding: var(--s-12) var(--s-3); color: var(--slate-500);
  animation: roze-enter var(--t-slow) var(--ease-out) both;
}
.empty-state .empty-icon {
  width: 64px; height: 64px; margin: 0 auto var(--s-3); border-radius: 18px;
  display: grid; place-items: center; background: var(--slate-100); color: var(--slate-400);
}
.empty-state h2 { font-size: 1.3rem; }

/* ===================== PIED DE PAGE ===================== */
.site-footer { background: var(--slate-950); color: var(--slate-300); padding: var(--s-6) 0 var(--s-3); }
.footer-inner { display: flex; flex-wrap: wrap; gap: var(--s-4); justify-content: space-between; align-items: flex-start; }
.footer-brand .brand-text strong { color: #fff; font-size: 1.1rem; }
.footer-brand .brand-text em { color: var(--accent); }
.footer-brand p { color: var(--slate-400); margin: var(--s-1) 0 0; font-size: .92rem; }
.footer-nav { display: flex; flex-wrap: wrap; gap: var(--s-1) var(--s-3); }
.footer-nav a { color: var(--slate-200); font-weight: 600; font-size: .95rem; transition: color var(--t-fast) var(--ease); }
.footer-nav a:hover { color: var(--accent); }
.footer-bottom { margin-top: var(--s-4); padding-top: var(--s-3); border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom p { margin: 0; font-size: .85rem; color: var(--slate-500); }
.footer-bottom a { text-decoration: underline; }

/* Bouton d'appel flottant (mobile) */
.floating-call {
  position: fixed; right: 18px; bottom: 18px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; display: none;
  align-items: center; justify-content: center;
  background: var(--accent); color: var(--on-accent); box-shadow: var(--shadow-lg);
  transition: transform var(--t-fast) var(--ease), background-color var(--t-base) var(--ease);
}
.floating-call:hover { background: var(--accent-dark); transform: scale(1.05); }
.floating-call:active { transform: scale(.95); }

/* ===================== HERO VIDÉO (drone) ===================== */
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; opacity: .38;
}
.hero-video ~ .hero-inner { z-index: 2; }

/* ===================== BANDEAU URGENCE ===================== */
.urgence-strip {
  background: var(--accent); color: var(--on-accent);
  padding: 12px 0; font-weight: 700; font-size: .95rem;
}
.urgence-strip .container {
  display: flex; align-items: center; justify-content: center;
  gap: var(--s-2); flex-wrap: wrap; text-align: center;
}
.urgence-strip a {
  background: var(--slate-900); color: #fff; padding: 6px 16px; border-radius: 999px;
  font-weight: 800; white-space: nowrap;
  transition: background-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.urgence-strip a:hover { background: var(--slate-950); transform: translateY(-1px); }
.urgence-strip a:active { transform: translateY(1px); }

/* ===================== POINTS FORTS ===================== */
.points-forts {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--s-2);
}
.point-fort {
  display: flex; flex-direction: column; align-items: center; gap: var(--s-1);
  text-align: center; padding: var(--s-3) var(--s-1);
  background: #fff; border: 1px solid var(--slate-100); border-radius: var(--radius);
  font-weight: 700; font-size: .9rem; color: var(--slate-900);
  transition: transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.point-fort:hover { transform: translateY(-3px); border-color: var(--slate-200); }
.point-fort svg { width: 30px; height: 30px; color: var(--accent); }

/* ===================== COMPTEURS ANIMÉS ===================== */
.chiffres {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-3);
  text-align: center;
}
.chiffre strong {
  display: block; font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.1; color: #fff;
  font-variant-numeric: tabular-nums;
}
.chiffre strong .suffixe { color: var(--accent); }
.chiffre span { color: var(--slate-300); font-weight: 600; font-size: .95rem; }

/* ===================== AVANT / APRÈS ===================== */
.ba-wrap { max-width: 860px; margin: 0 auto; }
.ba {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); aspect-ratio: 16 / 10; user-select: none;
}
.ba img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; pointer-events: none;
}
.ba-apres { clip-path: inset(0 0 0 var(--ba-pos, 50%)); }
.ba-ligne {
  position: absolute; top: 0; bottom: 0; left: var(--ba-pos, 50%); width: 3px;
  background: #fff; transform: translateX(-50%); pointer-events: none;
  box-shadow: 0 0 12px rgba(15,23,42,.4);
}
.ba-ligne::after {
  content: "◂ ▸"; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fff; color: var(--slate-900); font-size: .75rem; font-weight: 800;
  padding: 8px 10px; border-radius: 999px; white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: ew-resize; margin: 0;
}
.ba-etiquette {
  position: absolute; top: 14px; padding: 5px 13px; border-radius: 999px;
  font-size: .78rem; font-weight: 800; letter-spacing: .04em;
  background: rgba(20,36,58,.78); color: #fff; pointer-events: none;
}
.ba-etiquette-avant { left: 14px; }
.ba-etiquette-apres { right: 14px; }

/* ===================== RÉALISATIONS (galerie) ===================== */
.realisations { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-2); }
.realisation {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--slate-100); display: block;
}
.realisation img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
  will-change: transform;
}
.realisation:hover img { transform: scale(1.04); }
.realisation figcaption {
  position: absolute; inset: auto 0 0 0; padding: 28px 14px 12px;
  background: linear-gradient(transparent, rgba(20,36,58,.85));
  color: #fff; font-weight: 700; font-size: .9rem;
  opacity: 0; transform: translateY(6px);
  transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.realisation:hover figcaption { opacity: 1; transform: translateY(0); }
.realisation .cat {
  display: inline-block; background: var(--accent); color: var(--on-accent);
  font-size: .7rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  padding: 2px 9px; border-radius: 999px; margin-bottom: 4px;
}

/* ===================== ZONE D'INTERVENTION ===================== */
.zone-carte {
  position: relative; display: grid; place-items: center;
}
.zone-carte svg { width: 100%; max-width: 420px; height: auto; }
.zone-communes { display: flex; flex-wrap: wrap; gap: var(--s-1); margin-top: var(--s-3); padding: 0; list-style: none; }
.zone-communes li {
  background: var(--slate-50); border: 1px solid var(--slate-200);
  padding: 6px 14px; border-radius: 999px; font-weight: 600; font-size: .88rem; color: var(--slate-700);
}
.zone-communes li.zc-principal { background: var(--accent-soft); border-color: #f5d5a8; color: var(--accent-dark); font-weight: 700; }

/* Bouton avis Google */
.avis-actions { display: flex; justify-content: center; margin-top: var(--s-3); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .contact-form { order: 2; }
  .points-forts { grid-template-columns: repeat(3, 1fr); }
  .realisations { grid-template-columns: repeat(2, 1fr); }
  .chiffres { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; background: transparent; border: 1px solid var(--slate-200);
    border-radius: 10px; cursor: pointer; padding: 0 11px;
  }
  .nav-toggle span {
    display: block; height: 2px; background: var(--slate-900); border-radius: 2px;
    transition: transform var(--t-base) var(--ease), opacity var(--t-base) var(--ease);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-list {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--slate-100);
    padding: var(--s-1) clamp(1.1rem, 4vw, 2rem) var(--s-2);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform var(--t-base) var(--ease-out), opacity var(--t-base) var(--ease-out);
  }
  body.admin-bar .nav-list { top: calc(72px + var(--wp-admin--admin-bar--height, 32px)); }
  .nav-list.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-list a { padding: 13px var(--s-2); }
  .nav-cta { text-align: center; margin-top: 4px; }

  .cards { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .floating-call { display: flex; }
  .hero-actions .btn { flex: 1; }
  .points-forts { grid-template-columns: repeat(2, 1fr); }
  .realisations { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation-duration: 0s !important; }
  .reveal { opacity: 1; transform: none; }
}
/* ===================================================================
   Roze V2 - direction moderne, claire, micro-interactions sobres
   =================================================================== */
:root {
  --paper: #fbfaf8;
  --paper-2: #f4f1ed;
  --ink: #171717;
  --muted: #6f6b66;
  --line: rgba(23, 23, 23, 0.09);
  --line-strong: rgba(23, 23, 23, 0.16);
  --copper: #bd6a32;
  --copper-soft: #f3e4d9;
  --slate-950: #171717;
  --slate-900: #23211f;
  --slate-800: #34302c;
  --slate-700: #4a4641;
  --slate-500: #77716a;
  --slate-400: #9d968e;
  --slate-300: #d3ccc4;
  --slate-200: #e7e1da;
  --slate-100: #f1ece6;
  --slate-50: #fbfaf8;
  --text: var(--ink);
  --accent: var(--copper);
  --accent-dark: #9d5225;
  --accent-soft: var(--copper-soft);
  --on-accent: #fffaf4;
  --ring: rgba(189, 106, 50, 0.24);
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 1px rgba(20, 20, 20, 0.04), 0 8px 24px -18px rgba(20, 20, 20, 0.18);
  --shadow-md: 0 18px 48px -34px rgba(20, 20, 20, 0.34);
  --shadow-lg: 0 28px 80px -48px rgba(20, 20, 20, 0.42);
  --t-fast: 140ms;
  --t-base: 220ms;
  --t-slow: 360ms;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

html { background: var(--paper); }
body {
  background:
    linear-gradient(180deg, rgba(255,255,255,.72), rgba(251,250,248,0) 520px),
    var(--paper);
  color: var(--ink);
}
body.menu-open { overflow: hidden; }

.container { max-width: 1080px; }
p { color: var(--muted); }
h1, h2, h3 { letter-spacing: 0; color: var(--ink); }
h1 {
  font-family: var(--font-sans);
  font-weight: 760;
  line-height: .98;
  max-width: 760px;
}
h2 {
  font-family: var(--font-sans);
  font-weight: 740;
  line-height: 1.03;
}
.eyebrow {
  color: var(--copper);
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-header {
  background: rgba(251, 250, 248, .78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px) saturate(160%);
}
.header-inner { min-height: 72px; }
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: none;
}
.brand-text strong { color: var(--ink); font-size: .96rem; }
.brand-text em { color: var(--copper); font-size: .78rem; }
.nav-list a {
  border-radius: 8px;
  color: var(--muted);
  font-size: .9rem;
  transition: background-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.nav-list a:hover { background: rgba(23,23,23,.055); color: var(--ink); }
.nav-cta {
  background: var(--ink) !important;
  color: var(--paper) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}
.nav-cta:hover { background: var(--copper) !important; }

.btn {
  border-radius: 10px;
  min-height: 48px;
  font-weight: 720;
  box-shadow: none;
  transition: background-color var(--t-base) var(--ease), border-color var(--t-base) var(--ease), color var(--t-base) var(--ease), transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  box-shadow: 0 14px 36px -28px rgba(23,23,23,.85);
}
.btn-primary:hover { background: var(--copper); border-color: var(--copper); }
.btn-ghost {
  background: rgba(255,255,255,.54);
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: #fff; border-color: rgba(23,23,23,.22); }

.hero {
  min-height: auto;
  background:
    linear-gradient(90deg, rgba(23,23,23,.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(23,23,23,.04) 1px, transparent 1px),
    radial-gradient(720px 360px at 82% 18%, rgba(189,106,50,.13), transparent 62%),
    var(--paper);
  background-size: 80px 80px, 80px 80px, auto, auto;
  border-bottom: 1px solid var(--line);
}
.hero::after {
  background: linear-gradient(180deg, rgba(251,250,248,0) 60%, var(--paper));
}
.hero-video {
  width: min(38vw, 500px);
  height: min(48vw, 600px);
  inset: auto max(32px, calc((100vw - 1080px) / 2)) 56px auto;
  border-radius: 18px;
  opacity: .18;
  filter: saturate(.75) contrast(.96);
  clip-path: inset(0 round 18px);
}
.hero-inner {
  padding-top: clamp(3.6rem, 7vw, 6rem);`r`n  padding-bottom: clamp(3.4rem, 6vw, 5.5rem);
}
.hero-content { max-width: 760px; }
.hero h1 { color: var(--ink); font-size: clamp(3rem, 6.7vw, 5.8rem); }
.hero .eyebrow { color: var(--copper); }
.hero-lead {
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.62;
}
.hero .btn-ghost { color: var(--ink); border-color: var(--line-strong); background: rgba(255,255,255,.55); }
.hero .btn-ghost:hover { background: #fff; border-color: rgba(23,23,23,.22); }
.hero-trust {
  max-width: 720px;
  border-top: 1px solid var(--line);
  gap: var(--s-2);
}
.hero-trust li {
  color: var(--muted);
  padding-right: var(--s-4);
}
.hero-trust strong {
  font-family: var(--font-sans);
  color: var(--ink);
  font-size: 1.08rem;
}

.urgence-strip {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.urgence-strip a {
  background: rgba(255,255,255,.1);
  color: var(--paper);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
}
.urgence-strip a:hover { background: var(--copper); }

.section { padding: clamp(4.5rem, 9vw, 7rem) 0; }
.section-muted { background: #f6f2ed; border-block: 1px solid var(--line); }
.section-head { max-width: 760px; margin-bottom: var(--s-5); }
.section-sub { color: var(--muted); max-width: 630px; }

.reveal {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(4px);
  transition: opacity var(--t-slow) var(--ease-out), transform var(--t-slow) var(--ease-out), filter var(--t-slow) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }

.points-forts {
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.54);
}
.point-fort {
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  align-items: flex-start;
  min-height: 92px;
  transition: background-color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.point-fort:nth-child(3n) { border-right: 0; }
.point-fort:nth-child(n+4) { border-bottom: 0; }
.point-fort:hover { background: rgba(255,255,255,.72); transform: translateY(-1px); }
.point-fort svg { color: var(--copper); }

#services .cards {
  display: block;
  border-top: 1px solid var(--line);
}
#services .card {
  display: grid;
  grid-template-columns: 52px minmax(160px, 240px) 1fr 28px;
  align-items: center;
  gap: var(--s-3);
  min-height: 96px;
  padding: 22px 4px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
#services .card::after {
  content: "→";
  position: static;
  width: auto;
  height: auto;
  border-radius: 0;
  box-shadow: none;
  opacity: .32;
  color: var(--ink);
  font-size: 1.15rem;
  transform: translateX(-6px);
  transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
#services .card:hover { transform: none; border-color: var(--line-strong); }
#services .card:hover::after { opacity: 1; transform: translateX(0); }
#services .card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  margin: 0;
  background: var(--copper-soft);
  color: var(--copper);
  transition: background-color var(--t-base) var(--ease), color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
#services .card:hover .card-icon { background: var(--ink); color: var(--paper); transform: scale(.96); }
#services .card-icon svg { width: 21px; height: 21px; }
#services .card h3 { margin: 0; font-size: clamp(1.12rem, 2vw, 1.36rem); }
#services .card p { margin: 0; color: var(--muted); max-width: 560px; }

.section-accent {
  background: var(--ink);
  color: var(--paper);
  border-block: 1px solid rgba(255,255,255,.08);
}
.section-accent h2 { color: var(--paper); }
.section-accent p { color: rgba(251,250,248,.72); }
.section-accent .stat-headline span { color: #e3a174; }
.split-list li {
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
}

#chiffres {
  background: var(--paper) !important;
  border-block: 1px solid var(--line);
}
.chiffres {
  text-align: left;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.6);
}
.chiffre {
  padding: var(--s-4);
  border-right: 1px solid var(--line);
}
.chiffre:last-child { border-right: 0; }
.chiffre strong { color: var(--ink); font-family: var(--font-sans); }
.chiffre span:last-child { color: var(--muted); }

.review {
  background: rgba(255,255,255,.6);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: none;
  transition: background-color var(--t-base) var(--ease), transform var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.review:hover { background: #fff; border-color: var(--line-strong); transform: translateY(-2px); }
.review p { color: var(--ink); font-style: normal; }
.stars { color: var(--copper); letter-spacing: 0; }
.review cite { color: var(--muted); }

.zone-carte {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.5);
  padding: var(--s-3);
}
.zone-communes li {
  border-radius: 8px;
  background: rgba(255,255,255,.55);
  border-color: var(--line);
  color: var(--muted);
}
.zone-communes li.zc-principal { background: var(--ink); border-color: var(--ink); color: var(--paper); }

.contact-list li {
  border-bottom: 1px solid var(--line);
  padding-block: var(--s-2);
}
.contact-icon {
  background: var(--paper-2);
  color: var(--copper);
}
.contact-form {
  background: rgba(255,255,255,.62);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
.field input, .field textarea {
  background: rgba(255,255,255,.78);
  border-color: var(--line);
  border-radius: 10px;
}
.field input:focus, .field textarea:focus {
  border-color: var(--copper);
  box-shadow: 0 0 0 4px var(--ring);
}

.realisations { gap: var(--s-2); }
.realisation {
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: none;
  background: #fff;
}
.realisation img {
  transform: scale(1.02);
  transition: transform 520ms var(--ease-out), filter 520ms var(--ease-out);
}
.realisation:hover img { transform: scale(1.06); filter: saturate(1.04); }
.realisation figcaption { background: linear-gradient(180deg, transparent, rgba(0,0,0,.7)); }

.floating-call {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 18px 44px -24px rgba(23,23,23,.9);
}
.floating-call:hover { background: var(--copper); }

@media (max-width: 900px) {
  .hero-video { display: none; }
  #services .card { grid-template-columns: 44px 1fr 24px; gap: var(--s-2); }
  #services .card p { grid-column: 2 / 3; }
  .points-forts { grid-template-columns: repeat(2, 1fr); }
  .point-fort:nth-child(3n) { border-right: 1px solid var(--line); }
  .point-fort:nth-child(2n) { border-right: 0; }
  .point-fort:nth-child(n+4) { border-bottom: 1px solid var(--line); }
  .point-fort:nth-child(n+5) { border-bottom: 0; }
  .chiffres { grid-template-columns: repeat(2, 1fr); }
  .chiffre:nth-child(2n) { border-right: 0; }
  .chiffre:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 720px) {
  .header-inner { min-height: 70px; }
  .nav-toggle {
    border-radius: 12px;
    background: rgba(255,255,255,.62);
    border-color: var(--line);
    transition: background-color var(--t-base) var(--ease), border-color var(--t-base) var(--ease), transform var(--t-base) var(--ease);
  }
  .nav-toggle:hover { background: #fff; }
  .nav-list {
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(251,250,248,.94);
    box-shadow: 0 28px 80px -48px rgba(23,23,23,.72);
    backdrop-filter: blur(16px) saturate(160%);
    transform: translateY(-8px) scale(.985);
    filter: blur(6px);
    transition: opacity var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out), filter var(--t-base) var(--ease-out), visibility var(--t-base) var(--ease-out);
  }
  .nav-list.open { transform: translateY(0) scale(1); filter: blur(0); }
  .nav-list a { border-radius: 10px; padding: 14px 12px; }
  .hero-inner { padding-top: 4.4rem; padding-bottom: 4rem; }
  .hero h1 { font-size: clamp(2.65rem, 14vw, 4.3rem); }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-trust li { padding-right: 0; }
  .points-forts { grid-template-columns: 1fr; }
  .point-fort, .point-fort:nth-child(n) { border-right: 0; border-bottom: 1px solid var(--line); }
  .point-fort:last-child { border-bottom: 0; }
  #services .card { align-items: start; grid-template-columns: 42px 1fr 20px; padding: 20px 0; }
  #services .card p { font-size: .95rem; }
  .cards { grid-template-columns: 1fr; }
  .chiffres { grid-template-columns: 1fr; }
  .chiffre, .chiffre:nth-child(n) { border-right: 0; border-bottom: 1px solid var(--line); }
  .chiffre:last-child { border-bottom: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { filter: none; }
}
/* ===================================================================
   Roze V3 - inspiration cockpit premium sombre, adaptee couverture
   =================================================================== */
:root {
  --navy-950: #061126;
  --navy-900: #071630;
  --navy-800: #10233f;
  --sky-line: rgba(148, 163, 184, .13);
  --roof-orange: #f28c28;
  --roof-orange-2: #ffb36a;
  --soft-white: #f8fafc;
  --muted-white: rgba(248, 250, 252, .72);
  --ink: #071225;
  --paper: #f8fafc;
  --paper-2: #eef6ff;
  --accent: var(--roof-orange);
  --accent-dark: #d97917;
  --accent-soft: #fff2e3;
  --on-accent: #071225;
  --line: rgba(15, 23, 42, .1);
  --line-strong: rgba(15, 23, 42, .18);
  --ring: rgba(242, 140, 40, .28);
  --radius: 12px;
  --radius-lg: 22px;
  --shadow-sm: 0 14px 34px -28px rgba(15, 23, 42, .38);
  --shadow-md: 0 24px 70px -38px rgba(6, 17, 38, .55);
  --shadow-lg: 0 34px 110px -52px rgba(6, 17, 38, .68);
}

html { background: var(--paper); }
body {
  background: var(--paper);
  color: #1e293b;
}

.site-header {
  background: rgba(6, 17, 38, .9);`r`n  border-bottom: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(16px) saturate(160%);
}
.header-inner { min-height: 80px; }
.brand {
  color: #fff;
  border-radius: 14px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  color: var(--navy-950);
  box-shadow: 0 20px 42px -28px rgba(255,255,255,.72);
}
.brand-text strong { color: #fff; }
.brand-text em { color: var(--roof-orange-2); }
.nav-list a {
  color: rgba(255,255,255,.78);
  border-radius: 10px;
}
.nav-list a:hover { color: #fff; background: rgba(255,255,255,.09); }
.nav-cta {
  background: #fff !important;
  color: var(--navy-950) !important;
  box-shadow: 0 18px 42px -28px rgba(255,255,255,.82);
}
.nav-cta:hover { background: #fff2e3 !important; }

.btn {
  min-height: 52px;
  border-radius: 14px;
  font-weight: 800;
}
.btn-primary {
  background: #fff;
  color: var(--navy-950);
  border-color: rgba(255,255,255,.9);
  box-shadow: 0 22px 54px -30px rgba(255,255,255,.88);
}
.btn-primary:hover {
  background: #fff2e3;
  border-color: #fff2e3;
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.14);
  color: #fff;
  border-color: rgba(255,255,255,.26);
}

.hero {
  min-height: 700px;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 84% 36%, rgba(37, 99, 235, .28), transparent 62%),
    radial-gradient(620px 360px at 72% 70%, rgba(242, 140, 40, .18), transparent 66%),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(135deg, #102a58 0%, #071630 42%, #061126 100%);
  background-size: auto, auto, 72px 72px, 72px 72px, auto;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(6,17,38,.06), rgba(6,17,38,.28) 54%, rgba(6,17,38,.08));
}
.hero::after {
  background: linear-gradient(180deg, transparent 60%, rgba(6,17,38,.9));
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: clamp(4.2rem, 6vw, 5.8rem);
  padding-bottom: clamp(3.8rem, 6vw, 5.5rem);
}
.hero-content { max-width: 540px; }
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.075);
  color: rgba(255,255,255,.9);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.hero .eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--roof-orange);
  box-shadow: 0 0 0 4px rgba(242,140,40,.14);
}
.hero h1 {
  color: #fff;
  font-size: clamp(3.25rem, 6.2vw, 5.35rem);
  line-height: .98;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.hero-lead {
  max-width: 600px;
  color: var(--muted-white);
  font-size: clamp(1.06rem, 1.8vw, 1.26rem);
  line-height: 1.62;
}
.hero-actions { margin-top: 32px; }
.hero-trust {
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7);
}
.hero-trust li { color: rgba(255,255,255,.68); }
.hero-trust strong {
  color: #fff;
  font-size: 1.12rem;
  font-weight: 850;
}
.hero-video {
  position: absolute;
  z-index: 1;
  inset: 172px max(40px, calc((100vw - 1120px) / 2)) auto auto;
  width: min(47vw, 590px);
  height: 350px;
  object-fit: cover;
  opacity: 1;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  box-shadow: 0 34px 110px -44px rgba(0,0,0,.74), inset 0 1px 0 rgba(255,255,255,.16);
  filter: saturate(.95) contrast(1.02) brightness(.82);
  transform: perspective(1200px) rotateY(-6deg) rotateX(1deg);
  transform-origin: center right;
}
.hero:has(.hero-video)::before {
  background:
    linear-gradient(90deg, rgba(6,17,38,.04), rgba(6,17,38,.34) 50%, rgba(6,17,38,.1)),
    radial-gradient(520px 260px at 77% 52%, rgba(255,255,255,.13), transparent 68%);
}
/* Quand la carte photo flotte à droite, le texte ne doit jamais passer dessous */
@media (min-width: 901px) {
  .hero:has(.hero-video) .hero-content { max-width: min(44%, 500px); }
  .hero:has(.hero-video) .hero-content h1 { max-width: none; }
}

.urgence-strip {
  background: #fff;
  color: var(--navy-950);
  border-bottom: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 16px 42px -36px rgba(15,23,42,.45);
}
.urgence-strip a {
  background: var(--navy-950);
  color: #fff;
  border-color: var(--navy-950);
}
.urgence-strip a:hover { background: var(--roof-orange); color: var(--navy-950); }

.section-muted {
  background: linear-gradient(180deg, #f8fafc 0%, #eef6ff 50%, #f8fafc 100%);
}
.points-forts {
  margin-top: -34px;
  position: relative;
  z-index: 4;
  background: rgba(255,255,255,.9);
  box-shadow: 0 24px 70px -52px rgba(15,23,42,.7);
}
.point-fort:hover { background: #fff; }
.point-fort svg { color: var(--roof-orange); }

#services .card-icon { background: #fff2e3; color: var(--roof-orange); }
#services .card:hover .card-icon { background: var(--navy-950); color: #fff; }
#services .card::after { color: var(--roof-orange); }

.section-accent {
  background:
    radial-gradient(900px 520px at 80% 10%, rgba(37, 99, 235, .18), transparent 62%),
    linear-gradient(135deg, #102a58 0%, #071630 46%, #061126 100%);
}
#chiffres {
  background: #071630 !important;
  color: #fff;
  border-block: 1px solid rgba(255,255,255,.08);
}
.chiffres {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.1);
}
.chiffre { border-color: rgba(255,255,255,.1); }
.chiffre strong { color: #fff; }
.chiffre span:last-child { color: rgba(255,255,255,.68); }

.contact-form,
.review,
.zone-carte {
  background: rgba(255,255,255,.92);
  box-shadow: 0 24px 70px -54px rgba(15,23,42,.55);
}
.floating-call { background: var(--roof-orange); color: var(--navy-950); }
.floating-call:hover { background: #fff; }

@media (max-width: 1120px) {
  .hero-video {
    width: 42vw;
    height: 310px;
    opacity: .72;
  }
  .hero-content { max-width: 570px; }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }
  .hero-video {
    display: block;
    position: relative;
    inset: auto;
    width: min(100% - 32px, 640px);
    height: clamp(220px, 52vw, 340px);
    margin: 0 auto -18px;
    transform: none;
    border-radius: 20px;
  }
  .hero-inner { padding-top: 4.6rem; }
  .hero-content { max-width: none; }
  .hero h1 { font-size: clamp(3rem, 11vw, 5.4rem); }
}

@media (max-width: 720px) {
  .site-header { background: rgba(6,17,38,.78); }
  .nav-toggle {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.16);
  }
  .nav-toggle span { background: #fff; }
  .nav-list {
    background: rgba(7, 22, 48, .94);
    border-color: rgba(255,255,255,.12);
    color: #fff;
  }
  .nav-list a { color: rgba(255,255,255,.82); }
  .nav-list a:hover { color: #fff; background: rgba(255,255,255,.08); }
  .nav-cta { width: fit-content; }
  .hero-inner { padding-top: 3.4rem; padding-bottom: 2.6rem; }
  .hero h1 { font-size: clamp(2.45rem, 11.5vw, 3.9rem); }
  .hero .eyebrow { font-size: .68rem; line-height: 1.35; }
  .hero-video { width: calc(100% - 28px); height: clamp(170px, 45vw, 220px); margin-bottom: -10px; }
  .hero-trust { grid-template-columns: 1fr 1fr; }
}
/* ===================================================================
   Roze Motion from ClaimTrack - CSS-native WordPress adaptation
   =================================================================== */
.site-header {
  transition: background-color 300ms ease, border-color 300ms ease, box-shadow 300ms ease, color 300ms ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .92);
  border-bottom-color: rgba(15, 23, 42, .1);
  box-shadow: 0 16px 45px -34px rgba(15, 23, 42, .35);
  backdrop-filter: blur(18px) saturate(160%);
}
.site-header.is-scrolled .brand-text strong { color: var(--navy-950); }
.site-header.is-scrolled .brand-text em { color: var(--roof-orange); }
.site-header.is-scrolled .brand-mark { background: var(--navy-950); color: #fff; }
.site-header.is-scrolled .nav-list a { color: #334155; }
.site-header.is-scrolled .nav-list a:hover { color: #0f172a; background: rgba(15,23,42,.06); }
.site-header.is-scrolled .nav-cta { background: var(--navy-950) !important; color: #fff !important; }
.site-header.is-scrolled .nav-cta:hover { background: var(--roof-orange) !important; color: var(--navy-950) !important; }

.hero::before {
  animation: rozeBgFloat 18s ease-in-out infinite alternate;
  transform-origin: center;
}
@keyframes rozeBgFloat {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1); }
  to { transform: translate3d(1.5%, 1.25%, 0) scale(1.035); }
}

.hero .eyebrow::before,
.status-dot,
.floating-call::after {
  animation: rozePulseDot 1.8s ease-out infinite;
}
@keyframes rozePulseDot {
  0% { box-shadow: 0 0 0 0 rgba(242, 140, 40, .55); }
  72% { box-shadow: 0 0 0 10px rgba(242, 140, 40, 0); }
  100% { box-shadow: 0 0 0 0 rgba(242, 140, 40, 0); }
}

.hero-content > * {
  animation: rozeFadeUp 650ms cubic-bezier(.22, 1, .36, 1) both;
}
.hero-content > *:nth-child(1) { animation-delay: 40ms; }
.hero-content > *:nth-child(2) { animation-delay: 110ms; }
.hero-content > *:nth-child(3) { animation-delay: 180ms; }
.hero-content > *:nth-child(4) { animation-delay: 250ms; }
.hero-content > *:nth-child(5) { animation-delay: 320ms; }
@keyframes rozeFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-video {
  animation: rozeHeroPanelIn 900ms cubic-bezier(.22, 1, .36, 1) both;
}
.hero-video.is-floating {
  animation: rozeFloatCard 6.5s ease-in-out infinite;
}
@keyframes rozeHeroPanelIn {
  from {
    opacity: 0;
    transform: perspective(1200px) rotateY(-8deg) rotateX(2deg) translateX(28px) translateY(8px) scale(.97);
  }
  to {
    opacity: 1;
    transform: perspective(1200px) rotateY(-6deg) rotateX(1deg) translateX(0) translateY(0) scale(1);
  }
}
@keyframes rozeFloatCard {
  0% { transform: perspective(1200px) rotateY(-6deg) rotateX(1deg) translateY(0); }
  50% { transform: perspective(1200px) rotateY(-5.4deg) rotateX(1deg) translateY(-10px); }
  100% { transform: perspective(1200px) rotateY(-6deg) rotateX(1deg) translateY(0); }
}
.hero-video-wrap,
.hero:has(.hero-video) {
  isolation: isolate;
}
.hero-video::before { content: none; }
.hero:has(.hero-video)::after {
  z-index: 1;
}
.hero .container { position: relative; z-index: 3; }
.hero::selection { background: rgba(242, 140, 40, .35); }

.hero::marker { color: var(--roof-orange); }
.hero-video + .hero-inner::after {
  content: "";
  position: absolute;
  right: max(40px, calc((100vw - 1120px) / 2));
  top: 172px;
  width: min(47vw, 590px);
  height: 350px;
  border-radius: 24px;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.34) 44%, transparent 58%);
  transform: skewX(-18deg) translateX(-160%);
  animation: rozeScan 5.2s ease-in-out 1.1s infinite;
  opacity: .7;
  mix-blend-mode: screen;
}
@keyframes rozeScan {
  0% { transform: skewX(-18deg) translateX(-160%); opacity: 0; }
  10% { opacity: .55; }
  42% { transform: skewX(-18deg) translateX(160%); opacity: .2; }
  100% { transform: skewX(-18deg) translateX(160%); opacity: 0; }
}

.reveal {
  transition: opacity 700ms ease, transform 700ms ease, filter 700ms ease;
}
.card,
.review,
.point-fort,
.realisation,
.contact-form,
.zone-carte {
  transition: transform 220ms cubic-bezier(.22, 1, .36, 1), border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}
.review:hover,
.realisation:hover,
.contact-form:hover,
.zone-carte:hover {
  transform: translateY(-3px);
  box-shadow: 0 30px 90px -58px rgba(37, 99, 235, .38), inset 0 1px 0 rgba(255,255,255,.6);
}

#services .card::before {
  content: "";
  grid-column: 1 / -1;
  grid-row: 2;
  height: 2px;
  width: 100%;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(148, 163, 184, .22);
  opacity: 0;
  transition: opacity 220ms ease;
}
#services .card:hover::before { opacity: 1; }
#services .card:hover::before {
  background:
    linear-gradient(90deg, transparent, rgba(242,140,40,.88), rgba(96,165,250,.72), transparent),
    rgba(148, 163, 184, .22);
  background-size: 38% 100%, 100% 100%;
  background-repeat: no-repeat;
  animation: rozeFlowMove 1.9s ease-in-out infinite;
}
@keyframes rozeFlowMove {
  from { background-position: -45% 0, 0 0; }
  to { background-position: 145% 0, 0 0; }
}

.floating-call { position: fixed; }
.floating-call::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: inherit;
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero-video.is-floating {
    animation: none;
  }
  .hero-video {
    animation: rozeMobilePanelIn 700ms cubic-bezier(.22, 1, .36, 1) both;
  }
  @keyframes rozeMobilePanelIn {
    from { opacity: 0; transform: translateY(18px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  .hero-video + .hero-inner::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero .eyebrow::before,
  .hero-content > *,
  .hero-video,
  .hero-video.is-floating,
  .hero-video + .hero-inner::after,
  .floating-call::after,
  #services .card:hover::before {
    animation: none !important;
  }
  .hero-content > *, .hero-video { opacity: 1 !important; transform: none !important; }
}

/* ===================================================================
   Layer 4 — Diaporama hero (fondu) + fiches chiffres animées
   =================================================================== */

/* --- Diaporama : fondu enchaîné entre les images du hero --- */
.hero-slide { opacity: 0; transition: opacity 800ms var(--ease); }
.hero-slide.is-active { opacity: 1; }
/* L'animation d'entrée ne joue que sur la première image */
img.hero-slide:not(:first-of-type) { animation: none; }

/* --- Chiffres : fiches séparées, hover + entrée en cascade --- */
#chiffres { border-block: 0; }
.chiffres,
.chiffres.reveal {
  background: transparent;
  border: 0;
  border-radius: 0;
  gap: 14px;
  overflow: visible;
}
.chiffre,
.chiffre:nth-child(n) {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 18px;
  padding: 28px 24px;
  transition: transform var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease),
              background-color var(--t-base) var(--ease);
}
.chiffre:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 140, 40, .55);
  background: rgba(255, 255, 255, .085);
}

/* Entrée en cascade des fiches (déclenchée par .is-visible du parent) */
.chiffres.reveal .chiffre { opacity: 0; transform: translateY(16px); }
.chiffres.reveal.is-visible .chiffre {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 320ms var(--ease-out), transform 320ms var(--ease-out),
              border-color var(--t-base) var(--ease), background-color var(--t-base) var(--ease);
}
.chiffres.reveal.is-visible .chiffre:nth-child(2) { transition-delay: 80ms; }
.chiffres.reveal.is-visible .chiffre:nth-child(3) { transition-delay: 160ms; }
.chiffres.reveal.is-visible .chiffre:nth-child(4) { transition-delay: 240ms; }
/* Le hover reprend la main sans délai une fois l'entrée jouée */
.chiffres.reveal.is-visible .chiffre:hover { transition-delay: 0ms; transform: translateY(-4px); }

@media (max-width: 900px) {
  .chiffres, .chiffres.reveal { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .chiffres, .chiffres.reveal { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
  .chiffres.reveal .chiffre { opacity: 1; transform: none; }
}

/* ===================================================================
   Layer 5 — Fiches chiffres structurées (inspiration pricing cards :
   en-tête libellé + grande valeur, séparateur, corps détail + pastilles)
   =================================================================== */
.chiffre,
.chiffre:nth-child(n) { padding: 0; overflow: hidden; text-align: left; }

.chiffre-tete {
  padding: 24px 24px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.chiffre-type {
  margin: 0 0 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}
.chiffre-valeur {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(2.1rem, 3.6vw, 2.75rem);
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.chiffre-valeur .suffixe {
  color: var(--roof-orange, #f28c28);
  font-size: .58em;
  font-weight: 800;
}
.chiffre-corps { padding: 16px 24px 22px; }
.chiffre-detail {
  margin: 0 0 12px;
  font-size: .88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .62);
}
.chiffre-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chiffre-chips span {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .09);
  color: rgba(255, 255, 255, .75);
}
/* Au survol : le trait de séparation s'accorde à la bordure orange */
.chiffre:hover .chiffre-tete { border-bottom-color: rgba(242, 140, 40, .35); }

/* Neutralise les anciens sélecteurs .chiffre span/strong des couches 1-3 */
.chiffre .chiffre-valeur span { font-size: inherit; color: inherit; font-weight: inherit; }
.chiffre .chiffre-valeur .suffixe { font-size: .58em; color: var(--roof-orange, #f28c28); }
.chiffre .chiffre-chips span {
  font-size: .72rem; font-weight: 600; color: rgba(255, 255, 255, .75);
}
.chiffre .chiffre-type { font-size: .78rem; color: rgba(255, 255, 255, .55); }
.chiffre .chiffre-detail { font-size: .88rem; color: rgba(255, 255, 255, .62); }

/* ===================================================================
   Layer 6 — Savoir-faire en vignettes (pastille ronde + titre +
   libellé orange + description, grille de cartes blanches)
   =================================================================== */
#services .cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}
#services .card {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 18px;
  row-gap: 0;
  align-items: start;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 16px;
  box-shadow: 0 10px 30px -24px rgba(15, 23, 42, .35);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
#services .card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 23, 42, .14);
  box-shadow: 0 20px 44px -28px rgba(15, 23, 42, .4);
}
/* plus de flèche ni de séparateur hérités des couches précédentes */
#services .card::before,
#services .card::after { content: none; }

/* Pastille ronde */
#services .card-icon {
  grid-row: 1 / span 3;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy-800, #10233f);
  color: #fff;
  margin: 0;
}
#services .card-icon svg { width: 24px; height: 24px; }

#services .card h3,
#services .card .card-tag,
#services .card p { grid-column: 2; }

#services .card h3 {
  margin: 4px 0 2px;
  font-size: 1.06rem;
  font-weight: 750;
  color: var(--ink, #171717);
}
#services .card .card-tag {
  margin: 0 0 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--roof-orange, #f28c28);
}
#services .card p:not(.card-tag) {
  margin: 0;
  font-size: .92rem;
  line-height: 1.55;
  color: var(--muted, #6f6b66);
}

/* Carte urgence : pastille orange (comme la vignette accent du modèle) */
#services .card-urgence .card-icon {
  background: var(--roof-orange, #f28c28);
  color: var(--navy-950, #061126);
}

@media (max-width: 720px) {
  #services .card { padding: 20px; grid-template-columns: 48px 1fr; column-gap: 14px; }
  #services .card-icon { width: 48px; height: 48px; }
}

/* --- Centrage de la dernière rangée des vignettes services --- */
/* Grille 6 pistes : chaque carte en couvre 2 ; avec 8 cartes, la 7e
   démarre piste 2 → les deux dernières sont centrées sous les trois. */
@media (min-width: 1025px) {
  #services .cards { grid-template-columns: repeat(6, 1fr); }
  #services .card { grid-column: span 2; }
  #services .card:nth-child(7) { grid-column: 2 / span 2; }
}
@media (min-width: 721px) and (max-width: 1024px) {
  #services .cards { grid-template-columns: repeat(2, 1fr); }
}

/* ===================================================================
   Layer 7 — Barre de confiance sombre (points forts, prolongement
   du hero : items en ligne, icônes orange, séparateurs fins)
   =================================================================== */
#pourquoi {
  background: var(--navy-950, #061126);
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, .07);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
#pourquoi .points-forts,
#pourquoi .points-forts.reveal {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}
#pourquoi .point-fort {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 22px 12px;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, .08);
  border-radius: 0;
  box-shadow: none;
  font-size: .86rem;
  font-weight: 650;
  color: rgba(255, 255, 255, .82);
  white-space: nowrap;
  transition: color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
#pourquoi .point-fort:first-child { border-left: 0; }
#pourquoi .point-fort:hover { color: #fff; transform: translateY(-1px); }
#pourquoi .point-fort svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  color: var(--roof-orange, #f28c28);
}

/* Entrée en cascade discrète */
#pourquoi .points-forts.reveal .point-fort { opacity: 0; transform: translateY(8px); }
#pourquoi .points-forts.reveal.is-visible .point-fort {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 250ms var(--ease-out), transform 250ms var(--ease-out),
              color var(--t-fast) var(--ease);
}
#pourquoi .points-forts.reveal.is-visible .point-fort:nth-child(2) { transition-delay: 45ms; }
#pourquoi .points-forts.reveal.is-visible .point-fort:nth-child(3) { transition-delay: 90ms; }
#pourquoi .points-forts.reveal.is-visible .point-fort:nth-child(4) { transition-delay: 135ms; }
#pourquoi .points-forts.reveal.is-visible .point-fort:nth-child(5) { transition-delay: 180ms; }
#pourquoi .points-forts.reveal.is-visible .point-fort:nth-child(6) { transition-delay: 225ms; }
#pourquoi .points-forts.reveal.is-visible .point-fort:hover { transition-delay: 0ms; }

/* Mobile : défilement horizontal doux, sans barre visible */
@media (max-width: 1024px) {
  #pourquoi .points-forts,
  #pourquoi .points-forts.reveal {
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image: linear-gradient(90deg, transparent, #000 24px, #000 calc(100% - 24px), transparent);
  }
  #pourquoi .points-forts::-webkit-scrollbar { display: none; }
  #pourquoi .point-fort { flex: 0 0 auto; padding: 16px 18px; }
}
@media (prefers-reduced-motion: reduce) {
  #pourquoi .points-forts.reveal .point-fort { opacity: 1; transform: none; }
}

/* ===================================================================
   Layer 8 — Vignettes savoir-faire avec photo en fond
   (voile marine, pastille ronde centrée, texte blanc centré)
   =================================================================== */
#services .card.card-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 400px;
  padding: 36px 26px;
  border: 0;
  background-image:
    linear-gradient(180deg, rgba(6, 17, 38, .48), rgba(6, 17, 38, .78)),
    var(--photo);
  background-size: cover;
  background-position: center;
  color: #fff;
}
#services .card.card-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px -30px rgba(6, 17, 38, .65);
}

#services .card-photo .card-icon {
  grid-row: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--roof-orange, #f28c28);
  color: var(--navy-950, #061126);
  margin: 0 0 20px;
  transition: transform var(--t-base) var(--ease);
}
#services .card-photo .card-icon svg { width: 27px; height: 27px; }
#services .card-photo:hover .card-icon { transform: scale(1.07); }

#services .card-photo h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 1.12rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}
#services .card-photo .card-tag {
  margin: 0 0 12px;
  color: #ffb35c;
  font-size: .82rem;
  font-weight: 700;
}
#services .card-photo p:not(.card-tag) {
  margin: 0;
  max-width: 30ch;
  font-size: .92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .88);
}

/* La pastille urgence reste distinctive : icône blanche sur orange */
#services .card-urgence.card-photo .card-icon { color: #fff; }

@media (max-width: 720px) {
  #services .card.card-photo { min-height: 320px; grid-template-columns: none; }
}

/* ===================================================================
   Layer 9 — Palette « Viticolis » : crème chaud, noir profond,
   charbon vert-noir et accent cognac. Boutons éditoriaux majuscules.
   =================================================================== */
:root {
  /* Tokens remappés */
  --paper: #fbf7f3;
  --paper-2: #f5f0eb;
  --ink: #141414;
  --muted: #6b655c;
  --roof-orange: #b86e1e;
  --accent: #b86e1e;
  --accent-dark: #96591a;
  --accent-soft: #f3e7d6;
  --on-accent: #ffffff;
  --ring: rgba(184, 110, 30, .35);
  --navy-950: #141414;
  --navy-900: #1c211f;
  --navy-800: #262c29;
  --copper: #b86e1e;
  --copper-soft: #f3e7d6;
}

/* Fonds clairs → crème */
html { background: var(--paper); }
body { background: var(--paper); color: var(--ink); }
.section-muted, .contact-form { background: var(--paper-2); }

/* Hero : charbon vert-noir + lueur cognac (fini le bleu) */
.hero {
  background:
    radial-gradient(900px 520px at 84% 36%, rgba(184, 110, 30, .22), transparent 62%),
    radial-gradient(620px 360px at 72% 70%, rgba(184, 110, 30, .1), transparent 66%),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(135deg, #262c29 0%, #1c211f 42%, #141414 100%);
}
#pourquoi { background: #141414; }
#chiffres { background: #1c211f !important; }
.section-accent { background: linear-gradient(180deg, #1c211f, #262c29); }
.site-footer { background: #141414; }

/* Vignettes photo : voile charbon au lieu du marine */
#services .card.card-photo {
  background-image:
    linear-gradient(180deg, rgba(20, 20, 20, .46), rgba(20, 20, 20, .8)),
    var(--photo);
}
#services .card-photo .card-tag { color: #e2a35c; }

/* Boutons éditoriaux façon Viticolis : rectangle doux, majuscules espacées */
.btn {
  border-radius: 8px;
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .13em;
  font-weight: 700;
}
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 14px 34px -22px rgba(184, 110, 30, .8); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: .74rem !important;
  letter-spacing: .14em;
  font-weight: 700;
  padding: 10px 18px !important;
  box-shadow: none;
}
.nav-cta:hover { background: var(--accent-dark) !important; }

/* Urgence : bandeau crème, pilule cognac */
.urgence-strip { background: var(--paper-2); color: var(--ink); }
.urgence-strip a { background: var(--accent); color: #fff; }
.urgence-strip a:hover { background: var(--accent-dark); }

/* Accents résiduels */
.floating-call { background: var(--accent); color: #fff; }
.floating-call:hover { background: var(--accent-dark); }
.stars { color: #d99a3f; }

/* CTA devis : cognac dans tous les états (repos, scroll, survol) */
.nav-cta,
.site-header.is-scrolled .nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
}
.nav-cta:hover,
.site-header.is-scrolled .nav-cta:hover {
  background: var(--accent-dark) !important;
  color: #fff !important;
}

/* ===================================================================
   Layer 10 — Composition Viticolis : hero centré à visuels latéraux,
   engagements en icônes filaires, section signature dégradée,
   alternance de contrastes entre zones.
   =================================================================== */

/* --- HERO : texte centré, deux visuels sur les côtés --- */
.hero:has(.hero-visuel) .hero-inner { display: flex; justify-content: center; }
.hero:has(.hero-visuel) .hero-content {
  max-width: 640px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero:has(.hero-visuel) .hero-content h1 { max-width: none; }
.hero:has(.hero-visuel) .hero-actions { justify-content: center; }
.hero:has(.hero-visuel) .hero-trust { justify-content: center; }

.hero-visuel {
  position: absolute;
  z-index: 1;
  margin: 0;
  width: min(19vw, 264px);
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow: 0 30px 90px -40px rgba(0, 0, 0, .7);
}
.hero-visuel img { width: 100%; height: 100%; object-fit: cover; }
.hero-visuel-gauche { left: max(28px, calc((100vw - 1360px) / 2)); top: 16%; }
.hero-visuel-droite { right: max(28px, calc((100vw - 1360px) / 2)); top: 34%; }

@media (max-width: 1180px) {
  .hero-visuel { display: none; } /* le texte garde toute la place */
}

/* --- ENGAGEMENTS : grandes icônes filaires + badges (style process) --- */
.section-engagements { background: #141414; color: #fff; }
.section-engagements .section-head h2 { color: #fff; }
.section-engagements h2 em { color: var(--accent); font-style: italic; }
.section-engagements .section-sub { color: rgba(255, 255, 255, .55); }

.engagements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
  margin-top: 8px;
}
.engagement { display: flex; flex-direction: column; align-items: flex-start; }
.engagement svg {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .9);
}
.engagement:nth-child(odd) svg { color: var(--accent); }
.engagement-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  color: #d9a05b;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.engagement h3 { margin: 0 0 6px; color: #fff; font-size: 1.05rem; font-weight: 750; }
.engagement p { margin: 0; font-size: .9rem; line-height: 1.6; color: rgba(255, 255, 255, .55); }

/* --- SIGNATURE : le fond s'assombrit en descendant --- */
.statement {
  background: linear-gradient(180deg, var(--paper) 0%, #8a7d6d 30%, #2b2721 62%, #141414 100%);
  padding: clamp(160px, 24vh, 260px) 0 clamp(90px, 14vh, 150px);
}
.statement-inner { text-align: center; }
.statement .eyebrow { color: #d9a05b; }
.statement h2 {
  margin: 0 auto;
  max-width: 860px;
  color: #fff;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.12;
  font-weight: 780;
}
.statement h2 em { color: var(--accent); font-style: italic; }

/* --- CONTRASTE DES ZONES --- */
/* Avis : blanc pur, tranche avec les chiffres sombres au-dessus */
#avis { background: #fff; }
#avis .review { background: var(--paper); border-color: rgba(20, 20, 20, .08); }

/* Zone d'intervention : bloc charbon */
.section-sombre { background: #141414; }
.section-sombre h2, .section-sombre .split-text h2 { color: #fff; }
.section-sombre p { color: rgba(255, 255, 255, .6); }
.section-sombre .zone-communes li {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .78);
}
.section-sombre .zone-communes li.zc-principal {
  background: rgba(184, 110, 30, .16);
  border-color: rgba(184, 110, 30, .5);
  color: #e2a35c;
}
/* La carte SVG reste sur sa vignette claire pour rester lisible */
.section-sombre .zone-carte { background: #fbf7f3; border-radius: 20px; padding: 24px; }

@media (max-width: 900px) {
  .engagements { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
}
@media (max-width: 560px) {
  .engagements { grid-template-columns: 1fr; }
}

/* --- Visuels du hero inclinés (style Viticolis) --- */
.hero-visuel-gauche { transform: rotate(-4deg); }
.hero-visuel-droite { transform: rotate(3.5deg); }

/* La signature dégradée enchaîne sans couture sur les engagements noirs */
.statement { padding-bottom: clamp(70px, 10vh, 110px); }
.section-engagements { padding-top: clamp(40px, 6vh, 70px); }

/* --- Suppression du filet entre la signature et « Pourquoi Roze » --- */
#pourquoi { border-top: 0; border-bottom: 0; }

/* --- « Le saviez-vous ? » sur fond clair --- */
#entretien { background: var(--paper-2); }
#entretien h2 { color: var(--ink); }
#entretien .stat-headline span { color: var(--accent); }
#entretien p { color: var(--muted); }
#entretien .eyebrow-light { color: var(--accent); }
#entretien .split-list li {
  background: #fff;
  border: 1px solid rgba(20, 20, 20, .08);
  color: var(--ink);
  box-shadow: 0 8px 24px -20px rgba(20, 20, 20, .25);
}

/* ===================================================================
   Layer 11 — Devis flottant, retour en haut, eyebrows, flottement hero
   =================================================================== */

/* --- Fenêtre « Demander un devis » qui suit le défilement (droite) --- */
.devis-flottant {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 95;
  writing-mode: vertical-rl;
  transform: translateY(-50%) translateX(5px);
  background: var(--accent);
  color: #fff;
  padding: 20px 13px;
  border-radius: 12px 0 0 12px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  box-shadow: -8px 12px 34px -18px rgba(20, 20, 20, .5);
  transition: transform var(--t-base) var(--ease), background-color var(--t-base) var(--ease);
}
.devis-flottant:hover {
  background: var(--accent-dark);
  transform: translateY(-50%) translateX(0);
}
.devis-flottant:active { transform: translateY(-50%) translateX(2px); }
@media (max-width: 1023px) {
  .devis-flottant { display: none; } /* mobile : bouton d'appel flottant déjà présent */
}

/* --- Flèche retour en haut --- */
.haut-page {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 94;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #141414;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .18);
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity var(--t-base) var(--ease), transform var(--t-base) var(--ease),
              background-color var(--t-base) var(--ease);
}
.haut-page.est-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.haut-page:hover { background: var(--accent); }
@media (max-width: 720px) {
  .haut-page { bottom: 88px; } /* au-dessus du bouton d'appel */
}

/* --- Eyebrows des grandes sections : plus présents --- */
.statement .eyebrow,
.section-engagements .eyebrow {
  font-size: .95rem;
  letter-spacing: .2em;
  margin-bottom: 14px;
}

/* --- Léger flottement des visuels du hero (transform uniquement) --- */
@keyframes roze-flotte-g {
  from { transform: rotate(-4deg) translateY(0); }
  to   { transform: rotate(-4deg) translateY(-14px); }
}
@keyframes roze-flotte-d {
  from { transform: rotate(3.5deg) translateY(-10px); }
  to   { transform: rotate(3.5deg) translateY(6px); }
}
.hero-visuel-gauche { animation: roze-flotte-g 7s ease-in-out infinite alternate; }
.hero-visuel-droite { animation: roze-flotte-d 8.5s ease-in-out infinite alternate; }

@media (prefers-reduced-motion: reduce) {
  .hero-visuel-gauche, .hero-visuel-droite { animation: none; }
  .devis-flottant, .haut-page { transition: none; }
}

/* La languette devis reste cachée sur l'écran d'accueil,
   puis glisse depuis le bord une fois le hero dépassé */
.devis-flottant {
  opacity: 0;
  transform: translateY(-50%) translateX(110%);
  pointer-events: none;
}
.devis-flottant.est-visible {
  opacity: 1;
  transform: translateY(-50%) translateX(5px);
  pointer-events: auto;
}
.devis-flottant.est-visible:hover { transform: translateY(-50%) translateX(0); }
.devis-flottant.est-visible:active { transform: translateY(-50%) translateX(2px); }
.devis-flottant {
  transition: transform var(--t-base) var(--ease), opacity var(--t-base) var(--ease),
              background-color var(--t-base) var(--ease);
}

/* --- Visuel droit remonté --- */
.hero-visuel-droite { top: 21%; }

/* --- Chiffres de confiance du hero : icônes + vie --- */
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  transition: transform var(--t-fast) var(--ease);
}
.hero-trust li:hover { transform: translateY(-2px); }
.hero-trust li > svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: var(--accent);
}
.ht-txt { display: block; line-height: 1.25; }
.ht-txt strong { display: block; }

/* Les 3 preuves du hero restent sur une seule ligne en desktop */
@media (min-width: 900px) {
  .hero:has(.hero-visuel) .hero-trust {
    flex-wrap: nowrap;
    width: max-content;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    gap: 36px;
  }
}

/* ===================================================================
   Layer 12 — Pages savoir-faire (bannière photo + contenu + CTA)
   =================================================================== */
.service-banniere {
  position: relative;
  padding: clamp(90px, 14vh, 150px) 0 clamp(50px, 8vh, 80px);
  background-image:
    linear-gradient(180deg, rgba(20, 20, 20, .55), rgba(20, 20, 20, .82)),
    var(--photo, linear-gradient(135deg, #262c29, #141414));
  background-size: cover;
  background-position: center;
  color: #fff;
}
.service-banniere .eyebrow a { color: #d9a05b; }
.service-banniere .eyebrow a:hover { color: #fff; }
.service-banniere h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 800px;
}

.service-contenu { max-width: 780px; }
.service-contenu .entry-content h2 {
  font-size: 1.4rem;
  margin-top: var(--s-5);
  color: var(--ink);
}
.service-contenu .entry-content p { color: var(--muted); font-size: 1.02rem; line-height: 1.7; }
.service-contenu .entry-content ul { padding-left: 0; list-style: none; display: grid; gap: 10px; }
.service-contenu .entry-content li {
  position: relative;
  padding: 12px 16px 12px 44px;
  background: #fff;
  border: 1px solid rgba(20, 20, 20, .08);
  border-radius: 12px;
  color: var(--ink);
  font-weight: 550;
}
.service-contenu .entry-content li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
}

.service-cta { background: #141414; padding: clamp(3rem, 7vw, 4.5rem) 0; }
.service-cta-inner { text-align: center; }
.service-cta h2 { color: #fff; margin-bottom: 8px; }
.service-cta p { color: rgba(255, 255, 255, .6); margin-bottom: 24px; }
.service-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.service-cta .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .3); }
.service-cta .btn-ghost:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .5); }

/* --- Fiches métier : visuels à gauche, prestations à droite --- */
.service-corps { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.service-corps.avec-visuels {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.service-corps.avec-visuels .service-contenu { padding: 0; max-width: 700px; }
.service-visuels {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 18px;
}
.service-visuels figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, .08);
  box-shadow: 0 18px 44px -30px rgba(20, 20, 20, .4);
}
.service-visuels img { width: 100%; height: auto; display: block; }
.service-visuels figure:nth-child(2) { transform: rotate(1.6deg); }
.service-visuels figure:first-child { transform: rotate(-1.2deg); }

@media (max-width: 880px) {
  .service-corps.avec-visuels { grid-template-columns: 1fr; }
  .service-visuels {
    position: static;
    grid-template-columns: 1fr 1fr;
  }
  .service-visuels figure { transform: none !important; }
}

/* Respiration sous les engagements : le texte ne colle plus au bord */
.section-engagements { padding-bottom: clamp(72px, 10vh, 120px); }
#pourquoi.section-engagements {
  padding-top: clamp(48px, 7vh, 80px);
  padding-bottom: clamp(72px, 10vh, 120px);
}

/* --- Affiche promotionnelle à droite des fiches métier --- */
.service-corps.avec-affiche {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 440px);
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.service-corps.avec-visuels.avec-affiche {
  grid-template-columns: minmax(200px, 280px) 1fr minmax(280px, 400px);
}
.service-affiche {
  position: sticky;
  top: 100px;
}
.service-affiche figure {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(20, 20, 20, .08);
  box-shadow: 0 24px 60px -34px rgba(20, 20, 20, .5);
}
.service-affiche img { width: 100%; height: auto; display: block; }
@media (max-width: 880px) {
  .service-corps.avec-affiche,
  .service-corps.avec-visuels.avec-affiche { grid-template-columns: 1fr; }
  .service-affiche { position: static; }
}
