/* ============================================================
   EASY-VERT — Landing styles
   Alternance : blanc / vert logo / gris clair
   ============================================================ */

:root {
  --c-primary: #7E9936;
  --c-primary-dark: #3E4F1B;
  --c-accent: #EDF2DE;
  --c-text: #363636;
  --c-text-muted: #5A5A5A;
  --c-white: #ffffff;
  --c-gray: #F2F1EC;
  --c-border: #E0DDD2;
  --c-green: #3E4F1B; /* vert du logo */

  --r-btn: 10px;
  --r-card: 0px;

  --shadow-card: 0 4px 24px rgba(54,54,54,.06);
  --shadow-card-hover: 0 18px 48px rgba(54,54,54,.12);

  --container: 1280px;
  --pad-x: clamp(20px, 4vw, 48px);
  --space-section: clamp(80px, 10vw, 128px);

  --ff-serif: "Fraunces", "Times New Roman", serif;
  --ff-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  letter-spacing: 0.005em;
}
p { font-weight: 300; }
body.menu-open { overflow: hidden; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 3px;
  border-radius: 4px;
}
::selection { background: var(--c-primary); color: #fff; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--c-green); color: #fff; padding: 12px 18px; z-index: 9999; }
.skip-link:focus { left: 16px; top: 16px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* ---------- Typo ---------- */
h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0;
  color: var(--c-text);
}
h1 { font-size: clamp(44px, 6.8vw, 76px); letter-spacing: -0.03em; }
h2 { font-size: clamp(30px, 4.4vw, 48px); letter-spacing: -0.025em; line-height: 1.1; }
h3 { font-size: clamp(20px, 2vw, 24px); }
h4 { font-size: clamp(17px, 1.4vw, 19px); }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
.h2--light { color: #fff; }

/* ---------- Sections ---------- */
.section { padding: var(--space-section) 0; position: relative; }
.section--white { background: var(--c-white); color: var(--c-text); }
.section--gray { background: var(--c-gray); color: var(--c-text); }
.section--green { background: var(--c-green); color: #fff; }
.section--green p, .section--green li { color: rgba(255,255,255,.9); }

.section__head { max-width: 820px; margin-bottom: clamp(36px, 5vw, 60px); }
#pourquoi { padding: clamp(56px, 7vw, 84px) 0; }
#pourquoi .section__head { margin-bottom: clamp(28px, 3.5vw, 44px); }
#pourquoi .section__cta-row { margin-top: clamp(28px, 3vw, 40px); }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__lead {
  margin-top: 20px;
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--c-text-muted);
  line-height: 1.6;
}
.section--green .section__lead { color: rgba(255,255,255,.82); }

.section__cta-row { margin-top: clamp(36px, 5vw, 56px); text-align: center; }
.section__cta-row--inline {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.section__cta-row--light .btn-ghost--light { color: #fff; }
@media (max-width: 600px) {
  .section__cta-row--inline { flex-direction: column; align-items: stretch; }
  .section__cta-row--inline .btn { width: 100%; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 16px;
  border-radius: var(--r-btn);
  transition: transform .25s cubic-bezier(.2,.7,.2,1), background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
  white-space: nowrap;
  line-height: 1;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Universal leaf rising from bottom on hover */
.btn::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -70px;
  width: 90px;
  height: 90px;
  background: url("leaf.svg") center/contain no-repeat;
  transform: translateX(-50%) rotate(18deg);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: bottom .55s cubic-bezier(.2,.7,.2,1), opacity .4s ease, transform .55s cubic-bezier(.2,.7,.2,1);
}
.btn:hover::after {
  bottom: -28px;
  opacity: .28;
  transform: translateX(-50%) rotate(-6deg);
}
.btn > * { position: relative; z-index: 1; }
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 20px 36px; font-size: 17px; }
.btn-primary {
  background: var(--c-green);
  color: #fff;
  box-shadow: 0 10px 24px rgba(62,79,27,.22);
}
.btn-primary::after { filter: brightness(0) invert(1); opacity: 0; }
.btn-primary:hover::after { opacity: .55; }
.btn-primary:hover {
  background: var(--c-primary);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(62,79,27,.32);
}
.btn-primary--inverse {
  background: #fff;
  color: var(--c-green);
  padding: 16px 28px;
  border-radius: var(--r-btn);
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(0,0,0,.14);
  transition: transform .25s ease, background .25s ease, color .25s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary--inverse:hover { background: var(--c-primary); color: #fff; transform: translateY(-2px); }
.btn-primary--inverse:hover::after { filter: brightness(0) invert(1); }
.btn-secondary {
  background: transparent;
  color: var(--c-text);
  border: 1.5px solid var(--c-text);
}
.btn-secondary:hover { background: var(--c-text); color: #fff; transform: translateY(-2px); }
.btn-ghost {
  color: var(--c-green);
  font-weight: 600;
  padding: 12px 0;
  position: relative;
  border-radius: 0;
}
.btn-ghost::after {
  content: "";
  position: absolute;
  left: 0; bottom: 6px;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform-origin: left;
  transform: scaleX(.4);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.btn-ghost:hover::after { transform: scaleX(1); }
.btn-ghost--light { color: #fff; }

/* ============================================================
   HEADER — Logo grand + glassmorphisme gris au scroll
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease, border-color .3s ease;
  padding: 10px 0;
}
.site-header[data-state="transparent"] { background: transparent; }
.site-header[data-state="transparent"] .header__nav a { color: rgba(255,255,255,.94); }
.site-header[data-state="transparent"] .header__logo img { filter: brightness(0) invert(1); }
.site-header[data-state="transparent"] .burger span { background: #fff; }

.site-header[data-state="solid"] {
  background: rgba(54, 54, 54, .42);
  backdrop-filter: saturate(150%) blur(24px);
  -webkit-backdrop-filter: saturate(150%) blur(24px);
  border-bottom: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 36px rgba(0,0,0,.18);
  padding: 6px 0;
}
.site-header[data-state="solid"] .header__nav a { color: #fff; }
.site-header[data-state="solid"] .header__logo img { filter: brightness(0) invert(1); }
.site-header[data-state="solid"] .burger span { background: #fff; }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header__logo { display: inline-flex; align-items: center; }
.header__logo img {
  height: 64px;
  width: auto;
  transition: filter .3s ease, height .3s ease;
}
.site-header[data-state="solid"] .header__logo img { height: 48px; }

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  margin-right: 24px;
}
.header__nav a {
  font-weight: 500;
  font-size: 15px;
  color: var(--c-text);
  position: relative;
  padding: 8px 0;
  transition: color .2s ease;
}
.header__nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s cubic-bezier(.2,.7,.2,1);
}
.header__nav a:hover::after { transform: scaleX(1); }
.header__cta { padding: 12px 22px; font-size: 15px; }

.burger {
  display: none;
  width: 44px; height: 44px;
  position: relative;
}
.burger span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, top .3s ease;
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 28px; }
body.menu-open .burger span { background: #fff; }
body.menu-open .burger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- Drawer ---------- */
.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(92%, 360px);
  background: rgba(54, 54, 54, .65);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border-left: 1px solid rgba(255,255,255,.18);
  color: #fff;
  z-index: 90;
  padding: 110px 32px 32px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
  display: flex;
  flex-direction: column;
}
.drawer__inner { display: flex; flex-direction: column; gap: 24px; height: 100%; }
.drawer nav { display: flex; flex-direction: column; gap: 6px; }
.drawer nav a {
  font-family: var(--ff-serif);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  color: #fff;
}
.drawer__cta { align-self: flex-start; margin-top: 8px; }
.drawer__contact { margin-top: auto; font-size: 15px; }
.drawer__contact a { color: rgba(255,255,255,.95); display: inline-flex; align-items: center; gap: 10px; }
body.menu-open .drawer { transform: translateX(0); }
.drawer__backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 85;
  opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
body.menu-open .drawer__backdrop { opacity: 1; pointer-events: auto; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding-top: 200px;
  padding-bottom: 80px;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,28,28,.62) 0%, rgba(28,28,28,.48) 40%, rgba(12,12,12,.82) 100%);
  z-index: 1;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
}
.hero__title {
  color: #fff;
  font-weight: 500;
  font-size: clamp(44px, 7.8vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.hero__lead {
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
  color: rgba(255,255,255,.92);
  max-width: 640px;
  margin-bottom: 36px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  width: 28px; height: 48px;
  border: 1.5px solid rgba(255,255,255,.6);
  border-radius: 14px;
  z-index: 2;
}
.hero__scroll span {
  position: absolute;
  left: 50%; top: 8px;
  width: 4px; height: 8px;
  background: #fff;
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0% { transform: translate(-50%, 0); opacity: 1; }
  60% { transform: translate(-50%, 16px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}

/* ============================================================
   AUDIENCE
   ============================================================ */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.audience {
  background: var(--c-gray);
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  padding: 40px 32px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.audience:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--c-primary);
}
.audience__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 0;
  background: var(--c-green);
  color: #fff;
  margin-bottom: 24px;
}
.audience h3 { margin-bottom: 10px; font-size: clamp(20px, 2vw, 24px); }
.audience p { color: var(--c-text-muted); font-size: 16px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.card-service {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  background: var(--c-green);
  aspect-ratio: 3 / 4.4;
  transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease;
  box-shadow: var(--shadow-card);
  color: #fff;
  display: flex;
}
.card-service__media {
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
.card-service::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.92) 100%);
  pointer-events: none;
  transition: background .6s ease;
}
.card-service:hover::after {
  background: linear-gradient(180deg, rgba(0,0,0,.32) 0%, rgba(0,0,0,.66) 55%, rgba(0,0,0,.95) 100%);
}
.card-service { transition: transform .7s cubic-bezier(.2,.7,.2,1), box-shadow .55s ease; }
.card-service:hover { transform: translateY(-4px); }
.card-service__media { transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.card-service:hover .card-service__media { transform: scale(1.04); }
.card-service__body {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 32px 28px 28px;
  color: #fff;
  width: 100%;
}
.card-service__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 999px;
  margin-bottom: 18px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.card-service h3 { color: #fff; margin-bottom: 16px; font-size: clamp(22px, 2vw, 26px); }
.card-service ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14.5px;
  color: rgba(255,255,255,.9);
  margin-bottom: 24px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .5s ease, opacity .35s ease, margin-bottom .5s ease;
}
.card-service ul li {
  position: relative;
  padding-left: 18px;
}
.card-service ul li::before {
  content: "";
  position: absolute;
  left: 0; top: .65em;
  width: 8px; height: 1.5px;
  background: var(--c-primary);
}
.card-service:hover .card-service__media { transform: scale(1.06); }
.card-service:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(54,54,54,.18);
}
.card-service:hover ul { max-height: 320px; opacity: 1; }
.card-service__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--c-green);
  padding: 13px 22px;
  border-radius: var(--r-btn);
  font-weight: 600;
  font-size: 14.5px;
  transition: background .55s ease, color .55s ease, gap .5s cubic-bezier(.2,.7,.2,1), box-shadow .55s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 4px 14px rgba(0,0,0,.14);
}
/* Leaf rise on card-service CTA */
.card-service__cta::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -70px;
  width: 90px; height: 90px;
  background: url("leaf.svg") center/contain no-repeat;
  transform: translateX(-50%) rotate(18deg);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: bottom .55s cubic-bezier(.2,.7,.2,1), opacity .4s ease, transform .55s cubic-bezier(.2,.7,.2,1);
}
.card-service:hover .card-service__cta::after,
.card-service__cta:hover::after {
  bottom: -28px;
  opacity: .35;
  transform: translateX(-50%) rotate(-6deg);
  filter: brightness(0) invert(1);
}
.card-service__cta svg { transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.card-service:hover .card-service__cta,
.card-service__cta:hover {
  background: var(--c-primary);
  color: #fff;
  gap: 12px;
  box-shadow: 0 8px 22px rgba(126,153,54,.3);
}
.card-service:hover .card-service__cta svg,
.card-service__cta:hover svg {
  transform: translate(2px, -2px);
}

/* ============================================================
   POURQUOI — Accordéon horizontal
   Rest: toutes égales, titre horizontal.
   Hover one: expand + center content. Mouseleave: auto-collapse.
   ============================================================ */
.features-accordion {
  display: flex;
  gap: 6px;
  /* Hauteur fluide pour tenir dans la viewport avec le head + CTA */
  height: clamp(320px, 46vh, 420px);
  width: 100%;
}
.feature-ac {
  position: relative;
  overflow: hidden;
  flex: 1 1 0;
  min-width: 110px;
  cursor: pointer;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,.12);
  transition: flex .7s cubic-bezier(.25,.8,.25,1), border-color .4s ease;
}
/* Hover a card: that card grows */
.features-accordion:hover .feature-ac:hover {
  flex: 5 1 0;
  border-color: rgba(255,255,255,.3);
}
/* Other cards while accordion is hovered: stay compressed */
.features-accordion:hover .feature-ac:not(:hover) {
  flex: 1 1 0;
}
.feature-ac__bg {
  position: absolute; inset: 0;
  background-image: var(--feature-bg);
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: saturate(.85) brightness(.78);
  transform: scale(1.04);
  transition: transform 1s cubic-bezier(.2,.7,.2,1), filter .55s ease;
}
.feature-ac.is-active .feature-ac__bg {
  transform: scale(1.08);
  filter: saturate(1) brightness(.92);
}
.feature-ac__veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,14,4,.48) 0%, rgba(10,14,4,.72) 60%, rgba(10,14,4,.92) 100%);
  transition: background .5s ease;
}
.feature-ac.is-active .feature-ac__veil {
  background: linear-gradient(180deg, rgba(10,14,4,.22) 0%, rgba(10,14,4,.55) 60%, rgba(10,14,4,.94) 100%);
}
.feature-ac__tab {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #fff;
}

