/* =================================================================
   KIOSQUE — Design System
   Palette : vert mousse profond / ivoire / doré brûlé
   Typo    : Fraunces (display) + Outfit (body)
   ================================================================= */

/* ---------- TOKENS ---------- */
:root {
  /* Verts — palette Tholano */
  --green-deep:    #072A1C;
  --green-moss:    #0E3C2C;
  --green-grass:   #1A5A3E;
  --green-sage:    #56A02E;
  --green-mint:    #B8E098;
  --green-wash:    #EAF4DC;

  /* Fonds */
  --ivory:         #FFFFFF;
  --cream:         #F4F4F4;
  --sand:          #FAFAFA;
  --linen:         #F7F9F4;

  /* Surfaces foncées */
  --earth:         #2B2B2B;
  --bark:          #072A1C;

  /* Accent lime Tholano */
  --amber:         #7BC823;
  --amber-soft:    #95DD43;
  --rust:          #5A8E1A;

  /* Texte */
  --ink:           #1A1A1A;
  --ink-soft:      #424242;
  --ink-mute:      #575757;
  --ink-faint:     #9A9A9A;

  /* Lignes */
  --line:          rgba(7, 42, 28, 0.10);
  --line-soft:     rgba(7, 42, 28, 0.06);

  /* Typo */
  --font-display:  'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body:     'Outfit', 'Helvetica Neue', system-ui, sans-serif;

  /* Échelle typographique fluide */
  --fs-display:    clamp(2.75rem, 7vw, 5.75rem);
  --fs-h1:         clamp(2.25rem, 5vw, 4rem);
  --fs-h2:         clamp(1.75rem, 3.5vw, 2.875rem);
  --fs-h3:         clamp(1.375rem, 2.4vw, 1.875rem);
  --fs-h4:         clamp(1.125rem, 1.8vw, 1.375rem);
  --fs-lg:         1.1875rem;
  --fs-body:       1.0625rem;
  --fs-sm:         0.9375rem;
  --fs-xs:         0.8125rem;
  --fs-micro:      0.75rem;

  /* Espacement */
  --s-3xs:  .25rem;
  --s-2xs:  .5rem;
  --s-xs:   .75rem;
  --s-sm:   1rem;
  --s-md:   1.5rem;
  --s-lg:   2.5rem;
  --s-xl:   4rem;
  --s-2xl:  6rem;
  --s-3xl:  9rem;

  /* Container */
  --container-max: 1320px;
  --container-pad: clamp(1.25rem, 4vw, 3rem);

  /* Radii */
  --r-xs:   6px;
  --r-sm:   10px;
  --r-md:   16px;
  --r-lg:   28px;
  --r-xl:   48px;
  --r-full: 999px;

  /* Ombres */
  --sh-xs:  0 1px 2px rgba(27, 24, 21, .04);
  --sh-sm:  0 6px 18px -8px rgba(31, 61, 43, .14);
  --sh-md:  0 14px 38px -14px rgba(31, 61, 43, .22);
  --sh-lg:  0 30px 80px -28px rgba(31, 61, 43, .30);
  --sh-pop: 0 40px 100px -32px rgba(58, 42, 28, .45);

  /* Motion */
  --ease-out:    cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --ease-warm:   cubic-bezier(.34, 1.56, .64, 1);
  --dur-fast:    220ms;
  --dur-base:    420ms;
  --dur-slow:    720ms;

  /* Header */
  --header-h:  104px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

::selection {
  background: var(--green-deep);
  color: var(--ivory);
}

/* ---------- TYPOGRAPHIE ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-moss);
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .6;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "SOFT" 30, "WONK" 0;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--green-deep);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); line-height: 1.08; }
h3 { font-size: var(--fs-h3); line-height: 1.15; }
h4 { font-size: var(--fs-h4); line-height: 1.25; }

.display {
  font-size: var(--fs-display);
  line-height: .98;
  letter-spacing: -0.035em;
  font-weight: 350;
  font-variation-settings: "SOFT" 50, "WONK" 1, "opsz" 144;
}

.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}

p { color: var(--ink-soft); }

.lead {
  font-size: var(--fs-lg);
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: clamp(4rem, 9vw, 9rem);
  position: relative;
}

.section--tight { padding-block: clamp(3rem, 6vw, 6rem); }

.section--cream  { background: var(--cream); }
.section--linen  { background: var(--linen); }
.section--moss   { background: var(--green-deep); color: var(--ivory); }
.section--moss h1, .section--moss h2, .section--moss h3, .section--moss h4 { color: var(--ivory); }
.section--moss p { color: rgba(245, 241, 232, .78); }

.section-head {
  max-width: 780px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head .eyebrow { margin-bottom: 1rem; }
.section-head h2 { margin-bottom: 1.25rem; }

/* ---------- BUTTONS ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1.05rem 1.75rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: .01em;
  border-radius: var(--r-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out),
              color var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  white-space: nowrap;
  text-align: center;
}

.btn .arrow {
  width: 16px; height: 16px;
  transition: transform var(--dur-base) var(--ease-out);
}

.btn:hover .arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--green-deep);
  color: var(--ivory);
  box-shadow: var(--sh-sm);
}
.btn--primary:hover {
  background: var(--green-moss);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.btn--amber {
  background: var(--amber);
  color: var(--bark);
  box-shadow: var(--sh-sm);
}
.btn--amber:hover {
  background: var(--amber-soft);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.btn--ghost {
  background: transparent;
  color: var(--green-deep);
  border-color: rgba(31, 61, 43, .25);
}
.btn--ghost:hover {
  background: var(--green-deep);
  color: var(--ivory);
  border-color: var(--green-deep);
}

.btn--ghost-light {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(245, 241, 232, .35);
}
.btn--ghost-light:hover {
  background: var(--ivory);
  color: var(--green-deep);
}

.btn--lg { padding: 1.2rem 2.1rem; font-size: var(--fs-body); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 500;
  color: var(--green-moss);
  border-bottom: 1px solid rgba(45, 85, 54, .25);
  padding-bottom: 2px;
  transition: color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.link-arrow:hover {
  color: var(--amber);
  border-color: var(--amber);
}
.link-arrow .arrow { width: 14px; height: 14px; transition: transform var(--dur-fast) var(--ease-out); }
.link-arrow:hover .arrow { transform: translateX(3px); }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  transition: background var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              backdrop-filter var(--dur-base) var(--ease-out);
}

.site-header__inner {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 1px 0 rgba(7, 42, 28, .08), 0 8px 24px -16px rgba(7, 42, 28, .15);
}

/* Home page : header transparent foncé en haut, blanc au scroll */
body[data-page="home"] .site-header:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(7, 42, 28, .65) 0%, rgba(7, 42, 28, .15) 80%, rgba(7, 42, 28, 0) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

body[data-page="home"] .site-header:not(.is-scrolled) .brand { color: var(--ivory); }
body[data-page="home"] .site-header:not(.is-scrolled) .nav-main a { color: rgba(245, 241, 232, .85); }
body[data-page="home"] .site-header:not(.is-scrolled) .nav-main a:hover,
body[data-page="home"] .site-header:not(.is-scrolled) .nav-main a.is-active { color: var(--amber-soft); }
body[data-page="home"] .site-header:not(.is-scrolled) .nav-main a::after { background: var(--amber-soft); }
body[data-page="home"] .site-header:not(.is-scrolled) .header-phone { color: rgba(245, 241, 232, .9); }
body[data-page="home"] .site-header:not(.is-scrolled) .menu-toggle span,
body[data-page="home"] .site-header:not(.is-scrolled) .menu-toggle span::before,
body[data-page="home"] .site-header:not(.is-scrolled) .menu-toggle span::after { background: var(--ivory); }
body[data-page="home"] .site-header:not(.is-scrolled) .menu-toggle { border-color: rgba(245, 241, 232, .25); }

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--green-deep);
  transition: opacity var(--dur-fast) var(--ease-out);
}

