/* ============================================================
   MORRUZZI AMÉNAGEMENT — Design System
   Site vitrine premium · Carrières-sous-Poissy (78)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   VARIABLES — Palette olive premium
   ============================================================ */
:root {
  /* Verts olive profond */
  --green-950: #0A1804;
  --green-900: #162805;
  --green-800: #213C0A;
  --green-700: #2E4D12;
  --green-600: #3D5C18;
  --green-500: #526A25;
  --green-400: #6B8A35;
  --green-300: #8A9E55;
  --green-200: #B0BC80;
  --green-100: #D4DCB0;
  --green-50:  #EEF0DC;

  /* Olive premium */
  --olive-900: #2A2E12;
  --olive-800: #3C4318;
  --olive-700: #4D5620;
  --olive-600: #5C6628;
  --olive-400: #8A9840;
  --olive-200: #C8D080;

  /* Pierre & Beiges chauds */
  --beige-900: #5A4E3C;
  --beige-700: #887768;
  --beige-500: #C2B29A;
  --beige-300: #DDD0BC;
  --beige-200: #EDE4D4;
  --beige-100: #F3EDE2;
  --beige-50:  #F9F5EE;

  /* Terre */
  --brown-800: #4A2E10;
  --brown-600: #7A5028;
  --brown-400: #B07840;

  /* Textes */
  --text-900: #181818;
  --text-700: #343434;
  --text-500: #5C5C5C;
  --text-300: #8C8C8C;
  --text-100: #CCCCCC;

  /* Sémantique */
  --color-primary:    var(--green-700);
  --color-primary-dk: var(--green-900);
  --color-primary-lt: var(--green-500);
  --color-accent:     var(--green-400);
  --color-bg:         var(--beige-50);
  --color-bg-alt:     var(--beige-100);
  --color-surface:    #FFFFFF;
  --color-border:     var(--beige-300);
  --color-text:       var(--text-900);
  --color-text-md:    var(--text-700);
  --color-text-sm:    var(--text-500);

  /* Ombres */
  --shadow-xs:    0 1px 3px rgba(0,0,0,.06);
  --shadow-sm:    0 2px 8px rgba(0,0,0,.08);
  --shadow-md:    0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:    0 8px 32px rgba(0,0,0,.12);
  --shadow-xl:    0 16px 64px rgba(0,0,0,.14);
  --shadow-green: 0 4px 24px rgba(46,77,18,.30);

  /* Rayons */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   14px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Espacement */
  --section-py: 96px;
  --container-w: 1200px;

  /* Transitions */
  --t-fast: 140ms ease;
  --t-base: 240ms ease;
  --t-slow: 400ms ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   TYPOGRAPHIE
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2 { font-size: clamp(1.625rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.0625rem, 2vw, 1.25rem); }
h5 { font-size: 1.0625rem; }

p { color: var(--color-text-md); line-height: 1.75; }

.lead {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-text-md);
  line-height: 1.75;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 800px; }
.container--wide   { max-width: 1400px; }

section { padding: var(--section-py) 0; }

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-size: .9375rem;
  font-weight: 600;
  border: 2px solid transparent;
  transition: all var(--t-base);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-dk);
  border-color: var(--color-primary-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.65);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--beige-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: .875rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   BADGES & ÉTIQUETTES
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  border-radius: var(--r-full);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge-green { background: rgba(46,77,18,.1); color: var(--color-primary); }
.badge-beige { background: var(--beige-200); color: var(--olive-800); }
.badge-white {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
}

