:root {
  --ink: #15332c;
  --muted: #5d6b66;
  --line: #d9e4dd;
  --paper: #fffdf8;
  --white: #ffffff;
  --leaf: #1f8a55;
  --leaf-dark: #145f3d;
  --gold: #d89b2b;
  --tomato: #cf3e2d;
  --sea: #227a89;
  --soft-green: #eaf5ee;
  --soft-gold: #fff3d6;
  --soft-sea: #e7f4f6;
  --shadow: 0 18px 45px rgba(20, 63, 52, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}

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

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

.skip-link {
  left: 16px;
  padding: 10px 14px;
  position: absolute;
  top: -48px;
  z-index: 20;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(16, 44, 37, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand img {
  width: auto;
  height: 76px;
  max-width: 240px;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  flex: 0 0 42px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: 5px auto;
}

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

.main-nav a {
  padding: 10px 13px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  font-size: 14px;
}

.main-nav a:hover,
.main-nav a.active {
  color: #ffdb83;
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 15px;
  background: var(--gold);
  color: #102c25 !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  background: var(--leaf-dark);
  color: var(--white);
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.btn-secondary {
  background: var(--white);
  color: var(--leaf-dark);
  border-color: var(--line);
}

.btn-gold {
  background: var(--gold);
  color: #2f2412;
}

.section {
  padding: 82px 0;
}

.section.tight {
  padding: 56px 0;
}

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

.eyebrow {
  color: var(--sea);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 6vw, 74px);
  max-width: 850px;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
}

.lead {
  color: #41524a;
  font-size: 19px;
  max-width: 740px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 98px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 39, 31, 0.88), rgba(8, 39, 31, 0.55) 45%, rgba(8, 39, 31, 0.1)),
    url("../img/vegetable-hero.jpg") center / cover no-repeat;
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(0deg, var(--paper), rgba(255, 253, 248, 0));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 118px;
}

.hero .eyebrow {
  color: #ffdb83;
}

.hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
}

.brand-tagline {
  margin-top: 20px;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 900;
  color: #ffdb83 !important;
}

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

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 46px;
  max-width: 940px;
}

.hero-stat {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  padding: 16px;
  backdrop-filter: blur(10px);
}

.hero-stat strong {
  display: block;
  font-size: 24px;
  color: #ffdb83;
}

.hero-stat span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.84);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 520px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(20, 63, 52, 0.06);
}

.padded {
  padding: 24px;
}

.image-card {
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.image-card .padded {
  min-height: 210px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  background: var(--soft-green);
  color: var(--leaf-dark);
  font-size: 12px;
  font-weight: 800;
}

.tag.gold {
  background: var(--soft-gold);
  color: #7c5510;
}

.tag.sea {
  background: var(--soft-sea);
  color: #165d68;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.stat-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
}

.stat-card strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  color: var(--leaf-dark);
}

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

.state-grid-section {
  overflow: visible;
  padding-top: 64px;
  padding-bottom: 64px;
}

.state-grid-section .section-head {
  margin-bottom: 20px;
}

.state-grid-section h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.state-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.state-card {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(20, 63, 52, 0.06);
}

.state-card img {
  width: 100%;
  height: 138px;
  object-fit: cover;
}

.state-card-body {
  padding: 16px;
}

.state-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.state-meta {
  display: grid;
  gap: 8px;
}

.state-meta strong {
  display: block;
  color: var(--sea);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.state-meta span {
  display: block;
  margin-top: 2px;
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
}

.state-varieties {
  margin: 11px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.state-varieties li {
  padding: 5px 7px;
  background: var(--soft-green);
  color: var(--leaf-dark);
  font-size: 11px;
  font-weight: 800;
}

.source {
  margin-top: 10px;
  font-size: 11px;
  color: #6d7b75;
}

.source a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.process {
  counter-reset: step;
}

.process-card {
  position: relative;
  padding: 26px;
  min-height: 230px;
}

.process-card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: var(--soft-gold);
  color: #7c5510;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.split-img {
  position: relative;
}

.split-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.split-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 260px;
  background: var(--white);
  border-left: 5px solid var(--gold);
  padding: 16px;
  box-shadow: var(--shadow);
  color: var(--ink);
  font-weight: 800;
}

