/* Maraca Agro Norte - feuille unique.
 * Tokens : :root (couleurs, rayons, ombres, animations).
 * Blocs : lazy-bg → chrome → hero → sections → footer → reveal → micro-animations. */

:root {
  /* ========== Couleurs : fond & neutres ========== */
  --dark-purple-acai: #06010a;
  --light-purple-acai: #392042;
  --lighter-purple-acai: #7a4e8b;
  --color-page-bg: var(--dark-purple-acai);
  --white: #ffffff;
  --black-bar: rgba(22, 16, 12, 0.92);
  --beige: #d4c4a8;
  --beige-dark: #8b7a5e;
  --form-field-text: #222;
  --form-placeholder: #777;

  /* ========== Couleurs : teck (doré → brun patiné) ========== */
  --teak-honey: #d4a574;
  --teak-golden: #b88956;
  --teak-warm: #8b5e3c;
  --teak-rich: #5c3d28;
  --teak-deep: #3d291f;
  --teak-ink: #1f1612;
  --teak-overlay-rgb: 92, 61, 40;

  /* ========== Couleurs : verts marque ========== */
  --green-bright: #6da544;
  --green-forest: #3d6b3a;
  --green-footer: #2d4a2e;
  --green-lime: #7cb342;

  /* ========== Couleurs : tiers / CTA externes ========== */
  --color-whatsapp: #25d366;

  /* ========== Typographie ========== */
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-script: "Great Vibes", cursive;

  /* ========== Rayons & ombres réutilisés ========== */
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.35);
  --shadow-lift: 0 28px 70px rgba(0, 0, 0, 0.4);
  --shadow-lift-muted: 0 28px 70px rgba(0, 0, 0, 0.38);
  --shadow-cta-hover: 0 12px 28px rgba(0, 0, 0, 0.25);
  --border-subtle-light: 1px solid rgba(255, 255, 255, 0.1);
  --inset-highlight-top: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  --ring-on-image: 0 0 0 1px rgba(255, 255, 255, 0.1);
  --ring-card-faint: 0 0 0 1px rgba(255, 255, 255, 0.06);

  /* ========== Layout : header & chrome ========== */
  --header-h: 72px;
  --mobile-top-h: 48px;
  --site-header-reveal-duration: 2s;
  --site-header-reveal-delay: 1.5s;
  --mobile-topbar-reveal-duration: 1.2s;
  --mobile-topbar-reveal-delay: 0.5s;
  --chrome-reveal-easing: cubic-bezier(0.1, 1, 1, 1);

  /* ========== Animations : scroll reveal (sections .js-reveal) ========== */
  --reveal-dur: 2s;
  --reveal-delay: 0.1s;
  --reveal-dur-mobile: 1.1s;
  --reveal-delay-mobile: 0.06s;
  --reveal-dur-mobile-slow: 1s;
  --reveal-delay-mobile-slow: 0.28s;
  --reveal-dur-mobile-bounce: 0.9s;
  --reveal-delay-mobile-bounce: 0.22s;

  /* ========== IntersectionObserver (lu par main.js) ========== */
  --io-root-margin-mobile: 0px 0px -10% 0px;
  --io-root-margin-desktop: 0px 0px -16% 0px;
  --io-threshold-mobile: 0.1;
  --io-threshold-desktop: 0.15;

  /* ========== Typo mobile (html font-size scale) ========== */
  --mobile-root-font-scale: 0.92;

  /* ========== Photos (.lazy-bg__img) & sections adjacentes ========== */
  --photo-filter-base: saturate(78%) contrast(1.05);
  --section-bg-filter: var(--photo-filter-base);
  --section-solid-bg: var(--dark-purple-acai);
  --section-feather: clamp(22px, 5vh, 30px);

  /* ========== Texte animé : mots / épellation ========== */
  --word-stagger: 0.06s;
  --word-stagger-title: 0.9s;
  --footer-brand-word-stagger: 0.9s;
  --footer-acai-char-stagger: 0.5s;
  --footer-discover-spell-start-delay: 0s;
  --footer-discover-word-stagger: 0.25s;
  --footer-acai-spell-start-delay: 1s;
  --footer-brand-spell-start-delay: 2s;
  --footer-acai-char-opacity-dur: 0.7s;
  --footer-acai-char-transform-dur: 0.7s;
  --footer-acai-char-filter-dur: 0.8s;
  --spell-adventure-word-stagger: 0.2s;
  --spell-amazon-product-word-stagger: 0.45s;
  --spell-best-acai-char-stagger: 0.15s;
  --spell-best-acai-char-opacity-dur: 0.1s;
  --spell-best-acai-char-transform-dur: 0.1s;
  --spell-best-acai-char-filter-dur: 0.1s;

}

/* Héritage : --phrase-word-stagger lu par .text-reveal-slow .split-word */
.text-reveal-slow--adventure {
  --phrase-word-stagger: var(--spell-adventure-word-stagger);
}

.text-reveal-slow--amazon-product {
  --phrase-word-stagger: var(--spell-amazon-product-word-stagger);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  overflow-x: hidden;
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: calc(var(--mobile-top-h) + 64px);
    font-size: calc(100% * var(--mobile-root-font-scale));
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white);
  background: var(--color-page-bg);
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