/* ============================================================
   EN-TÊTES DE SECTION
   ============================================================ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--olive-600);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--olive-600);
}

.section-title  { margin-bottom: 16px; }
.section-sub    { font-size: 1.0625rem; color: var(--color-text-sm); max-width: 580px; line-height: 1.75; }

.section-hd { margin-bottom: 56px; }
.section-hd--center { text-align: center; }
.section-hd--center .section-label  { justify-content: center; }
.section-hd--center .section-sub    { margin: 0 auto; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  padding: 20px 0;
  transition: background var(--t-slow), box-shadow var(--t-slow), padding var(--t-slow);
}
#header.scrolled {
  background: #fff;
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img { height: 52px; width: auto; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  transition: color var(--t-fast);
}
.logo-text small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: .6875rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .8;
}
#header.scrolled .logo-text { color: var(--color-primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-link {
  padding: 8px 13px;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,.14);
}
#header.scrolled .nav-link          { color: var(--color-text-md); }
#header.scrolled .nav-link:hover,
#header.scrolled .nav-link.active   { color: var(--color-primary); background: var(--beige-100); }

/* Dropdown */
.nav-drop { position: relative; }
.nav-drop-toggle { display: flex; align-items: center; gap: 4px; }
.nav-drop-toggle svg { width: 14px; height: 14px; transition: transform var(--t-base); }
.nav-drop:hover .nav-drop-toggle svg { transform: rotate(180deg); }

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--t-base);
  z-index: 10;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-drop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--color-text-md);
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
}
.nav-drop-item:hover { background: var(--beige-100); color: var(--color-primary); }
.nav-drop-item svg { width: 16px; height: 16px; color: var(--olive-600); flex-shrink: 0; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .9375rem;
  font-weight: 700;
  color: rgba(255,255,255,.95);
  transition: color var(--t-fast);
}
.nav-phone-link svg { width: 16px; height: 16px; }
#header.scrolled .nav-phone-link { color: var(--color-primary); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.hamburger:hover { background: rgba(255,255,255,.12); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--t-base);
}
#header.scrolled .hamburger span { background: var(--color-text); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 850;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}
.mobile-nav.open { display: flex; }

.mobile-nav-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.mobile-nav-close {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--beige-100);
  border-radius: var(--r-sm);
  color: var(--color-text);
}

.mobile-section-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-text-sm);
  padding: 16px 16px 8px;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--color-text-md);
  border-radius: var(--r-md);
  transition: all var(--t-fast);
}
.mobile-nav-link:hover { background: var(--beige-100); color: var(--color-primary); }
.mobile-nav-link svg { width: 18px; height: 18px; color: var(--olive-600); flex-shrink: 0; }

.mobile-nav-ctas {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(10,24,4,.85) 0%,
    rgba(22,40,5,.65) 52%,
    rgba(10,24,4,.48) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 130px 0 80px;
  color: #fff;
}
.hero h1 {
  color: #fff;
  max-width: 780px;
  margin-bottom: 24px;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: rgba(255,255,255,.85);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
}
.hero-trust-item svg {
  width: 18px; height: 18px;
  color: var(--green-200);
  flex-shrink: 0;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bob 2.2s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
}
.hero-scroll span {
  font-size: .6875rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(7px); }
}

/* ============================================================
   RÉASSURANCE BAR
   ============================================================ */
.reassurance-bar {
  background: var(--color-surface);
  padding: 28px 0;
  border-bottom: 1px solid var(--beige-200);
  box-shadow: var(--shadow-xs);
}
.reassurance-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 40px;
}
.reassurance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--color-text-md);
}
.reassurance-item svg {
  width: 20px; height: 20px;
  color: var(--olive-600);
  flex-shrink: 0;
}

/* ============================================================
   INTRO / PRÉSENTATION
   ============================================================ */
.intro { background: var(--beige-50); }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.intro-img-wrap { position: relative; }
.intro-img-wrap img {
  width: 100%; height: 520px;
  object-fit: cover;
  border-radius: var(--r-xl);
}
.intro-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 130px;
}
.intro-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.intro-badge-txt {
  font-size: .75rem;
  opacity: .85;
  font-weight: 500;
  margin-top: 4px;
  display: block;
}
.intro-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}
.intro-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.intro-feat-icon {
  width: 44px; height: 44px;
  background: var(--beige-100);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}
.intro-feat-icon svg { width: 22px; height: 22px; }
.intro-feature h4 {
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  margin-bottom: 3px;
}
.intro-feature p { font-size: .875rem; color: var(--color-text-sm); line-height: 1.55; }

/* ============================================================
   SERVICES CARDS
   ============================================================ */
.services { background: var(--beige-100); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--color-surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-slow);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  height: 210px;
  overflow: hidden;
  position: relative;
  background: var(--beige-200);
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.service-card:hover .service-card-img img { transform: scale(1.05); }

