/* ============================================================
   Élagages Rémi Leclerc
   Système : neutres chauds « bois scié » · verts forêt · lime en accent unique
   Type : Barlow Condensed (display) / Barlow (corps)
   ============================================================ */

:root {
  /* Neutres chauds (biais khaki — choisis, pas un gris par défaut) */
  --bone:      #f4f2ea;
  --paper:     #ffffff;
  --sand:      #ebe7da;
  --line:      #dbd6c6;
  --line-soft: #e6e2d5;

  /* Encre & verts */
  --ink:       #1a231c;
  --ink-soft:  #33413a;
  --muted:     #676c5c;
  --forest-d:  #16311d;   /* sol du hero */
  --forest:    #295a31;   /* vert primaire */
  --moss:      #4c7c39;

  /* Accent unique */
  --lime:      #8ec63f;
  --lime-d:    #79ac30;
  --on-lime:   #17231a;

  --r:    9px;
  --r-sm: 6px;
  --wrap: 1140px;
  --head-h: 76px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bone);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--forest); text-decoration: none; }

h1, h2, h3, h4 {
  font-family: "Barlow Condensed", "Barlow", sans-serif;
  font-weight: 700;
  line-height: 1.04;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.9rem, 6.5vw, 5rem); letter-spacing: -.5px; }
h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); letter-spacing: -.3px; }
h3 { font-size: 1.4rem; letter-spacing: 0; }
p { margin: 0; }

.wrap { width: min(100% - 2.6rem, var(--wrap)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--ink); color: #fff; padding: .6rem 1rem; }
.skip-link:focus { left: .5rem; top: .5rem; }

/* Ligne + label (kicker) — device sobre, utilisé avec parcimonie */
.kicker {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: "Barlow Condensed", sans-serif; font-weight: 600;
  text-transform: uppercase; letter-spacing: .18em; font-size: .82rem;
  color: var(--moss); margin-bottom: 1rem;
}
.kicker::before { content: ""; width: 28px; height: 2px; background: var(--lime); }
.kicker.on-dark { color: var(--lime); }
.kicker.on-dark::before { background: var(--lime); }

/* ── Boutons ── */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: "Barlow Condensed", sans-serif; font-weight: 600;
  font-size: 1.08rem; letter-spacing: .5px; text-transform: uppercase;
  padding: .8rem 1.5rem; border-radius: var(--r-sm);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .15s var(--ease), background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.btn svg { width: 19px; height: 19px; }
.btn-cta { background: var(--lime); color: var(--on-lime); }
.btn-cta:hover { background: var(--lime-d); }
.btn-primary { background: var(--forest); color: #fff; }
.btn-primary:hover { background: #1f4726; }
.btn-ghost { background: transparent; color: var(--forest); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--forest); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.07); }
.btn-lg { font-size: 1.2rem; padding: .95rem 1.8rem; }
.btn:active { transform: translateY(1px); }

/* ============================================================
   En-tête
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,242,234,.88);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 6px 22px rgba(26,35,28,.07); }
.header-inner { display: flex; align-items: center; gap: 1.2rem; min-height: var(--head-h); }
.brand { display: flex; align-items: center; gap: .7rem; color: var(--ink); }
.brand-mark { height: 48px; width: auto; }
.brand-name {
  font-family: "Barlow Condensed", sans-serif; font-weight: 700;
  font-size: 1.25rem; line-height: .95; text-transform: uppercase; letter-spacing: .2px;
}
.main-nav { margin-left: auto; display: flex; align-items: center; gap: .15rem; }
.main-nav > a {
  color: var(--ink-soft); font-weight: 500; padding: .5rem .85rem; border-radius: var(--r-sm);
  position: relative; transition: color .15s;
}
.main-nav > a:hover { color: var(--forest); }
.main-nav > a.active { color: var(--forest); font-weight: 600; }
.main-nav > a.active::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .15rem; height: 2px; background: var(--lime);
}
.nav-cta { margin-left: .5rem; }
.header-phone {
  display: none; align-items: center; gap: .45rem;
  font-family: "Barlow Condensed", sans-serif; font-weight: 600; font-size: 1.16rem; color: var(--forest);
}
.header-phone svg { width: 18px; height: 18px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; margin-left: auto; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: .25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   Hero — split asymétrique, motif ERL sur panneau forêt
   ============================================================ */
.hero { position: relative; background: var(--forest-d); color: #fff; overflow: hidden; }
/* texture topographique subtile */
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .5; pointer-events: none;
  background-image:
    radial-gradient(60% 55% at 78% 42%, rgba(78,124,57,.55) 0%, transparent 60%),
    repeating-radial-gradient(circle at 82% 40%, rgba(255,255,255,.05) 0 1px, transparent 1px 46px);
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 2rem;
  padding: clamp(3.2rem, 6vw, 5.5rem) 0 clamp(3.4rem, 6vw, 5.5rem);
}
.hero-copy { max-width: 620px; }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--lime); }
.hero-sub { font-size: 1.2rem; color: #cdd8c9; margin: 1.2rem 0 2rem; max-width: 48ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2.4rem; }
.hero-trust { list-style: none; margin: 0; padding: 1.5rem 0 0; border-top: 1px solid rgba(255,255,255,.14);
  display: flex; flex-wrap: wrap; gap: .6rem 1.8rem; }
.hero-trust li { display: flex; align-items: center; gap: .5rem; color: #e4ebe0; font-weight: 500; font-size: .98rem; }
.hero-trust svg { width: 18px; height: 18px; color: var(--lime); flex: 0 0 auto; }
.hero-figure { position: relative; display: grid; place-items: center; align-self: stretch; }
.hero-figure .frame {
  position: relative; width: 100%; max-width: 380px; aspect-ratio: 4/5;
  border: 1px solid rgba(255,255,255,.16); border-radius: var(--r);
  background: linear-gradient(160deg, rgba(78,124,57,.18), rgba(0,0,0,.12));
  display: grid; place-items: center; overflow: hidden;
}
.hero-figure .frame::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0 1px, transparent 1px 26px);
}
.hero-figure img { width: 66%; filter: brightness(0) invert(1); opacity: .92; }
.hero-figure img.hero-photo { width: 100%; height: 100%; object-fit: cover; filter: none; opacity: 1; }
.about-photo { position: relative; margin: 0; border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line); aspect-ratio: 4/5; box-shadow: 0 18px 40px -24px rgba(26,35,28,.5); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-photo figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; letter-spacing: .08em;
  font-size: .8rem; color: #fff; padding: 1.4rem .9rem .7rem;
  background: linear-gradient(to top, rgba(22,49,29,.82), rgba(22,49,29,0));
}
.hero-figure .tag {
  position: absolute; bottom: 1rem; left: 1rem; z-index: 3;
  font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; letter-spacing: .12em;
  font-size: .78rem; color: var(--lime); background: rgba(22,49,29,.7); padding: .3rem .7rem; border-radius: 4px;
}

