/* =========================================================
   LE RUCHER DES ALBERES - Miellerie artisanale
   Shared stylesheet - colorful + illustrated + editorial
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Bricolage+Grotesque:opsz,wght@12..96,300..800&family=Geist:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* -------- Tokens -------- */
:root {
  /* Surfaces - warm paper palette */
  --paper:        #F4EDDF;
  --paper-2:      #EBE2CE;
  --paper-3:      #DDD1B6;
  --cream:        #F8F2E5;

  /* Ink */
  --ink:          #14130E;
  --ink-2:        #2A271F;
  --ink-mute:     #6B6354;
  --rule:         #CDC2A8;
  --rule-soft:    #DCD2BB;

  /* Brand greens */
  --green:        #1E3B2E;
  --green-mid:    #2E5240;
  --green-deep:   #102219;
  --green-soft:   #BDCEBE;
  --green-pale:   #DDE5D5;

  /* Warm blocks (citrus) */
  --peach:        #F3CAA0;
  --peach-2:      #E8B07C;
  --peach-deep:   #C97B3A;

  --ochre:        #B8631B;
  --ochre-soft:   #E6B27A;
  --ochre-bright: #EE8A1F;

  /* Berry block */
  --blush:        #E8C7C1;
  --blush-2:      #D89E97;

  /* Citrus accent */
  --citrus:       #D8A23A;
  --lime:         #B5C966;

  /* Fonts */
  --f-serif: 'Fraunces', 'Times New Roman', serif;
  --f-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --f-sans:  'Geist', system-ui, -apple-system, sans-serif;
  --f-mono:  'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --max:        1400px;
  --pad:        clamp(20px, 4vw, 56px);
  --grid-gap:   clamp(16px, 2vw, 28px);
  --radius-lg:  24px;
  --radius-md:  16px;

  --ease:       cubic-bezier(.22,.61,.36,1);
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none !important; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* -------- Type primitives -------- */
.h-serif {
  font-family: var(--f-serif);
  font-weight: 350;
  letter-spacing: -0.025em;
  line-height: .92;
}
.h-display-sans {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: .96;
}

.h1 { font-family: var(--f-serif); font-weight: 350; font-size: clamp(64px, 11vw, 168px); line-height: .88; letter-spacing: -.03em; }
.h2 { font-family: var(--f-serif); font-weight: 350; font-size: clamp(44px, 6.5vw, 104px); line-height: .92; letter-spacing: -.025em; }
.h3 { font-family: var(--f-serif); font-weight: 350; font-size: clamp(30px, 3.6vw, 56px); line-height: .98; letter-spacing: -.015em; }

.italic { font-style: italic; }
.green-txt { color: var(--green); }
.ochre-txt { color: var(--ochre); }
.peach-txt { color: var(--peach-deep); }
.ink-soft  { color: var(--ink-mute); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--ink-mute);
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--ochre);
}
.eyebrow.green::before { background: var(--green); }
.eyebrow.light { color: color-mix(in oklab, var(--paper) 70%, transparent); }

.lede {
  font-family: var(--f-serif);
  font-weight: 350;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.25;
  font-style: italic;
  color: var(--ink);
}
.body   { font-size: 16px; line-height: 1.65; color: var(--ink-2); max-width: 62ch; }
.body-lg { font-size: 17px; line-height: 1.7;  color: var(--ink-2); }

/* -------- Layout -------- */
.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding-top: clamp(80px, 11vh, 140px); padding-bottom: clamp(80px, 11vh, 140px); }

/* =========================================================
   HEADER - minimal: brand + nav links only
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 200;
  backdrop-filter: blur(10px);
  background: color-mix(in oklab, var(--paper) 86%, transparent);
  border-bottom: 1px solid var(--rule);
}
.site-header .bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.brand img {
  height: 44px;
  width: auto;
  display: block;
}
.nav {
  display: flex; gap: 4px;
  font-family: var(--f-mono);
  font-size: 1.1rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--ink-2);
  position: relative;
  transition: color .25s var(--ease);
}
.nav a::before {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 6px;
  height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav a:hover { color: var(--ink); }
.nav a:hover::before, .nav a.is-active::before { transform: scaleX(1); }
.nav a.is-active { color: var(--ink); }

.burger {
  display: none;
  position: relative;
  width: 44px; height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.burger span {
  position: absolute;
  left: 8px; right: 8px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 28px; }

.mobile-nav { display: none; }
.mobile-nav.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0; right: 0;
  max-height: 100vh;
  background: var(--green-deep);
  color: var(--paper);
  z-index: 300;
  padding: 88px var(--pad) 28px;
  font-family: var(--f-serif);
  font-weight: 350;
  font-size: clamp(22px, 3.5vh, 30px);
  line-height: 1;
  letter-spacing: -.015em;
  overflow-y: auto;
  box-shadow: 0 24px 40px -16px rgba(0,0,0,.4);
}
.mobile-nav.is-open a {
  color: var(--paper);
  padding: 14px 0;
  border-bottom: 1px solid color-mix(in oklab, var(--paper) 14%, transparent);
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}
.mobile-nav.is-open a:last-child { border-bottom: 0; }
.mobile-nav.is-open a:hover { color: var(--ochre-soft); padding-left: 8px; }

.mobile-nav__close {
  position: absolute;
  top: 45px;
  right: var(--pad);
  width: 44px; height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 2;
}
.mobile-nav__close span {
  position: absolute;
  left: 8px; right: 8px;
  top: 21px;
  height: 3px;
  background: var(--paper);
  border-radius: 2px;
  transition: background .25s var(--ease);
}
.mobile-nav__close span:nth-child(1) { transform: rotate(45deg); }
.mobile-nav__close span:nth-child(2) { transform: rotate(-45deg); }
.mobile-nav__close:hover span { background: var(--ochre-soft); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 16px 26px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: var(--ink); color: var(--paper);
  transition: transform .35s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn:hover { transform: translateY(-1px); background: var(--green); border-color: var(--green); }
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--paper); }
.btn.light { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn.light:hover { background: var(--ochre-bright); color: var(--paper); border-color: var(--ochre-bright); }

/* =========================================================
   HERO - image dominant
   ========================================================= */
