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

:root {
  --green:       #2b3a16;
  --lime:        #c8d742;
  --light-lime:  #d8f172;
  --pale-lime:   #e8f8a8;
  --text-dark:   #2d3d18;
  --text-light:  #c8d742;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  background: #fff;
}

/* home page fills full viewport height */
body.home {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.home main {
  flex: 1;
  display: flex;
  flex-direction: column;
}
body.home .hero {
  flex: 1;
  height: auto;
}

body.home .hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── NAV ── */
nav {
  background: var(--green);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  height: 90px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--lime);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-right: auto;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--lime);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 0.75; }

/* hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--lime);
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 420px;
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 55, 20, 0.38);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.hero-overlay h1 {
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 700;
  max-width: 700px;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.hero-overlay .btn {
  margin-top: 1.75rem;
}

/* ── BUTTON ── */
.btn {
  display: inline-block;
  background: var(--lime);
  color: var(--green);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.btn:hover {
  background: var(--light-lime);
  color: var(--text-dark);
}

/* ── PAGE SECTIONS ── */
.section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-lime {
  background: var(--light-lime);
  padding: 4rem 2rem;
}

.section-lime .inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-pale {
  background: var(--pale-lime);
  padding: 4rem 2rem;
}

.section-pale .inner {
  max-width: 1100px;
  margin: 0 auto;
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
}

p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

p:last-child { margin-bottom: 0; }

/* ── ABOUT SPLIT ── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}

.about-text {
  background: var(--light-lime);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-photo {
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: #fff;
  border-left: 4px solid var(--lime);
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  border-radius: 2px;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--green);
  padding: 2.5rem 2rem;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  color: var(--lime);
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.85;
  margin-top: 0.25rem;
}

/* ── PRIVACY POLICY ── */
.prose h2 { margin-top: 2rem; font-size: 1.3rem; }
.prose h3 { margin-top: 1.5rem; }
.prose ul { margin: 0.75rem 0 1rem 1.5rem; }
.prose li { line-height: 1.7; margin-bottom: 0.25rem; }
.prose a { color: var(--green); }

/* ── FOOTER ── */
footer {
  background: var(--green);
  color: var(--lime);
  padding: 2.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}


.footer-links a {
  color: var(--lime);
  text-decoration: underline;
  font-size: 0.85rem;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-links a:hover { opacity: 1; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  nav { height: 70px; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--green);
    flex-direction: column;
    padding: 1rem 2rem 1.5rem;
    gap: 1.25rem;
    border-top: 1px solid rgba(200,215,66,0.2);
  }

  .nav-links.open { display: flex; }

  .about-split { grid-template-columns: 1fr; }

  .about-text { padding: 2.5rem 1.5rem; }

  .about-photo { height: 480px; }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .stats-bar { gap: 2rem; }

  footer {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero { height: 55vh; }
}
