/* ============================================================
   DELORME ÉLAGAGE — Design fidèle au Wix
   Polices : Cormorant Garamond (titres serif italic)
             Caveat (chiffres stats manuscrit penché)
             Montserrat (corps, nav, boutons)
   Couleurs : #061b0f fond principal (vert très foncé)
              #103a27 fond sections alternées
              #9b5722 / #b6682c orange/ocre
              #fffdf2 blanc chaud
   ============================================================ */

:root {
  --g1: #061b0f;      /* vert principal très foncé */
  --g2: #0d2e18;      /* vert intermédiaire */
  --g3: #103a27;      /* vert stats + sections */
  --g4: #1a4a30;      /* vert hover léger */
  --org: #9b5722;     /* orange foncé */
  --org2: #b6682c;    /* orange moyen */
  --org3: #c97a3a;    /* orange clair hover */
  --card-bg: #7a4016; /* fond cards prestations */
  --w: #fffdf2;       /* blanc chaud */
  --w2: rgba(255,253,242,.75);
  --w3: rgba(255,253,242,.55);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--g1);
  color: var(--w);
  font-family: 'Montserrat', Arial, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 52px;
  background: #faf9f3;
  display: flex; align-items: center;
  padding: 0 48px;
  gap: 28px;
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}
.nav-brand {
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .04em; color: #1a1a0f;
  white-space: nowrap;
}
.nav-logo {
  height: 46px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
}
.nav-brand-icon { color: var(--org2); font-size: 16px; line-height: 1; }
.nav-links {
  margin-left: auto;
  display: flex; align-items: center; gap: 28px;
  font-size: 12px; color: #222;
}
.nav-links a { opacity: .82; transition: opacity .2s, color .2s; }
.nav-links a:hover { opacity: 1; color: var(--org2); }
.nav-links a.active { color: var(--org2); opacity: 1; }
.nav-tel {
  font-size: 12px; font-weight: 700;
  color: #1a1a0f; margin-left: 8px;
}
.nav-dropdown { position: relative; cursor: pointer; opacity: .82; }
.nav-dropdown:hover { opacity: 1; color: var(--org2); }
.nav-dropdown-menu {
  display: none; position: absolute;
  top: calc(100% + 8px); left: 0;
  background: #faf9f3;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 3px;
  min-width: 180px;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  padding: 4px 0;
}
/* dropdown géré par JS */
.nav-dropdown-menu a {
  display: block; padding: 8px 16px;
  font-size: 12px; color: #222; opacity: 1;
}
.nav-dropdown-menu a:hover { background: rgba(0,0,0,.04); color: var(--org2); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.hamburger span { display: block; width: 22px; height: 2px; background: #1a1a0f; border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none; flex-direction: column;
  position: fixed; top: 52px; left: 0; right: 0; z-index: 999;
  background: #faf9f3;
  padding: 12px 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
}
.mobile-nav a {
  display: block; padding: 10px 24px;
  font-size: 13px; color: #222; font-weight: 600;
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.mobile-nav a:hover { color: var(--org2); }
.mobile-nav .m-sub { padding-left: 36px; font-weight: 400; }
.mobile-nav .m-label {
  padding: 10px 24px 4px;
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--org2); font-weight: 700;
}

/* ── BOUTONS ── */
.btn-filled {
  display: inline-flex; align-items: center; justify-content: center;
  height: 56px; min-width: 200px; padding: 0 36px;
  background: var(--org2); color: var(--w);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 600; letter-spacing: .07em;
  border: none; cursor: pointer;
  transition: background .25s, transform .2s;
}
.btn-filled:hover { background: var(--org3); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  height: 56px; min-width: 180px; padding: 0 36px;
  background: rgba(255,255,255,.04);
  border: 1.5px solid rgba(255,255,255,.85);
  color: var(--w);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 600; letter-spacing: .07em;
  cursor: pointer;
  transition: background .25s, transform .2s;
}
.btn-outline:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn-sm {
  height: 44px; min-width: 140px; padding: 0 24px;
  font-size: 12px;
}

/* ── HERO ── */
.hero {
  height: 100vh; min-height: 700px; max-height: 1000px;
  position: relative;
  background: url('assets/hero.webp') center 30%/cover no-repeat;
  padding-top: 52px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(180,130,60,.04), rgba(0,0,0,.1) 40%, rgba(3,14,8,.5) 100%),
    linear-gradient(180deg, rgba(0,0,0,.04) 0%, rgba(2,10,6,.12) 50%, rgba(3,12,7,.92) 100%);
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6,18,10,.45) 0%, rgba(6,18,10,.04) 48%, rgba(6,18,10,.38) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  height: 100%; max-width: 1560px; margin: 0 auto; padding: 0 48px;
}
.hero h1 {
  position: absolute; left: 48px; top: 52px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-weight: 500;
  color: var(--w);
  font-size: clamp(64px, 7.5vw, 115px);
  line-height: .95;
  letter-spacing: -.04em;
  text-shadow: 0 2px 8px rgba(0,0,0,.25);
  max-width: 60%;
}
.hero-quote {
  position: absolute; left: 52px; top: clamp(260px, 28vw, 360px);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-weight: 400;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.2;
  letter-spacing: .01em;
  color: var(--w);
  text-shadow: 0 2px 8px rgba(0,0,0,.25);
  max-width: 38%;
}
.hero-copy {
  position: absolute; right: 48px; top: 60px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.45; color: var(--w);
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
  max-width: 300px; text-align: left;
}
.hero-actions {
  position: absolute; left: 48px; bottom: 52px;
  display: flex; gap: 24px; align-items: center;
}