.hero {
  background: var(--peach);
  padding: clamp(40px, 6vh, 72px) 0 0;
  position: relative;
  overflow: hidden;
}
.hero .top-meta {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  flex-wrap: wrap; color: var(--green-deep);
}
.hero .top-meta .eyebrow { color: var(--green-deep); }
.hero .top-meta .eyebrow::before { background: var(--green-deep); }

.hero-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-top: clamp(32px, 5vh, 64px);
  padding-bottom: clamp(48px, 6vh, 80px);
}
.hero-row .copy { color: var(--green-deep); }
.hero-row .copy .lede { color: var(--green-deep); margin-bottom: 32px; max-width: 32ch; font-size: clamp(18px, 1.7vw, 22px); }
.hero-row .copy .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-row .copy .actions .btn { background: var(--green-deep); border-color: var(--green-deep); color: var(--paper); }
.hero-row .copy .actions .btn:hover { background: var(--ink); border-color: var(--ink); }
.hero-row .copy .actions .btn.ghost { background: transparent; color: var(--green-deep); border-color: var(--green-deep); }
.hero-row .copy .actions .btn.ghost:hover { background: var(--green-deep); color: var(--paper); }

.hero-visual {
  position: relative;
  aspect-ratio: 1/1.05;
}
.hero-visual .center {
  position: absolute;
  inset: 8% 4%;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(160deg, #FCE0B7, #E8956A 60%, #C36223);
  box-shadow: 0 30px 60px -20px rgba(60,30,0,.35);
  display: flex; align-items: center; justify-content: center;
}
.hero-visual .center svg { width: 78%; height: 78%; }
.hero-visual .float {
  position: absolute;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 36px -10px rgba(0,0,0,.22);
  overflow: hidden;
}
.hero-visual .float svg { width: 72%; height: 72%; }
.hero-visual .float.f1 { left: -6%; top: 4%;   width: 28%; aspect-ratio: 1; background: var(--green); }
.hero-visual .float.f2 { right: -2%; top: 32%; width: 22%; aspect-ratio: 1; background: var(--paper); }
.hero-visual .float.f3 { left: 6%; bottom: 0%; width: 26%; aspect-ratio: 1; background: var(--blush); }
.hero-visual .float.f4 { right: 8%; bottom: 8%; width: 18%; aspect-ratio: 1; background: var(--green-pale); }

.hero-title {
  font-family: var(--f-serif);
  font-weight: 350;
  font-size: clamp(56px, 8.5vw, 150px);
  line-height: .86;
  letter-spacing: -.03em;
  color: var(--green-deep);
  margin: 0 0 24px;
}
.hero-title em { font-style: italic; color: var(--paper); font-weight: 350; }
.hero-title .dot { color: var(--ochre); }

.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--green-deep);
  color: var(--paper);
}
.hero-strip .cell {
  padding: 22px 24px;
  border-right: 1px solid color-mix(in oklab, var(--paper) 14%, transparent);
}
.hero-strip .cell:last-child { border-right: 0; }
.hero-strip .k { font-family: var(--f-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: color-mix(in oklab, var(--paper) 60%, transparent); margin-bottom: 8px; }
.hero-strip .v { font-family: var(--f-serif); font-weight: 400; font-size: clamp(18px, 1.7vw, 24px); line-height: 1.15; }

/* =========================================================
   CERTIFICATIONS strip
   ========================================================= */
.certs {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  padding: 26px 0;
}
.certs .row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
}
.certs .label {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-mute);
  max-width: 22ch;
  line-height: 1.5;
}
.certs .marks {
  display: flex; gap: clamp(20px, 3vw, 48px); flex-wrap: wrap; align-items: center;
}
.certs .mark {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -.005em;
  color: var(--ink-2);
  display: inline-flex; align-items: baseline; gap: 8px;
}
.certs .mark .sup { font-family: var(--f-mono); font-size: 10px; letter-spacing: .18em; color: var(--ochre); }

/* =========================================================
   MISSION editorial
   ========================================================= */
.mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.mission .left { display: flex; flex-direction: column; gap: 28px; }
.mission .visual {
  width: 100%; max-width: 480px; aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.mission .visual svg.fruit { width: 70%; height: 70%; }
.mission .visual .badge {
  position: absolute;
  bottom: 4%; right: 4%;
  width: 38%; aspect-ratio: 1;
  border-radius: 50%;
  background: var(--green);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; line-height: 1.5;
  padding: 18px;
  transform: rotate(-8deg);
}
.mission .right h2 em { font-family: var(--f-serif); font-style: italic; color: var(--green); }
.mission .right .body-lg { margin-top: 24px; }

/* =========================================================
   THREE DESKS
   ========================================================= */
.desks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  margin-top: clamp(28px, 4vh, 48px);
}
.desk {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  min-height: 460px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  isolation: isolate;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.desk:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(0,0,0,.3); }
.desk .num {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase;
  color: color-mix(in oklab, currentColor 60%, transparent);
}
.desk h3 {
  font-family: var(--f-serif);
  font-weight: 350;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: .96;
  margin: 14px 0 12px;
  letter-spacing: -.02em;
}
.desk h3 em { font-style: italic; }
.desk p {
  font-family: var(--f-sans);
  font-size: 14.5px; line-height: 1.55;
  margin: 0;
  max-width: 32ch;
  color: color-mix(in oklab, currentColor 78%, transparent);
}
.desk .arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase;
  margin-top: 18px;
  border-top: 1px solid color-mix(in oklab, currentColor 18%, transparent);
  padding-top: 18px;
  width: fit-content;
}
.desk .arrow svg { transition: transform .35s var(--ease); }
.desk:hover .arrow svg { transform: translateX(4px); }
.desk .deco {
  position: absolute;
  inset: auto -8% -10% auto;
  width: 70%; aspect-ratio: 1;
  z-index: -1;
  transition: transform .8s var(--ease);
}
.desk:hover .deco { transform: scale(1.08) rotate(-4deg); }
.desk .deco svg { width: 100%; height: 100%; filter: drop-shadow(0 18px 30px rgba(0,0,0,.18)); }
.desk .mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: auto;
}
.desk .mini-grid .chip {
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in oklab, currentColor 8%, transparent);
  border: 1px solid color-mix(in oklab, currentColor 18%, transparent);
  border-radius: 12px;
  aspect-ratio: 1;
  padding: 8px;
}
.desk .mini-grid .chip svg { width: 100%; height: 100%; }

.desk--peach   { background: var(--peach); color: var(--green-deep); }
.desk--green   { background: var(--green); color: var(--paper); }
.desk--blush   { background: var(--blush); color: var(--green-deep); }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  padding: 22px 0;
  background: var(--cream);
}
.marquee .track {
  display: flex; gap: 56px;
  animation: scroll 60s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee .item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1;
  letter-spacing: -.01em;
  color: var(--ink);
}
.marquee .item .num {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .2em; color: var(--ink-mute);
}
.marquee .item .dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--ochre);
  margin: 0 12px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   BIG TYPE BANNER with image cut
   ========================================================= */
.banner {
  position: relative;
  background: var(--paper);
  padding: clamp(80px, 14vh, 180px) 0 clamp(60px, 8vh, 100px);
  overflow: hidden;
  text-align: center;
}
.banner .text {
  font-family: var(--f-serif);
  font-weight: 350;
  font-size: clamp(80px, 18vw, 280px);
  line-height: .88;
  letter-spacing: -.04em;
  color: var(--green);
  margin: 0;
  position: relative;
  z-index: 1;
}
.banner .text em { font-style: italic; color: var(--ochre); }
.banner .img-cut {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -42%);
  width: 26%;
  aspect-ratio: 1;
  z-index: 2;
  pointer-events: none;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(160deg, #FFD96C, #EE8A1F);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 30px 60px rgba(80,40,0,.3);
}
.banner .img-cut svg { width: 75%; height: 75%; }
.banner .caption {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 56px;
  position: relative; z-index: 3;
}

/* =========================================================
   STATS row
   ========================================================= */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
}
.stat {
  padding: 36px 28px 30px;
  border-right: 1px solid var(--rule);
  position: relative;
}
.stat:last-child { border-right: 0; }
.stat .num {
  font-family: var(--f-serif);
  font-weight: 350;
  font-size: clamp(56px, 8vw, 120px);
  line-height: 1;
  letter-spacing: -.025em;
}
.stat .num sup {
  font-family: var(--f-mono); font-size: 14px; letter-spacing: .1em;
  color: var(--ochre); position: relative; top: -.7em; margin-left: 4px;
}
.stat .label {
  font-family: var(--f-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--ink-mute); margin-top: 14px;
}
.stat .icon {
  position: absolute; right: 24px; top: 32px;
  width: 56px; height: 56px;
  opacity: .55;
}

/* =========================================================
   DARK section - Why
   ========================================================= */
