/* =========================================================
   fermierul.online — Design System
   Warm cream + deep agricultural green + clay accents
   ========================================================= */

/* ---------- TOKENS ---------- */
:root {
  /* Surfaces */
  --cream:       #FBF6EA;
  --cream-2:     #F4ECDB;
  --cream-3:     #ECDDC2;
  --cream-deep:  #E5D2A8;
  --paper:       #FFFDF8;

  /* Ink */
  --ink:         #1F1A14;
  --ink-2:       #3A2F23;
  --ink-3:       #6B5C49;
  --ink-4:       #9A8A75;
  --line:        #E7DCC2;
  --line-soft:   #F0E5C9;

  /* Brand */
  --green:       #2D4A2B;
  --green-2:     #1F3520;
  --green-3:     #46663F;
  --green-soft:  #B4C9A6;

  /* Accents */
  --clay:        #C45D3D;
  --clay-2:      #A24729;
  --clay-soft:   #F1D3C5;

  --brown:       #6B4F35;
  --brown-2:     #4E3922;

  --voronet:     #3A6E94;
  --voronet-soft:#C7DCE9;

  --gold:        #C9A961;

  /* Functional */
  --white:       #FFFFFF;
  --black:       #000000;

  /* Type */
  --ff-serif:    "Fraunces", "Lora", Georgia, "Times New Roman", serif;
  --ff-sans:     "Inter", "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Sizes */
  --container:   1240px;
  --container-narrow: 820px;
  --radius-sm:   10px;
  --radius:      16px;
  --radius-lg:   24px;
  --radius-xl:   32px;

  /* Shadows */
  --shadow-sm:   0 1px 2px rgba(31,26,20,.05), 0 1px 1px rgba(31,26,20,.04);
  --shadow:      0 6px 24px -8px rgba(31,26,20,.10), 0 2px 6px rgba(31,26,20,.05);
  --shadow-lg:   0 24px 60px -20px rgba(31,26,20,.18), 0 8px 20px -8px rgba(31,26,20,.08);
  --shadow-xl:   0 40px 100px -32px rgba(31,26,20,.30);

  /* Motion */
  --ease:        cubic-bezier(.2,.7,.2,1);
  --ease-out:    cubic-bezier(.16,1,.3,1);
  --t-fast:      160ms;
  --t:           260ms;
  --t-slow:      520ms;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--ff-serif); font-weight: 500; letter-spacing: -0.01em; line-height: 1.1; }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }

/* ---------- LAYOUT PRIMITIVES ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: var(--container-narrow); }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head-row {
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.section-head-center { text-align: center; margin-left: auto; margin-right: auto; }
.section-sub {
  font-size: 1.0625rem;
  color: var(--ink-3);
  max-width: 60ch;
  margin-top: 16px;
}
.section-head-center .section-sub { margin-left: auto; margin-right: auto; }

/* ---------- TYPE ---------- */
.display {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 1.6rem + 3.6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.h-display {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(1.85rem, 1.3rem + 2.2vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
  font-variation-settings: "opsz" 96;
}
.h-display-cream { color: var(--cream); }
.lead {
  font-size: clamp(1.05rem, .95rem + .4vw, 1.2rem);
  color: var(--ink-2);
  max-width: 56ch;
  margin-top: 22px;
  line-height: 1.55;
}
.lead strong { color: var(--ink); font-weight: 600; }

.serif-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--clay);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-sans);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--clay);
  border-radius: 50%;
  display: inline-block;
}
.eyebrow-green { color: var(--green); }
.eyebrow-green .eyebrow-dot { background: var(--green); }
.eyebrow-clay { color: var(--clay); }
.eyebrow-clay .eyebrow-dot { background: var(--clay); }
.eyebrow-cream { color: var(--green-soft); }
.eyebrow-cream .eyebrow-dot { background: var(--green-soft); }

/* ---------- ICONS ---------- */
.ic {
  width: 1.1em;
  height: 1.1em;
  flex-shrink: 0;
  vertical-align: -0.15em;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--ff-sans);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
  border: 1.5px solid transparent;
  text-decoration: none;
  line-height: 1;
}
.btn-sm { padding: 9px 16px; font-size: .875rem; }
.btn-lg { padding: 16px 28px; font-size: 1rem; }

.btn-primary {
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 1px 0 rgba(255,255,255,.08) inset, 0 8px 18px -10px rgba(45,74,43,.5);
}
.btn-primary:hover {
  background: var(--green-2);
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,.1) inset, 0 14px 28px -10px rgba(45,74,43,.6);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  background: var(--cream-2);
  border-color: var(--ink-4);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { background: var(--cream-2); }

.btn-cream {
  background: var(--cream);
  color: var(--green-2);
}
.btn-cream:hover {
  background: var(--white);
  transform: translateY(-1px);
}

/* Romanian embroidery pattern button (hero primary CTA)
   - SVG is designed for a ~340×72 button and stretches via background-size: 100% 100%
   - Centered (background-position: center) — no repeat, no offset
   - Text sits on top via z-index; semi-transparent backdrop behind text ensures legibility
   - Hover: ONLY opacity 0.5 on the pattern, no color shift
   - Active: subtle press */
.btn-pattern {
  position: relative;
  isolation: isolate;
  color: var(--ink);
  background-color: var(--cream);
  border: 1.5px solid var(--ink);
  padding: 18px 32px;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: 999px;
  cursor: pointer;
  box-shadow:
    0 1px 0 rgba(255,255,255,.35) inset,
    0 8px 20px -10px rgba(196,93,61,.45),
    0 2px 4px rgba(31,26,20,.08);
  transition: opacity var(--t) var(--ease), transform var(--t-fast) var(--ease);
  overflow: hidden;
  z-index: 0;
  text-shadow: 0 1px 0 rgba(251,246,234,.4);
}
/* Pattern as a separate layer (pseudo-element) — rich decorative frame:
   top + bottom: zigzag → thin line → small crosses row → dots+diamonds row → thin line.
   middle band is clean cream for text. */
