/* ============================================================
   LE BISSAP ARTISANAL — styles.css
   Design System: Dark Premium · Gold · Hibiscus Rouge · Ginger Orange
   ============================================================ */

/* ============ VARIABLES ============ */
:root {
  /* Palette */
  --bg-900: #0a0a0a;
  --bg-800: #111111;
  --bg-700: #181818;
  --bg-600: #202020;
  --bg-500: #2a2a2a;

  --text-1: #f5f0e8;
  --text-2: #c8bfa8;
  --text-3: #8a7e6a;
  --text-4: #5a5040;

  --gold: #d4af37;
  --gold-light: #e8cb6a;
  --gold-dark: #a8862a;
  --gold-border: rgba(212, 175, 55, 0.18);

  --hibiscus: #c41e3a;
  --hibiscus-light: #e5354f;
  --hibiscus-dark: #9a1830;
  --hibiscus-bg: rgba(196, 30, 58, 0.08);

  --ginger: #e69b3d;
  --ginger-light: #f2b868;
  --ginger-dark: #b87628;
  --ginger-bg: rgba(230, 155, 61, 0.08);

  /* Spacing */
  --sp-xs: 4px;
  --sp-sm: 8px;
  --sp-md: 16px;
  --sp-lg: 24px;
  --sp-xl: 40px;
  --sp-2xl: 72px;
  --sp-3xl: 120px;

  /* Typography */
  --font-base: "Inter", system-ui, -apple-system, sans-serif;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 72px;

  /* Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 280ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 24px rgba(212, 175, 55, 0.25);
  --shadow-hibiscus: 0 0 24px rgba(196, 30, 58, 0.35);
  --shadow-ginger: 0 0 24px rgba(230, 155, 61, 0.35);
}

/* ============ RESET ============ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  color-scheme: dark;
}

body {
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.6;
  background: var(--bg-900);
  color: var(--text-2);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

address {
  font-style: normal;
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scrollLine {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0);
  }
}

/* ============ REVEAL SCROLL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--t-slow),
    transform var(--t-slow);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ PROGRESS BAR ============ */
#read-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(
    90deg,
    var(--hibiscus),
    var(--gold),
    var(--ginger)
  );
  z-index: 9999;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ============ NAVIGATION ============ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color var(--t-base),
    background var(--t-base),
    box-shadow var(--t-base);
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
  border-bottom-color: var(--gold-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.nav-container {
  width: 100%;
  max-width: var(--max-width);
  padding: 0 var(--sp-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xl);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  flex-shrink: 0;
  transition: opacity var(--t-fast);
}

.nav-logo:hover {
  opacity: 0.8;
}

.nav-logo img {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.nav-logo span {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text-1);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  flex: 1;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text-3);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition:
    color var(--t-fast),
    background var(--t-fast);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-1);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links .nav-cta {
  background: var(--gold-border);
  color: var(--gold-light);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
}

.nav-links .nav-cta:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--t-fast);
}

.nav-burger:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-2);
  border-radius: 2px;
  transform-origin: center;
  transition:
    transform var(--t-base),
    opacity var(--t-base),
    background var(--t-base);
}

.nav-burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============ BADGES ============ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-3);
  white-space: nowrap;
}

.badge--hibiscus {
  background: var(--hibiscus-bg);
  border-color: rgba(196, 30, 58, 0.3);
  color: var(--hibiscus-light);
}

.badge--ginger {
  background: var(--ginger-bg);
  border-color: rgba(230, 155, 61, 0.3);
  color: var(--ginger-light);
}

.badge--gold {
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-border);
  color: var(--gold-light);
}

.badge--sm {
  font-size: 9px;
  padding: 3px 8px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform var(--t-fast),
    box-shadow var(--t-base),
    background var(--t-base),
    border-color var(--t-base),
    color var(--t-base),
    opacity var(--t-fast);
  text-decoration: none;
  line-height: 1;
}

