:root {
  --green: #24382f;
  --green-dark: #17231c;
  --leaf: #5e715f;
  --orange: #9f4f1f;
  --cream: #f4eadc;
  --paper: #fffaf2;
  --sand: #d7c1a0;
  --ink: #111815;
  --muted: #58655d;
  --line: rgba(36, 56, 47, .2);
  --shadow: 0 22px 60px rgba(17, 24, 21, .14);
  --radius: 8px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: linear-gradient(180deg, var(--cream), var(--paper) 54%, var(--cream));
  color: var(--ink);
  line-height: 1.6;
}

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

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

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.notice {
  background: var(--green);
  color: var(--paper);
  font-family: Arial, sans-serif;
  font-size: 13px;
  line-height: 1.45;
  padding: 10px 0;
}

.notice .wrap {
  display: flex;
  justify-content: center;
  text-align: center;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(244, 234, 220, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.topbar-inner {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.brand img {
  width: 116px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--green);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav a {
  border-bottom: 1px solid transparent;
  padding: 8px 0;
}

.nav a:hover,
.nav a.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

.nav a.cta {
  color: var(--orange);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--orange);
  color: var(--paper);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(17, 24, 21, .14);
}

.button.secondary {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
  box-shadow: none;
}

.button.small {
  min-height: 40px;
  padding: 10px 18px;
  margin-top: 8px;
  font-size: 11px;
  box-shadow: 0 8px 18px rgba(17, 24, 21, .12);
}

.hero {
  min-height: 72vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  color: var(--paper);
  text-align: center;
  padding: clamp(72px, 10vw, 120px) 0;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23, 35, 28, .74), rgba(23, 35, 28, .42));
  z-index: -1;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-content {
  max-width: 800px;
}

.hero-proof {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 auto 20px;
  color: #fff3e6;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-proof span {
  border: 1px solid rgba(255, 250, 242, .42);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(17, 24, 21, .26);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd8b8;
}

h1,
h2,
h3 {
  line-height: 1.12;
  color: inherit;
}

h1 {
  margin: 0 0 20px;
  font-size: clamp(42px, 7vw, 76px);
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4.4vw, 50px);
  color: var(--green);
}

h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: var(--green);
}

.lead {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.45;
}

.hero-actions,
.actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.section {
  padding: clamp(58px, 8vw, 96px) 0;
  border-top: 1px solid var(--line);
}

.food-strip {
  padding: clamp(30px, 5vw, 52px) 0;
  background: var(--paper);
}

.food-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.food-tile {
  min-height: 220px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--green);
  box-shadow: 0 12px 28px rgba(17, 24, 21, .1);
}

.food-tile img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.food-tile span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(17, 24, 21, .78);
  color: var(--paper);
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section.alt {
  background: rgba(36, 56, 47, .045);
}

.section-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-head p,
.copy p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

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

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 10px 26px rgba(17, 24, 21, .07);
}

.card p,
.card li {
  color: var(--muted);
  font-size: 16px;
}

.card .button {
  color: var(--paper);
}

.card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.image-panel {
  min-height: 360px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(36, 56, 47, .18), rgba(196, 106, 45, .16)),
    url("images/field-pantry-first-batch-mockup-1200.webp") center / cover;
  box-shadow: var(--shadow);
}

.form-shell {
  max-width: 780px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 5vw, 44px);
  box-shadow: var(--shadow);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--green);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdfa;
  color: var(--ink);
  font: 16px Arial, sans-serif;
  padding: 12px 13px;
}

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

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.checkbox input {
  width: auto;
  margin-top: 3px;
}

.fine-print {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 13px;
}

.important-note {
  color: var(--orange);
  font-weight: 800;
}

.footer {
  background: var(--green-dark);
  color: var(--paper);
  padding: 46px 0;
}

.footer p {
  max-width: 680px;
  margin: 0 0 14px;
  color: rgba(255, 250, 242, .82);
}

.footer a {
  color: #ffd8b8;
}

@media (max-width: 860px) {
  .topbar-inner {
    min-height: 88px;
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0 16px;
  }

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

  .brand img {
    width: 96px;
  }

  .grid,
  .grid.two,
  .food-strip-grid,
  .split,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 64vh;
  }
}