/* Masque le bas de page tant que la vidéo hero n’est pas prête (évite le flash des photos) */
html.hero-boot main > *:not(.hero),
html.hero-boot .site-footer {
  visibility: hidden;
}

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

a {
  color: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Lazy-loaded section photos (<img loading="lazy">) --- */
.lazy-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.lazy-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: var(--photo-filter-base);
}

/* Image plus haute + léger défilement (JS met --parallax-y) - effet type parallax */
.lazy-bg--parallax .lazy-bg__img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 150%;
  max-width: none;
  object-fit: cover;
  transform: translate(-50%, calc(-50% + var(--parallax-y, 0px)));
  will-change: transform;
}

.lazy-bg__img--focus-top {
  object-position: center 20%;
}

.lazy-bg--in-cell {
  position: relative;
}

.lazy-bg--in-cell .lazy-bg__img {
  position: absolute;
  inset: 0;
}

.lazy-bg--rounded {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

/* --- Floating WhatsApp --- */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: 20px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.06);
  box-shadow: var(--shadow-lift);
}

/* --- Retour en haut (miroir du WhatsApp, visible près du bas de page) --- */
.back-to-top {
  position: fixed;
  left: 16px;
  bottom: 20px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--teak-honey) 0%, var(--teak-warm) 55%, var(--teak-rich) 100%);
  color: var(--teak-ink);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.92);
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.2s ease;
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.back-to-top.is-visible:hover,
.back-to-top.is-visible:focus-visible {
  box-shadow: var(--shadow-lift-muted);
  transform: translateY(-2px) scale(1.04);
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

/* --- Header actions WhatsApp --- */
.wa-header {
  width: 53px;
  height: 53px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-header:hover {
  transform: scale(1.06);
  box-shadow: var(--shadow-lift);
}

/* --- Mobile top bar --- */
.mobile-topbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 150;
  height: var(--mobile-top-h);
  background: var(--black-bar);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  height: 100%;
  padding: 0 12px;
  max-width: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  .site-header {
    animation: site-header-ltr-reveal var(--site-header-reveal-duration) var(--chrome-reveal-easing)
      var(--site-header-reveal-delay) both;
  }

  .mobile-topbar {
    animation: site-header-ltr-reveal var(--mobile-topbar-reveal-duration) var(--chrome-reveal-easing)
      var(--mobile-topbar-reveal-delay) both;
  }
}

.lang-flags {
  display: flex;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.flag {
  width: 26px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
}

button.lang-switch__btn.flag {
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.lang-switch__btn.flag:hover,
.lang-switch__btn.flag:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  outline: none;
}

.lang-switch__btn.flag:focus-visible {
  box-shadow: 0 0 0 2px var(--green-bright);
}

.lang-switch__btn.flag.is-active {
  background: rgba(255, 255, 255, 0.32);
  color: var(--white);
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.35);
}

.lang-switch--desktop {
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .lang-switch--desktop {
    display: none;
  }
}

.social-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-inline a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.social-inline a:nth-child(1) {
  background: #1877f2;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.social-inline a:nth-child(2) {
  background: linear-gradient(
    45deg,
    #f58529 0%,
    #dd2a7b 45%,
    #8134af 70%,
    #515bd4 100%
  );
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.social-inline a:nth-child(3) {
  background: #ff0000;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.social-inline a:hover {
  filter: brightness(1.1);
}

@media (min-width: 901px) {
  .social-inline__more {
    display: flex;
  }
}



.icon-btn {
  border: none;
  background: transparent;
  color: var(--white);
  padding: 8px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  line-height: 0;
}

.icon-btn:hover,
.icon-btn:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.icon-btn:focus-visible {
  box-shadow: 0 0 0 2px var(--green-bright);
}

@keyframes site-header-ltr-reveal {
  from {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    opacity: 0.94;
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
  }
}

/* --- Header / desktop nav --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(31, 22, 18, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header__bar {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 28px;
  min-height: var(--header-h);
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 22px;
}

.site-nav__brand {
  display: flex;
  align-items: center;
  margin-right: 2px;
}

.site-nav__logo-link {
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid transparent !important;
}

.site-nav__logo-link:hover,
.site-nav__logo-link:focus-visible {
  border-bottom-color: transparent !important;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  outline: none;
}

.site-nav__logo {
  height: 74px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
}

.site-nav__list a {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible {
  border-bottom-color: var(--green-bright);
  outline: none;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-login:hover {
  background: rgba(255, 255, 255, 0.08);
}

.lang-switch {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

.lang-switch__item.is-active {
  color: var(--white);
}

.lang-switch__sep {
  margin: 0 6px;
  opacity: 0.5;
}

/* --- Nav overlay mobile --- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 120;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 900px) {
  .mobile-topbar {
    display: block;
  }

  /*
   * Le nav est en position:fixed → il ne donne pas de hauteur au header.
   * Avec __actions masqué, la boîte du .site-header est quasi vide : le clip-path
   * de site-header-ltr-reveal découpe tout le drawer. On désactive clip + anim ici.
   */
  .site-header {
    top: var(--mobile-top-h);
    background: rgba(31, 22, 18, 0.78);
    z-index: 125;
    clip-path: none !important;
    animation: none !important;
    opacity: 1;
    overflow: visible;
  }

  .site-header__bar {
    min-height: 0;
    padding: 0;
    justify-content: flex-end;
  }

  .site-header__actions {
    display: none;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: min(320px, 88vw);
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(165deg, #2c2218 0%, var(--teak-ink) 100%);
    padding: calc(var(--mobile-top-h) + 24px) 24px 24px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 130;
    box-shadow: var(--shadow-soft);
    overflow-y: auto;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav__list {
    flex-direction: column;
    gap: 4px;
  }

  .site-nav__list a {
    display: block;
    padding: 14px 12px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    border-bottom: none;
  }

  .site-nav__list .site-nav__logo-link {
    display: flex;
    padding: 14px 12px;
  }

  .site-nav__list a:hover,
  .site-nav__list a:focus-visible {
    background: rgba(255, 255, 255, 0.06);
    border-bottom-color: transparent;
  }

  .menu-toggle {
    position: relative;
    z-index: 140;
  }
}

@media (min-width: 901px) {
  .menu-toggle {
    display: none;
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  z-index: 1;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 32px) 20px 48px;
  overflow: hidden;
  background-color: var(--dark-purple-acai);
}

@media (max-width: 900px) {
  .hero {
    padding: calc(var(--mobile-top-h) + 56px + 24px) 16px 32px;
  }
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--dark-purple-acai);
}

.hero__bg-video {
  position: absolute;
  left: 50%;
  top: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.hero--video-ready .hero__bg-video {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero__bg-video {
    display: none;
  }


}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(640px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__logo-wrap {
  margin: 0;
  line-height: 0;
}

.hero__logo-img {
  height: clamp(150px, 18vw, 250px);
  width: auto;
  max-width: min(300px, 92vw);
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 36px rgba(0, 0, 0, 0.5));
}

.hero__lead {
  margin: 0;
  max-width: 38rem;
  padding: 1.15rem 1.35rem;
  margin-bottom: 24px;
  font-size: clamp(0.95rem, 2.4vw, 1.1rem);
  line-height: 1.65;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
  background: rgba(8, 10, 12, 0.55);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 48px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__lead .hero__h1 {
  margin: 0 0 0.85rem;
  padding: 0;
  max-width: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1em;
  line-height: 1.65;
  letter-spacing: 0.02em;
  text-wrap: balance;
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero__lead-body {
  margin: 0;
  font-size: 1em;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero__lead-accent {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.2em;
  letter-spacing: 0.06em;
}

/* Mots découpés dans l’accent : dégradé (sans blur — lisibilité + animation bond) */
.hero__lead-accent .split-word {
  background: linear-gradient(
    115deg,
    var(--lighter-purple-acai) 0%,
    var(--lighter-purple-acai) 35%,
    var(--light-purple-acai) 50%,
    var(--lighter-purple-acai) 65%,
    var(--lighter-purple-acai) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.65));
}

/* Rebond léger en vague (gauche → droite), longue pause entre les cycles — voir .hero.hero--video-ready */
@keyframes hero-accent-word-bounce {
  0%,
  12%,
  100% {
    transform: translateY(0);
  }
  3% {
    transform: translateY(-7px);
  }
  7% {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__lead-accent .split-word {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: var(--teak-honey);
    filter: none;
    animation: none;
  }

  .hero__lead-accent {
    color: var(--teak-honey);
  }
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--white);
  background: var(--green-bright);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.hero__cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.hero__cta:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.logo-box {
  text-align: center;
  margin-bottom: 24px;
}

.logo-box--footer {
  margin: 0 auto 20px;
  display: inline-block;
  padding-top: 20px;
  padding-bottom: 30px;
}

.logo-box__text {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(3rem, 6vw, 4rem);
  letter-spacing: 0.12em;
  line-height: 1.05;
}

.logo-box__text--sm {
  font-weight: 900;
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  letter-spacing: 0.35em;
  margin-top: 6px;
  opacity: 0.95;
}

/* --- More than Açai --- */
.section-more {
  position: relative;
  min-height: 72vh;
  padding: 80px 20px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.section-more--parallax {
  overflow: hidden;
}

/* Fondus haut (depuis le hero sombre) / bas (vers bande claire suivante) */
.section-more.section-more--parallax::before,
.section-more.section-more--parallax::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: var(--section-feather);
  pointer-events: none;
  z-index: 1;
}

.section-more.section-more--parallax::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(31, 22, 18, 0.78), transparent);
}

.section-more.section-more--parallax::after {
  bottom: 0;
  background: linear-gradient(to bottom, transparent, var(--section-solid-bg));
}

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

.section-more__panel {
  position: relative;
  z-index: 2;
  background: rgba(var(--teak-overlay-rgb), 0.45);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 36px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);

  h2 {
    text-align: center;
  }
}

@media (max-width: 900px) {
  .section-more__panel {
    margin-left: auto;
    margin-right: auto;
  }
}

.heading-serif {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.2;
}

.section-more__panel p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.98rem;
}

.section-more__panel p:last-child {
  margin-bottom: 0;
}

.script-accent {
  font-family: var(--font-script);
  font-size: clamp(5rem, 6vw, 5rem);
  line-height: 1.1;
  text-align: center;
  margin: 0px auto 0;
  position: relative;
  z-index: 3;
  color: var(--white);
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.script-accent--on-image {
  margin-top: auto;
  padding-top: 48px;
}

/* Lisibilité sur la photo : « vitre » relief du trait script */
.script-accent--on-image.text-reveal-slow {
  padding-left: clamp(1rem, 4vw, 1.75rem);
  padding-right: clamp(1rem, 4vw, 1.75rem);
  padding-bottom: 1.15rem;
  max-width: min(920px, 94vw);
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.95),
    0 8px 32px rgba(0, 0, 0, 0.65),
    0 0 3px rgba(0, 0, 0, 0.9);
  -webkit-text-stroke: 0.75px rgba(0, 0, 0, 0.4);
}

/* « The best açai… » : .split-char-word (JS) = un mot = pas de coupure au milieu */
.script-accent--on-image.text-reveal-slow--best-acai {
  min-width: 0;
  max-width: min(920px, 100%);
}

.script-accent--on-image.text-reveal-slow--best-acai .split-char-word {
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .script-accent--on-image.text-reveal-slow--best-acai {
    font-size: clamp(5rem, 10.5vw, 5rem);
    line-height: 1.14;
  }
}

.script-accent--muted {
  opacity: 0.95;
  margin-bottom: 8px;
}

.script-accent--footer {
  font-size: clamp(5rem, 5vw, 5rem);
  margin-bottom: 24px;
}

.logo-box--footer .logo-box__text .split-word {
  letter-spacing: inherit;
}

/* --- Band sections (image + glass panel) --- */
.section-band {
  position: relative;
  min-height: 520px;
  padding: 72px 24px;
  display: flex;
  align-items: center;
}

/* Bande « solid purple » : marge crème, photo en cadre quasi plein écran, vitre centrée (transparence .glass-panel par défaut) */
.section-band--solid-purple {
  align-items: stretch;
  background-color: var(--section-solid-bg);
  color: var(--white);
  min-height: clamp(480px, 70vh, 720px);
  box-shadow:
    inset 0 1px 0 rgba(0, 0, 0, 0.04),
    inset 0 -1px 0 rgba(0, 0, 0, 0.03);
}

.section-band__solid-frame {
  position: absolute;
  z-index: 0;
  inset: clamp(12px, 2.4vw, 32px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.section-band--solid-purple::before,
.section-band--solid-purple::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: min(var(--section-feather), 120px);
  pointer-events: none;
  z-index: 1;
}

.section-band--solid-purple::before {
  top: 0;
  background: linear-gradient(to bottom, rgba(31, 22, 18, 0.04), transparent);
}

.section-band--solid-purple::after {
  bottom: 0;
  background: linear-gradient(to top, rgba(31, 22, 18, 0.035), transparent);
}

.section-band--solid-purple .section-band__layout--center {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  grid-template-columns: unset;
  gap: 0;
  min-height: 0;
}

.section-band--solid-purple .section-band__layout--center .glass-panel {
  justify-self: unset;
  grid-column: unset;
  max-width: min(440px, 92vw);
}

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

/* Fondus haut/bas entre bandes photo et bandes claires */
.section-band:has(> .section-band__bg.lazy-bg--parallax)::before,
.section-band:has(> .section-band__bg.lazy-bg--parallax)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: var(--section-feather);
  pointer-events: none;
  z-index: 1;
}

.section-band:has(> .section-band__bg.lazy-bg--parallax)::before {
  top: 0;
  background: linear-gradient(to bottom, var(--section-solid-bg), transparent);
}

.section-band:has(> .section-band__bg.lazy-bg--parallax)::after {
  bottom: 0;
  background: linear-gradient(to bottom, transparent, var(--section-solid-bg));
}

.section-band__layout {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.section-band__layout--left .glass-panel {
  justify-self: start;
}

.section-band__layout--right .glass-panel {
  justify-self: end;
  grid-column: 2;
}

.section-band__photo {
  border-radius: var(--radius-lg);
  min-height: 280px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.section-band__photo--worker {
  position: relative;
}

@media (max-width: 900px) {
  .section-band {
    min-height: 80vh;
    padding: 48px 16px;
  }

  .section-band__layout {
    grid-template-columns: 1fr;
  }

  .section-band__layout--right .glass-panel {
    grid-column: 1;
    justify-self: stretch;
  }

  .section-band__photo--worker {
    min-height: 220px;
  }

  .section-band--flip .section-band__layout--right .glass-panel {
    order: 0;
  }

  .section-band--solid-purple {
    min-height: min(62vh, 560px);
  }

  .section-band__solid-frame {
    inset: clamp(10px, 3.2vw, 20px);
  }
}

.glass-panel {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 10px;
  align-items: center;
  max-width: 440px;
  padding: 20px 22px 22px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.glass-panel .icon-circle {
  grid-column: 1;
  grid-row: 1;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.glass-panel h2 {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  align-self: center;
}

.glass-panel p {
  grid-column: 1 / -1;
  grid-row: 2;
}

.glass-panel .cert-row {
  grid-column: 1 / -1;
  grid-row: 3;
  margin-top: 12px;
}

.glass-panel--green {
  background: rgba(109, 165, 68, 0.45);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.glass-panel--teak {
  background: rgba(var(--teak-overlay-rgb), 0.45);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.glass-panel h2 {
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
  font-weight: 700;
  line-height: 1.2;
}

.glass-panel p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.96);
}

.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.cert-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cert-row li {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

/* --- Script bar : bandeau encadré (liseré page), jungle sombre + phrase script centrée --- */
.section-script-bar {
  position: relative;
  overflow: hidden;
  text-align: center;
  /* « Carte » inset : le fond body (teak-ink) crée le vide autour du bandeau */
  margin: clamp(20px, 4vw, 36px) clamp(14px, 4.5vw, 48px);
  border-radius: var(--radius-lg);
  min-height: clamp(4.75rem, 10vw, 6.5rem);
  padding: clamp(18px, 3.2vw, 30px) clamp(16px, 4vw, 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    var(--shadow-soft),
    var(--ring-card-faint),
    var(--inset-highlight-top);
}

.section-script-bar__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
}

.section-script-bar__bg .lazy-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  filter: var(--photo-filter-base) brightness(0.72) saturate(0.88);
}

.section-script-bar__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background:
    radial-gradient(ellipse 85% 140% at 50% 50%, rgba(25, 45, 32, 0.2) 0%, rgba(8, 14, 10, 0.75) 72%),
    linear-gradient(
      90deg,
      rgba(10, 16, 12, 0.94) 0%,
      rgba(18, 42, 28, 0.45) 28%,
      rgba(18, 42, 28, 0.45) 72%,
      rgba(10, 16, 12, 0.94) 100%
    ),
    linear-gradient(
      180deg,
      rgba(12, 22, 16, 0.9) 0%,
      rgba(6, 14, 10, 0.82) 50%,
      rgba(12, 22, 16, 0.9) 100%
    );
  pointer-events: none;
}

/* Filets dorés discrets haut / bas du bandeau */
.section-script-bar::before,
.section-script-bar::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  height: 1px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 165, 116, 0.35) 22%,
    rgba(255, 250, 240, 0.2) 50%,
    rgba(212, 165, 116, 0.35) 78%,
    transparent
  );
}

.section-script-bar::before {
  top: 10px;
}

.section-script-bar::after {
  bottom: 10px;
}

.section-script-bar__inner {
  position: relative;
  z-index: 3;
  max-width: min(960px, 92vw);
  margin: 0 auto;
}

.section-script-bar .script-accent {
  margin: 0;
  color: #fffef9;
  font-size: clamp(2.35rem, 5.8vw, 3.65rem);
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.85),
    0 8px 40px rgba(0, 0, 0, 0.55),
    0 0 28px rgba(0, 0, 0, 0.35);
}

@media (max-width: 900px) {
  .section-script-bar {
    margin: 14px 12px;
    min-height: clamp(4.5rem, 18vw, 5.75rem);
    padding: 16px 14px;
  }

  .section-script-bar::before {
    top: 8px;
  }

  .section-script-bar::after {
    bottom: 8px;
  }

  .section-script-bar .script-accent {
    font-size: clamp(2rem, 8vw, 2.85rem);
  }
}

/* --- Products (fond photo + voile chaud teck / forêt, aligné contact & bandes) --- */
.section-products {
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 8vw, 80px) clamp(20px, 4vw, 40px) clamp(56px, 9vw, 88px);
  color: var(--white);
}

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

