/* ============================================
   VAR FACADE PEINTURE — Identité visuelle
   Palette logo : ROUGE + NOIR + BLANC
   Typographie : Manrope (sans-serif robuste, calé sur le logo)
   ============================================ */

:root {
  --c-rouge: #C8242C;          /* rouge écarlate du logo (V et P) */
  --c-rouge-deep: #A11C24;     /* rouge profond pour hover */
  --c-rouge-soft: #FBE9EA;     /* rouge teinte très douce */

  --c-noir: #0F0F12;           /* noir profond du logo (texte) */
  --c-noir-soft: #1F1F26;      /* noir adouci pour fonds */
  --c-charcoal: #2A2A33;
  --c-grey-line: rgba(15, 15, 18, 0.10);

  --c-cream: #F8F4EA;          /* crème douce pour sections */
  --c-cream-deep: #EFE8D5;     /* crème plus profond pour gradient */
  --c-light: #FFFFFF;

  --c-ink: #14141A;
  --c-ink-muted: #5A5A66;

  --shadow-soft: 0 4px 16px rgba(15, 15, 18, 0.06);
  --shadow-card: 0 12px 32px rgba(15, 15, 18, 0.10);
  --shadow-red: 0 8px 22px rgba(200, 36, 44, 0.18);

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

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

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

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-light);
  overflow-x: hidden;
  font-feature-settings: 'kern', 'liga';
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-rouge); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }

/* Typography — Manrope tout du long, en jouant sur les graisses */
h1, h2, h3, h4 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--c-noir);
}
h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
}
h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h4 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; }

.rouge { color: var(--c-rouge); }
.noir { color: var(--c-noir); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Manrope', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-rouge);
  margin-bottom: 1.25rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--c-ink-muted);
  line-height: 1.65;
  max-width: 60ch;
  font-weight: 400;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-grey-line);
  transition: all .25s ease;
  /* Respecte la safe-area iOS (notch + WebView WhatsApp/Instagram) */
  padding-top: env(safe-area-inset-top, 0);
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}
.site-header.scrolled {
  box-shadow: 0 4px 18px rgba(15, 15, 18, 0.06);
}
.site-header .nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem;
  gap: 2rem;
}
.brand { display: flex; align-items: center; }
.brand-logo-img {
  height: 76px; max-height: 76px; max-width: 280px;
  width: auto; object-fit: contain;
  transition: all .25s ease;
}
.site-header.scrolled .brand-logo-img {
  height: 60px; max-height: 60px;
}
.brand-wordmark {
  font-family: 'Manrope', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-noir);
  line-height: 1;
}
.brand-wordmark .red { color: var(--c-rouge); }

.nav-links {
  display: flex; align-items: center; gap: 1.85rem;
  font-size: .95rem; font-weight: 600;
}
.nav-links a {
  color: var(--c-noir);
  position: relative;
  padding: .25rem 0;
  letter-spacing: -0.005em;
}
.nav-links a.active { color: var(--c-rouge); }
.nav-links a:not(.btn-tel):not(.btn-primary).active::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0;
  height: 2px; background: var(--c-rouge);
}
.nav-links a:not(.btn-tel):not(.btn-primary):hover { color: var(--c-rouge); }

.btn-tel {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-noir) !important;
  letter-spacing: -0.01em;
}
.btn-tel:hover { color: var(--c-rouge) !important; }

/* Bouton devis dans la nav — sobre, pas trop encombrant */
.nav-links .btn-primary {
  padding: .65rem 1.2rem;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 700;
  background: var(--c-rouge);
  color: var(--c-light);
  box-shadow: none;
  letter-spacing: -0.01em;
}
.nav-links .btn-primary:hover {
  background: var(--c-rouge-deep);
  color: var(--c-light) !important;
  transform: translateY(-1px);
}

/* Boutons généraux */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.6rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--c-rouge);
  color: var(--c-light);
}
.btn-primary:hover {
  background: var(--c-rouge-deep);
  color: var(--c-light);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--c-noir);
  border: 1.5px solid var(--c-noir);
}
.btn-outline:hover {
  background: var(--c-noir);
  color: var(--c-light);
  border-color: var(--c-noir);
}
.btn-large { padding: 1rem 2rem; font-size: 1rem; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span {
  display: block; width: 26px; height: 2px;
  background: var(--c-noir); margin: 5px 0;
  transition: all .25s ease;
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed; top: 75px; left: 0; right: 0;
    flex-direction: column; gap: 1rem;
    background: var(--c-light);
    padding: 2rem 1.5rem;
    border-bottom: 1px solid var(--c-grey-line);
    transform: translateY(-110%);
    transition: transform .3s ease;
    align-items: flex-start;
  }
  .nav-links.open { transform: translateY(0); }
  .menu-toggle { display: block; }
  .brand-logo-img { height: 60px; max-height: 60px; max-width: 200px; }
  .site-header.scrolled .brand-logo-img { height: 48px; max-height: 48px; }
}

