* {
  box-sizing: border-box;
}

:root {
  --green: #1f4d34;
  --green-2: #35744b;
  --cream: #fffdf5;
  --bg: #f8f7f1;
  --text: #232622;
  --muted: #656b60;
  --border: #e2dfd2;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(255, 253, 245, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-text {
  font-size: 0.95rem;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1.05rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav a {
  text-decoration: none;
  font-weight: 650;
  color: var(--text);
}

.nav-cta {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--green);
  color: white !important;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
  background: white;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 6vw, 6rem);
  color: white;
  background-image: url("/assets/hero.jpg");
  background-size: cover;
  background-position: 50% 32%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.66), rgba(0,0,0,0.28), rgba(0,0,0,0.1));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--green-2);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero .eyebrow {
  color: #d8eadb;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 660px;
  color: #f5f5ed;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.25rem;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: var(--green-2);
  color: white;
}

.button.secondary {
  background: white;
  color: var(--green);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1180px;
  margin: -3rem auto 0;
  position: relative;
  z-index: 2;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.1);
}

.trust-bar div {
  padding: 1.25rem;
  background: white;
  font-weight: 800;
  text-align: center;
}

.section,
.split-section,
.quote-section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.intro p:last-child,
.section-copy,
.split-section p,
.area p {
  color: var(--muted);
  font-size: 1.12rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.card,
.price-card {
  padding: 1.4rem;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: white;
}

.card p,
.price-card p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.split-section.reverse {
  grid-template-columns: 0.95fr 1fr;
}

.split-section.reverse img {
  order: 2;
}

.split-section img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.price-note {
  color: var(--green) !important;
  font-weight: 900;
}

.fine-print {
  color: var(--muted);
  font-size: 0.95rem;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.area-list li {
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--border);
  font-weight: 750;
}

.faq details {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
  font-size: 1.15rem;
}

.faq details p {
  max-width: 820px;
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.quote-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(3rem, 6vw, 5rem);
  margin-bottom: 4rem;
  border-radius: 30px;
  background: var(--green);
  color: white;
}

.quote-section .eyebrow {
  color: #cfe7d2;
}

.quote-section p {
  color: #e8f2e8;
}

.quote-form {
  display: grid;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 22px;
  background: white;
  color: var(--text);
}

.quote-form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  font: inherit;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.site-footer {
  padding: 3rem 1rem;
  background: #17271d;
  color: white;
  text-align: center;
}

.site-footer a {
  color: white;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 82px;
    right: 1rem;
    left: 1rem;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: white;
  }

  .nav.open {
    display: flex;
  }

  .trust-bar,
  .cards,
  .pricing-grid,
  .intro,
  .split-section,
  .split-section.reverse,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .split-section.reverse img {
    order: 0;
  }

  .trust-bar {
    margin-top: 0;
    border-radius: 0;
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: 620px;
  }
}

@media (max-width: 560px) {
  .brand-text {
    display: none;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .quote-section {
    width: calc(100% - 1rem);
    padding: 2rem 1rem;
  }
}
