/* ========================================
   LODIMA FRANCE — Design System
   Distributeur de Miels d'Espagne Premium
   ======================================== */

/* --- CSS Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Palette — tons ambrés chauds + contraste pro */
  --amber-50: #FFF8E1;
  --amber-100: #FFECB3;
  --amber-200: #FFD54F;
  --amber-300: #FFCA28;
  --amber-400: #FFC107;
  --amber-500: #FFB300;
  --amber-600: #FF8F00;
  --amber-700: #E65100;
  --amber-800: #BF360C;

  --honey: #D4920B;
  --honey-dark: #A36F08;
  --honey-light: #F5D67B;
  --honey-text: #8B5E00;
  --honey-glow: rgba(212, 146, 11, 0.15);

  --earth-900: #1A1207;
  --earth-800: #2C1E0F;
  --earth-700: #3E2B14;
  --earth-600: #5C4023;
  --earth-500: #7A5C3A;
  --earth-400: #9E8462;
  --earth-300: #C4AD8A;
  --earth-200: #E8DCC8;
  --earth-100: #F5F0E8;
  --earth-50: #FAFAF6;

  --white: #FFFFFF;
  --black: #0A0806;

  --success: #2E7D32;
  --error: #C62828;

  /* Typographie */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Tailles */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  /* Espacements */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Rayons */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Ombres */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.05);
  --shadow-glow: 0 0 40px rgba(212, 146, 11, 0.2);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 150ms;
  --duration-base: 300ms;
  --duration-slow: 500ms;

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1400px;
  --header-height: 80px;
}

/* --- Base styles --- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  font-size: 16px;
  color-scheme: light dark;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--earth-800);
  background-color: var(--earth-50);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-fast) var(--ease-out);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Utility classes --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--wide {
  max-width: var(--container-wide);
}

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

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: 9999;
  padding: var(--space-3) var(--space-6);
  background: var(--earth-900);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: top var(--duration-fast) var(--ease-out);
}

.skip-link:focus {
  top: var(--space-4);
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--honey);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--honey), var(--amber-400));
  z-index: 1001;
  transition: width 0.1s linear;
  pointer-events: none;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--earth-900);
  text-wrap: balance;
}

.heading-xl {
  font-size: clamp(var(--text-4xl), 5vw, var(--text-7xl));
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.heading-lg {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  letter-spacing: -0.01em;
}

.heading-md {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
}

.heading-sm {
  font-size: clamp(var(--text-xl), 2vw, var(--text-2xl));
}

.subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--earth-500);
}

.overline {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--honey-text);
}

.body-lg {
  font-size: var(--text-lg);
  line-height: 1.8;
}

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

.highlight {
  background: linear-gradient(120deg, var(--honey-glow) 0%, transparent 100%);
  padding: 0 var(--space-1);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-base);
  line-height: 1;
  border-radius: var(--radius-full);
  transition: all var(--duration-base) var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity var(--duration-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn:active {
  transform: translateY(1px) scale(0.98);
  transition-duration: var(--duration-fast);
}

.btn--primary:active {
  box-shadow: 0 2px 8px rgba(212, 146, 11, 0.3);
}

.btn--primary {
  background: linear-gradient(135deg, var(--honey), var(--amber-600));
  color: var(--earth-900);
  box-shadow: 0 4px 15px rgba(212, 146, 11, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 146, 11, 0.4);
}

.btn--secondary {
  background: transparent;
  color: var(--earth-800);
  border: 2px solid var(--earth-300);
}

.btn--secondary:hover {
  border-color: var(--honey);
  color: var(--honey-text);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--earth-900);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--earth-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn--outline:hover {
  border-color: var(--honey-light);
  color: var(--honey-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 146, 11, 0.2);
}

.btn--lg {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-lg);
}

.btn--sm {
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-sm);
}

.btn .arrow {
  transition: transform var(--duration-fast) var(--ease-out);
}

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

/* --- Header / Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: all var(--duration-base) var(--ease-out);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-8);
}

.header--transparent {
  background: transparent;
}

.header--scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 0 rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.header--scrolled .nav__link {
  color: var(--earth-800);
}

.header--scrolled .logo__text {
  color: var(--earth-900);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  z-index: 1001;
}

.logo__icon {
  width: 44px;
  height: 44px;
}

.logo__text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--white);
  transition: color var(--duration-base);
}

.logo__sub {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
  display: block;
  margin-top: -2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.nav__link {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius-full);
  transition: all var(--duration-fast) var(--ease-out);
  position: relative;
}

.nav__link:hover,
.nav__link--active {
  color: var(--honey-light);
}

.header--scrolled .nav__link:hover,
.header--scrolled .nav__link--active {
  color: var(--honey);
  background: var(--honey-glow);
}

.header--scrolled .nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--honey);
  transition: width var(--duration-base) var(--ease-out), left var(--duration-base) var(--ease-out);
  border-radius: 1px;
}

.header--scrolled .nav__link:hover::after,
.header--scrolled .nav__link--active::after {
  width: 60%;
  left: 20%;
}

.nav__cta {
  margin-left: var(--space-4);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: var(--space-2);
}

.nav-toggle__bar {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--duration-base) var(--ease-out);
}

.header--scrolled .nav-toggle__bar {
  background: var(--earth-800);
}

.nav-toggle.active .nav-toggle__bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active .nav-toggle__bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--earth-900);
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 18, 7, 0.85) 0%,
    rgba(26, 18, 7, 0.5) 50%,
    rgba(26, 18, 7, 0.3) 100%
  );
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding-top: var(--space-32);
  padding-bottom: var(--space-20);
}

.hero__title {
  color: var(--white);
  margin-bottom: var(--space-6);
}

.hero__title .accent {
  color: var(--honey-light);
  display: block;
}

.hero__description {
  font-size: var(--text-lg);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-10);
  max-width: 540px;
}

.hero__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(10px);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Hero stats */
.hero__stats {
  position: absolute;
  bottom: var(--space-12);
  right: var(--space-12);
  z-index: 3;
  display: flex;
  gap: var(--space-10);
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--honey-light);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  display: block;
}