/* ============================================================
   Sections
   ============================================================ */
.section { padding: clamp(3.6rem, 7vw, 6rem) 0; }
.section-alt { background: var(--sand); }
.section-ink { background: var(--forest-d); color: #fff; }
.section-head { max-width: 660px; margin-bottom: 2.8rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .kicker { justify-content: center; }
.section-head p { color: var(--muted); font-size: 1.12rem; margin-top: .8rem; }
.section-ink .section-head p { color: #cdd8c9; }

/* ── Services : cartes nettes à filet fin ── */
.services-grid { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); }
.service-card { background: var(--paper); padding: 1.7rem 1.6rem; transition: background .18s var(--ease); }
.service-card:hover { background: #fcfdf9; }
.service-ico { color: var(--forest); margin-bottom: .9rem; }
.service-ico svg { width: 30px; height: 30px; stroke-width: 1.6; }
.service-card h3 { margin-bottom: .35rem; }
.service-card p { color: var(--muted); font-size: .97rem; }
.service-num {
  float: right; font-family: "Barlow Condensed", sans-serif; font-weight: 600;
  color: var(--line); font-size: 1.5rem; line-height: 1;
}

/* Version détaillée (page services) */
.services-detailed { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); }
.svc {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 1.8rem;
  display: grid; grid-template-columns: auto 1fr; gap: 1rem 1.1rem; align-content: start;
}
.svc .svc-ico { grid-row: span 2; color: var(--forest); }
.svc .svc-ico svg { width: 32px; height: 32px; stroke-width: 1.6; }
.svc h3 { align-self: center; }
.svc p { grid-column: 2; color: var(--ink-soft); font-size: .98rem; }

/* ── Avantages ── */
.features { display: grid; gap: 1.6rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.feature { display: flex; gap: .85rem; align-items: flex-start; }
.feature .fico { flex: 0 0 auto; width: 42px; height: 42px; display: grid; place-items: center; color: var(--forest);
  border: 1px solid var(--line); border-radius: var(--r-sm); background: var(--paper); }
.feature .fico svg { width: 21px; height: 21px; }
.feature h3 { font-size: 1.18rem; margin-bottom: .15rem; }
.feature p { color: var(--muted); font-size: .95rem; }

/* ── Split (à propos / zone) ── */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center; }
.split.reverse > :first-child { order: 2; }

/* Zone */
.zone-list { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.4rem 0 0; padding: 0; }
.zone-list li { list-style: none; background: var(--paper); border: 1px solid var(--line); padding: .48rem .95rem;
  border-radius: var(--r-sm); font-weight: 600; font-size: .96rem; display: flex; align-items: center; gap: .4rem; }
.zone-list li svg { width: 15px; height: 15px; color: var(--moss); }
.zone-list li.more { background: transparent; border-style: dashed; color: var(--muted); font-weight: 500; }
.panel-dark {
  background: var(--forest-d); color: #fff; border-radius: var(--r); padding: 2.2rem; position: relative; overflow: hidden;
}
.panel-dark::after { content: ""; position: absolute; right: -40px; bottom: -40px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(142,198,63,.22), transparent 68%); }
.panel-dark h3 { color: var(--lime); font-size: 1.55rem; margin-bottom: .5rem; }
.panel-dark p { color: #cdd8c9; margin-bottom: 1.2rem; }

/* ── Avis clients ── */
.reviews-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.review-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 1.7rem; }
.review-card .stars { display: inline-flex; gap: 1px; margin-bottom: .8rem; }
.review-card .stars svg { width: 18px; height: 18px; color: #d6d2c3; }
.review-card .stars .on svg { color: #e8a91f; fill: #e8a91f; }
.review-card .quote { color: var(--ink-soft); font-size: 1.04rem; line-height: 1.6; }
.review-card .who { margin-top: 1.1rem; padding-top: 1rem; border-top: 1px solid var(--line-soft); font-weight: 600; }
.review-card .who span { color: var(--muted); font-weight: 500; }

/* ── FAQ (accordéon) ── */
.faq { max-width: 820px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  padding: 1.35rem .2rem; font-family: "Barlow Condensed", sans-serif; font-weight: 600; font-size: 1.3rem;
  color: var(--ink); transition: color .15s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }
.faq-item summary:hover { color: var(--forest); }
.faq-item summary:focus-visible { outline: 2px solid var(--moss); outline-offset: 3px; border-radius: 4px; }
.faq-item summary svg { width: 22px; height: 22px; color: var(--moss); flex: 0 0 auto; transition: transform .25s var(--ease); }
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-a { padding: 0 .2rem 1.45rem; }
.faq-a p { color: var(--muted); margin: 0; max-width: 68ch; font-size: 1.02rem; }

/* ── Galerie ── */
.gallery-grid { display: grid; gap: 12px; grid-template-columns: repeat(auto-fill, minmax(258px, 1fr)); grid-auto-rows: 210px; }
.gallery-item { overflow: hidden; border-radius: var(--r-sm); position: relative; background: var(--sand); cursor: pointer;
  border: 1px solid var(--line); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; }
.gallery-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: .9rem .8rem .6rem;
  background: linear-gradient(transparent, rgba(22,35,28,.82)); color: #fff; font-size: .9rem; font-weight: 500;
  opacity: 0; transform: translateY(6px); transition: .25s var(--ease); }
.gallery-item:hover .gallery-cap { opacity: 1; transform: none; }
.gallery-empty { border: 1px solid var(--line); border-radius: var(--r); padding: 3.5rem 1.5rem; text-align: center;
  color: var(--muted); background: var(--paper); }
.gallery-empty svg { width: 46px; height: 46px; color: var(--moss); margin-bottom: .7rem; }
.gallery-empty h3 { color: var(--ink); margin-bottom: .4rem; }

/* Placeholders photo */
.photo-ph { position: relative; border-radius: var(--r); overflow: hidden; border: 1px solid var(--line);
  background: repeating-linear-gradient(135deg, var(--sand) 0 16px, #e4e0d2 16px 32px);
  display: grid; place-items: center; text-align: center; color: var(--muted); min-height: 220px; aspect-ratio: 4/3; }
.photo-ph .ph-inner { display: grid; gap: .35rem; justify-items: center; padding: 1rem; }
.photo-ph svg { width: 40px; height: 40px; color: var(--moss); }
.photo-ph strong { color: var(--ink); font-family: "Barlow Condensed", sans-serif; font-size: 1.1rem; text-transform: uppercase; letter-spacing: .04em; }
.photo-ph span { font-size: .86rem; }
.gallery-item.photo-ph { aspect-ratio: auto; min-height: 0; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 300; display: none; background: rgba(12,18,13,.94);
  align-items: center; justify-content: center; padding: 1.5rem; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 6px; }
.lightbox-close { position: absolute; top: 1.1rem; right: 1.4rem; background: none; border: 0; color: #fff; font-size: 2.4rem; line-height: 1; cursor: pointer; }

/* ============================================================
   Bande CTA + Pied de page
   ============================================================ */
.cta-band { background: var(--forest); color: #fff; padding: clamp(2.8rem, 5vw, 3.8rem) 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.88); margin-top: .35rem; max-width: 520px; }
.cta-band-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

.site-footer { background: var(--forest-d); color: #b9c4b1; padding: 3.4rem 0 1.6rem; }
.footer-grid { display: grid; gap: 2.2rem; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; }
.footer-brand { display: flex; gap: 1rem; align-items: flex-start; }
.footer-mark { height: 60px; width: auto; filter: brightness(0) invert(1); opacity: .95; }
.footer-name { font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: 1.28rem; color: #fff; text-transform: uppercase; margin-bottom: .2rem; }
.footer-tag { font-size: .94rem; color: #93a189; }
.footer-col h3 { color: #fff; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: .95rem; }
.footer-contact, .footer-nav { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer-contact a, .footer-contact span, .footer-nav a { color: #b9c4b1; display: flex; align-items: center; gap: .55rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--lime); flex: 0 0 auto; }
.footer-contact a:hover, .footer-nav a:hover { color: #fff; }
.socials { display: flex; gap: .55rem; flex-wrap: wrap; }
.socials a { width: 42px; height: 42px; border-radius: var(--r-sm); display: grid; place-items: center;
  background: rgba(255,255,255,.07); color: #fff; transition: background .18s, color .18s; border: 1px solid rgba(255,255,255,.08); }
.socials a:hover { background: var(--lime); color: var(--on-lime); }
.socials a svg { width: 19px; height: 19px; }
.socials-soon { font-size: .9rem; color: #7f8e77; }
.socials-soon span { color: var(--lime); font-weight: 600; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .6rem;
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.8rem; padding-top: 1.4rem; font-size: .86rem; color: #7f8e77; }
.footer-badge { display: flex; align-items: center; gap: .5rem; }
.footer-badge svg { width: 16px; height: 16px; color: var(--lime); }

/* ============================================================
   Pages internes
   ============================================================ */
.page-hero { background: var(--forest-d); color: #fff; padding: clamp(2.8rem, 6vw, 4.4rem) 0; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .5;
  background: radial-gradient(60% 80% at 88% 30%, rgba(78,124,57,.5), transparent 62%); }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .breadcrumb { color: #9fae96; font-size: .95rem; margin-bottom: .7rem; }
.page-hero .breadcrumb a { color: var(--lime); }
.page-hero h1 { color: #fff; }
.page-hero p { color: #cdd8c9; max-width: 620px; margin-top: .8rem; font-size: 1.14rem; }

/* Formulaire de contact */
.contact-layout { display: grid; grid-template-columns: 1.25fr .85fr; gap: 2.6rem; align-items: start; }
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 2rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-weight: 600; margin-bottom: .35rem; font-size: .96rem; }
.field label .req { color: #b5462f; }
.field input, .field textarea, .field select {
  width: 100%; padding: .8rem .95rem; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font: inherit; color: var(--ink); background: var(--bone); transition: border-color .15s, box-shadow .15s, background .15s; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--moss); box-shadow: 0 0 0 3px rgba(76,124,57,.16); background: #fff; }
.field textarea { min-height: 132px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .86rem; color: var(--muted); margin-top: .35rem; }
.form-intro { color: var(--ink-soft); margin: -.4rem 0 1.5rem; font-size: 1.18rem; font-weight: 500; line-height: 1.4; }
.field label .opt { color: var(--muted); font-weight: 400; font-size: .84rem; }
.btn-block { width: 100%; justify-content: center; }

/* Pastilles de service (choix multiple) */
.service-chips { display: grid; grid-template-columns: repeat(auto-fill, minmax(152px, 1fr)); gap: .5rem; margin-top: .3rem; }
.chip { position: relative; display: flex; align-items: center; gap: .5rem; cursor: pointer;
  padding: .55rem .65rem; border: 1.5px solid var(--line); border-radius: 12px; background: var(--bone);
  transition: transform .12s var(--ease), border-color .15s, background .15s, box-shadow .15s; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip:hover { border-color: var(--moss); transform: translateY(-1px); box-shadow: 0 6px 16px -10px rgba(26,35,28,.4); }
.chip-ico { display: grid; place-items: center; width: 26px; height: 26px; flex: none; border-radius: 7px;
  background: #fff; border: 1px solid var(--line-soft); color: var(--forest);
  transition: background .15s, color .15s, border-color .15s; }
.chip-ico svg { width: 15px; height: 15px; }
.chip-q { font-family: "Barlow Condensed", sans-serif; font-weight: 700; font-size: .95rem; line-height: 1; color: var(--forest); }
.chip-txt { font-size: .84rem; font-weight: 600; line-height: 1.1; padding-right: .1rem; }
.chip-check { position: absolute; top: -7px; right: -7px; width: 21px; height: 21px; border-radius: 50%;
  background: var(--forest); color: #fff; display: grid; place-items: center;
  transform: scale(0); transition: transform .16s var(--ease); box-shadow: 0 2px 6px rgba(26,35,28,.3); }
.chip-check svg { width: 13px; height: 13px; }
.chip--on { border-color: var(--forest); background: #eaf3e0; }
.chip--on .chip-ico { background: var(--forest); color: #fff; border-color: var(--forest); }
.chip--on .chip-q { color: #fff; }
.chip--on .chip-check { transform: scale(1); }
.chip:focus-within { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(76,124,57,.2); }

/* Zone photo + aperçu */
.photo-drop { display: block; position: relative; border: 1.5px dashed var(--line); border-radius: 12px;
  background: var(--bone); padding: 1.15rem; text-align: center; cursor: pointer; transition: border-color .15s, background .15s; }
.photo-drop:hover { border-color: var(--moss); background: #fff; }
.photo-drop input[type=file] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
.photo-drop-inner { display: grid; justify-items: center; gap: .2rem; color: var(--muted); pointer-events: none; }
.photo-drop-inner svg { width: 28px; height: 28px; color: var(--forest); margin-bottom: .2rem; }
.photo-drop-inner strong { color: var(--ink); font-size: .98rem; }
.photo-drop-inner span { font-size: .82rem; }
.photo-drop-inner[hidden], .photo-picked[hidden] { display: none; }
.photo-picked { display: flex; align-items: center; gap: .8rem; text-align: left; pointer-events: none; }
.photo-picked img { width: 66px; height: 66px; object-fit: cover; border-radius: 8px; flex: none; }
.photo-name { font-size: .88rem; color: var(--ink); font-weight: 600; word-break: break-all; flex: 1; }
.photo-change { font-size: .82rem; color: var(--forest); font-weight: 700; text-decoration: underline; flex: none; }

/* Bandeau de confiance sous le bouton */
.form-trust { display: flex; flex-wrap: wrap; gap: .25rem .55rem; align-items: center; justify-content: center;
  margin-top: 1rem; font-size: .84rem; color: var(--muted); }
.form-trust svg { width: 15px; height: 15px; color: var(--forest); vertical-align: -2px; }
.form-trust > span { color: var(--line); }

/* ===== Écran de confirmation (effet « wow ») ===== */
.success-screen { position: relative; overflow: hidden; text-align: center; }
.success-inner { max-width: 620px; margin: 0 auto; position: relative; z-index: 2; }
.success-inner .kicker { justify-content: center; }
.success-inner h1 { font-size: clamp(2.2rem, 6vw, 3.4rem); margin: .35rem 0 .7rem; }
.success-sub { font-size: 1.16rem; color: var(--ink-soft); margin-bottom: .5rem; }
.success-sub strong { color: var(--forest); }
.success-hint { color: var(--muted); margin-bottom: 1.7rem; }
.success-redir { margin-top: 1.2rem; font-size: .86rem; color: var(--muted); }
.success-check { width: 96px; height: 96px; margin: 0 auto 1.3rem; animation: sc-pop .45s var(--ease) both; }
.success-check svg { width: 100%; height: 100%; }
.sc-ring { stroke: var(--forest); stroke-width: 3; fill: #eaf3e0;
  stroke-dasharray: 151; stroke-dashoffset: 151; animation: sc-draw .5s var(--ease) forwards; }
.sc-tick { stroke: var(--forest); stroke-width: 4; fill: none; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 42; stroke-dashoffset: 42; animation: sc-draw .35s .45s var(--ease) forwards; }
@keyframes sc-draw { to { stroke-dashoffset: 0; } }
@keyframes sc-pop { 0% { transform: scale(.5); opacity: 0; } 60% { transform: scale(1.1); } 100% { transform: scale(1); opacity: 1; } }

.confetti { position: fixed; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.confetti i { position: absolute; top: -24px; border-radius: 2px;
  animation-name: confetti-fall; animation-timing-function: linear; animation-fill-mode: forwards; }
@keyframes confetti-fall {
  0%   { transform: translateY(-24px) rotate(0deg);   opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateY(104vh) rotate(680deg); opacity: 0; }
}
.alert { padding: 1rem 1.2rem; border-radius: var(--r-sm); margin-bottom: 1.4rem; font-weight: 500; }
.alert-ok { background: #e7f4d4; border: 1px solid var(--lime); color: #33580f; }
.alert-err { background: #fbe9e4; border: 1px solid #e7b3a8; color: #8c2c20; }
.contact-side .info-block { background: var(--forest-d); color: #fff; border-radius: var(--r); padding: 1.8rem; margin-bottom: 1.1rem; }
.contact-side .info-block h3 { color: var(--lime); margin-bottom: .9rem; }
.contact-side .info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.contact-side .info-list a, .contact-side .info-list span { color: #fff; display: flex; gap: .7rem; align-items: center; }
.contact-side .info-list svg { width: 21px; height: 21px; color: var(--lime); flex: 0 0 auto; }
.contact-side .info-sub { font-size: .84rem; color: #9fae96; display: block; }

/* ── Utilitaires ── */
.text-center { text-align: center; }
.mt-2 { margin-top: 2.2rem; }
/* .reveal : conservé comme hook neutre (contenu toujours visible, pas d'animation d'apparition) */

/* ── Barre d'action mobile (fixée en bas, apparaît au défilement) ── */
.mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: none;
  grid-template-columns: 1fr 1fr 1.35fr; gap: 8px;
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); box-shadow: 0 -10px 30px rgba(26,35,28,.14);
  transform: translateY(130%); transition: transform .32s var(--ease); }
.mobile-cta.show { transform: translateY(0); }
.mcta { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  padding: .5rem .35rem; border-radius: 12px; text-decoration: none; line-height: 1;
  font-family: "Barlow Condensed", sans-serif; font-weight: 700; text-transform: uppercase;
  letter-spacing: .02em; font-size: .82rem; color: var(--forest); background: var(--bone); }
.mcta svg { width: 22px; height: 22px; }
.mcta-quote { color: #fff; background: var(--forest); }
.mcta:active { transform: scale(.97); }
@media (max-width: 860px) { .mobile-cta { display: grid; } .site-footer { padding-bottom: 80px; } }

/* ── Responsive ── */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-figure { display: grid; margin-top: 1.8rem; }
  .hero-figure .frame { max-width: 100%; aspect-ratio: 4/5; }
  .hero-figure img.hero-photo { object-position: 50% 32%; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split.reverse > :first-child { order: 0; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (min-width: 861px) { .header-phone { display: flex; } }
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; inset: var(--head-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bone); padding: .5rem 1.3rem 1.5rem; border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(26,35,28,.14); transform: translateY(-120%); transition: transform .3s var(--ease); margin: 0;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav > a { padding: .95rem .4rem; border-bottom: 1px solid var(--line-soft); }
  .main-nav > a.active::after { display: none; }
  .nav-cta { margin: .9rem 0 0; justify-content: center; }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom, .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .gallery-grid { grid-auto-rows: 175px; }
  /* Services : 2 par rangée, chips compacts (moins de scroll) */
  .service-chips { grid-template-columns: 1fr 1fr; gap: .45rem; }
  .chip { padding: .5rem .55rem; gap: .45rem; }
  .chip-txt { font-size: .8rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .sc-ring, .sc-tick { stroke-dashoffset: 0 !important; }
  .success-check { opacity: 1 !important; transform: none !important; }
}
