:root {
  --ink: #183a37;
  --ink-2: #254d47;
  --clay: #c46a36;
  --clay-dark: #a5532c;
  --sand: #f5f1e8;
  --sand-2: #ebe3d4;
  --moss: #6b7c4f;
  --paper: #fffdf7;
  --muted: #6a746f;
  --line: rgba(24, 58, 55, 0.14);
  --shadow: 0 24px 70px rgba(24, 58, 55, 0.16);
  --radius: 28px;
  --radius-sm: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(196, 106, 54, 0.10), transparent 34rem),
    radial-gradient(circle at 90% 10%, rgba(107, 124, 79, 0.11), transparent 28rem),
    var(--paper);
  line-height: 1.6;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 20;
  background: var(--ink);
  color: white;
  padding: .7rem 1rem;
  border-radius: .7rem;
}
.skip-link:focus { left: 1rem; }

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 253, 247, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(24, 58, 55, .06);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink-2);
  color: var(--sand);
  font-size: 1.2rem;
}
.brand-copy { display: grid; line-height: 1.1; }
.brand-copy strong { letter-spacing: .08em; font-size: .95rem; }
.brand-copy small { color: var(--muted); font-size: .78rem; }
.site-nav { display: flex; align-items: center; gap: .2rem; }
.site-nav a {
  text-decoration: none;
  padding: .65rem .85rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: .92rem;
}
.site-nav a:hover { background: var(--sand); color: var(--ink); }
.site-nav .nav-cta { background: var(--ink); color: white; }
.nav-toggle { display: none; }

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  padding: 7rem 0 5rem;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.eyebrow {
  margin: 0 0 .9rem;
  color: var(--clay);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 900;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 850px;
  font-size: clamp(3.2rem, 8vw, 7.3rem);
  line-height: .88;
  letter-spacing: -.075em;
  margin-bottom: 1.5rem;
}
h2 {
  font-size: clamp(2.1rem, 4.6vw, 4.7rem);
  line-height: .95;
  letter-spacing: -.055em;
  margin-bottom: 1.1rem;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.1;
  margin-bottom: .7rem;
}
.hero-lead {
  max-width: 680px;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  color: var(--muted);
}
.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}
.button {
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.25rem;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--clay); color: white; box-shadow: 0 16px 40px rgba(196, 106, 54, .22); }
.button.primary:hover { background: var(--clay-dark); }
.button.secondary { background: var(--sand); color: var(--ink); }
.button.light { background: var(--paper); color: var(--ink); }
.button.ghost-light { color: white; border: 1px solid rgba(255,255,255,.35); }
.button.full { width: 100%; }

.impact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  margin: 2.4rem 0 0;
  max-width: 620px;
}
.impact-strip div {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem;
  background: rgba(255,255,255,.45);
}
.impact-strip dt {
  font-size: 1.6rem;
  font-weight: 950;
  line-height: 1;
  color: var(--ink-2);
}
.impact-strip dd {
  margin: .4rem 0 0;
  color: var(--muted);
  font-size: .9rem;
}