/* ── STATS ── */
.stats {
  background: #1C3628;
  display: grid; grid-template-columns: repeat(4,1fr);
  padding: 0 8%;
}
.stat {
  padding: 24px 20px;
  text-align: center;
  border-right: none;
}
.stat-num {
  display: block;
  font-family: 'Caveat', cursive;
  font-weight: 400;
  color: #8a4e1e;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
  transform: rotate(0deg);
  margin-bottom: 10px;
}
.stat-label {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(8px, .75vw, 10px);
  letter-spacing: .25em;
  color: var(--w);
  white-space: nowrap;
}

/* ── EXPERTISE ── */
.expertise {
  background: var(--g1);
  padding: 90px 0;
}
.expertise-wrap {
  max-width: 900px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 340px 1fr;
  gap: 80px; align-items: center;
}
.expertise-photo {
  width: 340px; height: 500px;
  object-fit: cover; display: block;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 700;
  color: var(--org2);
  margin-bottom: 18px; display: block;
}
.expertise-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.15; color: var(--w);
  margin-bottom: 20px;
}
.expertise-text p {
  font-size: 16px; line-height: 1.6;
  color: var(--w2); margin-bottom: 12px;
  max-width: none;
}
.text-link {
  font-size: 15px; color: var(--w);
  text-decoration: underline; font-weight: 600;
  transition: color .2s;
}
.text-link:hover { color: var(--org2); }

/* ── POURQUOI NOUS CHOISIR ── */
.why {
  background: var(--g1);
  padding: 100px 48px 120px;
}
.why h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4.5vw, 56px);
  text-align: center; color: var(--w);
  margin-bottom: 80px;
}
.why-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 56px;
}
.why-card { text-align: center; }
.why-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: clamp(16px, 1.8vw, 22px);
  color: var(--org2); line-height: 1.3;
  margin-bottom: 40px;
}
.why-card p {
  font-size: 15px; line-height: 1.6;
  color: var(--w2); margin: 0 auto;
  max-width: 280px;
}

/* ── PRESTATIONS ── */
.prestations {
  background: var(--g1);
  padding: 20px 48px 90px;
}
.prestations h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: clamp(32px, 4vw, 50px);
  text-align: center; color: var(--w);
  margin-bottom: 52px;
}
.prest-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 60px;
}
.prest-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.prest-card-img {
  height: 260px; overflow: hidden;
}
.prest-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s ease;
}
.prest-card:hover .prest-card-img img { transform: scale(1.07); }
.prest-card-body {
  background: var(--card-bg);
  padding: 28px 22px 26px;
  min-height: 180px;
}
.prest-card-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-weight: 700;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.15; color: var(--w);
  margin-bottom: 14px;
}
.prest-card-body p {
  font-size: 14px; line-height: 1.6;
  font-style: italic; font-weight: 600;
  color: var(--w); max-width: none;
}

