:root {
  --bg: #faf7f2;
  --bg-warm: #f3ede3;
  --fg: #2c2416;
  --fg-muted: #6b5e4d;
  --accent: #5c7a3a;
  --accent-light: #e8f0de;
  --accent-dark: #3d5427;
  --terra: #c4814a;
  --terra-light: #f5e6d6;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
  --max-w: 1100px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  padding: 8rem 2rem 6rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, var(--accent-light) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 20%, var(--terra-light) 0%, transparent 50%),
    var(--bg);
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.08;
  color: var(--fg);
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 520px;
  font-weight: 300;
}

.hero-accent {
  position: absolute;
  top: 0;
  right: -5%;
  width: 40%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0.12;
  z-index: 1;
}

.hero-stripe {
  height: 18px;
  border-radius: 9px;
  background: var(--accent);
}

.hero-stripe:nth-child(1) { width: 80%; margin-left: auto; }
.hero-stripe:nth-child(2) { width: 60%; margin-left: auto; }
.hero-stripe:nth-child(3) { width: 90%; margin-left: auto; }

/* ---- STORY ---- */
.story {
  padding: 6rem 2rem;
  background: var(--fg);
  color: var(--bg);
}

.story-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.story-label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.5rem;
}

.story h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 680px;
}

.story p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(250, 247, 242, 0.7);
  max-width: 600px;
  font-weight: 300;
}

/* ---- PILLARS ---- */
.pillars {
  padding: 6rem 2rem;
  background: var(--bg-warm);
}

.pillars-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.pillar {
  padding: 2rem 0;
  border-top: 3px solid var(--accent);
}

.pillar-num {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.pillar h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.25;
  margin-bottom: 0.8rem;
  color: var(--fg);
}

.pillar p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--fg-muted);
  font-weight: 300;
}

/* ---- COMMUNITY ---- */
.community {
  padding: 6rem 2rem;
  background:
    radial-gradient(ellipse 60% 50% at 80% 70%, var(--terra-light) 0%, transparent 50%),
    var(--bg);
}

.community-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.community-label {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 1.5rem;
}

.community h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.community p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--fg-muted);
  max-width: 600px;
  font-weight: 300;
  margin-bottom: 3rem;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.community-stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(92, 122, 58, 0.15);
}

.stat-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--accent-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
  font-weight: 400;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 4rem 2rem;
  background: var(--fg);
  color: var(--bg);
  text-align: center;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.6);
  font-weight: 300;
  margin-bottom: 0.3rem;
}

.footer-location {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.4);
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* ---- NAV ---- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(92, 122, 58, 0.12);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-brand {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--fg);
  text-decoration: none;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-link {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: color 0.18s ease, background 0.18s ease;
}

.nav-link:hover {
  color: var(--fg);
  background: var(--accent-light);
}

.nav-link--cta {
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1.1rem;
}

.nav-link--cta:hover {
  background: var(--accent-dark);
  color: #fff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
}

.nav-drawer {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 2rem;
}

.nav-drawer[aria-hidden="false"] {
  display: block;
}

.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-drawer ul a {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--fg);
  text-decoration: none;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero--farms {
  background:
    radial-gradient(ellipse 70% 60% at 10% 100%, var(--accent-light) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 10%, rgba(196, 129, 74, 0.12) 0%, transparent 50%),
    var(--bg);
}

.page-hero--products {
  background:
    radial-gradient(ellipse 60% 55% at 80% 90%, var(--terra-light) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 15% 15%, var(--accent-light) 0%, transparent 50%),
    var(--bg);
}

.page-hero--contact {
  background:
    radial-gradient(ellipse 65% 55% at 50% 100%, var(--accent-light) 0%, transparent 55%),
    var(--bg);
}

.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ---- FARMS PAGE ---- */
.farms-section {
  padding: 4rem 2rem 6rem;
}

.farms-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.farms-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(92, 122, 58, 0.15);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.farms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.farm-card {
  background: #fff;
  border: 1px solid rgba(92, 122, 58, 0.14);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.farm-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(44, 36, 22, 0.08);
}

.farm-card--soon {
  background: var(--accent-light);
  border-color: var(--accent);
  border-style: dashed;
}

.farm-dist {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 0.2rem 0.65rem;
  border-radius: 2rem;
  display: inline-block;
  width: fit-content;
  margin-bottom: 0.5rem;
}

.farm-card--soon .farm-dist {
  background: rgba(92, 122, 58, 0.15);
}

