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

:root {
  /* Warm forest greens — sampled from logo shield & fields */
  --green-900: #102A12;
  --green-800: #1A4024;
  --green-700: #276830;
  --green-600: #358740;
  --green-500: #48A350;
  --green-400: #6DBB6F;
  --green-300: #92D093;
  --green-200: #B9E2BA;
  --green-100: #D8F0D9;
  --green-50: #EDF8EE;
  /* Rich amber golds — sampled from logo shield border & sun */
  --gold-700: #6D5311;
  --gold-600: #8B6B1A;
  --gold-500: #B8922A;
  --gold-400: #D4A825;
  --gold-300: #E4BF4A;
  --gold-200: #EFD87D;
  --gold-100: #FAF0CC;
  --cream: #FEFCF3;
  --white: #FFFFFF;
  --dark: #1A1A1A;
  --gray-800: #1F2937;
  --gray-700: #374151;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .06);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, .08);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, .1);
  --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-700);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

/* ===== TYPOGRAPHY ===== */
.serif {
  font-family: 'Playfair Display', Georgia, serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dark);
  line-height: 1.2;
}

.section-eyebrow {
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: .75rem;
}

.section-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.section-subheading {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 620px;
  line-height: 1.8;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 70px 0;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .8s cubic-bezier(.16, 1, .3, 1), transform .8s cubic-bezier(.16, 1, .3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-1 {
  transition-delay: .1s;
}

.stagger-2 {
  transition-delay: .2s;
}

.stagger-3 {
  transition-delay: .3s;
}

.stagger-4 {
  transition-delay: .4s;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: .95rem;
  border-radius: 60px;
  padding: 15px 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, .3);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, .4);
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

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

.btn-outline:hover {
  background: var(--green-50);
  border-color: var(--green-600);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--green-700);
  font-weight: 600;
  padding: 12px 4px;
}

.btn-ghost:hover {
  color: var(--green-800);
}

.btn-ghost .arrow {
  transition: transform var(--transition);
}

.btn-ghost:hover .arrow {
  transform: translateX(4px);
}

/* ===== WHATSAPP SVG ICON ===== */
.wa-icon {
  fill: currentColor;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: var(--green-800);
  transition: all var(--transition);
}

.nav.scrolled {
  /* background: var(--green-900); */
  box-shadow: 0 4px 30px rgba(0, 0, 0, .25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 72px;
  width: 100%;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 55px;
  width: auto;
  /* filter: brightness(0) invert(1); */
  transition: height var(--transition);
}

.nav.scrolled .nav-logo img {
  /* height: 40px; */
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}

.nav-manage {
  height: 58px;
  width: auto;
  margin-left: auto;
  flex-shrink: 0;
  background: var(--white);
  padding: 4px 8px;
  /* border-radius: 8px; */
  box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .8);
  padding: 26px 20px;
  text-transform: uppercase;
  /* letter-spacing: .12em; */
  transition: all var(--transition);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .06);
  border-bottom-color: var(--gold-500);
}

.nav-links a.active {
  color: var(--white);
  border-bottom-color: var(--gold-500);
}

.mobile-menu a.active {
  color: var(--gold-500);
}

/* ===== INNER PAGE SHELL ===== */
.inner-main {
  min-height: 60vh;
  padding-top: 72px;
  /* clears fixed nav (min-height 72px) — middle sections fill this area */
}

.nav-cta {
  flex-shrink: 0;
  margin-left: 50px;
}

.nav-cta .btn {
  font-size: .82rem;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  letter-spacing: .05em;
  text-transform: uppercase;
  background: var(--whatsapp);
  border-color: var(--whatsapp);
}

.nav-cta .btn:hover {}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .08);
  border-radius: 10px;
  transition: all var(--transition);
}

.nav-toggle:hover,
.nav-toggle.active {
  border-color: var(--gold-500);
  background: rgba(255, 255, 255, .14);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--white);
  position: relative;
  transition: background var(--transition);
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--white);
  left: 0;
  transition: all var(--transition);
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.nav-toggle.active span {
  background: transparent;
}

.nav-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--green-900);
  z-index: 999;
  padding: 100px 24px 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all .3s ease;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  padding: 16px 24px;
  color: rgba(255, 255, 255, .85);
  text-transform: uppercase;
  /*letter-spacing: .08em;*/
  transition: color var(--transition);
}

.mobile-menu a:hover {
  color: var(--white);
}

.mobile-menu .btn {
  margin-top: 20px;
}

/* ===== SECTION 1: HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  background: #0a0a08 url('../images/hero-farm.jpg') center / cover no-repeat;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-video.loaded {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(10, 10, 8, 1) 0%, rgba(20, 30, 15, .4) 50%, rgba(50, 45, 10, .9) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 90px;
  background: var(--green-900);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 3;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at 60% 50%, rgba(255, 255, 255, .03) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 60px 0 120px;
}

.hero-phone-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  order: 2;
}

.hero-phone-col::after {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .025);
  border: 1px solid rgba(255, 255, 255, .05);
  z-index: 0;
  pointer-events: none;
}

.hero-text-col {
  position: relative;
  z-index: 2;
  order: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 24px;
  padding: 8px 18px;
  background: rgba(212, 168, 37, .1);
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, .08);
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

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

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.hero-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
}

.hero-check .check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-check .check-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold-400);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero .btn-ghost {
  color: rgba(255, 255, 255, .75);
}

.hero .btn-ghost:hover {
  color: var(--white);
}

.credibility-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-md);
  font-size: .85rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.5;
}

.credibility-strip .strip-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.hero .phone-caption {
  /* color: rgba(255, 255, 255, .5); */
}

/* ===== PHONE MOCKUP ===== */
.phone-mockup {
  width: 280px;
  position: relative;
}

.phone-frame {
  background: #111;
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255, 255, 255, .1) inset;
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #111;
  border-radius: 0 0 18px 18px;
  z-index: 5;
}

.phone-screen {
  background: var(--cream);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.passport-header {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  padding: 44px 20px 18px;
  text-align: center;
}

.passport-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .15);
  border-radius: 40px;
  padding: 5px 14px;
  font-size: .65rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.passport-header-badge svg {
  width: 12px;
  height: 12px;
}

.passport-header h3 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.passport-header p {
  color: rgba(255, 255, 255, .7);
  font-size: .7rem;
}

.passport-body {
  padding: 16px;
}

.passport-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.passport-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}

.passport-row:last-child {
  border-bottom: none;
}

.passport-row-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .85rem;
}

.passport-row-icon.farm {
  background: var(--green-100);
}

.passport-row-icon.date {
  background: var(--gold-100);
}

.passport-row-icon.cult {
  background: #E8F4FD;
}

.passport-row-icon.test {
  background: #FEF3C7;
}

.passport-row-text {
  flex: 1;
}

.passport-row-label {
  font-size: .62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-500);
}

.passport-row-value {
  font-size: .78rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.4;
}