.btn-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 340 84' preserveAspectRatio='xMidYMid slice'><g><rect width='340' height='84' fill='%23FBF6EA'/><g fill='%23C45D3D'><polygon points='0,6 7,0 14,6 21,0 28,6 35,0 42,6 49,0 56,6 63,0 70,6 77,0 84,6 91,0 98,6 105,0 112,6 119,0 126,6 133,0 140,6 147,0 154,6 161,0 168,6 175,0 182,6 189,0 196,6 203,0 210,6 217,0 224,6 231,0 238,6 245,0 252,6 259,0 266,6 273,0 280,6 287,0 294,6 301,0 308,6 315,0 322,6 329,0 336,6 340,6 340,12 0,12'/></g><line x1='0' y1='15' x2='340' y2='15' stroke='%231F1A14' stroke-width='0.9'/><g stroke='%23C45D3D' stroke-width='1' stroke-linecap='round'><line x1='6' y1='19' x2='6' y2='23'/><line x1='4' y1='21' x2='8' y2='21'/><line x1='16' y1='19' x2='16' y2='23'/><line x1='14' y1='21' x2='18' y2='21'/><line x1='26' y1='19' x2='26' y2='23'/><line x1='24' y1='21' x2='28' y2='21'/><line x1='36' y1='19' x2='36' y2='23'/><line x1='34' y1='21' x2='38' y2='21'/><line x1='46' y1='19' x2='46' y2='23'/><line x1='44' y1='21' x2='48' y2='21'/><line x1='56' y1='19' x2='56' y2='23'/><line x1='54' y1='21' x2='58' y2='21'/><line x1='66' y1='19' x2='66' y2='23'/><line x1='64' y1='21' x2='68' y2='21'/><line x1='76' y1='19' x2='76' y2='23'/><line x1='74' y1='21' x2='78' y2='21'/><line x1='86' y1='19' x2='86' y2='23'/><line x1='84' y1='21' x2='88' y2='21'/><line x1='96' y1='19' x2='96' y2='23'/><line x1='94' y1='21' x2='98' y2='21'/><line x1='106' y1='19' x2='106' y2='23'/><line x1='104' y1='21' x2='108' y2='21'/><line x1='116' y1='19' x2='116' y2='23'/><line x1='114' y1='21' x2='118' y2='21'/><line x1='126' y1='19' x2='126' y2='23'/><line x1='124' y1='21' x2='128' y2='21'/><line x1='136' y1='19' x2='136' y2='23'/><line x1='134' y1='21' x2='138' y2='21'/><line x1='146' y1='19' x2='146' y2='23'/><line x1='144' y1='21' x2='148' y2='21'/><line x1='156' y1='19' x2='156' y2='23'/><line x1='154' y1='21' x2='158' y2='21'/><line x1='166' y1='19' x2='166' y2='23'/><line x1='164' y1='21' x2='168' y2='21'/><line x1='176' y1='19' x2='176' y2='23'/><line x1='174' y1='21' x2='178' y2='21'/><line x1='186' y1='19' x2='186' y2='23'/><line x1='184' y1='21' x2='188' y2='21'/><line x1='196' y1='19' x2='196' y2='23'/><line x1='194' y1='21' x2='198' y2='21'/><line x1='206' y1='19' x2='206' y2='23'/><line x1='204' y1='21' x2='208' y2='21'/><line x1='216' y1='19' x2='216' y2='23'/><line x1='214' y1='21' x2='218' y2='21'/><line x1='226' y1='19' x2='226' y2='23'/><line x1='224' y1='21' x2='228' y2='21'/><line x1='236' y1='19' x2='236' y2='23'/><line x1='234' y1='21' x2='238' y2='21'/><line x1='246' y1='19' x2='246' y2='23'/><line x1='244' y1='21' x2='248' y2='21'/><line x1='256' y1='19' x2='256' y2='23'/><line x1='254' y1='21' x2='258' y2='21'/><line x1='266' y1='19' x2='266' y2='23'/><line x1='264' y1='21' x2='268' y2='21'/><line x1='276' y1='19' x2='276' y2='23'/><line x1='274' y1='21' x2='278' y2='21'/><line x1='286' y1='19' x2='286' y2='23'/><line x1='284' y1='21' x2='288' y2='21'/><line x1='296' y1='19' x2='296' y2='23'/><line x1='294' y1='21' x2='298' y2='21'/><line x1='306' y1='19' x2='306' y2='23'/><line x1='304' y1='21' x2='308' y2='21'/><line x1='316' y1='19' x2='316' y2='23'/><line x1='314' y1='21' x2='318' y2='21'/><line x1='326' y1='19' x2='326' y2='23'/><line x1='324' y1='21' x2='328' y2='21'/><line x1='336' y1='19' x2='336' y2='23'/><line x1='334' y1='21' x2='338' y2='21'/></g><line x1='0' y1='26' x2='340' y2='26' stroke='%231F1A14' stroke-width='0.5' stroke-dasharray='2,2'/><g><g fill='%23C45D3D'><circle cx='8' cy='30' r='1.4'/><circle cx='38' cy='30' r='1.4'/><circle cx='68' cy='30' r='1.4'/><circle cx='98' cy='30' r='1.4'/><circle cx='128' cy='30' r='1.4'/><circle cx='158' cy='30' r='1.4'/><circle cx='188' cy='30' r='1.4'/><circle cx='218' cy='30' r='1.4'/><circle cx='248' cy='30' r='1.4'/><circle cx='278' cy='30' r='1.4'/><circle cx='308' cy='30' r='1.4'/><circle cx='332' cy='30' r='1.4'/></g><g fill='%231F1A14'><polygon points='23,30 25,28 27,30 25,32'/><polygon points='53,30 55,28 57,30 55,32'/><polygon points='83,30 85,28 87,30 85,32'/><polygon points='113,30 115,28 117,30 115,32'/><polygon points='143,30 145,28 147,30 145,32'/><polygon points='173,30 175,28 177,30 175,32'/><polygon points='203,30 205,28 207,30 205,32'/><polygon points='233,30 235,28 237,30 235,32'/><polygon points='263,30 265,28 267,30 265,32'/><polygon points='293,30 295,28 297,30 295,32'/><polygon points='323,30 325,28 327,30 325,32'/></g></g><line x1='0' y1='34' x2='340' y2='34' stroke='%231F1A14' stroke-width='0.5' stroke-dasharray='2,2'/><line x1='0' y1='50' x2='340' y2='50' stroke='%231F1A14' stroke-width='0.5' stroke-dasharray='2,2'/><g><g fill='%231F1A14'><polygon points='23,54 25,52 27,54 25,56'/><polygon points='53,54 55,52 57,54 55,56'/><polygon points='83,54 85,52 87,54 85,56'/><polygon points='113,54 115,52 117,54 115,56'/><polygon points='143,54 145,52 147,54 145,56'/><polygon points='173,54 175,52 177,54 175,56'/><polygon points='203,54 205,52 207,54 205,56'/><polygon points='233,54 235,52 237,54 235,56'/><polygon points='263,54 265,52 267,54 265,56'/><polygon points='293,54 295,52 297,54 295,56'/><polygon points='323,54 325,52 327,54 325,56'/></g><g fill='%23C45D3D'><circle cx='8' cy='54' r='1.4'/><circle cx='38' cy='54' r='1.4'/><circle cx='68' cy='54' r='1.4'/><circle cx='98' cy='54' r='1.4'/><circle cx='128' cy='54' r='1.4'/><circle cx='158' cy='54' r='1.4'/><circle cx='188' cy='54' r='1.4'/><circle cx='218' cy='54' r='1.4'/><circle cx='248' cy='54' r='1.4'/><circle cx='278' cy='54' r='1.4'/><circle cx='308' cy='54' r='1.4'/><circle cx='332' cy='54' r='1.4'/></g></g><line x1='0' y1='58' x2='340' y2='58' stroke='%231F1A14' stroke-width='0.5' stroke-dasharray='2,2'/><g stroke='%23C45D3D' stroke-width='1' stroke-linecap='round'><line x1='6' y1='61' x2='6' y2='65'/><line x1='4' y1='63' x2='8' y2='63'/><line x1='16' y1='61' x2='16' y2='65'/><line x1='14' y1='63' x2='18' y2='63'/><line x1='26' y1='61' x2='26' y2='65'/><line x1='24' y1='63' x2='28' y2='63'/><line x1='36' y1='61' x2='36' y2='65'/><line x1='34' y1='63' x2='38' y2='63'/><line x1='46' y1='61' x2='46' y2='65'/><line x1='44' y1='63' x2='48' y2='63'/><line x1='56' y1='61' x2='56' y2='65'/><line x1='54' y1='63' x2='58' y2='63'/><line x1='66' y1='61' x2='66' y2='65'/><line x1='64' y1='63' x2='68' y2='63'/><line x1='76' y1='61' x2='76' y2='65'/><line x1='74' y1='63' x2='78' y2='63'/><line x1='86' y1='61' x2='86' y2='65'/><line x1='84' y1='63' x2='88' y2='63'/><line x1='96' y1='61' x2='96' y2='65'/><line x1='94' y1='63' x2='98' y2='63'/><line x1='106' y1='61' x2='106' y2='65'/><line x1='104' y1='63' x2='108' y2='63'/><line x1='116' y1='61' x2='116' y2='65'/><line x1='114' y1='63' x2='118' y2='63'/><line x1='126' y1='61' x2='126' y2='65'/><line x1='124' y1='63' x2='128' y2='63'/><line x1='136' y1='61' x2='136' y2='65'/><line x1='134' y1='63' x2='138' y2='63'/><line x1='146' y1='61' x2='146' y2='65'/><line x1='144' y1='63' x2='148' y2='63'/><line x1='156' y1='61' x2='156' y2='65'/><line x1='154' y1='63' x2='158' y2='63'/><line x1='166' y1='61' x2='166' y2='65'/><line x1='164' y1='63' x2='168' y2='63'/><line x1='176' y1='61' x2='176' y2='65'/><line x1='174' y1='63' x2='178' y2='63'/><line x1='186' y1='61' x2='186' y2='65'/><line x1='184' y1='63' x2='188' y2='63'/><line x1='196' y1='61' x2='196' y2='65'/><line x1='194' y1='63' x2='198' y2='63'/><line x1='206' y1='61' x2='206' y2='65'/><line x1='204' y1='63' x2='208' y2='63'/><line x1='216' y1='61' x2='216' y2='65'/><line x1='214' y1='63' x2='218' y2='63'/><line x1='226' y1='61' x2='226' y2='65'/><line x1='224' y1='63' x2='228' y2='63'/><line x1='236' y1='61' x2='236' y2='65'/><line x1='234' y1='63' x2='238' y2='63'/><line x1='246' y1='61' x2='246' y2='65'/><line x1='244' y1='63' x2='248' y2='63'/><line x1='256' y1='61' x2='256' y2='65'/><line x1='254' y1='63' x2='258' y2='63'/><line x1='266' y1='61' x2='266' y2='65'/><line x1='264' y1='63' x2='268' y2='63'/><line x1='276' y1='61' x2='276' y2='65'/><line x1='274' y1='63' x2='278' y2='63'/><line x1='286' y1='61' x2='286' y2='65'/><line x1='284' y1='63' x2='288' y2='63'/><line x1='296' y1='61' x2='296' y2='65'/><line x1='294' y1='63' x2='298' y2='63'/><line x1='306' y1='61' x2='306' y2='65'/><line x1='304' y1='63' x2='308' y2='63'/><line x1='316' y1='61' x2='316' y2='65'/><line x1='314' y1='63' x2='318' y2='63'/><line x1='326' y1='61' x2='326' y2='65'/><line x1='324' y1='63' x2='328' y2='63'/><line x1='336' y1='61' x2='336' y2='65'/><line x1='334' y1='63' x2='338' y2='63'/></g><line x1='0' y1='69' x2='340' y2='69' stroke='%231F1A14' stroke-width='0.9'/><g fill='%23C45D3D'><polygon points='0,72 7,78 14,72 21,78 28,72 35,78 42,72 49,78 56,72 63,78 70,72 77,78 84,72 91,78 98,72 105,78 112,72 119,78 126,72 133,78 140,72 147,78 154,72 161,78 168,72 175,78 182,72 189,78 196,72 203,78 210,72 217,78 224,72 231,78 238,72 245,78 252,72 259,78 266,72 273,78 280,72 287,78 294,72 301,78 308,72 315,78 322,72 329,78 336,72 340,72 340,84 0,84'/></g></g></svg>");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  z-index: -1;
  transition: opacity var(--t) var(--ease);
}
.btn-pattern > * {
  position: relative;
  z-index: 1;
}
/* Hover: ONLY opacity reduction on the pattern, NO color change */
.btn-pattern:hover {
  /* override any .btn-primary hover by being explicit */
  background-color: var(--cream) !important;
  color: var(--ink) !important;
  border-color: var(--ink) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,.35) inset,
    0 8px 20px -10px rgba(196,93,61,.45),
    0 2px 4px rgba(31,26,20,.08) !important;
  transform: translateY(0);
  filter: none;
}
.btn-pattern:hover::before { opacity: 0.5; }
/* Click feedback */
.btn-pattern:active { transform: translateY(1px) scale(.99); }

