/* ═══════════════════════════════════════════
   Jean Couvreur — style.css v4
   Palette terracotta · encre · crème
   ═══════════════════════════════════════════ */

:root {
  --ink:        #1A1410;
  --ink-mid:    #2C2420;
  --paper:      #F5F0E6;
  --paper-l:    #FAF7F2;
  --terra:      #B85218;
  --terra-l:    #D06830;
  --terra-d:    #944014;
  --sand:       #A89278;
  --mid:        #7A6858;
  --rule:       #DFD3C0;
  --white:      #FEFCF8;
  --red:        #C01818;
  --red-d:      #991414;
  --wa-green:   #25D366;

  /* backward-compat aliases */
  --stone:             var(--ink);
  --stone-mid:         var(--ink-mid);
  --stone-soft:        #352D28;
  --terracotta:        var(--terra);
  --terracotta-light:  var(--terra-l);
  --terracotta-dark:   var(--terra-d);
  --cream:             var(--paper);
  --cream-warm:        #EDE5D4;
  --sand-light:        var(--rule);
  --blue:              var(--terra);
  --blue-light:        var(--terra-l);
  --blue-xlight:       #F0E8DC;
  --copper:            var(--terra);
  --copper-light:      var(--terra-l);
  --cloud:             var(--paper);
  --cloud-mid:         #EDE5D4;
  --border:            var(--rule);
  --border-light:      #EDE5D8;
  --text:              var(--ink);
  --text-soft:         #3A2E26;
  --text-muted:        var(--mid);
  --red-dark:          var(--red-d);
  --gold:              #C9860A;
  --radius:            3px;
  --radius-lg:         6px;
  --shadow-sm:         0 1px 4px rgba(26,20,16,.06);
  --shadow-md:         0 4px 16px rgba(26,20,16,.10);
  --shadow-lg:         0 12px 40px rgba(26,20,16,.14);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
svg { display: block; flex-shrink: 0; }

/* ── TYPE ── */
h1, h2, h3 { font-family: 'Inter', system-ui, sans-serif; }
.t-label {
  display: block;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--terra);
}
.t-section {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1; letter-spacing: -.02em;
}

/* ── CONTAINERS ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 2rem; }

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .48s cubic-bezier(.22,.6,.2,1),
              transform .48s cubic-bezier(.22,.6,.2,1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--terra); color: var(--white);
  padding: .8rem 1.6rem; border-radius: var(--radius);
  font-weight: 600; font-size: .88rem; border: none;
  cursor: pointer; font-family: inherit;
  transition: background .18s, box-shadow .2s, transform .1s;
}
.btn-primary:hover { background: var(--terra-l); box-shadow: 0 4px 16px rgba(184,82,24,.25); }
.btn-primary:active { transform: scale(.97); transition-duration: 80ms; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: .45rem;
  background: transparent; color: var(--ink);
  padding: .8rem 1.6rem; border-radius: var(--radius);
  font-weight: 600; font-size: .88rem;
  border: 1.5px solid var(--rule);
  cursor: pointer; font-family: inherit;
  transition: border-color .18s, color .18s, transform .1s;
}
.btn-secondary:hover { border-color: var(--ink); }
.btn-secondary:active { transform: scale(.97); transition-duration: 80ms; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  color: rgba(255,255,255,.7); font-size: .84rem; font-weight: 600;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  padding: .78rem 1.3rem; border-radius: var(--radius);
  transition: background .18s, border-color .18s, color .18s, transform .1s;
}
.btn-ghost:hover { background: rgba(255,255,255,.13); color: var(--white); border-color: rgba(255,255,255,.28); }
.btn-ghost:active { transform: scale(.97); transition-duration: 80ms; }
.btn-ghost svg { width: 14px; height: 14px; opacity: .8; }

.btn-tel {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--terra); color: var(--white); padding: .9rem 2rem;
  border-radius: var(--radius); font-weight: 700; font-size: 1rem;
  transition: background .18s, transform .1s;
}
.btn-tel:hover { background: var(--terra-l); transform: translateY(-1px); }
.btn-tel:active { transform: scale(.97); }

.btn-urgence {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  background: var(--red); color: var(--white);
  padding: .75rem 1.4rem; border-radius: var(--radius);
  font-weight: 700; font-size: .85rem;
  border: none; cursor: pointer; font-family: inherit; width: 100%;
  transition: background .18s, transform .1s;
}
.btn-urgence:hover { background: var(--red-d); }
.btn-urgence:active { transform: scale(.97); transition-duration: 80ms; }

.btn-urgence-big {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--white); color: var(--red);
  padding: .95rem 2.2rem; border-radius: var(--radius);
  font-weight: 800; font-size: 1.1rem; transition: transform .15s;
}
.btn-urgence-big:hover { transform: scale(1.03); }

/* ── EMERGENCY STRIP ── */
.emergency-strip {
  background: var(--red); color: #fff; text-align: center;
  padding: .42rem 1rem; font-size: .72rem; font-weight: 600;
  letter-spacing: .04em; position: relative; z-index: 200;
  display: flex; align-items: center; justify-content: center; gap: .5rem;
}
.emergency-strip a { color: #fff; text-decoration: underline; }
.emergency-strip svg { width: 13px; height: 13px; opacity: .85; }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 68px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,.07);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled { background: rgba(255,255,255,1); box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.header-logo { display: flex; align-items: center; }
.header-logo img { height: 44px; width: auto; display: block; }
.header-logo-name {
  font-family: 'Inter', system-ui, sans-serif; font-size: 1.1rem;
  color: var(--ink); line-height: 1; letter-spacing: -.01em; font-weight: 700;
}
.header-logo-tag {
  font-size: .6rem; color: var(--mid);
  letter-spacing: .1em; text-transform: uppercase; margin-top: 2px;
}
.header-nav { display: flex; align-items: center; gap: 2.2rem; }
.header-nav a { color: var(--mid); font-size: .82rem; font-weight: 500; transition: color .18s; }
.header-nav a:hover { color: var(--ink); }
.header-cta {
  display: inline-flex; align-items: center; gap: .42rem;
  background: var(--terra); color: var(--white) !important;
  padding: .52rem 1.1rem; border-radius: var(--radius);
  font-weight: 600; font-size: .82rem;
  transition: background .18s, transform .12s;
}
.header-cta:hover { background: var(--terra-l); transform: translateY(-1px); }
.header-cta:active { transform: scale(.97); transition-duration: 80ms; }
.header-cta svg { width: 13px; height: 13px; }

/* ── MOBILE NAV ── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .5rem;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--ink); border-radius: 1px; transition: all .22s;
}
.mobile-nav {
  display: none; position: fixed; inset: 0; background: var(--ink);
  z-index: 300; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Inter', system-ui, sans-serif; font-size: 2rem;
  color: rgba(255,255,255,.65); transition: color .18s;
}
.mobile-nav a:hover { color: var(--terra-l); }
.mobile-nav-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: rgba(255,255,255,.28);
  cursor: pointer; padding: .3rem; transition: color .18s;
}
.mobile-nav-close:hover { color: rgba(255,255,255,.7); }
.mobile-nav-close svg { width: 22px; height: 22px; }

/* ══════════════════════════════════════
   HOMEPAGE — HERO (image fond + split)
══════════════════════════════════════ */
.site-hero {
  position: relative;
  background: url('../images/Jean6.jpg') center 18% / cover no-repeat;
  min-height: min(92vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Overlay dégradé : plus sombre à gauche (lisibilité texte), plus transparent à droite */
.site-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(8,4,2,.88) 0%,
    rgba(8,4,2,.72) 45%,
    rgba(8,4,2,.42) 70%,
    rgba(8,4,2,.28) 100%
  );
  z-index: 0;
}

/* Grid interne dans le container */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 5rem 0;
}

