:root {
  --brand: #2d5016;
  --brand-light: #4f8a2f;
  --brand-lighter: #eaf3e2;
  --ink: #1a1c1e;
  --muted: #64665f;
  --bg: #faf9f6;
  --card: #ffffff;
  --border: #e7e5de;
}

* { box-sizing: border-box; }

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

h1, h2, h3 {
  font-family: "Sora", "Inter", -apple-system, sans-serif;
  letter-spacing: -0.01em;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background: var(--brand);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: #fff;
  text-decoration: none;
}

.logo svg { width: 30px; height: 30px; flex-shrink: 0; }

nav { display: flex; align-items: center; }

nav a {
  margin-left: 24px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  transition: color 0.15s ease;
}

nav a:hover { color: #fff; }

nav a.cta {
  background: #fff;
  color: var(--brand);
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.15s ease, transform 0.15s ease;
  display: inline-block;
}

nav a.cta:hover {
  background: var(--brand-lighter);
  transform: translateY(-1px);
}

main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px 60px;
}

.hero {
  position: relative;
  overflow: hidden;
  margin: 0 -24px 60px;
  padding: 110px 24px 120px;
  text-align: center;
  color: #fff;
  border-radius: 0 0 32px 32px;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 40, 10, 0.88) 0%, rgba(20, 40, 10, 0.8) 55%, rgba(20, 40, 10, 0.94) 100%);
  z-index: -1;
}

.hero h1 {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  max-width: 780px;
  margin: 0 auto 18px;
  color: #fff;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
}

.hero .badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.hero .badges span {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
}

.cta-large {
  display: inline-block;
  margin-top: 28px;
  background: var(--brand-light);
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.cta-large:hover {
  background: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(45, 80, 22, 0.45);
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 60px 0;
}

.value-card, .service-card, .benefit-card, .testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.value-card:hover, .service-card:hover, .benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(45, 80, 22, 0.1);
  border-color: transparent;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-lighter);
  color: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.icon-badge svg { width: 22px; height: 22px; }

.value-card h3, .service-card h3, .benefit-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--brand);
}

.value-card p, .service-card p, .benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.services-preview ul {
  list-style: none;
  padding: 0;
}

.services-preview li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.services-preview a {
  color: var(--brand-light);
  font-weight: 600;
  text-decoration: none;
}

.cta-band {
  text-align: center;
  margin-top: 60px;
  padding: 48px;
  background: var(--brand);
  color: #fff;
  border-radius: 20px;
}

.cta-band h2 { color: #fff; margin-top: 0; }
.cta-band .cta-large { background: #fff; color: var(--brand); box-shadow: none; }
.cta-band .cta-large:hover { background: var(--brand-lighter); }

.page-header { margin-top: 48px; }

.page-header h1 {
  color: var(--brand);
  font-size: 32px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  max-width: 480px;
  gap: 6px;
}

.lead-form label {
  font-weight: 600;
  margin-top: 12px;
  font-size: 14px;
}

.lead-form input,
.lead-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  background: var(--card);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--brand-light);
  box-shadow: 0 0 0 3px rgba(79, 138, 47, 0.15);
}

.lead-form button {
  border: none;
  cursor: pointer;
  margin-top: 20px;
  width: fit-content;
}

.flash {
  background: var(--brand-lighter);
  border: 1px solid var(--brand-light);
  color: var(--brand);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 24px;
  font-weight: 500;
}

.about-body p {
  font-size: 16px;
  color: var(--ink);
  max-width: 720px;
}

.image-band {
  position: relative;
  overflow: hidden;
  margin: 60px -24px;
  border-radius: 24px;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
}

.image-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.image-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 40, 10, 0.88) 0%, rgba(20, 40, 10, 0.15) 60%);
  z-index: -1;
}

.image-band .caption {
  padding: 32px;
  max-width: 520px;
}

.image-band .caption h2 { color: #fff; margin: 0 0 8px; }
.image-band .caption p { color: rgba(255, 255, 255, 0.88); margin: 0; font-size: 15px; }

.photo-feature {
  margin: 44px 0;
}

.photo-feature img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.photo-feature figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 640px) {
  .image-band { min-height: 240px; margin: 40px -24px; border-radius: 16px; }
  .photo-feature img { max-height: 220px; }
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-ghost {
  display: inline-block;
  margin-top: 28px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: background 0.15s ease, border-color 0.15s ease;
}

.cta-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.7);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 60px 0;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 28px 24px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 14px;
}

.step h3 { margin: 0 0 6px; font-size: 16px; color: var(--brand); }
.step p { margin: 0; color: var(--muted); font-size: 14.5px; }

.benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 60px 0;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 60px 0;
}

.testimonial-card { display: flex; flex-direction: column; }

.testimonial-card .quote {
  font-size: 15px;
  color: var(--ink);
  font-style: italic;
  flex: 1;
  margin: 0 0 16px;
}

.testimonial-card .quote.placeholder { color: var(--muted); }

.testimonial-card .attribution { font-size: 13.5px; color: var(--muted); }
.testimonial-card .attribution strong { display: block; color: var(--brand); font-size: 14.5px; font-style: normal; }

.faq {
  margin: 60px 0;
}

.faq details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--brand);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  font-size: 20px;
  color: var(--brand-light);
  transition: transform 0.15s ease;
}

.faq details[open] summary::after { transform: rotate(45deg); }

.faq p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14.5px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  text-align: center;
  padding: 32px 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  background: var(--brand);
}

@media (max-width: 640px) {
  .hero h1 { font-size: 30px; }
  .values, .services-grid, .steps, .testimonials { grid-template-columns: 1fr; }
  .site-header { padding: 16px 20px; }
}