.hero__stat-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  margin-top: var(--space-2);
}

/* --- Section commons --- */
.section {
  padding: var(--space-24) 0;
}

.section--cream {
  background: var(--earth-100);
}

.section--dark {
  background: var(--earth-900);
  color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark .subtitle,
.section--dark .section__header p {
  color: rgba(255, 255, 255, 0.65);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.75);
}

.section--dark .info-card__list li,
.section--dark .info-card__text,
.section--dark .strength-card__desc,
.section--dark .strength-card__text {
  color: rgba(255, 255, 255, 0.65);
}

.section__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto var(--space-16);
}

.section__header .overline {
  margin-bottom: var(--space-4);
  display: block;
}

.section__header .subtitle {
  margin-top: var(--space-4);
}

/* Decorative line */
.deco-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin: var(--space-6) 0;
}

.deco-line__bar {
  width: 40px;
  height: 2px;
  background: var(--honey);
  border-radius: 2px;
}

.deco-line__diamond {
  width: 8px;
  height: 8px;
  background: var(--honey);
  transform: rotate(45deg);
  border-radius: 1px;
}

/* --- Trust bar --- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--earth-200);
  padding: var(--space-6) 0;
}

.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--earth-500);
  font-weight: 500;
}

.trust-bar__icon {
  width: 20px;
  height: 20px;
  color: var(--honey);
}

/* --- Product cards --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-8);
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--duration-base) var(--ease-out);
  border: 1px solid var(--earth-200);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: var(--shadow-xl), 0 0 0 1px var(--honey-light);
  border-color: transparent;
}

.product-card__image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--earth-100), var(--amber-50));
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

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

.product-card__badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: var(--honey);
  color: var(--earth-900);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-card__body {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__region {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--honey-text);
  margin-bottom: var(--space-2);
}

.product-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--earth-900);
  margin-bottom: var(--space-3);
}

.product-card__desc {
  font-size: var(--text-sm);
  color: var(--earth-500);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.product-card__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  padding-top: var(--space-4);
  margin-top: auto;
  border-top: 1px solid var(--earth-100);
}

.product-card__formats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.product-card__format {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--earth-600);
  background: var(--earth-100);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.product-card__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--honey-text);
  display: flex;
  align-items: center;
  gap: var(--space-1);
  white-space: nowrap;
  flex-shrink: 0;
  transition: gap var(--duration-fast) var(--ease-out);
}

.product-card:hover .product-card__link {
  gap: var(--space-2);
}

/* --- Category cards (Accueil) --- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.category-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  group: true;
}

.category-card__image {
  position: absolute;
  inset: 0;
}

.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform var(--duration-slow) var(--ease-out);
}

.category-card:hover .category-card__image img {
  transform: scale(1.08);
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,1) 0%, rgba(10,8,6,0.95) 25%, rgba(10,8,6,0.6) 50%, rgba(10,8,6,0.15) 75%, transparent 100%);
  transition: background var(--duration-base);
}

.category-card:hover .category-card__overlay {
  background: linear-gradient(to top, rgba(10,8,6,1) 0%, rgba(10,8,6,0.97) 28%, rgba(10,8,6,0.65) 55%, rgba(10,8,6,0.2) 80%, rgba(10,8,6,0.05) 100%);
}

.category-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-8) var(--space-6) var(--space-6);
  z-index: 2;
  background: linear-gradient(to top, rgba(10,8,6,0.92) 0%, rgba(10,8,6,0.75) 60%, transparent 100%);
  transition: transform var(--duration-base) var(--ease-out);
}

.category-card:hover .category-card__content {
  transform: translateY(-2px);
}

.category-card__count {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--honey-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
  text-shadow: 0 1px 6px rgba(0,0,0,0.8), 0 0 2px rgba(0,0,0,0.5);
}

.category-card__title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-2);
  text-shadow: 0 2px 12px rgba(0,0,0,0.8), 0 1px 4px rgba(0,0,0,0.6);
}

.category-card__desc {
  font-size: var(--text-sm);
  color: #FFFFFF;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--duration-base) var(--ease-out);
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.category-card:hover .category-card__desc {
  opacity: 1;
  transform: translateY(0);
}

/* --- Strength / Features --- */
.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

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

