:root {
  --bg: #faf8f4;
  --bg-alt: #f0ece3;
  --fg: #1a2e1a;
  --fg-muted: #5a6e5a;
  --accent: #d4851a;
  --accent-light: #f5e6d0;
  --warm-gray: #c8bfb0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, blockquote {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  line-height: 1.15;
}

/* NAV */
.site-nav {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--warm-gray);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.nav-brand {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
}
.nav-tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 5rem 2rem 4rem;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  font-weight: 500;
}
.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1.5rem;
  font-optical-sizing: auto;
}
.hero-lede {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
}

/* Hero art — rolling farm scene */
.hero-art {
  position: relative;
  height: 380px;
  width: 100%;
}
.art-sun {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, #f5c842 30%, #f5c84255 70%, transparent 100%);
  box-shadow: 0 0 40px 16px #f5c84233;
}
.art-hills {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  height: 200px;
}
.hill {
  position: absolute;
  bottom: 0;
  border-radius: 50% 50% 0 0;
}
.hill-1 {
  left: -10%;
  width: 55%;
  height: 140px;
  background: #3d7a3d;
  opacity: 0.85;
}
.hill-2 {
  left: 30%;
  width: 60%;
  height: 120px;
  background: #2d5e2d;
  opacity: 0.7;
}
.hill-3 {
  left: 55%;
  width: 50%;
  height: 100px;
  background: #4a8a4a;
  opacity: 0.6;
}
.art-barn {
  position: absolute;
  bottom: 120px;
  left: 20%;
  width: 60px;
  height: 50px;
}
.barn-body {
  position: absolute;
  bottom: 0;
  width: 60px;
  height: 36px;
  background: #7a3020;
  border-radius: 2px;
}
.barn-roof {
  position: absolute;
  bottom: 36px;
  left: -4px;
  width: 0;
  height: 0;
  border-left: 34px solid transparent;
  border-right: 34px solid transparent;
  border-bottom: 22px solid #4a1a10;
}
.barn-door {
  position: absolute;
  bottom: 0;
  left: 22px;
  width: 16px;
  height: 20px;
  background: #3d1a0a;
  border-radius: 2px 2px 0 0;
}
.art-cow-group {
  position: absolute;
  bottom: 60px;
  right: 10%;
  display: flex;
  gap: 12px;
  align-items: flex-end;
}
.cow {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cow-body {
  width: 36px;
  height: 24px;
  background: #f0ece3;
  border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
  border: 2px solid #1a2e1a;
}
.cow-head {
  width: 16px;
  height: 14px;
  background: #f0ece3;
  border-radius: 50%;
  border: 2px solid #1a2e1a;
  margin-bottom: 2px;
  margin-left: -14px;
  align-self: flex-start;
}
.cow-spots {
  position: absolute;
  top: 4px;
  left: 6px;
  width: 10px;
  height: 8px;
  background: #1a2e1a;
  border-radius: 50%;
  opacity: 0.6;
}
.cow-1 { transform: translateY(-10px); }
.cow-2 { transform: translateY(0); }
.cow-3 { transform: translateY(-20px); }

/* FEATURES */
.features {
  padding: 5rem 2rem;
  background: var(--bg-alt);
}
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-header { text-align: center; margin-bottom: 4rem; }
.features-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}
.features-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
}
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--warm-gray);
  border-radius: 12px;
  padding: 2rem;
}
.feature-icon { margin-bottom: 1.25rem; }
.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.feature-desc {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* MANIFESTO */
.manifesto {
  padding: 5rem 2rem;
  background: var(--fg);
  color: var(--bg);
}
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-quote {
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}
blockquote p {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 2rem;
}
.manifesto-body {
  font-size: 1rem;
  line-height: 1.75;
  color: #c8c0b4;
  margin-bottom: 1rem;
}
.manifesto-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding-top: 3rem;
  border-top: 1px solid #3a5a3a;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8a9a8a;
}

/* CLOSING */
.closing {
  padding: 5rem 2rem;
  background: var(--bg);
}
.closing-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
}
.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
}
.closing-pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--fg);
}
.pillar-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FOOTER */
.site-footer {
  padding: 2rem;
  border-top: 1px solid var(--warm-gray);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-name {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 700;
}
.footer-tagline { font-size: 0.8rem; color: var(--fg-muted); }
.footer-copy { font-size: 0.8rem; color: var(--fg-muted); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-art { display: none; }
  .feature-cards { grid-template-columns: 1fr; }
  .manifesto-stats { flex-direction: column; gap: 2rem; align-items: center; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .features { padding: 3rem 1.5rem; }
  .manifesto { padding: 3rem 1.5rem; }
  .closing { padding: 3rem 1.5rem; }
  .hero { padding: 3rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .feature-cards { gap: 1rem; }
  .feature-card { padding: 1.5rem; }
}