/* ═══════════════════════════════════════════════════════════
   FARMELIO — MAIN STYLESHEET
   Aesthetic: Editorial Organic — think high-end farmers market
   meets luxury food magazine. Deep greens, warm amber, natural
   textures, generous whitespace, expressive typography.
═══════════════════════════════════════════════════════════ */

/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  /* Brand colours */
  --green-950: #052e16;
  --green-900: #14532d;
  --green-800: #166534;
  --green-700: #15803d;
  --green-600: #16a34a;
  --green-500: #22c55e;
  --green-400: #4ade80;
  --green-100: #dcfce7;
  --green-50:  #f0fdf4;

  --amber-600: #d97706;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --amber-100: #fef3c7;
  --amber-50:  #fffbeb;

  --stone-950: #0c0a09;
  --stone-900: #1c1917;
  --stone-800: #292524;
  --stone-700: #44403c;
  --stone-600: #57534e;
  --stone-500: #78716c;
  --stone-400: #a8a29e;
  --stone-300: #d6d3d1;
  --stone-200: #e7e5e4;
  --stone-100: #f5f5f4;
  --stone-50:  #fafaf9;
  --white:     #ffffff;

  /* Semantic */
  --bg:           var(--stone-50);
  --bg-card:      var(--white);
  --text:         var(--stone-900);
  --text-muted:   var(--stone-500);
  --text-faint:   var(--stone-400);
  --border:       var(--stone-200);
  --accent:       var(--green-600);
  --accent-hover: var(--green-700);

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Instrument Sans', system-ui, sans-serif;

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

  /* Radii */
  --r-sm: 0.5rem;
  --r-md: 1rem;
  --r-lg: 1.5rem;
  --r-xl: 2rem;
  --r-2xl: 2.5rem;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 12px rgba(0,0,0,.08), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.05);
  --shadow-xl:   0 24px 64px rgba(0,0,0,.15);
  --shadow-card: 0 1px 2px rgba(0,0,0,.04), 0 4px 16px rgba(0,0,0,.07);
  --shadow-green: 0 0 24px rgba(22,163,74,.35);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 120ms;
  --t-base: 200ms;
  --t-slow: 400ms;
  --t-slower: 700ms;
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }
ul { list-style: none; }

/* ── LAYOUT HELPERS ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

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

/* ── TYPOGRAPHY SYSTEM ──────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  text-wrap: balance;
}

.section-title--light { color: var(--white); }

.section-sub {
  margin-top: var(--space-4);
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-sub--light { color: rgba(255,255,255,.65); }

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-header .section-sub { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--r-xl);
  transition: all var(--t-base) var(--ease);
  white-space: nowrap;
  user-select: none;
  position: relative;
  overflow: hidden;
}

.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }
.btn--md { padding: 0.7rem 1.5rem;  font-size: 0.9rem; }
.btn--lg { padding: 0.9rem 2rem;    font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: var(--green-800);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md), var(--shadow-green);
}

.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.3);
}

.btn--ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
}

.btn--outline {
  background: transparent;
  color: var(--green-700);
  border: 1.5px solid var(--green-600);
}

.btn--outline:hover {
  background: var(--green-50);
}

/* ── NAVIGATION ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: all var(--t-slow) var(--ease);
}

.nav.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

.nav__logo-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  background: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  transition: all var(--t-base) var(--ease);
}

.nav__brand:hover .nav__logo-icon {
  background: var(--green-800);
  transform: rotate(-5deg);
}

.nav__brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--t-base);
}

.nav.scrolled .nav__brand-name { color: var(--stone-900); }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  margin-left: auto;
}

.nav__link {
  padding: var(--space-2) var(--space-4);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  border-radius: var(--r-lg);
  transition: all var(--t-base);
}

.nav.scrolled .nav__link { color: var(--stone-600); }

.nav__link:hover {
  color: var(--white);
  background: rgba(255,255,255,.1);
}

.nav.scrolled .nav__link:hover {
  color: var(--green-700);
  background: var(--green-50);
}

.nav__cta {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--white);
  color: var(--green-800);
  border-radius: var(--r-full);
  transition: all var(--t-base);
  box-shadow: var(--shadow-sm);
}

.nav.scrolled .nav__cta {
  background: var(--green-700);
  color: var(--white);
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav__toggle span {
  height: 2px;
  border-radius: 2px;
  background: var(--white);
  transition: all var(--t-base);
  transform-origin: center;
}

.nav.scrolled .nav__toggle span { background: var(--stone-800); }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 var(--space-24);
  overflow: hidden;
}

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

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 50% -10%, rgba(22,163,74,.25) 0%, transparent 70%),
    radial-gradient(ellipse 60% 60% at 10% 80%, rgba(245,158,11,.1) 0%, transparent 60%),
    linear-gradient(180deg, var(--green-950) 0%, var(--green-900) 50%, var(--stone-900) 100%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero__orb--1 {
  width: 700px; height: 700px;
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(34,197,94,.15) 0%, transparent 70%);
  animation: orbFloat 8s ease-in-out infinite;
}

.hero__orb--2 {
  width: 500px; height: 500px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(245,158,11,.12) 0%, transparent 70%);
  animation: orbFloat 10s ease-in-out infinite reverse;
}

.hero__orb--3 {
  width: 400px; height: 400px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(74,222,128,.08) 0%, transparent 70%);
  animation: orbPulse 5s ease-in-out infinite;
}

.hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-300, #86efac);
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.25);
  border-radius: var(--r-full);
  padding: 0.4rem 1rem;
  margin-bottom: var(--space-6);
  backdrop-blur: 8px;
}

.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: blink 2s ease-in-out infinite;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--space-6);
}

.hero__headline em {
  font-style: italic;
  color: #86efac;
}

.hero__headline-accent {
  position: relative;
  color: var(--amber-400);
  display: inline-block;
}

.hero__headline-accent::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 4px;
  background: var(--amber-400);
  border-radius: 2px;
  opacity: .5;
}

.hero__sub {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255,255,255,.65);
  margin-bottom: var(--space-10);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-12);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
}

.hero__trust-item svg { color: var(--green-400); flex-shrink: 0; }

/* Hero card stack */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 480px;
}

