:root {
  --ink: #173e2b;
  --ink-2: #24503a;
  --paper: #fffaf0;
  --paper-2: #f5f0e4;
  --white: #ffffff;
  --accent: #e06d38;
  --accent-dark: #ba4e23;
  --gold: #f4c56a;
  --sage: #a8c59a;
  --sage-light: #dce8d1;
  --muted: #667269;
  --line: rgba(23, 62, 43, 0.14);
  --shadow: 0 24px 70px rgba(31, 68, 46, 0.13);
  --shadow-sm: 0 14px 40px rgba(31, 68, 46, 0.1);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max: 1180px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  transform: translateY(-180%);
  z-index: 9999;
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 10px;
}
.skip-link:focus { transform: none; }

.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.section { padding: 96px 0; }
.section-tight { padding: 68px 0; }
.section-dark { background: var(--ink); color: var(--paper); }
.section-sage { background: var(--sage-light); }
.section-white { background: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}
.section-dark .eyebrow { color: var(--gold); }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h1, h2 { font-family: Georgia, "Times New Roman", serif; }
h1 { font-size: clamp(3.2rem, 8vw, 6.5rem); font-weight: 600; }
h2 { font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.72rem); }
h4 { font-size: 1.05rem; }
p { margin: 0; }
.lead { font-size: clamp(1.08rem, 2vw, 1.28rem); color: var(--muted); max-width: 720px; }
.section-dark .lead { color: rgba(255,255,255,.76); }
.muted { color: var(--muted); }
.small { font-size: 0.88rem; }
.text-center { text-align: center; }
.text-center .lead { margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 240, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 62, 43, 0.08);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 226px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; font-weight: 700; font-size: .94rem; }
.nav-links a { position: relative; }
.nav-links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--accent);
  transition: right .2s ease;
}
.nav-links > a:not(.btn):hover::after,
.nav-links > a[aria-current="page"]::after { right: 0; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: white;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
  transition: .2s ease;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before,
.nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 800;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: 0 9px 24px rgba(23, 62, 43, .14);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(23, 62, 43, .19); }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.btn-accent { background: var(--accent); }
.btn-accent:hover { background: var(--accent-dark); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
.btn-outline-light { background: transparent; color: white; border: 1px solid rgba(255,255,255,.28); box-shadow: none; }
.btn-sm { min-height: 42px; padding: 0 16px; font-size: .88rem; }
.btn svg { width: 18px; height: 18px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.announcement {
  background: var(--ink);
  color: white;
  font-size: .86rem;
  font-weight: 700;
  text-align: center;
  padding: 9px 18px;
}
.announcement a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 86px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: rgba(244, 197, 106, .24);
  filter: blur(2px);
  top: -250px;
  left: -240px;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  align-items: center;
  gap: 54px;
}
.hero h1 span { color: var(--accent); }
.hero-copy .lead { margin-top: 25px; max-width: 620px; }
.hero-copy .button-row { margin-top: 32px; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 28px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}
.hero-proof span { display: inline-flex; align-items: center; gap: 7px; }
.hero-proof span::before { content: "✓"; color: var(--accent); font-weight: 900; }
.hero-art { position: relative; }
.hero-art::after {
  content: "Plainfield + Brownsburg pilot";
  position: absolute;
  right: 0;
  top: 8%;
  padding: 10px 15px;
  border-radius: 999px;
  background: white;
  box-shadow: var(--shadow-sm);
  font-size: .82rem;
  font-weight: 850;
  transform: rotate(3deg);
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.72);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.stat { padding: 28px; text-align: center; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat strong { display: block; font-size: 1.75rem; line-height: 1; color: var(--accent-dark); }
.stat span { display: block; margin-top: 7px; color: var(--muted); font-size: .9rem; font-weight: 700; }

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 46px;
}
.section-heading .lead { max-width: 560px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 10px 35px rgba(31, 68, 46, .06);
}
.card h3 { margin-top: 18px; }
.card p { margin-top: 12px; color: var(--muted); }
.icon-box {
  width: 54px;
  height: 54px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: var(--sage-light);
  color: var(--ink);
  font-size: 1.5rem;
}
.icon-box.accent { background: #f9dfcf; color: var(--accent-dark); }
.icon-box.gold { background: #faedc9; }
.step-card { position: relative; padding-top: 68px; }
.step-number {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  color: rgba(23,62,43,.11);
}

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.category-card {
  min-height: 178px;
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23,62,43,.1);
}
.category-card::after {
  content: attr(data-emoji);
  position: absolute;
  right: 13px;
  bottom: -18px;
  font-size: 5.3rem;
  transform: rotate(-8deg);
  opacity: .9;
}
.category-card:nth-child(1) { background: #e6efd9; }
.category-card:nth-child(2) { background: #fae9cc; }
.category-card:nth-child(3) { background: #f4ded5; }
.category-card:nth-child(4) { background: #e0ecea; }
.category-card span { font-size: .82rem; font-weight: 800; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.category-card strong { max-width: 150px; font-size: 1.25rem; line-height: 1.15; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 66px;
  align-items: center;
}
.split-copy .lead { margin-top: 20px; }
.split-copy .button-row { margin-top: 28px; }
.feature-list { display: grid; gap: 15px; margin-top: 27px; }
.feature-item { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; }
.feature-check {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: var(--sage-light);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.feature-item strong { display: block; }
.feature-item p { color: var(--muted); font-size: .94rem; margin-top: 3px; }

.farmer-panel {
  position: relative;
  border-radius: var(--radius-xl);
  background: #214d37;
  color: white;
  padding: 42px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.farmer-panel::before,
.farmer-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(244,197,106,.16);
}
.farmer-panel::before { width: 260px; height: 260px; right: -100px; top: -110px; }
.farmer-panel::after { width: 150px; height: 150px; left: -50px; bottom: -85px; }
.farmer-panel > * { position: relative; }
.farmer-panel h3 { font-size: 2rem; max-width: 430px; }
.farmer-panel p { margin-top: 14px; color: rgba(255,255,255,.76); }
.pilot-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  color: var(--gold);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.quote-card {
  border-radius: var(--radius-xl);
  background: var(--paper-2);
  padding: 46px;
  border: 1px solid var(--line);
}
.quote-card blockquote { margin: 0; font-family: Georgia, serif; font-size: clamp(1.5rem, 3vw, 2.3rem); line-height: 1.25; letter-spacing: -.02em; }
.quote-card footer { margin-top: 22px; color: var(--muted); font-weight: 750; }

.cta-band {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--accent);
  color: white;
  padding: 58px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.cta-band::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border: 70px solid rgba(255,255,255,.12);
  border-radius: 50%;
  right: -180px;
  top: -140px;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { max-width: 750px; }
.cta-band p { margin-top: 18px; color: rgba(255,255,255,.83); max-width: 650px; }
.cta-band .button-row { margin-top: 28px; }

.form-shell {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .86rem; font-weight: 820; }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(23,62,43,.18);
  background: #fffcf6;
  color: var(--ink);
  border-radius: 13px;
  padding: 13px 14px;
  outline: 0;
  transition: border .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(224,109,56,.13); }
.form-note { margin-top: 14px; color: var(--muted); font-size: .82rem; }
.honeypot { position: absolute; left: -9999px; }

.page-hero { padding: 84px 0 64px; }
.page-hero h1 { font-size: clamp(3rem, 7vw, 5.5rem); max-width: 920px; }
.page-hero .lead { margin-top: 22px; }
.page-hero .button-row { margin-top: 28px; }
.breadcrumb { display: flex; gap: 8px; color: var(--muted); font-size: .86rem; font-weight: 700; margin-bottom: 18px; }
.breadcrumb span { color: var(--accent-dark); }

.market-toolbar {
  position: sticky;
  top: 78px;
  z-index: 50;
  background: rgba(255,250,240,.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.toolbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-btn {
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  border-radius: 999px;
  padding: 9px 14px;
  font-weight: 800;
  font-size: .84rem;
}
.filter-btn.active { background: var(--ink); color: white; }
.cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 10px 15px;
  background: var(--accent);
  color: white;
  font-weight: 850;
}
.cart-count {
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: white;
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  font-size: .74rem;
}

.prototype-banner {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: #fff0c9;
  border: 1px solid #efd18b;
  color: #684f18;
  margin-bottom: 26px;
}
.prototype-banner strong { display: block; }
.prototype-banner p { font-size: .88rem; margin-top: 2px; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(31,68,46,.07);
  display: flex;
  flex-direction: column;
}
.product-visual {
  min-height: 205px;
  display: grid;
  place-items: center;
  font-size: 5rem;
  position: relative;
}
.product-card:nth-child(4n+1) .product-visual { background: #e8f0d9; }
.product-card:nth-child(4n+2) .product-visual { background: #fae5c7; }
.product-card:nth-child(4n+3) .product-visual { background: #f3d9d3; }
.product-card:nth-child(4n+4) .product-visual { background: #dcebea; }
.product-tag {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  font-size: .72rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.product-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.product-farm { color: var(--accent-dark); font-size: .8rem; font-weight: 850; text-transform: uppercase; letter-spacing: .07em; }
.product-body h3 { margin-top: 7px; }
.product-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; color: var(--muted); font-size: .82rem; font-weight: 700; }
.product-bottom { margin-top: auto; padding-top: 20px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.price { font-size: 1.3rem; font-weight: 900; }
.price small { font-size: .72rem; color: var(--muted); font-weight: 700; }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11,29,20,.45);
  opacity: 0;
  visibility: hidden;
  transition: .2s ease;
  z-index: 190;
}
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(440px, 92vw);
  background: var(--paper);
  z-index: 200;
  transform: translateX(102%);
  transition: transform .25s ease;
  box-shadow: -20px 0 60px rgba(11,29,20,.18);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.drawer-open .drawer-backdrop { opacity: 1; visibility: visible; }
.drawer-open .cart-drawer { transform: none; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.drawer-close { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: white; font-size: 1.2rem; }
.cart-items { display: grid; gap: 12px; overflow: auto; padding: 20px 0; }
.cart-item { display: grid; grid-template-columns: 50px 1fr auto; gap: 12px; align-items: center; background: white; padding: 12px; border-radius: 14px; border: 1px solid var(--line); }
.cart-emoji { width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center; background: var(--paper-2); font-size: 1.7rem; }
.cart-item strong { display: block; font-size: .92rem; }
.cart-item span { color: var(--muted); font-size: .78rem; }
.remove-item { border: 0; background: transparent; color: var(--accent-dark); font-weight: 900; }
.cart-empty { color: var(--muted); text-align: center; padding: 45px 10px; }
.drawer-foot { margin-top: auto; border-top: 1px solid var(--line); padding-top: 20px; }
.drawer-total { display: flex; align-items: center; justify-content: space-between; font-weight: 900; margin-bottom: 14px; }
.drawer-total strong { font-size: 1.35rem; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 25px);
  background: var(--ink);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: .2s ease;
  font-weight: 750;
}
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

.faq { display: grid; gap: 12px; }
details {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0 20px;
}
summary { cursor: pointer; padding: 19px 34px 19px 0; font-weight: 850; position: relative; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 0; top: 18px; font-size: 1.4rem; color: var(--accent); }
details[open] summary::after { content: "–"; }
details p { padding: 0 0 20px; color: var(--muted); }

.pricing-card { position: relative; }
.pricing-card.featured { border: 2px solid var(--accent); transform: translateY(-8px); }
.price-large { font-size: 3rem; font-weight: 900; line-height: 1; margin-top: 18px; }
.price-large span { font-size: .92rem; color: var(--muted); }
.check-list { display: grid; gap: 11px; margin: 22px 0 0; padding: 0; list-style: none; }
.check-list li { display: grid; grid-template-columns: 22px 1fr; gap: 8px; }
.check-list li::before { content: "✓"; font-weight: 900; color: var(--accent); }

.founder-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 42px;
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  align-items: center;
}
.founder-visual {
  aspect-ratio: 4/5;
  border-radius: 24px;
  background: linear-gradient(145deg, #dce8d1, #f8e6ca);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}
.founder-visual::before {
  content: "DS";
  font-family: Georgia, serif;
  font-size: 7rem;
  color: rgba(23,62,43,.18);
  font-weight: 700;
}
.founder-visual::after {
  content: "Army veteran • Local founder";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: rgba(255,255,255,.88);
  border-radius: 999px;
  padding: 10px 14px;
  text-align: center;
  font-size: .78rem;
  font-weight: 850;
}
.founder-copy .lead { margin-top: 18px; }
.founder-copy p + p { margin-top: 16px; color: var(--muted); }
.contact-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.contact-chip { padding: 9px 13px; border-radius: 999px; background: var(--paper-2); font-weight: 780; font-size: .86rem; }

.legal { max-width: 820px; }
.legal h2 { font-family: inherit; font-size: 1.7rem; margin-top: 42px; letter-spacing: -.02em; }
.legal h3 { margin-top: 26px; font-size: 1.16rem; }
.legal p, .legal li { color: #4f5c54; }
.legal p { margin-top: 13px; }
.legal ul { padding-left: 21px; }

.site-footer { background: #102f21; color: white; padding: 68px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .65fr .65fr 1fr; gap: 38px; }
.footer-brand img { width: 226px; filter: brightness(0) invert(1); }
.footer-brand p { margin-top: 18px; color: rgba(255,255,255,.65); max-width: 360px; }
.footer-column h4 { color: var(--gold); margin-bottom: 14px; }
.footer-links { display: grid; gap: 9px; color: rgba(255,255,255,.72); }
.footer-links a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.55); font-size: .82rem; }

.empty-state {
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
  padding: 86px 24px;
}
.empty-state .icon-box { margin: 0 auto 22px; }
.empty-state p { margin-top: 15px; color: var(--muted); }
.empty-state .button-row { justify-content: center; margin-top: 26px; }

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: 78px 0 auto 0;
    min-height: calc(100vh - 78px);
    background: var(--paper);
    padding: 36px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    display: none;
  }
  .nav-links a { padding: 14px; border-radius: 12px; font-size: 1.08rem; }
  .nav-links .btn { margin-top: 10px; }
  .nav-open .nav-links { display: flex; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-grid { gap: 32px; }
  .hero-copy { text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-copy .button-row, .hero-proof { justify-content: center; }
  .hero-art { width: 100%; max-width: 680px; margin: 0 auto; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .founder-card { grid-template-columns: 250px 1fr; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 72px 0; }
  .section-tight { padding: 52px 0; }
  .hero { padding: 60px 0 64px; }
  h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  h2 { font-size: clamp(2.25rem, 11vw, 3.4rem); }
  .hero-art::after { right: 4px; top: 3%; font-size: .7rem; }
  .section-heading { display: block; }
  .section-heading .lead { margin-top: 16px; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line); }
  .grid-3, .grid-2, .product-grid, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .category-grid { grid-template-columns: 1fr 1fr; }
  .category-card { min-height: 158px; padding: 19px; }
  .farmer-panel, .cta-band, .quote-card, .form-shell { padding: 28px; border-radius: 24px; }
  .toolbar-inner { align-items: flex-start; }
  .market-toolbar { top: 78px; }
  .filter-row { max-width: calc(100% - 90px); }
  .filter-btn { font-size: .76rem; padding: 8px 11px; }
  .founder-card { grid-template-columns: 1fr; padding: 20px; }
  .founder-visual { max-width: 300px; width: 100%; margin-inline: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .announcement { font-size: .76rem; }
  .brand img { width: 196px; }
  .nav-wrap { min-height: 70px; }
  .nav-links { inset: 70px 0 auto 0; min-height: calc(100vh - 70px); }
  .button-row { align-items: stretch; }
  .button-row .btn { width: 100%; }
  .hero-proof { display: grid; justify-content: start; text-align: left; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 140px; }
  .toolbar-inner { flex-direction: column; }
  .filter-row { max-width: none; }
  .cart-button { align-self: flex-end; margin-top: -48px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media print {
  .site-header, .site-footer, .announcement, .btn, .market-toolbar { display: none !important; }
  body { background: white; }
  .section, .section-tight, .page-hero { padding: 24px 0; }
  .card, .form-shell, .founder-card { box-shadow: none; }
}