/* ── AVIS ── */
.reviews {
  background: var(--g1);
  padding: 72px 9% 96px;
  text-align: center;
}
.reviews h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500; color: var(--w);
  margin-bottom: 48px;
}
.reviews-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 72px; max-width: 1100px; margin: 0 auto;
}
blockquote { margin: 0; }
.review-quote-mark {
  font-size: 64px; line-height: .5;
  color: var(--w); display: block;
  margin-bottom: 12px;
  font-family: 'Cormorant Garamond', serif;
}
.review-text {
  font-size: 14px; line-height: 1.65; color: var(--w2);
  margin-bottom: 12px; max-width: none;
}
.review-author {
  font-style: normal; color: var(--org2);
  font-size: 13px; font-weight: 600;
}

/* ── ÉCO-RESPONSABLE ── */
.eco {
  background: #1C3628;
  padding: 56px 72px 56px 48px;
  display: flex; align-items: center;
  gap: 80px; min-height: 280px;
  position: relative; overflow: hidden;
}
.eco-illustration {
  width: 340px; flex-shrink: 0;
  object-fit: contain;
  align-self: center;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.2));
}
.eco-content { flex: 1; overflow: hidden; }
.eco-title {
  font-family: 'Caveat', cursive;
  font-weight: 400;
  color: #8a4e1e;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.1;
  margin-bottom: 20px;
  transform: rotate(0deg);
  display: inline-block;
}
.eco-text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(8px, .75vw, 10px);
  line-height: 1.35;
  letter-spacing: .18em;
  color: var(--w);
  max-width: none;
  text-transform: uppercase;
  word-spacing: .05em;
}

/* ── RÉCIT DE CHANTIER ── */
.recit {
  background: var(--g1);
  padding: 110px 48px 90px;
  position: relative; overflow: hidden;
}
.chainsaw {
  position: absolute; right: 80px; top: -260px;
  width: 280px; z-index: 2;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.4));
  pointer-events: none;
}
.recit-wrap {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 520px 1fr;
  gap: 72px; align-items: start;
}
.recit-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--org2); margin-bottom: 20px; display: block;
}
.recit h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-weight: 500;
  color: var(--w);
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.05; letter-spacing: -.03em;
  margin-bottom: 28px;
  white-space: nowrap;
}
.recit p {
  font-size: 16px; line-height: 1.55;
  color: var(--w2); margin-bottom: 18px;
  max-width: none;
}
.recit-photo {
  width: 100%; max-width: 380px;
  height: 300px; object-fit: cover;
  align-self: center;
}

/* ── FAQ ── */
.faq {
  background: var(--g1);
  padding: 72px 8% 100px;
}
.faq .eyebrow { font-size: 15px; margin-bottom: 18px; }
.faq h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-weight: 500;
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--w); margin-bottom: 56px;
}
.faq-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 56px;
}
.faq-item h3 {
  color: var(--org2); font-size: 15px;
  font-style: italic; font-weight: 500;
  margin-bottom: 18px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
}
.faq-item p { font-size: 13px; line-height: 1.65; color: var(--w2); max-width: none; }
.faq-item a.voir-plus {
  display: inline-block; margin-top: 10px;
  font-size: 12px; font-weight: 700;
  color: var(--w); text-decoration: underline;
}