/* ── LEFT : contenu texte ── */
.hero-content {
  display: flex; flex-direction: column; align-items: flex-start;
  justify-content: center;
}
.hero-eyebrow {
  font-size: .68rem; font-weight: 600; letter-spacing: .18em;
  text-transform: uppercase; color: var(--terra); margin-bottom: 1.6rem;
}
.hero-title {
  font-family: 'Inter', system-ui, sans-serif; font-style: normal; font-weight: 800;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: .96; letter-spacing: -.04em;
  color: var(--white); margin-bottom: 1.2rem;
}
.hero-title em { font-style: normal; font-weight: 800; color: var(--terra); }
.hero-sub {
  font-size: .9rem; color: rgba(255,255,255,.38);
  line-height: 1.78; margin-bottom: 1.8rem; max-width: 360px;
}
.hero-phone {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--terra); letter-spacing: .005em; line-height: 1;
  margin-bottom: 2rem;
  transition: color .18s, transform .18s cubic-bezier(.22,.6,.2,1);
}
.hero-phone:hover { color: var(--terra-l); transform: scale(1.025); }
.hero-phone svg { width: 20px; height: 20px; opacity: .8; }
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.6rem; }

/* trust mini-badges sous les CTAs */
.hero-trust { display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; margin-top: .2rem; }
.hero-trust-item {
  display: flex; align-items: center; gap: .4rem;
  font-size: .72rem; font-weight: 500; color: rgba(255,255,255,.38);
  letter-spacing: .02em;
}
.hero-trust-item svg { opacity: .55; flex-shrink: 0; }

/* ── RIGHT : colonne formulaire ── */
.hero-form-col {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Card urgence standalone — glassmorphism sombre */
.hero-urgence-card {
  width: 100%;
  max-width: 380px;
  background: rgba(10, 5, 2, 0.78);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255,255,255,.10);
  border-top: 2px solid rgba(192,24,24,.5);
  border-radius: 14px;
  padding: 1.8rem 1.6rem 1.6rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.04);
}
.urgence-card-head {
  display: flex; align-items: center; gap: .45rem;
  margin-bottom: .9rem;
}
.urgence-card-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #FF7070;
  animation: ud 1.4s ease-in-out infinite; flex-shrink: 0;
}
@keyframes ud { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(.5)} }
.urgence-card-label {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #FF8080;
}
.urgence-card-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.08rem; font-weight: 700; color: var(--white); line-height: 1.35; margin-bottom: 1.1rem;
}

