:root {
  --ink: #17211f;
  --muted: #5d6a67;
  --line: #d8e0dd;
  --paper: #f8faf7;
  --white: #ffffff;
  --green: #1f6f5f;
  --green-dark: #164d43;
  --blue: #245b7d;
  --gold: #ba7a1f;
  --shadow: 0 18px 45px rgba(20, 36, 32, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: var(--green);
  border-radius: 6px;
  font-size: 0.82rem;
}

.nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 29, 27, 0.86), rgba(12, 29, 27, 0.48) 48%, rgba(12, 29, 27, 0.2)),
    linear-gradient(rgba(12, 29, 27, 0.18), rgba(12, 29, 27, 0.68)),
    url("https://images.unsplash.com/photo-1767022518622-2f2e9f6655e8?auto=format&fit=crop&w=1800&q=80") center 42% / cover;
}

.hero-copy {
  position: relative;
  width: min(780px, calc(100% - 36px));
  margin: 0 0 clamp(34px, 7vw, 88px) clamp(18px, 7vw, 96px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f2bd67;
}

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

h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 7vw, 5.4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
}

h3 {
  font-size: 1.22rem;
}

.lede {
  max-width: 680px;
  margin: 20px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.1);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip span {
  padding: 18px;
  text-align: center;
  color: var(--green-dark);
  font-weight: 800;
  border-right: 1px solid var(--line);
}

.section,
.request-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 78px);
  align-items: start;
}

.intro p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  margin-bottom: 24px;
}

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

.service-card {
  min-height: 210px;
  padding: 24px;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(20, 36, 32, 0.05);
}

.service-card:hover {
  border-color: rgba(31, 111, 95, 0.55);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

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

.card-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.muted-card {
  background: #eef3f1;
}

.area-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.area-list span {
  padding: 10px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  counter-increment: steps;
  min-height: 180px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps li::before {
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--blue);
  border-radius: 50%;
  font-weight: 800;
}

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

.resource-section {
  border-top: 1px solid var(--line);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.resource-grid a {
  min-height: 84px;
  padding: 20px;
  color: var(--green-dark);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.resource-grid a:hover {
  border-color: rgba(31, 111, 95, 0.55);
  box-shadow: 0 10px 28px rgba(20, 36, 32, 0.1);
}

.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: clamp(26px, 6vw, 72px);
  align-items: start;
}

.request-copy p:last-child {
  color: var(--muted);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 11px;
  color: var(--ink);
  background: #fbfcfb;
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
}

textarea {
  resize: vertical;
}

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

.form-note {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--green-dark);
  font-weight: 700;
}

.site-footer {
  display: grid;
  gap: 12px;
  padding: 30px clamp(18px, 4vw, 56px);
  color: #dce8e3;
  background: #17211f;
}

.site-footer p {
  max-width: 980px;
  margin: 0;
}

.site-footer a {
  margin-right: 14px;
  color: #f2bd67;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 6vw, 72px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 92px) 0;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.08rem;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding-bottom: clamp(54px, 8vw, 92px);
}

.content-panel,
.side-panel {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.content-panel h2,
.side-panel h2 {
  font-size: 1.55rem;
  margin-top: 26px;
}

.content-panel h2:first-child,
.side-panel h2:first-child {
  margin-top: 0;
}

.content-panel li {
  margin-bottom: 8px;
}

@media (max-width: 860px) {
  .site-header,
  .intro,
  .area-section,
  .request-section,
  .page-hero,
  .content-grid {
    grid-template-columns: 1fr;
  }

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

  .nav {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

  .hero-copy {
    margin-left: 18px;
  }

  .trust-strip,
  .service-grid,
  .resource-grid,
  .steps,
  .lead-form {
    grid-template-columns: 1fr;
  }
}