.sc-icon {
  position: absolute;
  bottom: 14px; left: 14px;
  width: 42px; height: 42px;
  background: #fff;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}
.sc-icon svg { width: 20px; height: 20px; }

.service-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 { font-size: 1.125rem; margin-bottom: 8px; }
.service-card-body p {
  font-size: .875rem;
  color: var(--color-text-sm);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
}
.sc-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-primary);
  transition: gap var(--t-fast);
}
.service-card:hover .sc-link { gap: 10px; }
.sc-link svg { width: 15px; height: 15px; }

/* ============================================================
   GALERIE RÉALISATIONS (Accueil)
   ============================================================ */
.gallery { background: var(--beige-50); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 14px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-md);
  cursor: pointer;
}
.gallery-item--big {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-ovl {
  position: absolute;
  inset: 0;
  background: rgba(10,24,4,0);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-slow);
}
.gallery-item:hover .gallery-ovl { background: rgba(10,24,4,.38); }
.gallery-ovl-icon {
  width: 46px; height: 46px;
  background: #fff;
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  opacity: 0;
  transform: scale(.75);
  transition: all var(--t-base);
}
.gallery-item:hover .gallery-ovl-icon { opacity: 1; transform: scale(1); }
.gallery-ovl-icon svg { width: 20px; height: 20px; }
.gallery-cta { text-align: center; margin-top: 40px; }

/* ============================================================
   POURQUOI NOUS (section foncée)
   ============================================================ */
.why {
  background: linear-gradient(160deg, var(--olive-900) 0%, var(--green-900) 100%);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute;
  top: -30%; right: -8%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(107,138,53,.14) 0%, transparent 70%);
  pointer-events: none;
}
.why .section-label { color: var(--green-200); }
.why .section-label::before { background: var(--green-200); }
.why .section-title { color: #fff; }
.why .section-sub { color: rgba(255,255,255,.72); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all var(--t-base);
}
.why-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.16);
  transform: translateY(-4px);
}
.why-icon {
  width: 50px; height: 50px;
  background: rgba(107,138,53,.2);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--green-200);
  margin-bottom: 18px;
}
.why-icon svg { width: 24px; height: 24px; }
.why-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.why-card p { font-size: .875rem; color: rgba(255,255,255,.62); line-height: 1.65; }

/* ============================================================
   PROCESSUS
   ============================================================ */
