/* ════════════════════════════════════════════════════════════
   Tīmanu  styles.css
   Thème : Noir (fixe  fond sombre, accents dorés)
   Polices : Cormorant Garamond (titres) + Jost (corps)
   ════════════════════════════════════════════════════════════ */


/* ────────────────────────────────────────────────────────────
   VARIABLES CSS  Thème Noir
   ────────────────────────────────────────────────────────────
   Pour modifier les couleurs, changer uniquement ces valeurs.
   ──────────────────────────────────────────────────────────── */
:root {
  /* Fonds */
  --page:         #15120b;
  --surface:      #1e1810;
  --surface-alt:  #241d12;
  --card:         #1e1810;

  /* Textes */
  --text:         #ece3cf;
  --head:         #f7efdd;
  --muted:        #b3a279;

  /* Accent doré */
  --gold:         #e3aa48;
  --gold-bright:  #eab957;
  --line:         rgba(227, 170, 72, 0.20);

  /* Footer */
  --footer-bg:    #100d07;
  --footer-text:  #cdbf9d;
  --footer-muted: #8a7c5b;

  /* Typographie */
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container:    1400px;
  --radius:       5px;
}


/* ────────────────────────────────────────────────────────────
   RESET & BASE
   ──────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--page);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

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

button {
  cursor: pointer;
  font-family: inherit;
}

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

address {
  font-style: normal;
}

ul, ol {
  list-style: none;
}

::selection {
  background: var(--gold);
  color: var(--page);
}


/* ────────────────────────────────────────────────────────────
   LAYOUT  Conteneur centré
   ──────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 48px;
}

/* Container identique mais conservé pour compatibilité */
.container-wide {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 56px;
}


/* ────────────────────────────────────────────────────────────
   HEADER
   ──────────────────────────────────────────────────────────── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--page);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(4px);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  padding: 0;
  flex-shrink: 0;
}

/* Image logo (assets/logo-or-complet.png) */
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.35));
  transition: opacity 0.15s;
}
.logo-btn:hover .logo-img { opacity: 0.88; }

/* Fallback texte si image absente */
.logo-text-fallback {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.logo-text {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.32em;
  color: var(--head);
  line-height: 1;
}

.logo-sub {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

/* Navigation principale */
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--font-sans);
  font-size: 13.5px;
  letter-spacing: 0.03em;
  color: var(--text);
  opacity: 0.7;
  padding: 5px 0;
  font-weight: 400;
  transition: opacity 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.nav-link:hover  { opacity: 1; }
.nav-link.active { opacity: 1; font-weight: 500; border-bottom-color: var(--gold); }

/* Actions header droite */
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Switcher FR/EN */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
}

.lang-btn {
  background: transparent;
  border: none;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 3px 5px;
  color: var(--text);
  opacity: 0.55;
  font-weight: 400;
  transition: opacity 0.15s, color 0.15s;
}

.lang-btn.active { color: var(--gold); opacity: 1; font-weight: 600; }
.lang-btn:hover:not(.active) { opacity: 0.9; }

.lang-sep {
  opacity: 0.35;
  font-size: 12px;
  user-select: none;
}

/* Bouton panier */
.cart-btn {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 500;
  transition: background 0.15s;
  white-space: nowrap;
}

.cart-btn:hover { background: rgba(227, 170, 72, 0.1); }

/* Burger (mobile) */
.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
}

.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: opacity 0.15s;
}