.strength-card {
  text-align: center;
  padding: var(--space-10) var(--space-6);
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--earth-200);
  transition: all var(--duration-base) var(--ease-out);
}

.strength-card:hover {
  border-color: var(--honey-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.strength-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--honey-glow);
  border-radius: var(--radius-lg);
  color: var(--honey);
}

.strength-card__icon svg {
  width: 28px;
  height: 28px;
}

.strength-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.strength-card__desc {
  font-size: var(--text-sm);
  color: var(--earth-500);
  line-height: 1.7;
}

/* --- Numbers / Stats --- */
.stats-section {
  background: var(--earth-900);
  padding: var(--space-16) 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,146,11,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
}

.stat-item__value {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: 700;
  color: var(--honey-light);
  line-height: 1;
  margin-bottom: var(--space-2);
  font-variant-numeric: tabular-nums;
  display: block;
}

.stat-item__label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* --- CTA Section --- */
.cta-section {
  position: relative;
  padding: var(--space-24) 0;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.cta-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--earth-900) 0%, rgba(26,18,7,0.9) 100%);
  z-index: 2;
}

.cta-section__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-section__content h2 {
  color: var(--white);
  margin-bottom: var(--space-6);
}

.cta-section__content p {
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-8);
  font-size: var(--text-lg);
}

.cta-section__actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Timeline (Notre Histoire) --- */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--earth-200);
  transform: translateX(-50%);
}

.timeline__item {
  position: relative;
  padding: var(--space-8) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}

.timeline__dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--honey);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--honey), 0 0 12px rgba(212, 146, 11, 0.3);
  z-index: 2;
}

.timeline__year {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--honey);
  opacity: 0.5;
}

.timeline__content {
  background: var(--white);
  border: 1px solid var(--earth-200);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.timeline__content:hover {
  box-shadow: 0 8px 24px rgba(212, 146, 11, 0.1);
  transform: translateY(-2px);
  border-color: var(--honey);
}

/* Odd items (1st, 3rd, 5th): year LEFT aligned right, content RIGHT */
.timeline__item:nth-child(odd) .timeline__year {
  text-align: right;
}

.timeline__item:nth-child(odd) .timeline__content {
  text-align: left;
}

/* Even items (2nd, 4th): content LEFT, year RIGHT aligned left */
.timeline__item:nth-child(even) .timeline__content {
  order: -1;
  text-align: right;
}

.timeline__item:nth-child(even) .timeline__year {
  text-align: left;
}

.timeline__content h3 {
  margin-bottom: var(--space-3);
  font-size: var(--text-lg);
  color: var(--earth-900);
}

.timeline__content p {
  font-size: var(--text-sm);
  color: var(--earth-500);
  line-height: 1.7;
}

/* ---- Stat Cards ---- */
.stat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--earth-200);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-card__number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--honey-text);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-card__label {
  font-size: var(--text-sm);
  color: var(--earth-500);
  font-weight: 500;
}

