:root {
  --bg: #f7f8f4;
  --surface: #ffffff;
  --ink: #17231b;
  --muted: #5c685f;
  --line: #dfe5db;
  --green: #1f6b42;
  --green-dark: #123f28;
  --lime: #c7ef73;
  --stone: #e8e4dc;
  --shadow: 0 24px 70px rgba(23, 35, 27, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 248, 244, 0.88);
  border-bottom: 1px solid rgba(31, 107, 66, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 184px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-weight: 800;
}

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

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

nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--green-dark);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  white-space: nowrap;
}

.header-cta {
  padding: 0 18px;
  color: #fff;
  background: var(--green-dark);
}

.button {
  padding: 0 24px;
}

.button.primary {
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 32px rgba(31, 107, 66, 0.24);
}

.button.primary.dark {
  color: var(--green-dark);
  background: var(--lime);
  box-shadow: none;
}

.button.secondary {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 107, 66, 0.18);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 75px);
  align-items: end;
  overflow: hidden;
  background: var(--green-dark);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(18, 63, 40, 0.88), rgba(18, 63, 40, 0.48), rgba(18, 63, 40, 0.18)),
    linear-gradient(0deg, rgba(18, 63, 40, 0.75), rgba(18, 63, 40, 0.08));
}

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

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 0 clamp(18px, 6vw, 72px) clamp(44px, 9vw, 96px);
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.cta-band .eyebrow {
  color: var(--lime);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 7.5vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  max-width: 820px;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions,
.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 28px;
}

.proof-strip {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.proof-strip span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--surface);
}

.intro p:last-child,
.section-heading p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.services {
  background: var(--bg);
}

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

.service-grid article,
.price-card,
.contact-card,
.quote-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 42px rgba(23, 35, 27, 0.06);
}

.service-grid article {
  min-height: 230px;
  padding: 24px;
}

.service-grid p,
.price-card p,
.price-card li,
.contact-copy p,
.contact-card span,
.site-footer span {
  color: var(--muted);
  line-height: 1.6;
}

.icon {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--green);
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 680px;
  background: var(--green-dark);
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy {
  display: grid;
  align-content: center;
  padding: clamp(48px, 8vw, 92px);
  color: #fff;
}

.split-copy .eyebrow {
  color: var(--lime);
}

.check-list,
.price-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.86);
  background: linear-gradient(var(--lime), var(--lime)) 0 0.65em / 14px 3px no-repeat;
}

.pricing {
  background: var(--surface);
}

.price-card {
  position: relative;
  padding: 28px;
}

.price-card.featured {
  color: #fff;
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: var(--shadow);
}

.price-card.featured p,
.price-card.featured li {
  color: rgba(255, 255, 255, 0.78);
}

.price {
  margin-bottom: 16px;
  color: var(--green);
  font-size: 3rem;
  font-weight: 850;
  line-height: 1;
}

.featured .price {
  color: var(--lime);
}

.badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 10px;
  color: var(--green-dark) !important;
  background: var(--lime);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
}

.price-card li {
  padding-left: 20px;
  background: linear-gradient(var(--green), var(--green)) 0 0.72em / 9px 2px no-repeat;
}

.featured li {
  background-image: linear-gradient(var(--lime), var(--lime));
}

.rate-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.rate-list span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--bg);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(46px, 7vw, 80px) clamp(18px, 5vw, 72px);
  color: #fff;
  background: var(--green);
}

.cta-band h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 72px);
  background: var(--bg);
}

.contact-card {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 18px;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 14px;
  color: var(--ink);
  background: #fbfcf8;
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.site-footer div {
  display: grid;
  gap: 4px;
}

.site-footer a {
  color: var(--green);
  font-weight: 800;
}

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

  nav {
    display: none;
  }

  .intro,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .split {
    min-height: auto;
  }

  .split-image {
    min-height: 360px;
  }

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

  .cta-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    min-width: 0;
  }

  .header-cta {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    margin-inline: 18px;
  }

  .proof-strip span,
  .rate-list span {
    width: 100%;
  }
}