/* Navigation mobile */
.mobile-nav {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.mobile-nav.hidden { display: none; }

.mobile-nav-link {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  text-align: left;
  padding: 14px 32px;
  border-bottom: 1px solid var(--line);
  transition: color 0.15s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active { color: var(--gold); }


/* ────────────────────────────────────────────────────────────
   TYPOGRAPHIE PARTAGÉE
   ──────────────────────────────────────────────────────────── */
.eyebrow-text {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.eyebrow-line {
  display: inline-block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.04;
  color: var(--head);
}

.page-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.01;
  color: var(--head);
  margin-bottom: 16px;
}

.page-intro {
  font-size: 16.5px;
  line-height: 1.72;
  max-width: 42em;
  color: var(--text);
  opacity: 0.85;
  font-weight: 300;
}


/* ────────────────────────────────────────────────────────────
   BOUTONS
   ──────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #1a1407;
  border: none;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
  transition: background 0.15s;
  white-space: nowrap;
}

.btn-primary:hover { background: var(--gold-bright); }

.btn-outline {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(227, 170, 72, 0.45);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
  transition: border-color 0.15s;
  white-space: nowrap;
}

.btn-outline:hover { border-color: var(--gold); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 24px;
  border-radius: 2px;
  transition: border-color 0.15s;
  white-space: nowrap;
}

.btn-ghost:hover { border-color: var(--gold); }

/* Pleine largeur (utilisé dans les cartes produit) */
.btn-full { width: 100%; text-align: center; }

/* Bouton désactivé (produits "bientôt") */
.btn-disabled {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--line);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px;
  border-radius: 2px;
  cursor: not-allowed;
  opacity: 0.8;
}


/* ────────────────────────────────────────────────────────────
   SECTIONS  fonds et espacements
   ──────────────────────────────────────────────────────────── */
.section-dark    { background: var(--page); }
.section-surface { background: var(--surface); }

/* En-tête de section (titre + bouton "voir tout") */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 72px;
  margin-bottom: 40px;
}

.section-head-center {
  text-align: center;
  padding-top: 72px;
  margin-bottom: 50px;
}

.section-head-center .eyebrow-text {
  margin-bottom: 16px;
}

/* En-tête de page (bannière sous le header) */
.page-hero {
  background: var(--page);
  border-bottom: 1px solid var(--line);
}

.page-hero .container {
  padding-top: 68px;
  padding-bottom: 68px;
}

.page-hero .eyebrow-text {
  margin-bottom: 18px;
}


/* ────────────────────────────────────────────────────────────
   PAGE ACCUEIL  Hero plein écran
   ──────────────────────────────────────────────────────────── */

/* Hero full-viewport */
.hero-full {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 12s ease-out;
}

.hero-full:hover .hero-bg-img {
  transform: scale(1.0);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(21, 18, 11, 0.62) 0%,
    rgba(21, 18, 11, 0.48) 50%,
    rgba(21, 18, 11, 0.72) 100%
  );
}

.hero-centered {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-logo {
  display: block;
  width: clamp(100px, 18vw, 160px);
  margin: 0 auto 28px;
  opacity: 0.92;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.45));
}

.eyebrow-hero {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0.92;
}

.hero-title-full {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(64px, 9vw, 130px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: #f7efdd;
  margin-bottom: 28px;
  text-shadow: 0 2px 32px rgba(0,0,0,0.35);
}

.hero-title-full em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub-full {
  font-size: 17px;
  line-height: 1.74;
  max-width: 52ch;
  margin: 0 auto 44px;
  color: rgba(236, 227, 207, 0.88);
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* Variante outline claire pour fond sombre */
.btn-outline-light {
  display: inline-block;
  background: transparent;
  border: 1px solid rgba(236, 227, 207, 0.50);
  color: #ece3cf;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: 2px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

/* Indicateur de scroll */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollFade 2s ease-in-out infinite;
}
@keyframes scrollFade {
  0%   { opacity: 0.8; transform: scaleY(1) translateY(0); }
  100% { opacity: 0;   transform: scaleY(0.6) translateY(16px); }
}

/* ── Hero agriculture (fond photo page agriculture) ── */
.agri-hero {
  position: relative;
  background-color: var(--page);
}

.hero-overlay {
  background: linear-gradient(to bottom,
    rgba(21, 18, 11, 0.55) 0%,
    rgba(21, 18, 11, 0.80) 100%);
  padding: 100px 0 80px;
}

/* ── Photos CDN (compatibilité pages existantes) ── */
.hero-photo {
  width: 100%;
  max-width: 520px;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 32px 72px -28px rgba(0, 0, 0, 0.70);
}

.story-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 18px 48px -16px rgba(0, 0, 0, 0.60);
}

/* Bandeau photos horizontal (pages internes) */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 2.5rem;
}

.strip-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 5px;
}

/* Galerie agriculture */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 2.5rem 0;
}

.gallery-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
}