.brand:hover { opacity: .85; }

.brand__logo {
  display: block;
  height: 88px;
  width: auto;
  object-fit: contain;
}

.brand--footer .brand__logo {
  height: 128px;
  filter: drop-shadow(0 0 28px rgba(123, 200, 35, .4));
}

@media (max-width: 820px) {
  .brand__logo { height: 64px; }
  .brand--footer .brand__logo { height: 100px; }
}

.nav-main {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.25rem);
}

.nav-main a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: .5rem 0;
  transition: color var(--dur-fast) var(--ease-out);
}

.nav-main a::after {
  content: "";
  position: absolute;
  inset: auto 0 -2px 0;
  height: 1px;
  background: var(--green-moss);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}

.nav-main a:hover,
.nav-main a.is-active { color: var(--green-deep); }
.nav-main a:hover::after,
.nav-main a.is-active::after { transform: scaleX(1); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--green-deep);
}

.nav-mobile { display: none; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--r-full);
  border: 1px solid var(--line);
  align-items: center; justify-content: center;
}

.menu-toggle span {
  width: 18px; height: 1.5px;
  background: var(--green-deep);
  position: relative;
  transition: transform var(--dur-base) var(--ease-out);
}
.menu-toggle span::before, .menu-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 100%; height: 1.5px;
  background: currentColor;
  transition: transform var(--dur-base) var(--ease-out), top var(--dur-base) var(--ease-out);
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after  { top:  6px; }

/* Mobile menu open state */
body.menu-open { overflow: hidden; }
.menu-toggle.is-open span { background: transparent; }
.menu-toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.is-open span::after  { top: 0; transform: rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: min(100svh, 920px);
  padding-top: calc(var(--header-h) + 3rem);
  padding-bottom: 4rem;
  overflow: hidden;
  background: var(--ivory);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(7, 42, 28, .25) 0%, transparent 60%),
    linear-gradient(180deg, rgba(7, 42, 28, .40) 0%, rgba(7, 42, 28, .72) 100%);
}

.hero__bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(95deg, rgba(0,0,0,.04) 0 2px, transparent 2px 5px),
    radial-gradient(circle at 20% 80%, rgba(200,144,47,.12) 0%, transparent 40%);
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg-video { display: none; }
  .hero__bg-image { background-color: var(--green-moss); }
}

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr auto;
  gap: 2rem clamp(2rem, 5vw, 5rem);
  align-items: stretch;
  min-height: calc(min(100svh, 920px) - var(--header-h) - 7rem);
}

.hero__content {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-block: 3rem 0;
}

.hero__eyebrow {
  margin-bottom: 1.5rem;
  color: var(--amber-soft);
}

.hero__eyebrow::before {
  background: var(--amber-soft);
  opacity: .85;
}

.hero__title {
  font-size: var(--fs-display);
  line-height: .96;
  letter-spacing: -0.035em;
  font-weight: 350;
  font-variation-settings: "SOFT" 50, "WONK" 1, "opsz" 144;
  color: var(--ivory);
  margin-bottom: 1.75rem;
}

.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--amber-soft);
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
}

.hero__title .word { display: inline-block; overflow: hidden; padding-bottom: .05em; }
.hero__title .word > span { display: inline-block; }

.hero__lead {
  font-size: var(--fs-lg);
  line-height: 1.55;
  color: rgba(245, 241, 232, .82);
  max-width: 36ch;
  margin-bottom: 2.25rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero__meta {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2rem;
  margin-bottom: 1rem;
  border-top: 1px solid rgba(245, 241, 232, .18);
}

.hero__meta-item .num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
  color: var(--ivory);
  font-weight: 350;
  display: block;
  margin-bottom: .35rem;
}
.hero__meta-item .num em { color: var(--amber-soft); font-style: italic; }

.hero__meta-item .lbl {
  font-size: var(--fs-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, .55);
}

/* ---------- HERO FORM CARD ---------- */
.hero__form-card {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  align-self: stretch;
  background: rgba(245, 241, 232, .96);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  box-shadow: 0 30px 80px -20px rgba(7, 42, 28, .45);
  max-width: 460px;
  width: 100%;
  justify-self: end;
  display: flex;
  flex-direction: column;
}

.hero__form-card .hero-form { flex: 1; }

.hero__form-card-tag {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .4rem .85rem;
  background: var(--green-wash);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--green-deep);
  letter-spacing: .02em;
  margin-bottom: 1.25rem;
}

.hero__form-card-tag .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(123, 200, 35, .25);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(123, 200, 35, .25); }
  50%      { box-shadow: 0 0 0 7px rgba(123, 200, 35, .12); }
}

.hero__form-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--green-deep);
  margin-bottom: .65rem;
  font-weight: 350;
}

.hero__form-card-title em {
  font-style: italic;
  color: var(--rust);
  font-weight: 300;
}

.hero__form-card-lead {
  font-size: var(--fs-sm);
  color: var(--ink-mute);
  margin-bottom: 1.5rem;
}

.hero-form { display: flex; flex-direction: column; gap: .85rem; }

.hero-form__row { display: grid; gap: .85rem; }
.hero-form__row--2 { grid-template-columns: 1fr 1fr; }

.hero-form__field { display: block; }

.hero-form__field span {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .4rem;
}

.hero-form__field input,
.hero-form__field select,
.hero-form__field textarea {
  width: 100%;
  padding: .75rem .9rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--ink);
  transition: border-color var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) var(--ease-out);
}

.hero-form__field textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.45;
}

.hero-form__field input:focus,
.hero-form__field select:focus,
.hero-form__field textarea:focus {
  outline: none;
  border-color: var(--green-moss);
  box-shadow: 0 0 0 3px rgba(45, 85, 54, .12);
}

.hero-form__submit {
  margin-top: .5rem;
  width: 100%;
  justify-content: center;
}

.hero-form__note {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: var(--fs-xs);
  color: var(--ink-mute);
  margin-top: .5rem;
}