/* --- Info cards (Informations page) --- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
}

.info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--earth-200);
  transition: all var(--duration-base) var(--ease-out);
}

.info-card:hover {
  border-color: var(--honey-light);
  box-shadow: var(--shadow-md);
}

.info-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--honey-glow);
  border-radius: var(--radius-lg);
  color: var(--honey);
  margin-bottom: var(--space-5);
}

.info-card__title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.info-card__text {
  font-size: var(--text-sm);
  color: var(--earth-500);
  line-height: 1.7;
}

.info-card__list {
  margin-top: var(--space-4);
}

.info-card__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--earth-600);
}

.info-card__list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--honey);
  flex-shrink: 0;
  margin-top: 7px;
}

/* --- Contact form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.form-group {
  margin-bottom: var(--space-6);
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--earth-800);
  margin-bottom: var(--space-2);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--earth-800);
  background: var(--white);
  border: 1.5px solid var(--earth-200);
  border-radius: var(--radius-lg);
  transition: all var(--duration-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--honey);
  box-shadow: 0 0 0 3px var(--honey-glow);
}

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

.contact-info {
  background: var(--earth-900);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  color: var(--white);
}

.contact-info__item {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-info__item:last-child {
  border-bottom: none;
}

.contact-info__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212,146,11,0.15);
  border-radius: var(--radius-lg);
  color: var(--honey-light);
  flex-shrink: 0;
}

.contact-info__label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.contact-info__value {
  font-size: var(--text-base);
  color: var(--white);
}

.contact-info__value a {
  color: var(--honey-light);
}

.contact-info__value a:hover {
  text-decoration: underline;
}

/* --- Footer --- */
.footer {
  background: var(--earth-900);
  color: rgba(255,255,255,0.6);
  padding: var(--space-16) 0 var(--space-8);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand p {
  font-size: var(--text-sm);
  line-height: 1.7;
  margin-top: var(--space-4);
  max-width: 300px;
}

.footer__title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--white);
  margin-bottom: var(--space-5);
}

.footer__links li {
  margin-bottom: var(--space-3);
}

.footer__links a {
  font-size: var(--text-sm);
  transition: color var(--duration-fast);
}

.footer__links a:hover {
  color: var(--honey-light);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
}

.footer__contact-icon {
  color: var(--honey);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-8);
  font-size: var(--text-xs);
}

.footer__legal {
  display: flex;
  gap: var(--space-6);
}

.footer__legal a:hover {
  color: var(--honey-light);
}

/* --- Page Header (inner pages) --- */
.page-header {
  background: var(--earth-900);
  padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-16);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212,146,11,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.page-header__content {
  position: relative;
  z-index: 2;
}

.page-header__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-6);
}

.page-header__breadcrumb a {
  color: rgba(255,255,255,0.5);
}

.page-header__breadcrumb a:hover {
  color: var(--honey-light);
}

.page-header h1 {
  color: var(--white);
  margin-bottom: var(--space-4);
}

.page-header p {
  color: rgba(255,255,255,0.6);
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto;
}

/* --- Catalogue filter bar --- */
.filter-bar {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  margin-top: calc(-1 * var(--space-10));
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.filter-bar__search {
  flex: 1;
  min-width: 200px;
  position: relative;
}

.filter-bar__search input {
  width: 100%;
  padding: var(--space-3) var(--space-4) var(--space-3) var(--space-10);
  border: 1.5px solid var(--earth-200);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  outline: none;
  transition: border-color var(--duration-fast);
}

.filter-bar__search input:focus {
  border-color: var(--honey);
}

.filter-bar__search svg {
  position: absolute;
  left: var(--space-3);
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--earth-400);
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border: 1.5px solid var(--earth-200);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--earth-600);
  cursor: pointer;
  transition: all var(--duration-fast);
}

.filter-tag:hover,
.filter-tag--active {
  border-color: var(--honey);
  background: var(--honey-glow);
  color: var(--honey-text);
}

/* --- Form row (2 cols desktop, 1 col mobile) --- */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

/* --- Form validation visual feedback --- */
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: var(--error);
}

.form-group input:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
  border-color: var(--success);
}

/* --- Image placeholder (for dev without images) --- */
.img-placeholder {
  background: linear-gradient(135deg, var(--earth-200), var(--amber-100));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--earth-400);
  font-size: var(--text-sm);
  font-weight: 500;
}

/* --- Content grid (image + text side by side) --- */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

/* --- Gallery grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

/* --- Section light (white bg) --- */
.section--light {
  background: var(--white);
}

