/* ===========================================================
   LES BOIS DES HAUTS — système de design
   Palette : bois, écorce, mousse — typographie "stamp de billon" x serif
   =========================================================== */

:root{
  --bg:        #EDE6D6;   /* papier / sciure */
  --bg-warm:   #E4D9C2;   /* léger dégradé sciure plus chaude */
  --ink:       #201A13;   /* encre noyer */
  --ink-soft:  #4A4033;
  --bark:      #251D15;   /* écorce sombre */
  --bark-2:    #33281C;
  --heart:     #9C5426;   /* duramen / bois de cœur */
  --heart-dk:  #7C4119;
  --moss:      #4E5B3B;   /* mousse */
  --moss-lt:   #6C7C52;
  --rust:      #BE4B18;   /* orange sécurité — CTA */
  --rust-dk:   #9C3B12;
  --cream:     #F6F1E4;
  --line:      rgba(32,26,19,0.14);
  --line-dark: rgba(246,241,228,0.18);

  --font-display: 'Zilla Slab', 'Georgia', serif;
  --font-body:    'Source Serif 4', 'Georgia', serif;
  --font-mono:    'IBM Plex Mono', 'Courier New', monospace;

  --container: 1180px;
  --radius: 3px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; }
h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:800;
  line-height:1.08;
  margin:0 0 .5em;
  letter-spacing:-0.01em;
}
p{ margin:0 0 1.1em; }
.container{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 28px;
}
section{ padding:88px 0; }
@media (max-width:768px){ section{ padding:56px 0; } }

