:root {
  --pine: #234f38;
  --pine-2: #34684a;
  --moss: #8fa35c;
  --gold: #e6a84d;
  --clay: #b9603d;
  --sky: #dbeeed;
  --ink: #17231c;
  --muted: #5d675f;
  --paper: #fffdf7;
  --soft: #f2efe5;
  --line: #ded8c8;
  --shadow: 0 22px 60px rgba(23, 35, 28, .16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  letter-spacing: 0;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 247, .96);
  border-bottom: 1px solid rgba(222, 216, 200, .8);
  backdrop-filter: blur(12px);
}

.top-strip {
  background: var(--pine);
  color: #fffdf7;
  font-size: .92rem;
}

.top-strip-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.top-strip a {
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--pine), var(--pine-2));
  color: #fffdf7;
  font-weight: 800;
}

.brand strong {
  display: block;
  font-size: 1.02rem;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 700;
  color: #25352c;
}

.menu a:not(.btn):hover,
.footer a:hover {
  color: var(--clay);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 8px;
  border: 2px solid var(--gold);
  background: var(--gold);
  color: #20160d;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(155, 91, 34, .18);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-small {
  min-height: 42px;
  padding: 10px 16px;
}

.btn-ghost {
  background: rgba(255, 253, 247, .09);
  color: #fffdf7;
  border-color: rgba(255, 253, 247, .72);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: #fffdf7;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 21, 16, .84) 0%, rgba(10, 21, 16, .58) 45%, rgba(10, 21, 16, .18) 100%),
    linear-gradient(0deg, rgba(10, 21, 16, .56), rgba(10, 21, 16, .06) 40%);
}

.hero-bg,
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-bg img {
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 98px 0 118px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 5.9rem);
  line-height: .96;
}

.hero-copy {
  max-width: 690px;
  margin: 22px 0 0;
  color: #eef2e8;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.hero-points li {
  border: 1px solid rgba(255, 253, 247, .36);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 253, 247, .12);
  color: #fff;
  font-weight: 700;
}

.breadcrumb {
  padding-top: 22px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted);
  font-size: .92rem;
}

.breadcrumb li::after {
  content: "/";
  margin-left: 8px;
  color: #a79f8d;
}

.breadcrumb li:last-child::after {
  content: "";
}

.breadcrumb a,
.text-link,
.context-links a {
  color: var(--clay);
  font-weight: 900;
}

.hub-strip {
  background: #f7f2df;
  border-bottom: 1px solid var(--line);
}

.hub-strip-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 20px 0;
}

.hub-strip a {
  display: grid;
  gap: 6px;
  min-height: 126px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf7;
}

.hub-strip span {
  color: var(--clay);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .8rem;
}

.hub-strip strong {
  font-size: 1.25rem;
}

.hub-strip small,
.context-links {
  color: var(--muted);
}

.section {
  padding: 86px 0;
}

.section-head {
  margin-bottom: 34px;
}

.section-head h2,
.promo-layout h2,
.why-layout h2,
.split h2,
.quote-layout h2,
.local-layout h2,
.related-layout h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.section-head p,
.promo-layout p,
.split p,
.quote-layout p,
.local-layout p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.promo-band {
  padding: 80px 0;
  background: linear-gradient(135deg, #f7f2df 0%, #dbeeed 100%);
}

.promo-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.offer-card,
.review-card,
.service-card,
.process-card,
.benefit-panel,
.quote-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf7;
  box-shadow: var(--shadow);
}

.offer-card {
  padding: 24px;
}

.featured-offer {
  background: var(--pine);
  color: #fffdf7;
  border-color: var(--pine);
}

.offer-card .price {
  display: block;
  color: var(--clay);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}

.featured-offer .price,
.featured-offer p {
  color: #f8d58b;
}

.offer-card h3 {
  margin: 12px 0 8px;
  font-size: 1.08rem;
}

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

.offer-card a {
  font-weight: 900;
  color: var(--clay);
}

.check-list {
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #2b392f;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px #fff3d4;
}

.check-list.big li {
  font-size: 1.05rem;
}

.review-grid,
.service-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  padding: 24px;
}

.review-card p {
  color: #344238;
}