.urgence-mini-form { display: flex; flex-direction: column; gap: .55rem; }
.urgence-mini-form input {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius); padding: .62rem .9rem;
  color: var(--white); font-family: inherit; font-size: .85rem; outline: none;
  transition: border-color .15s, background .15s;
}
.urgence-mini-form input::placeholder { color: rgba(255,255,255,.2); }
.urgence-mini-form input:focus {
  border-color: rgba(192,24,24,.55); background: rgba(255,255,255,.1);
}
.urgence-card-note {
  font-size: .63rem; color: rgba(255,255,255,.2);
  text-align: center; letter-spacing: .04em; margin-top: .2rem;
}

/* ══════════════════════════════════════
   HOMEPAGE — CERTIFICATIONS BAR
══════════════════════════════════════ */
.certif-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
  padding: 2.2rem 0;
}
.certif-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.certif-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.4rem 1.6rem;
  background: var(--paper-l);
  transition: background .18s;
}
.certif-item:hover { background: var(--white); }
.certif-icon {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0;
}
.certif-icon--rge  { background: #E8F5EC; color: #2D8A4E; }
.certif-icon--dec  { background: #EAF0FB; color: #3464C2; }
.certif-icon--exp  { background: #FFF3E8; color: var(--terra); }
.certif-icon--devis{ background: #F0EEF8; color: #5B4CA8; }
.certif-icon svg   { width: 20px; height: 20px; stroke-width: 2; }
.certif-text { display: flex; flex-direction: column; gap: .15rem; }
.certif-text strong {
  font-size: .85rem; font-weight: 700; color: var(--ink); letter-spacing: -.01em;
}
.certif-text span {
  font-size: .72rem; color: var(--mid); line-height: 1.35;
}
.certif-divider { display: none; }

@media (max-width: 900px) {
  .certif-items { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .certif-items { grid-template-columns: 1fr; }
  .certif-item { padding: 1.1rem 1.2rem; }
}

/* ══════════════════════════════════════
   HOMEPAGE — SERVICES PHOTO GRID
══════════════════════════════════════ */
.svc-photo-section { background: var(--paper); padding: 6rem 0; }
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 2.8rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--rule);
}
.section-header-link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .78rem; font-weight: 600; color: var(--terra);
  transition: gap .18s;
}
.section-header-link svg { width: 14px; height: 14px; transition: transform .18s; }
.section-header-link:hover { gap: .55rem; }
.section-header-link:hover svg { transform: translateX(2px); }

.svc-photo-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.svc-photo-card {
  background: var(--paper-l); border: 1px solid var(--rule); border-radius: 2px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .2s, transform .22s cubic-bezier(.22,.6,.2,1), box-shadow .2s;
}
.svc-photo-card:hover { border-color: var(--terra); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-photo-card:active { transform: translateY(-2px) scale(.99); transition-duration: 80ms; }

.spc-img {
  aspect-ratio: 3/2; overflow: hidden; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.spc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.svc-photo-card:hover .spc-img img { transform: scale(1.05); }
.spc-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: .5rem;
}
.spc-img-placeholder.warm {
  background: linear-gradient(150deg, #EDE5D4 0%, #E0D6C2 100%);
  color: #C8B898;
}
.spc-img-placeholder.dark-red {
  background: linear-gradient(150deg, #3A0808 0%, #5A1010 100%);
  color: rgba(255,120,120,.3);
}
.spc-img-placeholder svg { width: 30px; height: 30px; }
.spc-img-placeholder span { font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; opacity: .6; }

.spc-body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: .3rem; flex: 1; }
.spc-icon { display: flex; margin-bottom: .15rem; }
.spc-icon svg { width: 17px; height: 17px; color: var(--terra); }
.spc-name {
  font-family: 'Inter', system-ui, sans-serif; font-size: 1.05rem;
  color: var(--ink); letter-spacing: -.01em; line-height: 1.2;
}
.spc-desc { font-size: .78rem; color: var(--mid); line-height: 1.55; flex: 1; margin-top: .15rem; }
.spc-link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .74rem; font-weight: 600; color: var(--terra);
  margin-top: .5rem; transition: gap .18s;
}
.spc-link svg { width: 12px; height: 12px; }
.svc-photo-card:hover .spc-link { gap: .5rem; }

.spc-urgence .spc-name { color: var(--red); }
.spc-urgence .spc-link { color: var(--red); }
.spc-urgence:hover { border-color: var(--red); }

/* ══════════════════════════════════════
   HOMEPAGE — AVANT / APRÈS
══════════════════════════════════════ */
.ba-section { background: var(--ink-mid); padding: 6rem 0; }
.ba-section .section-header { border-bottom-color: rgba(255,255,255,.06); }
.ba-section .t-label { color: var(--terra); }
.ba-section .t-section { color: var(--white); }
.ba-section .section-header-link { color: rgba(255,255,255,.3); }
.ba-section .section-header-link:hover { color: rgba(255,255,255,.6); }

.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.ba-card { display: flex; flex-direction: column; gap: .75rem; }
.ba-panels { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; border-radius: 4px; overflow: hidden; }
.ba-panel { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.ba-panel img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.22,.6,.2,1); }
.ba-card:hover .ba-panel img { transform: scale(1.03); }
.ba-panel-ph {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: .4rem;
}
.ba-panel-ph.before { background: linear-gradient(160deg, #2A2018 0%, #1C1810 100%); color: rgba(255,255,255,.12); }
.ba-panel-ph.after  { background: linear-gradient(160deg, #2A1A0C 0%, #3A2210 100%); color: rgba(184,82,24,.3); }
.ba-panel-ph svg { width: 22px; height: 22px; }
.ba-panel-ph span { font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; opacity: .7; }

.ba-label {
  position: absolute; top: .5rem; left: .5rem;
  font-size: .6rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; padding: .18rem .45rem; border-radius: 2px;
}
.ba-label--before { background: rgba(0,0,0,.5); color: rgba(255,255,255,.45); }
.ba-label--after  { background: var(--terra); color: var(--white); }
.ba-caption { font-size: .72rem; color: rgba(255,255,255,.25); letter-spacing: .04em; }

/* ══════════════════════════════════════
   HOMEPAGE — AVIS
══════════════════════════════════════ */
.reviews-section { background: var(--ink); padding: 6rem 0; }
.reviews-section .section-header { border-bottom-color: rgba(255,255,255,.06); align-items: flex-end; }
.reviews-section .t-label { color: var(--terra); }
.reviews-section .t-section { color: var(--white); }

/* badge google + bouton GMB */
.reviews-header-top { display: flex; align-items: center; gap: .7rem; margin-bottom: .3rem; }
.reviews-google-badge {
  display: inline-flex; align-items: center; gap: .35rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px; padding: .25rem .6rem;
  font-size: .68rem; font-weight: 600; color: rgba(255,255,255,.5);
  letter-spacing: .04em;
}
.reviews-gmb-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: .65rem 1.1rem;
  font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.6);
  white-space: nowrap;
  transition: background .18s, color .18s, border-color .18s, transform .1s;
}
.reviews-gmb-btn:hover { background: rgba(255,255,255,.11); color: var(--white); border-color: rgba(255,255,255,.2); }
.reviews-gmb-btn:active { transform: scale(.97); transition-duration: 80ms; }
.reviews-gmb-btn svg:last-child { width: 12px; height: 12px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.review-quote {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.5rem;
  display: flex; flex-direction: column;
  transition: background .2s, border-color .2s;
}
.review-quote:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.12);
}
.review-quote-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.review-stars { display: flex; gap: 3px; }
.review-stars svg { width: 14px; height: 14px; fill: #FBBC05; color: #FBBC05; }
.review-quote-text {
  font-family: 'Inter', system-ui, sans-serif; font-style: italic;
  font-size: .93rem; color: rgba(255,255,255,.72);
  line-height: 1.7; margin-bottom: 1.2rem; letter-spacing: 0;
  flex: 1;
}
.review-quote-author {
  font-size: .68rem; font-weight: 600;
  color: rgba(255,255,255,.28); letter-spacing: .07em; text-transform: uppercase;
  padding-top: .9rem;
  border-top: 1px solid rgba(255,255,255,.06);
}

/* ══════════════════════════════════════
   HOMEPAGE — ABOUT
══════════════════════════════════════ */
.about-section { background: var(--paper-l); padding: 6rem 0; }
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 5rem; align-items: center; }
.about-statement {
  font-family: 'Inter', system-ui, sans-serif; font-style: normal; font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem); line-height: 1.15; letter-spacing: -.03em;
  color: var(--ink); margin-bottom: 1.8rem;
}
.about-statement em { color: var(--terra); font-style: normal; font-weight: 800; }
.about-body { font-size: .9rem; color: var(--mid); line-height: 1.82; margin-bottom: 2rem; }
.about-sig {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--sand); margin-bottom: 1.8rem;
}
.about-photo {
  background: var(--paper); border: 1px solid var(--rule); border-radius: 2px;
  aspect-ratio: 4/5; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .6rem;
  color: var(--rule); overflow: hidden;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo-ph { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .6rem; color: var(--rule); }
.about-photo-ph svg { width: 36px; height: 36px; opacity: .35; }
.about-photo-ph span { font-size: .65rem; letter-spacing: .09em; text-transform: uppercase; }

/* ══════════════════════════════════════
   HOMEPAGE — FORM
══════════════════════════════════════ */
.form-section { background: var(--ink); padding: 6rem 0; }
.form-intro { max-width: 560px; margin-bottom: 3rem; }
.form-intro .t-label { color: var(--terra); margin-bottom: .8rem; }
.form-intro .t-section { color: var(--white); margin-bottom: .8rem; }
.form-intro p { font-size: .88rem; color: rgba(255,255,255,.36); line-height: 1.7; }
.form-intro a { color: var(--terra); }
.devis-form { max-width: 560px; display: flex; flex-direction: column; gap: .9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .7rem; font-weight: 600; color: rgba(255,255,255,.28); letter-spacing: .05em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius); padding: .72rem 1rem;
  color: var(--white); font-family: inherit; font-size: .88rem; outline: none;
  transition: border-color .15s, background .15s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.17); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--terra); background: rgba(255,255,255,.09); }