/* ── CONTACT ── */
.contact {
  background: #141414;
  display: grid; grid-template-columns: 36% 1fr;
  gap: 80px; padding: 80px 12%;
}
.contact h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.3; color: var(--w);
  margin-bottom: 24px;
}
.contact-info p { font-size: 13px; line-height: 1.7; color: var(--w2); margin-bottom: 16px; max-width: none; }
.contact-info a { color: var(--w2); }
.contact-info a:hover { color: var(--org2); }
.contact-form {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
}
.contact-form label { font-size: 12px; color: var(--w); display: block; }
.contact-form input,
.contact-form textarea {
  display: block; width: 100%; margin-top: 4px;
  background: transparent; border: none;
  border-bottom: 1px solid rgba(255,253,242,.7);
  color: var(--w); outline: none;
  font: 14px 'Montserrat', sans-serif;
  padding: 6px 0; height: 36px;
}
.contact-form textarea { height: 80px; resize: vertical; }
.contact-form .full { grid-column: 1/3; }
.contact-form button {
  grid-column: 1/3; height: 36px;
  background: #f0ede4; color: #7a3e12;
  border: none; cursor: pointer;
  font: 600 12px 'Montserrat', sans-serif;
  letter-spacing: .04em;
  transition: background .2s;
}
.contact-form button:hover { background: #fff; }

/* ── FOOTER ── */
.footer {
  background: var(--w);
  height: 62px; display: flex; align-items: center;
  padding: 0 12%; gap: 28px; font-size: 12px; color: #1a1a0f;
}
.footer a { color: #555; }
.footer a:hover { color: var(--org2); }
.footer-socials { margin-left: auto; display: flex; gap: 14px; }

/* ── STICKY CTA MOBILE ── */
.sticky-cta {
  display: none; position: fixed;
  bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--org2); padding: 14px 24px;
  justify-content: center;
}
.sticky-cta a { color: var(--w); font-weight: 700; font-size: 15px; }

/* ── PAGE HERO (pages intérieures) ── */
.page-hero {
  height: 100vh; min-height: 700px; max-height: 1000px;
  position: relative;
  background-size: cover; background-position: center 30%;
  padding-top: 52px;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,27,15,.3) 0%, rgba(6,27,15,.65) 60%, rgba(6,27,15,.92) 100%);
}
.page-hero-inner {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  padding: 0 48px 72px;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-weight: 500;
  color: var(--w);
  font-size: clamp(52px, 6vw, 96px);
  line-height: 1.0; letter-spacing: -.04em;
  margin-bottom: 16px;
}
.page-hero .hero-quote {
  position: static;
  font-size: clamp(22px, 2.8vw, 38px);
  max-width: 100%;
  margin-bottom: 28px;
}
.page-hero .hero-copy {
  position: static; right: auto; top: auto;
  max-width: 480px;
  font-size: clamp(15px, 1.6vw, 20px);
  margin-bottom: 28px;
}
.page-hero-actions { display: flex; gap: 24px; flex-wrap: wrap; }

/* ── SECTION STANDARD ── */
.section { padding: 80px 48px; }
.section-dark { background: var(--g1); }
.section-mid { background: #1C3628; }
.container { max-width: 1100px; margin: 0 auto; }
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.col-img { overflow: hidden; }
.col-img img { width: 100%; height: 420px; object-fit: cover; }
.col-text .eyebrow { margin-bottom: 16px; }
.col-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800; font-size: clamp(26px, 3.2vw, 44px);
  color: var(--w); line-height: 1.2; margin-bottom: 20px;
}
.col-text p { font-size: 15px; line-height: 1.65; color: var(--w2); margin-bottom: 14px; max-width: none; }
.col-text ul { margin: 8px 0 16px; }
.col-text ul li {
  font-size: 15px; color: var(--w2); padding: 4px 0;
  padding-left: 16px; position: relative;
}
.col-text ul li::before { content: '—'; color: var(--org2); position: absolute; left: 0; }
.italic-end {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: 18px;
  color: var(--w2); margin-top: 8px;
}
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-weight: 500;
  font-size: clamp(36px, 4.5vw, 64px);
  color: var(--w); line-height: 1.05;
  letter-spacing: -.03em; margin-bottom: 28px;
}
.section-eyebrow { color: var(--org2); font-size: 14px; font-weight: 700; margin-bottom: 12px; display: block; }

/* galerie 3 col */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 12px; max-width: 1100px; margin: 0 auto;
}
.gallery-grid img { width: 100%; height: 220px; object-fit: cover; }

