:root {
  color-scheme: light;
  --ink: #152023;
  --muted: #5e6d6f;
  --line: #d7dfdc;
  --paper: #f7f8f4;
  --white: #ffffff;
  --green: #245c4f;
  --gold: #c29a4b;
  --blue: #274f78;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.nav {
  align-items: center;
  background: rgba(247, 248, 244, 0.92);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(20px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: baseline;
  display: inline-flex;
  font-size: 22px;
  gap: 5px;
}

.brand span {
  color: var(--green);
  font-weight: 800;
}

.navLinks {
  color: var(--muted);
  display: flex;
  gap: 22px;
  font-size: 15px;
}

.hero {
  display: grid;
  gap: clamp(30px, 6vw, 80px);
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  min-height: calc(100vh - 69px);
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.heroCopy {
  align-self: center;
  max-width: 820px;
}

.eyebrow {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(42px, 8vw, 86px);
  line-height: 0.98;
  margin-bottom: 28px;
  max-width: 950px;
}

h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  margin-bottom: 0;
  max-width: 820px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.lead {
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.55;
  margin-bottom: 34px;
  max-width: 720px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary,
.secondary {
  align-items: center;
  border-radius: 6px;
  display: inline-flex;
  font-weight: 800;
  min-height: 46px;
  padding: 0 22px;
}

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

.secondary {
  border: 1px solid var(--line);
  color: var(--green);
}

.heroPanel {
  align-self: center;
  background: var(--ink);
  border-radius: 8px;
  color: var(--white);
  display: grid;
  gap: 1px;
  overflow: hidden;
}

.heroPanel div {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
}

.heroPanel span {
  color: #b9c8c3;
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
}

.heroPanel strong {
  font-size: 28px;
}

.section,
.band,
.contact {
  padding: clamp(58px, 8vw, 92px) clamp(20px, 5vw, 72px);
}

.sectionHead {
  margin-bottom: 34px;
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 220px;
  padding: 28px;
}

.card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.band {
  background: #e7ece8;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  align-items: center;
  border-top: 1px solid #c8d2ce;
  display: flex;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  gap: 24px;
  min-height: 92px;
}

.steps li:last-child {
  border-bottom: 1px solid #c8d2ce;
}

.steps span {
  color: var(--gold);
  font-size: 18px;
  min-width: 40px;
}

.contact {
  align-items: center;
  display: flex;
  gap: 28px;
  justify-content: space-between;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .serviceGrid {
    grid-template-columns: 1fr;
  }

  .contact {
    align-items: flex-start;
    flex-direction: column;
  }
}