/* Top zone: index + chevron */
/* Index small tag top-left */
.feature-ac__index {
  position: absolute;
  top: 22px;
  left: 24px;
  font-family: var(--ff-serif);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.7);
  z-index: 4;
  transition: color .3s ease;
}
.features-accordion:hover .feature-ac:hover .feature-ac__index { color: rgba(255,255,255,.92); }

/* Chevron only appears on active/hovered card */
.feature-ac__chev {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  color: #fff;
  opacity: 0;
  z-index: 4;
  transition: opacity .35s ease, transform .5s cubic-bezier(.2,.7,.2,1);
}
.features-accordion:hover .feature-ac:hover .feature-ac__chev {
  opacity: .85;
  transform: rotate(-180deg);
}

/* Inner stack — fills the card; default = anchored bottom-left; hovered = centered */
.feature-ac__inner {
  position: absolute;
  inset: 0;
  padding: 28px 24px 32px;
  z-index: 3;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 14px;
  color: #fff;
  text-align: left;
  transition: justify-content .5s ease, align-items .5s ease, padding .5s ease;
}
/* Hovered card: center vertically, keep left alignment for icon/title/body */
.features-accordion:hover .feature-ac:hover .feature-ac__inner {
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 36px 32px;
  gap: 16px;
}

/* Icon */
.feature-ac__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: flex-start;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  transition: opacity .35s ease, transform .55s cubic-bezier(.2,.7,.2,1), background .35s ease, width .35s ease, height .35s ease;
}
.features-accordion:hover .feature-ac:hover .feature-ac__icon {
  background: rgba(255,255,255,.22);
  width: 48px; height: 48px;
}