.process { background: var(--beige-100); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  gap: 0;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 31px;
  left: calc(10% + 16px);
  right: calc(10% + 16px);
  height: 2px;
  background: linear-gradient(to right, var(--olive-600), var(--green-300));
  z-index: 0;
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 62px; height: 62px;
  border-radius: var(--r-full);
  background: var(--color-primary);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow-green);
}
.process-step h4 {
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.process-step p { font-size: .8125rem; color: var(--color-text-sm); line-height: 1.55; }

/* ============================================================
   ZONE D'INTERVENTION
   ============================================================ */
.zone { background: var(--beige-50); }
.zone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.zone-cities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}
.zone-city {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--beige-100);
  border-radius: var(--r-sm);
  font-size: .875rem;
  font-weight: 500;
  color: var(--color-text-md);
  border: 1px solid var(--beige-200);
  transition: all var(--t-fast);
}
.zone-city:hover { border-color: var(--olive-600); color: var(--color-primary); }
.zone-city svg { width: 15px; height: 15px; color: var(--olive-600); flex-shrink: 0; }
.zone-note {
  margin-top: 20px;
  padding: 16px;
  background: var(--green-50);
  border-left: 3px solid var(--olive-600);
  border-radius: var(--r-sm);
  font-size: .875rem;
  color: var(--color-primary);
  font-weight: 500;
}
.zone-map {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 420px;
}
.zone-map iframe { width: 100%; height: 100%; border: none; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--beige-100); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--color-surface);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--beige-200);
}
.faq-q {
  width: 100%;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: color var(--t-fast);
}
.faq-q:hover { color: var(--color-primary); }
.faq-ic {
  width: 28px; height: 28px;
  border-radius: var(--r-full);
  background: var(--beige-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: all var(--t-base);
}
.faq-item.open .faq-ic {
  background: var(--color-primary);
  color: #fff;
  transform: rotate(180deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow);
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner {
  padding: 0 22px 20px;
  font-size: .875rem;
  color: var(--color-text-sm);
  line-height: 1.75;
  border-top: 1px solid var(--beige-200);
  padding-top: 16px;
  margin-top: 0;
}

/* ============================================================
   BANDEAU CTA
   ============================================================ */
.cta-band {
  background: linear-gradient(140deg, var(--green-700) 0%, var(--green-950) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-band-inner { position: relative; z-index: 1; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.78); font-size: 1.0625rem; max-width: 540px; margin: 0 auto 36px; }
.cta-band-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   FORMULAIRE DE CONTACT
   ============================================================ */
.contact-section { background: var(--beige-50); }
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 { margin-bottom: 14px; }
.contact-info > p { font-size: .9375rem; color: var(--color-text-sm); margin-bottom: 32px; line-height: 1.75; }

.contact-info-items { display: flex; flex-direction: column; gap: 18px; }
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ci-icon {
  width: 42px; height: 42px;
  background: var(--beige-100);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}
.ci-icon svg { width: 18px; height: 18px; }
.ci-item h5 {
  font-family: 'Inter', sans-serif;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--color-text-sm);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.ci-item a, .ci-item p { font-size: .9375rem; font-weight: 500; color: var(--color-text); }
.ci-item a:hover { color: var(--color-primary); }

.form-box {
  background: var(--color-surface);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
}
.form-box-title {
  font-size: 1.25rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 6px;
}
.form-box-sub { font-size: .875rem; color: var(--color-text-sm); margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--color-text-md);
  margin-bottom: 5px;
}
.form-label .req { color: var(--olive-600); }
.form-ctrl {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--beige-300);
  border-radius: var(--r-sm);
  font-size: .9375rem;
  color: var(--color-text);
  background: var(--beige-50);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.form-ctrl:focus {
  border-color: var(--olive-600);
  box-shadow: 0 0 0 3px rgba(92,102,40,.14);
  background: #fff;
}
.form-ctrl::placeholder { color: var(--text-300); }
textarea.form-ctrl { resize: vertical; min-height: 110px; }
select.form-ctrl { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238c8c8c' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 18px; padding-right: 38px; }

.form-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  border: 2px dashed var(--beige-300);
  border-radius: var(--r-md);
  background: var(--beige-50);
  cursor: pointer;
  transition: all var(--t-fast);
  text-align: center;
}
.form-upload-label:hover { border-color: var(--olive-600); background: var(--green-50); }
.form-upload-label svg { width: 28px; height: 28px; color: var(--olive-600); }
.form-upload-label span { font-size: .875rem; color: var(--color-text-sm); font-weight: 500; }
.form-upload-label small { font-size: .75rem; color: var(--text-300); }
input[type="file"] { display: none; }

.form-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 18px;
}
.form-reassurance-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--color-text-sm);
}
.form-reassurance-item svg { width: 13px; height: 13px; color: var(--olive-600); }