.farm-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--fg);
  line-height: 1.2;
}

.farm-loc {
  font-size: 0.82rem;
  color: var(--terra);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.farm-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
  flex: 1;
  margin-top: 0.25rem;
}

.farm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.farm-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg-warm);
  padding: 0.2rem 0.6rem;
  border-radius: 2rem;
  border: 1px solid rgba(44, 36, 22, 0.1);
}

/* ---- PRODUCTS PAGE ---- */
.products-section {
  padding: 4rem 2rem 0;
}

.products-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.product-category {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(92, 122, 58, 0.12);
}

.product-category:last-child {
  border-bottom: none;
}

.cat-header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.cat-num {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  padding-top: 0.35rem;
  min-width: 2.5rem;
}

.cat-name {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.cat-local {
  font-size: 0.85rem;
  color: var(--terra);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.cat-items {
  list-style: none;
  padding-left: 4.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 3rem;
}

.cat-items li {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.5;
  padding-left: 1.2rem;
  position: relative;
  font-weight: 300;
}

.cat-items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.products-note-section {
  margin-top: 4rem;
  padding: 4rem 2rem;
  background: var(--fg);
}

.products-note-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.products-note {
  font-size: 1rem;
  color: rgba(250, 247, 242, 0.7);
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
  min-width: 260px;
}

/* ---- CONTACT PAGE ---- */
.contact-section {
  padding: 4rem 2rem 6rem;
}

.contact-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-bottom: 5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.info-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.info-value {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--fg);
  line-height: 1.4;
}

.info-link {
  font-size: 0.85rem;
  color: var(--accent-dark);
  text-decoration: none;
  font-weight: 500;
  margin-top: 0.2rem;
}

.info-link:hover { text-decoration: underline; }

.info-email {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--accent-dark);
  text-decoration: none;
}

.info-email:hover { text-decoration: underline; }

.info-note {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
  font-weight: 300;
  max-width: 360px;
}

/* ---- SIGNUP CARD ---- */
.signup-card {
  background: var(--fg);
  color: var(--bg);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.signup-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1.2;
}

.signup-body {
  font-size: 0.95rem;
  color: rgba(250, 247, 242, 0.7);
  line-height: 1.6;
  font-weight: 300;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(250, 247, 242, 0.6);
  text-transform: uppercase;
}

.required { color: var(--terra); }

.form-input {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--fg);
  background: var(--bg);
  border: 1.5px solid rgba(250, 247, 242, 0.15);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.18s ease;
}

.form-input:focus {
  border-color: var(--accent);
}

.form-input::placeholder {
  color: var(--fg-muted);
}

.signup-privacy {
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.4);
  line-height: 1.5;
}

.form-success {
  display: none;
  align-items: center;
  gap: 0.75rem;
  color: var(--accent-light);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 1rem;
  background: rgba(92, 122, 58, 0.2);
  border-radius: 8px;
  border: 1px solid rgba(92, 122, 58, 0.3);
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
  background: var(--accent-light);
  border: none;
  border-radius: 8px;
  padding: 0.8rem 1.6rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--accent);
  color: #fff;
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ---- MAP ---- */
.map-section {
  border-top: 1px solid rgba(92, 122, 58, 0.12);
  padding-top: 3rem;
}

.map-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.25rem;
}

.map-embed {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-warm);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .farms-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-items { grid-template-columns: 1fr; padding-left: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .products-note-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 5rem 1.5rem 4rem; }
  .hero h1 br { display: none; }
  .hero-accent { display: none; }
  .page-hero { padding: 4rem 1.5rem 3rem; }

  .story { padding: 4rem 1.5rem; }
  .story h2 { font-size: 1.6rem; }

  .pillars { padding: 4rem 1.5rem; }
  .pillars-inner { grid-template-columns: 1fr; gap: 2rem; }

  .community { padding: 4rem 1.5rem; }
  .community h2 { font-size: 1.6rem; }
  .community-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .site-footer { padding: 3rem 1.5rem; }

  .farms-grid { grid-template-columns: 1fr; }
  .farms-section { padding: 3rem 1.5rem 4rem; }

  .products-section { padding: 3rem 1.5rem 0; }
  .cat-header { flex-direction: column; gap: 0.5rem; }
  .cat-items { padding-left: 0; }

  .contact-section { padding: 3rem 1.5rem 4rem; }
  .contact-grid { gap: 2.5rem; }

  .map-embed iframe { height: 260px; }
}