:root {
  --bg: #f6f3ed;
  --ink: #17211a;
  --muted: #5f6f62;
  --surface: rgba(255,255,255,.86);
  --line: rgba(23,33,26,.12);
  --green: #2f6e3f;
  --green-dark: #184226;
  --earth: #9d4f28;
  --shadow: 0 24px 70px rgba(21, 36, 25, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1120px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: rgba(246, 243, 237, .82);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 46px rgba(0,0,0,.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  background: linear-gradient(135deg, var(--green), var(--earth));
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
}

.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(23,33,26,.78);
}

.nav a:hover { background: rgba(47,110,63,.1); color: var(--ink); }
.nav-login { background: var(--ink); color: #fff !important; }
.nav-login:hover { background: var(--green-dark) !important; }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px 24px 86px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/farm-field.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13,21,15,.78), rgba(13,21,15,.35) 48%, rgba(13,21,15,.05)),
    linear-gradient(0deg, rgba(246,243,237,1), rgba(246,243,237,0) 36%);
}

.hero-content {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  margin: 0 0 18px;
  background: rgba(255,255,255,.13);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-size: 12px;
}

h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(44px, 7vw, 88px);
  line-height: .94;
  letter-spacing: -.07em;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
}

.button.primary { background: #fff; color: var(--green-dark); }
.button.secondary { border: 1px solid rgba(255,255,255,.42); background: rgba(255,255,255,.12); color: #fff; }
.button:hover { transform: translateY(-1px); }

.link-grid {
  width: min(1120px, calc(100% - 32px));
  margin: -38px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(47,110,63,.35);
  box-shadow: 0 30px 82px rgba(21,36,25,.22);
}

.card-kicker {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.card h2 {
  margin: 54px 0 10px;
  font-size: 23px;
  letter-spacing: -.04em;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.about-card {
  grid-column: span 4;
  min-height: auto;
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 22px;
}
.about-card h2 { margin: 0 0 8px; }

.showcase {
  width: min(1120px, calc(100% - 32px));
  margin: 72px auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr 1fr;
  gap: 16px;
}

.showcase img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 18px 46px rgba(21,36,25,.16);
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 32px;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer a { font-weight: 800; color: var(--green-dark); }

@media (max-width: 920px) {
  .site-header { align-items: flex-start; border-radius: 28px; }
  .nav { flex-wrap: wrap; justify-content: flex-end; }
  .hero { min-height: 700px; }
  .link-grid { grid-template-columns: repeat(2, 1fr); }
  .about-card { grid-column: span 2; grid-template-columns: 1fr; }
  .showcase { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-header { position: absolute; flex-direction: column; }
  .nav { justify-content: flex-start; }
  .nav a { padding: 9px 10px; }
  .hero { padding-top: 220px; min-height: 760px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .link-grid { grid-template-columns: 1fr; margin-top: 24px; }
  .about-card { grid-column: span 1; }
  .card { min-height: 210px; }
  .site-footer { flex-direction: column; }
}