.passport-qr {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 10px;
  background: var(--gray-100);
  border-radius: 8px;
}

.qr-grid {
  width: 44px;
  height: 44px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(7, 1fr);
  gap: 1px;
  flex-shrink: 0;
}

.qr-cell {
  border-radius: 1px;
}

.qr-cell.on {
  background: var(--dark);
}

.qr-cell.off {
  background: transparent;
}

.passport-qr-text {
  font-size: .68rem;
  color: var(--gray-600);
  line-height: 1.4;
}

.passport-qr-text strong {
  color: var(--green-700);
}

/* ----- passport mockup variants (per visitor-journey stage) ----- */
/* S1 Hero — status only / curiosity */
.passport-statusbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  margin-bottom: 12px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-sm);
  font-size: .72rem;
  font-weight: 600;
  color: var(--gray-600);
}

.passport-statusbar strong {
  color: var(--green-800);
  font-weight: 700;
  letter-spacing: .02em;
}

.passport-livedot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 3px rgba(72, 163, 80, .2);
  flex-shrink: 0;
  animation: pulse-dot 2s ease infinite;
}

.passport-blur {
  margin-top: 12px;
  padding: 10px 0 4px;
  text-align: center;
  font-size: .72rem;
  font-weight: 500;
  color: var(--gray-400);
  filter: blur(2.5px);
  user-select: none;
}

.passport-reveal-btn {
  width: 100%;
  margin-top: 8px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  background: var(--green-700);
  color: var(--white);
  font-size: .65rem;
  font-weight: 600;
  text-align: center;
  transition: background var(--transition);
}

.passport-reveal-btn:hover {
  background: var(--green-800);
}

/* S4 — proof / crop care log */
.passport-proofnote {
  margin-top: 12px;
  padding: 9px 12px;
  background: var(--green-50);
  border-radius: var(--radius-sm);
  font-size: .68rem;
  font-weight: 600;
  color: var(--green-700);
  line-height: 1.4;
}

.phone-caption {
  text-align: center;
  margin-top: 20px;
  font-size: .98rem;
  /* font-style: italic; */
  color: var(--gold-500);
  font-family: 'Playfair Display', serif;
}

.phone-float-badge {
  position: absolute;
  top: 40px;
  right: -30px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--green-700);
  animation: float 4s ease-in-out infinite;
  z-index: 3;
}

.phone-float-badge-2 {
  position: absolute;
  bottom: 80px;
  left: -24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-700);
  animation: float 4s ease-in-out infinite .5s;
  z-index: 3;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ===== SECTION 2: THE PROBLEM ===== */
.s2-problem {
  background: var(--green-50);
  position: relative;
  overflow: hidden;
}

.s2-shield {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: auto;
  opacity: .06;
  pointer-events: none;
  z-index: 0;
}

.s2-problem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.s2-problem .section-heading {
  color: var(--green-900);
  /*max-width: 700px;*/
}

.s2-problem .section-eyebrow {
  color: var(--green-700);
}
.problem-grid{
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 50px;
    margin-bottom: 40px;
    align-items: center;
    margin-top: 30px;
}
.problem-grid123{grid-template-columns: 1fr; margin-top: 0;}
.s2-bridge {
  font-size: 1.15rem;
  color: var(--green-800);
  max-width: 660px;
  margin-bottom: 15px;
  line-height: 1.8;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.problem-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .3);
}

.problem-card-img {
  position: relative;
  height: 550px;
  overflow: hidden;
}

.problem-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.problem-card:hover .problem-card-img img {
  transform: scale(1.05);
}

.problem-card-body {
  background: rgba(16, 42, 18, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, .2);
  padding: 24px 24px 28px;
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
}

.problem-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}

.problem-card .card-question {
  color: var(--gold-300);
  font-size: .98rem;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 10px;
}

.problem-card .card-detail {
  color: rgba(255, 255, 255, 1);
  font-size: .98rem;
  line-height: 1.7;
}

/* ===== WELLBEING TABLE ===== */
.s2b-wellbeing {
  background: var(--green-900);
  position: relative;
  overflow: hidden;
}

.s2b-wellbeing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.s2b-wellbeing .section-heading {
  color: var(--white);
}

.veg-table-wrap {
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(0, 1.6fr);
  gap: 48px;
  align-items: center;
}

.veg-table-wrap .section-heading {
  margin-bottom: 0;
}

.veg-table-scroll {
  overflow-x: auto;
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .3);
}

.veg-table {
  width: 100%;
  min-width: 520px;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  font-size: .85rem;
}

.veg-table thead th {
  background: #1b1b1b;
  color: var(--white);
  text-align: left;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .01em;
  padding: 13px 18px;
}

.veg-table thead th.veg-num-col {
  width: 56px;
}

.veg-table tbody tr {
  background: var(--t);
}

.veg-table td {
  padding: 6px 10px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.veg-table tbody tr:last-child td {
  border-bottom: none;
}

.veg-num {
  width: 56px;
  text-align: center;
  background: var(--c);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
}

.veg-cat {
  font-weight: 700;
  color: var(--c);
  white-space: nowrap;
}

.veg-why {
  font-weight: 700;
  color: var(--c);
}

@media (min-width: 769px) {
  .veg-table {
    font-size: .98rem;
  }

  .veg-table thead th {
    font-size: .98rem;
    padding: 15px 22px;
  }

  .veg-table td {
    padding: 15px 22px;
  }

  .veg-num {
    font-size: 1.18rem;
  }
}

@media (max-width: 768px) {
  .veg-table {
    min-width: 0;
    width: 100%;
    font-size: .8rem;
  }

  .veg-table-scroll {
    overflow-x: hidden;
  }

  .veg-table thead th {
    padding: 9px 8px;
    font-size: .78rem;
  }

  .veg-table thead th.veg-num-col,
  .veg-num {
    width: 30px;
  }

  .veg-table td {
    padding: 8px 8px;
  }

  .veg-cat {
    white-space: normal;
  }

  .veg-num {
    font-size: .8rem;
    padding-left: 4px;
    padding-right: 4px;
  }
}

/* ===== SECTION 3: WHY FARMARCO ===== */
.s3-why {
  background: var(--cream);
  position: relative;
}

.s3-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 40px;
}

.s3-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

.s3-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .06);
  pointer-events: none;
}

.s3-image img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  display: block;
}

.s3-pills {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

/* ===== FARM BANNER ===== */
.farm-banner {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.farm-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.farm-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 42, 18, .7) 0%, rgba(16, 42, 18, .3) 50%, rgba(16, 42, 18, .5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.farm-banner-overlay span {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.2rem, 2.5vw, 2.1rem);
  font-style: italic;
  color: var(--white);
  text-align: center;
  padding: 0 24px;
  letter-spacing: .02em;
}

/* ===== S5 IMAGE STRIP ===== */
.s5-image-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 56px;
  padding: 20px 0;
}

