:root {
  --bg: #f7f1e4;
  --bg-soft: #efe4cc;
  --card: rgba(255, 252, 245, 0.82);
  --ink: #1f2a1f;
  --muted: #5b665a;
  --line: rgba(44, 61, 44, 0.14);
  --leaf: #325c38;
  --leaf-deep: #22462d;
  --leaf-soft: #6b9366;
  --soil: #8d5a36;
  --accent: #d9822b;
  --dark: #183126;
  --dark-card: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 50px rgba(58, 44, 28, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: min(1120px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(217, 130, 43, 0.18), transparent 22rem),
    radial-gradient(circle at top right, rgba(50, 92, 56, 0.12), transparent 24rem),
    linear-gradient(180deg, #f9f4e8 0%, #f4ebd8 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

textarea {
  resize: vertical;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(249, 244, 232, 0.76);
  border-bottom: 1px solid rgba(44, 61, 44, 0.08);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--leaf), #86aa79);
  color: #fff;
  font-weight: 800;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--muted);
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.22rem auto;
  background: var(--ink);
}

.hero {
  padding: 5rem 0 2rem;
}

.hero-grid,
.split-section,
.dashboard-grid,
.cta-card,
.footer-shell,
.proof-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  color: var(--leaf);
  font-weight: 800;
}

.eyebrow-dark {
  color: #aed9b0;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-family: "Fraunces", serif;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  max-width: 16ch;
}

h3 {
  font-size: 1.38rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--leaf);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--leaf-deep);
}

.button-small {
  min-height: 2.5rem;
  padding: 0.55rem 1rem;
}

.button-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.button-ghost-dark {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: #eff7ef;
}

.hero-highlights,
.checklist,
.batch-points {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-highlights li,
.produce-meta span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(44, 61, 44, 0.08);
  color: var(--ink);
  font-size: 0.92rem;
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.panel-card,
.mini-card,
.feature-card,
.timeline-card,
.traceability-box,
.proof-note,
.produce-card,
.dashboard-card,
.checklist-card,
.cta-card,
.faq-card,
.sensor-card {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.panel-card {
  padding: 1.6rem;
  background: rgba(255, 252, 245, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.panel-main {
  background: linear-gradient(145deg, rgba(255, 250, 241, 0.92), rgba(228, 242, 220, 0.78));
}

.panel-label,
.produce-tag {
  margin: 0 0 0.65rem;
  color: var(--soil);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.stat-row strong {
  display: block;
  font-size: 1.7rem;
  font-family: "Fraunces", serif;
}

.stat-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.panel-note ul {
  margin: 0;
  padding-left: 1.15rem;
  line-height: 1.8;
  color: var(--muted);
}

.section {
  padding: 5rem 0;
}

.intro-strip {
  padding-top: 1rem;
}

.intro-cards,
.feature-grid,
.timeline-grid,
.produce-grid,
.sensor-grid,
.faq-grid,
.plot-metrics {
  display: grid;
  gap: 1rem;
}

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

.mini-card,
.feature-card,
.timeline-card,
.produce-card,
.faq-card,
.proof-note {
  padding: 1.35rem;
  background: rgba(255, 250, 241, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.section-tinted {
  background: linear-gradient(180deg, rgba(239, 228, 204, 0.45), rgba(239, 228, 204, 0.8));
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(174, 217, 176, 0.14), transparent 18rem),
    linear-gradient(180deg, #183126 0%, #10261d 100%);
  color: #eff7ef;
}

.section-dark p,
.section-dark h2,
.section-dark h3,
.section-dark span,
.section-dark small {
  color: inherit;
}

.section-accent {
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.split-section {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: start;
}

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

.timeline-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2rem;
}

.timeline-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(50, 92, 56, 0.12);
  color: var(--leaf);
  font-weight: 800;
}

.proof-grid {
  grid-template-columns: 1.2fr 0.8fr;
  margin-top: 2rem;
}

.land-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
  margin-top: 2rem;
}

.land-card,
.plot-panel {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 250, 241, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.land-overview {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
}

.land-overview p:last-child {
  max-width: 30rem;
}

.land-diagram {
  margin-top: 1.5rem;
  padding: 2rem 1rem;
  border-radius: calc(var(--radius-xl) - 4px);
  background:
    linear-gradient(180deg, rgba(95, 133, 87, 0.18), rgba(62, 95, 57, 0.22)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.1) 0,
      rgba(255, 255, 255, 0.1) 2px,
      transparent 2px,
      transparent 54px
    );
  border: 1px solid rgba(44, 61, 44, 0.08);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  aspect-ratio: 1 / 1;
  max-width: 32rem;
  margin: 0 auto;
  padding: 1rem;
  transform: rotate(-45deg);
}

.plot-zone {
  min-height: 9rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 1.2rem;
  background: rgba(254, 251, 244, 0.7);
  color: var(--ink);
  box-shadow: 0 12px 24px rgba(50, 44, 31, 0.12);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.plot-zone:hover,
.plot-zone:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 248, 235, 0.95);
  border-color: rgba(141, 90, 54, 0.35);
  outline: none;
}

.plot-zone.is-active {
  background: linear-gradient(145deg, rgba(50, 92, 56, 0.92), rgba(126, 168, 104, 0.88));
  color: #fff;
}

.plot-zone > span {
  display: block;
  transform: rotate(45deg);
}

.plot-zone-label {
  font-family: "Fraunces", serif;
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

.plot-zone-note {
  font-size: 0.92rem;
  font-weight: 700;
}

.land-caption {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.25rem;
}

.plot-panel h3 {
  margin-bottom: 0.35rem;
}

.plot-panel > p {
  margin-bottom: 1.25rem;
}

.plot-metrics {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 1.25rem;
}

.plot-metrics article,
.plot-details > div {
  padding: 1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(44, 61, 44, 0.08);
}

.plot-metrics span,
.plot-label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--soil);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plot-metrics strong {
  font-family: "Fraunces", serif;
  font-size: 1.45rem;
}

.plot-details {
  display: grid;
  gap: 0.85rem;
}

.plot-details p {
  margin: 0;
}

.traceability-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(44, 61, 44, 0.08);
}

.batch-points li,
.checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

.batch-points li::before,
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--leaf);
}

.section-heading {
  max-width: 56rem;
}

.produce-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}