.hero-form__note svg { color: var(--green-moss); flex-shrink: 0; }

.hero-form__success {
  display: none;
  margin-top: 1rem;
  padding: .85rem 1rem;
  background: var(--green-wash);
  border-radius: var(--r-sm);
  color: var(--green-deep);
  font-size: var(--fs-sm);
  font-weight: 500;
}

.hero-form__success.is-visible { display: block; }

@media (max-width: 540px) {
  .hero-form__row--2 { grid-template-columns: 1fr; }
}

.hero__visual {
  position: relative;
  align-self: stretch;
  min-height: 460px;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 3rem;
}

.hero__visual-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31, 61, 43, .65) 100%);
}

.hero__badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  background: rgba(245, 241, 232, .92);
  backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero__badge-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-full);
  background: var(--green-deep);
  display: grid; place-items: center;
  color: var(--amber-soft);
  flex-shrink: 0;
}

.hero__badge strong {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  color: var(--green-deep);
  font-weight: 500;
  display: block;
  line-height: 1.2;
}
.hero__badge span {
  font-size: var(--fs-xs);
  color: var(--ink-mute);
}

/* Hero scroll cue */
.hero__cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; gap: .75rem;
  font-size: var(--fs-micro);
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, .55);
}

.hero__cue-line {
  width: 1px; height: 40px;
  background: rgba(245, 241, 232, .35);
  position: relative;
  overflow: hidden;
}
.hero__cue-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--amber-soft);
  animation: cueLine 2.4s var(--ease-in-out) infinite;
}
@keyframes cueLine {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* ---------- USP CARDS ---------- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.usp-card {
  position: relative;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 2rem 1.75rem 1.75rem;
  transition: transform var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
  overflow: hidden;
}

.usp-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 0;
  background: var(--green-deep);
  transition: height var(--dur-slow) var(--ease-out);
  z-index: 0;
}

.usp-card:hover {
  border-color: transparent;
  box-shadow: var(--sh-lg);
  transform: translateY(-6px);
  color: var(--ivory);
}
.usp-card:hover::before { height: 100%; }
.usp-card:hover h3 { color: var(--ivory); }
.usp-card:hover p { color: rgba(245, 241, 232, .8); }
.usp-card:hover .usp-card__num { color: rgba(245, 241, 232, .35); }
.usp-card:hover .usp-card__icon { background: var(--amber); color: var(--bark); }

.usp-card > * { position: relative; z-index: 1; }

.usp-card__num {
  font-family: var(--font-display);
  font-size: .875rem;
  letter-spacing: .08em;
  color: var(--ink-faint);
  font-feature-settings: "tnum";
  margin-bottom: 1.5rem;
  display: block;
  transition: color var(--dur-base) var(--ease-out);
}

.usp-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-full);
  background: var(--green-wash);
  color: var(--green-moss);
  display: grid; place-items: center;
  margin-bottom: 1.5rem;
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}

.usp-card h3 {
  font-size: 1.25rem;
  line-height: 1.2;
  margin-bottom: .75rem;
  transition: color var(--dur-base) var(--ease-out);
}

.usp-card p {
  font-size: var(--fs-sm);
  line-height: 1.55;
  transition: color var(--dur-base) var(--ease-out);
}

/* ---------- SECTION TOURBE (vedette) ---------- */
.tourbe {
  background: var(--green-deep);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.tourbe::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(200, 144, 47, .12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 10% 80%, rgba(107, 142, 90, .15) 0%, transparent 50%);
  pointer-events: none;
}

.tourbe .container { position: relative; z-index: 1; }

.tourbe__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.tourbe__head h2 {
  color: var(--ivory);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -.035em;
}

.tourbe__head h2 em {
  font-style: italic;
  color: var(--amber-soft);
  font-weight: 300;
}

.tourbe__head p {
  color: rgba(245, 241, 232, .76);
  font-size: var(--fs-lg);
  max-width: 50ch;
}

.tourbe__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.5rem;
}

.tourbe__feature {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 540px;
  background: var(--green-moss);
}

/* Variante solo — un seul card pleine largeur, plus de différenciation produits */
.tourbe__feature--solo {
  min-height: 520px;
  display: block;
}

.tourbe__feature--solo .tourbe__feature-content {
  max-width: 680px;
}

.tourbe__feature--solo h3 {
  font-size: clamp(1.875rem, 3.5vw, 2.875rem);
  line-height: 1.05;
}

@media (max-width: 820px) {
  .tourbe__feature--solo { min-height: 420px; }
}

.tourbe__feature-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}

.tourbe__feature:hover .tourbe__feature-img { transform: scale(1.04); }

.tourbe__feature-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 42, 28, .82) 0%, rgba(7, 42, 28, .55) 35%, rgba(7, 42, 28, 0) 65%),
    linear-gradient(180deg, transparent 55%, rgba(7, 42, 28, .75) 100%);
  z-index: 1;
}

.tourbe__feature-content {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 2rem;
  z-index: 2;
}

.tourbe__feature .tag {
  display: inline-flex;
  background: var(--amber);
  color: var(--bark);
  padding: .35rem .75rem;
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
}

.tourbe__feature h3 {
  color: var(--ivory);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  line-height: 1.1;
  margin-bottom: .75rem;
}

.tourbe__feature p {
  color: rgba(245, 241, 232, .82);
  font-size: var(--fs-sm);
  margin-bottom: 1.5rem;
  max-width: 50ch;
}

.tourbe__sub {
  display: grid;
  gap: 1.5rem;
}

.tourbe__sub-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 260px;
  background: var(--green-grass);
}

.tourbe__sub-card-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}

.tourbe__sub-card:hover .tourbe__sub-card-img { transform: scale(1.05); }

.tourbe__sub-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(31, 61, 43, .85) 100%);
}

.tourbe__sub-card-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.5rem;
  z-index: 1;
}

.tourbe__sub-card h4 {
  color: var(--ivory);
  font-size: 1.375rem;
  margin-bottom: .35rem;
}
.tourbe__sub-card p {
  color: rgba(245, 241, 232, .78);
  font-size: var(--fs-sm);
}

.tourbe__apps {
  margin-top: clamp(3rem, 5vw, 5rem);
  padding-top: 3rem;
  border-top: 1px solid rgba(245, 241, 232, .12);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
}

.tourbe__apps-label {
  font-size: var(--fs-xs);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, .55);
}

.tourbe__apps-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.5rem;
}

.tourbe__apps-list li {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 350;
  color: var(--ivory);
}
.tourbe__apps-list li::before {
  content: "•";
  color: var(--amber);
  margin-right: .75rem;
}

/* ---------- KIOSQUE ---------- */
.kiosque-block {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.kiosque-text { max-width: 520px; }

.kiosque-text .lead { margin-bottom: 2rem; }

.kiosque-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2.5rem;
}

.kiosque-pills span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1rem;
  background: var(--green-wash);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  color: var(--green-deep);
  font-weight: 500;
}