/* tarifs bloc */
.tarifs-block {
  background: #1C3628; border-radius: 2px;
  padding: 32px 36px; margin-top: 32px;
}
.tarifs-block .section-eyebrow { margin-bottom: 8px; }
.tarifs-block h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: 36px; color: var(--w); margin-bottom: 16px;
}
.tarifs-block p { font-size: 14px; color: var(--w2); max-width: none; line-height: 1.65; margin-bottom: 12px; }

/* zone bloc */
.zone-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.zone-tag {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 2px; padding: 5px 12px;
  font-size: 12px; color: var(--w2);
}

/* recit chantier bloc (pages intérieures) */
.recit-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: start;
  max-width: 1100px; margin: 0 auto;
}
.recit-inner .section-title { font-size: clamp(32px, 4vw, 52px); }
.recit-inner p { font-size: 15px; color: var(--w2); line-height: 1.65; margin-bottom: 12px; max-width: none; }
.recit-tag {
  display: inline-block; padding: 3px 10px;
  font-size: 11px; font-weight: 700;
  border-radius: 2px; margin-bottom: 8px;
}
.recit-tag.probleme { background: var(--org2); color: var(--w); }
.recit-tag.action    { background: #2a6040; color: var(--w); }
.recit-tag.nettoyage { background: #1a4a30; color: var(--w); }
.recit-tag.resultat  { background: #3a7050; color: var(--w); }
.recit-inner-photo { width: 100%; height: 340px; object-fit: cover; }

/* qui sommes nous */
.qs-hero {
  background: var(--g1);
  padding: 120px 48px 80px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; max-width: 1200px; margin: 0 auto;
  align-items: center;
}
.qs-hero img { width: 100%; height: 420px; object-fit: cover; }
.qs-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-weight: 500;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.15; color: var(--w);
  margin-bottom: 20px;
}
.qs-hero p { font-size: 15px; color: var(--w2); line-height: 1.7; max-width: none; margin-bottom: 12px; }

/* materiel section */
.materiel-section {
  background: var(--g1); padding: 60px 48px;
  position: relative; overflow: hidden;
}
.materiel-chainsaw {
  position: absolute; right: 0; top: -40px;
  width: 55%; max-width: 700px;
  object-fit: contain;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,.5));
}
.materiel-text {
  max-width: 520px; position: relative; z-index: 2;
}
.materiel-text .eyebrow { margin-bottom: 12px; }
.materiel-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-weight: 500;
  font-size: clamp(40px, 5vw, 72px);
  color: var(--w); line-height: 1.05; margin-bottom: 24px;
}
.materiel-text p { font-size: 15px; color: var(--w2); line-height: 1.65; max-width: none; margin-bottom: 14px; }
.nous-sommes {
  background: #1C3628; padding: 32px 48px;
  text-align: center;
}
.nous-sommes .eyebrow { font-family: 'Caveat', cursive; font-size: 28px; font-weight: 400; transform: rotate(-2deg); display: inline-block; margin-bottom: 12px; letter-spacing: 0; }
.nous-sommes p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 16px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--w); max-width: 900px; margin: 0 auto; line-height: 1.7;
}

