:root {
  --bg: #ffffff;
  --bg-soft: #f4f6f3;
  --bg-panel: #eef3ee;
  --text: #1e2a24;
  --muted: #5c6a61;
  --line: #d8dfd8;
  --green: #245f43;
  --green-dark: #173f2d;
  --accent: #b85d2d;
  --accent-dark: #8d411d;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(23, 63, 45, 0.14);
  --max: 1160px;
  --radius: 8px;
  --focus: 0 0 0 3px rgba(184, 93, 45, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-bottom: 58px;
  color: var(--text);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.58;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--green);
  text-underline-offset: 0.18em;
}

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

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

h1,
h2,
h3 {
  margin: 0 0 0.65rem;
  color: var(--text);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.15rem, 7vw, 4.25rem);
  max-width: 880px;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.45rem);
}

h3 {
  font-size: 1.22rem;
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0;
  padding-left: 1.25rem;
}

li + li {
  margin-top: 0.55rem;
}

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

.skip-link {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 200;
  transform: translateY(-150%);
  padding: 0.65rem 0.85rem;
  background: var(--white);
  color: var(--green-dark);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  width: min(100%, var(--max));
  min-height: 72px;
  margin: 0 auto;
  padding: 0.65rem 1rem;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.75rem;
}

.brand,
.footer-brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 900;
}

.brand-name,
.brand-sub {
  display: block;
}

.brand-name {
  font-size: 1.02rem;
  line-height: 1.1;
}

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

.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  cursor: pointer;
}

.menu-bars,
.menu-bars::before,
.menu-bars::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-bars {
  position: relative;
}

.menu-bars::before,
.menu-bars::after {
  position: absolute;
  left: 0;
}

.menu-bars::before {
  top: -6px;
}

.menu-bars::after {
  top: 6px;
}

.primary-nav {
  display: none;
  grid-column: 1 / -1;
  padding: 0.6rem 0 0.2rem;
}

.primary-nav.is-open {
  display: grid;
  gap: 0.15rem;
}

.primary-nav a {
  display: block;
  padding: 0.8rem;
  color: var(--text);
  text-decoration: none;
  border-radius: var(--radius);
  font-size: 0.96rem;
  font-weight: 750;
}

.primary-nav a:hover {
  background: var(--bg-soft);
  color: var(--green-dark);
}

.header-phone {
  display: none;
  justify-self: end;
  padding: 0.72rem 0.92rem;
  border-radius: var(--radius);
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
  line-height: 1.1;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.05rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-size: 0.93rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.button-primary {
  background: var(--accent);
  color: var(--white);
}

.button-primary:hover {
  background: var(--accent-dark);
  color: var(--white);
}

.button-secondary {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--green);
}

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

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

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.8);
}

.button-outline-light:hover {
  background: var(--white);
  color: var(--green-dark);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: var(--green-dark);
}

.interior-hero {
  min-height: 480px;
}

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

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

.hero-overlay {
  background: linear-gradient(90deg, rgba(18, 38, 28, 0.9), rgba(18, 38, 28, 0.62) 48%, rgba(18, 38, 28, 0.28));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 3.2rem 1rem 2.4rem;
  display: grid;
  gap: 1.4rem;
  align-items: center;
}

.hero-inner.single {
  align-items: center;
}

.hero-copy {
  color: var(--white);
  max-width: 760px;
}

.hero-copy h1,
.hero-copy p {
  color: var(--white);
}