.kiosque-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.kiosque-cat {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--green-wash);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.kiosque-cat:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}

.kiosque-cat__img {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.kiosque-cat__img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-out);
}

.kiosque-cat:hover .kiosque-cat__img img { transform: scale(1.06); }

.kiosque-cat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 42, 28, 0) 35%, rgba(7, 42, 28, .35) 60%, rgba(7, 42, 28, .85) 100%);
  z-index: 1;
  pointer-events: none;
}

.kiosque-cat__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1.4rem 1.4rem;
}

.kiosque-cat__body h4 {
  font-size: 1.125rem;
  line-height: 1.2;
  margin-bottom: .3rem;
  color: var(--ivory);
}

.kiosque-cat__body p {
  font-size: var(--fs-sm);
  color: rgba(245, 241, 232, .85);
  line-height: 1.45;
}

.kiosque-cat__tag {
  position: absolute;
  top: 1rem; left: 1rem;
  z-index: 2;
  background: rgba(245, 241, 232, .92);
  backdrop-filter: blur(8px);
  padding: .3rem .75rem;
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-deep);
  border-radius: var(--r-full);
}

/* ---------- ENGRAIS & SEMENCES ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
}

.product-card__img {
  aspect-ratio: 1 / 1;
  background: var(--green-wash);
  position: relative;
  overflow: hidden;
}

.product-card__img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.product-card__body {
  padding: 1.25rem;
}

.product-card__cat {
  display: inline-block;
  font-size: var(--fs-micro);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-moss);
  font-weight: 600;
  margin-bottom: .5rem;
}

.product-card h4 {
  font-size: 1.125rem;
  line-height: 1.25;
  margin-bottom: .4rem;
}

.product-card p {
  font-size: var(--fs-sm);
  color: var(--ink-mute);
}

/* ---------- PARTNER SPOT (utilisé pour brinvert section) ---------- */
.partner-spot {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.partner-spot__content { max-width: 580px; }

.partner-spot__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--green-wash);
}

.partner-spot__visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

@media (max-width: 820px) {
  .partner-spot { grid-template-columns: 1fr; }
  .partner-spot__visual { aspect-ratio: 4 / 3; }
}

/* ---------- BRIN VERT — modèle MANIFESTE NUMÉROTÉ ---------- */
.manifesto-head {
  max-width: 780px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.manifesto-head .eyebrow { margin-bottom: 1rem; }

.manifesto-head h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.manifesto-head p {
  font-size: var(--fs-body);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.manifesto-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.manifesto-list {
  list-style: none;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.5rem;
}

.manifesto-list li { list-style: none; }

.manifesto-item {
  display: grid;
  grid-template-columns: 44px 1fr 22px;
  align-items: center;
  column-gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background var(--dur-base) var(--ease-out);
  text-decoration: none;
  color: inherit;
}

.manifesto-item::before {
  content: "";
  position: absolute;
  inset: 0 -1.5rem;
  background: var(--ivory);
  border-radius: var(--r-md);
  opacity: 0;
  z-index: -1;
  transition: opacity var(--dur-base) var(--ease-out);
}

.manifesto-item:hover::before { opacity: 1; }
.manifesto-item:hover { padding-inline: 1.5rem 0; transform: translateX(0); }
.manifesto-item:hover .manifesto-item__num { color: var(--rust); }
.manifesto-item:hover .manifesto-item__arrow { color: var(--rust); transform: translateX(6px) rotate(-45deg); }

.manifesto-item__num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 300;
  color: var(--ink-faint);
  font-variant-numeric: tabular-nums;
  transition: color var(--dur-base) var(--ease-out);
}

.manifesto-item__title {
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: .15rem;
  color: var(--green-deep);
}

.manifesto-item__desc {
  font-size: .8125rem;
  color: var(--ink-mute);
  line-height: 1.4;
  margin: 0;
  grid-column: 2;
}

.manifesto-item__arrow {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink-faint);
  text-align: right;
  transition: transform var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out);
}

@media (max-width: 1100px) {
  .manifesto-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .manifesto-head { grid-template-columns: 1fr; gap: 1.5rem; }
  .manifesto-list { grid-template-columns: 1fr; column-gap: 0; }
}

/* ---------- PROXTERM — modèle BENTO GRID ---------- */
.bento-head {
  max-width: 780px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.bento-head .eyebrow { margin-bottom: 1rem; }

.bento-head h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.bento-head p {
  font-size: var(--fs-body);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.bento-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
  gap: 1rem;
}

.bento-card {
  position: relative;
  grid-column: span 1;
  background: rgba(245, 241, 232, .05);
  border: 1px solid rgba(245, 241, 232, .10);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: .75rem;
  overflow: hidden;
  transition: background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}

.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(149, 221, 67, .12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
}
.bento-card:hover::before { opacity: 1; }

.bento-card:hover {
  background: rgba(245, 241, 232, .08);
  border-color: rgba(149, 221, 67, .35);
  transform: translateY(-4px);
}

.bento-card > * { position: relative; z-index: 1; }

.bento-card--feature {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, rgba(149, 221, 67, .12) 0%, rgba(245, 241, 232, .04) 100%);
  border-color: rgba(149, 221, 67, .22);
  padding: 1.75rem;
}

.bento-card--med {
  grid-column: span 2;
}

.bento-card--wide {
  grid-column: span 4;
}

.bento-card__num {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--amber-soft);
  z-index: 2;
}

.bento-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  background: rgba(149, 221, 67, .15);
  color: var(--amber-soft);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.bento-card--feature .bento-card__icon {
  width: 52px; height: 52px;
}

.bento-card h4 {
  color: var(--ivory);
  font-size: 1.125rem;
  line-height: 1.2;
  margin: 0;
}

.bento-card--feature h4 {
  font-size: clamp(1.375rem, 2vw, 1.75rem);
}

.bento-card p {
  color: rgba(245, 241, 232, .72);
  font-size: var(--fs-sm);
  line-height: 1.5;
  margin: 0;
}

.bento-card--feature p {
  font-size: 1rem;
  max-width: 42ch;
}

@media (max-width: 1100px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
  .bento-card, .bento-card--med { grid-column: span 1; }
  .bento-card--feature { grid-column: span 2; grid-row: auto; }
  .bento-card--wide { grid-column: span 2; }
}

@media (max-width: 820px) {
  .bento-head { grid-template-columns: 1fr; gap: 1rem; }
  .bento-head h2, .bento-head p, .bento-head .eyebrow, .bento-head .bento-actions {
    grid-column: 1; grid-row: auto;
  }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-card, .bento-card--feature, .bento-card--med, .bento-card--wide { grid-column: 1; }
  .bento-card--feature { padding: 1.5rem; }
}

/* ---------- PROXTERM — modèle PESTS GRID 3×2 ---------- */
.pests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.pest-card {
  position: relative;
  background: rgba(245, 241, 232, .04);
  border: 1px solid rgba(245, 241, 232, .10);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.pest-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 0%, rgba(149, 221, 67, .14) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
  pointer-events: none;
}