.section-products__bg .lazy-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.section-products__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 90% 70% at 50% 20%, rgba(212, 165, 116, 0.12), transparent 55%),
    linear-gradient(
      180deg,
      var(--dark-purple-acai) 0%,
      rgba(61, 41, 28, 0.62) 38%,
      rgba(45, 74, 46, 0.55) 100%
    );
  pointer-events: none;
}

.section-products__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.heading-products {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}

.section-products .script-accent--muted {
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.section-products__lead {
  margin: 0 auto 28px;
  max-width: 560px;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
}

.section-products__shot {
  position: relative;
  min-height: clamp(300px, 42vw, 400px);
  max-width: min(420px, 88vw);
  margin-inline: auto;
  box-shadow: var(--shadow-soft), var(--ring-on-image);
}

/* --- Contact (même principe que .section-band__bg : photo plein cadre + contenu au-dessus) --- */
.section-contact {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 56px clamp(20px, 4vw, 40px) 72px;
  text-align: center;
  min-height: clamp(520px, 72vh, 880px);
  box-sizing: border-box;
  color: var(--white);
}

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

.section-contact__bg .lazy-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: var(--photo-filter-base);
}

.section-contact__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(45, 74, 46, 0.8) 0%,
    rgba(61, 107, 58, 0.58) 45%,
    rgba(45, 74, 46, 0.7) 100%
  );
  pointer-events: none;
}