.dark-section {
  background: var(--green-deep);
  color: var(--paper);
  padding: clamp(80px, 12vh, 160px) 0;
  position: relative;
  overflow: hidden;
}
.dark-section::before {
  content: ""; position: absolute; pointer-events: none;
  right: -160px; top: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklab, var(--ochre) 55%, transparent) 0%, transparent 70%);
  opacity: .35;
}
.dark-section h2 em { font-family: var(--f-serif); font-style: italic; color: var(--ochre-soft); }
.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid color-mix(in oklab, var(--paper) 14%, transparent);
  margin-top: clamp(36px, 6vh, 64px);
  position: relative; z-index: 1;
}
.why-item {
  padding: 32px 28px;
  border-bottom: 1px solid color-mix(in oklab, var(--paper) 14%, transparent);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  transition: padding .35s var(--ease), background .35s var(--ease);
}
.why-item:nth-child(odd) { border-right: 1px solid color-mix(in oklab, var(--paper) 14%, transparent); }
.why-item:hover { padding-left: 38px; background: color-mix(in oklab, var(--paper) 4%, transparent); }
.why-item .num { font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em; color: var(--ochre-soft); padding-top: 6px; }
.why-item h4 { font-family: var(--f-serif); font-weight: 400; font-size: clamp(22px, 2.2vw, 32px); margin: 0 0 8px; line-height: 1.05; letter-spacing: -.01em; }
.why-item p { margin: 0; font-size: 14.5px; color: color-mix(in oklab, var(--paper) 78%, transparent); }

/* =========================================================
   BOWL band - CTA closer
   ========================================================= */
.bowl-band {
  position: relative;
  background: var(--blush);
  overflow: hidden;
  padding: clamp(72px, 11vh, 120px) 0;
}
.bowl-band .layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}
.bowl-band .copy h2 { color: var(--green-deep); }
.bowl-band .copy h2 em { font-style: italic; color: var(--ochre); }
.bowl-band .img {
  aspect-ratio: 1;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  background: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
}
.bowl-band .img svg { width: 70%; height: 70%; }
.bowl-band .img .sticker {
  position: absolute;
  background: var(--ochre-bright);
  color: var(--paper);
  border-radius: 50%;
  width: 124px; height: 124px;
  right: 6%; top: 8%;
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  line-height: 1.5;
  padding: 14px;
  transform: rotate(-10deg);
}
.bowl-band .img .float-fruit {
  position: absolute;
  border-radius: 50%;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 16px 28px -8px rgba(0,0,0,.25);
}
.bowl-band .img .float-fruit svg { width: 70%; height: 70%; }
.bowl-band .img .float-fruit.a { left: -4%; bottom: 18%; width: 28%; aspect-ratio: 1; }
.bowl-band .img .float-fruit.b { right: -2%; bottom: 6%; width: 20%; aspect-ratio: 1; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--green-deep);
  color: var(--paper);
  padding: clamp(60px, 8vh, 96px) 0 28px;
  position: relative;
  overflow: hidden;
}
.site-footer::after {
  content: ""; position: absolute; pointer-events: none;
  right: -120px; bottom: -160px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in oklab, var(--ochre) 50%, transparent) 0%, transparent 70%);
  opacity: .3;
}
.site-footer .grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(20px, 3vw, 48px);
  padding-bottom: 48px;
  border-bottom: 1px solid color-mix(in oklab, var(--paper) 14%, transparent);
  position: relative; z-index: 1;
}
.site-footer .lockup {
  font-family: var(--f-serif);
  font-weight: 350;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: .98;
  letter-spacing: -.02em;
  max-width: 18ch;
}
.site-footer .lockup em { color: var(--ochre-soft); font-style: italic; }
.site-footer .col-title {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase;
  color: color-mix(in oklab, var(--paper) 60%, transparent);
  margin: 0 0 18px;
}
.site-footer ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
  font-size: 14px;
  line-height: 1.45;
}
.site-footer a { color: var(--paper); opacity: .85; transition: opacity .25s var(--ease); }
.site-footer a:hover { opacity: 1; }
.site-footer .copy-row {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase;
  color: color-mix(in oklab, var(--paper) 55%, transparent);
  padding-top: 24px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* =========================================================
   Section header pattern
   ========================================================= */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  margin-bottom: clamp(36px, 5vh, 56px);
}
.section-head .title { max-width: 18ch; }
.section-head .right { color: var(--ink-2); font-size: 15.5px; max-width: 42ch; }
.section-head h2 { margin-top: 0; }
.section-head:has(.eyebrow) .right { margin-top: 43px; }
.section-head h2 em { font-family: var(--f-serif); font-style: italic; }
@media (max-width: 900px) { .section-head { grid-template-columns: 1fr; } }

