/* ==========================================================
   Arbres Cordes & Cie — design system (v4, vert lumineux)
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800&display=swap');

:root{
  /* palette — vert olive + lime + bleu ciel (palette fournie) */
  --forest-950:#1e3a0a;
  --forest-900:#375915;
  --forest-800:#4c6c27;
  --forest-700:#608039;
  --forest-600:#75934b;
  --forest-500:#89a65d;
  --leaf-400:#89a65d;
  --cream-050:#fbf9f2;
  --cream-100:#f4eedc;
  --cream-200:#e9dfc4;
  --gold-400:#9abf11;
  --gold-500:#83a20e;
  --gold-600:#6c860c;
  --sky-400:#88c1f2;
  --sky-300:#9bd1f2;
  --ink:#1c2e0d;

  /* type */
  --font-display:'Anton', sans-serif;
  --font-body:'Inter', sans-serif;

  /* elevation */
  --shadow-sm: 0 2px 8px rgba(13,58,30,.14);
  --shadow-md: 0 10px 30px rgba(13,58,30,.22);
  --shadow-lg: 0 24px 60px rgba(13,58,30,.30);

  /* radius */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-pill: 999px;

  --max-w: 1180px;
  --header-h: 84px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior:smooth; scroll-padding-top: var(--header-h); }

/* ---------------- accessibility: focus & motion ---------------- */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.burger:focus-visible,
input:focus-visible,
textarea:focus-visible{
  outline:2.5px solid var(--gold-400);
  outline-offset:3px;
  border-radius:6px;
}
.site-header a:focus-visible,
.mobile-panel a:focus-visible,
footer a:focus-visible{
  outline-color:var(--gold-400);
}

@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
    scroll-behavior:auto !important;
  }
  .badge{ animation:none; }
  .float-cta{ animation:none; }
  [data-reveal]{ opacity:1 !important; transform:none !important; transition:none !important; }
}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--cream-050);
  font-weight:500;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
h1,h2,h3{
  font-family:var(--font-display);
  font-weight:400;
  letter-spacing:.3px;
  text-transform:uppercase;
  margin:0;
  line-height:1.08;
  overflow-wrap:break-word;
  hyphens:none;
}
p{ margin:0 0 16px; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
ul{ margin:0; padding:0; }
.wrap{ max-width:var(--max-w); margin:0 auto; padding:0 28px; }
section{ position:relative; }
::selection{ background:var(--gold-400); color:var(--forest-950); }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-body);
  font-weight:700;
  font-size:12.5px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--gold-400);
  margin-bottom:14px;
}
.eyebrow::before{
  content:"";
  width:22px; height:2px;
  background:var(--gold-400);
  border-radius:2px;
}

