:root {
  --forest: #2f4a2b;
  --forest-dark: #213520;
  --bark: #6b4a2f;
  --leaf: #7a9b57;
  --cream: #f7f4ee;
  --text: #2a2a25;
  --muted: #6b6a63;
  --white: #ffffff;
  --radius: 8px;
  --max-width: 1100px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

a {
  color: var(--forest);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
.site-header {
  background: var(--forest-dark);
  color: var(--white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.logo {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo:hover {
  text-decoration: none;
  opacity: 0.9;
}

.nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--white);
  font-weight: 500;
}

.phone-cta {
  background: var(--leaf);
  color: var(--forest-dark);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius);
}

.phone-cta:hover {
  background: #8fb56b;
  text-decoration: none;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.4rem;
  margin: 0 0 16px;
}

.hero p {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 28px;
  color: #e5e9df;
}

.btn {
  display: inline-block;
  background: var(--leaf);
  color: var(--forest-dark);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1.1rem;
}

.btn:hover {
  background: #8fb56b;
  text-decoration: none;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

/* Sections */
section {
  padding: 50px 20px;
}

section h2 {
  font-size: 1.9rem;
  margin-bottom: 8px;
}

.section-intro {
  color: var(--muted);
  max-width: 700px;
  margin-bottom: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.card h3 {
  margin-top: 0;
  color: var(--forest);
}

.cta-band {
  background: var(--leaf);
  color: var(--forest-dark);
  text-align: center;
}

.cta-band h2 {
  margin-top: 0;
}

.cta-band .btn {
  background: var(--forest-dark);
  color: var(--white);
}

.cta-band .btn:hover {
  background: var(--forest);
}

/* Service area lists */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.location-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 20px;
  border-left: 4px solid var(--leaf);
}

.location-card h3 {
  margin: 0 0 4px;
}

.location-card .meta {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Blog */
.post-list-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 20px 0;
}

.post-list-item h3 {
  margin: 0 0 4px;
}

.post-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

article.post {
  max-width: 720px;
  margin: 0 auto;
}

article.post h1 {
  margin-bottom: 4px;
}

/* Forms */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  margin-top: 16px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d8d5cc;
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: inherit;
}

.contact-form button {
  margin-top: 22px;
  width: 100%;
}

/* Footer */
.site-footer {
  background: var(--forest-dark);
  color: #cfd6c9;
  margin-top: 40px;
}

.footer-inner {
  display: grid;
  gap: 24px;
  padding: 36px 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-inner a {
  color: #cfd6c9;
}

.footer-legal {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  color: #97a18f;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 1.8rem;
  }
}
