:root {
  color-scheme: light;
  --ink: #17201c;
  --muted: #5e6a62;
  --line: #d9ded8;
  --paper: #fbfaf5;
  --soft: #edf4ed;
  --field: #ffffff;
  --accent: #1f7a5a;
  --accent-strong: #155c43;
  --copper: #bd6536;
  --gold: #d7a53f;
  --water: #2f7e91;
  --shadow: 0 16px 40px rgba(21, 37, 29, 0.12);
  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;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(23, 32, 28, 0.1);
  background: rgba(251, 250, 245, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  font-size: 0.94rem;
  color: var(--muted);
}

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

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(560px, 82vh, 760px);
  overflow: hidden;
  padding: 0 clamp(18px, 5vw, 72px) clamp(42px, 8vw, 88px);
  background: #1c3129;
}

.page-hero {
  display: grid;
  align-content: end;
  min-height: clamp(420px, 58vh, 620px);
  padding: clamp(70px, 11vw, 132px) clamp(18px, 5vw, 72px) clamp(52px, 8vw, 88px);
  background:
    linear-gradient(90deg, rgba(20, 52, 42, 0.94), rgba(31, 122, 90, 0.76)),
    #1f4f40;
  color: #fff;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
}

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

.page-hero .button {
  width: fit-content;
  margin-top: 20px;
}

#serviceMap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 24, 20, 0.88), rgba(16, 24, 20, 0.54) 48%, rgba(16, 24, 20, 0.14)),
    linear-gradient(0deg, rgba(16, 24, 20, 0.7), rgba(16, 24, 20, 0.05) 48%);
}

.hero-content {
  position: relative;
  max-width: 760px;
  color: #fff;
}

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

.hero .eyebrow {
  color: #f0b86c;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 860px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.95;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1.02;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.25;
}

p {
  line-height: 1.65;
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.34rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

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

.button.primary:hover {
  background: var(--accent-strong);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.button.secondary.dark {
  border-color: rgba(23, 32, 28, 0.24);
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  margin-left: 10px;
}

.page-call {
  width: fit-content;
  margin-top: 12px;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #fffdf8;
}

.status-strip div {
  min-height: 126px;
  padding: 24px clamp(18px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.status-strip div:last-child {
  border-right: 0;
}

.metric {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-strong);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
}

.status-strip span:last-child {
  color: var(--muted);
}

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

.section.alt {
  background: var(--soft);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 32px;
}

.section-heading p,
.split p,
.legal p {
  max-width: 760px;
  color: var(--muted);
}

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

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

.info-card,
.faq-item {
  min-height: 236px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 0 1px 0 rgba(23, 32, 28, 0.04);
}

.link-card {
  color: inherit;
  text-decoration: none;
}

.link-card:hover {
  border-color: rgba(31, 122, 90, 0.52);
  box-shadow: var(--shadow);
}

.faq-item {
  min-height: 252px;
}

.info-card p,
.faq-item p,
.checklist {
  color: var(--muted);
}

.wide-list {
  max-width: 900px;
  margin-bottom: 24px;
}

.card-number {
  display: inline-block;
  margin-bottom: 44px;
  color: var(--water);
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  align-items: start;
  gap: clamp(28px, 6vw, 80px);
}

.checklist {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist-panel {
  display: grid;
  gap: 16px;
}

.checklist-panel h3 {
  color: var(--accent-strong);
}

.checklist li {
  min-height: 48px;
  padding: 13px 16px;
  border-left: 4px solid var(--gold);
  background: #fffdf8;
}

.contact-section {
  background: #fffdf8;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cbd4cc;
  border-radius: 8px;
  background: var(--field);
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(31, 122, 90, 0.2);
  border-color: var(--accent);
}

.full {
  grid-column: 1 / -1;
}

.consent {
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  color: var(--muted);
  font-weight: 600;
}

.consent input {
  min-height: 20px;
  margin: 2px 0 0;
}

.form-message {
  min-height: 28px;
  margin: 0;
  color: var(--accent-strong);
  font-weight: 800;
}

.legal {
  display: grid;
  grid-template-columns: minmax(240px, 0.35fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 80px);
  border-top: 1px solid var(--line);
}

.legal-copy {
  max-width: 880px;
}

.legal-copy h2 {
  margin-top: 34px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

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

.legal-copy p {
  color: var(--muted);
}

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

@media (max-width: 900px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 640px;
  }

  .status-strip,
  .service-grid,
  .faq-grid,
  .split,
  .legal {
    grid-template-columns: 1fr;
  }

  .status-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .status-strip div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 600px;
    padding-bottom: 42px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