.pest-card:hover {
  background: rgba(245, 241, 232, .07);
  border-color: rgba(149, 221, 67, .35);
  transform: translateY(-4px);
}
.pest-card:hover::before { opacity: 1; }

.pest-card__top {
  position: relative;
  padding: 1.1rem 1.25rem .85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(245, 241, 232, .08);
}

.pest-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-style: italic;
  font-weight: 300;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: var(--amber-soft);
  opacity: .85;
}

.pest-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: rgba(149, 221, 67, .14);
  color: var(--amber-soft);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}

.pest-card:hover .pest-card__icon {
  background: rgba(149, 221, 67, .25);
  transform: rotate(-8deg) scale(1.05);
}

.pest-card__body {
  position: relative;
  padding: 1rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.pest-card__body h4 {
  color: var(--ivory);
  font-size: 1rem;
  line-height: 1.2;
  margin: 0;
}

.pest-card__body p {
  color: rgba(245, 241, 232, .68);
  font-size: .8125rem;
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 1100px) {
  .pests-grid { grid-template-columns: repeat(2, 1fr); }
}

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

/* ---------- ENTRETIEN GAZON (services) ---------- */
.services-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
}

/* Variante inversée : grid à gauche, texte à droite */
.services-layout--reverse {
  grid-template-columns: 1.2fr 1fr;
}
.services-layout--reverse > :first-child { order: 2; }
.services-layout--reverse > :last-child  { order: 1; }

@media (max-width: 820px) {
  .services-layout--reverse {
    grid-template-columns: 1fr !important;
  }
  .services-layout--reverse > :first-child { order: 1; }
  .services-layout--reverse > :last-child  { order: 2; }
}

.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  align-content: start;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem 1.1rem;
  background: var(--ivory);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  transition: background var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}

.service-item:hover {
  background: var(--green-wash);
  border-color: transparent;
  transform: translateX(4px);
}

.service-item__icon {
  width: 32px; height: 32px;
  border-radius: var(--r-full);
  background: var(--green-deep);
  color: var(--amber-soft);
  display: grid; place-items: center;
  flex-shrink: 0;
}

.service-item h4 {
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: .2rem;
  color: var(--green-deep);
}

.service-item p {
  font-size: .875rem;
  color: var(--ink-mute);
  line-height: 1.45;
}

/* ---------- PARTNER BADGE (utilisé pour brinvert, tholano) ---------- */
.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem 1.1rem;
  background: var(--green-wash);
  border: 1px solid rgba(86, 160, 46, .25);
  border-radius: var(--r-full);
  font-size: var(--fs-sm);
  color: var(--ink-soft);
}

.partner-badge strong {
  color: var(--green-deep);
  font-weight: 600;
}

/* ---------- EXTERMINATION (partenaire) ---------- */
.exterm {
  background: var(--bark);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.exterm::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 80% at 90% 50%, rgba(200, 144, 47, .15) 0%, transparent 50%);
}

.exterm .container { position: relative; z-index: 1; }

.exterm-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.exterm h2 {
  color: var(--ivory);
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1.25rem;
}

.exterm h2 em {
  font-style: italic;
  color: var(--amber-soft);
  font-weight: 300;
}

.exterm p {
  color: rgba(245, 241, 232, .76);
  margin-bottom: 1.5rem;
  font-size: var(--fs-lg);
}

.exterm-partner {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.25rem;
  background: rgba(245, 241, 232, .08);
  border: 1px solid rgba(245, 241, 232, .12);
  border-radius: var(--r-full);
  margin-bottom: 2rem;
  font-size: var(--fs-sm);
}

.exterm-partner strong {
  color: var(--ivory);
  font-weight: 600;
}

.exterm-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem 1.5rem;
  margin-bottom: 2rem;
}

.exterm-list li {
  font-size: var(--fs-sm);
  color: rgba(245, 241, 232, .78);
  display: flex; align-items: center;
  gap: .5rem;
}

.exterm-list li::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber-soft);
}

.exterm-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--green-deep);
}

.exterm-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

.exterm-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(58, 42, 28, .7) 100%);
}

/* ---------- TÉMOIGNAGES ---------- */
.testimonials {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.testimonials__bg {
  position: absolute;
  inset: -15% 0;
  background-image: url("../assets/images/bg-grass.jpg");
  background-size: cover;
  background-position: center;
  z-index: -2;
  will-change: transform;
  pointer-events: none;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 42, 28, .88) 0%, rgba(7, 42, 28, .72) 40%, rgba(7, 42, 28, .82) 100%);
  z-index: -1;
  pointer-events: none;
}

.testimonials h2,
.testimonials .eyebrow { color: var(--ivory); }
.testimonials .eyebrow::before { background: var(--amber-soft); opacity: .85; }

.testimonials .testi-card {
  background: rgba(245, 241, 232, .96);
  backdrop-filter: blur(6px);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.testi-card__quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.7;
  color: var(--amber);
  height: 1.5rem;
  font-style: italic;
  font-weight: 300;
}

.testi-card__text {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  line-height: 1.45;
  color: var(--green-deep);
  font-weight: 350;
  letter-spacing: -.005em;
  flex-grow: 1;
}

.testi-card__author {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.testi-card__avatar {
  width: 44px; height: 44px;
  border-radius: var(--r-full);
  background: var(--green-wash);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--green-deep);
  flex-shrink: 0;
}

.testi-card__author-name {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--ink);
  display: block;
  line-height: 1.2;
}

.testi-card__author-role {
  font-size: var(--fs-xs);
  color: var(--ink-mute);
}

/* ---------- LOGO CAROUSEL (clients) ---------- */
.clients-section {
  background: var(--linen);
  overflow: hidden;
}

.logo-carousel {
  position: relative;
  overflow: hidden;
  padding-block: 1.5rem;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.logo-carousel__track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  /* Pas d'animation CSS — translation pilotée par JS via rAF (vraiment infini) */
}

.logo-carousel:hover .logo-carousel__track {
  animation-play-state: paused;
}

@keyframes carousel-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(var(--carousel-distance, -50%), 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .logo-carousel__track { animation: none; }
}

.logo-carousel__item {
  flex-shrink: 0;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.25rem;
  text-decoration: none;
}

.logo-carousel__item img {
  max-height: 100%;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: .85;
  filter: grayscale(1) opacity(0.7);
  transition: opacity var(--dur-base) var(--ease-out), filter var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}

.logo-carousel__item:hover img,
.logo-carousel__item:focus-visible img {
  opacity: 1;
  filter: none;
  transform: scale(1.06);
}

@media (max-width: 820px) {
  .logo-carousel__track { animation-duration: 28s; }
  .logo-carousel__item { height: 64px; padding: 0 1.5rem; }
  .logo-carousel__item img { max-width: 130px; }
}

/* ---------- (ancienne) client-logos — dépréciée ---------- */
.client-logos {
  margin-top: clamp(3rem, 5vw, 5rem);
  padding-top: 3rem;
  border-top: 1px solid var(--line);
  text-align: center;
}