.hero__card-stack {
  position: relative;
  width: 240px;
}

.hero__card {
  position: absolute;
  width: 200px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-2xl);
  padding: var(--space-6);
  text-align: center;
  color: var(--white);
  transition: all var(--t-slow) var(--ease-out);
}

.hero__card--back {
  top: 40px; left: -40px;
  transform: rotate(-8deg);
  opacity: .55;
  z-index: 1;
}

.hero__card--mid {
  top: 20px; right: -20px;
  transform: rotate(5deg);
  opacity: .7;
  z-index: 2;
}

.hero__card--front {
  top: 80px; left: 20px;
  z-index: 3;
  background: rgba(22,101,52,.6);
  border-color: rgba(74,222,128,.3);
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 30px rgba(22,163,74,.2);
}

.hero__card-emoji { font-size: 3rem; margin-bottom: var(--space-3); }

.hero__card p {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.hero__card span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--amber-400);
}

.hero__card-badge {
  display: inline-block;
  margin-top: var(--space-3);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--green-500);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-full);
}

.hero__floating {
  position: absolute;
  font-size: 2.5rem;
  pointer-events: none;
  user-select: none;
}

.hero__floating--leaf {
  top: 20px; right: 20px;
  animation: floatY 4s ease-in-out infinite;
}

.hero__floating--carrot {
  bottom: 60px; left: 0;
  animation: floatY 5s ease-in-out infinite reverse;
  animation-delay: -2s;
}

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  z-index: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.4));
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero__scroll-hint span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* ── MARQUEE ──────────────────────────────────────────────────── */
.marquee-strip {
  background: var(--green-800);
  overflow: hidden;
  padding: var(--space-4) 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.marquee-track {
  display: flex;
  gap: var(--space-8);
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-track span {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
  padding: 0 var(--space-2);
}

/* ── ABOUT ─────────────────────────────────────────────────────── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}

.about__body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}

.about__stats {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-10);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border);
}

.about__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--green-700);
  line-height: 1;
  letter-spacing: -0.03em;
}

.about__stat-num sup {
  font-size: 1rem;
  vertical-align: super;
}

.about__stat-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: var(--space-1);
}

.about__image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.about__img {
  background: linear-gradient(135deg, var(--green-50) 0%, var(--amber-50) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--space-8) var(--space-5);
  text-align: center;
  transition: all var(--t-slow) var(--ease-out);
}

.about__img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200, #bbf7d0);
}

.about__img span { font-size: 3rem; display: block; margin-bottom: var(--space-3); }

.about__img p {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.4;
}

.about__img--1, .about__img--4 { margin-top: var(--space-8); }

/* ── PRODUCTS ──────────────────────────────────────────────────── */
.products { background: var(--stone-50); }

.categories {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  justify-content: center;
  margin-bottom: var(--space-12);
}

.category-btn {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--r-full);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  transition: all var(--t-base) var(--ease);
}

.category-btn:hover {
  border-color: var(--green-400);
  color: var(--green-700);
  background: var(--green-50);
}

.category-btn.active {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(22,163,74,.25);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-5);
  margin-bottom: var(--space-16);
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t-slow) var(--ease-out);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--green-200, #bbf7d0);
}