.s5-img {
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  width: 320px;
  height: 320px;
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition), box-shadow var(--transition);
}

.s5-img:nth-child(1) {
  z-index: 3;
  margin-right: -40px;
}

.s5-img:nth-child(2) {
  z-index: 2;
  transform: scale(1.08);
}

.s5-img:nth-child(3) {
  z-index: 1;
  margin-left: -40px;
}


.s5-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s3-pill {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  /*padding: 28px;*/
  /*background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);*/
  padding-left: 20px;
  border-left: 3px solid var(--green-200);
  transition: all var(--transition);
}

.s3-pill:hover {
  /*border-color: var(--green-300);
  box-shadow: var(--shadow-md);*/
  transform: translateY(-2px);
}

.s3-pill-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  overflow: hidden;
}

.s3-pill-icon.has-img {
  background: none;
}

.s3-pill-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.s3-pill h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.s3-pill p {
  font-size: .98rem;
  color: var(--gray-600);
}

.farmer-link-band {
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0;
}

.farmer-link-band span {
  font-size: .98rem;
  color: var(--gray-700);
}

.farmer-link-band a {
  font-weight: 600;
  color: var(--green-700);
  text-decoration: underline;
  transition: color var(--transition);
}

.farmer-link-band a:hover {
  color: var(--green-800);
}

.s3-credibility {
  text-align: center;
  padding: 24px;
  font-size: 1.1rem;
  color: var(--gray-600);
  border-top: 1px solid var(--gray-200);
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

/* ===== SECTION 4: THE FARMARCO DIFFERENCE ===== */
.s4-safety {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.s4-safety::before {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(82, 183, 136, .04) 0%, transparent 70%);
  pointer-events: none;
}

.s4-safety ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.s4-safety ul li {
  position: relative;
  padding-left: 36px;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--gray-700);
}

.s4-safety ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  color: var(--white);
  background: var(--green-500);
  border-radius: 50%;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 0;
}

.process-card {
  /*text-align: center;*/
  padding: 32px 20px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
}

.process-card::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -12px;
  width: 20px;
  height: 2px;
  background: var(--green-300);
}

.process-card:last-child::after {
  display: none;
}

.process-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-300);
  box-shadow: var(--shadow-md);
}

.process-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 16px;
  font-size: 1.3rem;
  overflow: hidden;
}

.process-icon.has-img {
  background: none;
}

.process-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.process-card p {
  font-size: .98rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.s4-proof {
  display: grid;
  grid-template-columns: 65fr 35fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 48px;
}

.s4-proof-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}

.s4-proof-text p {
  font-size: 1.2rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
}

.s4-callout {
  background: var(--gold-100);
  border: 1px solid var(--gold-200);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  font-size: .98rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 32px;
}

.s4-dual-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== SECTION 5: TRUST ===== */
.s5-trust {
  background: #c9ed98;
  position: relative;
  overflow: hidden;
}

.s5-decor-svg {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 260px;
  height: auto;
  /* opacity: .12; */
  pointer-events: none;
  z-index: 0;
}

.s5-decor-svg svg {
  width: 100%;
  height: auto;
}

.s5-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}

.trust-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  text-align: left;
}

.trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-300);
}

.trust-badge-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .72rem;
  font-weight: 800;
  color: var(--green-700);
  letter-spacing: .03em;
}

.trust-badge-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-800);
  letter-spacing: .02em;
  margin-bottom: 2px;
}

.trust-badge-label {
  font-size: .98rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* Testimonial Swiper */
.testimonial-slider {
  position: relative;
  padding-bottom: 16px;
}

.testimonial-swiper {
  overflow: hidden;
  padding-bottom: 48px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  border: 1px solid var(--gray-200);
  position: relative;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  border-color: var(--gold-300);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  font-size: .9rem;
  color: var(--gold-400);
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 1.2rem;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 24px;
  flex: 1;
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .03em;
  flex-shrink: 0;
}

.testimonial-author cite {
  font-style: normal;
  font-size: .98rem;
  font-weight: 600;
  color: var(--dark);
  display: block;
}

.testimonial-author span {
  font-size: .88rem;
  color: var(--gray-500);
}

.swiper-pagination {
  bottom: 0 !important;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--gray-300);
  opacity: 1;
  transition: all var(--transition);
}

.swiper-pagination-bullet-active {
  background: var(--gold-500);
  width: 28px;
  border-radius: 6px;
}

.swiper-nav-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.swiper-btn-prev,
.swiper-btn-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray-700);
  transition: all var(--transition);
}

.swiper-btn-prev:hover,
.swiper-btn-next:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
}

.testimonial-note {
  text-align: center;
  margin-top: 28px;
  font-size: .98em;
  color: var(--gray-500);
  font-style: italic;
}


/* ===== SECTION 6: HOW IT WORKS ===== */
.s6-how {
  background: var(--white);
  position: relative;
}

.s6-supporting {
  font-size: 1.2rem;
  color: var(--gray-600);
  margin-bottom: 56px;
  max-width: 500px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.step {
  position: relative;
  padding: 32px 24px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.step:hover {
  transform: translateY(-4px);
  border-color: var(--whatsapp);
  box-shadow: 0 8px 30px rgba(37, 211, 102, .1);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.step h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step p {
  font-size: .98rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.step-connector {
  position: absolute;
  top: 50px;
  right: -14px;
  width: 24px;
  height: 2px;
  background: var(--green-300);
}

.step:last-child .step-connector {
  display: none;
}

.s6-insight {
  text-align: center;
  padding: 24px;
  font-size: .98rem;
  color: var(--gray-600);
  font-style: italic;
  font-family: 'Playfair Display', serif;
  margin-bottom: 8px;
}

.s6-service {
  text-align: center;
  font-size: .98rem;
  font-weight: 500;
  color: var(--gray-500);
  margin-bottom: 40px;
  padding: 10px 20px;
  background: var(--gray-100);
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.s6-cta-wrap {
  text-align: center;
}

/* ===== SECTION 7: FAQ ===== */
.s7-faq {
  background: #faf8f2;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto 40px;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--green-700);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--green-700);
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  background: var(--gold-500);
}

.faq-item.open .faq-icon svg {
  stroke: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: .98rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.faq-more {
  text-align: center;
}

/* ===== SECTION 8: FINAL CTA ===== */
.s8-cta {
  background:
    linear-gradient(135deg, rgba(16, 42, 18, .88), rgba(39, 104, 48, .85)),
    url('../images/s8-fields.jpg') center / cover no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.s8-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, .06) 0%, transparent 60%);
  pointer-events: none;
}

.s8-cta .section-heading {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}

.s8-sub {
  font-size: 1.2rem;
  color: var(--green-200);
  margin-bottom: 40px;
}

.s8-cta .btn-whatsapp {
  font-size: 1.05rem;
  padding: 18px 40px;
  margin-bottom: 28px;
}

.s8-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.s8-trust span {
  font-size: .98rem;
  color: var(--green-300);
  display: flex;
  align-items: center;
  gap: 6px;
}

.s8-trust span::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-400);
}

/* Pill/badge variant — single availability note (products page) */
.s8-trust--note span {
  gap: 8px;
  padding: 11px 24px;
  border-radius: 60px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--green-200);
  font-weight: 500;
  line-height: 1.5;
  backdrop-filter: blur(2px);
}

.s8-trust--note span::before {
  display: none;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--green-900);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 14px;
  /* filter: brightness(0) invert(1); */
}