/* --- FAQ --- */
.faq-item {
  border-bottom: 1px solid var(--earth-200);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: var(--space-5);
  font-weight: 600;
  font-size: var(--text-base);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  color: var(--earth-900);
}

.faq-question:hover {
  color: var(--honey-text);
}

.faq-answer {
  display: none;
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm);
  color: var(--earth-500);
  line-height: 1.7;
}

/* --- Scroll animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8) var(--space-4);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .hero__stats {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .strengths-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

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

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-6);
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--earth-900);
    flex-direction: column;
    align-items: flex-start;
    padding: calc(var(--header-height) + var(--space-8)) var(--space-8) var(--space-8);
    gap: var(--space-1);
    transition: right var(--duration-base) var(--ease-out);
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
  }

  .nav.open {
    right: 0;
  }

  .nav__link {
    color: rgba(255,255,255,0.8);
    font-size: var(--text-lg);
    padding: var(--space-3) var(--space-4);
    width: 100%;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: var(--space-4);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
  }

  .nav-overlay.active {
    display: block;
  }

  .hero__content {
    padding-top: calc(var(--header-height) + var(--space-12));
    padding-bottom: var(--space-12);
  }

  .hero__description {
    font-size: var(--text-base);
  }

  .content-grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-8);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .trust-bar__inner {
    gap: var(--space-6);
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    height: 280px;
  }

  .strengths-grid {
    grid-template-columns: 1fr !important;
  }

  .strengths-grid--5col {
    grid-template-columns: repeat(2, 1fr) !important;
  }

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

  .products-grid {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .filter-bar {
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-3);
  }

  .filter-bar__search {
    width: 100%;
    flex: unset;
  }

  .filter-tag {
    font-size: var(--text-xs);
    padding: var(--space-1) var(--space-3);
  }

  .timeline::before {
    left: 20px;
  }

  .timeline__item {
    grid-template-columns: 1fr;
    padding-left: 50px;
  }

  .timeline__dot {
    left: 20px;
  }

  .timeline__item:nth-child(odd) .timeline__year,
  .timeline__item:nth-child(even) .timeline__year {
    text-align: left;
    order: unset;
  }

  .timeline__item:nth-child(odd) .timeline__content,
  .timeline__item:nth-child(even) .timeline__content {
    text-align: left;
    order: unset;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-cards {
    grid-template-columns: 1fr 1fr;
  }

  .cta-section__actions {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  :root {
    --space-6: 1.25rem;
    --space-8: 1.5rem;
  }

  .section {
    padding: var(--space-16) 0;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
  }

  .stat-item__value {
    font-size: var(--text-3xl);
  }

  .gallery-grid {
    grid-template-columns: 1fr !important;
  }

  .trust-bar__inner {
    gap: var(--space-4);
    justify-content: flex-start;
  }

  .trust-bar__item {
    font-size: var(--text-xs);
  }

  .stat-card__number {
    font-size: var(--text-3xl);
  }

  .container {
    padding: 0 var(--space-5);
  }

  .hero__title {
    font-size: clamp(var(--text-3xl), 8vw, var(--text-5xl));
  }

  .heading-md {
    font-size: clamp(var(--text-xl), 6vw, var(--text-3xl));
  }

  .strengths-grid--5col {
    grid-template-columns: 1fr !important;
  }

  .stat-cards {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   PRODUCT DETAIL PAGES
   ======================================== */

/* --- Product hero section --- */
.product-hero {
  padding-top: var(--space-12);
}

.product-hero__image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.product-hero__badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: var(--honey);
  color: var(--earth-900);
  font-size: var(--text-xs);
  font-weight: 700;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.product-hero__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.product-hero__description {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--earth-600);
}

.product-hero__characteristics {
  margin-top: var(--space-2);
}

.product-hero__char-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.product-hero__char-list li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--earth-700);
}

.product-hero__char-list li svg {
  flex-shrink: 0;
  color: var(--honey);
}

.product-hero__formats-section {
  margin-top: var(--space-2);
}

.product-hero__formats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.product-hero__formats .product-card__format {
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-4);
}

.product-hero__cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid var(--earth-200);
}

/* --- Product specifications grid --- */
.product-specs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-6);
}

.product-specs__item {
  background: var(--white);
  border: 1px solid var(--earth-200);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  text-align: center;
  transition: all var(--duration-base) var(--ease-out);
}

.product-specs__item:hover {
  border-color: var(--honey-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.product-specs__label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--honey-text);
  margin-bottom: var(--space-2);
}

.product-specs__value {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--earth-900);
}