/* ---------------- buttons ---------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  font-family:var(--font-body);
  font-weight:700;
  font-size:15px;
  padding:14px 28px;
  border-radius:var(--r-pill);
  border:1.5px solid transparent;
  cursor:pointer;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space:nowrap;
}
.btn svg{ width:18px; height:18px; flex:none; }
.btn-primary{
  background:linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color:var(--forest-950);
  box-shadow:var(--shadow-sm);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn-ghost{
  background:rgba(255,255,255,.08);
  border-color:rgba(244,238,220,.35);
  color:var(--cream-100);
}
.btn-ghost:hover{ background:rgba(255,255,255,.16); border-color:rgba(244,238,220,.6); }
.btn-outline{
  background:transparent;
  border-color:var(--forest-700);
  color:var(--forest-800);
}
.btn-outline:hover{ background:var(--forest-800); color:var(--cream-100); }
.btn-sm{ padding:10px 20px; font-size:13.5px; }

/* ---------------- header / nav ---------------- */
.site-header{
  position:sticky; top:0; z-index:100;
  background:linear-gradient(180deg, var(--forest-900), var(--forest-950));
  transition:background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled{
  background:rgba(13,58,30,.92);
  backdrop-filter:blur(14px) saturate(140%);
  box-shadow:0 6px 24px rgba(0,0,0,.28);
}
.site-header.nav-open{
  /* while the menu is open the page scroll is frozen (see main.js);
     switching from sticky to fixed here keeps the header correctly
     pinned to the real viewport instead of the frozen scroll offset */
  position:fixed;
  top:0; left:0; right:0;
  background:var(--forest-950);
  backdrop-filter:none;
  box-shadow:none;
}
.nav-row{
  max-width:var(--max-w);
  margin:0 auto;
  padding:0 28px;
  height:var(--header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.wordmark{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--cream-050);
}
.wordmark .mark{
  width:50px;height:44px;flex:none;
  display:flex;align-items:center;justify-content:center;
}
.wordmark .mark img{ width:100%;height:100%; object-fit:contain; }
.wordmark .txt{ font-family:var(--font-display); font-size:19px; line-height:1.05; letter-spacing:.3px; }
.wordmark .txt small{ display:block; font-family:var(--font-body); font-weight:600; font-size:10.5px; letter-spacing:1.6px; color:var(--gold-400); text-transform:uppercase; margin-top:2px; }

nav.main-nav ul{
  list-style:none;
  display:flex;
  gap:34px;
}
nav.main-nav a{
  font-weight:700;
  font-size:14.5px;
  letter-spacing:.3px;
  color:var(--cream-200);
  position:relative;
  padding:6px 0;
}
nav.main-nav a::after{
  content:"";
  position:absolute; left:0; right:100%; bottom:0;
  height:2px; background:var(--gold-400);
  transition:right .25s ease;
  border-radius:2px;
}
nav.main-nav a:hover::after,
nav.main-nav a.active::after{ right:0; }
nav.main-nav a.active{ color:#fff; }

.nav-actions{ display:flex; align-items:center; gap:14px; }
.nav-phone{
  display:flex; align-items:center; gap:8px;
  color:var(--cream-100); font-weight:700; font-size:14px;
}
.nav-phone svg{ width:17px;height:17px; color:var(--sky-400); }

.burger{
  display:none;
  width:44px;height:44px;
  border-radius:50%;
  border:1.5px solid rgba(244,238,220,.35);
  background:rgba(255,255,255,.05);
  align-items:center; justify-content:center;
  cursor:pointer;
  flex:none;
}
.burger span{ position:relative; width:18px; height:2px; background:var(--cream-050); display:block; border-radius:2px; }
.burger span::before,.burger span::after{
  content:""; position:absolute; left:0; width:18px; height:2px; background:var(--cream-050); border-radius:2px; transition:transform .25s ease, top .25s ease;
}
.burger span::before{ top:-6px; }
.burger span::after{ top:6px; }
.burger.is-open span{ background:transparent; }
.burger.is-open span::before{ top:0; transform:rotate(45deg); }
.burger.is-open span::after{ top:0; transform:rotate(-45deg); }

.mobile-panel{
  display:none;
  position:fixed; inset:var(--header-h) 0 0 0;
  background:var(--forest-950);
  z-index:99;
  padding:34px 28px;
  transform:translateY(-12px);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease, transform .25s ease;
}
.mobile-panel.is-open{ opacity:1; transform:translateY(0); pointer-events:auto; }
.mobile-panel ul{ list-style:none; display:flex; flex-direction:column; gap:6px; }
.mobile-panel ul a{
  display:block; font-family:var(--font-display); font-size:26px; color:var(--cream-100);
  padding:14px 4px; border-bottom:1px solid rgba(244,238,220,.12);
}
.mobile-panel .foot{ margin-top:28px; display:flex; flex-direction:column; gap:14px; }
.mobile-panel .foot .nav-phone{ font-size:16px; }
.mobile-panel .foot .btn{ width:100%; white-space:normal; text-align:center; }
.mobile-panel .foot .btn-primary{ color:var(--forest-950); }

/* ---------------- hero ---------------- */
.hero{
  position:relative;
  overflow:hidden;
  color:var(--cream-050);
  background:
    linear-gradient(100deg, rgba(19,36,7,.94) 0%, rgba(19,36,7,.82) 35%, rgba(19,36,7,.45) 75%, rgba(19,36,7,.25) 100%),
    radial-gradient(1100px 620px at 82% -10%, rgba(136,193,242,.15), transparent 60%),
    url('../img/hero-bg.jpg') center 38% / cover no-repeat var(--forest-950);
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.5) 1px, transparent 1.4px);
  background-size:26px 26px;
  opacity:.05;
  pointer-events:none;
}
.hero-grid{
  position:relative;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:48px;
  align-items:start;
  padding:60px 0 78px;
}
.hero h1{
  font-size:clamp(40px,5.4vw,68px);
  margin:0 0 22px;
}
.hero h1 em{
  font-style:normal;
  color:var(--gold-400);
}
.hero .lede{
  font-size:17.5px;
  font-weight:500;
  color:var(--cream-200);
  max-width:52ch;
  margin-bottom:30px;
}
.hero .cta-row{ display:flex; flex-wrap:wrap; align-items:center; gap:14px; margin-bottom:36px; }
@media (min-width:621px){
  .hero .cta-row{ gap:10px; }
  .hero .cta-row .btn{
    height:54px;
    box-sizing:border-box;
    padding:12px 18px;
    font-size:12.5px;
    gap:6px;
  }
  .hero .cta-row .btn svg{ width:14px; height:14px; }
  .hero .cta-row .pill{
    height:54px;
    box-sizing:border-box;
    padding:0 14px;
    font-size:11px;
    gap:6px;
  }
  .hero .cta-row .pill svg{ width:12px; height:12px; }
}
.pill-row{ display:flex; flex-wrap:wrap; gap:12px; }
.pill{
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(244,238,220,.18);
  padding:9px 16px;
  border-radius:var(--r-pill);
  font-size:13.5px; font-weight:600;
  color:var(--cream-100);
}
.pill svg{ width:16px;height:16px; color:var(--sky-400); flex:none; }

.hero-visual{ position:relative; display:flex; align-items:center; justify-content:center; }
.badge{
  width:min(340px,80vw);
  display:flex; align-items:center; justify-content:center;
  position:relative;
}
.badge img{ width:100%; height:auto; object-fit:contain; }

/* ---------------- section headings ---------------- */
.section-head{ max-width:640px; margin:0 0 46px; }
.section-head h2{ font-size:clamp(30px,4vw,44px); color:var(--forest-900); }
.section-head.on-dark h2{ color:var(--cream-050); }
.section-head p{ margin-top:16px; font-size:16.5px; color:var(--forest-700); font-weight:500; }
.section-head.on-dark p{ color:var(--cream-200); }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head.center .eyebrow::before{ display:none; }

.section-pad{ padding:96px 0; }
@media (max-width:760px){ .section-pad{ padding:64px 0; } }

/* ---------------- services (home) ---------------- */
.services{ background:var(--cream-050); }
.service-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
.service-card{
  background:#fff;
  border:1px solid rgba(26,34,20,.06);
  border-radius:var(--r-lg);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display:flex; flex-direction:column; height:100%;
}
.service-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-md); border-color:rgba(154,191,17,.35); }
.service-card:nth-child(1){ border-radius:34px 28px 34px 12px; }
.service-card:nth-child(2){ border-radius:12px 34px 28px 34px; }
.service-card:nth-child(3){ border-radius:34px 12px 34px 28px; }
.service-card .card-photo{
  position:relative;
  aspect-ratio:4/4.2;
  overflow:hidden;
  background:linear-gradient(150deg, var(--leaf-400), var(--forest-700) 60%, var(--forest-950));
}
.service-card .card-photo img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}
.service-card:hover .card-photo img{ transform:scale(1.06); }
.service-card .card-body{
  padding:28px 28px 30px;
  display:flex; flex-direction:column; flex:1;
}
.service-card h3{ font-size:22px; margin-bottom:12px; color:var(--forest-900); }
.service-card p{ color:#4b5943; font-size:15px; font-weight:500; flex:1; margin-bottom:18px; }
.service-card .link{
  display:inline-flex; align-items:center; gap:8px;
  font-weight:700; font-size:14px; color:var(--gold-600);
}
.service-card .link svg{ width:16px;height:16px; transition:transform .2s ease; }
.service-card:hover .link svg{ transform:translateX(4px); }

/* ---------------- zone d'intervention ---------------- */
.zone{
  background:linear-gradient(165deg, var(--forest-800), var(--forest-950));
  color:var(--cream-050);
}
.zone-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:56px;
  align-items:center;
}
.loc-list{ display:flex; flex-direction:column; gap:16px; margin:26px 0 30px; }
.loc-item{ display:flex; gap:14px; align-items:flex-start; font-weight:600; font-size:16px; color:var(--cream-200); }
.loc-item .ico{
  width:34px;height:34px;flex:none;border-radius:10px;
  background:rgba(136,193,242,.18);
  display:flex;align-items:center;justify-content:center;
}
.loc-item .ico svg{ width:18px;height:18px;color:var(--sky-400); }