.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--r-full);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-base);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.form-submit svg { width: 18px; height: 18px; }
.form-submit:hover {
  background: var(--color-primary-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

/* ============================================================
   BOUTONS FLOTTANTS
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 22px;
  z-index: 600;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all var(--t-base);
  text-decoration: none;
}
.float-wa:hover { background: #1DA851; transform: scale(1.1); }
.float-wa svg { width: 28px; height: 28px; }

.float-phone {
  position: fixed;
  bottom: 96px;
  right: 22px;
  z-index: 600;
  width: 52px; height: 52px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-green);
  transition: all var(--t-base);
  text-decoration: none;
}
.float-phone:hover { background: var(--color-primary-dk); transform: scale(1.1); }
.float-phone svg { width: 22px; height: 22px; }

.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 600;
  background: var(--color-primary);
  padding: 10px 16px;
  display: none;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.14);
}
.sticky-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: var(--r-md);
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: background var(--t-fast);
}
.sticky-bar .sb-tel { background: rgba(255,255,255,.16); }
.sticky-bar .sb-tel:hover { background: rgba(255,255,255,.26); }
.sticky-bar .sb-wa { background: #25D366; }
.sticky-bar .sb-wa:hover { background: #1DA851; }
.sticky-bar a svg { width: 17px; height: 17px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--green-950);
  color: #fff;
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand-logo {
  height: 54px; width: auto;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  max-width: 280px;
  margin-bottom: 22px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.09);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.75);
  transition: all var(--t-fast);
}
.footer-social a:hover { background: var(--olive-600); color: #fff; }
.footer-social a svg { width: 17px; height: 17px; }

.footer-col h5 {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link {
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  transition: color var(--t-fast);
  line-height: 1.4;
}
.footer-link:hover { color: #fff; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 12px;
}
.footer-contact-item svg { width: 15px; height: 15px; color: var(--green-200); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.7); transition: color var(--t-fast); }
.footer-contact-item a:hover { color: #fff; }

.footer-horaires {
  background: rgba(255,255,255,.05);
  border-radius: var(--r-sm);
  padding: 14px;
  margin-top: 8px;
}
.footer-horaires p {
  font-size: .8125rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.38); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  font-size: .8125rem;
  color: rgba(255,255,255,.38);
  transition: color var(--t-fast);
}
.footer-legal a:hover { color: rgba(255,255,255,.75); }

/* ============================================================
   PAGE HÉRO INTÉRIEURE
   ============================================================ */
.page-hero {
  background: linear-gradient(140deg, var(--green-900) 0%, var(--olive-700) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 70px;
  background: var(--beige-50);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-content { text-align: center; position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.78); font-size: 1.0625rem; max-width: 560px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 22px;
}
.breadcrumb a { color: rgba(255,255,255,.65); transition: color var(--t-fast); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb svg { width: 13px; height: 13px; }

/* ============================================================
   PAGE SERVICE (contenu)
   ============================================================ */
.service-body { background: var(--beige-50); }
.service-body-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
  align-items: start;
}

.service-main > h2 { font-size: 1.625rem; margin: 36px 0 14px; }
.service-main > h2:first-child { margin-top: 0; }
.service-main > p { font-size: .9375rem; line-height: 1.8; margin-bottom: 16px; }
.service-main img {
  width: 100%;
  border-radius: var(--r-lg);
  margin: 28px 0;
  max-height: 400px;
  object-fit: cover;
}

.check-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .9375rem;
  color: var(--color-text-md);
}
.check-item svg { width: 18px; height: 18px; color: var(--olive-600); flex-shrink: 0; margin-top: 2px; }

.service-sidebar { position: sticky; top: 100px; }
.sidebar-box {
  background: var(--color-surface);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}
.sidebar-box h4 { font-family: 'Playfair Display', serif; margin-bottom: 10px; }
.sidebar-box p { font-size: .875rem; color: var(--color-text-sm); margin-bottom: 18px; }
.sidebar-box .btn { margin-bottom: 10px; }

.sidebar-links-box {
  background: var(--beige-100);
  border-radius: var(--r-lg);
  padding: 22px;
}
.sidebar-links-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-text-sm);
  margin-bottom: 14px;
}
.sidebar-links { display: flex; flex-direction: column; gap: 4px; }
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0;
  font-size: .875rem;
  font-weight: 500;
  color: var(--color-text-md);
  border-bottom: 1px solid var(--beige-200);
  transition: color var(--t-fast);
}
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--color-primary); }
.sidebar-link svg { width: 14px; height: 14px; color: var(--olive-600); flex-shrink: 0; }

/* ============================================================
   RÉALISATIONS PAGE
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: var(--r-full);
  font-size: .875rem;
  font-weight: 500;
  border: 1.5px solid var(--beige-300);
  background: var(--color-surface);
  color: var(--color-text-md);
  cursor: pointer;
  transition: all var(--t-fast);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.real-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.real-card {
  background: var(--color-surface);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--t-slow);
}
.real-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.real-card-img { height: 250px; overflow: hidden; }
.real-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.real-card:hover .real-card-img img { transform: scale(1.04); }
.real-card-body { padding: 18px; }
.real-card-tag {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--olive-600);
  margin-bottom: 6px;
}
.real-card-body h4 {
  font-family: 'Inter', sans-serif;
  font-size: .9375rem;
  font-weight: 600;
  margin-bottom: 5px;
}
.real-card-body p { font-size: .8125rem; color: var(--color-text-sm); }

/* ============================================================
   ZONE D'INTERVENTION PAGE (SEO LOCAL)
   ============================================================ */