/* Title — always horizontal, just changes size and clamping */
.feature-ac__title {
  margin: 0;
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  transition: font-size .35s ease;
}
.features-accordion:hover .feature-ac:hover .feature-ac__title {
  font-size: clamp(22px, 1.9vw, 28px);
  -webkit-line-clamp: 3;
  max-width: 480px;
}

/* Body — hidden at rest, revealed only on hovered/active card */
.feature-ac__body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: max-height .55s cubic-bezier(.2,.7,.2,1), opacity .4s ease;
}
.feature-ac__body p {
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.6;
  margin: 0;
  color: rgba(255,255,255,.94);
  text-shadow: 0 1px 10px rgba(0,0,0,.45);
}
.features-accordion:hover .feature-ac:hover .feature-ac__body {
  max-height: 180px;
  opacity: 1;
  max-width: 460px;
}
.features-accordion:hover .feature-ac:hover .feature-ac__body p { font-size: 14.5px; line-height: 1.55; }

/* Non-hovered cards when accordion is hovered: hide icon, shrink title gently */
.features-accordion:hover .feature-ac:not(:hover) .feature-ac__icon {
  opacity: 0;
  transform: translateY(14px) scale(.94);
}
.features-accordion:hover .feature-ac:not(:hover) .feature-ac__title {
  font-size: 14px;
  -webkit-line-clamp: 4;
  color: rgba(255,255,255,.85);
}

/* ---- Mobile / tablet : pile verticale + is-active ---- */
@media (max-width: 900px) {
  .features-accordion {
    flex-direction: column;
    height: auto;
    gap: 6px;
  }
  .feature-ac {
    flex: 0 0 88px;
    width: 100%;
    min-width: 0;
    min-height: 88px;
    transition: flex-basis .6s cubic-bezier(.25,.8,.25,1), min-height .6s cubic-bezier(.25,.8,.25,1), border-color .4s ease;
  }
  .feature-ac.is-active {
    flex: 0 0 auto;
    min-height: 320px;
    border-color: rgba(255,255,255,.3);
  }
  /* Neutralise les effets de :hover sur mobile (touch device) */
  .features-accordion:hover .feature-ac:hover { flex: 0 0 88px; }
  .features-accordion:hover .feature-ac.is-active { flex: 0 0 auto; min-height: 320px; }
  .features-accordion:hover .feature-ac:not(.is-active) { flex: 0 0 88px; }

  /* Hide index on mobile to avoid overlap with icon */
  .feature-ac__index { display: none; }

  /* Chevron : centré à droite par défaut, en haut quand actif */
  .feature-ac__chev {
    top: 50%;
    bottom: auto;
    right: 20px;
    transform: translateY(-50%);
    opacity: .65;
  }
  .feature-ac.is-active .feature-ac__chev {
    top: 22px;
    bottom: auto;
    transform: rotate(-180deg);
    opacity: .9;
  }

  /* Inner : row par défaut, column quand actif. Force override sur le hover desktop */
  .feature-ac__inner,
  .features-accordion:hover .feature-ac:hover .feature-ac__inner {
    inset: 0;
    padding: 18px 60px 18px 22px;
    gap: 14px;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
  }
  .feature-ac.is-active .feature-ac__inner,
  .features-accordion:hover .feature-ac.is-active .feature-ac__inner,
  .features-accordion:hover .feature-ac.is-active:hover .feature-ac__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 28px 22px 26px;
    gap: 14px;
  }

  /* Icon — toujours visible, dimensionné à 40px (collapsed) / 46px (active) */
  .feature-ac__icon,
  .features-accordion:hover .feature-ac:hover .feature-ac__icon {
    width: 40px;
    height: 40px;
    opacity: 1;
    transform: none;
    background: rgba(255,255,255,.16);
  }
  .feature-ac.is-active .feature-ac__icon,
  .features-accordion:hover .feature-ac.is-active .feature-ac__icon {
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,.22);
  }
  .features-accordion:hover .feature-ac:not(.is-active) .feature-ac__icon {
    opacity: 1;
    transform: none;
  }

  /* Title — clampé à 2 lignes collapsed, complet quand actif */
  .feature-ac__title,
  .features-accordion:hover .feature-ac:hover .feature-ac__title {
    flex: 1;
    font-size: 16px;
    line-height: 1.3;
    color: #fff;
    max-width: none;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .feature-ac.is-active .feature-ac__title,
  .features-accordion:hover .feature-ac.is-active .feature-ac__title {
    flex: none;
    font-size: 22px;
    -webkit-line-clamp: unset;
    display: block;
    overflow: visible;
  }
  .features-accordion:hover .feature-ac:not(.is-active) .feature-ac__title {
    color: #fff;
    font-size: 16px;
  }

  /* Body — caché collapsed, visible quand actif (un seul tap) */
  .feature-ac__body,
  .features-accordion:hover .feature-ac:hover .feature-ac__body {
    flex-basis: 100%;
    max-height: 0;
    opacity: 0;
    max-width: 100%;
  }
  .feature-ac.is-active .feature-ac__body,
  .features-accordion:hover .feature-ac.is-active .feature-ac__body {
    max-height: 280px;
    opacity: 1;
    max-width: 100%;
  }
  .feature-ac.is-active .feature-ac__body p,
  .features-accordion:hover .feature-ac.is-active .feature-ac__body p {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* ============================================================
   POURQUOI — Cartes carrousel (zoom + assombrissement + body au hover)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.feature-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4.4;
  cursor: pointer;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .55s ease, border-color .4s ease;
}
.feature-card:hover, .feature-card.is-active {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,.32);
  box-shadow: 0 30px 64px rgba(0,0,0,.36);
}
.feature-card__bg {
  position: absolute;
  inset: 0;
  background-image: var(--feature-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  filter: brightness(.78) saturate(.92);
  transition: transform .9s cubic-bezier(.2,.7,.2,1), filter .55s ease;
  z-index: 0;
}
.feature-card:hover .feature-card__bg,
.feature-card.is-active .feature-card__bg {
  transform: scale(1.12);
  filter: brightness(.5) saturate(1);
}
.feature-card__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,14,4,.32) 0%, rgba(10,14,4,.62) 55%, rgba(10,14,4,.92) 100%);
  z-index: 1;
  pointer-events: none;
  transition: background .55s ease;
}
.feature-card:hover .feature-card__veil,
.feature-card.is-active .feature-card__veil {
  background: linear-gradient(180deg, rgba(10,14,4,.55) 0%, rgba(10,14,4,.78) 55%, rgba(10,14,4,.96) 100%);
}
.feature-card__content {
  position: absolute;
  inset: 0;
  padding: 26px 24px 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 14px;
  color: #fff;
  pointer-events: none;
}
.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  flex-shrink: 0;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), background .35s ease;
}
.feature-card:hover .feature-card__icon,
.feature-card.is-active .feature-card__icon {
  background: rgba(255,255,255,.22);
  transform: translateY(-4px);
}
.feature-card__title {
  margin: 0;
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(19px, 1.5vw, 24px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0,0,0,.5);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.feature-card__body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .55s cubic-bezier(.2,.7,.2,1), opacity .4s ease;
}
.feature-card:hover .feature-card__body,
.feature-card.is-active .feature-card__body {
  max-height: 220px;
  opacity: 1;
}
.feature-card__body p {
  margin: 0;
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,.94);
  text-shadow: 0 1px 10px rgba(0,0,0,.45);
}

