:root {
  color-scheme: light;
  --cedar: #173f32;
  --moss: #2f6b4f;
  --limestone: #f3f0e8;
  --ember: #f97316;
  --river: #0f766e;
  --ink: #17201c;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  max-width: 100%;
}

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

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

.nav-link {
  border-radius: 6px;
  color: rgba(23, 32, 28, 0.78);
  display: inline-flex;
  font-size: 0.925rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.75rem 0.85rem;
  text-decoration: none;
}

.nav-link:hover,
.nav-link-active {
  background: rgba(47, 107, 79, 0.1);
  color: var(--cedar);
}

.btn-primary,
.btn-secondary,
.btn-ghost {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.78rem 1.08rem;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.btn-primary {
  background: var(--ember);
  color: white;
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.22);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--river);
  color: white;
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: white;
}

.mobile-menu {
  position: relative;
}

.mobile-menu summary {
  border: 1px solid rgba(23, 32, 28, 0.18);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  padding: 0.65rem 0.85rem;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-panel {
  background: white;
  border: 1px solid rgba(23, 32, 28, 0.12);
  border-radius: 6px;
  box-shadow: 0 18px 50px rgba(23, 32, 28, 0.16);
  display: grid;
  gap: 0.2rem;
  min-width: 15rem;
  padding: 0.8rem;
  position: absolute;
  right: 0;
  top: calc(100% + 0.55rem);
}

.mobile-menu-panel a {
  border-radius: 6px;
  color: var(--ink);
  font-weight: 700;
  padding: 0.7rem 0.8rem;
  text-decoration: none;
}

.mobile-menu-panel a:hover {
  background: rgba(47, 107, 79, 0.1);
}

.hero {
  min-height: 36rem;
  position: relative;
}

.hero-media {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero::after {
  background: linear-gradient(90deg, rgba(23, 32, 28, 0.92), rgba(23, 32, 28, 0.68) 42%, rgba(23, 32, 28, 0.18));
  content: "";
  inset: 0;
  position: absolute;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--river);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-title {
  color: var(--ink);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.12;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.65rem;
  }
}

.section-intro {
  color: rgba(23, 32, 28, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 48rem;
}

.badge {
  background: rgba(47, 107, 79, 0.11);
  border: 1px solid rgba(47, 107, 79, 0.2);
  border-radius: 999px;
  color: var(--cedar);
  display: inline-flex;
  line-height: 1;
  padding: 0.55rem 0.75rem;
}

.trust-item {
  border-left: 3px solid var(--ember);
  padding-left: 1rem;
}

.content-card,
.service-card,
.resource-card,
.testimonial-card,
.price-card {
  border: 1px solid rgba(23, 32, 28, 0.12);
  border-radius: 8px;
  background: white;
}

.service-image,
.neighborhood-image,
.resource-image {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.hero-stat {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
}

.service-icon {
  height: 2.75rem;
  width: 2.75rem;
}

.lead-form {
  background: white;
  border: 1px solid rgba(23, 32, 28, 0.12);
  border-radius: 8px;
  box-shadow: 0 16px 45px rgba(23, 32, 28, 0.08);
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
}

@media (min-width: 640px) {
  .lead-form {
    padding: 1.35rem;
  }
}

.lead-form label {
  color: rgba(23, 32, 28, 0.78);
  display: grid;
  font-size: 0.88rem;
  font-weight: 800;
  gap: 0.4rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  border: 1px solid rgba(23, 32, 28, 0.18);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  min-height: 2.8rem;
  padding: 0.75rem 0.85rem;
  width: 100%;
}

.lead-form textarea {
  min-height: 7rem;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--river);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.14);
  outline: none;
}

.footer-title {
  color: white;
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-link:hover {
  color: white;
}

.map-frame {
  aspect-ratio: 16 / 10;
  border: 0;
  border-radius: 8px;
  filter: grayscale(20%);
  min-height: 14rem;
  width: 100%;
}

.prose-local {
  color: rgba(23, 32, 28, 0.78);
  font-size: 1.05rem;
  line-height: 1.8;
}

.prose-local h2 {
  color: var(--ink);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.22;
  margin-top: 2rem;
}

.prose-local p {
  margin-top: 0.85rem;
}

.table-wrap {
  overflow-x: auto;
}

.pricing-table {
  border-collapse: collapse;
  min-width: 48rem;
  width: 100%;
}

.pricing-table th,
.pricing-table td {
  border-bottom: 1px solid rgba(23, 32, 28, 0.12);
  padding: 1rem;
  text-align: left;
  vertical-align: top;
}

.pricing-table th {
  background: var(--cedar);
  color: white;
  font-size: 0.82rem;
  text-transform: uppercase;
}
