:root {
  --bg: #f3f0e7;
  --bg-strong: #ebe6da;
  --paper: rgba(255, 255, 252, 0.92);
  --paper-strong: #fffdf8;
  --paper-soft: #f7f3ea;
  --paper-dark: #1f3524;
  --paper-dark-soft: #29452f;
  --line: rgba(33, 52, 34, 0.12);
  --line-strong: rgba(33, 52, 34, 0.2);
  --ink: #1d281d;
  --muted: #5c675b;
  --green: #2d4d33;
  --green-deep: #1f3524;
  --green-soft: #557159;
  --olive: #82926f;
  --sand: #b9925f;
  --sand-soft: #e8d4b1;
  --white: #fffdf8;
  --shadow: 0 18px 46px rgba(32, 49, 32, 0.09);
  --shadow-strong: 0 28px 64px rgba(26, 42, 27, 0.16);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --wrap: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  background:
    radial-gradient(circle at top left, rgba(185, 146, 95, 0.12), transparent 24rem),
    radial-gradient(circle at 90% 8%, rgba(130, 146, 111, 0.12), transparent 28rem),
    linear-gradient(180deg, #f7f3ea 0%, #f1ede2 55%, #f4f0e7 100%);
}

body.page-farmers {
  background:
    radial-gradient(circle at 8% 4%, rgba(130, 146, 111, 0.13), transparent 24rem),
    radial-gradient(circle at 92% 8%, rgba(185, 146, 95, 0.11), transparent 24rem),
    linear-gradient(180deg, #f8f4eb 0%, #f1ede3 52%, #f5f1e7 100%);
}

body.page-supplies {
  background:
    radial-gradient(circle at 10% 6%, rgba(84, 112, 87, 0.12), transparent 22rem),
    radial-gradient(circle at 90% 8%, rgba(185, 146, 95, 0.12), transparent 22rem),
    linear-gradient(180deg, #f6f1e8 0%, #efe9dd 52%, #f3eee4 100%);
}

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

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

button {
  font: inherit;
}

h1,
h2,
h3,
h4,
.brand-copy strong {
  margin: 0;
  font-family: "Fraunces", serif;
  font-variation-settings: "SOFT" 20, "WONK" 0;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.wrap {
  width: min(calc(100% - 32px), var(--wrap));
  margin: 0 auto;
}

.page-section {
  padding: 72px 0;
}

.page-section.soft {
  padding-top: 30px;
}

.top-strip {
  padding: 12px 0;
  background: var(--green-deep);
  color: rgba(255, 252, 245, 0.92);
  text-align: center;
  font-size: 0.94rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 244, 235, 0.9);
  border-bottom: 1px solid rgba(33, 52, 34, 0.08);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 56px;
  height: 56px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(251, 244, 226, 0.92), rgba(209, 223, 190, 0.78)),
    linear-gradient(135deg, #34583a, #1f3524);
  box-shadow: var(--shadow);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: rgba(255, 248, 234, 0.94);
  border-radius: 999px;
}

.brand-mark::before {
  width: 12px;
  height: 28px;
  left: 15px;
  top: 11px;
  transform: rotate(-14deg);
}

.brand-mark::after {
  width: 12px;
  height: 22px;
  right: 15px;
  top: 17px;
  transform: rotate(15deg);
}

.brand-copy strong {
  display: block;
  font-size: 1.1rem;
}

.brand-copy span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--green);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--green);
  font-size: 0.93rem;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(45, 77, 51, 0.08);
  outline: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.button:hover,
.button:focus-visible,
.listing-card:hover,
.feature-card:hover,
.info-card:hover,
.step-card:hover,
.reason-card:hover,
.trade-card:hover {
  transform: translateY(-3px);
  outline: none;
}

.button.primary {
  background: linear-gradient(135deg, #34573a, #223825);
  color: #fff9f0;
  box-shadow: 0 16px 30px rgba(34, 56, 37, 0.18);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(33, 52, 34, 0.14);
  color: var(--green);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff9f0;
}

.eyebrow,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(45, 77, 51, 0.08);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sand), #f0cca1);
  box-shadow: 0 0 0 4px rgba(185, 146, 95, 0.14);
}

.eyebrow.light,
.mini-label.light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff9f0;
}

.hero {
  padding: 44px 0 36px;
}

.hero-grid,
.split-grid,
.trade-grid,
.reason-grid,
.route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.hero-grid {
  align-items: stretch;
}

.hero-copy,
.hero-visual,
.panel,
.route-card,
.listing-card,
.feature-card,
.info-card,
.step-card,
.reason-card,
.trade-card,
.promo-panel,
.cta-panel,
.stat-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(24px, 2.8vw, 38px);
  background:
    radial-gradient(circle at top right, rgba(185, 146, 95, 0.15), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 252, 0.98), rgba(247, 242, 233, 0.96));
}

