:root {
  --red: #b8141e;
  --deep-red: #7e0d14;
  --gold: #f4b42a;
  --cream: #fff7e6;
  --ink: #1d1712;
  --muted: #6f6257;
  --green: #334c25;
  --paper: #fbf7ef;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(22, 14, 9, 0.86);
  color: white;
  backdrop-filter: blur(12px);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--deep-red);
  font-size: 0.85rem;
}
.header-link { text-decoration: none; font-size: 0.9rem; font-weight: 700; }

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 140px clamp(24px, 7vw, 110px) 80px;
  background:
    linear-gradient(90deg, rgba(22, 10, 4, 0.94) 0%, rgba(22, 10, 4, 0.74) 45%, rgba(22, 10, 4, 0.3) 100%),
    radial-gradient(circle at 80% 30%, rgba(244, 180, 42, 0.3), transparent 35%),
    linear-gradient(135deg, #4c120d 0%, #1a0d08 55%, #354522 100%);
  color: white;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -160px 40%;
  height: 380px;
  border-radius: 50%;
  background: rgba(244, 180, 42, 0.12);
  filter: blur(20px);
}
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold);
}
.hero-banner {
  display: block;
  width: 95vw;
  max-width: 1600px;
  height: auto;
  margin: 0 auto;
}
.eyebrow.dark { color: var(--deep-red); }
h1, h2, h3 { margin-top: 0; line-height: 1.08; }
h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(3.7rem, 9vw, 7.8rem);
  margin-bottom: 20px;
}
h1 span { color: var(--gold); }
.tagline { font-size: clamp(1.3rem, 2.5vw, 2rem); font-weight: 800; margin: 0 0 18px; }
.hero-copy { max-width: 680px; font-size: 1.08rem; color: rgba(255,255,255,0.82); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.button-primary { background: var(--gold); color: #24140b; }
.button-primary:hover { background: #ffc94c; }
.button-secondary { border: 1px solid rgba(255,255,255,0.45); color: white; background: transparent; }

.intro, .opportunity, .contact {
  padding: clamp(70px, 9vw, 130px) clamp(24px, 7vw, 110px);
}
.section-heading { max-width: 830px; }
h2 { font-family: "Playfair Display", serif; font-size: clamp(2.3rem, 5vw, 4.4rem); }
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 46px; }
.card {
  background: white;
  padding: 34px;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(49,32,19,0.08);
}
.card-number { color: var(--gold); font-weight: 800; letter-spacing: 0.15em; margin-bottom: 28px; }
.card h3 { font-size: 1.65rem; }
.card p { color: var(--muted); margin-bottom: 0; }

.farms-banner { padding: 0 clamp(18px, 4vw, 60px); }
.farms-banner img { width: 100%; border-radius: 26px; box-shadow: 0 22px 55px rgba(49,32,19,0.16); }

.opportunity {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}
.opportunity-copy p:last-child { color: var(--muted); max-width: 680px; }
.opportunity-list { display: grid; gap: 16px; }
.opportunity-list div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.opportunity-list span { color: var(--deep-red); font-weight: 800; }

.founder {
  margin: 0 clamp(18px, 4vw, 60px);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 560px;
  background: #28150d;
  color: white;
}
.founder-image-wrap { background: #120c08; }
.founder-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.founder-copy { padding: clamp(42px, 7vw, 90px); display: flex; flex-direction: column; justify-content: center; }
.founder-copy p:last-child { color: rgba(255,255,255,0.76); font-size: 1.05rem; }

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
}
.contact-copy p { color: var(--muted); }
.email-link { display: inline-block; margin-top: 20px; font-size: 1.15rem; font-weight: 800; color: var(--deep-red); }
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  background: white;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(49,32,19,0.09);
}
.contact-form label { display: grid; gap: 8px; font-size: 0.82rem; font-weight: 800; }
input, select, textarea {
  width: 100%;
  border: 1px solid #d9cfc4;
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  background: #fffdfa;
}
textarea { resize: vertical; }
.full-width { grid-column: 1 / -1; }
.form-note { margin: -4px 0 0; color: var(--muted); font-size: 0.78rem; text-align: center; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(24px, 7vw, 110px);
  background: #180e09;
  color: rgba(255,255,255,0.78);
}
footer div { display: grid; }
footer strong { color: white; }
footer p { margin: 0; }

@media (max-width: 860px) {
  .header-link { display: none; }
  .cards, .opportunity, .founder, .contact { grid-template-columns: 1fr; }
  .founder { min-height: auto; }
  .founder-image-wrap img { max-height: 620px; object-position: center top; }
  .contact-form { grid-template-columns: 1fr; }
  .full-width { grid-column: 1; }
  footer { flex-direction: column; }
}

@media (max-width: 540px) {
  .hero { min-height: 88vh; }
  h1 { font-size: 3.25rem; }
  .button { width: 100%; }
  .card, .contact-form { padding: 24px; }
}