/* Tractor animation — traverses the button left → right on hover.
   Add .btn-tractor-anim to any button to enable. */
.btn { position: relative; overflow: hidden; }
.btn-tractor {
  position: absolute;
  top: 50%;
  left: -100px;
  width: 90px;
  height: 40px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
}
.btn-tractor svg { width: 100%; height: 100%; display: block; }
.btn-tractor-anim:hover .btn-tractor {
  animation: tractor-drive 2s cubic-bezier(.4, 0, .6, 1) forwards;
}
@keyframes tractor-drive {
  0%   { left: -100px; opacity: 0; }
  6%   { opacity: 1; }
  94%  { opacity: 1; }
  100% { left: calc(100% + 10px); opacity: 0; }
}

.btn-ghost-cream {
  background: transparent;
  color: var(--cream);
  border-color: rgba(251,246,234,.35);
}
.btn-ghost-cream:hover {
  background: rgba(251,246,234,.08);
  border-color: rgba(251,246,234,.6);
}

.icon-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--cream);
  transition: all var(--t) var(--ease);
}
.icon-btn:hover { background: var(--green-2); transform: scale(1.06); }
.icon-btn .ic { width: 18px; height: 18px; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--green);
  font-size: .95rem;
  transition: gap var(--t) var(--ease);
}
.link-arrow:hover { gap: 14px; }
.link-arrow .ic { width: 18px; height: 18px; }

/* ---------- BADGES ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px 5px 8px;
  background: rgba(251,246,234,.95);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(251,246,234,.4);
  border-radius: 999px;
  font-family: var(--ff-sans);
  font-size: .72rem;
  font-weight: 600;
  color: var(--green-2);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.badge .ic { width: 14px; height: 14px; color: var(--green); }
.badge-verified { background: rgba(251,246,234,.95); }
.badge-season {
  background: var(--clay);
  color: var(--cream);
  border-color: transparent;
}
.badge-season .ic { color: var(--cream); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251,246,234,.85);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow var(--t) var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 8px 24px -16px rgba(31,26,20,.18); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 14px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--green-2);
  line-height: 1;
}
.brand-mark { display: inline-flex; color: var(--green); }
.brand-text { display: inline-flex; align-items: baseline; }
.brand-name { font-weight: 600; }
.brand-dot { color: var(--clay); font-weight: 600; }
.brand-tld { color: var(--ink-3); font-weight: 500; }
.brand-light { color: var(--cream); }
.brand-light .brand-mark { color: var(--green-soft); }
.brand-light .brand-tld { color: var(--cream); opacity: .65; }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.primary-nav a {
  font-size: .94rem;
  font-weight: 500;
  color: var(--ink-2);
  position: relative;
  padding: 4px 0;
  transition: color var(--t) var(--ease);
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--clay);
  border-radius: 2px;
  transition: all var(--t) var(--ease);
  transform: translateX(-50%);
}
.primary-nav a:hover { color: var(--green-2); }
.primary-nav a:hover::after { width: 18px; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--cream-2);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  width: 18px;
  height: 1.6px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform var(--t) var(--ease), opacity var(--t) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 96px 0 112px;
  overflow: hidden;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: var(--green);
  opacity: .04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'><g fill='none' stroke='%232D4A2B' stroke-width='1' stroke-linecap='round'><path d='M36 18 L52 36 L36 54 L20 36 Z'/><path d='M36 30 L42 36 L36 42 L30 36 Z'/><circle cx='36' cy='36' r='1.4' fill='%232D4A2B' stroke='none'/></g></svg>");
  background-size: 72px 72px;
}
.hero-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 0%, var(--cream) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 100%, var(--cream-2) 0%, transparent 60%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 88px;
  align-items: center;
}

.hero-text { position: relative; }

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}
.hero-cta-hint{
  font-size:11.5px;font-weight:700;letter-spacing:.04em;
  padding:3px 9px;border-radius:999px;
  background:var(--clay-soft);color:var(--clay-2);
  margin-left:6px;
  transition:background .2s ease, color .2s ease;
}
.btn-secondary:hover .hero-cta-hint{background:var(--cream);color:var(--clay-2)}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px dashed var(--line);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-num {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: -0.025em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.trust-num::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--clay);
  border-radius: 50%;
  margin-left: 2px;
  align-self: flex-start;
  margin-top: 6px;
}
.trust-label {
  font-size: .8rem;
  color: var(--ink-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.trust-sep {
  width: 1px;
  height: 44px;
  background: var(--line);
}

.hero-visual {
  position: relative;
  height: 600px;
}

/* =========================================================
   FARMER CAROUSEL (top-ranked)
   ========================================================= */
.farmer-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink-2);
  isolation: isolate;
}
.farmer-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 700ms var(--ease-out);
  z-index: 0;
}
.farmer-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.farmer-slide-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  color: var(--cream);
  text-decoration: none;
}
.farmer-slide-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(.95) brightness(.92);
  transform: scale(1.02);
  transition: transform 6000ms var(--ease-out);
}
.farmer-slide.is-active .farmer-slide-img {
  transform: scale(1.08);
}
.farmer-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20,17,13,.0) 0%, rgba(20,17,13,.15) 35%, rgba(20,17,13,.85) 100%),
    linear-gradient(135deg, rgba(45,74,43,.18), transparent 60%);
  z-index: 1;
}
.farmer-slide-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 28px 32px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 700ms var(--ease-out) 100ms, opacity 700ms var(--ease-out) 100ms;
}
.farmer-slide.is-active .farmer-slide-content {
  transform: translateY(0);
  opacity: 1;
}

.farmer-slide-rank {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  padding: 6px 12px 6px 8px;
  background: var(--clay);
  color: var(--cream);
  border-radius: 999px;
  font-family: var(--ff-sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  box-shadow: 0 6px 18px -8px rgba(196,93,61,.7);
}
.farmer-slide-rank .ic { width: 14px; height: 14px; color: var(--cream); }

.farmer-slide-name {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 1.2rem + 1vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--cream);
  text-shadow: 0 2px 16px rgba(20,17,13,.4);
  margin: 4px 0 2px;
}

.farmer-slide-loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  color: rgba(251,246,234,.85);
  letter-spacing: 0.01em;
}
.farmer-slide-loc .ic { width: 14px; height: 14px; color: var(--clay); }

.farmer-slide-desc {
  font-size: .98rem;
  color: rgba(251,246,234,.92);
  line-height: 1.5;
  max-width: 36ch;
  margin: 4px 0 8px;
}

.farmer-slide-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  padding: 10px 0;
  border-top: 1px solid rgba(251,246,234,.18);
  border-bottom: 1px solid rgba(251,246,234,.18);
}
.farmer-slide-products {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(251,246,234,.9);
  font-weight: 500;
  flex-wrap: wrap;
}
.farmer-slide-products .dot {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--clay);
  border-radius: 50%;
  margin: 0 2px;
}
.farmer-slide-rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--ff-sans);
  font-size: .88rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}