@media (max-width: 1280px) {
  .features-grid {
    grid-template-columns: repeat(5, minmax(180px, 1fr));
  }
}
@media (max-width: 900px) {
  .feature-card { aspect-ratio: 3 / 4; }
}
.feature {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-card);
  min-height: 360px;
  display: flex;
  isolation: isolate;
  cursor: default;
  border: 1px solid rgba(255,255,255,.14);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease, border-color .4s ease;
}
.feature:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,.32);
  box-shadow: 0 28px 60px rgba(0,0,0,.34);
}
.feature__bg {
  position: absolute;
  inset: 0;
  background-image: var(--feature-bg);
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.04);
  transition: transform 1.1s cubic-bezier(.2,.7,.2,1), filter .6s ease;
  filter: saturate(.92);
}
.feature:hover .feature__bg { transform: scale(1.12); filter: saturate(1.05); }
.feature__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,28,8,.25) 0%, rgba(20,28,8,.55) 55%, rgba(20,28,8,.85) 100%);
  transition: background .5s ease;
}
.feature:hover .feature__veil {
  background:
    linear-gradient(180deg, rgba(20,28,8,.30) 0%, rgba(20,28,8,.65) 55%, rgba(20,28,8,.92) 100%);
}
.feature__content {
  position: relative;
  z-index: 2;
  padding: 32px 28px 28px;
  margin-top: auto;
  width: 100%;
  color: #fff;
}
.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 0;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .5s cubic-bezier(.2,.7,.2,1), background .4s ease;
}
.feature:hover .feature__icon {
  transform: translateY(-4px) rotate(-4deg);
  background: rgba(255,255,255,.22);
}
.feature h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: clamp(20px, 2vw, 24px);
  text-shadow: 0 2px 14px rgba(0,0,0,.25);
}
.feature p {
  color: rgba(255,255,255,.88);
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0,0,0,.2);
}

/* Plante qui pousse — SVG dans le coin */
.plant-grow {
  position: absolute;
  top: 16px; right: 14px;
  width: 74px; height: 100px;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
  opacity: 0;
  transition: opacity .35s ease;
}
.feature:hover .plant-grow { opacity: 1; }
.plant-grow path {
  fill: none;
  stroke: #c9dc8a;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 6px rgba(126,153,54,.35));
}
.plant-grow .plant-bud {
  fill: #c9dc8a;
  stroke: none;
  opacity: 0;
}

/* ============================================================
   COMMENT — Fil d'Ariane premium animé
   ============================================================ */
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 28px;
  margin: 0 0 72px;
  list-style: none;
  padding-left: 0;
}
.timeline li::marker { content: ""; }
.timeline__path {
  position: absolute;
  top: 50px;
  left: 8%;
  width: 84%;
  height: 80px;
  color: var(--c-primary);
  opacity: .7;
  pointer-events: none;
  z-index: 0;
}
.timeline__path path { stroke-width: 2; }
.timeline__step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 12px;
}
.timeline__dot {
  position: relative;
  width: 92px; height: 92px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--c-green) 0%, #5a6f29 100%);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.02em;
  box-shadow: 0 18px 44px rgba(62,79,27,.28), inset 0 1px 0 rgba(255,255,255,.18);
  border: 5px solid #fff;
}
.timeline__dot::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px dashed rgba(62,79,27,.28);
  animation: dot-rotate 22s linear infinite;
}
.timeline__dot::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.25), transparent 55%);
  pointer-events: none;
}
@keyframes dot-rotate { to { transform: rotate(360deg); } }
.timeline__step h3 {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(22px, 1.9vw, 26px);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.timeline__step p {
  color: var(--c-text-muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto 22px;
}
.timeline__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--c-green);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 18px;
  border: 1px solid rgba(62,79,27,.25);
  border-radius: var(--r-btn);
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.timeline__cta::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -70px;
  width: 90px; height: 90px;
  background: url("leaf.svg") center/contain no-repeat;
  transform: translateX(-50%) rotate(18deg);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: bottom .55s cubic-bezier(.2,.7,.2,1), opacity .4s ease, transform .55s cubic-bezier(.2,.7,.2,1);
}
.timeline__cta:hover {
  background: var(--c-green);
  color: #fff;
  border-color: var(--c-green);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(62,79,27,.25);
}
.timeline__cta:hover::after {
  bottom: -28px;
  opacity: .35;
  transform: translateX(-50%) rotate(-6deg);
  filter: brightness(0) invert(1);
}