/* Encadré étiquette (conservé) */
.label-frame { position: relative; padding: 30px; border-radius: 6px; background: var(--surface-alt); border: 1px solid var(--line); box-shadow: 0 32px 72px -28px rgba(0,0,0,0.65); }
.label-frame-sm { padding: 22px; }
.label-img { height: 420px; width: auto; border-radius: 3px; box-shadow: 0 18px 42px -14px rgba(0,0,0,0.72); }
.label-frame-sm .label-img { height: 390px; }


/* ────────────────────────────────────────────────────────────
   ACCUEIL  Bandeau photo plein bord
   ──────────────────────────────────────────────────────────── */
.bleed-band {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.bleed-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 60%;
  display: block;
}

.bleed-img--tall {
  height: 520px;
  object-position: center 45%;
}

/* Bandeau triple colonnes */
.bleed-triple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  overflow: hidden;
}

.bleed-triple-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.bleed-triple-img:hover { transform: scale(1.04); }


/* ────────────────────────────────────────────────────────────
   ACCUEIL  Section split Vaniculteurs (plein bord)
   ──────────────────────────────────────────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.split-img-side {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 600px;
}

.split-text-side {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  gap: 24px;
}

.split-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.0;
  color: var(--head);
  margin: 8px 0;
}

.split-desc {
  font-size: 16px;
  line-height: 1.78;
  color: var(--text);
  opacity: 0.82;
  font-weight: 300;
  max-width: 44ch;
}


/* ────────────────────────────────────────────────────────────
   ACCUEIL  Points forts (nouvelle version)
   ──────────────────────────────────────────────────────────── */
.hl-section {}

.hl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 96px 0 88px;
}

.hl-card {
  padding: 0 52px 0 0;
  border-left: 1px solid var(--line);
  padding-left: 48px;
}

.hl-card:first-child {
  border-left: none;
  padding-left: 0;
}

.hl-num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hl-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--head);
}

.hl-desc {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--muted);
  font-weight: 300;
  max-width: 32ch;
}


/* ────────────────────────────────────────────────────────────
   PAGE ACCUEIL  Points forts
   ──────────────────────────────────────────────────────────── */
.highlights-section {}

.highlights-grid {
  padding-top: 84px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.highlight-card {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.highlight-num {
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 14px;
}

.highlight-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 10px;
  color: var(--head);
}

.highlight-desc {
  font-size: 14.5px;
  line-height: 1.68;
  color: var(--muted);
  font-weight: 300;
}


/* ────────────────────────────────────────────────────────────
   PRODUITS  grille et cartes
   ──────────────────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  padding-bottom: 96px;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.product-card:hover {
  border-color: rgba(227, 170, 72, 0.42);
}

/* Zone image */
.card-img-wrap {
  position: relative;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-bottom: 1px solid rgba(227, 170, 72, 0.14);
  overflow: hidden;
}

.card-img-sm { min-height: 240px; }
.card-img-lg { min-height: 260px; }

.product-img {
  max-height: 200px;
  width: auto;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.52));
  transition: transform 0.25s ease;
}

.product-card:hover .product-img {
  transform: translateY(-3px);
}

.product-placeholder {
  position: absolute;
  inset: 18px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: repeating-linear-gradient(135deg, var(--surface) 0 12px, var(--card) 12px 24px);
  border: 1px dashed var(--line);
}

.product-placeholder span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold);
  color: #1a1407;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

/* Corps de la carte */
.card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0;
}

.card-sub {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.card-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.12;
  color: var(--head);
  margin-bottom: 12px;
  flex: 1;
}

.card-desc {
  font-size: 14px;
  line-height: 1.68;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 300;
  flex: 1;
}

/* ── Badges de stock ───────────────────────────────────────── */
.stock-badge {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}

/* Stock bas (1-5) : ambre discret */
.stock-badge--low {
  background: rgba(227, 170, 72, 0.15);
  border: 1px solid rgba(227, 170, 72, 0.40);
  color: var(--gold-bright);
}

/* Épuisé (0) : rouge discret */
.stock-badge--out {
  background: rgba(200, 60, 60, 0.12);
  border: 1px solid rgba(200, 60, 60, 0.30);
  color: #d97b7b;
}

/* Carte épuisée : légèrement désaturée */
.product-card--out {
  opacity: 0.72;
}

.card-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.price-xpf {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 27px;
  color: var(--head);
}

.price-eur {
  font-size: 13px;
  color: var(--muted);
}

/* Filtres de catégorie */
.filters-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 48px;
  margin-bottom: 16px;
}

