:root {
  --green-900: #243c28;
  --green-800: #315438;
  --green-700: #466f4b;
  --green-600: #5b7f5b;
  --green-100: #e7efe4;
  --green-050: #f3f7f0;
  --brown-800: #5d4630;
  --brown-600: #7a6447;
  --cream: #faf8f2;
  --cream-2: #fffdf7;
  --ink: #1f2920;
  --muted: #586359;
  --line: #dfe7da;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(36, 60, 40, 0.12);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  background: var(--green-900);
  color: var(--white);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 248, 242, 0.94);
  border-bottom: 1px solid rgba(223, 231, 218, 0.9);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand span {
  color: var(--brown-800);
  font-family: Outfit, Inter, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--green-900);
  border-radius: var(--radius);
  padding: 0.55rem 0.75rem;
  font-weight: 700;
}

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

.site-nav a {
  text-decoration: none;
  color: var(--green-900);
  font-size: 0.95rem;
  font-weight: 650;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--green-100);
}

.site-nav a.button {
  color: var(--white);
  background: var(--green-700);
}

.site-nav a.button:hover,
.site-nav a.button[aria-current="page"] {
  color: var(--white);
  background: var(--green-800);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.78rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: var(--green-700);
  color: var(--white);
  text-decoration: none;
  font-weight: 750;
  line-height: 1.2;
}

.button:hover {
  background: var(--green-800);
}

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

.button.secondary:hover {
  background: var(--green-050);
}

.button.text {
  padding-left: 0;
  padding-right: 0;
  background: transparent;
  border-color: transparent;
  color: var(--green-800);
}

.hero {
  min-height: 78vh;
  display: grid;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(25, 43, 28, 0.82), rgba(25, 43, 28, 0.45), rgba(25, 43, 28, 0.16)),
    url("../images/hero.jpg") center / cover;
  color: var(--white);
}

.hero-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 7rem 1.25rem 5rem;
}

.eyebrow {
  color: var(--green-700);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin: 0 0 0.65rem;
}

.hero .eyebrow {
  color: #d7e7cb;
}

h1,
h2,
h3 {
  font-family: Outfit, Inter, sans-serif;
  line-height: 1.08;
  color: var(--green-900);
  margin: 0;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(3rem, 8vw, 7rem);
  max-width: 820px;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero p {
  max-width: 680px;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.hero-actions,
.actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.7rem;
}

.hero .button.secondary {
  background: rgba(255, 255, 255, 0.93);
}

.section {
  padding: 5rem 1.25rem;
}

.section.tight {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.section.alt {
  background: var(--cream-2);
}

.section.green {
  background: var(--green-900);
  color: var(--white);
}

.section.green h2,
.section.green h3 {
  color: var(--white);
}

.section.green p,
.section.green li {
  color: rgba(255, 255, 255, 0.84);
}

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

.narrow {
  max-width: 820px;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.25rem;
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-heading p {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section.green .section-heading p {
  color: rgba(255, 255, 255, 0.82);
}

.lead {
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 3rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
}

.feature-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(223, 231, 218, 0.8);
}

.feature-image img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(36, 60, 40, 0.07);
}

.card img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
}

.card-body {
  padding: 1.15rem;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
}

.card p {
  color: var(--muted);
  margin: 0;
}

.card .button {
  margin-top: 1rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--green-600);
  box-shadow: inset 0 0 0 3px var(--green-100);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: step;
}

.step {
  background: var(--green-050);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  counter-increment: step;
}

.step::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  font-weight: 800;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}

.step p {
  color: var(--muted);
  margin: 0;
}

.section.green .step h3 {
  color: var(--green-900);
}

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

.page-hero {
  background:
    linear-gradient(90deg, rgba(25, 43, 28, 0.82), rgba(25, 43, 28, 0.45)),
    url("../images/hero.jpg") center / cover;
  color: var(--white);
  padding: 7rem 1.25rem 4rem;
}

.page-hero .container {
  max-width: var(--max);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 5rem);
  max-width: 900px;
}

.page-hero p {
  max-width: 760px;
  margin: 1.1rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
}

.two-column-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-detail {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.service-detail h3 {
  font-size: 1.35rem;
  margin-bottom: 0.55rem;
}

.service-detail p {
  margin: 0;
  color: var(--muted);
}

.quote-band {
  border-left: 5px solid var(--green-600);
  padding: 1.2rem 1.35rem;
  background: var(--green-050);
  border-radius: var(--radius);
  color: var(--green-900);
  font-size: 1.18rem;
  font-weight: 650;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: 1.5rem;
}

.contact-card,
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 8px 28px rgba(36, 60, 40, 0.07);
}

.contact-card h2,
.form-card h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.contact-list a {
  color: var(--green-800);
  font-weight: 700;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-weight: 750;
  color: var(--green-900);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfdacc;
  border-radius: var(--radius);
  padding: 0.82rem 0.9rem;
  font: inherit;
  color: var(--ink);
  background: var(--cream-2);
}

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

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

.google-form-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin: 1.1rem 0 1.25rem;
}

.google-form-actions p {
  margin: 0;
}

.google-form-embed {
  width: 100%;
  min-height: 1240px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--cream-2);
}

.site-footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 1.25rem;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) repeat(2, minmax(160px, 0.45fr));
  gap: 2rem;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
}

.site-footer h2 {
  font-size: 1.6rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-links {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-bottom {
  max-width: var(--max);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
}

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

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0.5rem;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    width: 100%;
  }

  .split,
  .split.reverse,
  .contact-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .steps,
  .two-column-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .brand span {
    font-size: 0.9rem;
  }

  .hero {
    min-height: 72vh;
  }

  .hero-inner {
    padding-top: 5rem;
    padding-bottom: 3.5rem;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 14vw, 4.2rem);
  }

  .section,
  .page-hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }

  .service-grid,
  .steps,
  .two-column-list,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .button,
  .actions .button,
  .google-form-actions .button {
    width: 100%;
  }
}