.footer-brand p {
  font-size: .98rem;
  color: var(--green-300);
  line-height: 1.7;
  max-width: 280px;
}

.footer h5 {
  color: var(--white);
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: .98rem;
  color: var(--green-300);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: .98rem;
  color: var(--green-400);
}

.footer-incubated {
  font-size: .98rem;
  color: var(--green-400);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== FLOATING WHATSAPP ===== */
.floating-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, .4);
  z-index: 900;
  transition: all var(--transition);
  cursor: pointer;
}

.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, .5);
}

.floating-wa svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.floating-wa::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  opacity: 0;
  animation: wa-pulse 2s ease infinite;
}

@keyframes wa-pulse {
  0% {
    opacity: .6;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

/* ===== SECTION DECORATIONS ===== */
.decor {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--green-300);
}

.decor svg {
  width: 100%;
  height: 100%;
}

.decor-leaf-tr {
  top: 30px;
  right: 20px;
  width: 180px;
  height: 180px;
  opacity: .08;
}

.decor-leaf-tr.decor-flip {
  transform: scaleX(-1);
}

.decor-wheat-bl {
  bottom: 16px;
  left: 24px;
  width: 90px;
  height: 180px;
  color: var(--gold-500);
  opacity: .1;
}

.decor-wheat-br {
  bottom: 16px;
  right: 24px;
  width: 90px;
  height: 180px;
  color: var(--gold-500);
  opacity: .1;
}

.decor-sun-tl {
  top: 30px;
  left: 20px;
  width: 160px;
  height: 160px;
  color: var(--gold-500);
  opacity: .07;
}

.decor-sun-tr {
  top: 30px;
  right: 20px;
  width: 150px;
  height: 150px;
  color: var(--gold-500);
  opacity: .07;
}

.decor-sprout-br {
  bottom: 20px;
  right: 24px;
  width: 120px;
  height: 150px;
  color: var(--green-600);
  opacity: .08;
}

.decor-sprout-bl {
  bottom: 20px;
  left: 24px;
  width: 120px;
  height: 150px;
  color: var(--green-600);
  opacity: .08;
}

.s3-why,
.s4-safety,
.s5-trust,
.s6-how,
.s7-faq {
  position: relative;
}


/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-800);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
  z-index: 900;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, .1);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-500);
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(184, 146, 42, .3);
}

.back-to-top svg {
  transition: transform var(--transition);
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

.deskno {
  display: none;
}

/* ===== GRAIN OVERLAY ===== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* ===== RESPONSIVE ===== */
/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-bottom: 80px;
  }

  .nav-manage {
    height: 45px;
  }

  .hero-phone-col {
    order: 2;
  }

  .hero-text-col {
    order: 1;
    text-align: center;
  }

  .hero-sub,
  .hero-checks,
  .hero-ctas {
    max-width: 100%;
  }

  .hero-checks {
    /*align-items: center;*/
    text-align: left;
    margin-top: -1.5rem;
  }

  .hero-check {
    font-size: 1rem;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-phone-col::after {
    width: 360px;
    height: 360px;
  }

  .credibility-strip {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .s3-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .s3-image img {
    height: 320px;
  }

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

  .problem-cards {
    grid-template-columns: 1fr 1fr;
  }

  .process-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-card::after {
    display: none;
  }

  .s4-proof {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .s4-proof-phone {
    order: -1;
    display: flex;
    justify-content: center;
  }

  .s5-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .farm-banner {
    height: 260px;
  }

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

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  /* Nav: hide links, show hamburger */
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-cta {
    display: none;
  }

  .nav-manage {
    margin-left: 12px;
  }

  .nav-inner {
    min-height: 60px;
    padding-right: 5px;
    padding-left: 5px;
  }

  .nav-logo img {
    height: 44px;
  }

  /* Hero */
  .hero {
    padding-top: 60px;
  }

  .hero-grid {
    padding: 40px 0 80px;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }

  .hero-eyebrow {
    font-size: .7rem;
    letter-spacing: 0;
  }

  .hero-sub {
    font-size: 1rem;
  }

  /* S2 Problem */
  .problem-cards {
    grid-template-columns: 1fr;
  }

  .problem-card-img {
    height: 280px;
  }

  .s2-shield {
    width: 250px;
    right: -40px;
  }

  /* S3 Why */
  .s3-pills {
    grid-template-columns: 1fr;
  }

  .s3-image img {
    height: 240px;
  }

  .farmer-link-band {
    flex-direction: column;
    text-align: center;
  }

  /* S4 Safety */
  .process-cards {
    grid-template-columns: 1fr 1fr;
  }

  .s4-dual-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .s4-dual-cta .btn {
    justify-content: center;
  }

  .s4-callout {
    font-size: .85rem;
  }

  /* S5 Trust */
  .s5-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }

  .s5-img {
    width: 160px;
    height: 160px;
  }

  .s5-img:nth-child(1) {
    margin-right: -20px;
  }

  .s5-img:nth-child(2) {
    transform: scale(1.05);
  }

  .s5-img:nth-child(3) {
    margin-left: -20px;
  }

  .s5-decor-svg {
    width: 180px;
  }

  .swiper-nav-btns {
    gap: 8px;
  }

  .swiper-btn-prev,
  .swiper-btn-next {
    width: 38px;
    height: 38px;
  }

  /* S6 How */
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .step-connector {
    display: none;
  }

  /* S7 FAQ */
  .faq-question {
    font-size: .95rem;
  }

  /* S8 CTA */
  .s8-trust {
    flex-direction: column;
    gap: 8px;
  }

  /* Farm banner */
  .farm-banner {
    height: 180px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Decorations */
  .decor {
    transform: scale(.6);
  }

  .decor-leaf-tr {
    transform-origin: top right;
  }

  .decor-wheat-bl,
  .decor-sprout-bl {
    transform-origin: bottom left;
  }

  .decor-wheat-br,
  .decor-sprout-br {
    transform-origin: bottom right;
  }

  .decor-sun-tl {
    transform-origin: top left;
  }

  .decor-sun-tr {
    transform-origin: top right;
  }
}

/* ===== RESPONSIVE: SMALL MOBILE ===== */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
.st-compare-quote{margin-top: 20px !important;}
  .inner-main {
    padding-top: 60px;
  }
.s8-cta .btn-whatsapp, .btn-whatsapp {
  font-size: 0.75rem;
}
  .section {
    padding: 52px 0;
    overflow: hidden;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: 60px;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-grid {
    padding: 32px 0 60px;
    gap: 0;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    justify-content: center;
  }

  .mobhide {
    display: none;
  }

  .deskno {
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 0;
  }

  .credibility-strip {
    background: rgba(16, 42, 18, 0.7);
  }

  .hero-phone-col {
    flex-direction: column;
    gap: 20px;
  }

  .hero-ctas {
    margin-bottom: 0;
  }

  .phone-mockup {
    width: 280px;
  }

  .hero-phone-col::after {
    width: 260px;
    height: 260px;
  }

  .phone-float-badge,
  .phone-float-badge-2 {
    display: none;
  }

  /* S2 */
  .problem-card-img {
    height: 540px;
  }
.problem-grid{grid-template-columns: repeat(1,1fr);}
.problem-grid123{gap: 0}
.s2-bridge{margin-bottom: 0;}
  .s3-pill {
    background: var(--green-200);
    padding: 20px;
  }

  .s3-pill p {
    color: #000;
  }

  .problem-card-body {
    padding: 18px 18px 22px;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .veg-table-wrap {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .veg-table-title {
    margin-bottom: 0;
  }

  .section-heading, .problem-grid h2 {
    font-size: 1.6rem;
  }
  .problem-grid h2{font-size: 1.4rem !important; margin-top: 20px;}

  .passport-proofnote {
    margin-top: 12px;
    padding: 9px 12px;
    background: var(--green-50);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-700);
    line-height: 1.4;
    text-align: center;
  }

  .s4-dual-cta {
    margin-top: 30px;
  }

  .problem-card h3 {
    font-size: .95rem;
  }

  .s2-shield {
    width: 180px;
  }

  /* S3 */
  .s3-image img {
    height: 200px;
  }

  /* S4 */
  .process-cards {
    grid-template-columns: 1fr;
  }
  .s4-safety ul{
      align-items: flex-start;
      flex-direction: column;
  }

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

  /* S5 */
  .s5-img {
    width: 120px;
    height: 120px;
  }

  .s5-img:nth-child(1) {
    margin-right: -14px;
  }

  .s5-img:nth-child(3) {
    margin-left: -14px;
  }

  .s5-decor-svg {
    width: 120px;
    opacity: .08;
  }

  .testimonial-card {
    min-height: 240px;
    padding: 28px 20px 24px;
  }

  /* S8 */
  .s8-trust {
    gap: 6px;
  }

  /* Floating buttons */
  .floating-wa {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .floating-wa svg {
    width: 22px;
    height: 22px;
  }

  .back-to-top {
    bottom: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
  }

  /* Farm banner */
  .farm-banner {
    height: 140px;
  }

  /* Decorations */
  .decor {
    display: none;
  }

  /* Trust badges */
  .trust-badges {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .trust-badge {
    padding: 16px 10px;
  }
}

/* ============================================================
   SAFETY & TRACEABILITY PAGE
   ============================================================ */

.st-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 20px;
}

/* ----- S1 HERO (homepage hero look, static background image) ----- */
.st-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 92vh;
  padding: 0;
  overflow: hidden;
  background: #0a0a08 url('../images/hero-farm.jpg') center / cover no-repeat;
}

.st-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(10, 10, 8, 1) 0%, rgba(20, 30, 15, .4) 50%, rgba(50, 45, 10, .9) 100%);
}

.st-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 90px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 3;
}