.map-card{
  position:relative;
  border-radius:var(--r-lg);
  overflow:hidden;
  border:1px solid rgba(244,238,220,.14);
  box-shadow:var(--shadow-lg);
  aspect-ratio:4/3.4;
  background:linear-gradient(135deg,#608039,#1e3a0a);
}
.map-card img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; z-index:0;
}
.map-card::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(15,21,11,.72) 0%, rgba(15,21,11,0) 55%);
  z-index:1;
}
.map-card .tag{
  position:absolute; left:18px; bottom:18px; right:18px;
  color:#fff; font-weight:700; font-size:14.5px;
  display:flex; align-items:center; gap:8px;
  z-index:2;
}
.map-card .tag svg{ width:18px;height:18px; color:var(--sky-400); flex:none; }

/* ---------------- gallery ---------------- */
.gallery{ background:var(--cream-100); }
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}
.gcard{
  position:relative;
  border-radius:var(--r-lg);
  aspect-ratio:3/4;
  overflow:hidden;
  background:linear-gradient(150deg, var(--leaf-400), var(--forest-700) 60%, var(--forest-950));
  box-shadow:var(--shadow-sm);
  transition:transform .35s ease, box-shadow .35s ease;
}
.gcard img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; z-index:0;
}
.gcard::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(15,21,11,.82) 0%, rgba(15,21,11,0) 55%);
  z-index:1;
}
.gcard:hover{ transform:translateY(-6px) scale(1.015); box-shadow:var(--shadow-md); }
.gcard:nth-child(1){ border-radius:36px 28px 36px 14px; }
.gcard:nth-child(2){ border-radius:14px 36px 28px 36px; }
.gcard:nth-child(3){ border-radius:36px 14px 36px 28px; }
.gcard .tag{
  position:absolute; left:18px; bottom:18px; right:18px;
  color:#fff; font-weight:700; font-size:14.5px;
  display:flex; align-items:center; gap:8px;
  z-index:2;
}
.gcard .tag svg{ width:18px;height:18px; color:var(--gold-400); flex:none; }