/* --- Product usages --- */
.product-usages {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-4);
}

.product-usage__item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--white);
  border: 1px solid var(--earth-200);
  border-radius: var(--radius-lg);
  transition: all var(--duration-base) var(--ease-out);
}

.product-usage__item:hover {
  border-color: var(--honey-light);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.product-usage__item svg {
  flex-shrink: 0;
  color: var(--honey);
}

.product-usage__item span {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--earth-700);
}

/* --- Product page responsive --- */
@media (max-width: 768px) {
  .product-hero {
    padding-top: var(--space-6);
  }

  .product-hero__cta {
    flex-direction: column;
  }

  .product-hero__cta .btn {
    width: 100%;
    text-align: center;
  }

  .product-specs {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-usages {
    grid-template-columns: 1fr;
  }

  .products-grid[style*="repeat(3"] {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .product-specs {
    grid-template-columns: 1fr;
  }
}

/* --- Product pages dark mode --- */
@media (prefers-color-scheme: dark) {
  .product-hero__description {
    color: #C4AD8A;
  }

  .product-hero__char-list li {
    color: #E8DCC8;
  }

  .product-hero__cta {
    border-top-color: #4A3520;
  }

  .product-specs__item {
    background: #261C10;
    border-color: #4A3520;
  }

  .product-specs__item:hover {
    border-color: var(--honey);
  }

  .product-specs__value {
    color: #FAFAF6;
  }

  .product-specs__label {
    color: var(--honey);
  }

  .product-usage__item {
    background: #261C10;
    border-color: #4A3520;
  }

  .product-usage__item:hover {
    border-color: var(--honey);
  }

  .product-usage__item span {
    color: #E8DCC8;
  }

  /* Product pages — sections claires */
  .section--cream .product-specs__item,
  .section--light .product-specs__item {
    background: #FFFFFF;
    border-color: #E8DCC8;
  }

  .section--cream .product-specs__value,
  .section--light .product-specs__value {
    color: #1A1207;
  }

  .section--cream .product-specs__label,
  .section--light .product-specs__label {
    color: var(--honey-dark);
  }

  .section--cream .product-usage__item,
  .section--light .product-usage__item {
    background: #FFFFFF;
    border-color: #E8DCC8;
  }

  .section--cream .product-usage__item span,
  .section--light .product-usage__item span {
    color: #3E2B14;
  }
}

/* ========================================
   ENHANCEMENTS — 2026 Design Trends
   ======================================== */

/* --- Organic grain texture overlay --- */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  mix-blend-mode: multiply;
}

/* --- Scroll-driven animations (progressive enhancement) --- */
@supports (animation-timeline: view()) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: css-reveal linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 35%;
  }

  @keyframes css-reveal {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .scroll-progress {
    display: none;
  }

  body::after {
    display: none;
  }
}

/* ========================================
   DARK MODE
   ======================================== */
