:root {
  --ink: #111916;
  --ink-soft: #2a3831;
  --muted: #66746c;
  --paper: #f5f3ed;
  --panel: #ffffff;
  --panel-2: #eef3ee;
  --forest: #155f3d;
  --forest-dark: #092719;
  --leaf: #7ca35b;
  --copper: #b87432;
  --line: #d8ded5;
  --shadow: 0 24px 70px rgba(12, 31, 20, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.58;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.top-strip {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px clamp(18px, 5vw, 76px);
  color: rgba(255,255,255,.82);
  background: var(--forest-dark);
  font-size: 13px;
  font-weight: 700;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 13px clamp(18px, 5vw, 76px);
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.brand img { width: 218px; max-height: 70px; object-fit: contain; }
.nav {
  display: flex;
  align-items: center;
  gap: 17px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 900;
}
.nav a { color: var(--forest-dark); text-decoration: none; }
.nav a:hover { color: var(--forest); }
.nav-cta {
  padding: 10px 15px;
  color: #fff !important;
  background: var(--forest);
  border-radius: 4px;
}

.hero {
  min-height: 86vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4,18,11,.9), rgba(4,18,11,.58) 48%, rgba(4,18,11,.18)),
    linear-gradient(0deg, rgba(9,39,25,.78), transparent 36%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0 58px;
  color: #fff;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 920px;
  margin-bottom: 20px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: .96;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}
h3 { margin-bottom: 10px; font-size: 22px; line-height: 1.22; }
.lead {
  max-width: 780px;
  color: rgba(255,255,255,.88);
  font-size: clamp(18px, 2vw, 24px);
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}
.primary { color: #fff; background: var(--forest); }
.dark { color: #fff; background: var(--forest-dark); }
.ghost { color: #fff; border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.08); }
.light { color: var(--forest-dark); background: #fff; }

.proof {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(1180px, calc(100% - 40px));
  margin: -40px auto 0;
  background: var(--line);
  box-shadow: var(--shadow);
}
.proof article { min-height: 132px; padding: 25px; background: #fff; }
.proof strong { display: block; margin-bottom: 7px; color: var(--forest); font-size: 34px; line-height: 1; }
.proof span { color: var(--muted); font-weight: 800; }

.section { padding: clamp(62px, 8vw, 116px) clamp(20px, 6vw, 86px); }
.section-head { max-width: 850px; margin-bottom: 34px; }
.section-head p, .content p, .card p, .metric p, .project p, .download p, .timeline p { color: var(--muted); }
.split {
  display: grid;
  grid-template-columns: minmax(0,.88fr) minmax(330px,.72fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}
.split.reverse { grid-template-columns: minmax(330px,.75fr) minmax(0,.9fr); }
.media-stack {
  display: grid;
  gap: 14px;
}
.media-stack img, .rounded-img, .project img { border-radius: 8px; box-shadow: var(--shadow); object-fit: cover; }
.media-stack img:first-child { width: 100%; height: 370px; }
.media-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.media-row img { height: 170px; width: 100%; }

.cards, .grid, .downloads, .process {
  display: grid;
  gap: 18px;
}
.three { grid-template-columns: repeat(3, minmax(0,1fr)); }
.four { grid-template-columns: repeat(4, minmax(0,1fr)); }
.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.card, .content-card, .download, .metric, .timeline, .contact-box {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}
.card.visual { padding: 0; overflow: hidden; }
.card.visual img { width: 100%; height: 210px; object-fit: cover; }
.card.visual div { padding: 24px; }
.card .icon { width: 56px; height: 56px; object-fit: contain; margin-bottom: 16px; }
.card a, .download a, .text-link { color: var(--forest); font-weight: 900; text-decoration: none; }
.badge {
  display: inline-block;
  padding: 6px 10px;
  margin-bottom: 14px;
  color: var(--forest);
  background: #ecf4ef;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.band {
  display: grid;
  grid-template-columns: minmax(320px,.78fr) minmax(0,.9fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding: clamp(62px, 8vw, 106px) clamp(20px, 6vw, 86px);
  color: #fff;
  background: var(--forest-dark);
}
.band p { color: rgba(255,255,255,.76); }
.band img { width: 100%; height: 430px; border-radius: 8px; object-fit: cover; }

.mega-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  margin-top: 30px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.mega-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}
.mega-links a {
  display: block;
  padding: 14px;
  color: var(--forest-dark);
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 900;
}

.page-hero {
  padding: clamp(70px, 8vw, 118px) clamp(20px, 6vw, 86px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(9,39,25,.95), rgba(9,39,25,.72)),
    url("../assets/img/hero-sawmill.jpg") center/cover;
}
.page-hero p { max-width: 820px; color: rgba(255,255,255,.82); font-size: 19px; }
.content { padding: clamp(50px, 7vw, 94px) clamp(20px, 6vw, 86px); }
.content.narrow { max-width: 980px; margin: 0 auto; }
.metric strong { display: block; color: var(--forest); font-size: 34px; line-height: 1; margin-bottom: 10px; }
.process { grid-template-columns: repeat(5, minmax(0,1fr)); }
.timeline { position: relative; }
.timeline strong { color: var(--copper); }
.project {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 22px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}
.project img { width: 240px; height: 170px; }
.download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.download a { white-space: nowrap; }
.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
}
.logos img {
  width: 105px;
  height: 72px;
  object-fit: contain;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

input, textarea, select {
  width: 100%;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}
label { display: block; margin-bottom: 14px; font-weight: 900; }
textarea { resize: vertical; }

.footer {
  display: grid;
  grid-template-columns: 1fr .8fr .8fr;
  gap: 28px;
  padding: 34px clamp(20px, 6vw, 86px);
  color: rgba(255,255,255,.82);
  background: #101610;
}
.footer img { width: 178px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer a { display: block; margin-bottom: 8px; color: #fff; text-decoration: none; font-weight: 800; }
.footer h3 { color: #fff; font-size: 18px; }

@media (max-width: 1040px) {
  .topbar { align-items: flex-start; flex-direction: column; }
  .nav { gap: 12px; }
  .proof, .three, .four, .two, .grid, .downloads, .process, .split, .split.reverse, .band, .mega-panel, .footer { grid-template-columns: 1fr; }
  .project { grid-template-columns: 1fr; }
  .project img, .band img, .media-stack img:first-child { width: 100%; height: 290px; }
}

@media (max-width: 580px) {
  .top-strip { display: none; }
  .brand img { width: 172px; }
  .nav { font-size: 13px; }
  h1 { font-size: 41px; }
  .hero-content { padding-top: 64px; }
  .proof { margin-left: 14px; margin-right: 14px; width: auto; }
  .download { align-items: flex-start; flex-direction: column; }
  .media-row { grid-template-columns: 1fr; }
}