.form-group select option { background: var(--ink); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-rgpd {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .72rem; color: rgba(255,255,255,.24); line-height: 1.5;
}
.form-rgpd input { margin-top: 2px; accent-color: var(--terra); flex-shrink: 0; }
.form-rgpd a { color: var(--terra); }
.form-submit { align-self: flex-start; margin-top: .4rem; }
.form-success {
  display: none; padding: 1rem;
  background: rgba(184,82,24,.12); border: 1px solid var(--terra);
  border-radius: var(--radius); color: var(--terra);
  font-size: .82rem; font-weight: 600;
}

/* ── FOOTER ── */
.site-footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,.04); padding: 4rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  max-width: 1100px; margin: 0 auto; padding: 0 2rem 3.5rem;
}
.footer-brand-name {
  display: block; font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.1rem; color: var(--white); margin-bottom: .25rem; letter-spacing: -.01em;
}
.footer-brand-tag {
  display: block; font-size: .6rem; color: rgba(255,255,255,.2);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1rem;
}
.footer-brand-desc { font-size: .8rem; color: rgba(255,255,255,.27); line-height: 1.7; margin-bottom: 1.2rem; }
.footer-cta-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--terra); color: var(--white);
  padding: .52rem 1rem; border-radius: var(--radius);
  font-size: .8rem; font-weight: 700; transition: background .18s;
}
.footer-cta-btn:hover { background: var(--terra-l); }
.footer-cta-btn svg { width: 13px; height: 13px; }
.footer-col-title {
  display: block; font-size: .6rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.18); margin-bottom: 1rem;
}
.footer-link { display: block; font-size: .8rem; color: rgba(255,255,255,.35); margin-bottom: .5rem; transition: color .18s; }
.footer-link:hover { color: rgba(255,255,255,.78); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.04); padding: 1.2rem 2rem;
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .68rem; color: rgba(255,255,255,.18);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,.18); transition: color .18s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.48); }

