/* ============================================================
   LE GONG VERT — STYLE PRINCIPAL
   Ets Arkenciel | Bénin
   ============================================================ */

/* --- Variables de couleurs --- */
:root {
  --green-primary: #2d6a4f;
  --green-light: #74c69d;
  --green-dark: #1b4332;
  --earth: #c8853a;
  --earth-light: #e8a45a;
  --cream: #f8f3e8;
  --cream-dark: #ede8d8;
  --white: #ffffff;
  --text-dark: #1a2e1a;
  --text-medium: #4a5c4a;
  --text-light: #7a8c7a;
  --shadow: 0 8px 40px rgba(29, 67, 50, 0.12);
  --shadow-hover: 0 20px 60px rgba(29, 67, 50, 0.22);
  --radius: 12px;
  --radius-sm: 6px;
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
ul {
  list-style: none;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typographie --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.2;
  color: var(--text-dark);
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}
h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}
p {
  margin-bottom: 1rem;
}
.section-label {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 1rem;
}

/* --- Preloader --- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}
#preloader.hidden {
  opacity: 0;
  pointer-events: none;
}
.preloader-leaf {
  width: 60px;
  height: 60px;
  border: 3px solid var(--green-light);
  border-top-color: var(--green-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* --- Boutons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-primary);
  color: var(--white);
  border-color: var(--green-primary);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-primary);
  border-color: var(--white);
}
.btn-earth {
  background: var(--earth);
  color: var(--white);
  border-color: var(--earth);
}
.btn-earth:hover {
  background: #b0742e;
  border-color: #b0742e;
  transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent;
  color: var(--green-primary);
  border-color: var(--green-primary);
}
.btn-outline-dark:hover {
  background: var(--green-primary);
  color: var(--white);
}

/* --- Badges --- */
.badge {
  display: inline-block;
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
}
.badge-new {
  background: var(--earth);
  color: var(--white);
}
.badge-best {
  background: var(--green-primary);
  color: var(--white);
}
.badge-bio {
  background: var(--green-light);
  color: var(--green-dark);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
  transition: var(--transition);
}
.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 30px rgba(29, 67, 50, 0.1);
  backdrop-filter: blur(10px);
}
.site-nav.scrolled .nav-inner {
  height: 64px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}
.logo-sub {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.site-nav.scrolled .logo-brand {
  color: var(--green-primary);
}
.site-nav.scrolled .logo-sub {
  color: var(--text-light);
}

/* Menu Desktop */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-menu a {
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  transition: var(--transition);
}
.site-nav.scrolled .nav-menu a {
  color: var(--text-dark);
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--green-light);
}
.site-nav.scrolled .nav-menu a:hover {
  color: var(--green-primary);
  background: var(--cream);
}
.nav-cta {
  margin-left: 16px;
}
.nav-cta a {
  background: var(--green-primary) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
}
.nav-cta a:hover {
  background: var(--green-dark) !important;
}

/* Menu Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.site-nav.scrolled .nav-toggle span {
  background: var(--text-dark);
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--white);
  flex-direction: column;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  color: var(--text-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.mobile-menu a:hover {
  color: var(--green-primary);
  padding-left: 12px;
}

/* WhatsApp flottant */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}
@keyframes pulse-wa {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 48px;
  height: 48px;
  background: var(--green-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  cursor: pointer;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
}

/* ============================================================
   SECTION HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  transform: scale(1.05);
  animation: hero-zoom 20s ease-in-out infinite alternate;
}
@keyframes hero-zoom {
  to {
    transform: scale(1);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 67, 50, 0.85) 0%,
    rgba(29, 67, 50, 0.6) 60%,
    rgba(200, 133, 58, 0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-content .section-label {
  color: var(--green-light);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.15;
}
.hero h1 span {
  color: var(--green-light);
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 540px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-dot {
  width: 8px;
  height: 8px;
  background: var(--green-light);
  border-radius: 50%;
  animation: scroll-bounce 1.5s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.5;
  }
}

/* ============================================================
   TRUST BAR (Stats)
   ============================================================ */
.trust-bar {
  background: var(--green-primary);
  padding: 40px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item {
  padding: 16px;
}
.trust-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.trust-number {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.trust-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-light);
  margin-top: 4px;
}

/* ============================================================
   SECTION GÉNÉRIQUE
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto;
}
.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-light));
  margin: 20px auto 0;
  border-radius: 3px;
}

/* ============================================================
   BRAND STORY (2 colonnes)
   ============================================================ */
.brand-story {
  background: var(--cream);
  padding: 100px 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-image-wrap {
  position: relative;
}
.story-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 20px 80px 20px 80px;
  box-shadow: var(--shadow);
}
.story-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 120px;
  height: 120px;
  background: var(--earth);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  box-shadow: 0 8px 30px rgba(200, 133, 58, 0.4);
}
.story-badge-year {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
}
.story-badge-text {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.story-content h2 {
  margin-bottom: 24px;
}
.story-content p {
  color: var(--text-medium);
  margin-bottom: 20px;
}
.story-values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}
.story-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid rgba(29, 67, 50, 0.12);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-primary);
}

