:root {
  --green: #8dad2d;
  --green-dark: #5e7719;
  --green-tint: #eef3e2;
  --green-light: #b6c87e;
  --dark: #1c2614;
  --dark-2: #2a3520;
  --cream: #f7f5ec;
  --white: #ffffff;
  --text: #2a2e22;
  --text-muted: #5d6253;
  --border: #d6d3c4;
  --nav-h: 60px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Bitter', Georgia, serif;
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

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

.section-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-top: 0.5rem;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container.narrow {
  max-width: 720px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.875rem 1.5rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease, transform 150ms ease;
  text-align: center;
  min-height: 44px;
}

.btn:active {
  transform: scale(0.98);
}

.btn-filled {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

.btn-filled:hover {
  background: var(--dark);
  border-color: var(--dark);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--green-dark);
}

.btn-outline:hover {
  background: var(--green-tint);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

/* Nav */
.nav {
  position: sticky;
  top: 42px;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.0625rem;
  color: var(--dark);
  white-space: nowrap;
}

.wordmark .sprout {
  color: var(--green);
  flex-shrink: 0;
}

.nav-links {
  display: none;
  margin-left: auto;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  transition: color 200ms ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-dark);
  transition: width 200ms ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: none;
  margin-left: auto;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: transform 250ms ease, opacity 200ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav menu */
.nav-links.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: calc(42px + var(--nav-h));
  left: 0;
  right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  gap: 0;
}

.nav-links.open a {
  padding: 0.75rem 0;
  font-size: 1rem;
  border-bottom: 1px solid var(--border);
  width: 100%;
}

.nav-links.open a::after {
  display: none;
}

.nav-links.open a:last-child {
  border-bottom: none;
}

/* Hero */
.hero {
  background: var(--cream);
  padding-top: clamp(3rem, 8vh, 6rem);
  padding-bottom: 0;
  text-align: center;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 9vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 1rem;
  color: var(--dark);
}

.hero-sub {
  font-size: clamp(1.0625rem, 2.5vw, 1.375rem);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  padding-bottom: clamp(2.5rem, 5vh, 4rem);
}

.hero-ctas .btn {
  width: 100%;
  max-width: 320px;
}

.hero-banner {
  width: 100%;
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  max-width: 1600px;
  height: auto;
  margin: 0 auto;
}

/* Trust */
.trust {
  background: var(--white);
  padding: clamp(4rem, 8vh, 6rem) 0;
}

.trust-grid {
  display: grid;
  gap: 2.5rem;
}

.trust-text p {
  margin-bottom: 1rem;
  color: var(--text);
}

.trust-text p:last-child {
  margin-bottom: 0;
}

.trust-checklist {
  border-left: 3px solid var(--green);
  padding-left: 1.5rem;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.checklist li {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  padding-left: 1.75rem;
  position: relative;
}

.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--green-dark);
  border-bottom: 2px solid var(--green-dark);
  transform: rotate(-45deg);
}

/* Services */
.services {
  background: var(--cream);
  padding: clamp(4rem, 8vh, 6rem) 0;
}

.services-grid {
  display: grid;
  gap: 1.5rem;
}

.service-featured {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
}

.service-featured img {
  width: 100%;
  max-width: 979px;
  height: auto;
}

.service-featured-body {
  padding: 2rem;
}

.service-featured-body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.625rem;
}

.service-featured-body p {
  color: var(--text-muted);
  max-width: 50ch;
}

.service-compact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-compact {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.service-compact svg {
  color: var(--green-dark);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.service-compact h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.service-compact p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Visit */
.visit {
  background: var(--white);
  padding: clamp(4rem, 8vh, 6rem) 0;
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  margin-bottom: 3rem;
  padding: 2.5rem 0;
  border-top: 2px solid var(--green-tint);
  border-bottom: 2px solid var(--green-tint);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-num {
  font-size: clamp(2.5rem, 7vw, 3.5rem);
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 280px;
}

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

.photo-grid figure {
  overflow: hidden;
  border: 1px solid var(--border);
}

.photo-grid img {
  width: 100%;
  height: auto;
}

.visit-notes {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.visit-note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.visit-note svg {
  color: var(--green-dark);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.visit-note p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* About */
.about-narrative {
  background: var(--green-tint);
  padding: clamp(4rem, 8vh, 6rem) 0;
  text-align: center;
}

.about-narrative .eyebrow {
  margin-bottom: 0.75rem;
}

.about-narrative .section-title {
  margin-bottom: 1.5rem;
}

.about-narrative p {
  margin-bottom: 1rem;
  color: var(--text);
  text-align: left;
}

.about-narrative p:last-child {
  margin-bottom: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Vendors */
.vendors {
  background: var(--white);
  padding: clamp(4rem, 8vh, 6rem) 0;
}

.vendors-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.vendors-text p {
  color: var(--text-muted);
  margin-top: 0.5rem;
  max-width: 50ch;
}

.vendors-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.vendors-cta .btn {
  width: 100%;
  max-width: 280px;
}

/* CTA Band */
.cta-band {
  background: var(--dark);
  padding: clamp(4rem, 10vh, 7rem) 0;
  text-align: center;
}

.cta-title {
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 1rem;
}

.cta-sub {
  color: rgba(247,245,236,0.8);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.cta-band-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cta-band-buttons .btn {
  width: 100%;
  max-width: 300px;
}

.cta-note {
  font-size: 0.875rem;
  color: rgba(247,245,236,0.5);
}

/* Footer */
.footer {
  background: var(--dark-2);
  color: rgba(247,245,236,0.85);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-brand p {
  font-size: 0.9375rem;
  color: rgba(247,245,236,0.6);
  margin: 0.75rem 0 1.25rem;
  max-width: 280px;
}

.footer-wordmark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.0625rem;
  color: var(--cream);
}

.footer-wordmark .sprout {
  color: var(--green-light);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(247,245,236,0.2);
  color: rgba(247,245,236,0.7);
  transition: border-color 200ms ease, color 200ms ease;
}

.footer-social a:hover {
  border-color: var(--green-light);
  color: var(--green-light);
}

.footer-col h4 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-light);
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.9375rem;
  color: rgba(247,245,236,0.7);
  padding: 0.3rem 0;
  transition: color 200ms ease;
}

.footer-col a:hover {
  color: var(--cream);
}

.footer-line {
  font-size: 0.9375rem;
  color: rgba(247,245,236,0.6);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.footer-link {
  font-size: 0.9375rem;
}

.footer-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding: 1.5rem 1.5rem 0;
  border-top: 1px solid rgba(247,245,236,0.12);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(247,245,236,0.45);
  line-height: 1.5;
}

/* Scroll reveal (applied by JS) */
.reveal-hidden {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

/* Responsive */
@media (min-width: 700px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: inline-flex;
    margin-left: 0;
  }

  .hero-ctas {
    flex-direction: row;
    justify-content: center;
  }

  .hero-ctas .btn {
    width: auto;
    max-width: none;
  }

  .trust-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 3.5rem;
  }

  .services-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: start;
  }

  .stat-row {
    flex-direction: row;
    justify-content: center;
    gap: 4rem;
  }

  .photo-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .pg-wide {
    grid-column: 1 / -1;
  }

  .pg-tall img,
  .pg-mid img {
    width: 100%;
  }

  .visit-notes {
    flex-direction: row;
    gap: 2rem;
  }