.st-hero .container {
  position: relative;
  z-index: 2;
}

.st-hero .decor {
  z-index: 2;
}

.st-hero-grid {
  display: grid;
  grid-template-columns: 56fr 44fr;
  gap: 48px;
  align-items: center;
  padding: 50px 0 120px;
}

.st-hero-text h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.st-hero-text h1 em {
  color: var(--gold-400);
  font-style: italic;
}

.st-hero-sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, .68);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
}

.st-hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.st-hero .btn-ghost {
  color: rgba(255, 255, 255, .78);
}

.st-hero .btn-ghost:hover {
  color: var(--white);
}

.st-hero-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.st-hero-phone::after {
  content: '';
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .025);
  border: 1px solid rgba(255, 255, 255, .05);
  z-index: 0;
  pointer-events: none;
}

.st-hero-phone .phone-mockup {
  position: relative;
  z-index: 1;
}

.st-hero-phone .phone-caption {
  color: var(--gold-500);
}

/* Passport additions used in hero full view */
.passport-pack {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  margin-bottom: 10px;
}

.passport-pack-id {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--green-800);
}

.passport-pack-verified {
  font-size: .64rem;
  font-weight: 700;
  color: var(--green-600);
  white-space: nowrap;
}

.passport-farmer {
  font-size: .76rem;
  color: var(--gray-700);
  line-height: 1.4;
  padding: 0 4px 12px;
}

.passport-farmer strong {
  color: var(--dark);
}

.passport-farmer span {
  font-size: .68rem;
  color: var(--gray-500);
}

.passport-row-value a {
  color: var(--green-700);
  font-weight: 600;
}

/* ----- S2 PASSPORT INFO CARDS ----- */
.st-passport {
  background: var(--white);
  padding: 0 0 50px;
}

.st-passport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.st-info-card {
  background: var(--cream);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
}

.st-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-200);
}

.st-info-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.st-info-card h4 {
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.st-info-card p {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.st-passport-line {
  text-align: center;
  font-size: 1.3rem;
  color: var(--gray-700);
  max-width: 700px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.st-passport-line em {
  color: var(--green-700);
  font-style: italic;
}

/* ----- S3 FRESH VS SAFE COMPARISON ----- */
.st-compare {
  background: var(--green-50);
}

.st-compare-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.st-compare-copy p {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 18px;
}

.st-compare-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--green-800);
  border-left: 3px solid var(--gold-400);
  padding-left: 20px;
  margin-top: 28px;
}

.st-compare-table {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.st-compare-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.st-compare-th {
  padding: 16px 20px;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--white);
}

.st-compare-th.fresh {
  background: var(--gray-500);
}

.st-compare-th.safe {
  background: var(--green-700);
}

.st-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--gray-100);
}

.st-compare-row:last-child {
  border-bottom: none;
}

.st-compare-cell {
  padding: 8px 20px;
  font-size: .92rem;
  color: var(--gray-700);
  display: flex;
  align-items: center;
  gap: 8px;
}