/* ── FLOATING BUTTONS ── */
.float-btn-group {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  z-index: 80;
}
.float-phone { display: none; }

/* ── Boutons flottants (sous-pages sans panel rappel) ── */
.float-tel {
  position: fixed; bottom: 5.5rem; right: 1.5rem; z-index: 80;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--terra); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; text-decoration: none;
  box-shadow: 0 4px 16px rgba(184,82,24,.38);
  transition: transform .2s cubic-bezier(.22,.6,.2,1);
}
.float-tel:hover { transform: scale(1.1); }
.float-urgence {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 80;
  display: flex; align-items: center; gap: .45rem;
  background: var(--red); color: var(--white);
  padding: .65rem 1.1rem; border-radius: 30px;
  font-size: .8rem; font-weight: 700; text-decoration: none;
  box-shadow: 0 4px 18px rgba(192,24,24,.45);
  transition: background .18s, transform .2s cubic-bezier(.22,.6,.2,1);
}
.float-urgence:hover { background: var(--red-d); transform: scale(1.04); }
.float-urgence-dot {
  width: 6px; height: 6px; background: #fff; border-radius: 50%;
  animation: ud 1.4s ease-in-out infinite;
}

/* ── Rappel immédiat : wrapper + panel + bouton ── */
.float-rappel-wrapper {
  position: relative; /* ancre du panel absolu */
}

/* Panel slide — position absolute : n'affecte PAS le layout du bouton WA */
.float-rappel-panel {
  position: absolute;
  bottom: calc(100% + .7rem); /* flotte au-dessus du bouton */
  right: 0;
  width: 270px;
  background: rgba(10,5,2,.94);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,.1);
  border-top: 1px solid rgba(192,24,24,.35);
  border-radius: 10px;
  padding: 1.1rem 1.2rem 1.2rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  z-index: 90;
  /* état fermé */
  transform: translateY(8px) scale(.97);
  opacity: 0;
  pointer-events: none;
  transition:
    transform .26s cubic-bezier(.22,.6,.2,1),
    opacity .2s ease;
}
.float-rappel-panel.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.frp-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: .7rem;
}
.frp-title {
  display: flex; align-items: center; gap: .4rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #FF8080;
}
.frp-close {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; background: rgba(255,255,255,.06);
  border: none; border-radius: 50%; cursor: pointer; color: rgba(255,255,255,.45);
  transition: background .15s, color .15s;
}
.frp-close:hover { background: rgba(255,255,255,.14); color: var(--white); }

