:root {
  --ink: #17211b;
  --muted: #667166;
  --line: #dce5d9;
  --leaf: #2f6f43;
  --leaf-dark: #1f4e31;
  --saffron: #d98a22;
  --cream: #fbfbf6;
  --paper: #ffffff;
  --shadow: 0 18px 45px rgba(30, 48, 35, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 251, 246, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #314036;
  font-size: 15px;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--leaf);
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--leaf);
  border-radius: 6px;
  background: var(--leaf);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--leaf-dark);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  background: linear-gradient(180deg, rgba(10, 19, 12, 0.18), rgba(10, 19, 12, 0.82)), url("/images/hero-farm-to-world.jpg") center / cover;
  color: #fff;
}

.hero-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16vh 0 84px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #f2c171;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

h1 {
  max-width: 880px;
  font-size: clamp(42px, 8vw, 88px);
}

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

h3 {
  font-size: 22px;
}

.lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 22px);
}

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

.section {
  padding: 72px 0;
}

.section.alt {
  background: #eef4ec;
}

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

.section-head p {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
}

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

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

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

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 24px rgba(28, 46, 31, 0.07);
}

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

.card-body {
  padding: 20px;
}

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

.meta {
  color: var(--saffron);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: start;
}

.content {
  font-size: 18px;
}

.content p {
  color: #3d493f;
}

.content h2 {
  margin-top: 28px;
  font-size: 30px;
}

.facts {
  display: grid;
  gap: 12px;
}

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

.fact strong {
  color: var(--leaf-dark);
}

.page-hero {
  padding: 72px 0 42px;
  background: #eef4ec;
}

.page-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

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

.field {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #cbd7c8;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

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

.notice {
  display: none;
  padding: 12px 14px;
  border-radius: 6px;
  background: #e6f4ea;
  color: #174a29;
  font-weight: 800;
}

.notice.show {
  display: block;
}

.footer {
  padding: 42px 0;
  background: #17211b;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
}

.footer strong {
  color: #fff;
}

.footer a {
  display: block;
  margin: 8px 0;
}

.empty {
  padding: 32px;
  border: 1px dashed #b9c7b5;
  border-radius: 8px;
  color: var(--muted);
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .grid.three,
  .grid.four,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .hero {
    min-height: 680px;
  }

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