/* Quality & Logistics figure */
.ql-figure {
  margin: 0 0 clamp(28px, 4vh, 44px);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.ql-figure img {
  display: block;
  width: 100%;
  height: clamp(220px, 32vh, 360px);
  object-fit: cover;
}

/* =========================================================
   PRODUCT page - hero + cards
   ========================================================= */
.page-hero {
  background: var(--cream);
  padding: clamp(60px, 8vh, 96px) 0 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.page-hero .top-meta {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.page-hero .layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  margin-top: clamp(40px, 6vh, 64px);
  align-items: start;
  padding-bottom: clamp(40px, 6vh, 72px);
}
.page-hero h1 {
  font-family: var(--f-serif);
  font-weight: 350;
  font-size: clamp(48px, 8vw, 140px);
  line-height: .88;
  letter-spacing: -.03em;
  margin: 0;
}
.page-hero h1 em { font-style: italic; color: var(--green); }
.page-hero h1 .dot { color: var(--ochre); }
.page-hero .copy { max-width: 50ch; }
.page-hero .copy .lede { margin-bottom: 20px; }
.page-hero .visual {
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.page-hero .visual svg.scene { width: 70%; height: 90%; }
.page-hero .visual .float {
  position: absolute;
  border-radius: 50%;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 36px -10px rgba(0,0,0,.25);
}
.page-hero .visual .float svg { width: 70%; height: 70%; }
.page-hero .visual .float.a { left: -6%; top: 14%; width: 22%; aspect-ratio: 1; }
.page-hero .visual .float.b { right: -4%; top: 38%; width: 26%; aspect-ratio: 1; background: var(--peach); }
.page-hero .visual .float.c { left: 4%; bottom: 6%; width: 18%; aspect-ratio: 1; background: var(--blush); }

.product-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  border-bottom: 1px solid var(--rule);
  margin-top: clamp(24px, 4vh, 40px);
}
.product-tabs button {
  padding: 16px 22px;
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mute);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.product-tabs button .count {
  font-family: var(--f-mono); font-size: 10px;
  color: var(--ink-mute);
  background: var(--paper-2);
  padding: 3px 7px; border-radius: 4px;
}
.product-tabs button:hover { color: var(--ink); }
.product-tabs button.is-active { color: var(--ink); border-bottom-color: var(--ink); }
.product-tabs button.is-active .count { background: var(--ink); color: var(--paper); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  margin-top: 40px;
}
.product {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 24px 24px 26px;
  min-height: 380px;
  display: flex; flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.product:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -20px rgba(0,0,0,.25); }
.product .head { display: flex; justify-content: space-between; align-items: start; }
.product .head .num { font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em; }
.product .head .tag {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: color-mix(in oklab, currentColor 14%, transparent);
}
.product .illus {
  width: 64%; aspect-ratio: 1;
  margin: 22px auto 18px;
  position: relative;
}
.product .illus::before {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%;
  background: color-mix(in oklab, currentColor 12%, transparent);
  filter: blur(20px);
}
.product .illus svg {
  position: relative;
  width: 100%; height: 100%;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.18));
  transition: transform .8s var(--ease);
}
.product:hover .illus svg { transform: scale(1.08) rotate(-3deg); }
.product h3 {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: .98;
  margin: auto 0 0;
  letter-spacing: -.015em;
}
.product .specs {
  margin-top: 10px;
  display: flex; gap: 10px; flex-wrap: wrap;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: .14em; color: color-mix(in oklab, currentColor 72%, transparent);
  text-transform: uppercase;
}
.product .specs span::before { content: "·"; padding-right: 6px; opacity: .5; }
.product .specs span:first-child::before { content: ""; padding: 0; }

.product[data-cat="concentrates"] { background: var(--peach); color: var(--green-deep); }
.product[data-cat="nfc"]          { background: var(--green-soft); color: var(--green-deep); }
.product[data-cat="purees"]       { background: var(--blush); color: var(--green-deep); }

/* =========================================================
   ORIGINS - About page
   ========================================================= */
.origins {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(28px, 5vw, 72px);
}
.origin-list { display: flex; flex-direction: column; }
.origin {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  transition: background .35s var(--ease), padding-left .35s var(--ease);
}
.origin:hover, .origin.is-active {
  background: color-mix(in oklab, var(--paper) 55%, var(--paper-2));
  padding-left: 16px;
}
.origin .idx { font-family: var(--f-mono); font-size: 11px; letter-spacing: .2em; color: var(--ink-mute); }
.origin .name { font-family: var(--f-serif); font-weight: 350; font-size: clamp(28px, 3vw, 44px); line-height: 1; letter-spacing: -.015em; }
.origin .name em { color: var(--green); font-style: italic; }
.origin .tag { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; color: var(--ink-mute); text-transform: uppercase; }
.origin.is-active .name em { color: var(--ochre); }