/* ---------------- CTA band ---------------- */
.cta-band{
  background:linear-gradient(120deg, var(--gold-500), var(--gold-400));
  color:var(--forest-950);
}
.cta-band .inner{
  display:flex; align-items:center; justify-content:space-between; gap:28px; flex-wrap:wrap;
  padding:56px 0;
}
.cta-band h2{ font-size:clamp(26px,3.4vw,36px); margin-bottom:8px; }
.cta-band p{ font-weight:700; margin:0; font-size:15.5px; }
.cta-band .btn-outline{ border-color:var(--forest-950); color:var(--forest-950); }
.cta-band .btn-outline:hover{ background:var(--forest-950); color:var(--cream-050); }
.cta-buttons{ display:flex; gap:14px; flex-wrap:wrap; }

/* ---------------- page hero (sous-pages) ---------------- */
.page-hero{
  position:relative;
  color:var(--cream-050);
  background:
    radial-gradient(900px 500px at 85% -20%, rgba(136,193,242,.22), transparent 60%),
    linear-gradient(160deg, var(--forest-900), var(--forest-950));
  padding:112px 0 160px;
}
.page-hero.has-photo{
  background:
    linear-gradient(100deg, rgba(19,36,7,.92) 0%, rgba(19,36,7,.84) 32%, rgba(19,36,7,.52) 68%, rgba(19,36,7,.32) 100%),
    radial-gradient(900px 500px at 85% -20%, rgba(136,193,242,.16), transparent 60%),
    var(--bg-photo) var(--bg-photo-x,50%) var(--bg-photo-pos,50%) / cover no-repeat var(--forest-950);
}
.page-hero.hero-taille{ --bg-photo:url('../img/gallery-taille.jpg'); --bg-photo-x:46%; --bg-photo-pos:55%; }
.page-hero.hero-debroussaillage{ --bg-photo:url('../img/debroussaillage-montagne.jpg'); --bg-photo-pos:68%; }
.page-hero.hero-abattage{ --bg-photo:url('../img/abattage-rondins.jpg'); --bg-photo-pos:24%; }
.page-hero .crumb{
  display:flex; align-items:center; gap:8px;
  font-size:13.5px; font-weight:700; color:var(--cream-200);
  margin-bottom:20px;
}
.page-hero .crumb a{ color:var(--gold-400); }
.page-hero .crumb svg{ width:14px;height:14px; }
.page-hero h1{ font-size:clamp(26px,8vw,64px); }
.page-hero .lede{ margin-top:20px; max-width:60ch; font-size:17px; font-weight:500; color:var(--cream-200); }