/* -------- eyebrow / stamp label -------- */
.eyebrow{
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--heart-dk);
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:14px;
}
.eyebrow::before{
  content:"";
  width:22px; height:1px;
  background:var(--heart-dk);
  display:inline-block;
}
.on-dark .eyebrow{ color:#D9B98C; }
.on-dark .eyebrow::before{ background:#D9B98C; }

.stamp{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:.06em;
  padding:7px 12px;
  border:1.5px solid var(--ink);
  border-radius:var(--radius);
  transform:rotate(-1.1deg);
  background:rgba(255,255,255,.25);
}
.stamp.moss{ border-color:var(--moss); color:var(--moss); transform:rotate(1deg); }
.stamp.heart{ border-color:var(--heart-dk); color:var(--heart-dk); }

/* -------- buttons -------- */
.btn{
  font-family:var(--font-mono);
  font-size:14px;
  letter-spacing:.04em;
  text-transform:uppercase;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 24px;
  border-radius:var(--radius);
  border:1.5px solid transparent;
  cursor:pointer;
  transition:transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover{ transform:translateY(-1px); }
.btn-rust{ background:var(--rust); color:var(--cream); }
.btn-rust:hover{ background:var(--rust-dk); }
.btn-outline{ border-color:currentColor; background:transparent; }
.btn-outline.on-light{ color:var(--ink); }
.btn-outline.on-dark{ color:var(--cream); }
.btn-outline:hover{ background:rgba(0,0,0,.06); }

/* -------- header -------- */
header.site{
  position:sticky; top:0; z-index:50;
  background:var(--bark);
  color:var(--cream);
  border-bottom:1px solid var(--line-dark);
}
header.site .bar{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 0;
  gap:20px;
}
.logo{
  font-family:var(--font-display);
  font-weight:800;
  font-size:20px;
  letter-spacing:.01em;
  text-decoration:none;
  color:var(--cream);
  display:flex; flex-direction:column; line-height:1.05;
}
.logo small{
  font-family:var(--font-mono);
  font-weight:500;
  font-size:10.5px;
  letter-spacing:.16em;
  color:#C79A63;
  text-transform:uppercase;
  margin-top:4px;
}
nav.main{ display:flex; align-items:center; gap:26px; flex-wrap:wrap; }
nav.main a{
  font-family:var(--font-mono);
  font-size:13px;
  letter-spacing:.03em;
  text-decoration:none;
  color:#E7DFCB;
  padding:6px 0;
  border-bottom:1px solid transparent;
}
nav.main a:hover, nav.main a.active{ border-bottom-color:var(--rust); color:#fff; }
.nav-toggle{ display:none; }

@media (max-width:920px){
  nav.main{
    position:absolute; top:100%; left:0; right:0;
    background:var(--bark); flex-direction:column; align-items:flex-start;
    gap:0; padding:6px 28px 18px; display:none;
    border-bottom:1px solid var(--line-dark);
  }
  nav.main.open{ display:flex; }
  nav.main a{ padding:10px 0; width:100%; }
  .nav-toggle{
    display:inline-flex; background:none; border:1px solid var(--line-dark);
    color:var(--cream); border-radius:var(--radius); padding:8px 12px;
    font-family:var(--font-mono); font-size:13px; cursor:pointer;
  }
}

/* -------- hero -------- */
.hero{
  background:
    radial-gradient(ellipse at 85% 20%, rgba(156,84,38,.10), transparent 55%),
    var(--bg);
  padding:76px 0 96px;
}
.hero .grid{
  display:grid; grid-template-columns:1.1fr .9fr; gap:56px; align-items:center;
}
@media (max-width:920px){ .hero .grid{ grid-template-columns:1fr; } }
.hero h1{ font-size:clamp(34px,5vw,58px); }
.hero .lede{ font-size:19px; color:var(--ink-soft); max-width:46ch; }
.hero .cta-row{ display:flex; gap:14px; margin-top:28px; flex-wrap:wrap; }

/* growth-ring signature */
.ring-wrap{ display:flex; justify-content:center; }
.ring-wrap svg{ width:100%; max-width:420px; height:auto; }

/* -------- page hero (inner pages) -------- */
.page-hero{
  background:var(--bark); color:var(--cream);
  padding:64px 0 56px;
}
.page-hero h1{ color:var(--cream); font-size:clamp(30px,4.4vw,46px); }
.page-hero .lede{ color:#DCD2BC; max-width:60ch; font-size:18px; }

/* -------- band-dark section -------- */
.band-dark{ background:var(--bark); color:var(--cream); position:relative; }
.band-dark h2{ color:var(--cream); }
.band-dark .ink-soft{ color:#CFC4AB; }

/* wavy divider */
.divider{ line-height:0; }
.divider svg{ display:block; width:100%; height:44px; }

/* -------- cards -------- */
.card-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
@media (max-width:920px){ .card-grid{ grid-template-columns:1fr; } }
.card{
  background:var(--cream);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:30px 26px;
}
.card .num{
  font-family:var(--font-mono); font-size:12.5px; color:var(--heart-dk);
  letter-spacing:.1em; margin-bottom:14px; display:block;
}
.card h3{ font-size:21px; margin-bottom:.4em; }
.card p{ color:var(--ink-soft); font-size:15.5px; margin-bottom:1em; }
.card a.more{
  font-family:var(--font-mono); font-size:13px; text-decoration:none;
  color:var(--rust); border-bottom:1px solid var(--rust);
}

/* icon */
.icon{ width:34px; height:34px; margin-bottom:16px; stroke:var(--heart-dk); }

/* -------- process steps -------- */
.process{ display:grid; grid-template-columns:repeat(3,1fr); gap:0; counter-reset:step; }
@media (max-width:820px){ .process{ grid-template-columns:1fr; } }
.process .step{ padding:0 26px 0 0; position:relative; }
.process .step:not(:last-child){ border-right:1px dashed var(--line-dark); }
@media (max-width:820px){
  .process .step:not(:last-child){ border-right:none; border-bottom:1px dashed var(--line-dark); padding:0 0 26px; margin-bottom:26px; }
}
.process .step-num{
  font-family:var(--font-mono); font-size:13px; color:#D9B98C;
  letter-spacing:.1em; margin-bottom:10px; display:block;
}
.process .step h3{ color:var(--cream); font-size:19px; }
.process .step p{ color:#CFC4AB; font-size:15px; }

/* -------- two-col text -------- */
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
@media (max-width:860px){ .two-col{ grid-template-columns:1fr; gap:32px; } }

/* -------- badges / zones -------- */
.zone-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); gap:14px; }
.zone-badge{
  border:1.5px solid var(--ink); border-radius:var(--radius);
  padding:16px; background:var(--cream);
}
.zone-badge .dep{ font-family:var(--font-mono); font-size:12px; color:var(--heart-dk); letter-spacing:.08em; }
.zone-badge .name{ font-family:var(--font-display); font-weight:700; font-size:19px; margin-top:4px; }

/* -------- table (legal / info) -------- */
.info-table{ width:100%; border-collapse:collapse; margin:18px 0 30px; }
.info-table th,.info-table td{ text-align:left; padding:12px 14px; border-bottom:1px solid var(--line); font-size:15px; vertical-align:top; }
.info-table th{ width:38%; font-family:var(--font-mono); font-size:12.5px; letter-spacing:.06em; text-transform:uppercase; color:var(--ink-soft); font-weight:500; }
.placeholder{ color:var(--rust-dk); background:rgba(190,75,24,.08); padding:1px 6px; border-radius:2px; }

/* -------- footer -------- */
footer.site{ background:var(--bark); color:#CFC4AB; padding:56px 0 26px; }
footer.site .grid{ display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:40px; }
@media (max-width:760px){ footer.site .grid{ grid-template-columns:1fr; gap:30px; } }
footer.site h4{ color:var(--cream); font-size:15px; font-family:var(--font-mono); letter-spacing:.06em; text-transform:uppercase; font-weight:500; margin-bottom:14px; }
footer.site a{ text-decoration:none; color:#CFC4AB; }
footer.site a:hover{ color:#fff; }
footer.site ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:9px; font-size:14.5px; }
.foot-bottom{
  margin-top:44px; padding-top:22px; border-top:1px solid var(--line-dark);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-family:var(--font-mono); font-size:12.5px; color:#9C9077;
}

/* -------- contact -------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr; gap:50px; }
@media (max-width:860px){ .contact-grid{ grid-template-columns:1fr; } }
.contact-card{ background:var(--cream); border:1px solid var(--line); border-radius:var(--radius); padding:30px; }
.contact-line{ display:flex; gap:14px; padding:14px 0; border-bottom:1px solid var(--line); }
.contact-line:last-child{ border-bottom:none; }
.contact-line .label{ font-family:var(--font-mono); font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-soft); min-width:110px; }

/* -------- utility -------- */
.text-center{ text-align:center; }
.mt-lg{ margin-top:48px; }
.small{ font-size:14px; color:var(--ink-soft); }
.visually-hidden{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }

/* -------- gallery -------- */
.gallery-intro{ max-width:70ch; }
.gallery-section{ margin-bottom:64px; }
.gallery-section:last-child{ margin-bottom:0; }
.gallery-section-head{ display:flex; align-items:baseline; justify-content:space-between; gap:20px; flex-wrap:wrap; margin-bottom:22px; }
.gallery-section-head h2{ font-size:26px; margin:0; }
.gallery-section-head p{ margin:0; color:var(--ink-soft); font-size:15px; max-width:46ch; }
.gallery-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.gallery-grid.cols-2{ grid-template-columns:repeat(2,1fr); }
@media (max-width:820px){
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
  .gallery-grid.cols-2{ grid-template-columns:1fr; }
}
@media (max-width:520px){ .gallery-grid{ grid-template-columns:1fr; } }
.photo{
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background:var(--cream);
}
.photo img{ width:100%; height:300px; object-fit:contain; background:#DCD2BC; display:block; }
.photo.wide img{ height:380px; }
.photo figcaption{
  padding:12px 14px;
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:.02em;
  color:var(--ink-soft);
  border-top:1px solid var(--line);
}
.photo{ margin:0; }
.essence-tag{
  display:inline-block; font-family:var(--font-mono); font-size:11px;
  letter-spacing:.06em; text-transform:uppercase; color:var(--heart-dk);
  border:1px solid var(--heart-dk); border-radius:2px; padding:2px 7px;
  margin-bottom:6px;
}

/* -------- hover-zoom thumbnails -------- */
.para-thumbs{
  display:flex; gap:10px; margin:16px 0 22px; flex-wrap:wrap;
  position:relative; z-index:1;
}
.para-thumbs figure{ margin:0; position:relative; }
.para-thumbs img{
  width:150px; height:118px; object-fit:cover;
  border-radius:var(--radius); border:1px solid var(--line);
  cursor:pointer; display:block;
  transition:transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease;
  transform-origin:center center;
  position:relative;
}
.para-thumbs img:hover,
.para-thumbs img:focus-visible{
  transform:scale(2.1);
  box-shadow:0 14px 34px rgba(20,15,8,.4);
  z-index:20;
}
.para-thumbs.on-dark img{ border-color:rgba(246,241,228,0.25); }

/* Direction visuelle 2026 — contenu et architecture d'origine conservés */
:root{--bg:#f5f1e8;--bg-warm:#e9e2d4;--ink:#17251f;--ink-soft:#58645f;--bark:#102a21;--bark-2:#18382d;--heart:#b87945;--heart-dk:#8e542f;--moss:#61785e;--moss-lt:#8fa08a;--rust:#d66c3b;--rust-dk:#b7522c;--cream:#fffdf7;--line:rgba(23,37,31,.13);--line-dark:rgba(255,253,247,.16);--font-display:"Iowan Old Style","Palatino Linotype",Palatino,Georgia,serif;--font-body:Inter,"Avenir Next",Avenir,"Helvetica Neue",Arial,sans-serif;--font-mono:Inter,"Avenir Next",Avenir,"Helvetica Neue",Arial,sans-serif;--container:1240px;--radius:18px}
body{font-size:16px;line-height:1.72;background:var(--bg)}h1,h2,h3,h4{font-weight:600;letter-spacing:-.035em}h2{font-size:clamp(32px,4vw,54px)}.container{padding-inline:clamp(22px,4vw,48px)}section{padding:clamp(72px,9vw,132px) 0}
.eyebrow{font-size:11px;font-weight:700;letter-spacing:.2em;color:var(--rust-dk);margin-bottom:20px}.eyebrow::before{width:38px;background:currentColor}.stamp{border-width:1px;border-radius:999px;transform:none!important;background:rgba(255,255,255,.48);padding:8px 14px;font-size:11px;text-transform:uppercase;letter-spacing:.12em}
header.site{background:rgba(16,42,33,.96);backdrop-filter:blur(18px);border:0;box-shadow:0 1px rgba(255,255,255,.08)}header.site .bar{min-height:86px;padding:14px 0}.logo{font-size:21px;letter-spacing:.04em}.logo small{color:#d5b595;font-size:9px;letter-spacing:.2em}nav.main{gap:clamp(14px,1.7vw,28px)}nav.main a{font-size:11px;font-weight:650;letter-spacing:.06em;opacity:.76;border:0}nav.main a:hover,nav.main a.active{opacity:1;border-bottom-color:var(--rust)}
.hero{min-height:calc(100svh - 86px);display:flex;align-items:center;padding:clamp(72px,9vw,130px) 0;background:linear-gradient(110deg,rgba(245,241,232,.98) 0%,rgba(245,241,232,.9) 48%,rgba(245,241,232,.1) 75%),url("images/chene-rouge-et-commun.jpg") center/cover no-repeat}.hero .grid{grid-template-columns:minmax(0,1.18fr) minmax(280px,.82fr);gap:64px}.hero h1{font-size:clamp(52px,7.5vw,96px);line-height:.94;max-width:9ch;color:var(--bark)}.hero .lede{font-size:18px;line-height:1.75;color:#36473f;max-width:42ch}.hero .cta-row{margin-top:36px}.ring-wrap{opacity:.38;mix-blend-mode:multiply;transform:scale(.88)}
.btn{border-radius:999px;padding:15px 24px;font-size:11px;font-weight:750;letter-spacing:.1em;transition:transform .2s ease,box-shadow .2s ease}.btn:hover{transform:translateY(-3px);box-shadow:0 12px 28px rgba(16,42,33,.16)}.btn-outline{border-width:1px;background:rgba(255,255,255,.24);backdrop-filter:blur(8px)}
.page-hero{padding:clamp(78px,10vw,142px) 0;background:linear-gradient(120deg,var(--bark),#1d4435);overflow:hidden;position:relative}.page-hero::after{content:"";position:absolute;width:420px;height:420px;border:1px solid rgba(255,255,255,.12);border-radius:50%;right:-90px;top:-220px;box-shadow:0 0 0 55px rgba(255,255,255,.025),0 0 0 110px rgba(255,255,255,.018)}.page-hero h1{font-size:clamp(48px,7vw,82px);line-height:1;max-width:15ch;position:relative;z-index:1}.page-hero .lede{font-size:18px;color:#d3ddd7;position:relative;z-index:1}
.band-dark{background:var(--bark)}.divider{display:none}.card-grid{gap:18px}.card{border:1px solid rgba(23,37,31,.09);border-radius:var(--radius);padding:clamp(28px,3vw,42px);box-shadow:0 18px 50px rgba(23,37,31,.06);transition:transform .25s ease}.card:hover{transform:translateY(-6px)}.card h3{font-size:24px}.icon{width:42px;height:42px;stroke:var(--rust)}
.process{gap:28px}.process .step{padding:0 34px 0 0}.process .step:not(:last-child){border-right:1px solid var(--line-dark)}.process .step h3{font-size:24px}.two-col{gap:clamp(42px,8vw,110px)}.zone-badge{border-radius:14px;background:rgba(255,253,247,.72);padding:24px;border:1px solid var(--line)}
.gallery-section{margin-bottom:96px}.gallery-section-head{margin-bottom:30px}.gallery-section-head h2{font-size:clamp(30px,4vw,48px)}.gallery-grid{gap:22px}.photo{border-radius:var(--radius);overflow:hidden;background:var(--cream);box-shadow:0 18px 50px rgba(23,37,31,.08)}.photo img{height:360px;object-fit:cover;background:#d9d4c8;transition:transform .5s ease}.photo:hover img{transform:scale(1.025)}.photo.wide img{height:460px}.photo figcaption{padding:18px 20px}.para-thumbs img{border-radius:14px;height:190px;object-fit:cover}
.contact-card{border-radius:var(--radius);padding:clamp(28px,4vw,48px);box-shadow:0 20px 60px rgba(23,37,31,.07)}footer.site{padding:76px 0 28px;background:#0b211a}
@media(max-width:920px){header.site .bar{min-height:72px}nav.main{padding:14px 24px 24px}.hero{min-height:auto;background:linear-gradient(rgba(245,241,232,.86),rgba(245,241,232,.97)),url("images/chene-rouge-et-commun.jpg") center/cover}.hero .grid{grid-template-columns:1fr}.ring-wrap{display:none}.gallery-grid,.gallery-grid.cols-2{grid-template-columns:1fr}.photo img,.photo.wide img{height:min(72vw,460px)}}
@media(max-width:640px){.hero h1{font-size:clamp(46px,15vw,66px)}.hero .cta-row{flex-direction:column;align-items:stretch}.btn{justify-content:center}.contact-grid,footer.site .grid{grid-template-columns:1fr}}
@media (prefers-reduced-motion:reduce){
  .para-thumbs img{ transition:none; }
}

/* Accueil — grande futaie réelle et promesse commerciale */
.hero{position:relative;display:block;min-height:0;padding:0;background:#102a21;overflow:hidden;color:#fff}
.hero::before{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(90deg,rgba(7,25,19,.92) 0%,rgba(7,25,19,.76) 39%,rgba(7,25,19,.24) 68%,rgba(7,25,19,.08) 100%),linear-gradient(0deg,rgba(7,25,19,.55) 0%,transparent 42%)}
.hero-backdrop{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center 54%;filter:saturate(.98) contrast(1.05)}
.hero .grid{position:relative;z-index:3;display:grid;grid-template-columns:minmax(0,700px) 1fr;min-height:clamp(620px,78svh,790px);align-items:center;padding-top:56px;padding-bottom:72px}
.hero-copy{max-width:720px;text-shadow:0 2px 18px rgba(0,0,0,.24)}
.hero .eyebrow{color:#e7b383}.hero .eyebrow::before{background:#e7b383}
.hero h1{max-width:17ch;margin-bottom:28px;color:#fff;font-size:clamp(44px,5.2vw,68px);line-height:1.02;letter-spacing:-.035em}
.hero-question{display:block;margin-bottom:15px;color:#e7b383;font-family:var(--font-body);font-size:clamp(17px,1.7vw,22px);font-weight:700;line-height:1.2;letter-spacing:.055em}
.hero .lede{max-width:54ch;margin-bottom:24px;color:#e8eee9;font-size:18px;line-height:1.65}
.hero-points{display:flex;flex-wrap:wrap;gap:10px 24px;margin:0;padding:0;list-style:none;color:#fff;font-size:12px;font-weight:750;letter-spacing:.09em;text-transform:uppercase}
.hero-points li{display:flex;align-items:center;gap:9px}.hero-points li::before{content:"";width:6px;height:6px;border-radius:50%;background:#e88955;box-shadow:0 0 0 4px rgba(232,137,85,.18)}
.hero .cta-row{margin-top:34px}.hero .btn-outline{border-color:rgba(255,255,255,.58);color:#fff;background:rgba(12,37,28,.32)}
.hero-service-wrap{position:relative;z-index:3;padding-bottom:28px}
.hero-service-bar{display:grid;grid-template-columns:repeat(3,1fr);overflow:hidden;border:1px solid rgba(255,255,255,.18);border-radius:18px;background:rgba(245,241,232,.96);box-shadow:0 24px 60px rgba(4,18,13,.25);backdrop-filter:blur(14px)}
.hero-service-bar a{position:relative;display:grid;grid-template-columns:38px 1fr;gap:2px 14px;padding:23px 28px;color:var(--bark);transition:background .2s ease}
.hero-service-bar a:not(:last-child){border-right:1px solid rgba(23,37,31,.12)}.hero-service-bar a:hover{background:#fff}
.hero-service-bar span{grid-row:1/3;color:var(--rust-dk);font-size:11px;font-weight:800;letter-spacing:.15em;padding-top:3px}
.hero-service-bar strong{font-family:var(--font-display);font-size:19px;line-height:1.25}.hero-service-bar small{color:var(--ink-soft);font-size:12px}
.home-activities{background:linear-gradient(145deg,#f5f1e8,#ebe3d5)}
.home-activities-intro{max-width:72ch;margin:20px 0 0;color:var(--ink-soft);font-size:17px}
.home-activities .card{display:flex;flex-direction:column;min-height:100%}
.home-activities .card .more{margin-top:auto;padding-top:20px}
.activity-card{position:relative;overflow:hidden;background:linear-gradient(145deg,#fffdf8,#e8dfcf)}
.activity-card::before{content:"";position:absolute;inset:0 0 auto;height:5px;background:linear-gradient(90deg,var(--rust),var(--heart))}
.activity-num{display:block;margin-bottom:24px;color:var(--rust-dk);font-family:var(--font-mono);font-size:11px;font-weight:800;letter-spacing:.12em;text-transform:uppercase}
.photo-credits{font-size:10px;opacity:.62;text-align:center}.photo-credits a{text-decoration:underline;text-underline-offset:2px}

@media(max-width:1100px){
  .hero .grid{grid-template-columns:1fr;min-height:640px}
}
@media(max-width:920px){
  .hero::before{background:linear-gradient(90deg,rgba(7,25,19,.9),rgba(7,25,19,.55)),linear-gradient(0deg,rgba(7,25,19,.5),transparent)}
  .hero-service-bar{grid-template-columns:1fr}
  .hero-service-bar a:not(:last-child){border-right:0;border-bottom:1px solid rgba(23,37,31,.12)}
}
@media(max-width:620px){
  .hero-backdrop{object-position:58% center}.hero .grid{min-height:610px;padding-top:54px;padding-bottom:38px}
  .hero h1{max-width:14ch;font-size:clamp(38px,10.5vw,50px);line-height:1.04}.hero-question{margin-bottom:12px;font-size:16px}.hero .lede{font-size:16px}.hero-points{display:grid;gap:9px}
  .hero-service-bar a{padding:18px 20px}.photo-credits{order:3;width:100%;text-align:left}
}

/* Galeries validées — patchwork naturel sans écrasement des photos */
.page-exploitation .para-thumbs{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px;margin:26px 0 42px}
.page-exploitation .para-thumbs figure,.page-exploitation .para-thumbs figure:nth-child(3){width:auto;min-width:0;grid-column:auto;justify-self:auto;overflow:hidden;border-radius:14px}
.page-exploitation .para-thumbs img,.page-exploitation .band-dark .para-thumbs img{width:100%;height:auto;object-fit:contain;border-radius:14px;cursor:default;transform:none}
.page-exploitation .para-thumbs img:hover,.page-exploitation .para-thumbs img:focus-visible{transform:scale(1.015);box-shadow:0 10px 28px rgba(20,15,8,.18)}
.page-exploitation .thumbs-standing,.page-exploitation .thumbs-roadside{display:flex;align-items:flex-start}
.page-exploitation .thumbs-standing figure:first-child{flex:0 0 calc(58% - 8px)}
.page-exploitation .thumbs-standing figure:last-child{flex:0 0 calc(42% - 8px)}
.page-exploitation .thumbs-roadside figure:first-child{flex:0 0 calc(42% - 8px)}
.page-exploitation .thumbs-roadside figure:last-child{flex:0 0 calc(58% - 8px)}
.page-exploitation .thumbs-operations{display:grid;grid-template-columns:minmax(0,35fr) minmax(0,65fr);align-items:start}
.page-exploitation .thumbs-operations figure:first-child{grid-row:1 / span 2}
.page-exploitation .thumbs-operations figure:nth-child(2){grid-column:2;grid-row:1}
.page-exploitation .thumbs-operations figure:nth-child(3){grid-column:2;grid-row:2}
.page-exploitation .thumbs-commercial{display:grid;grid-template-columns:repeat(2,minmax(0,1fr))}
.page-exploitation .thumbs-commercial figure:first-child{grid-column:1 / -1}

.page-chantiers .gallery-grid,.page-chantiers .gallery-grid.cols-2{display:block;column-count:3;column-gap:22px}
.page-chantiers .gallery-grid.cols-2{column-count:2}
.page-chantiers .photo,.page-chantiers .photo.standalone{display:inline-block;width:100%;margin:0 0 22px;break-inside:avoid;page-break-inside:avoid}
.page-chantiers .photo img,.page-chantiers .photo.wide img,.page-chantiers .photo.standalone img{width:100%;height:auto;max-height:none;object-fit:contain}
.page-chantiers .gallery-grid.cols-2.energy-pair{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));column-count:auto;align-items:start;gap:22px}
.page-chantiers .gallery-grid.cols-2.energy-pair .photo{display:block;width:100%;margin:0}
@media(max-width:900px){.page-chantiers .gallery-grid,.page-chantiers .gallery-grid.cols-2{column-count:2}}
@media(max-width:600px){
  .page-exploitation .thumbs-standing,.page-exploitation .thumbs-roadside{display:grid;grid-template-columns:1fr 1fr}
  .page-exploitation .thumbs-standing figure:first-child,.page-exploitation .thumbs-standing figure:last-child,.page-exploitation .thumbs-roadside figure:first-child,.page-exploitation .thumbs-roadside figure:last-child{width:auto;flex:auto}
  .page-exploitation .thumbs-operations{grid-template-columns:minmax(0,38fr) minmax(0,62fr)}
}
@media(max-width:580px){.page-chantiers .gallery-grid,.page-chantiers .gallery-grid.cols-2{column-count:1}.page-chantiers .gallery-grid.cols-2.energy-pair{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px}}

/* Pages métiers — composition plus dense, accueil volontairement inchangé */
.page-exploitation .page-hero{min-height:520px;display:flex;align-items:center;background:linear-gradient(90deg,rgba(8,31,23,.98) 0%,rgba(8,31,23,.9) 48%,rgba(8,31,23,.3) 76%,rgba(8,31,23,.12) 100%),url("images/grumier-anonymise.jpg") 78% center/cover no-repeat}
.page-exploitation .page-hero .container,.page-elagage .page-hero .container{position:relative;z-index:1}
.page-exploitation .page-hero h1,.page-elagage .page-hero h1{max-width:13ch}
.page-exploitation .purchase-overview,.page-elagage .elagage-overview{background:radial-gradient(circle at 86% 15%,rgba(184,121,69,.11),transparent 30%),var(--bg)}
.page-exploitation .purchase-overview .two-col,.page-elagage .elagage-overview .two-col{align-items:stretch}
.page-exploitation .purchase-flow{display:grid;gap:clamp(72px,9vw,120px)}
.page-exploitation .purchase-row{display:grid;grid-template-columns:minmax(300px,.82fr) minmax(440px,1.18fr);gap:clamp(42px,7vw,92px);align-items:center}
.page-exploitation .purchase-row+.purchase-row{padding-top:clamp(68px,8vw,100px);border-top:1px solid var(--line)}
.page-exploitation .purchase-row-reverse .purchase-copy{order:2}.page-exploitation .purchase-row-reverse .para-thumbs{order:1}
.page-exploitation .purchase-copy h2{max-width:14ch}.page-exploitation .purchase-copy .eyebrow{margin-bottom:14px}
.page-exploitation .purchase-list{list-style:none;margin:26px 0 0;padding:0;display:grid;gap:10px;color:var(--ink-soft);font-size:15px}
.page-exploitation .purchase-list li{display:flex;gap:11px;align-items:flex-start}
.page-exploitation .purchase-list li::before{content:"";flex:0 0 7px;width:7px;height:7px;margin-top:.62em;border-radius:50%;background:var(--rust)}
.page-exploitation .purchase-copy .btn{margin-top:30px}
.page-exploitation .purchase-row .para-thumbs{margin:0;align-self:start}
.page-exploitation .purchase-row .para-thumbs figure{box-shadow:0 20px 48px rgba(14,42,32,.12)}
.page-exploitation .purchase-merged{display:grid;gap:clamp(36px,5vw,64px)}
.page-exploitation .purchase-merged-heading{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(300px,.95fr);gap:clamp(28px,6vw,80px);align-items:end}
.page-exploitation .purchase-merged-heading .eyebrow{grid-column:1/-1;margin-bottom:-22px}
.page-exploitation .purchase-merged-heading h2{max-width:17ch;margin:0}
.page-exploitation .purchase-merged-heading p{max-width:62ch;margin:0;color:var(--ink-soft);font-size:17px}
.page-exploitation .purchase-merged-grid{display:grid;grid-template-columns:1fr 1fr;gap:22px;align-items:stretch}
.page-exploitation .purchase-type{display:flex;flex-direction:column;padding:clamp(28px,3.5vw,48px);border:1px solid rgba(23,37,31,.09);border-radius:20px;background:rgba(255,253,248,.92);box-shadow:0 20px 54px rgba(14,42,32,.09)}
.page-exploitation .purchase-type-num{color:var(--rust-dk);font-family:var(--font-mono);font-size:12px;font-weight:800;letter-spacing:.11em;text-transform:uppercase}
.page-exploitation .purchase-type h3{max-width:18ch;margin:18px 0 16px;font-size:clamp(27px,2.6vw,37px)}
.page-exploitation .purchase-type>p{color:var(--ink-soft);font-size:16px}
.page-exploitation .purchase-type .purchase-list{margin-bottom:28px}
.page-exploitation .purchase-standing-photos{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:auto}
.page-exploitation .purchase-standing-photos figure,.page-exploitation .purchase-shaped-photo{margin:0;border-radius:14px;overflow:hidden;background:#d7d7ce}
.page-exploitation .purchase-standing-photos figure{aspect-ratio:4/5}
.page-exploitation .purchase-standing-photos img,.page-exploitation .purchase-shaped-photo img{width:100%;height:100%;display:block;object-fit:cover}
.page-exploitation .purchase-standing-photos img{object-position:center}
.page-exploitation .purchase-shaped-photo{aspect-ratio:16/9;margin-top:auto}
.page-exploitation .purchase-shaped-photo img{object-position:center}
.page-exploitation .purchase-merged-cta{display:flex;align-items:center;justify-content:space-between;gap:24px;padding:24px 30px;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.page-exploitation .purchase-merged-cta p{margin:0;color:var(--ink);font-family:var(--font-heading);font-size:clamp(21px,2vw,28px);font-weight:700}
.page-exploitation .purchase-card,.page-elagage .elagage-services-card{position:relative;overflow:hidden;border:0;background:linear-gradient(145deg,#ebe2d1,#ddd0ba)!important;box-shadow:0 26px 70px rgba(14,42,32,.13)}
.page-exploitation .purchase-card::before,.page-elagage .elagage-services-card::before{content:"";position:absolute;inset:0 0 auto;height:7px;background:linear-gradient(90deg,var(--rust),var(--heart),var(--moss))}
.page-exploitation .core-trade-section{padding-top:clamp(80px,8vw,112px);padding-bottom:clamp(80px,8vw,112px);background:linear-gradient(135deg,rgba(255,255,255,.025),transparent 44%),linear-gradient(145deg,#0a241b,#153b2d)}
.page-exploitation .core-trade-section> .container>h2{padding-left:24px;border-left:4px solid var(--rust)}
.page-exploitation .outlets-section{background:var(--cream)}
.page-exploitation .outlets-intro{max-width:70ch;margin-top:18px;color:var(--ink-soft);font-size:17px}
.page-exploitation .outlet-routes{display:grid;grid-template-columns:1fr 1fr;gap:22px}
.page-exploitation .outlet-route{position:relative;padding:clamp(34px,4vw,54px);border-radius:var(--radius);overflow:hidden}
.page-exploitation .outlet-route-local{background:linear-gradient(145deg,#fffdf8,#e9e0d0);border:1px solid rgba(23,37,31,.09);box-shadow:0 22px 58px rgba(23,37,31,.08)}
.page-exploitation .outlet-route-export{background:linear-gradient(145deg,#0c2a20,#194735);color:#fff;box-shadow:0 22px 58px rgba(14,42,32,.17)}
.page-exploitation .outlet-num{display:block;margin-bottom:24px;color:var(--rust-dk);font-family:var(--font-mono);font-size:12px;font-weight:800;letter-spacing:.12em;text-transform:uppercase}
.page-exploitation .outlet-route-export .outlet-num{color:#e9ac83}
.page-exploitation .outlet-route h3{margin-bottom:16px;font-size:clamp(27px,2.6vw,36px)}
.page-exploitation .outlet-route-export h3{color:#fff}
.page-exploitation .outlet-route p,.page-exploitation .outlet-route li{color:var(--ink-soft);font-size:16px;line-height:1.7}
.page-exploitation .outlet-route-export p{color:#d2ded8}
.page-exploitation .outlet-route ul{list-style:none;margin:24px 0 0;padding:0;display:grid;gap:13px}
.page-exploitation .outlet-route li{position:relative;padding-left:22px}
.page-exploitation .outlet-route li::before{content:"";position:absolute;left:0;top:.7em;width:8px;height:8px;border-radius:50%;background:var(--rust)}
.page-exploitation .outlet-route-highlight{margin-top:26px;padding:18px 20px;border-left:3px solid var(--rust);background:rgba(255,255,255,.07)}
.page-exploitation .outlet-uses{display:grid;grid-template-columns:1.08fr .92fr 1fr;gap:16px;margin-top:24px}
.page-exploitation .outlet-uses figure{position:relative;min-height:310px;margin:0;border-radius:16px;overflow:hidden;background:#18382c;box-shadow:0 16px 38px rgba(14,42,32,.12)}
.page-exploitation .outlet-uses img{width:100%;height:100%;min-height:310px;display:block;object-fit:cover;transition:transform .5s ease}
.page-exploitation .outlet-uses figure:hover img{transform:scale(1.025)}
.page-exploitation .outlet-uses figcaption{position:absolute;inset:auto 0 0;padding:48px 24px 22px;color:#fff;background:linear-gradient(transparent,rgba(7,24,18,.92))}
.page-exploitation .outlet-uses figcaption strong,.page-exploitation .outlet-uses figcaption span{display:block}
.page-exploitation .outlet-uses figcaption strong{font-family:var(--font-heading);font-size:22px}
.page-exploitation .outlet-uses figcaption span{margin-top:5px;font-size:13px;color:#d8e1dc}
.page-exploitation .market-note{display:grid;grid-template-columns:180px 1fr;gap:28px;align-items:center;margin-top:24px;padding:26px 32px;border:1px solid rgba(23,37,31,.1);border-radius:14px;background:#fffdf8}
.page-exploitation .market-note-label{color:var(--rust-dk);font-family:var(--font-mono);font-size:12px;font-weight:800;letter-spacing:.12em;text-transform:uppercase}
.page-exploitation .market-note p{margin:0;color:var(--ink-soft);font-size:16px}
.page-exploitation .outlet-photo-credits{margin:14px 4px 0;color:#7a817d;font-size:11px}
.page-exploitation .outlet-photo-credits a{color:inherit;text-decoration:underline}
@media (max-width:900px){.page-exploitation .outlet-routes{grid-template-columns:1fr}.page-exploitation .outlet-uses{grid-template-columns:1fr 1fr}.page-exploitation .outlet-uses figure:last-child{grid-column:1/-1}.page-exploitation .market-note{grid-template-columns:1fr;gap:10px}}
@media (max-width:620px){.page-exploitation .outlet-uses{grid-template-columns:1fr}.page-exploitation .outlet-uses figure:last-child{grid-column:auto}.page-exploitation .outlet-uses figure,.page-exploitation .outlet-uses img{min-height:260px}.page-exploitation .market-note{padding:24px}}
.page-exploitation .method-section{background:linear-gradient(120deg,#ebe3d5,#f6f2ea)}
.page-exploitation .method-section .card{background:rgba(255,253,248,.88);backdrop-filter:blur(8px)}
.page-exploitation .forest-management{background:linear-gradient(145deg,#f6f2e9,#e8dfcf)}
.page-exploitation .management-heading{display:grid;grid-template-columns:minmax(0,.9fr) minmax(360px,1.1fr);gap:clamp(40px,7vw,100px);align-items:end;margin-bottom:48px}
.page-exploitation .management-heading h2{max-width:15ch;margin-bottom:0}
.page-exploitation .management-lead p{color:var(--ink-soft);font-size:17px}
.page-exploitation .management-services{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));border-top:1px solid rgba(23,37,31,.14);border-bottom:1px solid rgba(23,37,31,.14)}
.page-exploitation .management-services article{padding:30px 24px;border-right:1px solid rgba(23,37,31,.12)}
.page-exploitation .management-services article:last-child{border-right:0}
.page-exploitation .management-services article>span{color:var(--rust-dk);font-family:var(--font-mono);font-size:11px;font-weight:800;letter-spacing:.12em}
.page-exploitation .management-services h3{margin:16px 0 10px;font-size:21px}
.page-exploitation .management-services p{margin:0;color:var(--ink-soft);font-size:14px;line-height:1.65}
.page-exploitation .management-offer{display:grid;grid-template-columns:minmax(250px,.75fr) minmax(360px,1fr) auto;gap:clamp(26px,4vw,54px);align-items:center;margin-top:30px;padding:clamp(28px,4vw,44px);border-radius:18px;background:#153b2d;color:#fff;box-shadow:0 22px 52px rgba(14,42,32,.14)}
.page-exploitation .management-offer h3{margin:8px 0 0;color:#fff;font-size:clamp(25px,2.6vw,35px)}
.page-exploitation .management-offer p{margin:0;color:#d4ddd8}
.page-exploitation .management-offer .eyebrow{color:#efb58f}.page-exploitation .management-offer .eyebrow::before{background:#efb58f}
.page-exploitation .renewal-section{background:linear-gradient(145deg,#f6f2e9 0%,#e8dfcf 100%)}
.page-exploitation .renewal-heading{display:grid;grid-template-columns:minmax(0,.9fr) minmax(360px,1.1fr);gap:clamp(38px,7vw,100px);align-items:end;margin-bottom:clamp(38px,5vw,62px)}
.page-exploitation .renewal-heading h2{max-width:13ch;margin-bottom:0}
.page-exploitation .renewal-intro p{color:var(--ink-soft);font-size:17px}
.page-exploitation .renewal-visuals{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px}
.page-exploitation .renewal-photo{position:relative;margin:0;border-radius:20px;overflow:hidden;background:#18382c;box-shadow:0 22px 56px rgba(14,42,32,.13)}
.page-exploitation .renewal-photo img{width:100%;height:100%;display:block;object-fit:cover;transition:transform .5s ease}
.page-exploitation .renewal-photo-mulching,.page-exploitation .renewal-photo-subsoiling{aspect-ratio:3/2}
.page-exploitation .renewal-photo-mulching{grid-column:1}
.page-exploitation .renewal-photo-subsoiling{grid-column:2}
.page-exploitation .renewal-photo-planting{grid-column:1/-1;width:min(100%,820px);aspect-ratio:3/2;justify-self:center}
.page-exploitation .renewal-photo-mulching img{object-position:center 54%}
.page-exploitation .renewal-photo-subsoiling img{object-position:center 58%}
.page-exploitation .renewal-photo-planting img{object-position:center}
.page-exploitation .renewal-photo:hover img{transform:scale(1.02)}
.page-exploitation .renewal-photo figcaption{position:absolute;inset:auto 0 0;padding:70px 28px 26px;color:#fff;background:linear-gradient(transparent,rgba(7,24,18,.92))}
.page-exploitation .renewal-photo figcaption span{display:block;margin-bottom:8px;color:#f0b589;font-family:var(--font-mono);font-size:12px;letter-spacing:.12em}
.page-exploitation .renewal-photo figcaption strong{font-family:var(--font-display);font-size:clamp(23px,2.3vw,32px)}
.page-exploitation .renewal-steps{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));margin-top:22px;border-top:1px solid rgba(23,37,31,.14);border-bottom:1px solid rgba(23,37,31,.14)}
.page-exploitation .renewal-steps article{padding:28px 20px 30px;border-right:1px solid rgba(23,37,31,.12)}
.page-exploitation .renewal-steps article:last-child{border-right:0}
.page-exploitation .renewal-steps article>span{color:var(--rust-dk);font-family:var(--font-mono);font-size:11px;font-weight:700;letter-spacing:.12em}
.page-exploitation .renewal-steps h3{margin:16px 0 10px;font-size:20px;line-height:1.1}
.page-exploitation .renewal-steps p{margin:0;color:var(--ink-soft);font-size:14px;line-height:1.6}
.page-exploitation .renewal-note{display:grid;grid-template-columns:minmax(260px,.7fr) minmax(360px,1fr) auto;gap:clamp(26px,4vw,54px);align-items:center;margin-top:30px;padding:clamp(28px,4vw,44px);border-radius:18px;background:#153b2d;color:#fff;box-shadow:0 22px 52px rgba(14,42,32,.14)}
.page-exploitation .renewal-note h3{margin:8px 0 0;color:#fff;font-size:clamp(25px,2.6vw,35px)}
.page-exploitation .renewal-note p{margin:0;color:#d4ddd8}
.page-exploitation .renewal-note .eyebrow{color:#efb58f}.page-exploitation .renewal-note .eyebrow::before{background:#efb58f}
.page-exploitation .renewal-photo-credits{margin:13px 2px 0;color:#737b76;font-size:10px}
.page-exploitation .process-section{border-top:1px solid rgba(255,255,255,.12);border-bottom:1px solid rgba(255,255,255,.12)}
.page-exploitation .process-section .process{gap:22px}
.page-exploitation .process-section .step{padding:0 22px 0 0}
.page-exploitation .process-section .step-photo{height:240px;margin:0 0 26px;border-radius:14px;overflow:hidden;background:#26483a;box-shadow:0 20px 44px rgba(0,0,0,.22)}
.page-exploitation .process-section .step-photo img{width:100%;height:100%;display:block;object-fit:cover;transition:transform .45s ease}
.page-exploitation .process-section .step:hover .step-photo img{transform:scale(1.025)}
@media (max-width:820px){.page-exploitation .process-section .step{padding-right:0}.page-exploitation .process-section .step-photo{height:clamp(240px,58vw,380px)}}

.page-elagage .page-hero{min-height:500px;display:flex;align-items:center;background:linear-gradient(90deg,rgba(8,31,23,.72) 0%,rgba(8,31,23,.46) 43%,rgba(8,31,23,.13) 70%,rgba(8,31,23,.02) 100%),url("images/elagage-hero-tronconneuse.png") center/cover no-repeat}
.page-elagage .page-hero .lede{max-width:780px;text-shadow:0 2px 16px rgba(4,20,14,.55)}
.page-elagage .elagage-overview-copy{display:grid;grid-template-columns:1fr 1fr;column-gap:clamp(48px,7vw,110px);row-gap:6px;margin-bottom:50px}
.page-elagage .elagage-overview-copy h2:first-child,.page-elagage .elagage-overview-copy p:nth-child(2),.page-elagage .elagage-overview-copy p:nth-child(3){grid-column:1}
.page-elagage .elagage-overview-copy h2:nth-of-type(2),.page-elagage .elagage-overview-copy p:last-child{grid-column:2}
.page-elagage .elagage-overview-copy h2:nth-of-type(2){grid-row:1}
.page-elagage .elagage-overview-copy p:last-child{grid-row:2 / span 2}
.page-elagage .elagage-services-card{position:relative;padding:clamp(26px,3vw,42px);border-radius:24px;background:linear-gradient(145deg,#ebe2d1,#ddd0ba);box-shadow:0 26px 70px rgba(14,42,32,.13)}
.page-elagage .elagage-services-list{list-style:none;margin:0 0 28px;padding:0;display:grid;gap:10px;color:var(--ink-soft);font-size:15px}
.page-elagage .elagage-services-list li{display:grid;grid-template-columns:34px 1fr;gap:10px;align-items:center;padding:9px 0;border-bottom:1px solid rgba(23,37,31,.1)}
.page-elagage .elagage-services-list li span{color:var(--rust-dk);font-family:var(--font-mono);font-size:11px;font-weight:700;letter-spacing:.08em}
.page-elagage .elagage-service-visuals{display:grid;grid-template-columns:1.12fr .88fr;grid-template-rows:360px 300px;gap:16px;margin-top:20px}
.page-elagage .service-visual{position:relative;margin:0;border-radius:13px;overflow:hidden;background:#18382c;box-shadow:0 14px 30px rgba(14,42,32,.15)}
.page-elagage .service-visual-climb{grid-column:1;grid-row:1}
.page-elagage .service-visual-urban{grid-column:2;grid-row:1 / span 2}
.page-elagage .service-visual-chipper{grid-column:1;grid-row:2}
.page-elagage .service-visual img{width:100%;height:100%;display:block;object-fit:cover;transition:transform .45s ease}
.page-elagage .service-visual-climb img{object-position:center}
.page-elagage .service-visual-urban img{object-position:center 30%}
.page-elagage .service-visual:hover img{transform:scale(1.025)}
.page-elagage .service-visual figcaption{position:absolute;inset:auto 0 0;padding:54px 22px 20px;color:#fff;background:linear-gradient(transparent,rgba(7,24,18,.94));font-family:var(--font-heading);font-size:clamp(18px,1.7vw,25px);font-weight:700;line-height:1.08}
.page-elagage .service-visual figcaption span{display:block;margin-bottom:8px;color:#f0bd94;font-family:var(--font-mono);font-size:11px;letter-spacing:.12em}
.page-elagage .service-visual figcaption small{display:block;margin-top:9px;font-family:inherit;font-size:.72em;line-height:1.25;font-weight:500;color:#e5ebe7}
.page-elagage .elagage-photo-credits{margin:12px 2px 0;color:#707873;font-size:10px;line-height:1.5}
.page-elagage .elagage-photo-credits a{color:inherit;text-decoration:underline}
.page-elagage .elagage-media-section{background:linear-gradient(135deg,#e8dfcf,#f7f3eb)}
.page-elagage .elagage-media-section .gallery-grid{gap:26px}
.page-elagage .elagage-media-section video{max-width:100%!important;width:100%!important;padding:8px;background:#102a21;box-shadow:0 22px 50px rgba(14,42,32,.18);border:0!important}
.page-elagage .elagage-technique-section{background:linear-gradient(145deg,#0a251c,#174332)}
.page-elagage .elagage-technique-section .card{padding:0 0 32px;overflow:hidden;background:rgba(255,253,248,.08);border-color:rgba(255,255,255,.16);box-shadow:none}
.page-elagage .elagage-technique-section .card h3,.page-elagage .elagage-technique-section .card p{margin-left:32px;margin-right:32px}
.page-elagage .elagage-technique-section .technique-visual{height:300px;margin:0 0 28px;overflow:hidden}
.page-elagage .elagage-technique-section .technique-visual img{width:100%;height:100%;display:block;object-fit:cover}
.page-elagage .elagage-technique-section .card:first-child .technique-visual img{object-position:center 28%}
.page-elagage .elagage-technique-section .card h3{color:#fff}
.page-elagage .elagage-technique-section .card p{color:#cbd5cf}
.page-elagage .elagage-cta-section{background:linear-gradient(115deg,#8e542f,#b7522c);padding:clamp(64px,7vw,90px) 0}
.page-elagage .elagage-cta-section .eyebrow{color:#ffe1ca}.page-elagage .elagage-cta-section .eyebrow::before{background:#ffe1ca}
.page-elagage .elagage-cta-section .btn{background:#fff;color:#7e321f;border-color:#fff}
@media(max-width:920px){
  .page-exploitation .page-hero{min-height:460px;background:linear-gradient(90deg,rgba(8,31,23,.96),rgba(8,31,23,.68)),url("images/grumier-anonymise.jpg") center/cover no-repeat}
  .page-elagage .page-hero{background:linear-gradient(90deg,rgba(8,31,23,.82),rgba(8,31,23,.34)),url("images/elagage-hero-tronconneuse.png") 62% center/cover no-repeat}
  .page-exploitation .purchase-row{grid-template-columns:1fr;gap:32px}
  .page-exploitation .purchase-row-reverse .purchase-copy,.page-exploitation .purchase-row-reverse .para-thumbs{order:initial}
  .page-exploitation .purchase-merged-heading,.page-exploitation .purchase-merged-grid{grid-template-columns:1fr}
  .page-exploitation .purchase-merged-heading .eyebrow{margin-bottom:-8px}
  .page-exploitation .renewal-heading{grid-template-columns:1fr}
  .page-exploitation .renewal-visuals{grid-template-columns:1fr 1fr}
  .page-exploitation .renewal-steps{grid-template-columns:repeat(2,1fr)}
  .page-exploitation .renewal-steps article{border-bottom:1px solid rgba(23,37,31,.12)}
  .page-exploitation .renewal-note{grid-template-columns:1fr}
  .page-exploitation .management-heading,.page-exploitation .management-offer{grid-template-columns:1fr}
  .page-exploitation .management-services{grid-template-columns:1fr 1fr}
  .page-exploitation .management-services article:nth-child(2){border-right:0}
  .page-exploitation .management-services article:nth-child(-n+2){border-bottom:1px solid rgba(23,37,31,.12)}
}
@media(max-width:600px){
  .page-exploitation .page-hero,.page-elagage .page-hero{min-height:420px}
  .page-elagage .elagage-overview-copy{display:block}
  .page-elagage .elagage-overview-copy h2:nth-of-type(2){margin-top:38px}
  .page-elagage .elagage-service-visuals{grid-template-columns:1fr;grid-template-rows:300px 390px 280px}
  .page-elagage .service-visual-climb,.page-elagage .service-visual-urban,.page-elagage .service-visual-chipper{grid-column:1;grid-row:auto}
  .page-elagage .elagage-technique-section .card-grid{grid-template-columns:1fr!important}
  .page-elagage .elagage-media-section .gallery-grid{grid-template-columns:1fr!important}
  .page-exploitation .purchase-type{padding:24px 18px}
  .page-exploitation .purchase-standing-photos{gap:8px}
  .page-exploitation .purchase-merged-cta{align-items:flex-start;flex-direction:column;padding:22px 0}
  .page-exploitation .renewal-visuals{grid-template-columns:1fr}
  .page-exploitation .renewal-photo-mulching,.page-exploitation .renewal-photo-subsoiling,.page-exploitation .renewal-photo-planting{grid-column:1;grid-row:auto}
  .page-exploitation .renewal-steps{grid-template-columns:1fr}
  .page-exploitation .renewal-steps article{border-right:0}
  .page-exploitation .management-services{grid-template-columns:1fr}
  .page-exploitation .management-services article{border-right:0;border-bottom:1px solid rgba(23,37,31,.12)}
  .page-exploitation .management-services article:last-child{border-bottom:0}
}

/* Cartes de la zone d'intervention */
.region-map-wrap{display:grid;grid-template-columns:minmax(240px,.75fr) minmax(420px,1.25fr);gap:clamp(28px,6vw,86px);align-items:center;max-width:1080px}
.page-zone-intervention .zone-hero{min-height:520px;display:flex;align-items:center;background:linear-gradient(112deg,#0d3024 0%,#164b38 63%,#1f6249 100%)}
.page-zone-intervention .zone-hero .container{position:relative;z-index:2}
.page-zone-intervention .zone-hero h1,.page-zone-intervention .zone-hero .lede{max-width:720px}
.page-zone-intervention .zone-hero-map{position:absolute;z-index:1;right:clamp(-70px,1vw,10px);top:50%;width:min(52vw,690px);height:92%;object-fit:contain;transform:translateY(-50%);opacity:.42;filter:saturate(.82) brightness(1.12)}
.page-zone-intervention .region-map-light{max-width:1180px;padding:clamp(28px,4vw,48px);border:1px solid var(--line);border-radius:24px;background:linear-gradient(145deg,rgba(255,253,248,.94),rgba(235,226,209,.76));box-shadow:0 24px 70px rgba(14,42,32,.1)}
.region-map-copy p{color:#c7d0cb;font-size:17px}.region-map-list{list-style:none;padding:0;margin:28px 0 0;display:grid;grid-template-columns:1fr 1fr;gap:10px 22px;color:#fff}
.region-map-list li{display:flex;align-items:center;gap:10px;font-size:14px}.region-map-list span{display:inline-flex;align-items:center;justify-content:center;width:34px;height:26px;border:1px solid rgba(255,255,255,.3);border-radius:999px;color:#d8b58f;font-family:var(--font-mono);font-size:11px}
.region-map{width:100%;max-width:640px;filter:drop-shadow(0 22px 34px rgba(0,0,0,.2))}.map-departments path{fill:#1e4b39;stroke:#d6c5a9;stroke-width:2;transition:fill .25s ease}.map-departments path:nth-child(even){fill:#285844}.map-departments path:hover{fill:#bd693f}
.map-labels{text-anchor:middle;fill:#fff;font-family:var(--font-mono);font-size:13px;pointer-events:none}.map-labels tspan:first-child{font-family:var(--font-display);font-size:28px;font-weight:700}.lille-marker circle:first-child{fill:#e07440}.lille-marker circle:nth-child(2){fill:none;stroke:#e07440;stroke-width:2;opacity:.55}.lille-marker text{fill:#fff;font-family:var(--font-mono);font-size:13px}
.region-map-light{margin-bottom:52px}.region-map-light .region-map-copy p{color:var(--ink-soft)}.region-map-light .region-map-list{color:var(--ink)}.region-map-light .region-map-list span{border-color:rgba(14,42,32,.25);color:var(--rust-dk)}
.region-border-note{display:flex;align-items:center;gap:18px;flex-wrap:wrap;padding:20px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line);color:var(--ink-soft)}.region-border-note strong{color:var(--ink);font-family:var(--font-display);font-size:20px}.region-border-note span{flex:1;min-width:280px}.region-border-note .more{color:var(--rust-dk);font-family:var(--font-mono);font-size:12px;text-decoration:none;border-bottom:1px solid currentColor}
.radius-map-wrap{display:grid;grid-template-columns:minmax(280px,.8fr) minmax(430px,1.2fr);gap:clamp(30px,6vw,90px);align-items:center}.radius-map-copy>p{color:#cbd4cf;font-size:16px}.radius-key{display:flex;align-items:center;gap:12px;margin-bottom:22px;color:#fff;font-family:var(--font-mono);font-size:12px;letter-spacing:.07em;text-transform:uppercase}.radius-key-circle{width:38px;height:38px;border:2px solid #d47749;border-radius:50%;box-shadow:0 0 0 7px rgba(212,119,73,.12)}
.distance-note{margin-top:30px;padding:24px;border:1px solid rgba(255,255,255,.18);border-radius:12px;background:rgba(255,255,255,.055)}.distance-note .eyebrow{margin-bottom:10px}.distance-note p{color:#d0d8d3;font-size:15px}.distance-note .more{color:#fff;font-family:var(--font-mono);font-size:12px;text-decoration:none;border-bottom:1px solid #d47749}
.radius-map{width:100%;max-width:650px;filter:drop-shadow(0 22px 36px rgba(0,0,0,.22))}.radius-outer{fill:rgba(255,255,255,.025);stroke:rgba(255,255,255,.28);stroke-width:2;stroke-dasharray:7 9}.radius-main{fill:rgba(43,102,77,.38);stroke:#d47749;stroke-width:3}.radius-inner{fill:rgba(255,255,255,.035);stroke:rgba(255,255,255,.18);stroke-width:1.5}.radius-roads path{fill:none;stroke:rgba(255,255,255,.14);stroke-width:2;stroke-dasharray:4 7}
.city-markers circle{fill:#d6c5a9;stroke:#0e2a20;stroke-width:3}.city-markers .city-main circle{fill:#e07440;stroke:#fff;stroke-width:4}.city-markers .city-outside circle{fill:#73877d;stroke:#0e2a20}.city-markers .city-outside text{fill:#9fb0a8}.city-markers text{fill:#fff;font-family:var(--font-mono);font-size:13px}.city-main text{font-family:var(--font-display);font-weight:700;font-size:22px}.radius-label,.radius-request-label{fill:#fff;text-anchor:middle;font-family:var(--font-mono);font-size:13px;letter-spacing:.08em;text-transform:uppercase}.radius-request-label{fill:#b9c7c0;font-size:11px}
@media(max-width:860px){.region-map-wrap,.radius-map-wrap{grid-template-columns:1fr}.region-map,.radius-map{max-width:620px;margin:auto}}
@media(max-width:860px){.page-zone-intervention .zone-hero-map{right:-120px;width:88vw;opacity:.22}.page-zone-intervention .zone-hero .lede{max-width:66ch}}

/* Accès rapide en tête des deux pages métiers */
.page-exploitation .page-hero,.page-elagage .page-hero{position:relative}
.hero-contact-shortcut{position:absolute;z-index:3;right:max(28px,calc((100vw - var(--container))/2 + 28px));bottom:24px;box-shadow:0 12px 28px rgba(8,31,23,.28)}

/* À propos */
.page-about .about-hero{background:radial-gradient(circle at 82% 32%,rgba(190,75,24,.18),transparent 25%),linear-gradient(118deg,#0b2a20,#1d503c)}
.page-about .about-hero h1{max-width:16ch}
.page-about .about-story-section{background:linear-gradient(145deg,#f3eee3,#e8deca)}
.page-about .about-story-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:22px;align-items:stretch}
.page-about .about-story-card{position:relative;padding:clamp(30px,4vw,48px);border:1px solid rgba(32,26,19,.12);border-radius:18px;background:rgba(255,253,248,.78);box-shadow:0 18px 50px rgba(32,26,19,.07)}
.page-about .about-story-main{grid-row:span 2}
.page-about .about-card-num{display:block;margin-bottom:28px;color:var(--rust-dk);font-family:var(--font-mono);font-size:12px;letter-spacing:.15em}
.page-about .about-story-card h2{font-size:clamp(28px,3vw,42px)}
.page-about .about-story-card p{color:var(--ink-soft)}
.page-about .about-story-accent{background:#173b2d;color:#fff}
.page-about .about-story-accent p{color:#d4ddd8}
.page-about .about-story-accent a{color:#f1ad83;text-decoration:none;border-bottom:1px solid currentColor}
.page-about .band-dark .step{padding-top:24px}

/* Contact */
.page-contact .contact-hero{min-height:430px;display:flex;align-items:center;padding:clamp(72px,8vw,112px) 0;background:linear-gradient(90deg,rgba(8,31,23,.94) 0%,rgba(8,31,23,.78) 48%,rgba(8,31,23,.28) 100%),url("images/hero-contact-foret.jpg") center 58%/cover no-repeat}
.page-contact .contact-hero h1{max-width:17ch}
.page-chantiers .page-hero{min-height:500px;display:flex;align-items:center;background:linear-gradient(90deg,rgba(8,31,23,.94) 0%,rgba(8,31,23,.76) 48%,rgba(8,31,23,.2) 100%),url("images/hero-nos-chantiers-skidder.jpg") center 55%/cover no-repeat}
.page-chantiers .page-hero .container,.page-contact .contact-hero .container{position:relative;z-index:1}
.page-contact .contact-main-section{background:linear-gradient(145deg,#f3eee4,#e6dcc8)}
.page-contact .contact-grid{gap:24px;align-items:stretch}
.page-contact .contact-panel,.page-contact .contact-card{height:100%}
.page-contact .contact-card{position:relative;overflow:hidden;border:0;border-radius:20px;padding:clamp(30px,4vw,48px);box-shadow:0 24px 65px rgba(14,42,32,.11)}
.page-contact .contact-details-card{background:#fffdf7}
.page-contact .contact-details-card::before,.page-contact .contact-start-card::before{content:"";position:absolute;inset:0 0 auto;height:6px;background:linear-gradient(90deg,var(--rust),#d69462)}
.page-contact .contact-start-card{background:#173b2d!important;color:#fff}
.page-contact .contact-start-card p,.page-contact .contact-start-card ul{color:#d6dfda!important}
.page-contact .contact-start-card .eyebrow{color:#efb58f}.page-contact .contact-start-card .eyebrow::before{background:#efb58f}
.page-contact .contact-start-card .btn-outline{color:#fff;border-color:rgba(255,255,255,.7)}
.page-contact .contact-line{padding:19px 0;align-items:flex-start}
.page-contact .contact-line a{font-family:var(--font-display);font-size:20px;text-decoration:none;color:#174b38}

@media(max-width:860px){
  .hero-contact-shortcut{position:static;margin:28px 28px 0 auto;display:flex;width:max-content}
  .page-about .about-story-grid{grid-template-columns:1fr}.page-about .about-story-main{grid-row:auto}
}
@media(max-width:560px){.hero-contact-shortcut{margin-right:20px;margin-left:20px;width:calc(100% - 40px);justify-content:center;text-align:center}}
@media(max-width:560px){.region-map,.radius-map{width:calc(100% + 24px);margin-left:-12px}.map-labels,.city-markers text{font-size:11px}.map-labels tspan:first-child{font-size:24px}.city-main text{font-size:19px}.radius-label{font-size:11px}}

/* accessibility */
:focus-visible{ outline:3px solid var(--rust); outline-offset:2px; }
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
}