.origins-visual {
  position: sticky; top: 96px;
  align-self: start;
  aspect-ratio: 4/5;
  background: var(--green);
  border-radius: 24px;
  overflow: hidden;
  color: var(--paper);
  padding: 32px;
  display: flex; flex-direction: column;
  isolation: isolate;
}
.origins-visual::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background-image:
    radial-gradient(circle at 70% 30%, color-mix(in oklab, var(--ochre) 35%, transparent) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, color-mix(in oklab, var(--paper) 14%, transparent) 0%, transparent 50%);
}
.origins-visual .label {
  font-family: var(--f-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: .22em;
  color: color-mix(in oklab, var(--paper) 70%, transparent);
}
.origins-visual .photo-frame {
  position: absolute;
  right: -8%; top: 18%;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  border: 6px solid color-mix(in oklab, var(--paper) 18%, transparent);
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}
.origins-visual .photo-frame svg { width: 78%; height: 78%; }
.origins-visual .country-display { margin-top: auto; max-width: 62%; position: relative; z-index: 1; }
.origins-visual .country-display .country-name {
  font-family: var(--f-serif);
  font-weight: 350;
  font-size: clamp(48px, 6vw, 88px);
  line-height: .9;
  letter-spacing: -.025em;
}
.origins-visual .country-display .country-products {
  font-size: 14.5px;
  color: color-mix(in oklab, var(--paper) 85%, transparent);
  margin-top: 14px;
  max-width: 32ch;
}
.origins-visual .coord {
  position: absolute; top: 32px; right: 32px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .14em;
  color: color-mix(in oklab, var(--paper) 65%, transparent);
  text-align: right;
  z-index: 1;
}

/* =========================================================
   SPLIT cards
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream);
}
.split > * { padding: clamp(28px, 4vw, 52px); }
.split > *:first-child { border-right: 1px solid var(--rule); }
.split h3 { margin-top: 0; font-family: var(--f-serif); font-weight: 400; }
.checklist {
  list-style: none; padding: 0; margin: 24px 0 0;
  display: grid; gap: 10px;
}
.checklist li {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: baseline;
  gap: 14px;
  font-size: 15.5px;
  padding: 6px 0;
  border-top: 1px dashed var(--rule);
}
.checklist li:first-child { border-top: 0; }
.checklist li::before {
  content: "→";
  font-family: var(--f-mono); font-size: 13px;
  color: var(--ochre);
  line-height: 1;
}

/* =========================================================
   Regions
   ========================================================= */
.regions { display: flex; flex-wrap: wrap; gap: 12px; }
.regions .region {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: var(--cream);
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-2);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.regions .region:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.regions .region .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ochre); }

/* =========================================================
   ABOUT - narrative band with side illustration
   ========================================================= */
.narrative {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.narrative .text > * + * { margin-top: 20px; }
.narrative .text .body-lg { max-width: 50ch; }
.narrative .visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 520px;
  margin: 0 auto;
}
.narrative .visual .big {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--peach);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: visible;
}
.narrative .visual .big svg.scene { width: 80%; height: 80%; }
.narrative .visual .small {
  position: absolute;
  border-radius: 50%;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 18px 36px -10px rgba(0,0,0,.2);
}
.narrative .visual .small svg { width: 70%; height: 70%; }
.narrative .visual .small.a { left: -8%; top: 10%; width: 26%; aspect-ratio: 1; background: var(--green); }
.narrative .visual .small.b { right: -6%; bottom: 14%; width: 24%; aspect-ratio: 1; background: var(--blush); }

/* =========================================================
   Reveal - visible by default; skip animation for reliability
   ========================================================= */
.reveal { transition: opacity .9s var(--ease), transform .9s var(--ease); }

/* =========================================================
   PHOTO TREATMENTS - real royalty-free imagery
   ========================================================= */
.hero-visual .photo {
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(60,30,0,.35);
}
.hero-visual .photo img { width: 100%; height: 100%; object-fit: cover; }

.mission .visual { overflow: hidden; }
.mission .visual img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.narrative .visual .big { overflow: hidden; }
.narrative .visual .big img { width: 100%; height: 100%; object-fit: cover; }

.page-hero .visual img.scene-img { width: 100%; height: 100%; object-fit: cover; }

.bowl-band .img img { width: 100%; height: 100%; object-fit: cover; }

/* Banner: real image sits BEHIND the big word - word stays readable */
.banner { background: var(--green-deep); }
.banner .banner-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.banner .banner-bg img { width: 100%; height: 100%; object-fit: cover; }
.banner .banner-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(16,34,25,.5), rgba(16,34,25,.8));
}
.banner .text { color: var(--paper); z-index: 2; }
.banner .text em { color: var(--ochre-soft); }
.banner .caption { color: color-mix(in oklab, var(--paper) 78%, transparent); z-index: 2; }
.banner .img-cut { display: none; }

/* =========================================================
   CONTACT page - reserved form area
   ========================================================= */
.contact-form {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
  padding: clamp(28px, 4vw, 48px);
  min-height: 460px;
  max-width: 760px;
  margin: 0 auto;
}
.contact-form .form-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  pointer-events: none;
  padding: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Form fields - scoped to .contact-form so no other form is impacted.
   Editorial bottom-line style on transparent background, ochre focus. */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form input[type="number"],
.contact-form input[type="search"],
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  padding: 16px 4px;
  font-family: var(--f-serif);
  font-weight: 350;
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink);
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color .25s var(--ease);
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--ink-mute);
  opacity: .8;
  font-style: italic;
}
.contact-form input:hover,
.contact-form textarea:hover { border-bottom-color: var(--ink-mute); }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-bottom-color: var(--ochre);
  outline: none;
  box-shadow: none;
}
.contact-form textarea { min-height: 160px; resize: vertical; }