.ville-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.ville-card {
  background: var(--color-surface);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--beige-200);
  transition: all var(--t-base);
}
.ville-card:hover {
  border-color: var(--olive-600);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.ville-card-icon {
  width: 44px; height: 44px;
  background: var(--beige-100);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.ville-card h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
.ville-card p { font-size: .875rem; color: var(--color-text-sm); line-height: 1.6; }
.ville-card-services {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ville-tag {
  padding: 3px 10px;
  background: var(--beige-100);
  border-radius: var(--r-full);
  font-size: .75rem;
  font-weight: 500;
  color: var(--color-primary);
}

/* ============================================================
   À PROPOS
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.value-card {
  background: var(--color-surface);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--color-primary);
}
.value-icon {
  width: 48px; height: 48px;
  background: var(--beige-100);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-primary);
  margin-bottom: 16px;
}
.value-icon svg { width: 24px; height: 24px; }
.value-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.value-card p { font-size: .875rem; color: var(--color-text-sm); line-height: 1.65; }

/* ============================================================
   ANIMATIONS D'ENTRÉE
   ============================================================ */
.anim {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.anim.visible { opacity: 1; transform: translateY(0); }
.anim-d1 { transition-delay: .08s; }
.anim-d2 { transition-delay: .16s; }
.anim-d3 { transition-delay: .24s; }
.anim-d4 { transition-delay: .32s; }
.anim-d5 { transition-delay: .40s; }

/* ============================================================
   UTILITAIRES
   ============================================================ */
.text-center { text-align: center; }
.text-green  { color: var(--color-primary); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-0  { margin-bottom: 0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  :root { --section-py: 72px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process-steps::before { display: none; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .ville-grid    { grid-template-columns: repeat(2, 1fr); }
  .values-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links, .nav-right .btn { display: none; }
  .hamburger { display: flex; }

  .intro-grid        { grid-template-columns: 1fr; gap: 48px; }
  .intro-img-wrap img { height: 360px; }
  .intro-badge { bottom: -14px; right: -10px; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item--big { grid-column: span 2; grid-row: span 1; }

  .zone-grid           { grid-template-columns: 1fr; gap: 40px; }
  .service-body-grid   { grid-template-columns: 1fr; gap: 40px; }
  .service-sidebar     { position: static; }
  .contact-grid        { grid-template-columns: 1fr; gap: 40px; }
  .real-grid           { grid-template-columns: repeat(2, 1fr); }
  .ville-grid          { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  :root { --section-py: 56px; }

  .services-grid  { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr; }
  .process-steps  { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; gap: 32px; }
  .real-grid      { grid-template-columns: 1fr; }
  .zone-cities    { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .ville-grid     { grid-template-columns: 1fr; }
  .values-grid    { grid-template-columns: 1fr; }

  .hero-ctas      { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--big { grid-column: span 1; }

  .sticky-bar { display: flex; }
  .float-phone { display: none; }
  .float-wa { bottom: 90px; }

  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal  { justify-content: center; }

  .cta-band-btns { flex-direction: column; align-items: center; }
}

@media (min-width: 641px) {
  .float-phone { display: none !important; }
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   AMÉLIORATIONS — CTA, FAQ, BOUTONS FLOTTANTS, CLASSES MANQUANTES
   ============================================================ */

/* ---- CTAs : plus visibles, plus frappants ---- */
.btn-primary {
  background: linear-gradient(135deg, var(--green-500) 0%, var(--green-700) 100%);
  color: #fff;
  border-color: var(--green-500);
  box-shadow: 0 4px 18px rgba(46,77,18,.35);
  font-weight: 700;
  letter-spacing: .02em;
  padding: 16px 32px;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--green-600) 0%, var(--green-900) 100%);
  border-color: var(--green-600);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(46,77,18,.55);
}
.btn-primary:active { transform: translateY(-1px); }

.btn-primary.btn-sm { padding: 10px 22px; font-size: .875rem; letter-spacing: .015em; }
.btn-primary.btn-lg { padding: 20px 44px; font-size: 1.0625rem; }

.btn-white {
  background: #fff;
  color: var(--green-700);
  border-color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(255,255,255,.22);
}
.btn-white:hover {
  background: var(--beige-50);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(255,255,255,.38);
}
.btn-white.btn-lg { padding: 20px 44px; font-size: 1.0625rem; }

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.58);
  font-weight: 600;
}
.btn-secondary:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.9);
  transform: translateY(-2px);
}
.btn-secondary.btn-lg { padding: 20px 44px; font-size: 1.0625rem; }

/* Bouton outline pour héros sombre (nouvelles pages) */
.btn-outline-light {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 2px solid rgba(255,255,255,.55);
  font-weight: 600;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.9);
  transform: translateY(-2px);
}

/* ---- Page-hero : sous-titre et CTA ---- */
.page-hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.84);
  max-width: 580px;
  margin: 14px auto 0;
  line-height: 1.75;
}
.page-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

/* ---- CTA Band avec structure text/actions ---- */
.cta-band * { color: inherit; }
.cta-band h2,
.cta-band-text h2 { color: #fff !important; margin-bottom: 14px; }
.cta-band p,
.cta-band-text p { color: rgba(255,255,255,.78) !important; font-size: 1.0625rem; max-width: 540px; margin: 0 auto 28px; }
.cta-band-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---- Classes manquantes — service pages ---- */
.service-img-wrap { margin: 28px 0; overflow: hidden; border-radius: var(--r-lg); }
.service-img-wrap img { width: 100%; max-height: 400px; object-fit: cover; display: block; }

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9375rem;
  color: var(--color-text-md);
  line-height: 1.65;
}
.checklist li::before {
  content: '✓';
  color: var(--olive-600);
  font-weight: 800;
  font-size: .9rem;
  flex-shrink: 0;
  min-width: 18px;
  margin-top: 2px;
}

/* Sidebar CTA box — style sombre (nouvelles pages) */
.sidebar-cta-box {
  background: linear-gradient(145deg, var(--green-800) 0%, var(--green-950) 100%);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 20px;
}
.sidebar-cta-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-200);
  display: block;
  margin-bottom: 8px;
}
.sidebar-cta-box h3 { color: #fff; font-size: 1.25rem; margin-bottom: 10px; }
.sidebar-cta-box > p { color: rgba(255,255,255,.72); font-size: .875rem; line-height: 1.65; margin-bottom: 18px; }
.sidebar-trust {
  margin-top: 16px;
  background: var(--beige-100);
  border-radius: var(--r-md);
  padding: 16px;
  border: 1px solid var(--beige-200);
}

/* ---- FAQ : compact et premium ---- */
/* Support SVG inline directement dans .faq-q */
.faq-q > svg {
  width: 20px;
  height: 20px;
  color: var(--olive-600);
  flex-shrink: 0;
  transition: transform var(--t-base);
}
.faq-item.open .faq-q > svg {
  transform: rotate(180deg);
  color: var(--color-primary);
}
/* Support <p> direct dans .faq-a (sans .faq-a-inner) */
.faq-a > p {
  padding: 14px 22px 18px;
  font-size: .875rem;
  color: var(--color-text-sm);
  line-height: 1.75;
  border-top: 1px solid var(--beige-100);
}
/* FAQ dans service-main */
.service-main .faq-list { max-width: 100%; margin-top: 36px; }
.service-main .faq-list > h2 { font-size: 1.625rem; margin: 0 0 20px; }
/* FAQ question button — plus compact */
.faq-q { padding: 16px 20px; font-size: .9125rem; }
.faq-ic { width: 24px; height: 24px; }

/* ---- Footer — classes nouvelles pages ---- */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  text-decoration: none;
}
.footer-logo img { height: 48px; width: auto; }
.footer-logo > span {
  font-family: 'Playfair Display', serif;
  font-size: .9375rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}
.footer-logo small { display: block; font-family: 'Inter', sans-serif; font-size: .6875rem; font-weight: 400; opacity: .6; }
.footer-tagline { font-size: .875rem; color: rgba(255,255,255,.6); line-height: 1.7; max-width: 280px; margin-bottom: 14px; }
.footer-phone { display: block; font-size: 1.0625rem; font-weight: 700; color: #fff; margin-bottom: 6px; transition: color var(--t-fast); }
.footer-phone:hover { color: var(--green-200); }
.footer-address { font-size: .8125rem; color: rgba(255,255,255,.5); line-height: 1.7; margin-top: 4px; }
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: .875rem; color: rgba(255,255,255,.7); transition: color var(--t-fast); text-decoration: none; }
.footer-links li a:hover { color: #fff; }
.footer-zone { font-size: .8125rem; color: rgba(255,255,255,.5); line-height: 1.85; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .8125rem;
  color: rgba(255,255,255,.38);
}

/* ---- Section helpers (nouvelles pages) ---- */
.section { padding: var(--section-py) 0; }
.section-header { margin-bottom: 48px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--color-text-sm); line-height: 1.75; }

/* ---- Réalisations — classes manquantes ---- */
.real-tag { display: block; font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--olive-600); margin-bottom: 6px; }
.real-card h3 { font-family: 'Inter', sans-serif; font-size: .9375rem; font-weight: 600; margin-bottom: 6px; }
.real-card h3 + p { font-size: .8125rem; color: var(--color-text-sm); }

