:root {
  --ink: #18211d;
  --muted: #5f6a63;
  --line: #d8ddd6;
  --paper: #f7f6f1;
  --white: #ffffff;
  --green: #244638;
  --copper: #b56e3f;
  --blue: #335c67;
}

* {
  box-sizing: border-box;
}

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

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 246, 241, 0.94);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--green);
  color: var(--white);
}

nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(52px, 9vw, 112px) clamp(20px, 5vw, 72px) 48px;
}

.hero-copy {
  max-width: 820px;
}

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

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

h1 {
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.96;
  margin-bottom: 24px;
  max-width: 900px;
}

.lead {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
  max-width: 700px;
}

.hero-actions,
.contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--green);
  font-weight: 700;
}

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

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

.hero-panel {
  align-self: end;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 26px;
}

.panel-label {
  display: block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero-panel h2 {
  font-size: 28px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-panel ul,
.check-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

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

.band div {
  background: var(--white);
  padding: 26px clamp(20px, 5vw, 72px);
}

.metric {
  display: block;
  color: var(--green);
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 6px;
}

.band p {
  color: var(--muted);
  margin-bottom: 0;
}

.section {
  padding: clamp(46px, 7vw, 90px) clamp(20px, 5vw, 72px);
}

.section.muted {
  background: #ecebe3;
}

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

.section h2,
.contact h2 {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  margin-bottom: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

article {
  border-top: 2px solid var(--green);
  background: var(--white);
  padding: 22px;
}

article h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

article p,
.two-col p {
  color: var(--muted);
  line-height: 1.65;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.market-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.market-row span {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 12px 16px;
  font-weight: 700;
}

.contact {
  justify-content: space-between;
  background: var(--green);
  color: var(--white);
  padding: clamp(38px, 7vw, 70px) clamp(20px, 5vw, 72px);
  margin-top: 0;
}

.contact .eyebrow {
  color: #e7b88e;
}

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

footer {
  display: grid;
  gap: 8px;
  padding: 22px clamp(20px, 5vw, 72px);
  color: var(--muted);
  font-size: 13px;
}

footer p {
  margin: 0;
}

@media (max-width: 820px) {
  .site-header,
  .hero,
  .contact {
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero,
  .grid,
  .two-col,
  .band {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 44px;
  }
}