.timeline__end {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  padding: 56px 40px;
  background: linear-gradient(140deg, var(--c-gray) 0%, #ece9df 100%);
  border: 1px solid var(--c-border);
  border-radius: 0;
  position: relative;
  box-shadow: 0 30px 70px rgba(54,54,54,.08);
}
.timeline__end::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -44px;
  width: 2px;
  height: 44px;
  background: repeating-linear-gradient(to bottom, var(--c-primary) 0 6px, transparent 6px 12px);
  transform: translateX(-50%);
}
.timeline__end-line {
  font-family: var(--ff-serif);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--c-text);
  margin-bottom: 26px;
}
.timeline__end-hint {
  display: block;
  margin-top: 18px;
  font-size: 13px;
  color: var(--c-text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   RÉALISATIONS — sans coins arrondis
   ============================================================ */
.realisations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.reali-item {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #1a1a1a;
  aspect-ratio: 4 / 3;
}
.reali-item img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s ease;
  filter: saturate(.95);
}
.reali-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(10,12,5,.55) 78%, rgba(10,12,5,.94) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .5s cubic-bezier(.2,.7,.2,1);
}
.reali-item:hover::after,
.reali-item:focus-within::after,
.reali-item.is-revealed::after { opacity: 1; }

.reali-item figcaption {
  position: absolute;
  left: 28px; right: 28px; bottom: 24px;
  z-index: 2;
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s ease .05s, transform .55s cubic-bezier(.2,.7,.2,1) .05s;
  pointer-events: none;
}
.reali-item:hover figcaption,
.reali-item:focus-within figcaption,
.reali-item.is-revealed figcaption {
  opacity: 1;
  transform: translateY(0);
}
.reali-num {
  font-family: var(--ff-serif);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,.95);
}
.reali-title {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-align: right;
  max-width: 220px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255,255,255,.45);
}
.reali-item:hover img { transform: scale(1.06); filter: saturate(1.05); }

/* ============================================================
   CONTRATS ANNUELS (vert + parallaxe)
   ============================================================ */
.section--parallax {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: #0a0a0a;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.66) 50%, rgba(0,0,0,.82) 100%),
    url("CONTENUS VISUELS/jardin entretenu@1600.webp");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-attachment: scroll, scroll;
}
.section--parallax > .container { position: relative; z-index: 3; }
.parallax-bg, .parallax-overlay { display: none; }

.contrats {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.contrats__copy h2 { margin-bottom: 24px; }
.contrats__copy .btn-primary--inverse { margin-top: 12px; }
.contrats__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--r-card);
  padding: 28px;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 24px 60px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.18);
}
.contrats__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-size: 16.5px;
  font-weight: 400;
  padding: 8px 6px;
}
.contrat-pic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 0;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.26);
  color: #d8e5a3;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .4s cubic-bezier(.2,.7,.2,1), background .35s ease, color .35s ease;
}
.contrats__list li:hover .contrat-pic {
  background: rgba(255,255,255,.95);
  color: var(--c-green);
  transform: rotate(-6deg) scale(1.05);
}
.contrat-text { line-height: 1.4; }

/* ============================================================
   SYNERGIE
   ============================================================ */
.synergie {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.synergie__copy h2 { margin-bottom: 24px; }
.synergie__copy .btn-ghost { margin-top: 8px; }
.synergie__visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 60px rgba(54,54,54,.14);
  cursor: pointer;
}
.synergie__visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.2,.7,.2,1), filter .5s ease;
}
.synergie__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,.55);
  opacity: 0;
  transition: opacity .45s ease;
  z-index: 1;
  pointer-events: none;
}
.synergie__visual:hover img,
.synergie__visual.is-revealed img {
  transform: scale(1.06);
  filter: brightness(.55);
}
.synergie__visual:hover::after,
.synergie__visual.is-revealed::after { opacity: 1; }

.easybois-reveal {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  color: #fff;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
  padding: 32px;
}
.synergie__visual:hover .easybois-reveal,
.synergie__visual.is-revealed .easybois-reveal {
  opacity: 1;
  transform: translateY(0);
}
.easybois-reveal__logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .94;
  margin: 0;
}
.easybois-reveal__tag { margin-bottom: 2px; }
.easybois-reveal__tag {
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 0;
}
.easybois-reveal__link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.6);
  padding: 8px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.45);
  border-radius: var(--r-btn);
  pointer-events: auto;
  position: relative;
  z-index: 3;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.easybois-reveal__link:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}
.badge-local {
  position: absolute;
  top: 24px; right: 24px;
  z-index: 2;
  width: 124px; height: 124px;
  background: rgba(62,79,27,.84);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-serif);
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 1.05;
  box-shadow: 0 18px 34px rgba(62,79,27,.32);
  gap: 4px;
  transform: rotate(-8deg);
}

/* ============================================================
   ZONE
   ============================================================ */
.zone {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.zone__copy h2 { margin-bottom: 24px; }
.zone__cta-line { color: var(--c-text); margin: 18px 0 26px; }
.zone__cta-line a { color: var(--c-green); }
.communes { display: flex; flex-wrap: wrap; gap: 8px; }
.communes li {
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  font-size: 14px;
  color: var(--c-text);
}
.zone__map {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--c-gray);
  box-shadow: 0 30px 60px rgba(54,54,54,.12);
}
.zone__map iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border: 0;
  filter: saturate(.9);
}

/* ============================================================
   FAQ — Accordéon corrigé
   ============================================================ */
.faq { max-width: 880px; margin-inline: auto; }
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--c-gray);
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  text-align: left;
  font-family: var(--ff-serif);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--c-text);
  transition: color .25s ease;
  background: transparent;
}
.faq-item__btn:hover { color: var(--c-green); }
.faq-item__q { pointer-events: none; }
.faq-item__icon {
  position: relative;
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  transition: background .3s ease, transform .35s ease, border-color .3s ease;
  pointer-events: none;
}
.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 14px; height: 2px;
  background: var(--c-green);
  transform: translate(-50%, -50%);
  transition: transform .3s ease, background .3s ease;
}
.faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item__btn[aria-expanded="true"] .faq-item__icon {
  background: var(--c-green);
  border-color: var(--c-green);
  transform: rotate(45deg);
}
.faq-item__btn[aria-expanded="true"] .faq-item__icon::before,
.faq-item__btn[aria-expanded="true"] .faq-item__icon::after { background: #fff; }
.faq-item__btn[aria-expanded="true"] { color: var(--c-green); }
.faq-item:has(.faq-item__btn[aria-expanded="true"]) {
  background: #fff;
  border-color: var(--c-green);
  box-shadow: 0 14px 36px rgba(54,54,54,.06);
}

.faq-item__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.2,.7,.2,1);
}
.faq-item__inner {
  padding: 0 26px 26px;
}
.faq-item__panel p {
  margin: 0;
  color: var(--c-text-muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 720px;
}

.faq__cta {
  margin-top: 48px;
  padding: 36px 32px;
  background: var(--c-gray);
  border: 1px solid var(--c-border);
  border-radius: var(--r-card);
  text-align: center;
}
.faq__cta p {
  font-family: var(--ff-serif);
  font-size: clamp(20px, 1.8vw, 24px);
  margin-bottom: 22px;
  color: var(--c-text);
}
.faq__cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   CONTACT — glass renforcé
   ============================================================ */
#contact {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
#contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("CONTENUS%20VISUELS/jardin%20top%20of%20view@1600.webp") center/cover no-repeat;
  filter: blur(2px) brightness(.45) saturate(1.1);
  transform: scale(1.04);
  z-index: 0;
  pointer-events: none;
}
#contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,28,28,.66) 0%, rgba(18,18,18,.82) 100%);
  z-index: 1;
  pointer-events: none;
}
#contact { background: #1a1a1a; }
#contact > .container { position: relative; z-index: 2; }