.review-card span {
  display: block;
  color: var(--muted);
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.proof-section {
  background: var(--soft);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

figure {
  margin: 0;
}

.before-after figure,
.why-layout figure,
.split figure {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
}

.before-after img,
.why-layout img,
.split img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
}

figcaption {
  padding: 14px 16px;
  font-weight: 900;
}

.service-section {
  background: #fffdf7;
}

.service-card {
  overflow: hidden;
}

.service-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card div {
  padding: 20px;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.service-card p {
  min-height: 78px;
  margin: 0 0 16px;
  color: var(--muted);
}

.service-card a,
.more-services a {
  color: var(--clay);
  font-weight: 900;
}

.more-services {
  margin-top: 24px;
  text-align: center;
}

.why-section,
.local-section {
  padding: 86px 0;
  background: var(--pine);
  color: #fffdf7;
}

.why-layout,
.local-layout {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 42px;
  align-items: center;
}

.why-section .check-list li,
.local-section p {
  color: #edf3e7;
}

.inline-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.inline-cta > a:first-child {
  color: #fff;
  font-size: 1.28rem;
  font-weight: 900;
}

.about-section {
  background: #f7f2df;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
}

.benefit-panel {
  padding: 30px;
}

.benefit-panel h3 {
  margin-top: 0;
}

.benefit-panel ul,
.contact-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.benefit-panel li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-panel li:last-child {
  border-bottom: 0;
}

.quote-section {
  padding: 88px 0;
  background:
    linear-gradient(135deg, rgba(35, 79, 56, .94), rgba(54, 104, 74, .92)),
    url("../images/colorado-springs-tree-planting-front-range.png") center / cover;
  color: #fffdf7;
}

.quote-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: start;
}

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

.quote-contact {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  font-weight: 900;
}

.quote-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 26px;
  color: var(--ink);
}

.quote-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.quote-form label:nth-child(5),
.quote-form button {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: #fff;
}

.quote-form textarea {
  min-height: 118px;
  resize: vertical;
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  color: var(--muted);
}

.areas-section {
  background: #f7f2df;
}

.city-list {
  columns: 2;
  padding: 0;
  margin: 20px 0;
  list-style: none;
}

.city-list li {
  break-inside: avoid;
  padding: 7px 0;
  font-weight: 800;
}

.page-detail {
  background: #f7f2df;
}

.process-card {
  padding: 24px;
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pine);
  color: #fff;
  font-weight: 900;
}

.process-card h3 {
  margin: 18px 0 8px;
}

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

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.stat-row li {
  min-height: 144px;
  padding: 22px;
  border: 1px solid rgba(255, 253, 247, .2);
  border-radius: 8px;
  background: rgba(255, 253, 247, .08);
}

.stat-row strong {
  display: block;
  font-size: 2.2rem;
  color: var(--gold);
}

.stat-row span {
  display: block;
  color: #edf3e7;
}

.related-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.hub-category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.hub-category,
.area-hub-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf7;
  padding: 24px;
  box-shadow: var(--shadow);
}

.hub-category h2 {
  margin-top: 0;
  font-size: 1.45rem;
}

.pill-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill-links a,
.footer-links a {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  background: #fff;
  color: #28372e;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
}

.footer {
  padding: 62px 0 90px;
  background: #18261e;
  color: #fffdf7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 30px;
}

.footer p,
.footer small,
.footer li {
  color: #dce4d5;
}

.footer h3 {
  margin-top: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-links a {
  background: rgba(255, 253, 247, .08);
  border-color: rgba(255, 253, 247, .18);
  color: #fffdf7;
}

.contact-list li {
  margin-bottom: 10px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 253, 247, .16);
}

.mobile-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: none;
  background: var(--gold);
  color: #20160d;
  text-align: center;
  font-weight: 900;
}

.mobile-call a {
  display: block;
  padding: 13px 18px;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .menu {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fffdf7;
    box-shadow: var(--shadow);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    padding: 12px;
  }

  .hero {
    min-height: 650px;
  }

  .promo-layout,
  .why-layout,
  .split,
  .quote-layout,
  .local-layout,
  .related-layout,
  .hub-strip-grid,
  .hub-category-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .offer-grid,
  .review-grid,
  .service-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 28px, 1160px);
  }

  .top-strip-inner {
    flex-direction: column;
    gap: 2px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

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

  .section,
  .promo-band,
  .why-section,
  .local-section,
  .quote-section {
    padding: 62px 0;
  }

  .offer-grid,
  .review-grid,
  .service-grid,
  .process-grid,
  .before-after,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .quote-form label:nth-child(5),
  .quote-form button {
    grid-column: auto;
  }

  .city-list {
    columns: 1;
  }

  .section-head h2,
  .promo-layout h2,
  .why-layout h2,
  .split h2,
  .quote-layout h2,
  .local-layout h2,
  .related-layout h2 {
    font-size: 2rem;
  }

  .mobile-call {
    display: block;
  }

  .footer {
    padding-bottom: 108px;
  }
}