.farmer-slide-rating .ic { width: 14px; height: 14px; color: var(--gold); }
.farmer-slide-rating em {
  font-style: normal;
  color: rgba(251,246,234,.55);
  font-weight: 500;
  font-size: .78rem;
  margin-left: 2px;
}

.farmer-slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 11px 18px;
  background: var(--cream);
  color: var(--green-2);
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
  transition: gap var(--t) var(--ease), background var(--t) var(--ease);
}
.farmer-slide-link:hover .farmer-slide-cta {
  gap: 12px;
  background: var(--white);
}
.farmer-slide-cta .ic { width: 16px; height: 16px; }

/* Progress bar */
.farmer-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(251,246,234,.15);
  z-index: 3;
  overflow: hidden;
}
.farmer-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--clay) 0%, var(--gold) 100%);
  transform-origin: left;
  transition: width 50ms linear;
}
.farmer-progress.is-paused .farmer-progress-bar { background: var(--green-soft); }

/* Dots */
.farmer-dots {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: rgba(20,17,13,.4);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}
.farmer-dot {
  width: 7px; height: 7px;
  background: rgba(251,246,234,.4);
  border-radius: 50%;
  padding: 0;
  transition: all var(--t) var(--ease);
  cursor: pointer;
}
.farmer-dot:hover { background: rgba(251,246,234,.7); }
.farmer-dot.is-active {
  background: var(--clay);
  width: 22px;
  border-radius: 4px;
}

/* Nav arrows */
.farmer-nav {
  position: absolute;
  top: 50%;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(251,246,234,.92);
  color: var(--green-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transform: translateY(-50%);
  transition: all var(--t) var(--ease);
  box-shadow: var(--shadow);
  opacity: 0;
}
.farmer-carousel:hover .farmer-nav { opacity: 1; }
.farmer-nav:hover { background: var(--cream); transform: translateY(-50%) scale(1.06); }
.farmer-nav .ic { width: 20px; height: 20px; }
.farmer-nav-prev { left: 16px; }
.farmer-nav-next { right: 16px; }

.farmer-carousel-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--ff-sans);
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.farmer-carousel-caption .ic { width: 14px; height: 14px; color: var(--clay); }

/* Floating animation kept for any other floating elements */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* =========================================================
   TRUST BAND
   ========================================================= */
.trust-band {
  position: relative;
  background: var(--cream-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 88px 0 64px;
  overflow: hidden;
}
.trust-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'><g fill='none' stroke='%232D4A2B' stroke-width='1'><path d='M36 18 L52 36 L36 54 L20 36 Z'/><circle cx='36' cy='36' r='1' fill='%232D4A2B'/></g></svg>");
  background-size: 72px 72px;
  opacity: .035;
}

.trust-head {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 640px;
}
.trust-head .eyebrow {
  margin-bottom: 14px;
}
.trust-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.018em;
  line-height: 1.1;
  margin: 0;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
  position: relative;
}
.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 36px 24px 32px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--clay));
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--green-soft);
}
.trust-card:hover::before { opacity: 1; }

.trust-card-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: var(--cream);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 6px;
  box-shadow: 0 8px 20px -10px rgba(45,74,43,.55);
}
.trust-card:nth-child(2) .trust-card-icon { background: linear-gradient(135deg, #5A8C4E, #3A6E3A); }
.trust-card:nth-child(3) .trust-card-icon { background: linear-gradient(135deg, var(--clay), var(--clay-2)); }
.trust-card:nth-child(4) .trust-card-icon { background: linear-gradient(135deg, var(--brown), var(--brown-2)); }
.trust-card-icon .ic { width: 24px; height: 24px; }

.trust-card-stat {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--green-2);
  letter-spacing: -0.02em;
  line-height: 1;
}
.trust-card-stat em {
  font-style: normal;
  color: var(--clay);
  font-size: 1.2rem;
  margin-left: 1px;
}

.trust-card-title {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0;
}
.trust-card-desc {
  font-family: var(--ff-sans);
  font-size: .875rem;
  color: var(--ink-3);
  line-height: 1.5;
  margin: 0;
  max-width: 28ch;
}

/* Trust strip — additional signals below cards */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 28px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px dashed var(--line);
}
.trust-strip-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-sans);
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: -0.005em;
}
.trust-strip-item .ic {
  width: 18px; height: 18px;
  color: var(--green);
  flex-shrink: 0;
}

/* =========================================================
   HOW IT WORKS — 3 simple steps with flow connectors
   ========================================================= */
.how {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.how::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'><g fill='none' stroke='%232D4A2B' stroke-width='1' opacity='.5'><path d='M36 18 L52 36 L36 54 L20 36 Z'/></g></svg>");
  background-size: 72px 72px;
  opacity: .025;
}

.steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}
.step {
  position: relative;
  flex: 1 1 0;
  max-width: 360px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--clay));
  border-radius: 0 0 4px 4px;
  opacity: 0;
  transition: opacity var(--t) var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--green-soft);
}
.step:hover::before { opacity: 1; }

.step-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.step-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  color: var(--cream);
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px -10px rgba(45,74,43,.5);
}
.step-icon .ic { width: 28px; height: 28px; }
.step:nth-child(3) .step-icon { background: linear-gradient(135deg, #5A8C4E, #3A6E3A); }
.step:nth-child(5) .step-icon { background: linear-gradient(135deg, var(--clay), var(--clay-2)); box-shadow: 0 8px 20px -10px rgba(196,93,61,.5); }

.step-num {
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--clay);
  letter-spacing: -0.04em;
  line-height: 1;
  opacity: .55;
}

.step-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.step-time {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 4px 10px;
  background: var(--cream-2);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-family: var(--ff-sans);
  font-size: .72rem;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.step-title {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.step-desc {
  font-family: var(--ff-sans);
  font-size: .95rem;
  color: var(--ink-3);
  line-height: 1.55;
  margin: 0;
}

/* Arrow connectors between steps */
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 60px;
  color: var(--green-3);
  opacity: .55;
}
.step-arrow svg { width: 100%; height: 24px; }

/* Summary strip below steps */
.how-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
  padding: 16px 28px;
  background: var(--green-2);
  color: var(--cream);
  border-radius: 999px;
  font-family: var(--ff-sans);
  font-size: .95rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.how-summary strong {
  color: var(--gold);
  font-weight: 700;
}
.how-summary-icon {
  width: 28px;
  height: 28px;
  background: rgba(251,246,234,.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.how-summary-icon .ic { width: 16px; height: 16px; }

/* =========================================================
   CATEGORIES
   ========================================================= */
.categories { padding: 120px 0; background: var(--cream-2); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 200px;
  gap: 18px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--ink-2);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform var(--t) var(--ease);
  isolation: isolate;
}
.cat-card:hover { transform: translateY(-4px); }
.cat-card:hover .cat-img { transform: scale(1.05); }
.cat-img {
  position: absolute;
  inset: 0;
  background-image: var(--img);
  background-size: cover;
  background-position: center;
  filter: saturate(.95) brightness(.9);
  transition: transform var(--t-slow) var(--ease-out);
  z-index: -2;
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(31,26,20,.65) 80%, rgba(31,26,20,.85) 100%);
  z-index: -1;
}
.cat-body {
  padding: 18px 18px 20px;
}
.cat-body h3 {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 4px;
}
.cat-meta {
  font-size: .78rem;
  color: rgba(251,246,234,.85);
  letter-spacing: 0.02em;
}
.cat-large {
  grid-column: span 2;
  grid-row: span 2;
}
.cat-large .cat-body { padding: 28px 24px 26px; }
.cat-large .cat-body h3 { font-size: 1.9rem; }
.cat-large .cat-meta { font-size: .85rem; }

.cat-seasonal .cat-body h3 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cat-seasonal .cat-body h3::before {
  content: '';
  width: 10px; height: 10px;
  background: var(--clay);
  border-radius: 50%;
  flex-shrink: 0;
}

/* =========================================================
   FARMERS
   ========================================================= */
.farmers { padding: 120px 0; }
.farmer-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.farmer-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.farmer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.farmer-card-feature { transform: scale(1.02); }
.farmer-card-feature:hover { transform: translateY(-4px) scale(1.02); }
.farmer-img {
  position: relative;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
}
.farmer-img .badge {
  position: absolute;
  top: 14px; left: 14px;
}
.farmer-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.farmer-loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.farmer-loc .ic { width: 14px; height: 14px; color: var(--clay); }
.farmer-name {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.farmer-card-feature .farmer-name { font-size: 1.75rem; }
.farmer-desc {
  font-size: .95rem;
  color: var(--ink-3);
  line-height: 1.55;
  flex: 1;
}
.farmer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.farmer-badges li {
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--cream-2);
  color: var(--green-2);
  letter-spacing: 0.01em;
  border: 1px solid var(--line-soft);
}
.farmer-badges li:nth-child(2) { background: var(--clay-soft); color: var(--clay-2); border-color: transparent; }
.farmer-badges li:nth-child(3) { background: var(--voronet-soft); color: var(--voronet); border-color: transparent; }
.farmer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  gap: 12px;
}
.farmer-meta {
  font-size: .82rem;
  color: var(--ink-4);
}

/* =========================================================
   REGIONS / ROMANIA INTERACTIVE MAP
   ========================================================= */
.regions {
  padding: 120px 0;
  background: var(--cream-2);
  position: relative;
  overflow: hidden;
}
.regions::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'><g fill='none' stroke='%232D4A2B' stroke-width='1' opacity='.5'><path d='M36 18 L52 36 L36 54 L20 36 Z'/></g></svg>");
  background-size: 72px 72px;
  opacity: .03;
}