.contact__intro { max-width: 720px; margin-inline: auto; margin-bottom: 56px; text-align: center; }
.contact__intro p { color: rgba(255,255,255,.88); font-size: 18px; }
.contact__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
.contact-form {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 0;
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow: 0 32px 70px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.22);
}
.contact-form .row.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.92);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  font: inherit;
  background: rgba(255,255,255,.96);
  color: var(--c-text);
  border: 1.5px solid transparent;
  border-radius: var(--r-btn);
  padding: 13px 14px;
  font-size: 15px;
  transition: border-color .25s ease, box-shadow .25s ease;
  width: 100%;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 4px rgba(126,153,54,.22);
  outline: 0;
}
.contact-form textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.consent {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 12px !important;
  font-size: 13px;
  color: rgba(255,255,255,.78);
  line-height: 1.5;
}
.consent input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }
.consent a { color: #fff; text-decoration: underline; }
.contact-form__submit { align-self: flex-start; margin-top: 4px; }
.contact-form__feedback { margin: 0; font-size: 14px; min-height: 1.2em; color: rgba(255,255,255,.9); }
.contact-form__feedback.is-error { color: #ffb3a8; }
.contact-form__feedback.is-success { color: #b6e57b; }

.contact-info {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 0;
  padding: clamp(24px, 3vw, 36px);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  box-shadow: 0 32px 70px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.22);
}
.contact-info h3 { color: #fff; margin-bottom: 22px; }
.contact-info ul { display: flex; flex-direction: column; gap: 18px; }
.contact-info li { display: flex; flex-direction: column; gap: 4px; }
.contact-info__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.contact-info__label svg { opacity: .8; }
.contact-info a, .contact-info li span:last-child { color: #fff; font-size: 16px; }
.contact-info a:hover { color: var(--c-accent); }
.contact-info__cta { margin-top: 28px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #1f1f1f;
  color: rgba(255,255,255,.82);
  padding: 80px 0 28px;
  font-size: 15px;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.site-footer__logo { height: 56px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.site-footer__tag {
  font-family: var(--ff-serif);
  font-size: 19px;
  font-style: italic;
  color: rgba(255,255,255,.78);
  max-width: 280px;
}
.site-footer__col h4 {
  font-family: var(--ff-sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.site-footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer__col a { color: rgba(255,255,255,.78); transition: color .2s ease; }
.site-footer__col a:hover { color: #fff; }
.site-footer__easybois {
  display: inline-block;
  margin-top: 12px;
  color: var(--c-primary);
  font-weight: 500;
}
.site-footer__easybois:hover { color: var(--c-accent); }
.site-footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.site-footer__legal ul { display: flex; gap: 24px; }
.site-footer__legal a { color: rgba(255,255,255,.7); }
.site-footer__legal a:hover { color: #fff; }
.site-footer__credit a { color: rgba(255,255,255,.85); text-decoration: underline; }

/* ============================================================
   LEGAL PAGES (mentions légales / politique de confidentialité)
   ============================================================ */
.legal-main {
  padding-top: clamp(96px, 12vw, 140px);
}
.legal-section {
  padding: clamp(40px, 6vw, 72px) 0 clamp(64px, 8vw, 120px);
}
.legal {
  max-width: 820px;
  margin: 0 auto;
}
.legal__head { margin-bottom: clamp(28px, 4vw, 48px); }
.legal__crumb {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--c-text-muted);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.legal__crumb a {
  color: var(--c-green);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.legal__head h1 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.legal__lead {
  font-size: clamp(17px, 1.4vw, 19px);
  color: var(--c-text-muted);
  font-weight: 300;
  max-width: 640px;
}
.legal__body h2 {
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.02em;
  margin: clamp(28px, 4vw, 44px) 0 14px;
  color: var(--c-text);
}
.legal__body h3 {
  font-size: clamp(17px, 1.4vw, 19px);
  margin: 24px 0 10px;
  color: var(--c-text);
}
.legal__body p {
  font-size: 16.5px;
  line-height: 1.7;
  margin-bottom: 14px;
  color: var(--c-text);
  font-weight: 300;
}
.legal__body strong { font-weight: 500; color: var(--c-text); }
.legal__body a {
  color: var(--c-green);
  border-bottom: 1px solid rgba(62,79,27,.25);
  padding-bottom: 1px;
  transition: border-color .25s ease;
}
.legal__body a:hover { border-color: var(--c-green); }
.legal__list {
  padding-left: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal__list li {
  position: relative;
  padding-left: 22px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  color: var(--c-text);
}
.legal__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 10px;
  height: 1.5px;
  background: var(--c-primary);
}
.legal__updated {
  margin-top: clamp(32px, 4vw, 48px);
  padding-top: 20px;
  border-top: 1px solid var(--c-border);
  font-size: 14px;
  color: var(--c-text-muted);
}
.legal__back {
  margin-top: 36px;
}

/* ============================================================
   LIGHTBOX — Zoom Réalisations
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s ease, visibility 0s linear .4s;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .4s ease, visibility 0s linear 0s;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 4, .92);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
}
.lightbox__figure {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: min(1200px, 92vw);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transform: scale(.96);
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}
.lightbox.is-open .lightbox__figure { transform: scale(1); }

.lightbox__img {
  max-width: 100%;
  max-height: 76vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 40px 90px rgba(0,0,0,.55);
  cursor: zoom-out;
}
.lightbox__caption {
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  color: #fff;
  font-family: var(--ff-serif);
  text-align: center;
}
.lightbox__num {
  font-size: 22px;
  color: var(--c-primary);
  letter-spacing: -0.02em;
}
.lightbox__title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,.92);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 3;
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,.95);
  color: var(--c-green);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(0,0,0,.4);
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .3s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--c-green);
  color: #fff;
}
.lightbox__close {
  top: 24px;
  right: 24px;
}
.lightbox__close:hover { transform: rotate(90deg); }
.lightbox__nav--prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__nav--next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__nav--prev:hover { transform: translateY(-50%) scale(1.08) translateX(-2px); }
.lightbox__nav--next:hover { transform: translateY(-50%) scale(1.08) translateX(2px); }

body.lightbox-open { overflow: hidden; }

.reali-item img { cursor: zoom-in; }

@media (max-width: 768px) {
  .lightbox__close { top: 14px; right: 14px; width: 44px; height: 44px; }
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__nav--prev { left: 10px; }
  .lightbox__nav--next { right: 10px; }
  .lightbox__caption { padding: 0 56px; }
  .lightbox__title { font-size: 15px; }
  .lightbox__num { font-size: 18px; }
}

/* ============================================================
   DEVIS MODAL
   ============================================================ */
.devis-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility 0s linear .35s;
}
.devis-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .35s ease, visibility 0s linear 0s;
}
.devis-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 4, .55);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
}
.devis-modal__panel {
  position: relative;
  width: min(720px, 96vw);
  max-height: 92vh;
  overflow-y: auto;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: 0 40px 90px rgba(0,0,0,.34);
  transform: translateY(40px) scale(.97);
  opacity: 0;
  transition: transform .45s cubic-bezier(.2,.7,.2,1), opacity .35s ease;
}
.devis-modal.is-open .devis-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.devis-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 40px; height: 40px;
  background: rgba(0,0,0,.06);
  color: var(--c-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.devis-modal__close:hover { background: var(--c-green); color: #fff; transform: rotate(90deg); }
.devis-modal__inner {
  padding: clamp(28px, 4vw, 48px);
  position: relative;
}
.devis-modal__leaf {
  display: inline-block;
  width: 36px; height: 36px;
  background: url("leaf.svg") center/contain no-repeat;
  margin-bottom: 12px;
}
.devis-modal h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.devis-modal__lead {
  color: var(--c-text-muted);
  font-size: 16px;
  margin-bottom: 24px;
}
.devis-modal__form {
  background: transparent;
  border: 0;
  padding: 0;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
.devis-modal__form label { color: var(--c-text); }
.devis-modal__form input,
.devis-modal__form select,
.devis-modal__form textarea {
  background: #fff;
  border: 1.5px solid var(--c-border);
}
.devis-modal__form .consent { color: var(--c-text-muted); }
.devis-modal__form .consent a { color: var(--c-green); }
body.devis-open { overflow: hidden; }

/* ============================================================
   TESTIMONIALS — Parallaxe fixe + cartes glass
   ============================================================ */
.section--testi {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background-color: #1c2410;
  background-image:
    linear-gradient(180deg, rgba(15,22,5,.66) 0%, rgba(15,22,5,.74) 50%, rgba(8,12,2,.86) 100%),
    url("CONTENUS VISUELS/jardin top of view@1600.webp");
  background-size: cover, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  background-attachment: scroll, scroll;
  color: #fff;
}
.section--testi p, .section--testi li { color: rgba(255,255,255,.88); }
.section--testi .section__lead { color: rgba(255,255,255,.78); }
.section--testi > .container { position: relative; z-index: 2; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.testi-card {
  position: relative;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  padding: 30px 26px 26px;
  color: #fff;
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.18);
  transition: transform .45s cubic-bezier(.2,.7,.2,1), background .35s ease, border-color .35s ease, box-shadow .35s ease;
  overflow: hidden;
  isolation: isolate;
}
.testi-card::before {
  content: "";
  position: absolute;
  top: -34px;
  right: -28px;
  width: 130px;
  height: 130px;
  background: url("leaf.svg") center/contain no-repeat;
  opacity: .07;
  transform: rotate(28deg);
  filter: brightness(0) invert(1);
  pointer-events: none;
  transition: opacity .4s ease, transform .55s cubic-bezier(.2,.7,.2,1);
}
.testi-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.32);
  box-shadow: 0 30px 70px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.22);
}
.testi-card:hover::before { opacity: .14; transform: rotate(-8deg); }

.testi-card__leaves {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.testi-leaf {
  display: inline-block;
  width: 18px; height: 18px;
  background: url("leaf.svg") center/contain no-repeat;
}
.testi-card__quote-mark {
  font-family: var(--ff-serif);
  font-size: 80px;
  line-height: .6;
  color: rgba(255,255,255,.16);
  position: absolute;
  top: 18px;
  right: 22px;
  pointer-events: none;
}
.testi-card__quote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
  color: rgba(255,255,255,.96);
  flex: 1;
  letter-spacing: -0.005em;
}
.testi-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.16);
}
.testi-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-primary), var(--c-green));
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.testi-card__name {
  font-weight: 500;
  font-size: 14.5px;
  color: rgba(255,255,255,.92);
}

@media (max-width: 1100px) {
  .testi-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   LOADER — Intro animée avec logo vertical
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #FAFAF7;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .65s ease .2s, visibility 0s linear .9s;
}
.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(126,153,54,.08) 0%, transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(62,79,27,.06) 0%, transparent 60%);
  pointer-events: none;
}
.loader__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  animation: loader-pulse 2.2s ease-in-out infinite;
}
.loader__logo {
  width: clamp(140px, 22vw, 220px);
  height: auto;
  opacity: 0;
  transform: translateY(12px) scale(.95);
  animation: loader-in 1.1s cubic-bezier(.2,.7,.2,1) .15s forwards;
}
.loader__progress {
  width: 140px;
  height: 2px;
  background: rgba(54,54,54,.12);
  position: relative;
  overflow: hidden;
}
.loader__progress span {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, var(--c-primary) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: loader-bar 1.4s ease-in-out infinite;
}
@keyframes loader-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes loader-pulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes loader-bar {
  to { transform: translateX(100%); }
}