/* ---------------- content sections (sous-pages) ---------------- */
.content-section{ background:var(--cream-050); }
.split{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:56px;
  align-items:start;
}
.prose p{ font-size:17px; font-weight:500; color:#33422a; margin-bottom:20px; }
.check-list{ display:flex; flex-direction:column; gap:14px; margin:26px 0; }
.check-list li{
  display:flex; gap:14px; align-items:flex-start;
  font-size:16.5px; font-weight:600; color:var(--forest-900);
  list-style:none;
}
.check-list .tick{
  width:26px;height:26px;flex:none; margin-top:2px;
  border-radius:50%; background:var(--forest-800);
  display:flex; align-items:center; justify-content:center;
}
.check-list .tick svg{ width:14px;height:14px; color:var(--gold-400); }

.stack-photos{ display:flex; flex-direction:column; gap:24px; }
.stack-photos.avant-apres{ flex-direction:row; gap:14px; }
.stack-photos.avant-apres .photo{ flex:1; aspect-ratio:3/4; }
@media (max-width:480px){
  .stack-photos.avant-apres{ flex-direction:column; }
}
.photo{
  border-radius:var(--r-lg);
  aspect-ratio:3/4;
  background:linear-gradient(150deg, var(--leaf-400), var(--forest-700) 60%, var(--forest-950));
  box-shadow:var(--shadow-sm);
  position:relative;
  overflow:hidden;
}
.photo img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; z-index:0;
}
.photo.wide{ aspect-ratio:16/10; }
.photo:nth-of-type(1){ border-radius:36px 28px 36px 14px; }
.photo:nth-of-type(2){ border-radius:14px 36px 28px 36px; }
.photo .tag{
  position:absolute; left:16px; bottom:16px; right:16px;
  color:#fff; font-weight:700; font-size:13.5px;
  display:flex; align-items:center; gap:8px;
  z-index:2;
}
.photo .tag svg{ width:16px;height:16px; color:var(--gold-400); flex:none; }
.photo::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(15,21,11,.78), rgba(15,21,11,0) 55%);
  z-index:1;
}

/* ---------------- photo slider (carrousel) ---------------- */
.photo-slider{
  position:relative;
  border-radius:36px 28px 36px 14px;
  aspect-ratio:3/4;
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  background:linear-gradient(150deg, var(--leaf-400), var(--forest-700) 60%, var(--forest-950));
}
.photo-slider .slides{ position:relative; width:100%; height:100%; }
.photo-slider .slide{
  position:absolute; inset:0;
  opacity:0;
  transition:opacity 1s ease;
}
.photo-slider .slide.is-active{ opacity:1; }
.photo-slider .slide img{
  position:absolute; inset:0; width:100%; height:100%;
  object-fit:cover; z-index:0;
}
.photo-slider .slide::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(15,21,11,.78), rgba(15,21,11,0) 55%);
  z-index:1;
}
.photo-slider .tag{
  position:absolute; left:16px; bottom:16px; right:52px;
  color:#fff; font-weight:700; font-size:13.5px;
  display:flex; align-items:center; gap:8px;
  z-index:2;
}
.photo-slider .tag svg{ width:16px;height:16px; color:var(--gold-400); flex:none; }
.photo-slider .slider-dots{
  position:absolute; right:16px; bottom:20px;
  display:flex; flex-direction:column; gap:7px;
  z-index:3;
}
.photo-slider .dot{
  width:9px;height:9px; border-radius:50%;
  background:rgba(255,255,255,.4);
  border:1.5px solid rgba(255,255,255,.6);
  padding:0; cursor:pointer;
  transition:background .2s ease, transform .2s ease;
}
.photo-slider .dot.is-active{ background:var(--gold-400); border-color:var(--gold-400); transform:scale(1.15); }