/* ============================================================
   PRODUCTS GRID
   ============================================================ */
.products-section {
  background: var(--white);
  padding: 100px 0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.product-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img {
  transform: scale(1.08);
}
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 67, 50, 0.75);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-overlay {
  opacity: 1;
}
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
}
.product-info {
  padding: 20px;
}
.product-category {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--earth);
  margin-bottom: 6px;
}
.product-name {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.product-desc {
  font-size: 0.875rem;
  color: var(--text-medium);
}

/* ============================================================
   INGREDIENTS SECTION
   ============================================================ */
.ingredients-section {
  background: var(--green-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.ingredients-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(116, 198, 157, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.ingredients-section .section-header h2 {
  color: var(--white);
}
.ingredients-section .section-header p {
  color: rgba(255, 255, 255, 0.7);
}
.ingredients-section .section-label {
  color: var(--green-light);
}
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.ingredient-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  transition: var(--transition);
}
.ingredient-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
}
.ingredient-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}
.ingredient-name {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}
.ingredient-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}
.ingredient-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 4px 14px;
  background: rgba(116, 198, 157, 0.15);
  border: 1px solid rgba(116, 198, 157, 0.3);
  color: var(--green-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.why-section {
  background: var(--cream);
  padding: 100px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.why-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.why-card:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--green-primary);
  box-shadow: var(--shadow);
}
.why-icon-wrap {
  width: 72px;
  height: 72px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 24px;
  transition: var(--transition);
}
.why-card:hover .why-icon-wrap {
  background: var(--green-primary);
}
.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.875rem;
  color: var(--text-medium);
  margin: 0;
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section {
  background: var(--white);
  padding: 100px 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.blog-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}
.blog-card-cat {
  position: absolute;
  top: 16px;
  left: 16px;
}
.blog-card-body {
  padding: 24px;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.blog-card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-dark);
  transition: var(--transition);
}
.blog-card:hover .blog-card-title {
  color: var(--green-primary);
}
.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-medium);
  margin-bottom: 20px;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-primary);
}
.blog-read-more:hover {
  gap: 14px;
}

/* ============================================================
   CTA NEWSLETTER
   ============================================================ */