.hero-card { position: relative; }
.hero-card::before {
  content: "";
  position: absolute;
  inset: -12%;
  background:
    linear-gradient(120deg, transparent 10%, rgba(196, 106, 54, .20), transparent 52%),
    radial-gradient(circle, rgba(37, 77, 71, .16), transparent 56%);
  filter: blur(20px);
  z-index: -1;
}
.living-card {
  min-height: 560px;
  border-radius: 42px;
  background:
    linear-gradient(160deg, rgba(24,58,55,.96), rgba(37,77,71,.88)),
    var(--ink);
  color: var(--sand);
  padding: clamp(2rem, 4vw, 3.2rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.living-card::before {
  content: "";
  position: absolute;
  top: 8%;
  right: -18%;
  width: 78%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(245, 241, 232, .2);
  box-shadow: inset 0 0 0 28px rgba(245, 241, 232, .035);
}
.living-card::after {
  content: "";
  position: absolute;
  left: 8%;
  top: 14%;
  width: 52%;
  height: 42%;
  border-radius: 45% 55% 60% 40%;
  background: linear-gradient(145deg, rgba(196,106,54,.45), rgba(245,241,232,.08));
  transform: rotate(-18deg);
}
.card-kicker { position: relative; z-index: 1; color: #f0b287; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; }
.living-card blockquote {
  position: relative;
  z-index: 1;
  margin: 1rem 0;
  font-size: clamp(2rem, 4.2vw, 4.5rem);
  line-height: .95;
  letter-spacing: -.05em;
  font-weight: 950;
}
.living-card p { position: relative; z-index: 1; color: rgba(245,241,232,.78); font-size: 1.05rem; }

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.muted { background: rgba(235, 227, 212, .45); }
.split, .symbol-grid, .form-layout {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.split.reverse, .form-layout.reverse { grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr); }
.split.reverse > :first-child, .form-layout.reverse > :first-child { order: 2; }
.section-heading p, .text-block p, .symbol-grid p, .form-intro p { color: var(--muted); font-size: 1.08rem; }
.centered { text-align: center; max-width: 820px; margin: 0 auto 3rem; }
.principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  margin-top: 2rem;
}
.principles article, .feature-card, .boundary-card, .project-card, .site-form {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: 0 12px 35px rgba(24,58,55,.06);
}
.principles span, .project-card span { color: var(--clay); font-weight: 950; font-size: .8rem; letter-spacing: .1em; }

.symbol-grid { align-items: center; }
.symbol-visual {
  min-height: 420px;
  background: linear-gradient(160deg, var(--sand), #fff8ec);
  border: 1px solid var(--line);
  border-radius: 42px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.flower-shape {
  position: absolute;
  inset: 20% 25%;
  background: rgba(255,255,255,.88);
  clip-path: polygon(50% 0%, 61% 35%, 100% 35%, 68% 57%, 80% 100%, 50% 72%, 20% 100%, 32% 57%, 0% 35%, 39% 35%);
  filter: drop-shadow(0 28px 28px rgba(24,58,55,.14));
}
.sand-lines {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(165deg, transparent 0 18px, rgba(196,106,54,.08) 19px 21px),
    radial-gradient(circle at 70% 10%, rgba(107,124,79,.18), transparent 35%);
  mix-blend-mode: multiply;
}

.cards { display: grid; gap: 1rem; }
.cards.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.cards.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-card { min-height: 250px; display: flex; flex-direction: column; }
.feature-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--sand);
  display: grid;
  place-items: center;
  color: var(--ink-2);
  font-size: 1.5rem;
  margin-bottom: 1.4rem;
}
.feature-card h3, .boundary-card h3, .project-card h3 { color: var(--ink-2); }
.feature-card p, .boundary-card p, .project-card p { color: var(--muted); margin-bottom: 0; }

.image-panel { min-height: 430px; }
.farm-frame {
  height: 100%;
  min-height: 430px;
  border-radius: 42px;
  padding: 2rem;
  background:
    linear-gradient(rgba(24,58,55,.16), rgba(24,58,55,.55)),
    linear-gradient(135deg, #d8c4a3, #fbf5e9 42%, #738162);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.farm-frame::before {
  content: "";
  position: absolute;
  inset: 12% 10% auto 10%;
  height: 38%;
  background:
    linear-gradient(90deg, transparent 10%, rgba(255,255,255,.65) 11% 12%, transparent 13% 25%, rgba(255,255,255,.65) 26% 27%, transparent 28%),
    linear-gradient(145deg, rgba(24,58,55,.25), rgba(255,255,255,.25));
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 16px;
  transform: perspective(500px) rotateX(10deg) rotateZ(-2deg);
}
.farm-frame span, .farm-frame strong { position: relative; z-index: 1; }
.farm-frame span { text-transform: uppercase; letter-spacing: .12em; font-weight: 900; color: rgba(255,255,255,.75); }
.farm-frame strong { font-size: 2.1rem; line-height: 1; max-width: 360px; }
.capacity-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.7);
}
.capacity-table div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
}
.capacity-table div:last-child { border-bottom: 0; }
.capacity-table strong { color: var(--ink-2); }
.capacity-table span { color: var(--muted); }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
  position: relative;
}
.timeline article {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  min-height: 190px;
}
.timeline span {
  color: var(--clay);
  font-weight: 950;
  font-size: .8rem;
}
.timeline p { color: var(--muted); margin-bottom: 0; }

.form-layout { align-items: start; }
.form-intro { position: sticky; top: 112px; }
.check-list {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .75rem;
}
.check-list li {
  padding-left: 2rem;
  position: relative;
  color: var(--ink-2);
  font-weight: 700;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--moss);
  color: white;
  font-size: .85rem;
}
.need-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
  margin-top: 1.5rem;
}
.need-grid span {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .75rem 1rem;
  font-weight: 800;
  color: var(--ink-2);
}

.site-form { padding: clamp(1.25rem, 3vw, 2rem); }
.form-header { margin-bottom: 1.2rem; }
.form-header p, .form-note { color: var(--muted); font-size: .92rem; margin-bottom: 0; }
.site-form label {
  display: grid;
  gap: .45rem;
  font-weight: 850;
  margin-bottom: .95rem;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,253,247,.95);
  color: var(--ink);
  padding: .9rem .95rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 4px rgba(196, 106, 54, .12);
}
.consent {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: .65rem !important;
  font-weight: 700 !important;
  color: var(--muted);
}
.consent input { width: 1.15rem; margin-top: .25rem; accent-color: var(--clay); }

.cta-band {
  padding: 5rem 0;
  background: var(--ink-2);
  color: white;
}
.cta-band .eyebrow { color: #f0b287; }
.cta-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}
.cta-inner p { color: rgba(255,255,255,.74); margin-bottom: 0; }
.cta-inner h2 { max-width: 760px; }
.site-footer { padding: 1.5rem 0; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.footer-inner p { margin: 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button:hover { transform: none; }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
    border: 1px solid var(--line);
    background: var(--sand);
    color: var(--ink);
    border-radius: 999px;
    padding: .65rem .9rem;
    font-weight: 900;
  }
  .site-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: .7rem;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .hero { padding-top: 4rem; min-height: auto; }
  .hero-grid, .split, .split.reverse, .symbol-grid, .form-layout, .form-layout.reverse {
    grid-template-columns: 1fr;
  }
  .split.reverse > :first-child, .form-layout.reverse > :first-child { order: 0; }
  .living-card { min-height: 440px; }
  .cards.four, .cards.three, .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-intro { position: static; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .header-inner { min-height: 68px; }
  .site-nav { top: 68px; left: 14px; right: 14px; }
  h1 { font-size: clamp(3rem, 17vw, 4.3rem); }
  .impact-strip, .principles, .cards.four, .cards.three, .timeline, .form-row, .need-grid { grid-template-columns: 1fr; }
  .capacity-table div { grid-template-columns: 1fr; gap: .25rem; }
  .symbol-visual, .image-panel, .farm-frame { min-height: 320px; }
  .hero-actions, .contact-actions { flex-direction: column; }
  .button { width: 100%; }
}