/* Submit button - mirrors the .btn pill style (ink → green on hover) */
.contact-form button[type="submit"],
.contact-form input[type="submit"] {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 24px;
  padding: 16px 26px;
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: .18em; text-transform: uppercase;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink); color: var(--paper);
  cursor: pointer;
  transition: transform .35s var(--ease),
              background .25s var(--ease),
              border-color .25s var(--ease),
              color .25s var(--ease);
}
.contact-form button[type="submit"]:hover,
.contact-form input[type="submit"]:hover {
  transform: translateY(-1px);
  background: var(--green);
  border-color: var(--green);
  color: var(--paper);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1100px) {
  .hero-row { grid-template-columns: 1fr; }
  .hero-strip { grid-template-columns: 1fr 1fr; }
  .hero-strip .cell:nth-child(2) { border-right: 0; }
  .hero-strip .cell:nth-child(-n+2) { border-bottom: 1px solid color-mix(in oklab, var(--paper) 14%, transparent); }
  .desks { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .why-list, .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: 0; }
  .why-item:nth-child(odd) { border-right: 0; }
  .split { grid-template-columns: 1fr; }
  .split > *:first-child { border-right: 0; border-bottom: 1px solid var(--rule); }
  .site-footer .grid { grid-template-columns: 1fr 1fr; }
  .site-footer .lockup { grid-column: 1 / -1; }
  .mission, .bowl-band .layout, .narrative, .origins, .page-hero .layout { grid-template-columns: 1fr; }
  .origins-visual { position: relative; top: 0; aspect-ratio: 4/3; }
  .nav { display: none; }
  .burger { display: block; }
  .site-header .bar { padding: 18px var(--pad); }
}
@media (max-width: 700px) {
  .product-grid, .stats, .why-list, .hero-strip { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid var(--rule); }
  .hero-strip .cell { border-right: 0; border-bottom: 1px solid color-mix(in oklab, var(--paper) 14%, transparent); }
  .why-item:nth-child(odd) { border-right: 0; }
  .site-footer .grid { grid-template-columns: 1fr; }
  .banner .text { font-size: clamp(56px, 16vw, 96px); }
  .banner .img-cut { width: 40%; }
  .mission .visual, .narrative .visual { max-width: 360px; margin: 0 auto; }
}

/* =========================================================
   LAZARRE — intégration moteur (blog, archives, article, auteur)
   Classes générées par le moteur PHP, habillées au design Palmetto.
   ========================================================= */

/* -- Wordmark texte (remplace le logo image) -- */
.brand-text {
  font-family: var(--f-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 2vw, 30px);
  letter-spacing: -.01em;
  color: var(--green-deep);
  line-height: 1;
}

/* -- Dropdown catégories dans la nav -- */
.nav-cat-dd { position: relative; display: inline-flex; align-items: center; }
.nav-cat-dd > .nav-cat-menu {
  position: absolute; top: 100%; left: 0; min-width: 210px;
  display: none; flex-direction: column;
  background: var(--cream); border: 1px solid var(--rule);
  border-radius: 14px; padding: 8px 0; z-index: 1000;
  box-shadow: 0 18px 40px -16px rgba(40,30,0,.35);
}
.nav-cat-dd:hover > .nav-cat-menu { display: flex; }
.nav-cat-dd > .nav-cat-menu a {
  display: block; padding: 9px 18px; white-space: nowrap;
  font-family: var(--f-sans); font-size: 13px; letter-spacing: .02em;
  text-transform: none; color: var(--ink-2); border-radius: 0;
}
.nav-cat-dd > .nav-cat-menu a::before { display: none; }
.nav-cat-dd > .nav-cat-menu a:hover { background: color-mix(in oklab, var(--ochre) 14%, transparent); color: var(--ink); }
.nav-mobile-cat { opacity: .8; font-size: clamp(16px, 2.6vh, 22px) !important; }

/* -- Listing blog / archives : grille éditoriale type "desk" -- */
.blog-listing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  margin-top: clamp(28px, 4vh, 48px);
}
.blog-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 440px;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px;
  isolation: isolate;
  background-color: var(--green);
  background-size: cover; background-position: center;
  color: var(--paper);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.blog-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg,
    rgba(16,34,25,.05) 0%,
    rgba(16,34,25,.42) 46%,
    rgba(16,34,25,.9) 100%);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(0,0,0,.45); }
.blog-card > * { position: relative; z-index: 2; }
.blog-card-cover { position: absolute; inset: 0; z-index: 3; }
.blog-card-category {
  z-index: 4;
  align-self: flex-start;
  margin-bottom: auto;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
  background: var(--ochre-bright); color: var(--paper);
  transition: background .25s var(--ease);
}
.blog-card-category:hover { background: var(--ink); }
.blog-card-date {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: .2em; text-transform: uppercase;
  color: color-mix(in oklab, var(--paper) 78%, transparent);
  margin: 0 0 8px;
}
.blog-card-title {
  font-family: var(--f-serif); font-weight: 400;
  font-size: clamp(24px, 2vw, 30px); line-height: 1.04;
  letter-spacing: -.015em;
  margin: 0;
}
.blog-card-excerpt {
  font-family: var(--f-sans); font-size: 13.5px; line-height: 1.5;
  color: color-mix(in oklab, var(--paper) 82%, transparent);
  margin: 12px 0 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-empty {
  grid-column: 1 / -1;
  font-family: var(--f-serif); font-style: italic;
  font-size: clamp(20px, 2vw, 28px); color: var(--ink-mute);
  text-align: center; padding: clamp(40px, 6vh, 72px) 0;
}

/* -- Pages génériques / légales / archives (.page) -- */
.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(56px, 8vh, 100px) var(--pad);
}
.page > h1 {
  font-family: var(--f-serif); font-weight: 350;
  font-size: clamp(40px, 6vw, 92px); line-height: .92;
  letter-spacing: -.025em; color: var(--green-deep);
  margin: 0 0 clamp(20px, 3vh, 36px);
}
.page .content { font-size: 16px; line-height: 1.75; color: var(--ink-2); }
.page .content > p, .page .content > ul, .page .content > ol,
.page .content > h2, .page .content > h3 { max-width: 70ch; }
.page .content h2 { font-family: var(--f-serif); font-weight: 400; font-size: clamp(26px, 3vw, 40px); margin: 1.6em 0 .5em; color: var(--green-deep); }
.page .content h3 { font-family: var(--f-serif); font-weight: 400; font-size: clamp(20px, 2.2vw, 28px); margin: 1.4em 0 .4em; }
.page .content a { color: var(--ochre); text-decoration: underline !important; }
.archive-desc {
  font-family: var(--f-serif); font-style: italic;
  font-size: clamp(18px, 2vw, 24px); line-height: 1.4;
  color: var(--ink-mute); max-width: 60ch; margin: 0 0 8px;
}