.cta-section {
  background: var(--green-primary);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.cta-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(200, 133, 58, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.cta-section .section-label {
  color: var(--green-light);
}
.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 580px;
  margin: 0 auto 40px;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.newsletter-form input:focus {
  border-color: var(--green-light);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .logo-brand,
.footer-brand .logo-sub {
  color: var(--white);
}
.footer-brand .logo-sub {
  color: rgba(255, 255, 255, 0.5);
}
.footer-desc {
  font-size: 0.875rem;
  line-height: 1.8;
  margin: 20px 0;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-social {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.footer-social:hover {
  background: var(--green-primary);
  color: var(--white);
}
.footer-col h4 {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}
.footer-col ul a:hover {
  color: var(--green-light);
  padding-left: 6px;
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-info-item {
  display: flex;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}
.footer-info-item span:first-child {
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   PAGE HEADER (pages internes)
   ============================================================ */
.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(
    135deg,
    var(--green-dark) 0%,
    var(--green-primary) 100%
  );
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  opacity: 0.15;
}
.page-header-content {
  position: relative;
  z-index: 1;
}
.page-header h1 {
  color: var(--white);
  margin-bottom: 16px;
}
.page-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb a {
  color: var(--green-light);
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.timeline-section {
  background: var(--cream);
  padding: 100px 0;
}
/* Timeline styles relocated to the end of file */

.founder-section {
  background: var(--white);
  padding: 100px 0;
}
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.founder-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 20px 80px 20px 80px;
  box-shadow: var(--shadow);
}
.founder-quote {
  margin: 32px 0;
  padding: 24px 32px;
  border-left: 4px solid var(--green-primary);
  background: var(--cream);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--green-dark);
}

.mvv-section {
  background: var(--cream);
  padding: 100px 0;
}
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.mvv-card {
  padding: 48px 32px;
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mvv-card.mission {
  background: var(--green-primary);
  color: var(--white);
}
.mvv-card.vision {
  background: var(--text-dark);
  color: var(--white);
}
.mvv-card.values {
  background: var(--earth);
  color: var(--white);
}
.mvv-card h3 {
  color: var(--white);
  margin-bottom: 16px;
}
.mvv-card p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
.mvv-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
}
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}
.values-list span {
  padding: 4px 14px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 60px;
}
.filter-btn {
  padding: 10px 24px;
  border: 2px solid rgba(29, 67, 50, 0.2);
  border-radius: 50px;
  background: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-medium);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: var(--white);
}
.products-full {
  background: var(--cream);
  padding: 80px 0 100px;
}
.category-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--green-light);
}
.products-category {
  margin-bottom: 80px;
}
.products-grid-full {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.product-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.product-detail-img {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.product-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-detail-card:hover .product-detail-img img {
  transform: scale(1.06);
}
.product-detail-body {
  padding: 20px;
}
.product-detail-body .product-category {
  color: var(--earth);
}
.product-detail-body .product-name {
  font-size: 1rem;
  margin-bottom: 8px;
}
.product-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}
.benefit-tag {
  padding: 3px 10px;
  background: var(--cream);
  border-radius: 12px;
  font-size: 0.7rem;
  color: var(--green-primary);
  font-weight: 600;
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-full {
  background: var(--cream);
  padding: 80px 0 100px;
}
.blog-header-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.blog-featured-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.blog-featured-card:hover {
  box-shadow: var(--shadow);
}
.blog-featured-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-featured-body {
  padding: 32px;
}
.blog-featured-title {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.blog-featured-title:hover {
  color: var(--green-primary);
}
.blog-sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-sidebar-card:hover {
  box-shadow: var(--shadow);
}
.blog-sidebar-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-sidebar-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-sidebar-body {
  padding: 20px;
  flex: 1;
}
.blog-all-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Article intérieur */
.article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px 100px;
}
.article-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 16px;
  color: var(--green-dark);
}
.article-content h3 {
  font-size: 1.2rem;
  margin: 28px 0 12px;
}
.article-content ul {
  margin: 16px 0 16px 24px;
  list-style: disc;
}
.article-content ul li {
  color: var(--text-medium);
  margin-bottom: 8px;
}
.article-cta-box {
  background: var(--cream);
  border-left: 4px solid var(--green-primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px;
  margin: 40px 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section {
  background: var(--cream);
  padding: 80px 0 100px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-form-wrap {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-title {
  font-size: 1.5rem;
  margin-bottom: 32px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-medium);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-primary);
  background: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 140px;
}
.form-success {
  display: none;
  padding: 20px 24px;
  background: rgba(116, 198, 157, 0.15);
  border: 1px solid var(--green-light);
  border-radius: var(--radius-sm);
  color: var(--green-dark);
  font-weight: 600;
  margin-top: 16px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-info-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-dark);
}
.contact-info-item:last-child {
  border-bottom: none;
}
.contact-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.contact-info-text {
  flex: 1;
}
.contact-info-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.contact-info-val {
  font-size: 0.925rem;
  color: var(--text-dark);
  font-weight: 500;
}
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  height: 280px;
  background: var(--cream-dark);
}
.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.whatsapp-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: #25d366;
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}
.whatsapp-cta:hover {
  background: #1ebd5c;
  transform: translateY(-2px);
}
.partner-banner {
  background: var(--green-dark);
  color: var(--white);
  padding: 60px;
  border-radius: var(--radius);
  text-align: center;
  margin-top: 60px;
}

/* ============================================================
   LEGAL PAGE
   ============================================================ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 24px 100px;
  background: var(--white);
}
.legal-content h2 {
  font-size: 1.3rem;
  color: var(--green-dark);
  margin: 40px 0 16px;
}
.legal-content p,
.legal-content li {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.8;
}
.legal-content ul {
  margin: 12px 0 12px 24px;
  list-style: disc;
}

/* ============================================================
   ANIMATIONS (Intersection Observer)
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-delay-1 {
  transition-delay: 0.1s;
}
.animate-delay-2 {
  transition-delay: 0.2s;
}
.animate-delay-3 {
  transition-delay: 0.3s;
}
.animate-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 9000;
  background: var(--text-dark);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(200%);
  transition: transform 0.4s ease;
  max-width: 900px;
  margin: 0 auto;
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-banner p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  flex: 1;
}
.cookie-banner a {
  color: var(--green-light);
  text-decoration: underline;
}
.cookie-accept {
  padding: 10px 24px;
  border-radius: 50px;
  background: var(--green-primary);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
}
.cookie-accept:hover {
  background: var(--green-light);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .products-grid-full {
    grid-template-columns: repeat(3, 1fr);
  }
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 768px) {
  .nav-menu,
  .nav-cta {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn {
    justify-content: center;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .story-badge {
    display: none;
  }
  .products-grid {
    grid-template-columns: 1fr;
  }
  .ingredients-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .blog-header-grid {
    grid-template-columns: 1fr;
  }
  .products-grid-full {
    grid-template-columns: repeat(2, 1fr);
  }
  .mvv-grid {
    grid-template-columns: 1fr;
  }
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .blog-all-grid {
    grid-template-columns: 1fr 1fr;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  /* Timeline Responsive Clean */
}