.banner {
  background: linear-gradient(135deg, var(--leaf-dark), #176b61 55%, var(--sea));
  color: var(--white);
}

.banner .lead,
.banner p {
  color: rgba(255, 255, 255, 0.86);
}

.banner .card {
  color: var(--ink);
}

.banner .card h3 {
  color: var(--ink);
}

.banner .card p {
  color: var(--muted);
}

.banner .card .tag {
  background: var(--soft-green);
  color: var(--leaf-dark);
  border-color: transparent;
}

.banner .card .tag.gold {
  background: var(--soft-gold);
  color: #7c5510;
}

.banner .card .tag.sea {
  background: var(--soft-sea);
  color: #165d68;
}

.banner .tag {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.page-hero {
  padding: 92px 0 64px;
  background:
    linear-gradient(90deg, rgba(20, 95, 61, 0.9), rgba(34, 122, 137, 0.72)),
    url("../img/vegetable-market-table.jpg") center / cover no-repeat;
  color: var(--white);
}

.page-hero.services {
  background:
    linear-gradient(90deg, rgba(20, 95, 61, 0.91), rgba(207, 62, 45, 0.52)),
    url("../img/vegetable-farmers-market.jpg") center / cover no-repeat;
}

.page-hero.contact {
  background:
    linear-gradient(90deg, rgba(8, 39, 31, 0.9), rgba(20, 95, 61, 0.68)),
    url("../img/vegetable-crates.jpg") center / cover no-repeat;
}

.page-hero p {
  margin-top: 18px;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.9);
}

.founder-card {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 20px;
  align-items: start;
}

.founder-avatar {
  width: 92px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: var(--soft-green);
  color: var(--leaf-dark);
  font-size: 30px;
  font-weight: 900;
}

.list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding: 11px 0 11px 28px;
  border-top: 1px solid var(--line);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 10px;
  height: 10px;
  background: var(--gold);
}

.route-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
}

.route-table th,
.route-table td {
  padding: 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.route-table th {
  color: var(--leaf-dark);
  background: var(--soft-green);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 24px;
  align-items: start;
}

.contact-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.icon-box {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--soft-green);
  color: var(--leaf-dark);
  font-weight: 900;
}

form {
  display: grid;
  gap: 14px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #40524b;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fffefa;
  color: var(--ink);
  min-height: 46px;
  padding: 11px 12px;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 138px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(31, 138, 85, 0.12);
}

.form-status {
  min-height: 24px;
  font-size: 13px;
  color: var(--leaf-dark);
  font-weight: 800;
}

.form-status.success {
  color: var(--leaf-dark);
}

.form-status.error {
  color: var(--tomato);
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.feedback-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.feedback-card blockquote {
  margin: 0;
  color: #40524b;
}

.feedback-card cite {
  display: block;
  margin-top: 16px;
  color: var(--leaf-dark);
  font-style: normal;
  font-weight: 900;
}

.network {
  overflow: hidden;
  background: #f5faf7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.network-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: scroll 42s linear infinite;
}

.network:hover .network-track {
  animation-play-state: paused;
}

.network-card {
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 18px;
  min-height: 84px;
  display: grid;
  place-items: center;
  text-align: center;
}

.network-card strong {
  display: block;
  color: var(--leaf-dark);
  font-size: 22px;
}

.network-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.site-footer {
  background: #102c25;
  color: rgba(255, 255, 255, 0.86);
  padding: 48px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer-logo {
  width: 250px;
  max-width: 100%;
  margin-bottom: 18px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 14px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
}

.site-footer a:hover {
  color: #ffdb83;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 13px;
}

.note {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 940px) {
  .nav-wrap {
    width: calc(100% - 24px);
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: block;
    border-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 18px rgba(20, 63, 52, 0.12);
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 98px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 18px;
    background: #102c25;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .main-nav a {
    padding: 13px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 76px 0 104px;
  }

  .hero-strip,
  .stat-grid,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .state-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-3,
  .grid-2,
  .split,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: auto;
    height: 68px;
    max-width: 190px;
  }

  .state-card img {
    height: 126px;
  }

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

  h1 {
    font-size: 38px;
  }

  .section {
    padding: 58px 0;
  }

  .hero-strip,
  .stat-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

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

  .route-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .footer-bottom {
    display: grid;
  }
}
