/* ============================================================
   PELTIN ÉLAGAGE — Design System
   DA sobre & pro : vert forêt + accent vert frais
   Bricolage Grotesque (display) + Inter (texte)
   ============================================================ */

:root {
  /* Couleurs */
  --forest-900: #10261C;
  --forest-800: #163020;
  --forest-700: #1B4332;
  --green-600:  #2D6A4F;
  --green-500:  #40916C;
  --accent:     #74C043;   /* vert frais, CTA & accents */
  --accent-600: #5FA531;
  --accent-050: #EDF7E3;

  --cream:      #FAF9F5;
  --sand:       #F1EFE8;
  --line:       #E3E0D6;

  --ink:        #16201B;
  --muted:      #5C6660;
  --white:      #FFFFFF;

  /* Typo */
  --font-display: "Bricolage Grotesque", "Inter", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  /* Rayons & ombres */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(16,38,28,.06);
  --shadow-md: 0 12px 30px rgba(16,38,28,.10);
  --shadow-lg: 0 24px 60px rgba(16,38,28,.16);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);

  /* Z-index */
  --z-header: 50;
  --z-menu: 60;
  --z-backdrop: 55;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; color: var(--forest-900); }

/* ---------- Utilitaires ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 13px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--green-600);
  background: var(--accent-050); padding: 7px 16px; border-radius: var(--r-pill);
}
.eyebrow--light { color: #d8f0c0; background: rgba(116,192,67,.16); }
.lead { font-size: clamp(17px, 2vw, 20px); color: var(--muted); max-width: 62ch; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
h2.h { font-size: clamp(30px, 4.4vw, 50px); }
h3.h { font-size: clamp(21px, 2.4vw, 27px); }

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 16px; padding: 15px 26px;
  border-radius: var(--r-sm); transition: transform .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
  white-space: nowrap; cursor: pointer;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--accent); color: var(--forest-900); box-shadow: 0 8px 20px rgba(116,192,67,.28); }
.btn--primary:hover { background: var(--accent-600); box-shadow: 0 12px 26px rgba(116,192,67,.36); transform: translateY(-2px); }
.btn--dark { background: var(--forest-700); color: #fff; }
.btn--dark:hover { background: var(--forest-800); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--forest-900); border: 1.5px solid var(--line); }
.btn--ghost:hover { border-color: var(--forest-700); background: var(--white); }
.btn--light { background: #fff; color: var(--forest-900); }
.btn--light:hover { background: var(--accent-050); transform: translateY(-2px); }
.btn--block { width: 100%; justify-content: center; }

/* ============================================================
   HEADER
   ============================================================ */
.topbar {
  background: var(--forest-800); color: #cfe0d5;
  font-size: 13.5px;
}
.topbar__row { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 44px; padding-block: 8px; flex-wrap: wrap; }
.topbar__left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item svg { width: 15px; height: 15px; color: var(--accent); flex: none; }
.topbar a:hover { color: #fff; }
.topbar__badge { display: inline-flex; align-items: center; gap: 7px; color: #d8f0c0; font-weight: 600; }
.topbar__badge svg { width: 15px; height: 15px; color: var(--accent); }

.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(250,249,245,.94);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; }

/* Logo / wordmark */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__logo { height: 48px; width: auto; display: block; }
.brand__mark { width: 44px; height: 44px; flex: none; }
@media (max-width: 480px){ .brand__logo { height: 40px; } }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.01em; color: var(--forest-900); }
.brand__name span { color: var(--accent-600); }
.brand__tag { font-family: var(--font-body); font-size: 10.5px; font-weight: 600; letter-spacing: .34em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-weight: 500; font-size: 15.5px; color: var(--forest-800);
  padding: 10px 15px; border-radius: var(--r-sm); transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--green-600); background: var(--sand); }
.nav__links a.active { color: var(--green-600); }

.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone { display: inline-flex; align-items: center; gap: 11px; }
.nav__phone-ic {
  width: 44px; height: 44px; border-radius: 50%; background: var(--accent);
  display: grid; place-items: center; flex: none;
}
.nav__phone-ic svg { width: 20px; height: 20px; color: var(--forest-900); }
.nav__phone-txt small { display: block; font-size: 12px; color: var(--muted); }
.nav__phone-txt b { font-family: var(--font-display); font-size: 19px; color: var(--forest-900); letter-spacing: -0.01em; }

