:root {
  --green: #1f6f46;
  --green-dark: #123f2c;
  --orange: #f47b20;
  --orange-soft: #fff0e5;
  --black: #111312;
  --charcoal: #202421;
  --muted: #68736b;
  --line: #dce4dd;
  --paper: #f7faf5;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(17, 19, 18, 0.16);
}

* {
  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(--black);
  background: var(--paper);
  line-height: 1.55;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px clamp(20px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.96);
  color: var(--green-dark);
  border-bottom: 3px solid var(--orange);
  box-shadow: 0 10px 30px rgba(17, 19, 18, 0.1);
  backdrop-filter: blur(14px);
}

.site-header.compact {
  background: rgba(255, 255, 255, 0.98);
}

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

.brand img {
  width: 190px;
  height: 70px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 0.95rem;
}

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

.site-nav a:hover,
.site-nav a.active {
  color: var(--orange);
}

.header-call {
  justify-self: end;
  border: 2px solid var(--orange);
  background: var(--green-dark);
  color: var(--white);
  padding: 10px 14px;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--green-dark);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-dark);
}

.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

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

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 19, 18, 0.92) 0%, rgba(17, 19, 18, 0.74) 38%, rgba(17, 19, 18, 0.1) 100%),
    linear-gradient(0deg, rgba(17, 19, 18, 0.52), rgba(17, 19, 18, 0));
}

.hero-content {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 6vw, 84px);
  padding: 80px 0 110px;
  color: var(--white);
}

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

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

h1 {
  margin-bottom: 20px;
  max-width: 820px;
  font-size: 5.25rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: 3.3rem;
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.32rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 2px solid transparent;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  background: var(--orange);
  color: var(--black);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.36);
}

.button.dark {
  background: var(--black);
  color: var(--white);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--black);
}

.trust-strip div {
  padding: 24px clamp(20px, 4vw, 54px);
  background: var(--green-dark);
  color: var(--white);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
}

.section {
  padding: clamp(64px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.intro-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 84px);
  align-items: start;
}

.body-copy {
  color: var(--charcoal);
  font-size: 1.08rem;
}

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

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

.service-card,
.price-card,
.contact-panel,
.schedule-panel,
.lead-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--green);
  padding: 28px;
  box-shadow: 0 10px 28px rgba(17, 19, 18, 0.07);
}

.service-card:nth-child(2),
.price-card.featured,
.schedule-panel {
  border-top-color: var(--orange);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  background: var(--orange-soft);
  color: var(--green-dark);
  font-weight: 900;
}

.service-card p,
.price-card p,
.contact-panel p,
.schedule-panel p,
.schedule-copy {
  color: var(--muted);
}

.service-card a,
.text-link {
  color: var(--green);
  font-weight: 900;
  border-bottom: 2px solid var(--orange);
}

.dark-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 70px);
  background: var(--black);
  color: var(--white);
}

.dark-band h2 {
  max-width: 620px;
}

.proof-list {
  display: grid;
  gap: 18px;
}

.proof-list p {
  margin: 0;
  padding-left: 18px;
  border-left: 4px solid var(--orange);
  color: rgba(255, 255, 255, 0.78);
}

.proof-list strong {
  color: var(--white);
}

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

.steps li {
  min-height: 160px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  margin-top: 10px;
  color: var(--muted);
}

.cta-band {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  padding: clamp(46px, 6vw, 76px) clamp(20px, 5vw, 72px);
  background: var(--green);
  color: var(--white);
}

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

.cta-band .eyebrow {
  color: var(--orange-soft);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  background: var(--black);
  color: var(--white);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.68);
  margin: 8px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, var(--black), var(--green-dark));
  color: var(--white);
}

.page-hero.orange {
  background: linear-gradient(135deg, var(--black), #6f330d);
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
}

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

.feature-list span {
  padding: 18px 20px;
  background: var(--white);
  border-left: 5px solid var(--orange);
  box-shadow: 0 8px 20px rgba(17, 19, 18, 0.06);
  font-weight: 800;
}

.seo-copy {
  background: var(--white);
}

.seo-copy p {
  max-width: 860px;
  color: var(--charcoal);
  font-size: 1.08rem;
}

.process-detail {
  display: grid;
  gap: 16px;
}

.process-detail article {
  display: grid;
  grid-template-columns: 88px 0.7fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.process-detail span {
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 900;
}

.process-detail p {
  color: var(--muted);
  margin: 0;
}

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

.price-card ul {
  padding-left: 20px;
  color: var(--charcoal);
}

.price-card li {
  margin: 8px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
  align-items: start;
}

.lead-form {
  grid-column: 1 / -1;
  display: grid;
  gap: 16px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.ghl-embed {
  gap: 18px;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 13px 14px;
  font: inherit;
  background: #fbfdfb;
}

textarea {
  resize: vertical;
}

.scheduler-frame {
  width: 100%;
  min-height: 680px;
  margin-top: 20px;
  border: 1px solid var(--line);
  background: var(--white);
}

.schedule-panel .button {
  margin-top: 8px;
}

.form-success,
.form-error,
.form-note {
  margin: 0;
  padding: 12px 14px;
  font-weight: 800;
}

.form-success {
  background: #e9f7ed;
  color: var(--green-dark);
}

.form-error,
.form-note {
  background: var(--orange-soft);
  color: var(--black);
}

.phone-link {
  display: inline-block;
  color: var(--green);
  font-size: 3.1rem;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 920px) {
  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .phone-link {
    font-size: 2.4rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav,
  .header-call {
    display: none;
  }

  body.nav-open .site-nav {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
  }

  body.nav-open .site-nav a {
    padding: 14px 0;
  }

  .hero {
    min-height: 650px;
  }

  .trust-strip,
  .intro-grid,
  .split,
  .dark-band,
  .card-grid,
  .steps,
  .pricing-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .process-detail article {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  h1 {
    font-size: 2.65rem;
  }

  h2 {
    font-size: 2rem;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 150px;
    height: 58px;
  }

  .hero-content {
    margin-left: 20px;
  }

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

  .button {
    width: 100%;
  }

  .phone-link {
    font-size: 1.9rem;
  }

  .service-card,
  .price-card,
  .contact-panel,
  .schedule-panel,
  .lead-form,
  .steps li {
    padding: 22px;
  }
}
