:root {
  --green-900: #1f3d1f;
  --green-700: #2f5d2f;
  --green-600: #3a7a3a;
  --green-500: #4c9a4c;
  --green-50:  #eef5ec;
  --earth:     #8a6d3b;
  --cream:     #faf7f0;
  --ink:       #23291f;
  --muted:     #5b6655;
  --line:      #e2ddd0;
  --white:     #ffffff;
  --radius:    14px;
  --shadow:    0 10px 30px rgba(31, 61, 31, 0.08);
  --max:       1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.2;
  color: var(--green-900);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2rem, 5vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1rem; color: var(--muted); }

a { color: var(--green-700); }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green-900);
  text-decoration: none;
}

.brand-mark { font-size: 1.4rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}

.nav-links a:hover { color: var(--green-600); }

.nav-cta {
  background: var(--green-600);
  color: var(--white) !important;
  padding: 0.5rem 1rem;
  border-radius: 999px;
}

.nav-cta:hover { background: var(--green-700); }

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--green-900);
  border-radius: 2px;
  transition: 0.25s;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.2s ease;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--green-600);
  color: var(--white);
}

.btn-primary:hover { background: var(--green-700); }

.btn-ghost {
  background: transparent;
  border-color: var(--green-600);
  color: var(--green-700);
}

.btn-block { width: 100%; border: 0; }

/* Hero */
.hero {
  position: relative;
  background:
    linear-gradient(rgba(31, 61, 31, 0.55), rgba(31, 61, 31, 0.45)),
    url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: var(--white);
}

.hero-inner {
  padding: 6rem 1.25rem 6.5rem;
  max-width: 820px;
}

.hero .eyebrow { color: #d6e7cf; }

.hero h1 { color: var(--white); }

.hero .lead {
  color: #f0f4ec;
  font-size: 1.2rem;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero .btn-ghost {
  border-color: var(--white);
  color: var(--white);
}

/* Sections */
.section { padding: 5rem 0; }
.section-alt { background: var(--green-50); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--green-600);
  margin-bottom: 0.5rem;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-num {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--green-700);
}

.stat-label { font-size: 0.9rem; color: var(--muted); }

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.card:hover { transform: translateY(-4px); }

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.card h3 { margin-bottom: 0.4rem; }

/* Checklist */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.85rem;
  color: var(--ink);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--white);
  background: var(--green-500);
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Quote */
.quote {
  margin: 0;
  background: var(--green-700);
  color: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote p {
  color: #eef5ec;
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-style: italic;
}

.quote footer { color: #cfe0c6; font-weight: 600; }

/* Contact */
.contact-grid { align-items: start; }

.contact-info {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.contact-info li { margin-bottom: 1.1rem; color: var(--muted); }
.contact-info strong { color: var(--green-900); }
.contact-info a { color: var(--green-700); text-decoration: none; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.field { margin-bottom: 1.1rem; }

.field label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: var(--green-900);
  font-size: 0.95rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(76, 154, 76, 0.15);
}

.field textarea { resize: vertical; }

.hidden-field { display: none; }

.form-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0.9rem 0 0;
}

.cf-turnstile { margin-bottom: 1rem; }

.form-status {
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-status:empty { display: none; }
.form-status--info { color: var(--muted); }
.form-status--success { color: var(--green-600); }
.form-status--error { color: #b4321f; }

/* Footer */
.site-footer {
  background: var(--green-900);
  color: #d6e2d0;
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
}

.footer-top { color: #d6e2d0; text-decoration: none; }
.footer-top:hover { color: var(--white); }

/* Responsive */
@media (max-width: 820px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.25rem 1rem;
    display: none;
  }

  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.7rem 0; width: 100%; }
  .nav-cta { text-align: center; margin-top: 0.5rem; }

  .grid-2,
  .cards,
  .stats { grid-template-columns: 1fr; }

  .hero-inner { padding: 4rem 1.25rem; }
}