/* ============================================
   HERO HOMEPAGE — Vidéo plein écran
   ============================================ */
.hero {
  position: relative;
  height: 92vh;
  min-height: 620px;
  max-height: 880px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-noir);
}
.hero-bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(15, 15, 18, 0.30) 0%, rgba(15, 15, 18, 0.55) 60%, rgba(15, 15, 18, 0.85) 100%),
    linear-gradient(90deg, rgba(15, 15, 18, 0.55) 0%, rgba(15, 15, 18, 0.20) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  color: var(--c-light);
  padding: 2rem 0;
}
.hero h1 {
  color: var(--c-light);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}
.hero h1 .noir { color: var(--c-light) !important; }
.hero .lead {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.25rem;
  font-size: 1.2rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: .55rem 1.1rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-light);
  margin-bottom: 1.5rem;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--c-rouge);
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px rgba(200, 36, 44, 0.7);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero .btn-outline {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--c-light);
  border-color: rgba(255, 255, 255, 0.5);
}
.hero .btn-outline:hover {
  background: var(--c-light);
  color: var(--c-noir);
  border-color: var(--c-light);
}

/* Hero badge en bas-droite (5,0/5 sur Google) */
.hero-badge {
  position: absolute;
  bottom: 2rem; right: 2rem;
  z-index: 4;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
  display: flex; align-items: center; gap: .9rem;
}
.hero-badge .stars { color: #FFB400; font-size: 1.05rem; letter-spacing: 1px; }
.hero-badge strong { color: var(--c-noir); font-size: 1.05rem; font-weight: 800; }
.hero-badge small { color: var(--c-ink-muted); font-size: .8rem; display: block; }

@media (max-width: 900px) {
  .hero { height: auto; min-height: 80vh; padding: 5rem 0 4rem; }
  .hero-content { max-width: 100%; }
  .hero-badge { bottom: 1.25rem; right: 1.25rem; padding: .75rem 1rem; }
  .hero-badge strong { font-size: .95rem; }
  .hero-badge small { font-size: .72rem; }
}
@media (max-width: 600px) {
  .hero-badge { display: none; }
}

/* ============================================
   PAGE HERO (sous-pages)
   ============================================ */
.page-hero {
  background: linear-gradient(180deg, #ECE6D4 0%, #DFD6BB 100%);
  padding: 5rem 0 5.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200, 36, 44, 0.10) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero-content { position: relative; z-index: 2; max-width: 880px; }
.page-hero h1 { margin-bottom: 1.25rem; }
.page-hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* Hero-eyebrow sur les sous-pages → fond blanc opaque pour bonne visibilité */
.page-hero .hero-eyebrow {
  background: var(--c-light);
  border: 1px solid var(--c-grey-line);
  color: var(--c-noir);
  box-shadow: var(--shadow-soft);
}
.page-hero .hero-eyebrow .dot {
  box-shadow: 0 0 8px rgba(200, 36, 44, 0.5);
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--c-noir);
  color: var(--c-light);
  padding: 1rem 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
  font-size: .95rem;
}
.trust-stars { color: #FFD24A; font-size: 1.05rem; letter-spacing: 2px; }
.trust-text strong { font-weight: 800; }
.trust-link {
  background: rgba(255,255,255,0.1);
  padding: .35rem .9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .86rem;
}
.trust-link:hover { background: var(--c-rouge); color: var(--c-light); }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 6rem 0; }
.section-cream { background: var(--c-cream); }
.section-light { background: var(--c-light); }
.section-noir { background: var(--c-noir); color: var(--c-light); }
.section-noir h2, .section-noir h3 { color: var(--c-light); }
.section-noir .lead, .section-noir p { color: rgba(255,255,255,0.78); }
.section-noir .eyebrow { color: var(--c-rouge); }

.section-head {
  max-width: 780px;
  margin: 0 auto 4rem;
  text-align: center;
}
.section-head .eyebrow { display: inline-flex; }
.section-head h2 { margin-bottom: 1rem; }
.section-head .lead { margin: 0 auto; }

/* ============================================
   3 SERVICES CARDS (homepage)
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.service-card {
  background: var(--c-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all .3s ease;
  border: 1px solid var(--c-grey-line);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.service-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-noir-soft), var(--c-noir));
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-body { padding: 1.75rem; }
.service-card .num {
  font-weight: 800;
  font-size: .92rem;
  color: var(--c-rouge);
  margin-bottom: .5rem;
  letter-spacing: 0.04em;
}
.service-card h3 { margin-bottom: .75rem; }
.service-card p { color: var(--c-ink-muted); margin-bottom: 1.25rem; font-size: .96rem; }
.service-card .arrow {
  display: inline-flex; align-items: center; gap: .4rem;
  color: var(--c-rouge);
  font-weight: 700; font-size: .92rem;
}
.service-card .arrow::after { content: '→'; transition: transform .25s ease; }
.service-card:hover .arrow::after { transform: translateX(4px); }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SPLIT GRID
   ============================================ */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-grid.reverse .split-image { order: 2; }
@media (max-width: 900px) {
  .split-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-grid.reverse .split-image { order: 0; }
}
.split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-card);
  background: linear-gradient(135deg, var(--c-noir-soft), var(--c-noir));
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-text h2 { margin-bottom: 1.5rem; }
.split-text p {
  margin-bottom: 1.25rem;
  color: var(--c-ink-muted);
  line-height: 1.75;
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.split-text p strong { color: var(--c-noir); font-weight: 700; }

/* Check list */
.check-list {
  list-style: none;
  margin-top: 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.check-list li {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.1rem 1.25rem;
  background: var(--c-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-grey-line);
  border-left: 3px solid var(--c-rouge);
}
.check-list li::before {
  content: '✓';
  color: var(--c-rouge);
  font-weight: 800;
  font-size: 1.05rem;
  flex-shrink: 0;
  line-height: 1.6;
}
.check-list li div strong {
  display: block;
  color: var(--c-noir);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: .2rem;
}

/* ============================================
   CARROUSEL D'AVIS
   ============================================ */
.reviews-marquee {
  position: relative;
  overflow: hidden;
  padding: 2rem 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.reviews-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scroll-reviews 60s linear infinite;
}
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
@keyframes scroll-reviews {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-card {
  flex: 0 0 380px;
  background: var(--c-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--c-grey-line);
  display: flex; flex-direction: column;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -10px; left: 1.25rem;
  font-family: 'Manrope', sans-serif;
  font-size: 5rem;
  font-weight: 800;
  color: var(--c-rouge);
  line-height: 1;
  opacity: 0.5;
}
.review-stars { color: #FFB400; font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; margin-top: 1.25rem; }
.review-text {
  color: var(--c-ink);
  font-size: .96rem;
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 1.25rem;
  font-weight: 400;
}
.review-author {
  display: flex; flex-direction: column; gap: .15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--c-grey-line);
}
.review-author .name {
  font-weight: 800;
  color: var(--c-noir);
  font-size: 1rem;
}
.review-author .meta {
  font-size: .82rem;
  color: var(--c-ink-muted);
  font-weight: 500;
}

@media (max-width: 600px) {
  .review-card { flex: 0 0 300px; padding: 1.5rem; }
}

/* ============================================
   STATS ROW
   ============================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.stat-block {
  text-align: center;
  padding: 1.5rem 1rem;
  border-left: 1px solid rgba(255,255,255,0.18);
}
.stat-block:first-child { border-left: none; }
.stat-block .num {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 800;
  color: #FFD24A;
  line-height: 1;
  margin-bottom: .5rem;
  letter-spacing: -0.03em;
}
.stat-block .lbl {
  color: rgba(255,255,255,0.7);
  font-size: .9rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}
@media (max-width: 700px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-block:nth-child(3) { border-left: none; }
}

/* ============================================
   FEATURES GRID
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--c-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--c-grey-line);
  transition: all .25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--c-rouge);
}
.feature-num {
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--c-rouge);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}
.feature-card h3 { margin-bottom: .75rem; font-size: 1.2rem; }
.feature-card p { color: var(--c-ink-muted); font-size: .95rem; }

@media (max-width: 700px) {
  .features-grid { grid-template-columns: 1fr; }
}

/* ============================================
   GALLERY — bento grid harmonieux (1 grande + 8 normales)
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(135deg, #2A2A33, #0F0F12);
  cursor: pointer;
  transition: all .3s ease;
  position: relative;
}
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* La première photo prend 2 cols × 2 rows (featured) */
.gallery-grid .gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

/* La 6e photo (item 6) prend 2 cols pour casser la régularité — wide */
.gallery-grid .gallery-item:nth-child(6) {
  grid-column: span 2;
}

@media (max-width: 1000px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }
  .gallery-grid .gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
  .gallery-grid .gallery-item:nth-child(6) { grid-column: auto; }
}
@media (max-width: 700px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; gap: .75rem; }
  .gallery-grid .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; gap: .6rem; }
  .gallery-grid .gallery-item:first-child { grid-column: span 1; }
}