.chip {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 400;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.chip:hover:not(.active) { border-color: var(--muted); }

.chip.active {
  background: var(--gold);
  color: #1a1407;
  font-weight: 500;
  border-color: var(--gold);
}

.result-count {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
}


/* ────────────────────────────────────────────────────────────
   PAGE NOTRE HISTOIRE
   ──────────────────────────────────────────────────────────── */
.story-grid {
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 68px;
  align-items: center;
}

.story-visual {
  display: flex;
  justify-content: center;
}

.story-para {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  opacity: 0.92;
  margin-bottom: 18px;
  font-weight: 300;
}

.story-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  color: var(--gold);
  margin-top: 14px;
}

/* Étapes du savoir-faire */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
}

.step-num {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 18px;
}

.step-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 23px;
  line-height: 1.15;
  color: var(--head);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  line-height: 1.68;
  color: var(--muted);
  font-weight: 300;
}

/* Statistiques (pilules) */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 56px;
  padding-bottom: 88px;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  border: 1px solid rgba(227, 170, 72, 0.25);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.stat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}


/* ────────────────────────────────────────────────────────────
   PAGE VANICULTEURS
   ──────────────────────────────────────────────────────────── */
.growers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
  padding-top: 72px;
}

.grower-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.grower-card:hover {
  border-color: rgba(227, 170, 72, 0.35);
}

.grower-img-wrap {
  position: relative;
  height: 290px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: repeating-linear-gradient(
    135deg,
    var(--surface)     0 16px,
    var(--surface-alt) 16px 32px
  );
  border-bottom: 1px solid rgba(227, 170, 72, 0.14);
}

.grower-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grower-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.grower-placeholder span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.grower-body {
  padding: 28px;
}

.grower-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.1;
  color: var(--head);
  margin-bottom: 12px;
}

.grower-note {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--muted);
  font-weight: 300;
}

/* Carte conclusive */
.closing-card {
  margin-top: 64px;
  margin-bottom: 88px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 60px;
  text-align: center;
}

.closing-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.08;
  color: var(--head);
  max-width: 22em;
  margin: 0 auto 18px;
}

.closing-text {
  font-size: 16px;
  line-height: 1.76;
  color: var(--muted);
  max-width: 48em;
  margin: 0 auto;
  font-weight: 300;
}


/* ────────────────────────────────────────────────────────────
   PAGE CONTACT
   ──────────────────────────────────────────────────────────── */
.contact-grid {
  padding-top: 80px;
  padding-bottom: 88px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 68px;
  align-items: start;
}

/* Formulaire */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.form-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.form-input {
  width: 100%;
  background: var(--card);
  border: 1px solid rgba(227, 170, 72, 0.32);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  padding: 14px 17px;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.15s;
}

.form-input:focus {
  border-color: var(--gold);
}

.form-input::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

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

.form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.form-feedback {
  font-size: 14px;
}

.form-feedback.success { color: var(--gold); }
.form-feedback.error   { color: #e07070; }

/* Bloc infos */
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 38px;
}

.info-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 500;
}

.info-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--text);
  font-weight: 300;
}

.info-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--head);
  line-height: 1.2;
  margin-bottom: 4px;
}

.info-link {
  color: var(--gold);
  text-decoration: none;
  transition: opacity 0.15s;
}

.info-link:hover { opacity: 0.8; }

.info-divider {
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}

/* Liens sociaux */
.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-block;
  border: 1px solid var(--line);
  color: var(--footer-text);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 9px 17px;
  border-radius: 999px;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}

.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}


/* ────────────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────────────── */
#site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
}

.footer-grid {
  padding-top: 66px;
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 52px;
  border-bottom: 1px solid var(--line);
}

.footer-logo {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.3em;
  color: var(--head);
  margin-bottom: 14px;
}

.footer-blurb {
  font-size: 14px;
  line-height: 1.72;
  color: var(--footer-muted);
  max-width: 28em;
  margin-bottom: 22px;
  font-weight: 300;
}

.footer-heading {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 500;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer-link {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--footer-text);
  text-align: left;
  padding: 0;
  transition: color 0.15s;
  font-weight: 300;
}

.footer-link:hover { color: var(--gold); }

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--footer-text);
  font-weight: 300;
}