.product-card__img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: linear-gradient(135deg, var(--green-50) 0%, var(--amber-50) 100%);
  position: relative;
  overflow: hidden;
}

.product-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,.04));
}

.product-card__tag {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-full);
  z-index: 1;
}

.product-card__tag--fresh { background: var(--green-100); color: var(--green-800); }
.product-card__tag--organic { background: var(--amber-100); color: var(--amber-700); }
.product-card__tag--seasonal { background: #dbeafe; color: #1e40af; }

.product-card__body { padding: var(--space-5); }

.product-card__cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: var(--space-1);
}

.product-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--space-2);
}

.product-card__desc {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card__price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}

.product-card__unit {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-faint);
}

.product-card__btn {
  width: 36px; height: 36px;
  border-radius: var(--r-lg);
  background: var(--green-700);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-base) var(--ease);
  flex-shrink: 0;
}

.product-card__btn:hover {
  background: var(--green-800);
  transform: scale(1.1);
}

.products__cta { text-align: center; }

/* ── HOW IT WORKS ────────────────────────────────────────────── */
.how {
  position: relative;
  overflow: hidden;
}

.how__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--green-900) 0%, var(--stone-950) 100%);
}

.how__grain {
  position: absolute;
  inset: 0;
  opacity: .4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.07'/%3E%3C/svg%3E");
}

.how .container { position: relative; z-index: 1; }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  text-align: center;
  padding: var(--space-8) var(--space-6);
}

.step__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--green-500);
  margin-bottom: var(--space-4);
}

.step__icon {
  font-size: 2.5rem;
  margin-bottom: var(--space-5);
  display: inline-block;
  animation: floatY 4s ease-in-out infinite;
}

.step:nth-child(1) .step__icon { animation-delay: 0s; }
.step:nth-child(3) .step__icon { animation-delay: -1s; }
.step:nth-child(5) .step__icon { animation-delay: -2s; }
.step:nth-child(7) .step__icon { animation-delay: -3s; }

.step__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
}

.step__body {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,.55);
}

.step__connector {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.step__connector-line {
  width: 48px;
  height: 1px;
  background: linear-gradient(to right, rgba(74,222,128,.3), rgba(74,222,128,.1));
  position: relative;
}

.step__connector-line::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -4px;
  width: 8px; height: 8px;
  border-top: 1px solid rgba(74,222,128,.4);
  border-right: 1px solid rgba(74,222,128,.4);
  transform: rotate(45deg);
}

/* ── FARMERS ─────────────────────────────────────────────────── */
.farmer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-bottom: var(--space-16);
}

.farmer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--space-8);
  transition: all var(--t-slow) var(--ease-out);
}

.farmer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200, #bbf7d0);
}

.farmer-card__avatar {
  font-size: 3rem;
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--green-50), var(--amber-50));
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
  border: 1px solid var(--border);
}

.farmer-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.farmer-card__location {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: var(--space-4);
}

.farmer-card__body p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}

.farmer-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.farmer-card__tags span {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  background: var(--green-50);
  color: var(--green-800);
  border: 1px solid var(--green-100);
  border-radius: var(--r-full);
}

.farmers__impact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  padding: var(--space-8);
  background: linear-gradient(135deg, var(--green-950) 0%, var(--stone-900) 100%);
  border-radius: var(--r-2xl);
}

.impact-card {
  display: flex;
  gap: var(--space-4);
  padding: var(--space-5);
}

.impact-card__icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
}

.impact-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.impact-card p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255,255,255,.5);
}

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
.testimonials { background: var(--stone-50); }

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: var(--space-5);
  align-items: start;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--space-8);
  transition: all var(--t-slow) var(--ease-out);
}