.hero-title {
  margin-top: 16px;
  max-width: 11ch;
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  text-wrap: balance;
}

.hero-lead {
  margin-top: 18px;
  max-width: 64ch;
  color: #344436;
  font-size: 1.03rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-metrics {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.stat-card {
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
  border-radius: 20px;
}

.stat-card strong {
  display: block;
  color: var(--green);
  font-size: 1.18rem;
}

.stat-card span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  padding: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(232, 211, 179, 0.82), transparent 14rem),
    linear-gradient(180deg, rgba(232, 239, 226, 0.9), rgba(247, 240, 229, 0.96));
}

.hero-photo-frame {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(33, 52, 34, 0.12);
  box-shadow: var(--shadow-strong);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(20, 32, 21, 0.8);
  color: #fff9f0;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.media-copy {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(20, 32, 21, 0.2), rgba(20, 32, 21, 0.72));
  color: #fff9f0;
}

.media-copy strong {
  display: block;
  font-size: 1.4rem;
}

.media-copy span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 249, 240, 0.88);
}

.hero-stack {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: grid;
  gap: 12px;
  width: min(80%, 340px);
}

.hero-stack-card {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 252, 0.92);
  border: 1px solid rgba(33, 52, 34, 0.12);
  box-shadow: 0 18px 34px rgba(37, 54, 37, 0.14);
}

.hero-stack-card strong {
  display: block;
  color: var(--green);
  font-size: 1.02rem;
  line-height: 1.18;
}

.hero-stack-card span:last-child {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
  max-width: 980px;
}

.section-head h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  text-wrap: balance;
}

.section-head p,
.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 74ch;
}

.route-card,
.panel,
.promo-panel,
.trade-card,
.reason-card {
  padding: 28px;
}

.route-card.green {
  background:
    radial-gradient(circle at top right, rgba(130, 146, 111, 0.18), transparent 18rem),
    linear-gradient(180deg, rgba(244, 249, 240, 0.98), rgba(234, 240, 228, 0.96));
}

.route-card.gold {
  background:
    radial-gradient(circle at top right, rgba(185, 146, 95, 0.16), transparent 18rem),
    linear-gradient(180deg, rgba(255, 251, 244, 0.98), rgba(246, 236, 220, 0.96));
}

.route-card p {
  margin: 14px 0 0;
  color: #415040;
}

.route-points {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.route-points span,
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.route-points span::before,
.bullet-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  margin-top: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sand), #efc98d);
}

.bullet-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.bullet-list li {
  color: var(--ink);
}

.bullet-list.light li {
  color: rgba(255, 249, 240, 0.9);
}