.section-contact__main {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 440px;
}

.btn-join-outline {
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 14px 36px;
  border-radius: var(--radius-pill);
  margin-bottom: 40px;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-join-outline:hover {
  background: var(--white);
  color: var(--green-forest);
}

.contact-title {
  margin: 0 0 12px;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
}

.contact-title__script {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(2.5rem, 7vw, 4rem);
}

.contact-sub {
  margin: 0 0 28px;
  font-size: 1rem;
  opacity: 0.95;
}

.section-contact__form-wrap {
  width: 100%;
  max-width: 440px;
}

.contact-form {
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: none;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--form-field-text);
  background: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--form-placeholder);
}

.btn-confirm {
  margin-top: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  background: var(--teak-deep);
  color: var(--white);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-confirm:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-cta-hover);
}

.btn-confirm__mobile {
  display: none;
}

@media (max-width: 900px) {
  .section-contact {
    min-height: 50vh;
    padding: 48px 20px 64px;
  }

  .btn-confirm {
    background: var(--beige);
    color: var(--beige-dark);
    letter-spacing: 0.2em;
  }

  .btn-confirm__desktop {
    display: none;
  }

  .btn-confirm__mobile {
    display: inline;
  }
}

/* --- Footer --- */
.site-footer {
  position: relative;
  background: var(--green-footer);
  padding: 48px 24px 100px;
  text-align: center;
  overflow: hidden;
}