@media (prefers-color-scheme: dark) {
  /* ============================
     DARK MODE — Alternance sombre / crème
     Base sombre #1A1207 + sections crème #FAF6EF
     ============================ */
  body {
    background-color: #1A1207;
    color: #E8DCC8;
  }

  h1, h2, h3, h4, h5, h6 {
    color: #FAFAF6;
  }

  .subtitle {
    color: #BFA67D;
  }

  .overline {
    color: var(--honey-light);
  }

  /* Header */
  .header--scrolled {
    background: rgba(26, 18, 7, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .header--scrolled .nav__link {
    color: rgba(255, 255, 255, 0.8);
  }

  .header--scrolled .nav__link:hover,
  .header--scrolled .nav__link--active {
    color: var(--honey-light);
    background: rgba(212, 146, 11, 0.15);
  }

  .header--scrolled .logo__text {
    color: #FAFAF6;
  }

  .header--scrolled .nav-toggle__bar {
    background: rgba(255, 255, 255, 0.8);
  }

  /* ===== SECTIONS CLAIRES (fond clair chaud) ===== */
  .section--cream,
  .section--light {
    background: #FAF6EF;
    color: #3E2B14;
  }

  .section--cream h2,
  .section--cream h3,
  .section--cream h4,
  .section--light h2,
  .section--light h3,
  .section--light h4 {
    color: #1A1207;
  }

  .section--cream .subtitle,
  .section--light .subtitle {
    color: #5C4023;
  }

  .section--cream .overline,
  .section--light .overline {
    color: var(--honey-dark);
  }

  .section--cream .body-lg,
  .section--cream p,
  .section--light .body-lg,
  .section--light p {
    color: #5C4023;
  }

  .section--cream .product-card,
  .section--cream .strength-card,
  .section--cream .info-card,
  .section--light .product-card,
  .section--light .strength-card,
  .section--light .info-card {
    background: #FFFFFF;
    border-color: #E8DCC8;
    color: #3E2B14;
  }

  .section--cream .product-card:hover,
  .section--cream .strength-card:hover,
  .section--cream .info-card:hover,
  .section--light .product-card:hover,
  .section--light .strength-card:hover,
  .section--light .info-card:hover {
    border-color: var(--honey);
    box-shadow: 0 8px 24px rgba(212, 146, 11, 0.12);
  }

  .section--cream .product-card__title,
  .section--cream .strength-card__title,
  .section--cream .info-card__title,
  .section--light .product-card__title,
  .section--light .strength-card__title,
  .section--light .info-card__title {
    color: #1A1207;
  }

  .section--cream .product-card__desc,
  .section--cream .strength-card__desc,
  .section--cream .strength-card__text,
  .section--cream .info-card__text,
  .section--light .product-card__desc,
  .section--light .strength-card__desc,
  .section--light .strength-card__text,
  .section--light .info-card__text {
    color: #5C4023;
  }

  .section--cream .product-card__formats span,
  .section--light .product-card__formats span {
    background: #F5F0E8;
    color: #5C4023;
    border-color: #E8DCC8;
  }

  .section--cream .info-card__list li,
  .section--light .info-card__list li {
    color: #5C4023;
  }

  .section--cream .img-placeholder,
  .section--light .img-placeholder {
    background: linear-gradient(135deg, #E8DCC8, #F5D67B) !important;
    color: #7A5C3A;
  }

  /* ===== SECTIONS SOMBRES (fond brun foncé — par défaut) ===== */
  .section--dark {
    background: #0F0B05;
  }

  /* Cards sur fond sombre */
  .product-card,
  .strength-card,
  .info-card,
  .category-card {
    background: #261C10;
    border-color: #4A3520;
    color: #E8DCC8;
  }

  .product-card:hover,
  .strength-card:hover,
  .info-card:hover,
  .category-card:hover {
    border-color: var(--honey);
    box-shadow: 0 8px 24px rgba(212, 146, 11, 0.15);
  }

  .product-card__title,
  .strength-card__title,
  .info-card__title {
    color: #FAFAF6;
  }

  .category-card .category-card__title {
    color: #FFFFFF;
  }

  .category-card .category-card__desc {
    color: #FFFFFF;
  }

  .category-card .category-card__count {
    color: var(--honey-light);
  }

  .product-card__desc,
  .strength-card__desc,
  .strength-card__text,
  .info-card__text,
  .info-card__list li {
    color: #C4AD8A;
  }

  .product-card__formats span {
    background: #1A1207;
    color: #C4AD8A;
    border-color: #4A3520;
  }

  .product-card__region,
  .product-card__link {
    color: var(--honey);
  }

  .stat-card__number {
    color: var(--honey);
  }

  .accent-text {
    color: var(--honey-light);
  }

  .btn--primary {
    color: var(--earth-900);
  }

  .btn--secondary:hover {
    color: var(--honey);
  }

  .filter-tag:hover,
  .filter-tag--active {
    border-color: var(--honey);
    background: rgba(212, 146, 11, 0.15);
    color: var(--honey-light);
  }

  /* Form inputs */
  .form-group input,
  .form-group textarea,
  .form-group select {
    background: #261C10;
    border-color: #4A3520;
    color: #F0EAE0;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: #7A5C3A;
  }

  .form-group label {
    color: #C4AD8A;
  }

  /* Form inputs dans sections claires */
  .section--light .form-group input,
  .section--light .form-group textarea,
  .section--light .form-group select,
  .section--cream .form-group input,
  .section--cream .form-group textarea,
  .section--cream .form-group select {
    background: #FFFFFF;
    border-color: #D4C5A9;
    color: #3E2B14;
  }

  .section--light .form-group input::placeholder,
  .section--light .form-group textarea::placeholder,
  .section--cream .form-group input::placeholder,
  .section--cream .form-group textarea::placeholder {
    color: #9E8462;
  }

  .section--light .form-group label,
  .section--cream .form-group label {
    color: #5C4023;
  }

  /* Filter bar */
  .filter-bar {
    background: #261C10;
    border-color: #4A3520;
  }

  .filter-bar__search input {
    background: #1A1207;
    border-color: #4A3520;
    color: #F0EAE0;
  }

  .filter-tag {
    border-color: #4A3520;
    color: #C4AD8A;
  }

  /* Trust bar */
  .trust-bar {
    background: #261C10;
    border-color: #4A3520;
  }

  .trust-bar__item {
    color: #C4AD8A;
  }

  /* Buttons */
  .btn--secondary {
    border-color: #5C4023;
    color: #E8DCC8;
  }

  .btn--secondary:hover {
    border-color: var(--honey);
    color: var(--honey);
  }

  .btn--outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: #F0EAE0;
  }

  /* Sections claires : boutons adaptés */
  .section--cream .btn--secondary,
  .section--light .btn--secondary {
    border-color: #C4AD8A;
    color: #3E2B14;
  }

  .section--cream .btn--secondary:hover,
  .section--light .btn--secondary:hover {
    border-color: var(--honey);
    color: var(--honey-dark);
  }

  /* Page header */
  .page-header {
    background: #0F0B05;
  }

  /* Image placeholders */
  .img-placeholder {
    background: linear-gradient(135deg, #2C1E0F, #4A3520) !important;
    color: #8B7355;
  }

  /* FAQ */
  .faq-item {
    border-color: #4A3520;
  }

  .faq-question {
    color: #F0EAE0;
  }

  .faq-answer {
    color: #C4AD8A;
  }

  /* Sections claires FAQ */
  .section--cream .faq-item,
  .section--light .faq-item {
    border-color: #E8DCC8;
  }

  .section--cream .faq-question,
  .section--light .faq-question {
    color: #1A1207;
  }

  .section--cream .faq-answer,
  .section--light .faq-answer {
    color: #5C4023;
  }

  /* Timeline */
  .timeline::before {
    background: #4A3520;
  }

  .timeline__dot {
    border-color: #FAF6EF;
    box-shadow: 0 0 0 2px var(--honey), 0 0 16px rgba(212, 146, 11, 0.4);
  }

  .timeline__content {
    background: #261C10;
    border-color: #4A3520;
    border-radius: var(--radius-xl);
    color: #C4AD8A;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  }

  .timeline__content:hover {
    border-color: var(--honey);
    box-shadow: 0 8px 28px rgba(212, 146, 11, 0.18);
  }

  .timeline__content h3 {
    color: #FAFAF6;
  }

  /* Stat cards */
  .stat-card {
    background: #261C10;
    border-color: #4A3520;
  }

  .stat-card:hover {
    border-color: var(--honey);
  }

  .stat-card__label {
    color: #C4AD8A;
  }

  /* Contact info card */
  .contact-info {
    background: #261C10;
  }

  .section--light .contact-info,
  .section--cream .contact-info {
    background: #FFFFFF;
    border: 1px solid #E8DCC8;
    color: #3E2B14;
  }

  .section--light .contact-info h3,
  .section--cream .contact-info h3 {
    color: #1A1207;
  }

  .section--light .contact-info p,
  .section--light .contact-info a,
  .section--cream .contact-info p,
  .section--cream .contact-info a {
    color: #3E2B14 !important;
  }

  .section--light .contact-info__label,
  .section--cream .contact-info__label {
    color: #9E8462;
  }

  .section--light .contact-info__value,
  .section--cream .contact-info__value {
    color: #1A1207;
  }

  .section--light .contact-info__value a,
  .section--cream .contact-info__value a {
    color: var(--honey-dark);
  }

  .section--light .contact-info__item,
  .section--cream .contact-info__item {
    border-bottom-color: #E8DCC8;
  }

  .section--light .contact-info__icon,
  .section--cream .contact-info__icon {
    color: var(--honey-dark);
    background: rgba(212, 146, 11, 0.1);
  }

  /* Override inline styles dans sections claires */
  .section--light .contact-info div[style],
  .section--cream .contact-info div[style] {
    border-color: #E8DCC8 !important;
  }

  /* Grain overlay */
  body::after {
    mix-blend-mode: screen;
    opacity: 0.025;
  }

  /* Link colors */
  a:not(.btn):not(.nav__link):not(.nav__cta):not(.logo):not(.skip-link) {
    color: var(--honey-light);
  }

  .section--cream a:not(.btn):not(.nav__link):not(.nav__cta):not(.logo):not(.skip-link),
  .section--light a:not(.btn):not(.nav__link):not(.nav__cta):not(.logo):not(.skip-link) {
    color: var(--honey-dark);
  }
}