.client-logos__label {
  font-size: var(--fs-xs);
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 2rem;
}

.client-logos__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem 4rem;
  align-items: center;
  opacity: .65;
}

.client-logos__row span {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-style: italic;
  font-weight: 350;
  color: var(--ink-soft);
}

/* ---------- CTA FINAL ---------- */
.final-cta {
  background: var(--green-deep);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 100%, rgba(200, 144, 47, .18) 0%, transparent 60%);
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
  margin-inline: auto;
}

.final-cta h2 {
  color: var(--ivory);
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -.035em;
  margin-bottom: 1.5rem;
}

.final-cta h2 em {
  font-style: italic;
  color: var(--amber-soft);
  font-weight: 300;
}

.final-cta p {
  color: rgba(245, 241, 232, .78);
  font-size: var(--fs-lg);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-inline: auto;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.final-cta__contact {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 241, 232, .15);
}

.final-cta__contact-item {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: rgba(245, 241, 232, .85);
  font-size: var(--fs-sm);
}

.final-cta__contact-item strong {
  color: var(--ivory);
  font-weight: 500;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--bark);
  color: rgba(245, 241, 232, .7);
  padding-top: clamp(4rem, 7vw, 6rem);
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 241, 232, .1);
}

/* Footer enrichi : 4 colonnes (Brand + Nav + Coordonnées + Heures) */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245, 241, 232, .1);
}

.footer-col--brand { max-width: 320px; }

.footer-tagline {
  margin-top: 1.25rem;
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: rgba(245, 241, 232, .68);
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber-soft);
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  list-style: none;
}

.footer-col a {
  font-size: var(--fs-sm);
  color: rgba(245, 241, 232, .75);
  transition: color var(--dur-fast) var(--ease-out);
  display: inline-block;
}
.footer-col a:hover { color: var(--ivory); }

.footer-col address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  font-size: var(--fs-sm);
  color: rgba(245, 241, 232, .75);
  line-height: 1.5;
}

.footer-hours { color: rgba(245, 241, 232, .75); font-size: var(--fs-sm); }
.footer-hours li { color: inherit; }

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-col--brand { max-width: 100%; }
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .brand { color: var(--ivory); margin-bottom: 1.25rem; }
.footer-brand .brand__mark { background: var(--amber); color: var(--bark); }

.footer-brand p {
  color: rgba(245, 241, 232, .65);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber-soft);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.footer-col a {
  font-size: var(--fs-sm);
  color: rgba(245, 241, 232, .7);
  transition: color var(--dur-fast) var(--ease-out);
}
.footer-col a:hover { color: var(--ivory); }

.footer-col address {
  font-style: normal;
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: rgba(245, 241, 232, .7);
}

.footer-partners {
  margin-top: 2.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(245, 241, 232, .08);
  border-bottom: 1px solid rgba(245, 241, 232, .08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2.5rem;
}

.footer-partners__label {
  font-size: var(--fs-xs);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber-soft);
  font-weight: 600;
}

.footer-partners__list {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 2rem;
  align-items: center;
}

.footer-partners__list a {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 350;
  color: rgba(245, 241, 232, .82);
  transition: color var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
}

.footer-partners__list a:hover {
  color: var(--amber-soft);
}

.footer-partners__list a > span {
  font-family: var(--font-body);
  font-size: .75rem;
  font-style: normal;
  opacity: .6;
  transition: transform var(--dur-fast) var(--ease-out);
}

.footer-partners__list a:hover > span {
  transform: translate(2px, -2px);
  opacity: 1;
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: rgba(245, 241, 232, .45);
}

.socials {
  display: flex;
  gap: .75rem;
}

.socials a {
  width: 36px; height: 36px;
  border-radius: var(--r-full);
  border: 1px solid rgba(245, 241, 232, .15);
  display: grid; place-items: center;
  color: rgba(245, 241, 232, .65);
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.socials a:hover {
  background: var(--amber);
  color: var(--bark);
  border-color: var(--amber);
}

/* ---------- À PROPOS — spécifique ---------- */
.page-hero {
  padding-top: calc(var(--header-h) + 5rem);
  padding-bottom: clamp(4rem, 7vw, 6rem);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.page-hero__inner {
  max-width: 880px;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: var(--fs-display);
  line-height: .98;
  letter-spacing: -.035em;
  font-weight: 350;
  margin-bottom: 1.5rem;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--amber);
  font-weight: 300;
}

.page-hero .lead { max-width: 580px; }

.about-story {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: stretch;
}

.about-story__banner {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--green-wash);
  box-shadow: var(--sh-md);
  min-height: 100%;
  display: flex;
}

.about-story__banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: left center;
}

.about-story__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.about-story__text-head h2 {
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  line-height: 1.05;
  margin-top: .75rem;
  margin-bottom: 1.25rem;
}

.about-story__text-body > * + * {
  margin-top: 1rem;
}

.about-story__text-body p {
  font-size: var(--fs-body);
  line-height: 1.6;
}

@media (max-width: 820px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-story__banner {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }
  /* Zoom léger sur mobile pour cropper le logo Brin Vert en bas à droite */
  .about-story__banner img {
    transform: scale(1.12);
    transform-origin: left top;
  }
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--line);
}

.about-stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  line-height: 1;
  color: var(--green-deep);
  font-weight: 350;
  margin-bottom: .5rem;
  display: block;
}
.about-stat .num em { font-style: italic; color: var(--amber); font-weight: 300; }
.about-stat .num em.green-pct { color: var(--green-sage); }

.about-stat .lbl {
  font-size: var(--fs-xs);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  padding: 2.5rem 2rem;
  background: var(--ivory);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
}

.value-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-style: italic;
  font-weight: 300;
  color: var(--amber);
  line-height: .8;
  margin-bottom: 1.25rem;
  display: block;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: .75rem;
}

.value-card p {
  font-size: var(--fs-sm);
  line-height: 1.55;
}

.about-place {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: stretch;
}

.about-place__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-place__content .eyebrow { margin-bottom: 1rem; }