.site-footer__leaves-top,
.site-footer__leaves-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 48px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15), transparent);
}

.site-footer__leaves-top {
  top: 0;
}

.site-footer__leaves-bottom {
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.25), transparent);
}

.site-footer__products {
  position: relative;
  max-width: 840px;
  margin: 0 auto 28px;
  min-height: 240px;
  opacity: 0.95;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 20px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  filter: brightness(1.1);
}

/* Réseaux du footer : couleurs de marque (ordre HTML : Facebook, Instagram, YouTube) */

.site-footer .footer-social a:nth-child(1) {
  background: #1877f2;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.site-footer .footer-social a:nth-child(2) {
  background: linear-gradient(
    45deg,
    #f58529 0%,
    #dd2a7b 45%,
    #8134af 70%,
    #515bd4 100%
  );
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.site-footer .footer-social a:nth-child(3) {
  background: #ff0000;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.footer-find {
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: 0.06em;
}

.footer-contact {
  margin: 0 0 24px;
  line-height: 1.7;
}

.footer-contact a {
  text-decoration: none;
  display: inline-block;
}

.footer-legal {
  font-size: 0.75rem;
  opacity: 0.8;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.5;
}

/* --- Scroll reveal (voir data-reveal sur chaque <section> / footer) ---
   Vitesses globales : :root → --reveal-dur, --reveal-delay
   Variantes : fade-up | fade-in | slide-left | slide-right | zoom-in |
   blur-in | tilt-up | clip-up | fade-up-slow | bounce-in */
@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    transition: none !important;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .js-reveal {
    transition-property: opacity, transform, filter, clip-path;
    transition-duration: var(--reveal-dur);
    transition-delay: var(--reveal-delay);
    transition-timing-function: cubic-bezier(0.2, 0.85, 0.35, 1);
    will-change: opacity, transform;
  }

  .js-reveal.is-revealed {
    will-change: auto;
  }

  .js-reveal[data-reveal="fade-up"]:not(.is-revealed) {
    opacity: 0;
    transform: translateY(2.5rem);
  }

  .js-reveal[data-reveal="fade-in"]:not(.is-revealed) {
    opacity: 0;
  }

  .js-reveal[data-reveal="slide-left"]:not(.is-revealed) {
    opacity: 0;
    transform: translateX(-3rem);
  }

  .js-reveal[data-reveal="slide-right"]:not(.is-revealed) {
    opacity: 0;
    transform: translateX(3rem);
  }

  .js-reveal[data-reveal="zoom-in"]:not(.is-revealed) {
    opacity: 0;
    transform: scale(0.92) translateY(1.25rem);
  }

  .js-reveal[data-reveal="blur-in"]:not(.is-revealed) {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(1rem);
  }

  .js-reveal[data-reveal="blur-in"].is-revealed {
    filter: blur(0);
  }

  .js-reveal[data-reveal="tilt-up"]:not(.is-revealed) {
    opacity: 0;
    transform: perspective(1000px) rotateX(11deg) translateY(2rem);
    transform-origin: center 25%;
  }

  /* polygon : meilleure prise en charge que inset(%) pour l’animation (évite texte bloqué invisible) */
  .js-reveal[data-reveal="clip-up"]:not(.is-revealed) {
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  }

  .js-reveal[data-reveal="clip-up"].is-revealed {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }

  .js-reveal[data-reveal="fade-up-slow"] {
    --reveal-dur: 1.68s;
    --reveal-delay: 0.52s;
  }

  .js-reveal[data-reveal="fade-up-slow"]:not(.is-revealed) {
    opacity: 0;
    transform: translateY(3rem);
  }

  .js-reveal[data-reveal="bounce-in"] {
    transition-timing-function: cubic-bezier(0.34, 1.45, 0.64, 1);
    --reveal-dur: 1.28s;
    --reveal-delay: 0.44s;
  }

  .js-reveal[data-reveal="bounce-in"]:not(.is-revealed) {
    opacity: 0;
    transform: translateY(3rem) scale(0.94);
  }

  .js-reveal[data-reveal="bounce-in"].is-revealed {
    transform: translateY(0) scale(1);
  }

  /* Mots : apparition en cascade quand la section est révélée */
  .split-word {
    --stagger: var(--word-stagger);
    display: inline-block;
    opacity: 0;
    transform: translateY(0.42em);
    filter: blur(5px);
    transition:
      opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.68s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.55s ease;
    transition-delay: calc(var(--word-i, 0) * var(--stagger));
  }

  .split-word--title {
    --stagger: var(--word-stagger-title);
    transform: translateY(0.55em);
    filter: blur(6px);
  }

  .logo-box--footer .logo-box__text .split-word {
    --stagger: var(--footer-brand-word-stagger);
  }

  .text-reveal-slow .split-word {
    --stagger: var(--phrase-word-stagger, var(--footer-brand-word-stagger));
  }

  .logo-box--footer .logo-box__text--acai-letters .split-char {
    font-family: var(--font-serif);
    font-weight: 700;
    letter-spacing: 0.08em;
    --char-stagger: var(--footer-acai-char-stagger);
    transition:
      opacity var(--footer-acai-char-opacity-dur) cubic-bezier(0.25, 0.88, 0.32, 1),
      transform var(--footer-acai-char-transform-dur) cubic-bezier(0.22, 1, 0.36, 1),
      filter var(--footer-acai-char-filter-dur) ease;
    transition-delay: calc(var(--char-i, 0) * var(--char-stagger));
  }

  .contact-title.text-reveal-slow .contact-title__bold .split-word {
    font-family: var(--font-sans);
    font-weight: 700;
  }

  .contact-title.text-reveal-slow .contact-title__script .split-word {
    font-family: var(--font-script);
    font-weight: 400;
  }

  .heading-products.text-reveal-slow .split-word {
    font-family: var(--font-serif);
    font-weight: 700;
  }

  .section-script-bar .text-reveal-slow .split-word {
    font-family: var(--font-script);
    font-weight: 400;
  }

  .script-accent--on-image.text-reveal-slow--best-acai .split-char {
    font-family: var(--font-script);
    font-weight: 400;
    --char-stagger: var(--spell-best-acai-char-stagger);
    transition:
      opacity var(--spell-best-acai-char-opacity-dur) cubic-bezier(0.25, 0.88, 0.32, 1),
      transform var(--spell-best-acai-char-transform-dur) cubic-bezier(0.22, 1, 0.36, 1),
      filter var(--spell-best-acai-char-filter-dur) ease;
    transition-delay: calc(var(--char-i, 0) * var(--char-stagger));
  }

  .split-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.2em) scale(0.97);
    filter: blur(3px);
    transition:
      opacity 0.4s cubic-bezier(0.25, 0.88, 0.32, 1),
      transform 0.44s cubic-bezier(0.22, 1, 0.36, 1),
      filter 0.36s ease;
    transition-delay: calc(var(--char-i, 0) * var(--char-stagger, 0.05s));
  }

  .script-accent--footer.text-reveal-discover .split-char {
    font-family: var(--font-script);
    font-weight: 400;
    --char-stagger: var(--footer-discover-word-stagger);
  }

  /* Démarrage de l’épellation footer après --footer-*-spell-start-delay (texte invisible avant) */
  .site-footer.js-reveal.is-revealed .script-accent--footer.text-reveal-discover .split-char {
    transition-delay: calc(
      var(--footer-discover-spell-start-delay) + var(--char-i, 0) * var(--char-stagger)
    );
  }

  .site-footer.js-reveal.is-revealed .logo-box--footer .logo-box__text--acai-letters .split-char {
    transition-delay: calc(
      var(--footer-acai-spell-start-delay) + var(--char-i, 0) * var(--char-stagger)
    );
  }

  .site-footer.js-reveal.is-revealed .logo-box--footer .logo-box__text--sm .split-word {
    transition-delay: calc(var(--footer-brand-spell-start-delay) + var(--word-i, 0) * var(--stagger));
  }

  .js-reveal.is-revealed .split-char {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  .js-reveal.is-revealed .split-word,
  .section-script-bar.is-revealed .split-word,
  .hero.hero--video-ready .hero__lead .split-word {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  .hero.hero--video-ready .hero__lead .hero__lead-accent .split-word {
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.7));
    animation: hero-accent-word-bounce 4s cubic-bezier(0.34, 1.45, 0.64, 1) infinite;
    animation-delay: calc(var(--word-i, 0) * 0.1s);
  }
}