/* ============================================================
   FAB — Centré bas desktop / Navbar inférieure mobile
   ============================================================ */
.fab {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(20px);
  z-index: 70;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease, transform .55s cubic-bezier(.2,.7,.2,1);
  padding: 8px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: calc(var(--r-btn) + 6px);
  box-shadow: 0 22px 60px rgba(0,0,0,.18), 0 2px 6px rgba(0,0,0,.06);
}
.fab.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.fab__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  padding: 0 18px;
  border-radius: var(--r-btn);
  background: var(--c-gray);
  color: var(--c-green);
  font-weight: 600;
  font-size: 15px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .3s ease, color .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.fab__btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.18); }
.fab__btn--devis {
  padding: 0 22px;
  background: var(--c-green);
  color: #fff;
}
.fab__btn--devis:hover { background: var(--c-primary); color: #fff; }
.fab__btn--call { background: var(--c-gray); color: var(--c-green); }
.fab__btn--call:hover { background: var(--c-green); color: #fff; }
.fab__btn--wa { background: #25D366; color: #fff; }
.fab__btn--wa:hover { background: #1da851; }

/* Universal leaf animation on FAB buttons */
.fab__btn::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -70px;
  width: 80px; height: 80px;
  background: url("leaf.svg") center/contain no-repeat;
  transform: translateX(-50%) rotate(18deg);
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transition: bottom .55s cubic-bezier(.2,.7,.2,1), opacity .4s ease, transform .55s cubic-bezier(.2,.7,.2,1);
  display: block;
}
.fab__btn:hover::after {
  bottom: -28px;
  opacity: .4;
  transform: translateX(-50%) rotate(-6deg);
  filter: brightness(0) invert(1);
}
.fab__btn--call:hover::after { filter: brightness(0) invert(1); opacity: .35; }
.fab__btn--wa:hover::after { filter: brightness(0) invert(1); opacity: .25; }

.fab__leaf {
  display: inline-block;
  width: 20px; height: 20px;
  background: url("leaf.svg") center/contain no-repeat;
  filter: brightness(0) invert(1);
}
.fab__label { font-weight: 600; letter-spacing: 0.005em; }
.fab__txt { display: none; }

.fab__tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(20,20,20,.92);
  color: #fff;
  font-size: 12.5px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.fab__btn:hover .fab__tooltip { opacity: 1; transform: translateX(-50%) translateY(0); }

/* override universal leaf anim on rounded FAB btns */
.fab__btn::after { display: none; }

@media (max-width: 768px) {
  .fab {
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateY(100%);
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    border-top: 1px solid rgba(0,0,0,.06);
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
    gap: 8px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 -10px 30px rgba(0,0,0,.12);
    width: 100%;
    justify-content: stretch;
  }
  .fab.is-visible { transform: translateY(0); }
  .fab__btn {
    flex: 1;
    height: 52px;
    border-radius: 12px;
    width: auto;
    padding: 0 14px;
    gap: 8px;
  }
  .fab__btn--devis { flex: 1.6; }
  .fab__txt { display: inline-block; font-size: 13px; font-weight: 600; }
  .fab__tooltip { display: none; }
  .fab__btn svg { width: 18px; height: 18px; }
  body { padding-bottom: 86px; }
}

/* ============================================================
   Reveal (no-motion fallback only)
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* SplitType prep — lines clip the words */
.line { overflow: hidden; display: block; }
.word { display: inline-block; will-change: transform, opacity; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .header__cta { display: none; }
  .burger { display: block; }
  .header__logo img { height: 56px; }
  .site-header[data-state="solid"] .header__logo img { height: 44px; }

  .hero { padding-top: 110px; }

  .audience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 36px; position: relative; }
  .timeline__path { display: none; }
  /* Discreet thread linking steps, runs behind each step's text */
  .timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 70px;
    bottom: 70px;
    width: 1px;
    transform: translateX(-50%);
    background: repeating-linear-gradient(
      to bottom,
      rgba(126,153,54,.16) 0 4px,
      transparent 4px 12px
    );
    z-index: 0;
    pointer-events: none;
  }
  .timeline__step { position: relative; z-index: 1; background: transparent; }
  .timeline__step::after {
    content: "";
    display: none;
    position: absolute;
    left: 50%;
    top: 76px;
    transform: translateX(-50%);
    width: 2px; height: 36px;
    background: repeating-linear-gradient(to bottom, var(--c-primary) 0 6px, transparent 6px 12px);
    opacity: .55;
  }
  .timeline__step:last-child::after { display: none; }
  .realisations-grid { grid-template-columns: 1fr 1fr; }
  .contrats, .synergie, .zone { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .card-service ul { max-height: 320px; opacity: 1; }
}

/* ============================================================
   MOBILE CAROUSELS — tuiles en scroll horizontal snap
   ============================================================ */
@media (max-width: 900px) {
  .carousel-wrap {
    margin: 0 calc(-1 * var(--pad-x));
  }
  [data-carousel] {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-snap-stop: always;
    -webkit-overflow-scrolling: touch;
    gap: 0;
    padding: 4px var(--pad-x) 24px;
    scroll-padding-left: var(--pad-x);
    scroll-padding-right: var(--pad-x);
    margin: 0;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
    min-height: unset !important;
    scrollbar-width: none;
  }
  [data-carousel]::-webkit-scrollbar { display: none; }
  [data-carousel] > * {
    flex: 0 0 100%;
    max-width: 100%;
    scroll-snap-align: start;
    grid-column: auto !important;
    grid-row: auto !important;
    aspect-ratio: auto;
    margin-right: var(--pad-x);
  }
  [data-carousel] > *:last-child { margin-right: 0; }
  .services-grid[data-carousel] > .card-service { aspect-ratio: 3 / 4.4; }
  .realisations-grid[data-carousel] > .reali-item { aspect-ratio: 4 / 3; }
  .features-grid[data-carousel] > .feature-card { aspect-ratio: 3 / 4; }

  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
  }
  .carousel-dots span {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(54,54,54,.2);
    transition: background .25s ease, transform .25s ease;
  }
  .carousel-dots span.is-active {
    background: var(--c-green);
    transform: scale(1.4);
  }
}
.carousel-dots { display: none; }

/* ============================================================
   CAROUSEL ARROWS — mobile / tablette
   ============================================================ */
.carousel-wrap {
  position: relative;
  width: 100%;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 20;
  width: 48px;
  height: 48px;
  display: none;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  color: var(--c-green);
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(0,0,0,.28), 0 2px 6px rgba(0,0,0,.1);
  cursor: pointer;
  opacity: 1;
  transition: opacity .35s ease, transform .35s ease, background .25s ease, color .25s ease, box-shadow .25s ease;
  pointer-events: auto;
  transform: translateY(-50%);
}
.carousel-arrow:hover, .carousel-arrow:focus-visible {
  background: var(--c-green);
  color: #fff;
  transform: translateY(-50%) scale(1.06);
}
.carousel-arrow--prev { left: 10px; animation: arrow-pulse-l 2.4s ease-in-out infinite; }
.carousel-arrow--next { right: 10px; animation: arrow-pulse-r 2.4s ease-in-out infinite; }
.carousel-arrow.is-disabled {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(.7);
  animation: none;
}
@keyframes arrow-pulse-l {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(-4px); }
}
@keyframes arrow-pulse-r {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(4px); }
}
.carousel-arrow:hover { animation: none; }