/* -- Article (.post généré par le moteur) -- */
.post {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 6vh, 80px) var(--pad);
}
.post > header { margin-bottom: clamp(28px, 4vh, 44px); }
.post > header img,
.post > header figure img {
  width: 100%; height: auto;
  border-radius: var(--radius-md);
  margin: 0 0 clamp(24px, 4vh, 40px);
  display: block;
}
.post > header h1 {
  font-family: var(--f-serif); font-weight: 350;
  font-size: clamp(38px, 5vw, 72px); line-height: .96;
  letter-spacing: -.025em; color: var(--green-deep);
  margin: 0 0 18px;
}
.post .content { font-size: 17px; line-height: 1.75; color: var(--ink-2); }
.post .content > * + * { margin-top: 1.1em; }
.post .content h2 { font-family: var(--f-serif); font-weight: 400; font-size: clamp(26px, 3vw, 40px); margin: 1.6em 0 .4em; color: var(--green-deep); letter-spacing: -.01em; }
.post .content h3 { font-family: var(--f-serif); font-weight: 400; font-size: clamp(21px, 2.2vw, 30px); margin: 1.4em 0 .3em; }
.post .content img { width: 100%; height: auto; border-radius: var(--radius-md); margin: 1.4em 0; }
.post .content a { color: var(--ochre); text-decoration: underline !important; }
.post .content blockquote {
  margin: 1.4em 0; padding: 4px 0 4px 24px;
  border-left: 3px solid var(--ochre);
  font-family: var(--f-serif); font-style: italic;
  font-size: 1.18em; color: var(--ink);
}

/* -- Ligne méta article : date · auteur · catégorie -- */
.article-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0;
}
.article-meta-sep { color: var(--rule); }
.article-meta-author, .article-meta-category { color: var(--ochre); transition: color .2s var(--ease); }
.article-meta-author:hover, .article-meta-category:hover { color: var(--ink); }
.article-meta-date { color: var(--ink-mute); }

/* -- Box auteur sous l'article -- */
.author-box {
  display: flex; gap: 22px; align-items: center;
  margin: clamp(40px, 6vh, 64px) 0 0;
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius-md);
}
.author-box-photo img {
  width: 84px; height: 84px; border-radius: 50%;
  object-fit: cover; display: block;
}
.author-box-name {
  font-family: var(--f-serif); font-weight: 400; font-style: italic;
  font-size: clamp(22px, 2vw, 28px); color: var(--green-deep);
  display: inline-block; margin-bottom: 6px;
}
a.author-box-name:hover { color: var(--ochre); }
.author-box-bio { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--ink-2); }

/* -- Bloc auteurs page À propos (footprint propre au thème) -- */
.mag-team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap); margin-top: clamp(28px, 4vh, 48px);
}
.mag-author {
  background: var(--cream); border: 1px solid var(--rule);
  border-radius: var(--radius-lg); padding: 32px 28px; text-align: center;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.mag-author:hover { transform: translateY(-5px); box-shadow: 0 24px 50px -28px rgba(40,30,0,.3); }
.mag-author-photo { width: 120px; height: 120px; margin: 0 auto 20px; border-radius: 50%; overflow: hidden; background: var(--green-pale); }
.mag-author-photo img, .mag-author-photo svg { width: 100%; height: 100%; object-fit: cover; display: block; }
.mag-author h3 { font-family: var(--f-serif); font-weight: 400; font-size: clamp(24px, 2.2vw, 30px); margin: 0 0 12px; }
.mag-author h3 a { color: var(--green-deep); }
.mag-author h3 a:hover { color: var(--ochre); }
.mag-author p { font-size: 14.5px; line-height: 1.6; color: var(--ink-2); margin: 0 0 20px; }

@media (max-width: 1100px) {
  .blog-listing, .mag-team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .blog-listing, .mag-team-grid { grid-template-columns: 1fr; }
  .author-box { flex-direction: column; text-align: center; }
}