@media (max-width: 480px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .products-grid-full {
    grid-template-columns: 1fr;
  }
  .blog-all-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   MODIFICATIONS VISUELLES : LOGO & ÉQUIPE
   ============================================================ */

/* Logo Styling */
.logo-img {
    height: 44px; /* Correspond à l'ancienne icône 🌿 */
    width: auto;
    object-fit: contain;
    display: block;
    transition: all 0.35s ease;
}

/* Ajustement au scroll */
.site-nav.scrolled .logo-img {
    height: 38px;
}

.footer-logo {
    display: block;
    margin-bottom: 20px;
}

.footer-logo .logo-img {
    height: 60px;
}

/* Team Section Styles */
.team-card {
    transition: var(--transition);
    border: 1px solid rgba(29, 67, 50, 0.05);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover) !important;
    border-color: var(--green-light);
}

.team-card img {
    transition: transform 0.5s ease;
}

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

/* Responsive Equipe */
@media (max-width: 991px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr !important;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .nav-logo .logo-img {
        height: 40px;
    }

    .footer-logo .logo-img {
        height: 50px;
    }
}

/* ============================================================
   FINITION RESPONSIVE GLOBALE (Chirurgicale)
   ============================================================ */
@media (max-width: 768px) {
    section {
        padding: 60px 0 !important; /* Réduction des paddings de section */
    }
    
    .container {
        padding: 0 20px !important;
    }

    .hero {
        height: auto !important;
        min-height: 100vh;
        padding: 100px 0 60px !important;
    }

    .section-header {
        margin-bottom: 40px !important;
    }

    .section-header h2 {
        font-size: 1.8rem !important;
    }

    /* Sécurité contre le scroll horizontal */
    body, html {
        overflow-x: hidden !important;
        width: 100%;
        position: relative;
    }
}

@media (max-width: 480px) {
    section {
        padding: 40px 0 !important;
    }

    .trust-grid {
        grid-template-columns: 1fr !important; /* 1 col sur petit mobile */
        gap: 15px !important;
    }

    .hero h1 {
        font-size: 1.8rem !important;
    }

    .btn {
        width: 100% !important;
        padding: 12px 20px !important;
    }

    .nav-logo .logo-img {
        height: 36px !important;
    }
    
    /* Organigramme mobile : On s'assure que le connecteur reste centré */
    .team-section .team-grid {
        margin-top: 10px !important;
    }
    .categories-grid {
      grid-template-columns: 1fr 1fr !important;
    }
}

/* ============================================================
   TIMELINE — RÈGLES DÉFINITIVES
   ============================================================ */

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--green-light);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 24px;
  margin-bottom: 60px;
  align-items: start;
}
.timeline-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-dot {
  width: 20px;
  height: 20px;
  background: var(--green-primary);
  border: 4px solid var(--white);
  border-radius: 50%;
  margin: 4px auto 0;
  box-shadow: 0 0 0 3px var(--green-light);
}
.timeline-year-label {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-primary);
  text-align: center;
}
.timeline-content {
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.timeline-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.timeline-content p {
  font-size: 0.875rem;
  color: var(--text-medium);
  margin: 0;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px !important;
    transform: none !important;
  }
  .timeline-item {
    display: block !important;
    padding-left: 52px !important;
    position: relative !important;
    margin-bottom: 36px !important;
  }
  .timeline-item .timeline-empty {
    display: none !important;
  }
  .timeline-item .timeline-center {
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    width: 40px !important;
    align-items: center !important;
  }
  .timeline-dot {
    width: 16px !important;
    height: 16px !important;
    margin: 0 auto 4px !important;
  }
  .timeline-year-label {
    font-size: 0.85rem !important;
    text-align: center !important;
    line-height: 1.2 !important;
  }
  .timeline-content {
    width: 100% !important;
    display: block !important;
  }
}

