:root {
  --ink: #18201b;
  --soft-ink: #566058;
  --paper: #fbfaf6;
  --muted: #f0eee7;
  --line: #ddd8ca;
  --accent: #2f6b4f;
  --accent-dark: #244f3c;
  --white: #ffffff;
  --radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(22px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(12px);
}

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

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

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--soft-ink);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: end;
  min-height: 78vh;
  padding: 96px max(22px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(47, 107, 79, 0.08), transparent 38%),
    var(--paper);
}

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

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.4rem);
}

h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

p {
  color: var(--soft-ink);
  line-height: 1.7;
}

.hero-copy p:not(.eyebrow) {
  max-width: 660px;
  font-size: 1.12rem;
}

.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: 0 18px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-weight: 800;
  cursor: pointer;
}

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

.button.secondary {
  color: var(--ink);
  background: transparent;
}

.hero-card {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.hero-card div {
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.hero-card div:last-child {
  border-bottom: 0;
}

.hero-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--soft-ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-card strong {
  font-size: 1.05rem;
}

.section {
  padding: 92px max(22px, calc((100vw - 1120px) / 2));
  border-bottom: 1px solid var(--line);
}

.section.muted {
  background: var(--muted);
}

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

.section-note {
  max-width: 680px;
  margin-top: 20px;
}

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

.two-column p {
  font-size: 1.04rem;
}

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

.market-card,
.process-list div,
.placeholder,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.market-card {
  min-height: 220px;
  padding: 24px;
}

.market-card span,
.process-list span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--accent);
  font-weight: 800;
}

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

.process-list div {
  min-height: 230px;
  padding: 24px;
}

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

.placeholder {
  display: grid;
  min-height: 260px;
  place-items: center;
  color: var(--soft-ink);
  background:
    linear-gradient(135deg, rgba(47, 107, 79, 0.08), transparent),
    var(--white);
  font-weight: 800;
  text-align: center;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 54px;
  padding: 92px max(22px, calc((100vw - 1120px) / 2));
  background: var(--ink);
  color: var(--white);
}

.contact p {
  color: rgba(255, 255, 255, 0.72);
}

.contact .eyebrow {
  color: #9bc7af;
}

.contact-card {
  display: grid;
  align-self: start;
  background: #202920;
  border-color: rgba(255, 255, 255, 0.14);
}

.contact-card div {
  display: grid;
  gap: 10px;
  padding: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-card div:last-child {
  border-bottom: 0;
}

.contact-card span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--white);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  word-break: break-word;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px max(22px, calc((100vw - 1120px) / 2));
  color: rgba(255, 255, 255, 0.72);
  background: #111712;
  font-weight: 700;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.84rem;
  }

  .hero,
  .two-column,
  .market-grid,
  .process-list,
  .placeholder-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  h1 {
    font-size: clamp(2.55rem, 12vw, 4.5rem);
  }

  .section,
  .contact {
    padding-top: 68px;
    padding-bottom: 68px;
  }
}