@media (max-width: 900px) and (prefers-reduced-motion: no-preference) {
  .js-reveal {
    --reveal-dur: var(--reveal-dur-mobile);
    --reveal-delay: var(--reveal-delay-mobile);
  }

  .js-reveal[data-reveal="fade-up-slow"] {
    --reveal-dur: var(--reveal-dur-mobile-slow);
    --reveal-delay: var(--reveal-delay-mobile-slow);
  }

  .js-reveal[data-reveal="bounce-in"] {
    --reveal-dur: var(--reveal-dur-mobile-bounce);
    --reveal-delay: var(--reveal-delay-mobile-bounce);
  }
}

/* --- CTA / WhatsApp / footer : micro-animations « cliquez ici » --- */
@keyframes cta-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  }
  45% {
    transform: translateY(-8px) scale(1.065);
    box-shadow:
      0 26px 56px rgba(0, 0, 0, 0.48),
      0 0 0 12px rgba(109, 165, 68, 0.28),
      0 0 28px rgba(109, 165, 68, 0.35);
  }
}

@keyframes cta-outline-pulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
  50% {
    transform: translateY(-6px);
    box-shadow:
      0 0 0 9px rgba(255, 255, 255, 0.32),
      0 12px 36px rgba(0, 0, 0, 0.22);
  }
}