.hero-copy p {
  font-size: 1.06rem;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-copy .eyebrow,
.footer-cta .eyebrow {
  color: #f3c19e;
}

.hero-form-card,
.lead-form,
.note-box,
.service-card,
.media-card,
.lead-band,
.regulatory-note,
.final-cta,
.contact-layout {
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-form-card {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.hero-form-card h2 {
  font-size: 1.42rem;
}

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

.page-shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  padding: 1rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: var(--green);
  font-weight: 700;
}

.section {
  padding: 3.25rem 0;
  border-bottom: 1px solid var(--line);
}

.section-intro {
  max-width: 780px;
  color: var(--muted);
}

.split-section {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

.urgent-section {
  padding-top: 3rem;
}

.intent-strip {
  margin: 1.25rem 0 0;
  padding: 0.75rem 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.intent-strip a {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 0.65rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--green-dark);
  text-align: center;
  text-decoration: none;
  font-weight: 850;
}

.intent-strip a:hover {
  background: var(--green);
  color: var(--white);
}

.service-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.service-card {
  padding: 1.1rem;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(30, 42, 36, 0.08);
}

.service-card h3 a {
  color: var(--text);
  text-decoration: none;
}

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

.text-link {
  font-weight: 900;
}

.media-card {
  overflow: hidden;
  background: var(--bg-soft);
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.note-box,
.service-area-panel,
.regulatory-note,
.final-cta,
.lead-band,
.contact-layout {
  background: var(--bg-soft);
}

.note-box {
  padding: 1.2rem;
}

.check-list {
  padding-left: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.55rem;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.service-area-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.area-list a,
.area-list span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--green-dark);
  text-decoration: none;
  font-weight: 800;
}

.process-list {
  display: grid;
  gap: 0.8rem;
  padding-left: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  min-height: 88px;
  padding: 1rem 1rem 1rem 4.2rem;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  counter-increment: process;
}

.process-list li::before {
  position: absolute;
  left: 1rem;
  top: 1rem;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 900;
  content: counter(process);
}

.process-list strong,
.process-list span {
  display: block;
}

.process-list span {
  color: var(--muted);
}

.lead-band {
  margin: 1.4rem 0 0;
  padding: 1rem;
  display: grid;
  gap: 1rem;
  align-items: start;
}

.lead-form {
  padding: 1rem;
  background: var(--white);
}

.form-grid {
  display: grid;
  gap: 0.85rem;
}

.lead-form label {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  color: var(--text);
  font-weight: 850;
}

.lead-form span em {
  color: var(--muted);
  font-style: normal;
  font-weight: 650;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.72rem;
  border: 1px solid #bfc9c0;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.checkbox-label {
  grid-template-columns: auto 1fr;
  align-items: start;
  font-weight: 700;
}

.checkbox-label input {
  width: 20px;
  min-height: 20px;
  margin-top: 0.18rem;
}

.form-submit {
  width: 100%;
}

.contact-layout {
  padding: 1rem;
  display: grid;
  gap: 1rem;
}

.large-phone {
  display: inline-flex;
  margin-top: 0.45rem;
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--accent-dark);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

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

summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
}

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

.regulatory-note {
  margin: 2rem 0 0;
  padding: 1.15rem;
}

.regulatory-note h2 {
  font-size: 1.35rem;
}

.final-cta {
  margin: 2.5rem 0 0;
  padding: 1.35rem;
  display: grid;
  gap: 1rem;
}

.legal-copy h2 {
  margin-top: 1.8rem;
  font-size: 1.45rem;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.site-footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.84);
  padding-bottom: 64px;
}

.footer-cta {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 2.2rem 1rem;
  display: grid;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-cta h2 {
  color: var(--white);
}

.footer-main {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 2rem 1rem;
  display: grid;
  gap: 1.5rem;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 0.4rem;
  color: var(--white);
  font-size: 1.2rem;
}

.footer-disclosure {
  max-width: 760px;
  font-size: 0.92rem;
}

.footer-main nav {
  display: grid;
  gap: 0.45rem;
}

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

.mobile-sticky-call {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  min-height: 58px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  box-shadow: 0 -8px 28px rgba(30, 42, 36, 0.22);
}

.nav-open .mobile-sticky-call {
  display: none;
}

@media (min-width: 640px) {
  .intent-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .final-cta,
  .footer-cta {
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 920px) {
  body {
    padding-bottom: 0;
    font-size: 18px;
  }

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

  .menu-toggle {
    display: none;
  }

  .primary-nav {
    display: flex;
    grid-column: auto;
    justify-content: center;
    gap: 0.1rem;
    padding: 0;
  }

  .primary-nav a {
    padding: 0.7rem 0.55rem;
    font-size: 0.9rem;
  }

  .header-phone {
    display: inline-flex;
  }

  .hero-inner {
    min-height: inherit;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 430px);
    padding: 4.5rem 1rem;
  }

  .hero-inner.single {
    grid-template-columns: minmax(0, 0.8fr);
  }

  .hero-copy p {
    font-size: 1.16rem;
  }

  .page-shell {
    padding-bottom: 4rem;
  }

  .section {
    padding: 4.4rem 0;
  }

  .split-section {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
    gap: 2.2rem;
  }

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

  .lead-band {
    grid-template-columns: minmax(0, 0.75fr) minmax(430px, 1fr);
    padding: 1.35rem;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 0.72fr) minmax(460px, 1fr);
    padding: 1.35rem;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .mobile-sticky-call {
    display: none;
  }

  .site-footer {
    padding-bottom: 0;
  }
}

@media (min-width: 1120px) {
  .primary-nav a {
    padding-inline: 0.78rem;
  }
}

@media (max-width: 390px) {
  .brand-name {
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .button {
    width: 100%;
  }
}