.about-place__content h2 {
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.about-place__content p {
  font-size: var(--fs-body);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-place__content p:last-child { margin-bottom: 0; }

.about-place__visual {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--green-wash);
  box-shadow: var(--sh-md);
  min-height: 100%;
  display: flex;
}

.about-place__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 820px) {
  .about-place {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-place__visual {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.team-card__img {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--green-wash);
  margin-bottom: 1rem;
  position: relative;
}

.team-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}

.team-card:hover .team-card__img img { transform: scale(1.04); }

.team-card h4 {
  font-size: 1.125rem;
  margin-bottom: .25rem;
}

.team-card p {
  font-size: var(--fs-sm);
  color: var(--ink-mute);
}

/* ---------- CONTACT — spécifique ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
}

.contact-form {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.75rem, 3vw, 2.5rem);
}

.contact-form h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-row--2 {
  grid-template-columns: 1fr 1fr;
}

.form-field {
  position: relative;
}

.form-field label {
  display: block;
  font-size: var(--fs-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: .5rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--linen);
  font-size: var(--fs-body);
  color: var(--ink);
  font-family: var(--font-body);
  transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green-moss);
  background: var(--ivory);
  box-shadow: 0 0 0 3px rgba(45, 85, 54, .12);
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-note {
  font-size: var(--fs-xs);
  color: var(--ink-mute);
}

.contact-info {
  padding-top: 1rem;
}

.contact-info h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 1.5rem;
}

.contact-info .lead { margin-bottom: 2.5rem; }

.contact-block {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.contact-block:last-child { border-bottom: 1px solid var(--line); }

.contact-block__icon {
  width: 40px; height: 40px;
  border-radius: var(--r-full);
  background: var(--green-wash);
  display: grid; place-items: center;
  color: var(--green-deep);
}

.contact-block h4 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-bottom: .35rem;
}

.contact-block p, .contact-block a {
  font-size: 1.0625rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.45;
}

.contact-block a:hover { color: var(--green-moss); }

.map-block {
  margin-top: clamp(3rem, 5vw, 5rem);
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: var(--green-wash);
  position: relative;
}

.map-block iframe {
  width: 100%; height: 100%; border: 0;
}

.commercial-banner {
  margin-top: clamp(3rem, 5vw, 5rem);
  background: var(--green-deep);
  color: var(--ivory);
  border-radius: var(--r-lg);
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.commercial-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(200, 144, 47, .18), transparent 60%);
}

.commercial-banner > * { position: relative; z-index: 1; }

.commercial-banner h3 {
  color: var(--ivory);
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  margin-bottom: 1rem;
}
.commercial-banner h3 em { color: var(--amber-soft); font-style: italic; font-weight: 300; }

.commercial-banner p {
  color: rgba(245, 241, 232, .78);
  margin-bottom: 1.5rem;
}

.commercial-banner__actions {
  text-align: right;
}

/* ---------- PLACEHOLDERS IMAGES ---------- */
.ph-image {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--green-wash);
  background-image:
    repeating-linear-gradient(45deg, rgba(31, 61, 43, .04) 0 12px, transparent 12px 24px);
  color: var(--green-moss);
}

.ph-image::before {
  content: attr(data-placeholder);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--green-deep);
  opacity: .55;
}

.ph-image[data-on-dark]::before { color: var(--ivory); opacity: .55; }
.ph-image[data-on-dark] { background-color: rgba(245, 241, 232, .04); }

/* ---------- ANIMATIONS — états initiaux ---------- */
[data-anim] { opacity: 0; }

[data-anim="fade-up"]     { transform: translateY(40px); }
[data-anim="fade-up-sm"]  { transform: translateY(20px); }
[data-anim="fade-right"]  { transform: translateX(-40px); }
[data-anim="fade-left"]   { transform: translateX(40px); }
[data-anim="scale"]       { transform: scale(.92); }

.split-line { overflow: hidden; display: inline-block; line-height: inherit; }
.split-line > span { display: inline-block; transform: translateY(110%); }