.produce-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 16rem;
}

.produce-top {
  margin-bottom: 1rem;
}

.produce-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.dashboard-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.dot {
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  margin-right: 0.45rem;
  border-radius: 999px;
}

.dot-green {
  background: #7ed890;
}

.dot-amber {
  background: #e3b35a;
}

.dot-blue {
  background: #7dc3ff;
}

.dashboard-card {
  padding: 1.5rem;
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

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

.sensor-card {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.sensor-card strong {
  display: block;
  margin: 0.5rem 0;
  font-size: 2rem;
  font-family: "Fraunces", serif;
}

.activity-feed {
  margin-top: 1rem;
  display: grid;
  gap: 0.75rem;
}

.feed-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.feed-item p {
  margin: 0;
}

.feed-time {
  font-weight: 800;
  color: #aed9b0;
}

.checklist-card {
  padding: 1.6rem;
  background: linear-gradient(145deg, rgba(255, 250, 241, 0.82), rgba(241, 235, 221, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.faq-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}

.faq-card p,
.proof-note p {
  margin-bottom: 0;
}

.cta-card {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(135deg, #25452b, #9b6333);
  color: #fff;
}

.cta-card p,
.cta-card h2,
.cta-card .eyebrow {
  color: inherit;
}

.interest-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.12);
}

.interest-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 700;
}

.interest-form input,
.interest-form select,
.interest-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.interest-form input::placeholder,
.interest-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.74);
}

.interest-form option {
  color: #111;
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.site-footer {
  padding: 1.8rem 0 2.4rem;
}

.footer-shell {
  grid-template-columns: 1fr auto;
  align-items: center;
  border-top: 1px solid rgba(44, 61, 44, 0.1);
  padding-top: 1rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .split-section,
  .dashboard-grid,
  .cta-card,
  .proof-grid,
  .land-layout,
  .traceability-box,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .intro-cards,
  .timeline-grid,
  .produce-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 250, 241, 0.97);
    border: 1px solid rgba(44, 61, 44, 0.08);
    box-shadow: var(--shadow);
  }

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

  .intro-cards,
  .feature-grid,
  .timeline-grid,
  .produce-grid,
  .sensor-grid,
  .faq-grid,
  .stat-row,
  .plot-metrics {
    grid-template-columns: 1fr;
  }

  .land-overview {
    flex-direction: column;
    align-items: start;
  }

  .field-grid {
    max-width: 21rem;
  }

  .plot-zone {
    min-height: 7.5rem;
  }

  .hero {
    padding-top: 3.5rem;
  }

  h1,
  h2 {
    max-width: 100%;
  }

  .section {
    padding: 4rem 0;
  }
}
