:root {
  --ink: #17201d;
  --muted: #58645f;
  --line: #d9ded8;
  --paper: #f7f6f0;
  --white: #ffffff;
  --green: #23483c;
  --field: #78905f;
  --rust: #bd6d3d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(to bottom, rgba(14, 22, 18, .76), rgba(14, 22, 18, .12));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .12);
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, .76);
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(12px, 3vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

nav a {
  text-decoration: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: #111;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 18, 15, .9), rgba(12, 18, 15, .54) 42%, rgba(12, 18, 15, .08)),
    linear-gradient(0deg, rgba(12, 18, 15, .66), rgba(12, 18, 15, 0) 50%);
}

.hero-content {
  position: relative;
  max-width: 760px;
  padding: 140px clamp(20px, 5vw, 72px) 96px;
}

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

.hero .eyebrow {
  color: #f3b37e;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: .98;
  letter-spacing: 0;
}

.lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(18px, 2vw, 23px);
}

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

.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;
}

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

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

.button.full {
  width: 100%;
}

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

.intro div {
  padding: 26px clamp(20px, 4vw, 44px);
  border-right: 1px solid var(--line);
}

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

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

.intro span {
  margin-top: 6px;
  color: var(--muted);
}

.section,
.band {
  padding: 82px clamp(20px, 5vw, 72px);
}

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

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.18;
}

article p,
.steps p,
.contact p {
  margin: 0;
  color: var(--muted);
}

.band {
  background: #e8ece4;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
}

.steps li {
  min-height: 260px;
  padding: 26px;
  background: #fbfbf7;
}

.steps span {
  display: block;
  margin-bottom: 28px;
  color: var(--field);
  font-size: 13px;
  font-weight: 900;
}

.steps strong {
  display: block;
  margin-bottom: 10px;
  font-size: 19px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 42px;
  align-items: center;
}

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

.contact-link {
  display: block;
  margin-top: 18px;
  color: var(--green);
  font-weight: 800;
}

.note {
  margin-top: 18px;
  font-size: 13px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, .78);
  background: var(--ink);
}

@media (max-width: 980px) {
  .intro,
  .service-grid,
  .steps,
  .contact {
    grid-template-columns: 1fr 1fr;
  }

  .intro div:nth-child(2) {
    border-right: 0;
  }

  .intro div:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 680px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(12, 18, 15, .9), rgba(12, 18, 15, .46)),
      linear-gradient(0deg, rgba(12, 18, 15, .74), rgba(12, 18, 15, 0) 48%);
  }

  .hero-content {
    padding-top: 170px;
    padding-bottom: 58px;
  }

  .hero-actions,
  footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .intro,
  .service-grid,
  .steps,
  .contact {
    grid-template-columns: 1fr;
  }

  .intro div,
  .intro div:nth-child(2) {
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .intro div:first-child {
    border-top: 0;
  }

  .section,
  .band {
    padding-top: 58px;
    padding-bottom: 58px;
  }
}