.regions-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.regions-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 460px;
}
.regions-text .eyebrow {
  margin-bottom: 20px;
}
.regions-text h2 {
  margin: 0;
}
.regions-text .section-sub {
  margin: 24px 0 0;
  max-width: 100%;
}
.regions-text .btn {
  margin-top: 36px;
}

/* Region chips removed — section now relies on direct interaction with the map */

/* Map */
.regions-visual {
  position: relative;
}
.map-wrap {
  position: relative;
}
.ro-real-map {
  width: 100%;
  height: auto;
  display: block;
  color: var(--green);
}
.ro-real-map .counties path {
  fill: var(--cream-3);
  stroke: var(--ink);
  stroke-width: 0.8;
  stroke-linejoin: round;
  cursor: pointer;
  transition: fill var(--t) var(--ease), stroke var(--t) var(--ease), stroke-width var(--t) var(--ease), transform var(--t) var(--ease);
  transform-origin: center;
  transform-box: fill-box;
}
.ro-real-map .counties path:hover,
.ro-real-map .counties path.is-hover {
  fill: var(--green-soft);
  stroke-width: 1.4;
}
.ro-real-map .counties path.is-selected {
  fill: var(--green);
  stroke-width: 1.4;
}
.ro-real-map .counties path.is-in-region {
  fill: var(--green-soft);
  opacity: 1;
}
.ro-real-map .counties path.is-dim {
  fill: var(--cream-3);
  opacity: 0.7;
}
.ro-real-map .county-labels text {
  font-family: var(--ff-sans);
  font-weight: 600;
  fill: var(--ink-3);
  pointer-events: none;
  transition: fill var(--t) var(--ease), font-weight var(--t) var(--ease);
}
.ro-real-map .county-labels text.is-hover,
.ro-real-map .county-labels text.is-selected {
  fill: var(--green-2);
  font-weight: 700;
}

/* Tooltip */
.map-tooltip {
  position: absolute;
  z-index: 10;
  padding: 8px 12px;
  background: var(--ink-2);
  color: var(--cream);
  font-family: var(--ff-sans);
  font-size: .82rem;
  font-weight: 500;
  border-radius: 8px;
  pointer-events: none;
  white-space: nowrap;
  transform: translate(-50%, -100%);
  margin-top: -8px;
  box-shadow: var(--shadow);
  letter-spacing: -0.005em;
}
.map-tooltip::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--ink-2);
}
.map-tooltip strong {
  color: var(--gold);
  font-weight: 700;
}

/* Hint under map */
.map-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 16px 0 0;
  font-family: var(--ff-sans);
  font-size: .82rem;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.map-hint .ic { width: 14px; height: 14px; color: var(--clay); }

/* County detail panel */
.county-detail {
  position: relative;
  margin-top: 20px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 28px 28px 26px;
  box-shadow: var(--shadow);
  animation: slideUp 380ms var(--ease-out);
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.county-detail-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t) var(--ease);
}
.county-detail-close:hover {
  background: var(--ink-2);
  color: var(--cream);
}
.county-detail-close .ic { width: 16px; height: 16px; }

.county-detail-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-sans);
  font-size: .7rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.county-detail-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--clay);
  border-radius: 50%;
}
.county-detail-name {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 6px;
  line-height: 1.05;
}
.county-detail-sub {
  font-family: var(--ff-sans);
  font-size: .92rem;
  color: var(--ink-3);
  margin: 0 0 18px;
}
.county-detail-farmers {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}
.county-detail-farmer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--cream-2);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  font-family: var(--ff-sans);
  font-size: .92rem;
  font-weight: 500;
  transition: all var(--t) var(--ease);
}
.county-detail-farmer:hover {
  background: var(--green);
  color: var(--cream);
  transform: translateX(4px);
}
.county-detail-farmer-icon {
  width: 28px;
  height: 28px;
  background: var(--paper);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}
.county-detail-farmer:hover .county-detail-farmer-icon {
  background: rgba(251,246,234,.18);
  color: var(--cream);
}
.county-detail-farmer-icon .ic { width: 14px; height: 14px; }
.county-detail-farmer-name { flex: 1; }
.county-detail-farmer-arrow { color: var(--ink-4); transition: transform var(--t) var(--ease); }
.county-detail-farmer:hover .county-detail-farmer-arrow { color: var(--cream); transform: translateX(2px); }
.county-detail-farmer-arrow .ic { width: 14px; height: 14px; }
.county-detail-empty {
  font-size: .9rem;
  color: var(--ink-3);
  font-style: italic;
  padding: 4px 0;
}
.county-detail-cta {
  width: 100%;
  justify-content: center;
}

/* =========================================================
   WHY
   ========================================================= */
.community {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.community-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'><g fill='none' stroke='%232D4A2B' stroke-width='1'><path d='M36 18 L52 36 L36 54 L20 36 Z'/><path d='M36 30 L42 36 L36 42 L30 36 Z'/><circle cx='36' cy='36' r='1.2' fill='%232D4A2B' stroke='none'/></g></svg>");
  background-size: 72px 72px;
  opacity: .03;
}
.community-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, var(--cream) 0%, transparent 60%);
}

/* Testimonials carousel — 3 visible at a time */
.testimonials-carousel {
  position: relative;
  margin: 48px 0 64px;
  padding: 0 60px;
}
.testimonials-viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.testimonials-track {
  display: flex;
  transition: transform 700ms cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}