/* ── RESPONSIVE ── */
@media(max-width:1100px) {
  .nav-links, .nav-tel { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: clamp(48px,8vw,80px); }
  .hero-copy { display: none; }
  .hero-quote { font-size: clamp(24px,4.5vw,38px); top: clamp(130px,18vw,200px); }
  .hero-actions { gap: 20px; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .stat:nth-child(2) { border-right: none; }
  .expertise-wrap { grid-template-columns: 1fr; max-width: 600px; }
  .expertise-photo { width: 100%; height: 380px; }
  .why-grid, .prest-grid, .reviews-grid, .faq-grid { grid-template-columns: 1fr; gap: 36px; }
  .why { padding: 70px 24px; }
  .why h2 { margin-bottom: 48px; }
  .prestations, .recit { padding: 70px 24px; }
  .chainsaw { display: none; }
  .recit-wrap { grid-template-columns: 1fr; }
  .recit h2 { white-space: normal; font-size: clamp(36px,6vw,56px); }
  .eco { flex-direction: column; padding: 32px 24px; }
  .eco-illustration { width: 100%; max-width: 360px; align-self: center; margin-bottom: 0; }
  .contact { grid-template-columns: 1fr; padding: 60px 24px; }
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
  .qs-hero { grid-template-columns: 1fr; padding: 90px 24px 60px; }
  .materiel-chainsaw { display: none; }
  .recit-inner { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: clamp(40px,7vw,70px); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 24px; }
}
@media(max-width:640px) {
  .hero { min-height: 650px; }
  .page-hero { min-height: 650px; height: 100vh; }
  .hero h1 { left: 24px; font-size: 44px; }
  .hero-quote { left: 26px; font-size: 26px; }
  .hero-actions { left: 24px; bottom: 72px; flex-direction: column; gap: 14px; }
  .btn-filled, .btn-outline { min-width: 170px; height: 52px; font-size: 13px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .full, .contact-form button { grid-column: 1; }
  .gallery-grid { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 58px; }
}


/* ── READ MORE ── */
.readmore-block { margin: 4px 0 16px; }
.readmore-text {
  font-size: 14px; line-height: 1.7;
  color: rgba(255,253,242,.75);
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all .4s ease;
}
.readmore-text.expanded {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}
.readmore-btn {
  background: none; border: none;
  color: #fffdf2; font-size: 13px; font-weight: 700;
  cursor: pointer; padding: 10px 0 0;
  text-decoration: underline;
  font-family: 'Montserrat', sans-serif;
  transition: color .2s;
}
.readmore-btn:hover { color: #b6682c; }

/* ── ICÔNES WHY ── */
.why-icon {
  width: 72px; height: 72px;
  margin: 0 auto 28px;
  background: rgba(138,78,30,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 14px;
  border: 1px solid rgba(138,78,30,.25);
  overflow: visible;
}
.why-icon svg {
  width: 44px; height: 44px;
  display: block;
  overflow: visible;
}

/* ── HOVER OVERLAY PRESTATIONS ── */
.prest-card-img { position: relative; }
.prest-overlay {
  position: absolute; inset: 0;
  background: rgba(6,27,15,.88);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity .35s ease;
}
.prest-overlay p {
  font-size: 13px; line-height: 1.7;
  color: #fffdf2; text-align: center;
  font-style: italic; max-width: none;
}
.prest-card:hover .prest-overlay { opacity: 1; }

/* ── FAQ ACCORDÉON ── */
.faq-acc { max-width: 860px; margin: 0 auto; }
.faq-acc-item {
  border-bottom: 1px solid rgba(255,253,242,.15);
}
.faq-acc-item:first-child { border-top: 1px solid rgba(255,253,242,.15); }
.faq-acc-btn {
  width: 100%; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: clamp(18px, 2vw, 22px);
  color: #fffdf2; cursor: pointer; text-align: left; gap: 16px;
  transition: color .2s;
}
.faq-acc-btn:hover { color: #8a4e1e; }
.faq-acc-icon {
  font-size: 24px; font-weight: 300;
  color: #8a4e1e; flex-shrink: 0;
  transition: transform .3s; line-height: 1;
  font-style: normal; font-family: 'Montserrat', sans-serif;
}
.faq-acc-item.open .faq-acc-icon { transform: rotate(45deg); }
.faq-acc-body {
  max-height: 0; overflow: hidden;
  font-size: 14px; line-height: 1.75;
  color: rgba(255,253,242,.72);
  transition: max-height .4s ease, padding .4s ease;
  padding: 0;
}
.faq-acc-item.open .faq-acc-body {
  max-height: 300px;
  padding-bottom: 20px;
}


/* ── Ajustements V31 : responsive, performance perçue et CTA ── */
.nav-logo { max-height: 46px; }
.nav-brand { min-width: 118px; }
.nav-dropdown > span { user-select: none; }
.page-hero, .hero { min-height: 100svh; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--org2) !important; }
.btn-filled:focus-visible, .btn-outline:focus-visible, .nav a:focus-visible, .hamburger:focus-visible, .contact-form button:focus-visible { outline: 2px solid var(--org2); outline-offset: 3px; }
@media(max-width:1100px) {
  .nav { padding: 0 24px; }
  .nav-logo { height: 44px; max-width: 132px; }
  .page-hero-inner { padding: 0 28px 72px; }
  .page-hero .hero-copy { max-width: 560px; font-size: 15px; }
}
@media(max-width:640px) {
  .nav { padding: 0 16px; }
  .nav-logo { height: 40px; max-width: 118px; }
  .hero, .page-hero { height: 100svh; min-height: 620px; max-height: none; }
  .page-hero { background-position: center center; }
  .page-hero-inner { padding: 0 22px 86px; }
  .page-hero h1 { font-size: clamp(36px, 12vw, 52px); line-height: .96; margin-bottom: 12px; }
  .page-hero .hero-quote { font-size: 24px; margin-bottom: 16px; }
  .page-hero .hero-copy { font-size: 14px; line-height: 1.55; max-width: 100%; margin-bottom: 18px; }
  .page-hero-actions { gap: 12px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 18px 10px; }
  .col-img img, .recit-inner-photo, .qs-hero img { height: 340px !important; }
  .materiel-section { padding: 48px 22px; }
}


/* Maillage interne V36 : liens contextuels discrets */
.content-link {
  color: var(--org2);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.content-link:hover { color: var(--org3); }


/* V37 : vrais contenus accordéons pour les boutons Voir plus */
.readmore-extra {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .45s ease, opacity .35s ease, margin-top .35s ease;
}
.readmore-extra.expanded {
  max-height: 620px;
  opacity: 1;
  margin-top: 10px;
}
.readmore-extra p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--w2);
  margin-bottom: 14px;
}
button.text-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: var(--org2);
  text-decoration: underline;
  text-underline-offset: 3px;
}
button.text-link:hover { color: var(--org3); }


/* V39 : footer coordonnées + second point de contact */
.footer {
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nap {
  width: 100%;
  text-align: center;
  color: rgba(255,253,242,.72);
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 8px;
}
.footer-nap strong {
  color: var(--w);
  font-size: 14px;
}
.footer-nap a {
  color: var(--org2);
  text-decoration: none;
}
.footer-nap a:hover {
  color: var(--org3);
}
.nav-tel {
  white-space: nowrap;
}
@media(max-width:640px) {
  .footer-nap {
    font-size: 12px;
    padding: 0 14px;
  }
  .sticky-cta a {
    font-size: 12px;
    padding: 0 10px;
  }
}


/* V41 : correction hero accueil mobile — évite le chevauchement H1 / sous-titre */
@media(max-width:640px) {
  .hero h1 {
    top: 76px;
    left: 22px;
    right: 22px;
    max-width: calc(100% - 44px);
    font-size: clamp(38px, 11vw, 48px);
    line-height: .94;
  }

  .hero-quote {
    top: 260px;
    left: 24px;
    right: 24px;
    max-width: calc(100% - 48px);
    font-size: clamp(23px, 7vw, 30px);
    line-height: 1.16;
  }

  .hero-actions {
    bottom: 86px;
  }
}

@media(max-width:380px) {
  .hero h1 {
    font-size: clamp(34px, 10.5vw, 42px);
  }

  .hero-quote {
    top: 250px;
    font-size: 22px;
  }
}

/* V42 : correction footer — supprime la barre blanche qui cachait le texte */
.footer {
  background: var(--g1);
  height: auto;
  min-height: 0;
  padding: 28px 12% 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
  color: rgba(255,253,242,.72);
  border-top: 1px solid rgba(255,253,242,.08);
}
.footer-nap {
  width: 100%;
  margin: 0 0 8px;
  text-align: center;
  color: rgba(255,253,242,.78);
}
.footer > a {
  color: rgba(255,253,242,.72);
}
.footer > a:hover {
  color: var(--org2);
}
.footer-socials {
  margin-left: auto;
  color: rgba(255,253,242,.55);
}
@media(max-width:640px) {
  .footer {
    padding: 26px 18px 84px;
    justify-content: center;
    text-align: center;
  }
  .footer-socials {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }
}