.frp-sub {
  font-size: .77rem; color: rgba(255,255,255,.38);
  line-height: 1.55; margin-bottom: .95rem;
}

.frp-form { display: flex; flex-direction: column; gap: .5rem; }
.frp-form input {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: .6rem .85rem;
  color: var(--white); font-family: inherit; font-size: .84rem; outline: none;
  transition: border-color .15s, background .15s;
}
.frp-form input::placeholder { color: rgba(255,255,255,.22); }
.frp-form input:focus { border-color: rgba(192,24,24,.6); background: rgba(255,255,255,.1); }

.frp-submit {
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  background: var(--red); color: var(--white);
  padding: .68rem 1rem; border-radius: var(--radius);
  font-family: inherit; font-size: .82rem; font-weight: 700;
  border: none; cursor: pointer; width: 100%; margin-top: .2rem;
  transition: background .15s, transform .1s;
}
.frp-submit:hover { background: var(--red-d); }
.frp-submit:active { transform: scale(.97); transition-duration: 80ms; }
.frp-submit svg { width: 13px; height: 13px; }

/* Bouton trigger */
.float-rappel {
  display: flex; align-items: center; gap: .5rem;
  background: var(--red); color: var(--white);
  padding: .65rem 1.1rem; border-radius: 30px;
  font-family: inherit; font-size: .76rem; font-weight: 700; letter-spacing: .01em;
  white-space: nowrap; border: none; cursor: pointer;
  box-shadow: 0 4px 18px rgba(192,24,24,.45);
  transition: background .18s, transform .2s cubic-bezier(.22,.6,.2,1), box-shadow .2s;
}
.float-rappel:hover { background: var(--red-d); transform: scale(1.04); box-shadow: 0 6px 24px rgba(192,24,24,.55); }
.float-rappel:active { transform: scale(.96); transition-duration: 80ms; }
.float-rappel[aria-expanded="true"] { background: var(--red-d); }
.float-rappel svg { width: 15px; height: 15px; flex-shrink: 0; }

.float-wa {
  width: 48px; height: 48px; background: var(--wa-green); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.38);
  transition: transform .2s cubic-bezier(.22,.6,.2,1), box-shadow .2s;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 22px rgba(37,211,102,.48); }
.float-wa:active { transform: scale(.94); transition-duration: 80ms; }
.float-wa svg { width: 24px; height: 24px; }

/* ── COOKIE BANNER ── */
#jc-banner {
  position: fixed; bottom: 1.5rem; left: 1.5rem;
  background: var(--ink-mid); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius); padding: 1rem 1.2rem;
  font-size: .75rem; color: rgba(255,255,255,.55);
  display: flex; flex-direction: column; gap: .65rem;
  z-index: 500; max-width: 270px; box-shadow: var(--shadow-lg);
}
#jc-banner.hidden { display: none; }
#jc-banner a { color: var(--terra); }
#jc-banner-btns { display: flex; gap: .45rem; }
#jc-accept {
  background: var(--terra); color: var(--white); border: none;
  padding: .4rem .85rem; border-radius: var(--radius);
  font-size: .72rem; font-weight: 600; cursor: pointer; font-family: inherit;
}
#jc-refuse {
  background: rgba(255,255,255,.07); color: rgba(255,255,255,.42);
  border: 1px solid rgba(255,255,255,.1);
  padding: .4rem .85rem; border-radius: var(--radius);
  font-size: .72rem; cursor: pointer; font-family: inherit;
}

/* ════════════════════════════════════════
   PAGES SERVICE
════════════════════════════════════════ */
.page-hero { background: var(--paper); padding: 3.5rem 0 3rem; border-bottom: 1px solid var(--rule); }
.breadcrumb { display: flex; align-items: center; gap: .4rem; font-size: .7rem; color: var(--mid); margin-bottom: 1.2rem; }
.breadcrumb a { color: var(--terra); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--rule); }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--white); border: 1px solid var(--rule); color: var(--mid);
  padding: .3rem .8rem; border-radius: 99px; font-size: .72rem; font-weight: 600; margin-bottom: 1rem;
}
.page-hero-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1.8rem,4vw,2.8rem); line-height: 1.15; letter-spacing: -.02em;
  color: var(--ink); margin-bottom: .9rem;
}
.page-hero-title em { color: var(--terra); font-style: italic; }
.page-hero-sub { font-size: .95rem; color: var(--mid); max-width: 580px; line-height: 1.75; margin-bottom: 1.8rem; }
.page-hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; align-items: center; }

.trust-bar {
  background: var(--ink); padding: .9rem 2rem;
  display: flex; align-items: center; justify-content: center; gap: 2rem; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: .45rem; font-size: .75rem; font-weight: 500; color: rgba(255,255,255,.48); }
.trust-item span { color: var(--terra); font-weight: 700; }
.trust-sep { color: rgba(255,255,255,.1); }