.bullet-list.light li::before {
  background: linear-gradient(135deg, #f0c98a, #ffe6be);
}

.feature-grid,
.info-grid,
.step-grid,
.listing-grid,
.category-showcase {
  display: grid;
  gap: 18px;
}

.feature-grid,
.info-grid.wide {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-grid.compact {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card {
  overflow: hidden;
}

.feature-card:not(.media-card) {
  padding: 24px;
}

.feature-card h3,
.info-card h3,
.step-card h3,
.reason-card h3,
.trade-card h3 {
  margin-top: 14px;
  font-size: 1.5rem;
}

.feature-card p,
.info-card p,
.step-card p,
.reason-card p,
.trade-card p,
.showcase-card p,
.listing-body p {
  margin-top: 12px;
  color: var(--muted);
}

.media-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.feature-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
}

.feature-card .button,
.feature-card-body .button {
  margin-top: auto;
}

.info-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-card {
  padding: 24px;
}

.icon-card {
  width: 56px;
  height: 56px;
  position: relative;
  border-radius: 18px;
  border: 1px solid rgba(33, 52, 34, 0.08);
  background:
    linear-gradient(160deg, rgba(252, 244, 225, 0.94), rgba(205, 223, 184, 0.8)),
    linear-gradient(135deg, #34583a, #223825);
}

.icon-card::before,
.icon-card::after {
  content: "";
  position: absolute;
  background: rgba(255, 248, 234, 0.94);
  border-radius: 999px;
}

.icon-card.leaf::before {
  width: 12px;
  height: 28px;
  left: 15px;
  top: 11px;
  transform: rotate(-14deg);
}

.icon-card.leaf::after {
  width: 12px;
  height: 22px;
  right: 14px;
  top: 17px;
  transform: rotate(15deg);
}

.icon-card.route::before {
  width: 28px;
  height: 28px;
  left: 12px;
  top: 12px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.icon-card.route::after {
  width: 8px;
  height: 8px;
  left: 22px;
  top: 22px;
  background: var(--green);
  border-radius: 50%;
}

.icon-card.city::before {
  width: 10px;
  height: 28px;
  left: 13px;
  top: 12px;
  box-shadow: 14px 6px 0 rgba(255, 248, 234, 0.94), 28px -2px 0 rgba(255, 248, 234, 0.94);
}

.icon-card.city::after {
  width: 6px;
  height: 6px;
  left: 16px;
  top: 18px;
  background: var(--green);
  border-radius: 1px;
  box-shadow:
    0 10px 0 var(--green),
    14px 6px 0 var(--green),
    14px 16px 0 var(--green),
    28px -2px 0 var(--green),
    28px 8px 0 var(--green);
}

.trade-card.dark,
.promo-panel.dark,
.cta-panel {
  color: #fff9f0;
  background:
    radial-gradient(circle at top right, rgba(240, 201, 138, 0.18), transparent 18rem),
    linear-gradient(135deg, var(--paper-dark-soft), var(--paper-dark));
}

.trade-card.dark p,
.promo-panel.dark p,
.promo-panel.dark .section-copy,
.cta-panel p {
  color: rgba(255, 249, 240, 0.86);
}

.step-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.step-card {
  padding: 22px;
}

.step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(45, 77, 51, 0.1);
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.trade-card.dark .step-index,
.promo-panel.dark .step-index,
.cta-panel .step-index {
  background: rgba(255, 255, 255, 0.12);
  color: #fff9f0;
}

.promo-media {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.promo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.listing-grid.trio {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.listing-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.listing-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: linear-gradient(135deg, #cdb38b, #7d5b38);
}

.listing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.listing-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(20, 32, 21, 0.8);
  color: #fff9f0;
  font-size: 0.79rem;
  font-weight: 800;
}

.listing-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 20px;
}

.listing-source {
  color: var(--olive);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.listing-body h3 {
  margin-top: 8px;
  font-size: 1.34rem;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
}

.price {
  color: var(--green);
  font-size: 1.54rem;
}

.price-note {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(45, 77, 51, 0.08);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

.meta-list {
  display: grid;
  gap: 7px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.87rem;
}

.listing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.filter-scope {
  display: grid;
  gap: 18px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(33, 52, 34, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--green);
  font-weight: 800;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  background: rgba(45, 77, 51, 0.1);
  border-color: rgba(33, 52, 34, 0.2);
  outline: none;
}

.is-hidden {
  display: none !important;
}

.category-showcase {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.banner-section {
  padding: 0 0 28px;
}

.banner-section-bottom {
  padding-bottom: 20px;
}

.promo-banner {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(33, 52, 34, 0.12);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.promo-banner:hover,
.promo-banner:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
  outline: none;
}

.promo-banner img {
  width: 100%;
  height: auto;
}

.showcase-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid rgba(33, 52, 34, 0.1);
  border-radius: var(--radius-xl);
  color: #fff9f0;
  background:
    linear-gradient(180deg, rgba(19, 30, 20, 0.18), rgba(19, 30, 20, 0.82)),
    var(--card-image, linear-gradient(135deg, #536b47, #253925)) center / cover no-repeat;
  box-shadow: var(--shadow);
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 220, 168, 0.18), transparent 12rem),
    linear-gradient(180deg, rgba(17, 24, 17, 0.06) 8%, rgba(17, 24, 17, 0.74) 100%);
}

.showcase-card-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
}

.showcase-card h3 {
  margin-top: 18px;
  max-width: 10ch;
  font-size: 1.72rem;
}

.showcase-card .button {
  margin-top: auto;
  width: fit-content;
}

.reason-grid {
  margin-top: 12px;
}

.reason-card .button {
  margin-top: 18px;
}

.cta-panel {
  padding: 34px;
  box-shadow: var(--shadow-strong);
}

.site-footer {
  padding: 16px 0 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(33, 52, 34, 0.1);
  color: var(--muted);
  font-size: 0.92rem;
}

.page-anchor {
  scroll-margin-top: 108px;
}

@media (max-width: 1120px) {
  .hero-grid,
  .split-grid,
  .trade-grid,
  .reason-grid,
  .route-grid {
    grid-template-columns: 1fr;
  }

  .hero-stack {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

  .hero-photo-frame {
    min-height: 440px;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: static;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    padding: 12px;
    border: 1px solid rgba(33, 52, 34, 0.12);
    border-radius: 22px;
    background: rgba(255, 252, 246, 0.96);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav.is-open {
    display: flex;
  }

  .page-section {
    padding: 60px 0;
  }

  .hero-copy,
  .hero-visual,
  .panel,
  .route-card,
  .promo-panel,
  .trade-card,
  .reason-card,
  .cta-panel {
    padding: 24px;
  }

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

@media (max-width: 560px) {
  .wrap {
    width: min(calc(100% - 20px), var(--wrap));
  }

  .hero {
    padding-top: 28px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .hero-actions,
  .listing-actions,
  .filter-bar {
    flex-direction: column;
  }

  .button,
  .filter-button {
    width: 100%;
  }

  .hero-photo-frame {
    min-height: 340px;
  }

  .media-copy strong {
    font-size: 1.18rem;
  }
}