.testimonial {
  flex: 0 0 33.333333%;
  min-width: 0;
  padding: 0 8px;
  box-sizing: border-box;
}
.testimonial-inner {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  min-height: 260px;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.testimonial-inner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testimonial-featured .testimonial-inner {
  background: var(--green-2);
  color: var(--cream);
  border-color: transparent;
}
.testimonial-quote-mark {
  position: absolute;
  top: -4px;
  right: 22px;
  font-family: var(--ff-serif);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--clay);
  line-height: 1;
  opacity: .32;
  pointer-events: none;
}
.testimonial-featured .testimonial-quote-mark {
  color: var(--gold);
  opacity: .55;
}
.testimonial-text {
  font-family: var(--ff-serif);
  font-size: 1.02rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
  letter-spacing: -0.005em;
  flex: 1;
  text-align: center;
}
.testimonial-featured .testimonial-text {
  color: var(--cream);
}
.testimonial-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}
.testimonial-featured .testimonial-foot {
  border-top-color: rgba(251,246,234,.2);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-sans);
  font-size: .85rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
  flex-shrink: 0;
  border: 2px solid var(--paper);
}
.testimonial-featured .testimonial-avatar { border-color: rgba(251,246,234,.3); }
.testimonial-avatar-1 { background: linear-gradient(135deg, #6B4F35, #4E3922); }
.testimonial-avatar-2 { background: linear-gradient(135deg, var(--gold), #B89253); }
.testimonial-avatar-3 { background: linear-gradient(135deg, var(--green), var(--green-2)); }
.testimonial-avatar-4 { background: linear-gradient(135deg, var(--clay), var(--clay-2)); }
.testimonial-avatar-5 { background: linear-gradient(135deg, #5A8C4E, #3A6E3A); }
.testimonial-avatar-6 { background: linear-gradient(135deg, var(--brown), #8B6F4A); }
.testimonial-avatar-7 { background: linear-gradient(135deg, var(--voronet), #4A7CA0); }
.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  text-align: left;
}
.testimonial-meta strong {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.testimonial-featured .testimonial-meta strong { color: var(--cream); }
.testimonial-meta span {
  font-family: var(--ff-sans);
  font-size: .78rem;
  color: var(--ink-3);
  letter-spacing: 0.01em;
}
.testimonial-featured .testimonial-meta span { color: rgba(251,246,234,.7); }

/* Carousel navigation arrows */
.testimonials-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  color: var(--green-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  box-shadow: var(--shadow-sm);
}
.testimonials-nav:hover {
  background: var(--green);
  color: var(--cream);
  border-color: var(--green);
  transform: translateY(-50%) scale(1.06);
}
.testimonials-nav svg { width: 20px; height: 20px; }
.testimonials-prev { left: 0; }
.testimonials-next { right: 0; }

/* Dots */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.testimonials-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: all var(--t) var(--ease);
}
.testimonials-dot:hover { background: var(--ink-4); }
.testimonials-dot.is-active {
  background: var(--clay);
  width: 28px;
  border-radius: 4px;
}

/* Community stats strip */
.community-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 0 72px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.community-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 24px;
  position: relative;
}
.community-stat + .community-stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--line);
}
.community-stat-num {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 1.5rem + 1.4vw, 2.8rem);
  font-weight: 600;
  color: var(--green);
  letter-spacing: -0.025em;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}
.community-stat-plus {
  color: var(--clay);
  font-size: .7em;
  margin-left: 2px;
}
.community-stat-label {
  font-family: var(--ff-sans);
  font-size: .9rem;
  color: var(--ink-3);
  letter-spacing: 0.01em;
  text-align: center;
}

/* Closing CTA */
.community-cta {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 32px;
  background: linear-gradient(135deg, var(--cream-2), var(--cream));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  position: relative;
}
.community-cta::before,
.community-cta::after {
  content: '';
  position: absolute;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clay), transparent);
}
.community-cta::before { top: 24px; left: 50%; transform: translateX(-50%); }
.community-cta::after { bottom: 24px; left: 50%; transform: translateX(-50%); }
.community-cta h3 {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 1.2rem + .8vw, 2rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0 0 12px;
}
.community-cta p {
  font-family: var(--ff-sans);
  font-size: 1rem;
  color: var(--ink-3);
  line-height: 1.55;
  margin: 0 0 28px;
}
.community-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================================================
   SMART AREA (AI / AUTOMATION FOR FARMERS)
   ========================================================= */
.smart-area {
  position: relative;
  padding: 120px 0;
  background: var(--cream);
  overflow: hidden;
}
.smart-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'><g fill='none' stroke='%232D4A2B' stroke-width='1'><path d='M36 18 L52 36 L36 54 L20 36 Z'/><path d='M36 30 L42 36 L36 42 L30 36 Z'/><circle cx='36' cy='36' r='1.2' fill='%232D4A2B' stroke='none'/></g></svg>");
  background-size: 72px 72px;
  opacity: .04;
}
.smart-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 0%, var(--cream) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 100%, var(--cream-2) 0%, transparent 50%);
}

.smart-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.smart-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 520px;
}
.smart-text .eyebrow {
  margin-bottom: 18px;
}
.smart-text h2 { margin: 0 0 20px; }
.smart-text .section-sub {
  margin: 0 0 28px;
  max-width: 50ch;
}

.smart-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  width: 100%;
  margin: 0 0 32px;
  padding: 0;
}
.smart-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-sans);
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-2);
  padding: 10px 14px;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  transition: all var(--t) var(--ease);
}
.smart-benefits li:hover {
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.benefit-icon {
  width: 32px;
  height: 32px;
  background: var(--cream-2);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.benefit-icon .ic { width: 18px; height: 18px; }

.smart-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Dashboard mockup */
.smart-dashboard {
  position: relative;
}
.dashboard {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.dashboard::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(45,74,43,.18), transparent 50%, rgba(196,93,61,.12));
  z-index: -1;
  filter: blur(14px);
  opacity: .5;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 14px;
}
.dashboard-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-2);
  letter-spacing: -0.01em;
}
.dashboard-brand .ic { width: 18px; height: 18px; color: var(--green); }
.dashboard-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: var(--green);
  color: var(--cream);
  border-radius: 999px;
  font-family: var(--ff-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .55; transform: scale(.85); }
}

/* Greeting */
.dashboard-greeting {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 4px 8px 0;
}
.greeting-text h4 {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0 0 4px;
  line-height: 1.1;
}
.greeting-text p {
  font-family: var(--ff-sans);
  font-size: .88rem;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.45;
}
.greeting-illustration {
  border-radius: var(--radius);
  overflow: hidden;
  height: 72px;
  background: var(--cream-2);
}
.greeting-illustration svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Modules grid */
.dashboard-modules {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.dashboard-module {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 14px 12px;
  background: var(--cream-2);
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  transition: all var(--t) var(--ease);
}
.dashboard-module:hover {
  background: var(--paper);
  border-color: var(--green-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.module-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}
.module-icon {
  width: 26px;
  height: 26px;
  background: var(--paper);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.module-icon .ic { width: 16px; height: 16px; }
.module-label {
  font-family: var(--ff-sans);
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.01em;
}
.module-value {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--green-2);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-top: 4px;
}
.module-value-clay { color: var(--clay); }
.module-meta {
  font-family: var(--ff-sans);
  font-size: .78rem;
  color: var(--ink-3);
  margin-bottom: 6px;
}
.module-link {
  font-family: var(--ff-sans);
  font-size: .76rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.01em;
  margin-top: auto;
}

/* Extras: AI card + time card */
.dashboard-extras {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px;
}
.ai-card,
.time-card {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: var(--radius);
  align-items: flex-start;
}
.ai-card {
  background: var(--green-2);
  color: var(--cream);
}
.ai-card h5,
.time-card h5 {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.ai-card h5 { color: var(--cream); }
.time-card h5 {
  color: var(--clay-2);
  text-transform: lowercase;
}
.ai-card p,
.time-card p {
  font-family: var(--ff-sans);
  font-size: .82rem;
  line-height: 1.45;
  margin: 0 0 10px;
}
.ai-card p { color: rgba(251,246,234,.85); }
.time-card {
  background: var(--clay-soft);
  color: var(--clay-2);
}
.time-card p { color: var(--clay-2); opacity: .82; }
.ai-card-icon,
.time-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(251,246,234,.1);
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.time-card-icon { background: rgba(196,93,61,.15); }
.ai-card-icon svg,
.time-card-icon svg { width: 44px; height: 44px; }
.ai-card-body,
.time-card-body { flex: 1; min-width: 0; }

.ai-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: var(--cream);
  color: var(--green-2);
  border: 0;
  border-radius: 999px;
  font-family: var(--ff-sans);
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t) var(--ease);
}
.ai-card-btn:hover {
  background: var(--white);
  transform: translateX(2px);
}
.ai-card-btn .ic { width: 14px; height: 14px; }

/* Bottom strip */
.dashboard-bottom {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--cream-2);
  border-radius: var(--radius);
  font-family: var(--ff-sans);
  font-size: .85rem;
  color: var(--ink-3);
  flex-wrap: wrap;
}
.dashboard-bottom strong {
  color: var(--green-2);
  font-weight: 600;
}
.dashboard-bottom-icon {
  width: 24px;
  height: 24px;
  background: var(--green);
  color: var(--cream);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dashboard-bottom-icon .ic { width: 14px; height: 14px; }
.dashboard-bottom-sep { color: var(--ink-4); }

/* =========================================================
   FOR FARMERS
   ========================================================= */
.for-farmers {
  position: relative;
  background: var(--green-2);
  color: var(--cream);
  padding: 120px 0;
  overflow: hidden;
}
.ff-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: var(--cream);
  opacity: .055;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'><g fill='none' stroke='%23FBF6EA' stroke-width='1'><path d='M36 18 L52 36 L36 54 L20 36 Z'/><path d='M36 30 L42 36 L36 42 L30 36 Z'/><circle cx='36' cy='36' r='1.2' fill='%23FBF6EA'/></g></svg>");
  background-size: 72px 72px;
}
.ff-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 100%, rgba(196,93,61,.18), transparent 60%),
              radial-gradient(ellipse at 0% 0%, rgba(251,246,234,.06), transparent 50%);
}

.ff-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.ff-sub {
  font-size: 1.12rem;
  color: rgba(251,246,234,.85);
  line-height: 1.65;
  margin: 26px 0 36px;
  max-width: 52ch;
}

.ff-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
  margin-bottom: 36px;
  padding: 0;
}
.ff-benefits li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: var(--cream);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.ff-benefits li .ic {
  width: 36px; height: 36px;
  background: rgba(251,246,234,.08);
  border: 1px solid rgba(251,246,234,.18);
  color: var(--green-soft);
  border-radius: 10px;
  padding: 7px;
  flex-shrink: 0;
}

