:root {
  --green-dark: #1f3d2b;
  --green: #2e5e3e;
  --green-light: #4d8a5f;
  --accent: #e8a13d;
  --cream: #f7f5ef;
  --text: #202722;
  --max-width: 1140px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  scroll-behavior: smooth;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--green-dark);
  margin-top: 0;
}

a {
  color: inherit;
}

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

/* Header / nav */
header {
  background: var(--green-dark);
  color: var(--cream);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  color: var(--cream);
}

.logo span {
  color: var(--accent);
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: var(--cream);
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.15s;
}

nav a:hover,
nav a.active {
  opacity: 1;
  border-bottom: 2px solid var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: var(--green-dark) !important;
  padding: 8px 18px;
  border-radius: 24px;
  font-weight: bold !important;
  opacity: 1 !important;
  border-bottom: none !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(20, 40, 26, 0.65), rgba(20, 40, 26, 0.65)),
    repeating-linear-gradient(120deg, #274d33, #274d33 50px, #2f5e3d 50px, #2f5e3d 100px);
  color: var(--cream);
  text-align: center;
  padding: 100px 20px 90px;
}

.hero h1 {
  color: var(--cream);
  font-size: 2.7rem;
  max-width: 700px;
  margin: 0 auto 16px;
}

.hero p {
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 30px;
  opacity: 0.95;
}

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

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--green-dark);
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s;
}

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

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

.btn-outline:hover {
  background: var(--cream);
  color: var(--green-dark);
}

/* Trust bar */
.trust-bar {
  background: var(--green);
  color: var(--cream);
  padding: 22px 0;
}

.trust-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
  text-align: center;
  font-weight: 600;
}

/* Sections */
section {
  padding: 70px 0;
}

.section-alt {
  background: #eef0e6;
}

.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 44px;
}

.section-header p {
  color: var(--green);
}

/* Services */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  background: white;
  padding: 30px 24px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(31, 61, 43, 0.08);
}

.card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.card a.link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
}

.card a.link:hover {
  text-decoration: underline;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  background: repeating-linear-gradient(135deg, #d7dfc9, #d7dfc9 20px, #e6ecd9 20px, #e6ecd9 40px);
  border-radius: 8px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-family: Georgia, serif;
  text-align: center;
  padding: 10px;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testimonial {
  background: white;
  padding: 26px 24px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(31, 61, 43, 0.08);
}

.stars {
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.testimonial .author {
  margin-top: 14px;
  font-weight: 700;
  color: var(--green-dark);
}

.testimonial .location {
  font-size: 0.85rem;
  color: var(--green);
}

/* Service area */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  list-style: none;
  padding: 0;
}

.area-list li {
  background: white;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(31, 61, 43, 0.08);
}

/* Quote form */
.quote-section {
  background: var(--green-dark);
  color: var(--cream);
}

.quote-section h2 {
  color: var(--cream);
}

.quote-section .section-header p {
  color: #cfe0d3;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.info-list li {
  margin-bottom: 18px;
}

.info-list strong {
  display: block;
  color: var(--accent);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  padding: 26px;
  border-radius: 10px;
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  padding: 12px;
  border: 1px solid #446950;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
  background: white;
  width: 100%;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.form-status {
  font-weight: 600;
  min-height: 1.4em;
  color: var(--cream);
}

.form-status.success {
  color: var(--accent);
}

.form-status.error {
  color: #e88b7d;
}

/* Footer */
footer {
  background: #142118;
  color: var(--cream);
  padding: 40px 0 24px;
  text-align: center;
}

footer .fine-print {
  margin-top: 20px;
  font-size: 0.82rem;
  opacity: 0.6;
}

footer .social a {
  margin: 0 10px;
  text-decoration: none;
  color: var(--cream);
  opacity: 0.8;
}

/* Sticky mobile call button */
.sticky-call {
  display: none;
}

/* Responsive */
@media (max-width: 760px) {
  .grid-3,
  .gallery-grid,
  .testimonial-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  nav {
    display: none;
    width: 100%;
  }

  nav.open {
    display: block;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 0;
  }

  nav ul li {
    width: 100%;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-cta {
    margin-top: 6px;
    display: inline-block;
  }

  .nav-wrap {
    flex-wrap: wrap;
  }

  .hero {
    padding: 70px 20px 60px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .trust-bar .container {
    justify-content: center;
    gap: 10px 24px;
  }

  .sticky-call {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    color: var(--green-dark);
    text-align: center;
    padding: 14px;
    font-weight: bold;
    text-decoration: none;
    z-index: 30;
  }

  body {
    padding-bottom: 54px;
  }
}