.btn:active {
  transform: scale(0.97);
}

.btn--block {
  width: 100%;
  justify-content: center;
}

.btn--primary {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
  font-weight: 700;
}

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--text-2);
  border-color: rgba(255, 255, 255, 0.15);
}

.btn--outline:hover {
  color: var(--text-1);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.btn--hibiscus {
  background: var(--hibiscus);
  color: #fff;
  border-color: var(--hibiscus);
}

.btn--hibiscus:hover {
  background: var(--hibiscus-light);
  border-color: var(--hibiscus-light);
  box-shadow: var(--shadow-hibiscus);
  transform: translateY(-1px);
}

.btn--ginger {
  background: var(--ginger);
  color: #0a0a0a;
  border-color: var(--ginger);
  font-weight: 700;
}

.btn--ginger:hover {
  background: var(--ginger-light);
  border-color: var(--ginger-light);
  box-shadow: var(--shadow-ginger);
  transform: translateY(-1px);
}

/* ============ SECTION SHARED ============ */
.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--sp-3xl) var(--sp-lg);
}

.section-header {
  text-align: center;
  margin-bottom: var(--sp-2xl);
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: var(--sp-md);
  text-transform: uppercase;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text-1);
  line-height: 1.1;
  margin-bottom: var(--sp-md);
}

.section-subtitle {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-3);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============ HERO SECTION ============ */
#hero {
  position: relative;
  padding-top: var(--nav-height);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  overflow: hidden;
  background: var(--bg-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 700px 600px at 70% 50%,
      rgba(196, 30, 58, 0.12) 0%,
      rgba(230, 155, 61, 0.08) 50%,
      transparent 100%
    ),
    radial-gradient(
      ellipse 400px 400px at 25% 80%,
      rgba(212, 175, 55, 0.06) 0%,
      transparent 70%
    );
  z-index: 0;
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 40%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 80% 80% at 50% 50%,
    black 40%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--sp-2xl) var(--sp-xl) var(--sp-2xl)
    max(var(--sp-xl), calc((100vw - var(--max-width)) / 2 + var(--sp-xl)));
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
  animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
  animation-delay: 0.1s;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

.hero-title {
  display: flex;
  flex-direction: column;
  line-height: 1;
  letter-spacing: -3px;
}

.hero-title-line1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  color: var(--text-1);
}

.hero-title-line2 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -1px;
  margin-top: -4px;
}

.hero-subtitle {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-3);
  line-height: 1.7;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
  margin-top: var(--sp-sm);
}

.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-2xl) var(--sp-xl);
  animation: fadeIn 1s ease both;
  animation-delay: 0.4s;
}

.hero-visual img {
  max-height: 72vh;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 80px rgba(196, 30, 58, 0.3))
    drop-shadow(0 0 40px rgba(212, 175, 55, 0.15));
  animation: fadeInUp 0.8s ease both;
  animation-delay: 0.3s;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-4);
  font-size: 10px;
  letter-spacing: 2px;
  transition: color var(--t-fast);
  padding: var(--sp-sm);
}

.hero-scroll:hover {
  color: var(--gold);
}

.hero-scroll svg {
  animation: fadeInUp 1s ease both;
  animation-delay: 0.8s;
}

/* ============ PRODUCTS SECTION ============ */
#produits {
  background: var(--bg-800);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-xl);
}

.product-card {
  background: var(--bg-700);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    transform var(--t-base),
    border-color var(--t-base),
    box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card--bissapa:hover {
  border-color: rgba(196, 30, 58, 0.3);
  box-shadow: 0 20px 60px rgba(196, 30, 58, 0.15);
}

.product-card--zandjabila:hover {
  border-color: rgba(230, 155, 61, 0.3);
  box-shadow: 0 20px 60px rgba(230, 155, 61, 0.15);
}

.product-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.product-card:hover .product-card-image img {
  transform: scale(1.04);
}

.product-card-content {
  padding: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  flex: 1;
}

.product-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-4);
  text-transform: uppercase;
}