.st-compare-cell:first-child {
  color: var(--gray-500);
  background: var(--gray-50, #f9fafb);
}

.st-compare-cell .x {
  color: #c0392b;
  font-weight: 700;
}

.st-compare-cell .check {
  color: var(--green-600);
  font-weight: 700;
}
.problem-grid h2{font-size: 26px;}

/* ----- S4 VERIFY (reuses .process-cards) ----- */
.st-verify {
  background: var(--white);
}

.st-verify .process-cards {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
  margin: 0 auto;
}

/* ----- S5 TRANSPARENT EVIDENCE ----- */
.st-evidence {
  background: var(--cream);
}

.st-spraylog {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  margin-bottom: 40px;
}

.st-spraylog-head {
  background: linear-gradient(135deg, var(--green-800), var(--green-700));
  padding: 20px 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
}

.st-spraylog-title {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
}

.st-spraylog-meta {
  color: var(--green-200);
  font-size: .85rem;
  font-weight: 500;
}

.st-table-scroll {
  overflow-x: auto;
}

.st-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

.st-table th {
  text-align: left;
  padding: 14px 20px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gray-500);
  background: var(--gray-100);
  border-bottom: 2px solid var(--gray-200);
}

.st-table td {
  padding: 14px 20px;
  font-size: .92rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  white-space: nowrap;
}

.st-table tbody tr:hover {
  background: var(--green-50);
}

.st-table-final {
  background: var(--green-50);
}

.st-table-final td strong {
  color: var(--green-700);
  font-weight: 700;
}

.st-dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 2px;
}

.st-dot.blue {
  background: #2f80ed;
}

.st-dot.green {
  background: var(--green-500);
}

.st-evidence-btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.st-evidence-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  overflow: hidden;
  transition: all var(--transition);
}

/* hover accent bar across the top */
.st-evidence-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--green-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.st-evidence-btn:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-300);
}

.st-evidence-btn:hover::before {
  transform: scaleX(1);
}

.st-evidence-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.st-evidence-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  flex-shrink: 0;
  transition: background var(--transition);
}

.st-evidence-btn:hover .st-evidence-icon {
  background: var(--white);
}

.st-evidence-tags {
  display: flex;
  align-items: center;
  gap: 7px;
}

.st-evidence-tag {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--white);
  border: 1px solid var(--green-100);
  padding: 4px 10px;
  border-radius: 40px;
}

.st-evidence-text {
  flex: 1;
}

.st-evidence-text strong {
  display: block;
  font-size: 1.05rem;
  line-height: 1.35;
  color: var(--dark);
  margin-bottom: 8px;
}

.st-evidence-text span {
  font-size: .85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.st-evidence-foot {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--green-100);
}

.st-evidence-cta {
  font-weight: 700;
  color: var(--green-700);
  font-size: .9rem;
  white-space: nowrap;
}

.st-evidence-arrow {
  color: var(--green-700);
  font-weight: 700;
  transition: transform var(--transition);
}

.st-evidence-btn:hover .st-evidence-arrow {
  transform: translateX(5px);
}

.st-nabl-badge {
  background: var(--gold-400);
  color: var(--green-900);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 40px;
  box-shadow: var(--shadow-sm);
}

/* ----- S6 UPSTREAM ANSWER ----- */
.st-upstream {
  background: var(--green-900);
}

.st-upstream-card {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.st-upstream-card .section-heading {
  color: var(--white);
}

.st-upstream-card .section-heading em {
  color: var(--green-300);
}

.st-upstream-line {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .82);
  line-height: 1.8;
  margin-bottom: 16px;
}

.st-upstream-card .btn-ghost {
  color: var(--green-300);
  margin-top: 12px;
}

.st-upstream-card .btn-ghost:hover {
  color: var(--green-200);
}

/* ----- RESPONSIVE ----- */
@media (max-width: 900px) {
  .st-hero {
    min-height: 0;
  }

  .st-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 70px 0 90px;
  }

  .st-hero-text {
    text-align: center;
  }

  .st-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .st-hero-ctas {
    align-items: center;
  }

  .st-hero-phone::after {
    width: 340px;
    height: 340px;
  }

  .st-passport-grid {
    grid-template-columns: 1fr 1fr;
  }

  .st-compare-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .st-evidence-btns {
    grid-template-columns: 1fr;
  }

  .st-verify .process-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .st-passport-grid {
    grid-template-columns: 1fr;
  }

  .st-passport-line {
    font-size: 1.1rem;
  }

  /* keep the 2-col comparison but tighten it so text isn't cramped */
  .st-compare-th {
    padding: 12px 12px;
    font-size: .8rem;
  }

  .st-compare-cell {
    padding: 12px 12px;
    font-size: .82rem;
    gap: 6px;
    align-items: flex-start;
  }

  /* hero typography + orbit ring sized for phones */
  .st-hero-sub {
    font-size: 1rem;
  }

  .st-hero-phone::after {
    width: 260px;
    height: 260px;
  }

  .st-upstream-line {
    font-size: 1rem;
  }

  .st-compare-head,
  .st-compare-row {
    display: grid;
    grid-template-columns: 40fr 60fr;
  }

  .st-compare-th.fresh {
    background: #804A02;
  }

  .st-compare-table {
    background: #afefb6;
  }

  .st-compare-cell {
    color: #000;
  }

  .st-compare-cell:first-child {
    background: #fff4d4;
    color: #000;
  }

  .st-compare-row {
    border-bottom: 1px solid #E2E2E2;
  }
}

/* ============================================================
   OUR FARMERS PAGE
   ============================================================ */

/* ----- S1 HERO (photo background, centered) ----- */
.of-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 82vh;
  padding: 0;
  overflow: hidden;
  background: #0a0a08 url('../images/banner-farm.jpg') center / cover no-repeat;
}

.of-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(165deg, rgba(10, 10, 8, .92) 0%, rgba(16, 42, 18, .55) 45%, rgba(10, 20, 10, .9) 100%);
}

.of-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 90px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 3;
}

.of-hero .container {
  position: relative;
  z-index: 2;
}

.of-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 110px 0 120px;
}

.of-hero-inner h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.of-hero-inner h1 em {
  color: var(--gold-400);
  font-style: italic;
}

.of-hero-sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 36px;
}

.of-hero-ctas {
  display: flex;
  justify-content: center;
}

/* ----- S2 HOW PARTNER FARMS GROW ----- */
.of-grow {
  background: var(--white);
  padding-top: 0;
}

.of-grow-cards {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
  margin: 0 auto 64px;
}

.of-grow-cards .process-card h4 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.of-tag {
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--gold-600);
  background: var(--gold-100);
  border-radius: 40px;
  padding: 3px 9px;
}

.of-partnership {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.of-partnership h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--green-800);
  margin-bottom: 12px;
}

.of-partnership p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.of-pillars {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 48px;
}

/* ----- S3 FARMER CARDS ----- */
.of-farmers {
  background: var(--green-50);
}

.of-farmer-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 36px;
}

.of-farmer-card:last-child {
  margin-bottom: 0;
}

.of-farmer-photo {
  position: relative;
  min-height: 340px;
  background: var(--green-100);
}

.of-farmer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.of-photo-empty {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--green-400);
  background:
    repeating-linear-gradient(45deg, var(--green-50), var(--green-50) 12px, var(--white) 12px, var(--white) 24px);
}