/* ============================================
   ZONES
   ============================================ */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.zone-pill {
  background: var(--c-light);
  border: 1px solid var(--c-grey-line);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: .75rem;
  font-weight: 600;
  color: var(--c-noir);
  transition: all .2s ease;
  font-size: .96rem;
}
.zone-pill:hover {
  border-color: var(--c-rouge);
  background: var(--c-rouge-soft);
}
.zone-pill .ico { color: var(--c-rouge); font-size: 1.1rem; }

/* ============================================
   DEVIS BANNER
   ============================================ */
.devis-banner {
  background: var(--c-noir);
  color: var(--c-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.devis-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(200, 36, 44, 0.32) 0%, transparent 70%);
  border-radius: 50%;
}
.devis-banner > div { position: relative; z-index: 2; }
.devis-banner h3 { color: var(--c-light); font-size: 1.65rem; margin-bottom: .5rem; }
.devis-banner p { color: rgba(255,255,255,0.78); margin: 0; }
.devis-banner .actions { display: flex; gap: .85rem; flex-wrap: wrap; }
.devis-banner .btn-outline {
  background: transparent;
  color: var(--c-light);
  border-color: rgba(255,255,255,0.4);
}
.devis-banner .btn-outline:hover {
  background: var(--c-light);
  color: var(--c-noir);
  border-color: var(--c-light);
}