@media (max-width: 1024px) {
  .carousel-arrow { display: inline-flex; }
}
@media (prefers-reduced-motion: reduce) {
  .carousel-arrow--prev, .carousel-arrow--next { animation: none; }
}

@media (max-width: 768px) {
  .audience-grid:not([data-carousel]), .services-grid:not([data-carousel]), .features-grid, .realisations-grid:not([data-carousel]) { grid-template-columns: 1fr; }
  .hero { min-height: 92svh; padding-top: 100px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { justify-content: center; }
  .contact-form .row.two { grid-template-columns: 1fr; }
  .site-footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__legal { justify-content: flex-start; }
  .site-footer__legal ul { gap: 16px; flex-wrap: wrap; }
  .badge-local { width: 96px; height: 96px; font-size: 15px; top: 16px; right: 16px; }
  body { padding-bottom: 90px; }
  .header__logo img { height: 44px; }
  .site-header[data-state="solid"] .header__logo img { height: 34px; }
  .faq__cta-row { flex-direction: column; }
  .faq__cta-row .btn { width: 100%; }
  .devis-modal__panel { width: 100%; max-height: 100vh; height: 100dvh; }
  .devis-modal__inner { padding: 80px 20px 28px; }
  .easybois-reveal { padding: 20px; }
  .easybois-reveal__mark { font-size: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .stagger > * { opacity: 1; transform: none; }
  .timeline__dot::before { animation: none; }
}