.product-card-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--text-1);
}

.product-card--bissapa .product-card-title {
  color: var(--hibiscus-light);
}
.product-card--zandjabila .product-card-title {
  color: var(--ginger-light);
}

.product-card-tagline {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-3);
  line-height: 1.5;
}

.product-card-desc {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.7;
}

/* ============ FLAVOR ITEMS ============ */
.product-flavors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.flavor-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: default;
}

.flavor-item img {
  width: 46px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gold-border);
  transition:
    transform var(--t-fast),
    border-color var(--t-fast);
}

.flavor-item:hover img {
  transform: scale(1.08);
  border-color: rgba(212, 175, 55, 0.45);
}

.flavor-item span {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-4);
  text-align: center;
  letter-spacing: 0.3px;
  line-height: 1.2;
  max-width: 52px;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-xs);
  margin-top: auto;
}

/* ============ SECTION HISTOIRE ============ */
#histoire {
  background: var(--bg-900);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.histoire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}

.histoire-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.histoire-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow);
}

.histoire-image:hover img {
  transform: scale(1.03);
}

.histoire-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(10, 10, 10, 0.92) 100%
  );
  padding: var(--sp-2xl) var(--sp-lg) var(--sp-lg);
  gap: var(--sp-xs);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.stat-number {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -1px;
  line-height: 1;
}

.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-3);
  text-transform: uppercase;
  text-align: center;
}

.histoire-content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.histoire-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text-1);
  line-height: 1.1;
}

.histoire-content p {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.8;
}

.histoire-content strong {
  color: var(--text-2);
  font-weight: 600;
}

.histoire-founder {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: var(--sp-md);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: var(--sp-sm);
}

.founder-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
}

.founder-title {
  font-size: 13px;
  color: var(--text-4);
}

/* ============ SECTION VALEURS ============ */
#valeurs {
  background: var(--bg-800);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-lg);
}

.valeur-card {
  background: var(--bg-700);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl) var(--sp-lg);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  transition:
    transform var(--t-base),
    border-color var(--t-base),
    box-shadow var(--t-base);
}

.valeur-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
}

.valeur-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  flex-shrink: 0;
}

.valeur-card h3 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--text-1);
  text-transform: uppercase;
}

.valeur-card p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.7;
}

/* ============ SECTION ÉCOLOGIE ============ */
#ecologie {
  background: var(--bg-900);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.ecologie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: center;
}

.ecologie-content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}

.ecologie-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--text-1);
  line-height: 1.1;
}

.ecologie-content p {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.8;
}

.ecologie-quote {
  border-left: 3px solid var(--gold);
  padding-left: var(--sp-lg);
}

.ecologie-quote p {
  font-size: 16px;
  font-style: italic;
  color: var(--text-2);
  line-height: 1.7;
}

.ecologie-steps {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
}

.ecologie-step {
  display: flex;
  gap: var(--sp-lg);
  align-items: flex-start;
}

.step-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold-border);
  line-height: 1;
  flex-shrink: 0;
  width: 42px;
  text-align: right;
  padding-top: 2px;
}

.ecologie-step strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-2);
  margin-bottom: 4px;
}

.ecologie-step p {
  font-size: 13px;
  color: var(--text-4);
  line-height: 1.6;
}

.ecologie-visual {
  display: flex;
  flex-direction: column;
  gap: var(--sp-lg);
  align-items: stretch;
}

.ecologie-metric {
  background: var(--bg-700);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg) var(--sp-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.metric-value {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -2px;
  line-height: 1;
}

.metric-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-4);
  text-transform: uppercase;
}

.ecologie-visual img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ecologie-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
}

.eco-tag {
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-4);
  transition:
    color var(--t-fast),
    border-color var(--t-fast),
    background var(--t-fast);
}

.eco-tag:hover {
  color: var(--gold);
  border-color: var(--gold-border);
  background: rgba(212, 175, 55, 0.06);
}