/* ---------------- footer ---------------- */
footer{ background:var(--forest-950); color:var(--cream-200); }
.footer-top{
  padding:72px 0 48px;
  display:grid;
  grid-template-columns:1.3fr repeat(3,1fr);
  gap:40px;
}
.footer-brand .wordmark{ margin-bottom:16px; }
.footer-brand p{ color:var(--cream-200); font-size:14.5px; max-width:34ch; }
.footer-col h4{
  font-family:var(--font-body); font-weight:700; font-size:13px;
  letter-spacing:1.5px; text-transform:uppercase; color:var(--gold-400);
  margin-bottom:18px;
}
.footer-col ul{ list-style:none; display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:14.5px; font-weight:600; color:var(--cream-200); }
.footer-col a:hover{ color:#fff; }
.footer-col .row{ display:flex; gap:10px; align-items:flex-start; }
.footer-col .row svg{ width:17px;height:17px; color:var(--sky-400); flex:none; margin-top:2px; }
.footer-bottom{
  border-top:1px solid rgba(244,238,220,.12);
  padding:22px 0 34px;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px;
  font-size:12.5px; color:rgba(244,238,220,.55);
}

/* ---------------- quote form (devis) ---------------- */
.quote-card{
  background:#fff;
  border-radius:var(--r-lg);
  box-shadow:var(--shadow-sm);
  border:1px solid rgba(26,34,20,.06);
  padding:40px;
  max-width:860px;
  margin:0 auto;
}
.hp-field{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px 24px;
  margin-bottom:28px;
}
.form-field{ display:flex; flex-direction:column; gap:8px; }
.form-field.full{ grid-column:1/-1; }
.form-field label{ font-size:14px; font-weight:700; color:var(--forest-900); }
.form-field input[type="text"],
.form-field input[type="tel"],
.form-field input[type="email"],
.form-field select,
.form-field textarea{
  width:100%;
  font:inherit;
  font-size:15px;
  color:var(--ink);
  background:var(--cream-050);
  border:1.5px solid rgba(26,34,20,.14);
  border-radius:12px;
  padding:12px 14px;
  transition:border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
  outline:none;
  border-color:var(--gold-500);
  box-shadow:0 0 0 3px rgba(154,191,17,.18);
}
.form-field textarea{ min-height:130px; resize:vertical; }
.form-field input[type="file"]{
  font-size:14px;
  padding:10px 0 0;
  border:none;
  background:none;
  color:#4b5943;
}
.form-note{ font-size:13px; color:#6b7863; font-weight:500; }
.form-submit-row{ display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.form-alert{
  margin-top:24px;
  padding:18px 22px;
  border-radius:14px;
  font-size:15px;
  font-weight:600;
}
.form-alert-success{ background:rgba(154,191,17,.14); color:var(--forest-900); border:1px solid rgba(154,191,17,.35); }
.form-alert-error{ background:rgba(217,90,60,.1); color:#8a3a24; border:1px solid rgba(217,90,60,.3); }

/* ---------------- floating call button ---------------- */
.float-cta{
  position:fixed; right:20px; bottom:20px; z-index:80;
  width:58px;height:58px; border-radius:50%;
  background:linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-lg);
  animation:pulse 2.6s ease-in-out infinite;
}
.float-cta svg{ width:24px;height:24px; color:var(--forest-950); }
@keyframes pulse{
  0%,100%{ box-shadow:0 0 0 0 rgba(154,191,17,.45), var(--shadow-lg); }
  50%{ box-shadow:0 0 0 10px rgba(154,191,17,0), var(--shadow-lg); }
}

/* ---------------- reveal animation ---------------- */
[data-reveal]{ opacity:0; transform:translateY(26px); transition:opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible{ opacity:1; transform:translateY(0); }

/* ---------------- responsive ---------------- */
@media (max-width:980px){
  nav.main-nav, .nav-actions .nav-phone{ display:none; }
  .burger{ display:flex; }
  .mobile-panel{ display:block; }
  .zone-grid, .split, .footer-top{ grid-template-columns:1fr; }
  .service-grid, .gallery-grid{ grid-template-columns:1fr 1fr; }
  .nav-actions .btn-primary.btn-sm{ display:none; }
}
@media (max-width:480px){
  :root{ --header-h:70px; }
  .wordmark .txt{ font-size:15px; }
  .wordmark .txt small{ display:none; }
  .wordmark .mark{ width:42px;height:37px; }
  .nav-row{ padding:0 18px; gap:12px; }
}
@media (max-width:620px){
  .service-grid, .gallery-grid{ grid-template-columns:1fr; }
  .cta-band .inner{ flex-direction:column; align-items:flex-start; padding:48px 30px 32px; gap:20px; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .quote-card{ padding:26px 20px; }
  .form-grid{ grid-template-columns:1fr; gap:18px; }
  .float-cta{ width:50px; height:50px; right:14px; bottom:14px; }
  .float-cta svg{ width:20px; height:20px; }

  .wrap{ padding:0 30px; }

  /* same top spacing and side margins everywhere on phone */
  .section-pad{ padding-top:48px; }

  /* sub-page photo hero: same tight top spacing as elsewhere, but the
     bottom padding stays generous so the photo band underneath the
     text keeps roughly the same proportions it has on desktop instead
     of being cropped tight around the text */
  .page-hero{ padding-top:48px; }

  /* hero: no logo on phone, text takes the full width */
  .hero-grid{
    grid-template-columns:1fr;
    padding:48px 30px 44px;
  }
  .hero-visual{ display:none; }
  .hero .eyebrow{ font-size:10.5px; letter-spacing:1.2px; gap:6px; margin-bottom:10px; }
  .hero .eyebrow::before{ width:16px; }
  .hero h1{ font-size:clamp(20px,7vw,28px); margin-bottom:12px; line-height:1.15; }
  .hero .lede{ font-size:13.5px; margin-bottom:16px; }

  /* both hero buttons side by side on one line */
  .hero .cta-row{ flex-wrap:nowrap; gap:8px; margin-bottom:18px; }
  .hero .cta-row .btn{
    flex:0 1 auto;
    padding:10px 14px;
    font-size:10px;
    gap:5px;
  }
  .hero .cta-row .btn svg{ width:13px; height:13px; }
  .hero .pill{ display:none; }
  .badge{ width:100%; margin:0; }

  /* zone d'intervention: text only on phone, drop the photo */
  .map-card{ display:none; }
  .zone-grid{ gap:0; }

  /* phone / e-mail buttons side by side instead of stacked */
  .cta-buttons{ flex-wrap:nowrap; gap:8px; align-self:center; }
  .cta-buttons .btn{
    flex:0 0 auto;
    padding:10px 14px;
    font-size:11.5px;
    white-space:nowrap;
    text-align:center;
  }
  .cta-buttons .btn svg{ width:14px; height:14px; }

  /* footer: brand full-width, the 3 columns side by side */
  .footer-top{
    grid-template-columns:88px 88px 1fr;
    gap:28px 8px;
    padding:48px 30px 32px;
  }
  .footer-brand{ grid-column:1 / -1; }
  .footer-brand .wordmark{ margin-bottom:14px; }
  .footer-col h4{ font-size:10px; letter-spacing:1px; margin-bottom:12px; }
  /* fixed row height on every column's list, so rows line up
     across Prestations/Navigation/Contact no matter how many
     lines a given item wraps to (the address is 2 lines) */
  .footer-col ul{ display:grid; grid-auto-rows:minmax(36px,auto); align-items:start; gap:9px; }
  .footer-col a{ font-size:10px; overflow-wrap:anywhere; }
  .footer-col .row{ gap:6px; }
  .footer-col .row span{ font-size:9px; line-height:1.35; overflow-wrap:anywhere; }
  .footer-col .row svg{ width:13px; height:13px; }
  .contact-col a{ font-size:9px; }
  .footer-bottom{ padding:22px 30px 34px; }
}