.content-section { padding: 4rem 0; background: var(--paper); }
.content-grid { display: grid; grid-template-columns: 1fr 280px; gap: 3.5rem; align-items: start; }
.content-body { display: flex; flex-direction: column; gap: 1.3rem; }
.content-body h2 { font-family: 'Inter', system-ui, sans-serif; font-size: 1.4rem; color: var(--ink); letter-spacing: -.01em; margin-top: .4rem; }
.content-body h3 { font-size: .95rem; font-weight: 700; color: var(--ink); }
.content-body p { font-size: .9rem; color: var(--mid); line-height: 1.8; }
.content-body ul { padding-left: 1.1rem; display: flex; flex-direction: column; gap: .45rem; }
.content-body ul li { font-size: .9rem; color: var(--mid); line-height: 1.6; }
.content-body ul li::marker { color: var(--terra); }
.sidebar-card { background: var(--paper-l); border: 1px solid var(--rule); border-radius: var(--radius); padding: 1.3rem; }
.sidebar-card.urgence { background: var(--ink); border-color: var(--ink); }
.sidebar-card-title { font-weight: 700; font-size: .85rem; color: var(--ink); margin-bottom: .85rem; }
.sidebar-card.urgence .sidebar-card-title { color: var(--white); }

.process-section { padding: 4rem 0; background: var(--paper-l); }
.process-section .section-title { text-align: center; font-family: 'Inter', system-ui, sans-serif; font-size: 1.8rem; margin-bottom: 2.5rem; }
.process-grid,
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.process-step { text-align: center; padding: 1.2rem .8rem; }
.process-num {
  width: 40px; height: 40px; background: var(--terra); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', system-ui, sans-serif; font-size: 1.1rem; margin: 0 auto .9rem;
}
.process-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(184,82,24,.12); color: var(--terra);
  font-size: .68rem; font-weight: 800; letter-spacing: .08em;
  margin: 0 auto .7rem;
}
.process-step-icon { font-size: 2rem; margin-bottom: .6rem; line-height: 1; }
.process-title,
.process-step-title { font-weight: 700; color: var(--ink); font-size: .88rem; margin-bottom: .35rem; }
.process-desc,
.process-step-desc { font-size: .78rem; color: var(--mid); line-height: 1.55; }

.faq-section { padding: 4rem 0; background: var(--paper); }
.faq-section .section-title { font-family: 'Inter', system-ui, sans-serif; font-size: 1.8rem; text-align: center; margin-bottom: 2rem; }
.faq-list { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.1rem 0; font-size: .9rem; font-weight: 600; color: var(--ink);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; transition: color .18s; font-family: inherit;
}
.faq-question:hover { color: var(--terra); }
.faq-item.open .faq-question { color: var(--terra); }
.faq-chevron { color: var(--sand); transition: transform .25s; }
.faq-chevron svg { width: 14px; height: 14px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 0 1.1rem; font-size: .85rem; color: var(--mid); line-height: 1.75; }

.related-section { padding: 4rem 0; background: var(--paper-l); }
.related-section .section-title { font-family: 'Inter', system-ui, sans-serif; font-size: 1.8rem; text-align: center; margin-bottom: 2rem; }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.service-card {
  background: var(--paper); border: 1px solid var(--rule); border-radius: var(--radius);
  padding: 1.4rem; display: flex; flex-direction: column; gap: .4rem;
  transition: border-color .2s, transform .2s;
}
.service-card:hover { border-color: var(--terra); transform: translateY(-2px); }
.service-icon { font-size: 1.5rem; margin-bottom: .2rem; }
.service-card-title { font-family: 'Inter', system-ui, sans-serif; font-size: 1rem; color: var(--ink); }
.service-card-desc { font-size: .78rem; color: var(--mid); line-height: 1.5; flex: 1; }
.service-card-link { font-size: .75rem; color: var(--terra); font-weight: 600; margin-top: .2rem; }

.cta-section { padding: 5rem 0; background: var(--paper); text-align: center; }
.section-title { font-family: 'Inter', system-ui, sans-serif; font-size: clamp(1.6rem,3vw,2.4rem); color: var(--ink); }
.section-title em { color: var(--terra); font-style: italic; }
.section-intro { font-size: .92rem; color: var(--mid); max-width: 500px; margin: .8rem auto 2rem; line-height: 1.7; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-note { font-size: .72rem; color: var(--sand); margin-top: 1.2rem; letter-spacing: .04em; }

.urgence-band { background: var(--red); padding: 3rem 0; text-align: center; }
.urgence-band-title { font-family: 'Inter', system-ui, sans-serif; font-size: clamp(1.6rem,3vw,2.2rem); color: var(--white); margin-bottom: .6rem; }
.urgence-band-sub { font-size: .88rem; color: rgba(255,255,255,.7); margin-bottom: 2rem; }
.urgence-band-actions { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.urgence-band-note { font-size: .7rem; color: rgba(255,255,255,.35); margin-top: 1rem; letter-spacing: .08em; }
.urgence-hero { background: linear-gradient(150deg,#6B0000 0%,#A01010 100%); padding: 5rem 0; text-align: center; }

/* ══════════════════════════════════════
   SECTION LABEL (label terracotta uppercase)
══════════════════════════════════════ */
.section-label {
  display: block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--terra); margin-bottom: .5rem;
}

/* ══════════════════════════════════════
   PAGE CONTACT — Layout devis
══════════════════════════════════════ */
.devis-grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: 4rem; align-items: start;
}
.devis-info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.1rem 1.3rem; border: 1px solid var(--rule);
  border-radius: var(--radius-lg); background: var(--white);
}
.devis-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; background: var(--paper-l); border-radius: 8px;
}
.devis-info-label {
  font-size: .63rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--sand); margin-bottom: .25rem;
}
.devis-info-value {
  font-size: .98rem; font-weight: 600; color: var(--ink); line-height: 1.3;
}
.devis-info-sub {
  font-size: .77rem; color: var(--mid); line-height: 1.5; margin-top: .15rem;
}