/* ============ SECTION CONTACT ============ */
#contact {
  background: var(--bg-800);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  align-items: stretch;
  margin-top: var(--sp-2xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.contact-item {
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
  background: var(--bg-700);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  transition: border-color var(--t-base);
}

.contact-item:hover {
  border-color: var(--gold-border);
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 6px;
}

.contact-item address,
.contact-item a,
.contact-item span {
  display: block;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.contact-item a:hover {
  color: var(--gold);
}

.contact-item--legal {
  background: var(--bg-600);
}

.contact-item--legal span {
  font-size: 13px;
  color: var(--text-4);
}

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-height: 400px;
  position: relative;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
  filter: brightness(0.7) saturate(0.4) contrast(1.1);
}

/* ============ FOOTER ============ */
#footer {
  background: var(--bg-900);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--sp-2xl) var(--sp-lg) var(--sp-xl);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: var(--sp-2xl);
  margin-bottom: var(--sp-xl);
}

.footer-brand {
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 4px;
}

.footer-brand-tagline {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-4);
  text-transform: uppercase;
  line-height: 1.6;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-4);
  text-transform: uppercase;
  margin-bottom: var(--sp-md);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a,
.footer-col li {
  font-size: 14px;
  color: var(--text-3);
  transition: color var(--t-fast);
  line-height: 1.4;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: var(--sp-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-md);
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-4);
}

.footer-credit a {
  color: var(--gold);
  font-weight: 600;
  font-size: 12px;
  transition: opacity var(--t-fast);
}

.footer-credit a:hover {
  opacity: 0.8;
}

/* ============ RESPONSIVE — 1200px ============ */
@media (max-width: 1200px) {
  .section-container {
    padding: var(--sp-2xl) var(--sp-xl);
  }
}

/* ============ RESPONSIVE — 1024px ============ */
@media (max-width: 1024px) {
  #hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: calc(var(--nav-height) + var(--sp-2xl)) 0 var(--sp-2xl);
  }
  .hero-content {
    padding: 0 var(--sp-xl);
    align-items: center;
    text-align: center;
  }
  .hero-badges {
    justify-content: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-subtitle {
    max-width: none;
  }
  .hero-visual {
    padding: 0 var(--sp-xl);
    max-height: 50vh;
  }
  .hero-visual img {
    max-height: 44vh;
  }
  .hero-scroll {
    display: none;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .histoire-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }
  .histoire-image img {
    height: 380px;
  }

  .valeurs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ecologie-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-map {
    min-height: 320px;
  }
  .contact-map iframe {
    min-height: 320px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--sp-xl);
  }
}

/* ============ RESPONSIVE — 768px ============ */
@media (max-width: 768px) {
  :root {
    --sp-3xl: 72px;
    --sp-2xl: 48px;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    gap: var(--sp-sm);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition:
      opacity var(--t-base),
      visibility var(--t-base),
      transform var(--t-base);
    padding: var(--sp-xl);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    font-size: 20px;
    padding: var(--sp-md) var(--sp-lg);
    text-align: center;
    border-radius: var(--radius-md);
  }

  .nav-burger {
    display: flex;
  }

  .valeurs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ============ RESPONSIVE — 480px ============ */
@media (max-width: 480px) {
  :root {
    --sp-3xl: 56px;
    --sp-2xl: 40px;
  }

  .section-container {
    padding: var(--sp-3xl) var(--sp-md);
  }

  .hero-content {
    padding: 0 var(--sp-md);
  }

  .hero-title-line1 {
    font-size: 3.2rem;
  }
  .hero-title-line2 {
    font-size: 2.2rem;
  }

  .valeurs-grid {
    grid-template-columns: 1fr;
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }

  .histoire-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .stat-number {
    font-size: 1.4rem;
  }

  .products-grid {
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============ ACCESSIBILITY ============ */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.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;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
