:root {
  --ink: #17211b;
  --muted: #55645b;
  --leaf: #315f47;
  --leaf-dark: #1b3e2c;
  --sun: #f1c64b;
  --clay: #ba613f;
  --sky: #d8ecf4;
  --mist: #f5f8f2;
  --white: #ffffff;
  --line: #dce5dc;
  --shadow: 0 18px 40px rgba(23, 33, 27, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 1rem;
  z-index: 20;
  background: var(--sun);
  color: var(--ink);
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
}

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

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

.brand,
.footer-brand {
  text-decoration: none;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 8px;
  background: var(--leaf);
  color: var(--white);
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: clamp(0.95rem, 2vw, 1.08rem);
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.5vw, 1.1rem);
  font-weight: 700;
  font-size: 0.92rem;
}

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

.nav-cta {
  padding: 0.55rem 0.85rem;
  background: var(--leaf);
  color: var(--white);
  border-radius: 6px;
}

.hero {
  position: relative;
  min-height: clamp(560px, 72vh, 700px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.area-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 20, 13, 0.82) 0%, rgba(9, 20, 13, 0.6) 42%, rgba(9, 20, 13, 0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 2rem));
  margin-left: clamp(1rem, 6vw, 5rem);
  padding: 3rem 0;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--clay);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.hero .eyebrow,
.area-hero .eyebrow,
.contrast .eyebrow,
.final-cta .eyebrow {
  color: var(--sun);
}

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

h1,
h2,
h3 {
  line-height: 1.1;
  margin: 0;
}

h1 {
  font-size: clamp(2.2rem, 5.4vw, 4.2rem);
  max-width: 760px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.18rem;
}

.hero-copy {
  max-width: 680px;
  font-size: clamp(1.05rem, 2.2vw, 1.32rem);
  margin: 1.2rem 0 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.78rem 1.05rem;
  border: 0;
  border-radius: 7px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  background: var(--sun);
  color: var(--ink);
}

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

.button.light {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.button.full {
  width: 100%;
}

.hero-points {
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 1.8rem 0 0;
  list-style: none;
  max-width: 680px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: var(--sun);
}

.intro-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.intro-item {
  padding: 1.1rem clamp(1rem, 4vw, 4rem);
  border-right: 1px solid var(--line);
}

.intro-item:last-child {
  border-right: 0;
}

.intro-item strong,
.intro-item span {
  display: block;
}

.intro-item span {
  color: var(--muted);
}

.section {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem);
}

.muted {
  background: var(--mist);
}

.contrast {
  background: var(--leaf-dark);
  color: var(--white);
}

.two-column,
.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.two-column p,
.section-heading p,
.quote-copy p,
.price-card p,
.area-card p,
.why-grid p,
.faq-list p,
.area-summary p {
  color: var(--muted);
}

.contrast p {
  color: rgba(255, 255, 255, 0.78);
}

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

.service-list article {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-list span {
  width: 12px;
  height: 12px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--leaf);
}

.service-list p {
  margin: 0;
  font-weight: 700;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 2rem;
}

.pricing-grid,
.area-grid,
.why-grid {
  display: grid;
  gap: 1rem;
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

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

.why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card,
.area-card,
.why-grid article,
.area-summary,
.contact-card,
.quote-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(23, 33, 27, 0.06);
}

.price-card,
.area-card,
.why-grid article,
.area-summary {
  padding: 1.2rem;
}

.price-card.featured {
  border-color: var(--leaf);
  box-shadow: var(--shadow);
}

.price-label {
  margin: 0 0 0.5rem;
  color: var(--clay);
  font-weight: 800;
}

.price-card h3 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.pricing-note {
  margin-top: 1.2rem;
  font-weight: 800;
  color: var(--leaf-dark);
}

.quote-section {
  background: var(--sky);
}

.contact-card {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  margin-top: 1.5rem;
  max-width: 430px;
}

.contact-card a {
  color: var(--leaf-dark);
  font-weight: 800;
}

.quote-panel {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
}

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

select,
input {
  width: 100%;
  min-height: 44px;
  border: 1px solid #b8c7bc;
  border-radius: 6px;
  padding: 0.7rem 0.75rem;
  font: inherit;
  color: var(--ink);
  background: var(--white);
}

.checkbox-line {
  grid-template-columns: 20px 1fr;
  align-items: center;
  font-weight: 700;
}

.checkbox-line input {
  min-height: 20px;
  width: 20px;
}

.estimate {
  display: block;
  padding: 1rem;
  border-radius: 8px;
  background: var(--leaf-dark);
  color: var(--white);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
}

.estimate-copy {
  margin: 0;
  color: var(--muted);
}

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

.area-card {
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.area-card:hover,
.area-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--leaf);
}

.area-card span {
  color: var(--clay);
  font-weight: 900;
}

.area-card strong {
  display: block;
  margin: 0.35rem 0;
  font-size: 1.2rem;
}

.why-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 960px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 1rem 1.1rem;
}

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

.final-cta {
  padding: clamp(3rem, 7vw, 5rem) clamp(1rem, 5vw, 5rem);
  background: var(--leaf);
  color: var(--white);
}

.final-cta h2 {
  max-width: 850px;
  margin-bottom: 1rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  background: #101713;
  color: var(--white);
}

.site-footer p,
.fine-print {
  color: rgba(255, 255, 255, 0.68);
}

.footer-brand {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 900;
}

.footer-links {
  display: grid;
  gap: 0.5rem;
  justify-items: end;
}

.footer-links a {
  color: var(--white);
  font-weight: 800;
}

.fine-print {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.85rem;
}

.area-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--leaf-dark);
}

.area-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 20, 13, 0.84), rgba(9, 20, 13, 0.32));
}

.area-hero-copy {
  position: relative;
  z-index: 1;
  color: var(--white);
  width: min(780px, calc(100% - 2rem));
  margin-left: clamp(1rem, 6vw, 5rem);
}

.area-hero-copy h1 {
  max-width: 14ch;
}

.area-hero-copy p {
  max-width: 680px;
  font-size: 1.15rem;
}

.area-summary h2 {
  font-size: 1.7rem;
}

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

@media (max-width: 960px) {
  .site-header,
  .site-footer,
  .two-column,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .site-header {
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .intro-band,
  .pricing-grid,
  .why-grid,
  .service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-links {
    justify-items: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 0.75rem;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    font-size: 0.88rem;
  }

  .nav-cta {
    margin-left: auto;
  }

  .hero {
    min-height: 660px;
  }

  .hero-shade,
  .area-hero::after {
    background: rgba(9, 20, 13, 0.7);
  }

  .hero-content,
  .area-hero-copy {
    margin: 0 auto;
    padding: 3rem 0;
  }

  h1 {
    font-size: clamp(2rem, 11vw, 2.85rem);
  }

  .hero-points {
    display: none;
  }

  .intro-band,
  .service-list,
  .pricing-grid,
  .area-grid,
  .why-grid,
  .service-cards {
    grid-template-columns: 1fr;
  }

  .intro-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}