.footer-info-name {
  font-weight: 500;
  color: var(--footer-text);
  margin-bottom: 2px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 28px;
  padding-bottom: 38px;
  font-size: 12.5px;
  color: var(--footer-muted);
}


/* ────────────────────────────────────────────────────────────
   TOAST (notification)
   ──────────────────────────────────────────────────────────── */
@keyframes toast-in {
  from { opacity: 0; transform: translate(-50%, 10px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--gold);
  color: #1a1407;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13.5px;
  letter-spacing: 0.04em;
  padding: 13px 28px;
  border-radius: 999px;
  box-shadow: 0 16px 44px -12px rgba(0, 0, 0, 0.55);
  animation: toast-in 0.22s ease;
  white-space: nowrap;
  pointer-events: none;
}

.toast.hidden { display: none; }


/* ════════════════════════════════════════════════════════════
   GROWER CARDS  état cliquable
   ════════════════════════════════════════════════════════════ */

.grower-card--link {
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.grower-card--link:hover,
.grower-card--link:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.18);
  outline: none;
}
.grower-card-cta {
  display: inline-block;
  margin-top: .75rem;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .55;
  transition: opacity .15s;
}
.grower-card--link:hover .grower-card-cta { opacity: 1; }

/* ════════════════════════════════════════════════════════════
   GROWER DETAIL PAGE
   ════════════════════════════════════════════════════════════ */

.grower-detail-hero {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: var(--color-surface);
  display: flex;
  flex-direction: column;
}
.grower-detail-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: .35;
}
.grower-detail-placeholder {
  position: absolute;
  inset: 0;
  background: var(--color-surface);
}
.grower-detail-hero-body {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-block: 3rem;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
}
.grower-detail-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  opacity: .9;
  margin-top: .75rem;
  max-width: 60ch;
  line-height: 1.5;
}
.grower-back-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: inherit;
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .65;
  padding: 0;
  margin-bottom: 1rem;
  display: inline-block;
  transition: opacity .15s;
}
.grower-back-btn:hover { opacity: 1; }

/* Stats box dans la section biographie */
.grower-stats-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 4px;
  padding: 2rem 1.5rem;
}
.grower-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.grower-stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.grower-stat-num {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--color-accent);
}
.grower-stat-lbl {
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .55;
}


/* ────────────────────────────────────────────────────────────
   PAGE HISTOIRE  Valeurs
   ──────────────────────────────────────────────────────────── */
.values-section { padding-bottom: 20px; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
  padding-bottom: 88px;
}

.value-card {
  padding: 40px 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
}

.value-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
  filter: grayscale(0.2);
}

.value-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  color: var(--head);
  margin-bottom: 12px;
}

.value-desc {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--muted);
  font-weight: 300;
}

/* ────────────────────────────────────────────────────────────
   PAGE HISTOIRE  Engagements
   ──────────────────────────────────────────────────────────── */
.engagements-section { padding-top: 0; }

.engagements-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 72px;
  align-items: center;
  padding: 84px 0;
}

.engagements-list {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.engagements-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}

.engagements-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
}

.engagements-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.engagements-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
}

.engagements-photos .engagements-photo:first-child {
  margin-top: 40px;
}

/* ────────────────────────────────────────────────────────────
   PAGE AGRICULTURE  Devises band
   ──────────────────────────────────────────────────────────── */
.devises-band {
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 48px 40px;
}