/* Decorative line above CTAs */
.ff-ctas-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.ff-divider {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.ff-divider::before,
.ff-divider::after {
  content: '';
  width: 32px;
  height: 1px;
  background: rgba(201,169,97,.45);
}

.ff-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ff-ctas .btn-primary {
  box-shadow: 0 12px 32px -10px rgba(0,0,0,.4);
}

.ff-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-xl);
  transform: rotate(-2deg);
  transition: transform var(--t-slow) var(--ease-out), box-shadow var(--t) var(--ease);
  position: relative;
}
.ff-card::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--radius-lg) + 4px);
  background: linear-gradient(135deg, rgba(201,169,97,.35), rgba(196,93,61,.18) 60%, transparent);
  z-index: -1;
  filter: blur(18px);
  opacity: .7;
}
.ff-card:hover {
  transform: rotate(0) translateY(-6px);
  box-shadow: 0 50px 100px -30px rgba(0,0,0,.5), var(--shadow-xl);
}
.ff-card-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.ff-card-body {
  padding: 24px 26px 28px;
  color: var(--ink);
  position: relative;
}
.ff-card-body .badge {
  position: absolute;
  top: -16px; left: 24px;
  background: var(--green);
  color: var(--cream);
  border-color: transparent;
  box-shadow: 0 8px 18px -8px rgba(45,74,43,.5);
}
.ff-card-body .badge .ic { color: var(--cream); }
.ff-card-body h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 8px 0 6px;
  letter-spacing: -0.015em;
}
.ff-card-body > p {
  font-size: .9rem;
  color: var(--ink-3);
  margin-bottom: 20px;
  line-height: 1.5;
}
.ff-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top: 1px dashed var(--line);
}
.ff-stats > div { display: flex; flex-direction: column; }
.ff-stats strong {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: -0.01em;
}
.ff-stats span {
  font-size: .72rem;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}

/* =========================================================
   SEASONAL
   ========================================================= */
.seasonal { padding: 120px 0; background: var(--cream-2); }
.season-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.product-img {
  position: relative;
  aspect-ratio: 1/1;
  background-size: cover;
  background-position: center;
}
.product-img .badge {
  position: absolute;
  top: 12px; left: 12px;
}
.product-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.product-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.product-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--ink-3);
}
.product-meta .ic { width: 13px; height: 13px; color: var(--clay); }
.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}
.product-price {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.product-price span {
  font-family: var(--ff-sans);
  font-size: .75rem;
  font-weight: 500;
  color: var(--ink-4);
  letter-spacing: 0.02em;
}

/* =========================================================
   MANIFESTO
   ========================================================= */
.manifesto { padding: 120px 0; }
.manif-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.manif-img {
  position: relative;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.manif-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(45,74,43,.15));
}
.corner-decor {
  position: absolute;
  width: 60px; height: 60px;
  color: var(--clay);
  opacity: .85;
}
.corner-decor svg { width: 100%; height: 100%; }
.corner-tl { top: 0; left: 0; }
.corner-br { bottom: 0; right: 0; transform: rotate(180deg); }

.manif-text p {
  font-size: 1.05rem;
  color: var(--ink-2);
  line-height: 1.7;
  margin-top: 20px;
}
.manif-text p strong { color: var(--ink); font-weight: 600; }

.ornament-line {
  color: var(--clay);
  margin: 36px 0;
  opacity: .7;
}

.manif-sign {
  font-size: 1rem !important;
  font-style: italic;
  color: var(--ink-3) !important;
}
.manif-sign strong {
  font-style: normal;
  color: var(--green) !important;
  font-family: var(--ff-serif);
  font-weight: 600 !important;
}

/* =========================================================
   AUDIENCE
   ========================================================= */
.audience {
  padding: 120px 0;
  background: var(--cream-2);
  position: relative;
  overflow: hidden;
}
.audience-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'><g fill='none' stroke='%232D4A2B' stroke-width='1'><path d='M36 18 L52 36 L36 54 L20 36 Z'/><circle cx='36' cy='36' r='1' fill='%232D4A2B'/></g></svg>");
  background-size: 72px 72px;
  opacity: .035;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.aud-card {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  position: relative;
}
.aud-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.aud-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.aud-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px -10px rgba(31,26,20,.45);
  position: relative;
}
.aud-avatar svg { width: 100%; height: 100%; display: block; }
.aud-avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--paper);
  pointer-events: none;
}
.aud-avatar-1 { background: linear-gradient(135deg, var(--brown), var(--brown-2)); }
.aud-avatar-2 { background: linear-gradient(135deg, var(--gold), #B89253); }
.aud-avatar-3 { background: linear-gradient(135deg, var(--green), var(--green-2)); }

.aud-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: var(--cream-2);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-family: var(--ff-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.aud-tag-feature {
  background: rgba(251,246,234,.12);
  border-color: rgba(251,246,234,.25);
  color: var(--cream);
}

.aud-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0;
}

.aud-quote {
  position: relative;
  font-family: var(--ff-serif);
  font-size: 1.02rem;
  font-style: italic;
  font-weight: 400;
  color: var(--green-2);
  line-height: 1.5;
  margin: 0;
  padding: 16px 0 16px 18px;
  border-left: 2px solid var(--clay);
}

.aud-desc {
  font-family: var(--ff-sans);
  font-size: .92rem;
  color: var(--ink-3);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.aud-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--ff-sans);
  font-size: .88rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  margin-top: 6px;
  transition: gap var(--t) var(--ease);
}
.aud-link:hover { gap: 12px; }
.aud-link .ic { width: 16px; height: 16px; }
.aud-link-light { color: var(--gold); }

/* Featured dark card */
.aud-card-feature {
  background: var(--green-2);
  border-color: transparent;
  color: var(--cream);
}
.aud-card-feature h3 { color: var(--cream); }
.aud-card-feature .aud-quote {
  color: var(--cream);
  border-left-color: var(--gold);
}
.aud-card-feature .aud-desc { color: rgba(251,246,234,.85); }

/* Closing line */
.aud-closing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 56px auto 0;
  text-align: center;
  max-width: 640px;
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink-2);
  line-height: 1.5;
}
.aud-closing-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--clay);
  color: var(--cream);
  border-radius: 50%;
  font-style: normal;
  flex-shrink: 0;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { padding: 120px 0; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.faq-item:hover { border-color: var(--ink-4); }
.faq-item.is-open {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  text-align: left;
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: background var(--t) var(--ease);
}
.faq-q:hover { background: var(--cream-2); }
.faq-chev {
  width: 22px; height: 22px;
  color: var(--green);
  transition: transform var(--t) var(--ease);
}
.faq-item.is-open .faq-chev { transform: rotate(180deg); color: var(--clay); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease-out);
}
.faq-a p {
  padding: 0 28px 24px;
  color: var(--ink-3);
  font-size: .98rem;
  line-height: 1.65;
  max-width: 70ch;
}
.faq-item.is-open .faq-a { max-height: 400px; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
  position: relative;
  background: var(--green-2);
  color: var(--cream);
  padding: 110px 0;
  overflow: hidden;
}
.fc-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  color: var(--cream);
  opacity: .06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'><g fill='none' stroke='%23FBF6EA' stroke-width='1'><path d='M36 18 L52 36 L36 54 L20 36 Z'/><path d='M36 30 L42 36 L36 42 L30 36 Z'/><circle cx='36' cy='36' r='1.2' fill='%23FBF6EA'/></g></svg>");
  background-size: 72px 72px;
}
.fc-pattern::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(31,53,32,.5) 100%);
}