@keyframes cta-solid-nudge {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  50% {
    transform: translateY(-5px) scale(1.03);
    box-shadow:
      0 20px 44px rgba(0, 0, 0, 0.38),
      0 0 0 3px rgba(255, 255, 255, 0.12);
  }
}

@keyframes wa-invite {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: var(--shadow-soft);
  }
  35% {
    transform: translateY(-12px) scale(1.14);
    box-shadow:
      0 32px 64px rgba(0, 0, 0, 0.45),
      0 0 0 8px rgba(37, 211, 102, 0.35),
      0 0 36px rgba(37, 211, 102, 0.45);
  }
}

@keyframes footer-icon-wiggle {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  20% {
    transform: translateY(-6px) rotate(-10deg) scale(1.06);
  }
  50% {
    transform: translateY(-4px) rotate(8deg) scale(1.04);
  }
  80% {
    transform: translateY(-7px) rotate(-6deg) scale(1.05);
  }
}

@keyframes footer-link-breathe {
  0%,
  100% {
    opacity: 0.78;
    transform: scale(1);
    filter: brightness(1);
    text-shadow: 0 0 0 transparent;
  }
  50% {
    opacity: 1;
    transform: scale(1.045);
    filter: brightness(1.18) saturate(1.15);
    text-shadow:
      0 0 18px rgba(255, 255, 255, 0.35),
      0 0 36px rgba(109, 165, 68, 0.22);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .cta-alive {
    animation-name: cta-breathe;
    animation-duration: 2.2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
  }

  .site-header .cta-alive {
    animation: none;
  }

  .wa-header {
    animation: none;
  }

  .cta-alive:hover,
  .cta-alive:focus-visible {
    animation-play-state: paused;
  }

  .hero .hero__cta.cta-alive:hover,
  .hero .hero__cta.cta-alive:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.06);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  }

  .cta-alive--outline {
    animation-name: cta-outline-pulse;
    animation-duration: 2.1s;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

  .cta-alive--outline:hover,
  .cta-alive--outline:focus-visible {
    transform: translateY(-2px);
  }

  .cta-alive--solid {
    animation-name: cta-solid-nudge;
    animation-duration: 2.2s;
  }

  .cta-alive--solid:hover,
  .cta-alive--solid:focus-visible {
    animation-play-state: paused;
  }

  .wa-float {
    animation: wa-invite 2.15s ease-in-out infinite;
  }

  .wa-float:hover,
  .wa-float:focus-visible {
    animation-play-state: paused;
  }

  .site-footer .footer-social a {
    animation: footer-icon-wiggle 2.55s ease-in-out infinite;
  }

  .site-footer .footer-social a:nth-child(2) {
    animation-delay: 0.25s;
  }

  .site-footer .footer-social a:nth-child(3) {
    animation-delay: 0.5s;
  }

  .site-footer .footer-social a:nth-child(4) {
    animation-delay: 0.75s;
  }

  .site-footer .footer-social a:hover,
  .site-footer .footer-social a:focus-visible {
    animation-play-state: paused;
    filter: brightness(1.15);
  }

  .site-footer .footer-contact a {
    animation: footer-link-breathe 2.8s ease-in-out infinite;
    transform-origin: center;
  }

  .site-footer .footer-contact a:nth-of-type(2) {
    animation-delay: 0.4s;
  }

  .site-footer .footer-contact a:hover,
  .site-footer .footer-contact a:focus-visible {
    animation: none;
    opacity: 1;
    transform: scale(1.06);
    filter: brightness(1.12);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  }
}

@media (prefers-reduced-motion: reduce) {
  .split-word,
  .split-char {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .lazy-bg--parallax .lazy-bg__img {
    transform: translate(-50%, -50%) !important;
    will-change: auto;
    filter: var(--photo-filter-base);
  }

  .site-header,
  .mobile-topbar {
    animation: none !important;
    clip-path: none !important;
    opacity: 1 !important;
  }

  .cta-alive,
  .wa-float,
  .wa-header,
  .site-footer .footer-social a,
  .site-footer .footer-contact a {
    animation: none !important;
  }
}