/* ---- Boutons flottants — version discrète ---- */
.float-phone { display: none !important; }

.float-wa {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 600;
  width: 44px;
  height: 44px;
  background: #25D366;
  color: #fff;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(37,211,102,.28);
  transition: all var(--t-base);
  text-decoration: none;
}
.float-wa:hover { background: #1DA851; transform: scale(1.1); box-shadow: 0 4px 18px rgba(37,211,102,.42); }
.float-wa svg { width: 22px; height: 22px; }

/* Sticky bar mobile — élégant */
.sticky-bar {
  background: #fff;
  border-top: 1px solid var(--beige-200);
  padding: 10px 16px;
  box-shadow: 0 -2px 16px rgba(0,0,0,.08);
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
}
.sticky-bar .sb-tel {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  border-radius: var(--r-md);
}
.sticky-bar .sb-tel:hover { background: var(--beige-50); }
.sticky-bar .sb-wa {
  background: var(--color-primary);
  color: #fff;
  border: 1.5px solid var(--color-primary);
  box-shadow: 0 2px 8px rgba(46,77,18,.25);
  border-radius: var(--r-md);
}
.sticky-bar .sb-wa:hover { background: var(--color-primary-dk); }
.sticky-bar a { color: inherit; font-weight: 600; }

/* Mobile sticky bar — nouvelles pages */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 600;
  background: #fff;
  border-top: 1px solid var(--beige-200);
  padding: 10px 16px;
  padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  display: none;
  gap: 10px;
  box-shadow: 0 -2px 16px rgba(0,0,0,.08);
}
.mobile-sticky-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px;
  border-radius: var(--r-md);
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  text-decoration: none;
  transition: background var(--t-fast);
}
.mobile-sticky-call:hover { background: var(--beige-50); }
.mobile-sticky-call svg { width: 15px; height: 15px; flex-shrink: 0; }
.mobile-sticky-devis {
  flex: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px;
  border-radius: var(--r-md);
  font-size: .875rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(46,77,18,.28);
  transition: all var(--t-fast);
}
.mobile-sticky-devis:hover { background: var(--color-primary-dk); box-shadow: 0 4px 12px rgba(46,77,18,.4); }

@media (max-width: 640px) {
  .sticky-bar { display: flex; }
  .mobile-sticky-bar { display: flex; }
  .float-wa { bottom: 80px; }
  .float-phone { display: none !important; }
  .page-hero-ctas { flex-direction: column; align-items: center; }
  .page-hero-ctas .btn { width: 100%; max-width: 320px; }
  .cta-band-actions { flex-direction: column; align-items: center; }
  .service-body-grid { grid-template-columns: 1fr; }
}

/* ---- Responsive corrections ---- */
@media (max-width: 900px) {
  .intro-grid { grid-template-columns: 1fr !important; gap: 40px !important; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