.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  line-height: inherit;
  padding-bottom: .05em;
}
.word-wrap > .word-inner {
  display: inline-block;
  will-change: transform;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .tourbe__grid { grid-template-columns: 1fr; }
  .tourbe__sub { grid-template-columns: 1fr 1fr; }

  /* Hero — passe en colonne unique (tablette) */
  .hero__container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .hero__content,
  .hero__form-card,
  .hero__meta {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  .hero__form-card {
    max-width: 100%;
    justify-self: stretch;
    align-self: auto;
    margin-bottom: 2rem;
  }
  .hero__visual { min-height: 380px; margin-top: 1rem; }
}

@media (max-width: 820px) {
  :root { --header-h: 84px; }
  .nav-main, .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }

  /* Boutons et badges : wrap autorisé sur mobile pour éviter l'overflow */
  .btn { white-space: normal; text-align: center; }
  .btn--lg { width: 100%; }
  .partner-badge { flex-wrap: wrap; max-width: 100%; }
  .partner-badge span { word-break: break-word; }
  .link-arrow { flex-wrap: wrap; }

  /* Mobile nav drawer — animation via JS direct */
  .nav-mobile {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--header-h);
    bottom: 0;
    background: var(--green-deep);
    z-index: 99;
    padding: 2.5rem var(--container-pad);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition:
      transform .42s cubic-bezier(.16, 1, .3, 1),
      opacity .35s ease,
      visibility 0s linear .42s;
  }
  .nav-mobile a {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--ivory);
    padding: .5rem 0;
    border-bottom: 1px solid rgba(245, 241, 232, .12);
    transition: color var(--dur-fast) var(--ease-out);
  }
  .nav-mobile a:hover { color: var(--amber-soft); }
  .nav-mobile .btn {
    margin-top: 1.5rem;
    align-self: stretch;
    width: 100%;
    text-align: center;
    justify-content: center;
    white-space: normal;
    box-sizing: border-box;
    font-family: var(--font-body);
    font-size: var(--fs-body);
    border-bottom: none !important;
  }
  .nav-mobile a:not(.btn) {
    font-size: clamp(1.5rem, 6vw, 2rem);
    box-sizing: border-box;
    max-width: 100%;
  }
  .nav-mobile-phone {
    margin-top: auto;
    color: rgba(245, 241, 232, .7);
    font-size: var(--fs-sm);
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 241, 232, .12);
  }
  .nav-mobile-phone strong { color: var(--amber-soft); display: block; font-size: 1.5rem; margin-top: .25rem; }

  /* Hero compact */
  .hero { min-height: auto; padding-bottom: 3rem; }
  .hero__content { padding-block: 2rem 0; }
  .hero__visual { min-height: 280px; }
  .hero__watermark { font-size: 32vw; bottom: -2vw; }
  .hero__meta { gap: 1.5rem 2rem; padding-top: 1.5rem; }
  .hero__cue { display: none; }

  .tourbe__head { grid-template-columns: 1fr; gap: 1.5rem; }
  .tourbe__sub { grid-template-columns: 1fr; }
  .tourbe__apps { grid-template-columns: 1fr; gap: 1.5rem; }
  .kiosque-block { grid-template-columns: 1fr; }
  .kiosque-categories { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .services-layout { grid-template-columns: 1fr; }
  .services-list { grid-template-columns: 1fr; }
  .exterm-layout { grid-template-columns: 1fr; }
  .exterm-list { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .contact-layout { grid-template-columns: 1fr; }
  .commercial-banner { grid-template-columns: 1fr; text-align: left; }
  .commercial-banner__actions { text-align: left; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  /* Section numbers plus discrets sur mobile */
  .section-num {
    font-size: clamp(2.5rem, 14vw, 4rem);
    top: 1rem;
    right: 1rem;
  }

  /* Marquees plus petites */
  .marquee { padding: 1rem 0; }
  .marquee__group span { font-size: 1.125rem; }
  .marquee__group { gap: 1.5rem; padding-right: 1.5rem; }
  .marquee__group .dot { width: 8px; height: 8px; }

  /* Headers de sections — taille réduite */
  .section-head h2 { font-size: clamp(1.75rem, 5vw, 2.25rem); }
  .manifesto-head h2,
  .bento-head h2,
  .about-place__content h2 { font-size: clamp(1.75rem, 5vw, 2.25rem); }

  /* Hero form card — compact mobile */
  .hero__form-card { padding: 1.25rem; }
  .hero__form-card-title { font-size: 1.375rem; }

  /* Container padding réduit */
  .container { padding-inline: 1.25rem; }
  .section { padding-block: 3rem; }

  /* Tourbe feature solo — moins de min-height */
  .tourbe__feature--solo { min-height: 420px; }
  .tourbe__feature-content { padding: 1.5rem; }

  /* Logo plus petit dans le hero du form/badge */
  .hero__form-card-tag { font-size: var(--fs-micro); padding: .35rem .7rem; }
}

@media (max-width: 540px) {
  .usp-grid { grid-template-columns: 1fr; }
  .kiosque-categories { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .form-row--2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero__meta { gap: 1rem; flex-direction: column; align-items: flex-start; }
  .hero__meta-item { width: 100%; }
  .hero__meta-item .num { font-size: 1.75rem; }
  .about-stats { grid-template-columns: 1fr; }

  /* Hero title size on small screens */
  .hero__title { font-size: clamp(2rem, 9vw, 2.75rem); margin-bottom: 1rem; }
  .hero__eyebrow { margin-bottom: .75rem; }
  .hero__lead { margin-bottom: 1.25rem; }
  .hero__cta { margin-bottom: 1.5rem; gap: .75rem; }
  .display { font-size: clamp(2.25rem, 9vw, 3rem); }

  /* Footer top empile bien */
  .footer-top { align-items: flex-start; }
  .footer-contact { flex-direction: column; align-items: flex-start; gap: .35rem; }

  /* Footer partners compact */
  .footer-partners { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .footer-partners__list { gap: .75rem 1.5rem; }

  /* Page-hero compact */
  .page-hero { padding-top: calc(var(--header-h) + 2.5rem); padding-bottom: 2.5rem; }
  .page-hero h1 { font-size: clamp(2rem, 9vw, 2.5rem); }

  /* Bento head taille mobile */
  .bento-head .partner-badge { font-size: var(--fs-xs); }
  .bento-actions { flex-direction: column; align-items: stretch; }
  .bento-actions .btn { width: 100%; }
  .manifesto-actions { flex-direction: column; align-items: stretch; }

  /* Service items mobile */
  .service-item h4 { font-size: .95rem; }
  .pest-card__num { font-size: 1.75rem; }
  .pest-card__top { padding: .85rem 1rem .7rem; }
  .pest-card__body { padding: .85rem 1rem 1rem; }

  /* Carousel partner logos plus compact */
  .footer-partners__list a { font-size: 1rem; }

  /* Final CTA mobile */
  .final-cta__actions { flex-direction: column; align-items: stretch; }
  .final-cta__actions .btn { width: 100%; }
  .final-cta__contact { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* Hero form fields */
  .hero-form__field span { font-size: 10px; }
  .hero-form__field input,
  .hero-form__field textarea,
  .hero-form__field select { padding: .65rem .8rem; font-size: .875rem; }

  /* Tourbe apps list — column */
  .tourbe__apps-list { flex-direction: column; gap: .75rem; }
  .tourbe__apps-list li::before { display: none; }

  /* Cards 3D tilt désactivé sur small screens (perf + UX touch) */
  .usp-card, .pest-card, .kiosque-cat, .value-card, .testi-card, .service-item {
    transform: none !important;
  }
}

/* =================================================================
   DISTINCTIVE LAYER — éléments éditoriaux & micro-interactions
   ================================================================= */

/* ---------- GRAIN TEXTURE (atmosphère subtile) ---------- */
.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* ---------- SCROLL PROGRESS BAR ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 200;
  pointer-events: none;
  background: rgba(7, 42, 28, .04);
}
.scroll-progress__bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green-deep) 0%, var(--amber) 100%);
  transform-origin: left center;
  will-change: transform;
}

/* ---------- MARQUEE TICKER (bandeau défilant) ---------- */
.marquee {
  background: var(--green-deep);
  color: var(--ivory);
  padding: 1.5rem 0;
  overflow: hidden;
  position: relative;
  border-block: 1px solid rgba(245, 241, 232, .08);
}

.marquee--light {
  background: var(--cream);
  color: var(--green-deep);
  border-color: var(--line);
}

.marquee__inner {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
  flex-shrink: 0;
}

.marquee__group span {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -.01em;
  white-space: nowrap;
}

.marquee__group span em {
  font-style: normal;
  color: var(--amber-soft);
  font-weight: 500;
}
.marquee--light .marquee__group span em { color: var(--rust); }

.marquee__group .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber-soft);
  flex-shrink: 0;
}
.marquee--light .marquee__group .dot { background: var(--rust); }

@keyframes marquee-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__inner { animation: none; }
}

/* Custom cursor désactivé — curseur natif conservé */

/* ---------- HERO WATERMARK ---------- */
.hero__watermark {
  position: absolute;
  bottom: -3vw;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 22rem);
  font-weight: 300;
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1, "opsz" 144;
  line-height: 1;
  letter-spacing: -.06em;
  color: rgba(245, 241, 232, .04);
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}

/* ---------- BIG SECTION NUMBERS (éditorial) ---------- */
.section-num {
  position: absolute;
  top: clamp(2rem, 5vw, 4rem);
  right: clamp(1.5rem, 4vw, 3rem);
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 200;
  font-style: italic;
  line-height: .8;
  letter-spacing: -.05em;
  color: rgba(7, 42, 28, .06);
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.section--moss .section-num,
.tourbe .section-num,
.final-cta .section-num {
  color: rgba(245, 241, 232, .07);
}

/* ---------- IMAGE REVEAL (clip-path on scroll) ---------- */
.reveal-image {
  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
  transition: clip-path 1.4s cubic-bezier(.76, 0, .24, 1);
}

.reveal-image.is-revealed {
  clip-path: inset(0 0% 0 0);
  -webkit-clip-path: inset(0 0% 0 0);
}

/* ---------- MAGNETIC BUTTONS ---------- */
.btn--magnetic {
  will-change: transform;
}

.btn--magnetic span.btn-inner {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  transition: transform var(--dur-base) var(--ease-out);
}

/* ---------- STAT COUNTERS ---------- */
.hero__meta-item .num {
  font-variant-numeric: tabular-nums;
}

/* ---------- A11Y ---------- */
:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  [data-anim] { opacity: 1 !important; transform: none !important; }
  .split-line > span { transform: none !important; }
}