/* ══════════════════════════════════════
   CONTACT-FORM — Formulaire sur fond clair
   (contact/, urgence/) — override du thème sombre homepage
══════════════════════════════════════ */
.contact-form {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 2rem 2.2rem;
  display: flex; flex-direction: column; gap: .85rem;
}
.form-title {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem; font-weight: 700;
  color: var(--ink); letter-spacing: -.01em;
  margin-bottom: .2rem;
}
.form-note {
  font-size: .72rem; color: var(--sand);
  margin-top: .3rem; letter-spacing: .02em;
  text-align: center;
}
/* Labels, inputs, select, textarea sur fond clair */
.contact-form .form-group label {
  color: var(--mid); font-size: .72rem; font-weight: 600;
  letter-spacing: .02em;
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  background: var(--paper-l);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  color: var(--ink);
  padding: .7rem 1rem; font-size: .88rem;
  font-family: inherit; outline: none;
  transition: border-color .15s, background .15s;
}
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder { color: var(--sand); }
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--terra); background: var(--white);
  box-shadow: 0 0 0 2px rgba(184,82,24,.08);
}
.contact-form .form-group select option { background: var(--white); color: var(--ink); }
.contact-form .form-rgpd { color: var(--mid); font-size: .72rem; }
.contact-form .form-rgpd a { color: var(--terra); }

/* ══════════════════════════════════════
   VALUE CARDS (page à-propos)
══════════════════════════════════════ */
.values-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.value-card {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); padding: 1.5rem;
  transition: box-shadow .2s, transform .2s;
}
.value-card:hover { box-shadow: 0 6px 24px rgba(26,20,16,.08); transform: translateY(-2px); }
.value-card-icon { font-size: 1.9rem; margin-bottom: .65rem; line-height: 1; }
.value-card-title { font-size: .93rem; font-weight: 700; color: var(--ink); margin-bottom: .45rem; }
.value-card-desc { font-size: .81rem; color: var(--mid); line-height: 1.6; }

/* ══════════════════════════════════════
   REVIEW CARDS (à-propos / services)
══════════════════════════════════════ */
.star { color: var(--gold); }
.review-card {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); padding: 1.4rem 1.5rem;
}
.review-header { display: flex; align-items: center; gap: .75rem; margin-bottom: .7rem; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--terra); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700; flex-shrink: 0;
}
.review-author-name { font-size: .86rem; font-weight: 700; color: var(--ink); }
.review-author-date { font-size: .7rem; color: var(--sand); margin-top: .1rem; }
.review-stars { display: flex; gap: 2px; margin-bottom: .6rem; font-size: .88rem; }
.review-text { font-size: .83rem; color: var(--mid); line-height: 1.65; margin-bottom: .7rem; }
.review-badge {
  font-size: .62rem; font-weight: 700; color: var(--terra);
  letter-spacing: .06em; text-transform: uppercase;
}

/* ══════════════════════════════════════
   URGENCE HERO — texte sur fond sombre
══════════════════════════════════════ */
.urgence-hero.page-hero { border-bottom: none; }
.urgence-hero .page-hero-title { color: var(--white); }
.urgence-hero .page-hero-title em { color: #f87171; font-style: italic; }
.urgence-hero .page-hero-sub { color: rgba(254,252,248,.72); }
.urgence-hero .breadcrumb { color: rgba(254,252,248,.35); }
.urgence-hero .breadcrumb a { color: rgba(254,252,248,.6); }
.urgence-hero .breadcrumb a:hover { color: var(--white); }
.urgence-hero .breadcrumb-sep { color: rgba(254,252,248,.2); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .site-hero { min-height: 0; }
  .hero-split { grid-template-columns: 1fr; gap: 2rem; padding: 3.5rem 0 2.5rem; }
  .hero-form-col { justify-content: stretch; }
  .hero-urgence-card { max-width: 100%; }
  .svc-photo-grid { grid-template-columns: 1fr 1fr; }
  .ba-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-grid,
  .process-steps { grid-template-columns: 1fr 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
  .devis-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .hero-split { padding: 2.5rem 0 2rem; }
  .hero-title { font-size: clamp(2.6rem, 10vw, 3.5rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .svc-photo-grid, .ba-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .process-grid,
  .process-steps { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
}