.of-photo-empty span {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.of-farmer-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--gold-400);
  color: var(--green-900);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 40px;
  box-shadow: var(--shadow-sm);
}

.of-farmer-tag.muted {
  background: var(--gray-300);
  color: var(--gray-700);
}

.of-farmer-body {
  padding: 36px 40px;
}

.of-farmer-id {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--gray-200);
}

.of-farmer-id h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 5vw, 1.9rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}

.of-farmer-gen {
  font-size: .8rem;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: .08em;
  color: var(--gold-600);
  margin-bottom: 10px;
}

.of-farmer-farm {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-700);
}

.of-farmer-loc {
  font-size: .92rem;
  color: var(--gray-600);
}

.of-farmer-cols {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 32px;
}

.of-farmer-block h5 {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-500);
  margin-bottom: 14px;
}

.of-fact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.of-fact-list li {
  font-size: .95rem;
  color: var(--gray-700);
  line-height: 1.5;
}

.of-fact-list a {
  color: var(--green-700);
  font-weight: 600;
}

.of-farmer-placeholder {
  border-style: dashed;
  border-color: var(--green-200);
  box-shadow: none;
  background: var(--cream);
}

.of-farmer-placeholder .of-farmer-id h3,
.of-farmer-placeholder .of-farmer-loc,
.of-farmer-placeholder .of-fact-list li {
  color: var(--gray-400);
}

.of-farmer-placeholder .of-farmer-farm {
  color: var(--green-400);
}

/* ----- S4 FINAL CTA trust loop ----- */
.of-trust-loop {
  margin-top: 36px;
  font-size: 1rem;
  color: var(--green-200);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.of-trust-link {
  color: var(--gold-300) !important;
  margin-top: 8px;
}

.of-trust-link:hover {
  color: var(--gold-200) !important;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 900px) {
  .of-hero {
    min-height: 0;
  }

  .of-hero-inner {
    padding: 80px 0 90px;
  }

  .of-grow-cards,
  .of-pillars {
    grid-template-columns: 1fr;
  }

  .of-farmer-card {
    grid-template-columns: 1fr;
  }

  .of-farmer-photo {
    min-height: 280px;
  }

  .of-farmer-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .of-farmer-body {
    padding: 28px 24px;
  }
  #how-partner-farms-grow{
      background: #c9ed98 !important;
  }
}

/* ============================================================
   FAQ PAGE
   ============================================================ */

/* ----- HERO (compact dark) ----- */
.faq-hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
  background: #0a0a08 url('../images/field-2048x739.jpg') center / cover no-repeat;
}

.faq-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(10, 10, 8, .94) 0%, rgba(16, 42, 18, .6) 50%, rgba(10, 20, 10, .92) 100%);
}

.faq-hero .container {
  position: relative;
  z-index: 2;
}

.faq-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 100px 0 90px;
}

.faq-hero-inner h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 20px;
}

.faq-hero-inner h1 em {
  color: var(--gold-400);
  font-style: italic;
}

.faq-hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

/* ----- CATEGORY NAV (sticky chips) ----- */
.faq-nav {
  position: sticky;
  top: 72px;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.faq-nav-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 14px 0;
}

.faq-nav-inner a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 40px;
  padding: 8px 18px;
  white-space: nowrap;
  transition: all var(--transition);
}

.faq-nav-inner a:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
  transform: translateY(-2px);
}

/* ----- FAQ CATEGORIES ----- */
.faq-page {
  background: #faf8f2;
}

.faq-category {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
  max-width: 1160px;
  margin: 0 auto 72px;
  scroll-margin-top: 150px;
}

.faq-category:last-child {
  margin-bottom: 0;
}

/* alternate the image side every other category */
.faq-category:nth-child(even) .faq-cat-media {
  order: 2;
}

/* full-bleed light-green band for alternating (Delivery & Traceability) sections */
.faq-category:nth-child(even) {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 72px max(24px, calc(50vw - 580px));
  background: var(--green-50);
  border-top: 1px solid var(--green-100);
  border-bottom: 1px solid var(--green-100);
  border-radius: 0;
}

.faq-cat-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 380px;
  box-shadow: var(--shadow-md);
}

.faq-cat-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-cat-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 42, 18, 0) 55%, rgba(16, 42, 18, .35) 100%);
}

.faq-cat-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-category-head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  margin-bottom: 8px;
  border-bottom: 2px solid var(--green-100);
}

.faq-category-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.faq-category-label {
  display: block;
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold-600);
  margin-bottom: 2px;
}

.faq-category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
}

.faq-page .faq-list {
  max-width: none;
  margin: 0;
}

.faq-answer-inner a {
  color: var(--green-700);
  font-weight: 600;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 768px) {
  .faq-nav {
    top: 64px;
  }

  .faq-nav-inner {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .faq-nav-inner::-webkit-scrollbar {
    display: none;
  }

  .faq-hero-inner {
    padding: 80px 0 70px;
  }

  .faq-question {
    font-size: 1.05rem;
  }

  .faq-category {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-category:nth-child(even) {
    padding: 40px 24px;
  }

  .faq-category:nth-child(even) .faq-cat-media {
    order: 0;
  }

  .faq-cat-media {
    min-height: 220px;
  }
}

/* ============================================================
   ABOUT US PAGE
   ============================================================ */

/* reusable solid-green button (non-WhatsApp primary CTA) */
.btn-green {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(39, 104, 48, .25);
}

.btn-green:hover {
  background: var(--green-800);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(39, 104, 48, .35);
}

.btn-green .arrow {
  transition: transform var(--transition);
}

.btn-green:hover .arrow {
  transform: translateX(4px);
}

/* ----- HERO (compact dark) ----- */
.au-hero {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
  background: #0a0a08 url('../images/banner-farm.jpg') center / cover no-repeat;
  padding-bottom: 90px;
}

.au-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(10, 10, 8, .92) 0%, rgba(16, 42, 18, .55) 50%, rgba(10, 20, 10, .9) 100%);
}

.au-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 90px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 3;
}

.au-hero .container {
  position: relative;
  z-index: 2;
}

.au-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 100px 0 90px;
}

.au-hero-inner h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin: 0;
}

.au-hero-inner h1 em {
  color: var(--gold-400);
  font-style: italic;
}

/* ----- FOUNDER STORY ----- */
.au-story {
  background: var(--white);
}

.au-story-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 56px;
}

.au-photo {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  min-height: 480px;
}

.au-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.au-photo-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 48px 28px 24px;
  background: linear-gradient(180deg, transparent, rgba(10, 20, 10, .85));
}

.au-photo-caption strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
}

.au-photo-caption span {
  font-size: .9rem;
  color: var(--gold-300);
  font-weight: 500;
}

.au-story-content .section-eyebrow {
  color: var(--gold-500);
}

.au-body {
  margin-bottom: 28px;
}

.au-body p {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.85;
  margin-bottom: 16px;
}

.au-body p:last-child {
  margin-bottom: 0;
}