.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testimonial--large {
  padding: var(--space-10);
  border-color: var(--green-200, #bbf7d0);
  background: linear-gradient(to bottom right, var(--white), var(--green-50));
}

.testimonial__stars {
  font-size: 0.9rem;
  color: var(--amber-500);
  letter-spacing: .05em;
  margin-bottom: var(--space-4);
}

.testimonial__quote {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: var(--space-6);
}

.testimonial--large .testimonial__quote {
  font-size: 1.05rem;
  color: var(--text);
}

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

.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.testimonial__author strong { display: block; font-size: 0.9rem; font-weight: 700; }
.testimonial__author span  { display: block; font-size: 0.78rem; color: var(--text-muted); }

/* ── SUSTAINABILITY ────────────────────────────────────────────── */
.sustain { background: var(--white); }

.sustain__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: center;
}

.sustain__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-10);
}

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

.sustain__item-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.sustain__item h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-1);
}

.sustain__item p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.sustain__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-8);
}

.sustain__circle {
  width: 240px; height: 240px;
  border-radius: 50%;
  background: conic-gradient(var(--green-600) 0%, var(--green-500) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 60px rgba(22,163,74,.25), 0 0 120px rgba(22,163,74,.1);
  position: relative;
}

.sustain__circle::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(34,197,94,.3) 0%, transparent 30%);
  animation: rotateSlow 8s linear infinite;
}

.sustain__circle-inner {
  width: 170px; height: 170px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-4);
  z-index: 1;
}

.sustain__pct {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--green-700);
  line-height: 1;
}

.sustain__pct-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: var(--space-1);
  line-height: 1.4;
}

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

.sustain__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-5);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--r-xl);
  text-align: center;
}

.sustain__badge span:first-child { font-size: 1.5rem; }

.sustain__badge span:last-child {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--green-800);
  line-height: 1.3;
}

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact { background: var(--stone-50); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-20);
  align-items: start;
}

.contact__body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-top: var(--space-5);
  margin-bottom: var(--space-8);
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact__detail svg { color: var(--green-600); flex-shrink: 0; }

.contact__form-wrap {
  position: relative;
}

.contact__form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
}

.form-success {
  display: none;
  background: var(--white);
  border: 1px solid var(--green-200, #bbf7d0);
  border-radius: var(--r-2xl);
  padding: var(--space-12) var(--space-8);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.form-success__icon { font-size: 3rem; margin-bottom: var(--space-4); }

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: var(--space-3);
}

.form-success p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.65; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--white);
  color: var(--text);
  transition: all var(--t-base) var(--ease);
  outline: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--stone-400); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(34,197,94,.1);
}

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

.form-note {
  margin-top: var(--space-3);
  font-size: 0.78rem;
  color: var(--text-faint);
  text-align: center;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: var(--stone-950);
  color: var(--stone-400);
  padding: var(--space-20) 0 var(--space-10);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer__logo-icon {
  width: 32px; height: 32px;
  border-radius: var(--r-md);
  background: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}

.footer__logo span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer__col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--space-5);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__col li a,
.footer__col li span {
  font-size: 0.875rem;
  color: var(--stone-400);
  transition: color var(--t-base);
}

.footer__col li a:hover { color: var(--white); }

.footer__bottom {
  padding-top: var(--space-8);
  border-top: 1px solid var(--stone-800);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.footer__bottom p { font-size: 0.82rem; }
.footer__made { color: var(--stone-600); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__container { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .about__grid, .sustain__grid, .contact__grid { grid-template-columns: 1fr; gap: var(--space-12); }
  .steps { flex-direction: column; align-items: center; }
  .step__connector { transform: rotate(90deg); }
  .farmer-cards { grid-template-columns: 1fr; }
  .farmers__impact { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}

@media (max-width: 768px) {
  .nav__links { display: none; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(5,46,22,.98); backdrop-filter: blur(24px); padding: var(--space-6); gap: var(--space-2); border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav__links.open { display: flex; }
  .nav__toggle { display: flex; }
  .hero { min-height: auto; padding: 100px 0 var(--space-16); }
  .hero__headline { font-size: clamp(2.5rem, 10vw, 4rem); }
  .about__stats { flex-wrap: wrap; gap: var(--space-6); }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  :root { --space-24: 4rem; --space-20: 3rem; }
  .container { padding: 0 var(--space-4); }
  .section { padding: var(--space-16) 0; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
}