.fc-inner {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.fc-sub {
  font-size: 1.15rem;
  color: rgba(251,246,234,.8);
  margin: 24px auto 36px;
  max-width: 50ch;
  line-height: 1.55;
}
.fc-ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #14110D;
  color: rgba(251,246,234,.72);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(251,246,234,.1);
}
.footer-brand .brand { margin-bottom: 20px; }
.footer-tag {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  color: var(--cream);
  font-style: italic;
  margin-bottom: 24px;
  max-width: 28ch;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px; height: 40px;
  background: rgba(251,246,234,.06);
  border: 1px solid rgba(251,246,234,.12);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: all var(--t) var(--ease);
}
.footer-social a:hover {
  background: var(--clay);
  border-color: var(--clay);
  transform: translateY(-2px);
}
.footer-social .ic { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--ff-sans);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: .92rem;
  color: rgba(251,246,234,.7);
  transition: color var(--t) var(--ease);
}
.footer-col a:hover { color: var(--cream); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  font-size: .82rem;
  color: rgba(251,246,234,.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-pattern-strip { color: var(--cream); opacity: .25; }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-card { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .primary-nav { gap: 20px; }
  .primary-nav a { font-size: .9rem; }
  .header-actions .btn-ghost { display: none; }
}

@media (max-width: 980px) {
  :root {
    --container: 100%;
  }

  .hero { padding: 56px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { height: 460px; }

  .trust-list { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .trust-band { padding: 64px 0 48px; }
  .trust-head { margin-bottom: 36px; }
  .trust-card { padding: 28px 20px 24px; }
  .trust-strip { gap: 10px 18px; margin-top: 32px; padding-top: 24px; }

  .how, .categories, .farmers, .regions, .why, .for-farmers, .seasonal, .manifesto, .audience, .faq, .final-cta { padding: 80px 0; }

  .cat-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; }
  .cat-large { grid-column: span 2; grid-row: span 2; }

  .farmer-grid { grid-template-columns: 1fr 1fr; }
  .farmer-card-feature { grid-column: span 2; transform: none; }
  .farmer-card-feature:hover { transform: translateY(-4px); }

  .regions-grid { grid-template-columns: 1fr; gap: 48px; }
  .regions-visual { order: -1; }
  .ro-map { max-width: 360px; }

  /* Map responsive */
  .county-detail { padding: 24px 22px 22px; }
  .county-detail-name { font-size: 1.5rem; }

  .ff-grid { grid-template-columns: 1fr; gap: 56px; }
  .ff-visual { max-width: 480px; margin: 0 auto; }
  .ff-card { transform: none; }
  .ff-card:hover { transform: translateY(-4px); }
  .ff-benefits { gap: 12px 20px; }
  .ff-ctas .btn { flex: 1 1 100%; }

  /* Smart area stack */
  .smart-area { padding: 80px 0; }
  .smart-grid { grid-template-columns: 1fr; gap: 48px; }
  .smart-text { max-width: 100%; }
  .dashboard-modules { gap: 10px; }
  .ff-visual { max-width: 480px; margin: 0 auto; }

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

  .manif-grid { grid-template-columns: 1fr; gap: 48px; }
  .manif-img { aspect-ratio: 16/11; max-height: 480px; }

  .audience-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .aud-card { padding: 28px 24px 24px; }
  .aud-closing { font-size: 1rem; margin-top: 36px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }

  /* Mobile nav */
  .primary-nav {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line-soft);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    gap: 0;
    transform: translateY(-110%);
    transition: transform var(--t-slow) var(--ease-out);
    box-shadow: var(--shadow);
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .primary-nav.is-open { transform: translateY(0); }
  .primary-nav a {
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--line-soft);
  }
  .primary-nav a:last-child { border-bottom: 0; }
  .primary-nav a::after { display: none; }

  .nav-toggle { display: inline-flex; }
  .header-actions .btn:not(.btn-primary):not(.nav-toggle) { display: none; }
  .header-inner { padding: 12px 20px; gap: 12px; }
  .brand { font-size: 1.2rem; }

  /* Hero */
  .hero { padding: 40px 0 64px; }
  .hero-visual { height: 380px; }
  .display { font-size: clamp(2.1rem, 1.7rem + 2.5vw, 3rem); }
  .hero-ctas .btn { flex: 1 1 100%; }
  .hero-trust { gap: 14px; margin-top: 36px; }
  .trust-num { font-size: 1.5rem; }
  .trust-sep { height: 30px; }

  /* Trust band mobile */
  .trust-list { grid-template-columns: 1fr 1fr; gap: 12px; }
  .trust-card { padding: 24px 16px 22px; }
  .trust-card-stat { font-size: 1.3rem; }
  .trust-card-title { font-size: .98rem; }
  .trust-card-desc { font-size: .82rem; }
  .trust-strip-item { font-size: .82rem; }

  /* Farmer carousel */
  .farmer-slide-content { padding: 22px 22px 26px; }
  .farmer-slide-name { font-size: 1.5rem; }
  .farmer-slide-desc { font-size: .9rem; max-width: 28ch; }
  .farmer-slide-meta { flex-direction: column; align-items: flex-start; gap: 8px; padding: 8px 0; }
  .farmer-slide-products { font-size: .78rem; }
  .farmer-nav { width: 36px; height: 36px; }
  .farmer-nav-prev { left: 10px; }
  .farmer-nav-next { right: 10px; }
  .farmer-dots { top: 14px; right: 14px; padding: 5px 8px; }

  /* Sections */
  .section-head { margin-bottom: 36px; }
  .steps { flex-direction: column; gap: 14px; max-width: 420px; margin: 0 auto; }
  .step { max-width: 100%; }
  .step-arrow { transform: rotate(90deg); width: 40px; height: 40px; }
  .how-summary { font-size: .88rem; padding: 14px 22px; margin-top: 32px; }
  .step { padding: 28px 24px 24px; }

  .cat-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .cat-large { grid-column: span 2; grid-row: span 2; }
  .cat-body h3 { font-size: 1.1rem; }
  .cat-large .cat-body h3 { font-size: 1.55rem; }

  .farmer-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .farmer-card { transform: scale(1); }
  .farmer-card-feature { grid-column: span 2; transform: none; }
  .farmer-card-feature:hover { transform: translateY(-4px); }
  .farmer-card-feature { grid-column: span 1; }

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

  /* Community responsive */
  .community { padding: 80px 0; }
  .testimonials { grid-template-columns: 1fr; gap: 14px; margin: 32px 0 48px; }
  .testimonial-featured { transform: none; }
  .testimonial-featured:hover { transform: translateY(-4px); }
  .testimonials-carousel { padding: 0 12px; }
  .testimonial { flex: 0 0 100%; padding: 0 4px; }
  .testimonial-inner { padding: 28px 24px 24px; min-height: 240px; }
  .testimonials-nav { width: 36px; height: 36px; }
  .testimonials-nav svg { width: 16px; height: 16px; }
  .community-stats { grid-template-columns: 1fr 1fr; gap: 24px 0; margin-bottom: 48px; }
  .community-stat + .community-stat::before { display: none; }
  .community-stat + .community-stat:nth-child(odd)::before { display: none; }
  .community-cta { padding: 36px 24px; }
  .community-cta-buttons .btn { flex: 1 1 100%; }
  .ff-benefits { grid-template-columns: 1fr; }
  .ff-ctas .btn { flex: 1 1 100%; }

  .season-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .faq-q { font-size: 1.05rem; padding: 18px 22px; }
  .faq-a p { padding: 0 22px 20px; }

  .fc-ctas .btn { flex: 1 1 100%; }
  .fc-inner .h-display { font-size: clamp(1.7rem, 1.3rem + 2vw, 2.4rem); }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { justify-content: center; text-align: center; flex-direction: column; }

  /* Ornament line in manifesto */
  .ornament-line svg { width: 160px; }
}

@media (max-width: 420px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 14px; }
  .trust-sep { display: none; }
  /* Product cards: keep 2-col but compact */
  .product-body { padding: 12px 12px 14px; gap: 5px; }
  .product-name { font-size: .92rem; }
  .product-price { font-size: 1rem; }
  .product-price small { font-size: .62rem; }
  .product-meta { font-size: .7rem; }
  .product-meta svg { width: 11px; height: 11px; }
  .product-add { width: 30px; height: 30px; }
  .product-add svg { width: 15px; height: 15px; }
  /* Seasonal grid tighter */
  .season-grid { gap: 12px; }
  /* Farmers grid tighter */
  .farmer-grid { gap: 12px; }
  .farmer-card { padding: 18px 14px 16px; }
  .farmer-card-name { font-size: 1.15rem; }
  .farmer-card-desc { font-size: .78rem; line-height: 1.4; }
  /* Container tighter */
  .container { padding: 0 16px; }
  /* Hero tighter */
  .hero { padding: 64px 0 80px; }
  .hero-grid { gap: 40px; }
  /* Section heads tighter */
  .section-head { margin-bottom: 32px; }
  /* Trust band tighter */
  .trust-band { padding: 56px 0 40px; }
  /* Categories tighter */
  .categories { padding: 80px 0; }
  /* Section padding reduction */
  .how, .farmers, .regions, .why, .for-farmers, .seasonal, .manifesto, .audience, .faq, .final-cta { padding: 64px 0; }
  /* Display titles smaller */
  .display { font-size: clamp(1.85rem, 1.5rem + 2vw, 2.5rem); }
  .h-display { font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2rem); }
  /* Trust list 1-col on tiny */
  .trust-list { grid-template-columns: 1fr 1fr; gap: 10px; }
  .trust-card { padding: 20px 14px 18px; }
  /* Community stats tighter */
  .community-stats { gap: 16px 0; padding: 24px 0; }
  .community-stat-num { font-size: 1.6rem; }
  /* How steps tighter */
  .step-icon { width: 48px; height: 48px; }
  .step-icon .ic { width: 24px; height: 24px; }
  /* Testimonial cards */
  .testimonial-inner { padding: 24px 20px 20px; min-height: 220px; }
  .testimonial-text { font-size: .95rem; }
}

/* ---------- PRINT ---------- */
@media print {
  .site-header, .final-cta, .for-farmers, .float-card, .fc-pattern { display: none !important; }
  body { background: white; color: black; }
}