.devise-item {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.devise-text {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
  color: #1a1407;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.devise-line {
  display: block;
  height: 1px;
  width: 40px;
  background: rgba(26, 20, 7, 0.35);
  flex-shrink: 0;
}

.devise-sep {
  width: 1px;
  height: 36px;
  background: rgba(26, 20, 7, 0.25);
  margin: 0 24px;
  flex-shrink: 0;
}


/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */

/* ── Tablette (≤ 960px) ─────────────────────────────────── */
@media (max-width: 960px) {
  .values-grid        { grid-template-columns: 1fr; gap: 20px; margin-top: 36px; padding-bottom: 60px; }
  .engagements-grid   { grid-template-columns: 1fr; gap: 44px; padding: 56px 0; }
  .engagements-photos { display: none; }
  .devises-band       { flex-direction: column; gap: 24px; padding: 40px 24px; }
  .devise-sep         { width: 40px; height: 1px; margin: 0; }

  .hero-title-full { font-size: clamp(48px, 10vw, 90px); }
  .hero-sub-full   { font-size: 16px; }

  .split-section {
    grid-template-columns: 1fr;
  }
  .split-img-side {
    min-height: 380px;
  }
  .split-text-side {
    padding: 60px 40px;
  }

  .hl-grid {
    grid-template-columns: 1fr;
    padding: 64px 0 56px;
    gap: 32px;
  }
  .hl-card {
    border-left: none;
    border-top: 1px solid var(--line);
    padding: 24px 0 0;
    padding-left: 0;
  }
  .hl-card:first-child { border-top: none; padding-top: 0; }
  .hl-num { font-size: 38px; margin-bottom: 12px; }

  .bleed-triple {
    grid-template-columns: 1fr;
  }
  .bleed-triple-img { height: 240px; }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 58px;
    padding-bottom: 56px;
    gap: 44px;
  }
  .hero-visual { order: -1; }
  .label-img { height: 300px; }

  .story-grid {
    grid-template-columns: 1fr;
    padding-top: 60px;
    padding-bottom: 60px;
    gap: 44px;
  }
  .story-visual { justify-content: flex-start; }

  .contact-grid {
    grid-template-columns: 1fr;
    padding-top: 64px;
    padding-bottom: 64px;
    gap: 44px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ── Mobile (≤ 640px) ───────────────────────────────────── */
@media (max-width: 640px) {
  .container,
  .container-wide {
    padding: 0 18px;
  }

  .hero-full { min-height: 100svh; }
  .hero-title-full { font-size: clamp(42px, 13vw, 68px); }
  .hero-sub-full { font-size: 15px; max-width: 90%; }
  .hero-ctas { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline-light { width: 100%; text-align: center; }

  .split-text-side { padding: 48px 24px; }
  .split-title { font-size: clamp(32px, 9vw, 50px); }

  .bleed-img { height: 280px; }
  .bleed-img--tall { height: 320px; }
  .bleed-triple { grid-template-columns: 1fr; }
  .bleed-triple-img { height: 200px; }

  /* Header */
  .header-inner { padding: 12px 18px; }
  .main-nav { display: none; }
  .burger-btn { display: flex; }
  .cart-btn { padding: 8px 13px; font-size: 11px; }

  .mobile-nav-link { padding: 13px 18px; }

  /* Hero */
  .hero-grid {
    padding-top: 40px;
    padding-bottom: 40px;
    gap: 36px;
  }
  .hero-title { font-size: clamp(38px, 12vw, 62px); }
  .hero-sub   { font-size: 15px; }
  .hero-ctas  { flex-direction: column; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline { width: 100%; text-align: center; }
  .label-img { height: 230px; }
  .label-frame { padding: 20px; }

  /* Highlights */
  .highlights-grid {
    padding-top: 48px;
    padding-bottom: 16px;
  }
  .hl-grid { padding: 44px 0 36px; gap: 24px; }

  /* Section heads */
  .section-head {
    padding-top: 44px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
  }
  .section-head-center {
    padding-top: 44px;
    margin-bottom: 36px;
  }
  .page-hero .container {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  /* Pages */
  .page-title { font-size: clamp(34px, 9vw, 50px); }

  /* Grilles */
  .products-grid { grid-template-columns: 1fr; padding-bottom: 56px; }
  .steps-grid    { grid-template-columns: 1fr; }
  .growers-grid  { grid-template-columns: 1fr; padding-top: 44px; }
  .highlights-grid { grid-template-columns: 1fr; }
  .hl-grid       { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .devise-text   { font-size: 16px; }
  .devise-line   { width: 24px; }

  /* Story */
  .story-grid { padding-top: 44px; padding-bottom: 44px; }

  /* Contact */
  .contact-grid  { padding-top: 44px; padding-bottom: 44px; gap: 32px; }
  .closing-card  { padding: 32px 22px; }

  /* Footer */
  .footer-grid   { grid-template-columns: 1fr; gap: 36px; }
  .footer-brand  { grid-column: auto; }
  .footer-bottom { font-size: 12px; }

  /* Grower detail */
  .grower-detail-hero { min-height: 320px; }
  .grower-stats-grid  { grid-template-columns: repeat(2, 1fr); }
}