.nav__toggle { display: none; width: 46px; height: 46px; border-radius: var(--r-sm); background: var(--forest-700); place-items: center; }
.nav__toggle svg { width: 24px; height: 24px; color: #fff; }

/* Off-canvas mobile */
.backdrop {
  position: fixed; inset: 0; background: rgba(16,38,28,.5);
  opacity: 0; visibility: hidden; transition: opacity .3s ease; z-index: var(--z-backdrop);
}
.backdrop.open { opacity: 1; visibility: visible; }
.mobile-menu {
  position: fixed; top: 0; right: 0; height: 100dvh; width: min(86vw, 360px);
  background: var(--cream); z-index: var(--z-menu);
  transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1);
  padding: 26px 26px 40px; display: flex; flex-direction: column; gap: 8px;
  box-shadow: -20px 0 50px rgba(16,38,28,.2); overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mobile-menu__close { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--sand); display: grid; place-items: center; }
.mobile-menu__close svg { width: 22px; height: 22px; }
.mobile-menu a.m-link { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--forest-900); padding: 13px 12px; border-radius: var(--r-sm); transition: background .2s; }
.mobile-menu a.m-link:hover, .mobile-menu a.m-link.active { background: var(--sand); color: var(--green-600); }
.mobile-menu__cta { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--line); display: grid; gap: 10px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,38,28,.78) 0%, rgba(16,38,28,.62) 45%, rgba(16,38,28,.86) 100%);
}
.hero__inner { position: relative; z-index: 1; padding-block: clamp(70px, 12vw, 130px); }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.hero h1 { color: #fff; font-size: clamp(38px, 6vw, 68px); }
.hero h1 span { color: var(--accent); }
.hero__lead { color: rgba(255,255,255,.9); font-size: clamp(16px, 2vw, 19px); margin-top: 20px; max-width: 52ch; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.hero__proof { display: flex; align-items: center; gap: 14px; margin-top: 40px; flex-wrap: wrap; }
.hero__proof-ic { width: 46px; height: 46px; flex: none; border-radius: 12px; background: rgba(116,192,67,.16); display: grid; place-items: center; }
.hero__proof-ic svg { width: 24px; height: 24px; color: var(--accent); }
.hero__proof-txt b { color: #fff; font-family: var(--font-display); }
.hero__proof-txt span { display: block; color: rgba(255,255,255,.8); font-size: 14px; }
.stars { color: var(--accent); letter-spacing: 2px; }

/* Carte "urgence" dans le hero */
.hero__card {
  background: rgba(255,255,255,.08); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18); border-radius: var(--r-lg);
  padding: 30px; box-shadow: var(--shadow-lg);
}
.hero__card h3 { color: #fff; font-size: 22px; }
.hero__card p { color: rgba(255,255,255,.82); font-size: 15px; margin-top: 8px; }
.hero__card ul { margin-top: 18px; display: grid; gap: 12px; }
.hero__card li { display: flex; align-items: center; gap: 11px; color: #eef6ee; font-size: 15px; }
.hero__card li svg { width: 20px; height: 20px; color: var(--accent); flex: none; }
.hero__card .btn { margin-top: 24px; }

/* Bande de réassurance sous le hero */
.trustbar { background: var(--forest-700); }
.trustbar__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-block: 26px; }
.trustbar__item { display: flex; align-items: center; gap: 13px; color: #eaf3ea; }
.trustbar__item svg { width: 30px; height: 30px; color: var(--accent); flex: none; }
.trustbar__item b { display: block; font-family: var(--font-display); font-size: 16px; color: #fff; }
.trustbar__item span { font-size: 13.5px; color: #b9cdbf; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 34px 30px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative; overflow: hidden;
}
.svc-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__ic {
  width: 62px; height: 62px; border-radius: var(--r-sm); background: var(--accent-050);
  display: grid; place-items: center; margin-bottom: 22px;
}
.svc-card__ic svg { width: 32px; height: 32px; color: var(--green-600); }
.svc-card h3 { font-size: 22px; margin-bottom: 10px; }
.svc-card p { color: var(--muted); font-size: 15.5px; }
.svc-card__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.svc-card__tags span { font-size: 12.5px; font-weight: 500; color: var(--green-600); background: var(--sand); padding: 5px 11px; border-radius: var(--r-pill); }
.svc-card__link { display: inline-flex; align-items: center; gap: 7px; margin-top: 20px; font-weight: 600; color: var(--green-600); font-size: 15px; }
.svc-card__link svg { width: 16px; height: 16px; transition: transform .2s; }
.svc-card:hover .svc-card__link svg { transform: translateX(4px); }

/* ============================================================
   ABOUT / SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.split__badge {
  position: absolute; left: -22px; bottom: -22px; background: var(--forest-700); color: #fff;
  border-radius: var(--r-md); padding: 22px 26px; box-shadow: var(--shadow-lg); text-align: center;
}
.split__badge b { font-family: var(--font-display); font-size: 40px; display: block; color: var(--accent); }
.split__badge span { font-size: 13px; color: #cfe0d5; letter-spacing: .04em; }
.feature-list { display: grid; gap: 16px; margin-top: 28px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .fi-ic { width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--accent-050); display: grid; place-items: center; flex: none; }
.feature-list .fi-ic svg { width: 20px; height: 20px; color: var(--green-600); }
.feature-list b { display: block; color: var(--forest-900); font-family: var(--font-display); font-size: 17px; }
.feature-list p { color: var(--muted); font-size: 15px; }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--forest-800); color: #fff; }
.stats__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats__item b { font-family: var(--font-display); font-size: clamp(38px, 5vw, 56px); color: var(--accent); display: block; letter-spacing: -0.02em; }
.stats__item span { color: #b9cdbf; font-size: 15px; }

/* ============================================================
   AVIS / TESTIMONIALS
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.review__stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 14px; }
.review p { color: var(--ink); font-size: 15.5px; flex: 1; }
.review__foot { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.review__av { width: 46px; height: 46px; border-radius: 50%; background: var(--green-500); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; flex: none; }
.review__foot b { display: block; font-size: 15px; color: var(--forest-900); }
.review__foot span { font-size: 13px; color: var(--muted); }

/* Bloc avis / confiance (honnête, sans faux témoignages) */
.reviews-cta { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 64px); align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(28px, 4vw, 52px); box-shadow: var(--shadow-sm); }
.reviews-cta__points { display: grid; gap: 16px; }
.reviews-cta__points li { display: flex; align-items: center; gap: 14px; font-size: 15.5px; color: var(--forest-900); font-weight: 500; }
.reviews-cta__points .fi-ic { width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--accent-050); display: grid; place-items: center; flex: none; }
.reviews-cta__points .fi-ic svg { width: 20px; height: 20px; color: var(--green-600); }
@media (max-width: 820px){ .reviews-cta { grid-template-columns: minmax(0,1fr); } }

/* ============================================================
   ZONE / VILLES
   ============================================================ */
.zone-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-top: 40px; }
.zone-chip {
  display: flex; align-items: center; gap: 11px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 15px 18px; font-weight: 500; transition: border-color .2s, transform .2s, box-shadow .2s;
}
.zone-chip:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.zone-chip svg { width: 19px; height: 19px; color: var(--green-600); flex: none; }
.map-wrap { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-band { position: relative; color: #fff; overflow: hidden; border-radius: var(--r-lg); }
.cta-band__bg { position: absolute; inset: 0; z-index: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(16,38,28,.92), rgba(27,67,50,.78)); }
.cta-band__in { position: relative; z-index: 1; padding: clamp(44px, 6vw, 72px); display: grid; grid-template-columns: 1.3fr .7fr; gap: 32px; align-items: center; }
.cta-band h2 { color: #fff; font-size: clamp(28px, 4vw, 42px); }
.cta-band p { color: rgba(255,255,255,.85); margin-top: 12px; }
.cta-band__actions { display: flex; flex-direction: column; gap: 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--forest-900); color: #b9cdbf; padding-block: clamp(52px, 7vw, 80px) 0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer h4 { color: #fff; font-size: 16px; margin-bottom: 18px; font-family: var(--font-display); }
.footer a { color: #b9cdbf; transition: color .2s; }
.footer a:hover { color: var(--accent); }
.footer__links { display: grid; gap: 11px; font-size: 15px; }
.footer__about p { font-size: 15px; margin-top: 16px; line-height: 1.7; }
.footer .brand__name { color: #fff; }
.footer .brand__tag { color: #7f9587; }
.footer__contact li { display: flex; gap: 11px; align-items: flex-start; margin-bottom: 13px; font-size: 15px; }
.footer__contact svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 3px; }
.footer__socials { display: flex; gap: 10px; margin-top: 20px; }
.footer__socials a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .2s; }
.footer__socials a:hover { background: var(--accent); }
.footer__socials svg { width: 18px; height: 18px; color: #fff; }
.footer__bottom { margin-top: 48px; border-top: 1px solid rgba(255,255,255,.1); padding-block: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }

/* ============================================================
   PAGE HEADER (pages internes)
   ============================================================ */
.page-hero { position: relative; color: #fff; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,38,28,.72), rgba(16,38,28,.86)); }
.page-hero__in { position: relative; z-index: 1; padding-block: clamp(60px, 9vw, 104px); }
.page-hero h1 { color: #fff; font-size: clamp(34px, 5vw, 56px); }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 14px; color: rgba(255,255,255,.75); margin-bottom: 16px; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* ============================================================
   SERVICE DETAIL (page services)
   ============================================================ */
.svc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
.svc-detail:nth-child(even) .svc-detail__media { order: 2; }
.svc-detail__media img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.svc-detail h2 { font-size: clamp(26px, 3.4vw, 38px); }
.svc-detail__list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.svc-detail__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15.5px; }
.svc-detail__list svg { width: 20px; height: 20px; color: var(--accent-600); flex: none; margin-top: 2px; }
.chip-num { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--accent); color: var(--forest-900); font-family: var(--font-display); font-weight: 800; margin-bottom: 16px; }

/* ============================================================
   FORMULAIRE CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(32px, 5vw, 56px); align-items: start; }
.contact-info { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; }
.contact-info__item { display: flex; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px; box-shadow: var(--shadow-sm); min-width: 0; }
.contact-info__item > div { min-width: 0; }
.contact-info__item a, .contact-info__item p, .contact-info__item b { overflow-wrap: anywhere; }
.contact-info__ic { width: 50px; height: 50px; border-radius: var(--r-sm); background: var(--accent-050); display: grid; place-items: center; flex: none; }
.contact-info__ic svg { width: 24px; height: 24px; color: var(--green-600); }
.contact-info__item b { font-family: var(--font-display); font-size: 17px; color: var(--forest-900); display: block; margin-bottom: 3px; }
.contact-info__item a, .contact-info__item p { color: var(--muted); font-size: 15.5px; }
.contact-info__item a:hover { color: var(--green-600); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; min-width: 0; }
.field label { font-weight: 600; font-size: 14.5px; color: var(--forest-800); }
.field input, .field select, .field textarea {
  width: 100%; min-width: 0;
  font-family: inherit; font-size: 16px; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--cream); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(116,192,67,.18);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 4px; }
.hp { position: absolute; left: -9999px; opacity: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; gap: 14px; max-width: 820px; margin: 40px auto 0; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 4px 24px; box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; padding: 20px 0; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--forest-900); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 26px; color: var(--green-600); font-weight: 400; transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding-bottom: 22px; font-size: 15.5px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__card { max-width: 460px; }
  .svc-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trustbar__row { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

@media (max-width: 900px) {
  .nav__links, .nav__phone-txt { display: none; }
  .nav__toggle { display: grid; }
  .split { grid-template-columns: 1fr; }
  .split__media { max-width: 480px; }
  .svc-detail, .svc-detail:nth-child(even) .svc-detail__media { grid-template-columns: 1fr; order: 0; }
  .contact-grid, .cta-band__in { grid-template-columns: minmax(0, 1fr); }
  .cta-band__actions { flex-direction: row; flex-wrap: wrap; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .svc-grid, .reviews-grid, .stats__row { grid-template-columns: 1fr; }
  .stats__row { gap: 32px; }
  .form-row, .svc-detail__list { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .split__badge { left: 50%; transform: translateX(-50%); bottom: -20px; }
  .topbar__left .topbar__item:nth-child(2) { display: none; }
  .hero__actions .btn { flex: 1; justify-content: center; }
}

/* ============================================================
   BOUTON WHATSAPP FLOTTANT
   ============================================================ */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 58px;
  padding: 0 13px;
  border-radius: var(--r-pill);
  background: #25D366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .38);
  transition: gap .28s ease, padding .28s ease, transform .2s ease, box-shadow .2s ease;
}
.wa-float svg {
  width: 32px;
  height: 32px;
  flex: none;
  fill: currentColor;
}
.wa-float__txt {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  opacity: 0;
  transition: max-width .28s ease, opacity .2s ease;
}
.wa-float:hover,
.wa-float:focus-visible {
  gap: 10px;
  padding: 0 20px 0 13px;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(37, 211, 102, .46);
}
.wa-float:hover .wa-float__txt,
.wa-float:focus-visible .wa-float__txt {
  max-width: 200px;
  opacity: 1;
}
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid #25D366;
  animation: wa-pulse 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0%   { opacity: .7; transform: scale(1); }
  70%  { opacity: 0;  transform: scale(1.35); }
  100% { opacity: 0;  transform: scale(1.35); }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float, .wa-float__txt { transition: none; }
  .wa-float::after { animation: none; }
}
@media (max-width: 640px) {
  .wa-float { right: 16px; bottom: 16px; height: 54px; padding: 0 11px; }
  .wa-float svg { width: 30px; height: 30px; }
}

/* ============================================================
   GALERIE RÉALISATIONS + LIGHTBOX
   ============================================================ */
.gal { columns: 3 300px; column-gap: 20px; margin-top: 52px; }
.gal__item { break-inside: avoid; margin: 0 0 20px; position: relative; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--sand); }
.gal__item img { display: block; width: 100%; height: auto; cursor: zoom-in; transition: transform .5s ease; }
.gal__item:hover img { transform: scale(1.04); }
.gal__item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 40px 18px 16px;
  color: #fff; font-size: 14.5px; font-weight: 500; line-height: 1.35;
  background: linear-gradient(to top, rgba(16,38,28,.82), rgba(16,38,28,0));
  opacity: 0; transform: translateY(10px); transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.gal__item:hover figcaption, .gal__item:focus-within figcaption { opacity: 1; transform: translateY(0); }
.gal__cat { display: block; font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }

.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 24px;
  background: rgba(10,22,16,.92); backdrop-filter: blur(4px);
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.lightbox__close {
  position: absolute; top: 18px; right: 22px; width: 46px; height: 46px;
  border: none; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff;
  font-size: 30px; line-height: 1; cursor: pointer; transition: background .2s;
}
.lightbox__close:hover { background: rgba(255,255,255,.28); }
@media (max-width: 640px){ .gal { columns: 2 150px; column-gap: 14px; } .gal__item { margin-bottom: 14px; } .gal__item figcaption { font-size: 12.5px; padding: 30px 12px 12px; } }
@media (max-width: 380px){ .gal { columns: 1; } }

/* ===== APERÇU RÉALISATIONS (home) ===== */
.gal-preview__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 34px; }
.gal-preview__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gal-preview__item { position: relative; display: block; border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-sm); }
.gal-preview__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.gal-preview__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(16,38,28,.5), transparent 55%); opacity: 0; transition: opacity .35s; }
.gal-preview__item:hover img { transform: scale(1.06); }
.gal-preview__item:hover::after { opacity: 1; }
.gal-preview__item span { position: absolute; left: 14px; bottom: 12px; z-index: 2; color: #fff; font-size: 13px; font-weight: 600; opacity: 0; transform: translateY(6px); transition: opacity .35s, transform .35s; }
.gal-preview__item:hover span { opacity: 1; transform: none; }
@media (max-width: 820px){ .gal-preview__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px){ .gal-preview__grid { gap: 12px; } }

/* ===== Badge avis Google ===== */
.grev { display: inline-flex; align-items: center; gap: 12px; padding: 12px 18px; background: #fff; border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow-sm); margin-bottom: 22px; }
.grev__g { width: 26px; height: 26px; flex: none; }
.grev__stars { display: inline-flex; gap: 2px; color: #FBBC05; }
.grev__stars svg { width: 17px; height: 17px; }
.grev__txt { font-size: 13.5px; color: var(--muted); font-weight: 500; }
.grev__txt b { color: var(--ink); font-weight: 700; }
