:root {
  --deep-green: #12351f;
  --forest: #1f5a32;
  --leaf: #8bc760;
  --new-leaf: #c8e7a4;
  --mulch: #785538;
  --soil: #2a2119;
  --paper: #f8faf3;
  --cream: #fffdf4;
  --line: #d9e4cf;
  --ink: #142018;
  --muted: #536152;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 35, 21, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  flex: 0 0 auto;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 5vw;
  color: var(--white);
  background: linear-gradient(180deg, rgba(12, 26, 15, 0.82), rgba(12, 26, 15, 0.18));
}

.brand,
.site-nav,
.nav-call,
.button,
.contact-card a,
.quote-link {
  min-height: 44px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.15rem;
  font-size: 0.96rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  opacity: 0.9;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 0.35rem;
}

.nav-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.nav-call {
  padding: 0.65rem 0.9rem;
  background: var(--new-leaf);
  color: var(--deep-green);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 82svh;
  overflow: hidden;
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 26, 15, 0.88), rgba(11, 26, 15, 0.48) 46%, rgba(11, 26, 15, 0.08) 78%),
    linear-gradient(0deg, rgba(11, 26, 15, 0.36), rgba(11, 26, 15, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(700px, 90vw);
  padding: 7.5rem 5vw 4.6rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--new-leaf);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  font-size: 5.35rem;
  font-weight: 950;
}

h2 {
  max-width: 820px;
  color: var(--deep-green);
  font-size: 2.65rem;
  font-weight: 900;
}

h3 {
  color: var(--deep-green);
  font-size: 1.15rem;
  font-weight: 900;
}

.hero-copy {
  max-width: 610px;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  padding: 0.82rem 1rem;
  border: 2px solid transparent;
  font-size: 0.98rem;
}

.button-primary {
  background: var(--leaf);
  color: var(--deep-green);
  box-shadow: 0 12px 30px rgba(139, 199, 96, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--new-leaf);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--deep-green);
  color: var(--cream);
}

.quick-strip span {
  padding: 1rem 1.2rem;
  background: var(--forest);
  font-weight: 850;
  text-align: center;
}

.section {
  padding: 5.8rem 5vw;
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  max-width: 830px;
  margin-bottom: 2.1rem;
}

.section-heading p,
.about-copy p,
.quote-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card,
.contact-card,
.quote-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.service-card {
  display: grid;
  gap: 0.8rem;
  min-height: 245px;
  padding: 1.25rem;
}

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

.service-card-accent {
  border-color: rgba(120, 85, 56, 0.32);
  background: linear-gradient(180deg, #fffdf4, #f5efe4);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: #e5f4d4;
  color: var(--forest);
}

.service-card-accent .service-icon {
  background: #efe3d4;
  color: var(--mulch);
}

.service-icon svg {
  width: 25px;
  height: 25px;
}

.about-section {
  background:
    linear-gradient(90deg, rgba(18, 53, 31, 0.96), rgba(31, 90, 50, 0.94)),
    var(--deep-green);
  color: var(--cream);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.about-section .eyebrow,
.about-section h2 {
  color: var(--new-leaf);
}

.about-copy {
  display: grid;
  gap: 1rem;
}

.about-copy p {
  color: rgba(255, 253, 244, 0.86);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 520px);
  gap: 2.2rem;
  align-items: start;
  background: #f1f6ea;
}

.quote-copy {
  display: grid;
  gap: 0.85rem;
}

.quote-panel {
  display: grid;
  gap: 1.2rem;
  padding: 1.35rem;
}

fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  border: 0;
}

legend,
.text-field {
  color: var(--deep-green);
  font-weight: 900;
}

legend {
  grid-column: 1 / -1;
  margin-bottom: 0.15rem;
}

label {
  cursor: pointer;
}

fieldset label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0.58rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 750;
}

input[type="checkbox"] {
  width: 1.08rem;
  height: 1.08rem;
  accent-color: var(--forest);
  flex: 0 0 auto;
}

.text-field {
  display: grid;
  gap: 0.45rem;
}

textarea {
  width: 100%;
  min-height: 118px;
  resize: vertical;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.8rem;
  color: var(--ink);
  font: inherit;
}

textarea:focus,
input:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(139, 199, 96, 0.66);
  outline-offset: 3px;
}

.quote-link {
  justify-self: start;
}

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

.contact-card {
  display: grid;
  gap: 0.5rem;
  padding: 1.25rem;
}

.contact-card span {
  color: var(--muted);
  font-weight: 850;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  color: var(--forest);
  font-size: 1.35rem;
  font-weight: 950;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 1.4rem 5vw;
  background: var(--soil);
  color: rgba(255, 253, 244, 0.86);
}

.site-footer span:first-child {
  color: var(--new-leaf);
  font-weight: 950;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    display: none;
  }

  .nav-call {
    justify-self: end;
  }

  h1 {
    font-size: 4.2rem;
  }

  h2 {
    font-size: 2.18rem;
  }

  .service-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-layout,
  .quote-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 0.7rem 1rem;
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(11, 26, 15, 0.88), rgba(11, 26, 15, 0.42)),
      linear-gradient(0deg, rgba(11, 26, 15, 0.36), rgba(11, 26, 15, 0));
  }

  .hero-content {
    width: 100%;
    padding: 6.7rem 1rem 3.8rem;
  }

  h1 {
    font-size: 3.25rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .hero-copy {
    font-size: 1.03rem;
  }

  .button {
    width: 100%;
  }

  .quick-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 4.2rem 1rem;
  }

  .service-grid,
  .contact-grid,
  fieldset {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .quote-panel {
    padding: 1rem;
  }

  .contact-card a {
    font-size: 1.1rem;
  }
}