.au-brand-line {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: var(--green-700);
  font-style: italic;
  padding-left: 20px;
  border-left: 3px solid var(--gold-400);
  margin-bottom: 32px;
}

.au-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ----- CREDENTIAL STRIP ----- */
.au-credentials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 28px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-lg);
}

.au-cred {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 4px;
}

.au-cred-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.au-cred-text {
  font-size: .95rem;
  font-weight: 600;
  color: var(--green-800);
}

.au-cred:not(:last-child) {
  border-right: 1px solid var(--green-200);
  padding-right: 20px;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 900px) {
  .au-story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .au-photo {
    position: relative;
    top: 0;
    min-height: 360px;
  }

  .au-cred:not(:last-child) {
    border-right: none;
    padding-right: 4px;
  }
}

@media (max-width: 560px) {
  .au-hero-inner {
    padding: 80px 0 70px;
  }

  .au-credentials {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ----- VISITOR JOURNEY — numbered timeline ----- */
.au-journey {
  background: var(--green-900);
  display: none;
}

.au-journey .section-eyebrow {
  color: var(--green-400);
}

.au-journey .section-heading {
  color: var(--white);
}

.au-journey .section-heading em {
  color: var(--gold-400);
}

.au-journey .section-subheading {
  color: rgba(255, 255, 255, .6);
}

.au-journey-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

/* connecting line running through the number nodes */
.au-journey-track::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .25) 0 8px, transparent 8px 16px);
}

.au-journey-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.au-step-node {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--green-900);
}

.au-step-card {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 26px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .1);
  border-top: 3px solid;
  text-align: left;
  transition: all var(--transition);
}

.au-journey-step:hover .au-step-card {
  background: rgba(255, 255, 255, .07);
  transform: translateY(-4px);
}

.au-journey-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.au-step-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}

.au-step-card p {
  font-size: .95rem;
  color: rgba(255, 255, 255, .62);
  line-height: 1.6;
  flex: 1;
}

.au-journey-job {
  margin-top: 10px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--green-900);
  padding: 7px 16px;
  border-radius: 40px;
}

.au-journey-job::before {
  content: 'Job: ';
  opacity: .65;
}

/* per-stage accent colours */
.jc-blue .au-step-node {
  background: #2f6fb0;
}

.jc-blue .au-step-card {
  border-top-color: #4d8fd6;
}

.jc-blue .au-journey-label {
  color: #7fb2e6;
}

.jc-blue .au-journey-job {
  background: #7fb2e6;
}

.jc-green .au-step-node {
  background: var(--green-600);
}

.jc-green .au-step-card {
  border-top-color: var(--green-400);
}

.jc-green .au-journey-label {
  color: var(--green-300);
}

.jc-green .au-journey-job {
  background: var(--green-300);
}

.jc-teal .au-step-node {
  background: #1f8f7a;
}

.jc-teal .au-step-card {
  border-top-color: #46c2ab;
}

.jc-teal .au-journey-label {
  color: #6fd3c0;
}

.jc-teal .au-journey-job {
  background: #6fd3c0;
}

@media (max-width: 900px) {
  .au-journey-track {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 440px;
    margin: 0 auto;
  }

  .au-journey-track::before {
    display: none;
  }

  .au-journey-step {
    flex-direction: row;
    align-items: stretch;
    gap: 16px;
  }

  .au-step-node {
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */

/* ----- HERO ----- */
.pr-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 78vh;
  padding: 0;
  overflow: hidden;
  background: #0a0a08 url('../images/field-2048x739.jpg') center / cover no-repeat;
}

.pr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(160deg, rgba(10, 10, 8, .9) 0%, rgba(16, 42, 18, .5) 50%, rgba(10, 20, 10, .9) 100%);
}

.pr-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 90px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 3;
}

.pr-hero .container {
  position: relative;
  z-index: 2;
}

.pr-hero-inner {
  max-width: 760px;
  text-align: center;
  margin: 0 auto;
  padding: 100px 0 180px;
}

.pr-hero-inner h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 22px;
}

.pr-hero-inner h1 em {
  color: var(--gold-400);
  font-style: italic;
}

.pr-hero-sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto 34px;
}

.pr-hero-ctas {
  display: flex;
  justify-content: center;
}

/* ----- HOW AVAILABILITY WORKS ----- */
.pr-intro {
  background: var(--cream);
}

.pr-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}

.pr-intro-copy p {
  font-size: 1.08rem;
  color: var(--gray-700);
  line-height: 1.85;
  margin-bottom: 18px;
}

.pr-intro-copy p:last-child {
  margin-bottom: 0;
}

.pr-callout {
  position: relative;
  background: var(--green-50);
  border-left: 4px solid var(--gold-400);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 32px 32px 32px 36px;
}

.pr-callout-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  line-height: .6;
  color: var(--green-300);
  position: absolute;
  top: 22px;
  left: 18px;
}

.pr-callout p {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--green-800);
  padding-left: 30px;
}

/* ----- SEASONAL CATEGORIES ----- */
.pr-cats {
  background: var(--white);
}

.pr-cat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  margin-bottom: 36px;
}

/* first 4 cards: 2 per row (half width) · last 3 cards: 3 per row */
.pr-cat-card:nth-child(-n+4) {
  grid-column: span 3;
}

.pr-cat-card:nth-child(n+5) {
  grid-column: span 2;
}

.pr-cat-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  isolation: isolate;
}

.pr-cat-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .7s cubic-bezier(.16, 1, .3, 1);
}

.pr-cat-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10, 20, 10, .05) 0%, rgba(10, 20, 10, .35) 42%, rgba(10, 20, 10, .9) 100%);
}

.pr-cat-card:hover .pr-cat-img {
  transform: scale(1.06);
}

.pr-cat-emoji {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.pr-cat-content {
  position: relative;
  z-index: 2;
  padding: 26px 24px 24px;
}

.pr-cat-tag {
  display: inline-block;
  font-size: .66rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--green-900);
  background: var(--gold-300);
  border-radius: 40px;
  padding: 4px 12px;
  margin-bottom: 10px;
}

.pr-cat-content h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.pr-cat-content p {
  font-size: .95rem;
  color: rgba(255, 255, 255, .82);
  line-height: 1.55;
}

.pr-cat-note {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--gray-500);
  font-style: italic;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 900px) {
  .pr-hero {
    min-height: 0;
  }

  .pr-hero-inner {
    padding: 80px 0 90px;
  }

  .pr-intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pr-cat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pr-cat-card:nth-child(-n+4),
  .pr-cat-card:nth-child(n+5) {
    grid-column: span 1;
  }
}

@media (max-width: 560px) {
  .pr-cat-grid {
    grid-template-columns: 1fr;
  }

  .pr-hero-inner {
    padding: 56px 0 56px;
  }

  .pr-hero::after {
    height: 48px;
  }

  .pr-hero-sub {
    font-size: 1.05rem;
  }
}