/* ============================================
   QUOTE HIGHLIGHT (avis client mis en valeur)
   ============================================ */
.big-quote {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 1rem 1.5rem;
}
.big-quote .stars {
  color: #FFD24A;
  font-size: 1.4rem;
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
}
.big-quote blockquote {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.55;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.big-quote cite {
  display: block;
  color: #FFD24A;
  font-style: normal;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: 0.02em;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-form {
  background: var(--c-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--c-grey-line);
}
.contact-form h3 { margin-bottom: 1.75rem; }
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  font-size: .85rem;
  font-weight: 700;
  color: var(--c-noir);
  margin-bottom: .45rem;
  letter-spacing: -0.005em;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1.5px solid var(--c-grey-line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  color: var(--c-ink);
  background: var(--c-cream);
  transition: all .2s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--c-rouge);
  background: var(--c-light);
  box-shadow: 0 0 0 3px rgba(200, 36, 44, 0.12);
}
.form-row textarea { min-height: 110px; resize: vertical; }
.row-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) {
  .row-2col { grid-template-columns: 1fr; }
}

.contact-aside {
  background: var(--c-cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--c-grey-line);
}
.contact-aside h3 { margin-bottom: 1.75rem; }
.contact-channel {
  display: flex; gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-channel .ico {
  font-size: 1.2rem;
  color: var(--c-rouge);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-channel .label {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  margin-bottom: .25rem;
}
.contact-channel .value {
  color: var(--c-noir);
  font-weight: 500;
  font-size: .95rem;
  line-height: 1.5;
}
.contact-channel .value a { color: var(--c-noir); font-weight: 700; }
.contact-channel .value a:hover { color: var(--c-rouge); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--c-noir);
  color: rgba(255, 255, 255, 0.72);
  padding: 4rem 0 2rem;
  font-size: .92rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-brand {
  font-family: 'Manrope', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-light);
  margin-bottom: .5rem;
  line-height: 1;
}
.footer-brand .red { color: var(--c-rouge); }
.footer-tagline {
  color: rgba(255, 255, 255, 0.5);
  font-size: .85rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.site-footer h4 {
  color: var(--c-light);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: .55rem; }
.site-footer ul a { color: rgba(255, 255, 255, 0.65); }
.site-footer ul a:hover { color: var(--c-rouge); }

.footer-bottom {
  padding-top: 1.75rem;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  font-size: .82rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom a { color: rgba(255, 255, 255, 0.65); }
.footer-bottom a:hover { color: var(--c-rouge); }

/* ============================================
   STICKY MOBILE CTA
   ============================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 40;
  background: var(--c-light);
  padding: .8rem 1rem calc(.8rem + env(safe-area-inset-bottom, 0));
  border-top: 1px solid var(--c-grey-line);
  box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
  gap: .75rem;
}
.sticky-cta a {
  flex: 1;
  text-align: center;
  padding: .85rem .5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .95rem;
}
.sticky-cta .tel { background: var(--c-noir); color: var(--c-light); }
.sticky-cta .quote { background: var(--c-rouge); color: var(--c-light); }
@media (max-width: 700px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 70px; }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 2rem; }
