:root {
  color-scheme: light;
  --bg: #f7f4ee;
  --ink: #161512;
  --muted: #6b6255;
  --line: #ded6c8;
  --panel: #ffffff;
  --accent: #154936;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: var(--accent);
  text-underline-offset: 0.18em;
}

.page {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 48px;
}

.hero {
  padding: 0 0 44px;
  border-bottom: 1px solid var(--line);
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 10vw, 6.75rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 650;
}

.section {
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}

.section h2 {
  margin-bottom: 14px;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section p {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
}

.facts {
  display: grid;
  gap: 18px;
  margin: 0;
}

.facts div {
  display: grid;
  gap: 4px;
}

.facts dt {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.facts dd {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 760;
}

.plain-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.plain-list li::marker {
  color: var(--accent);
}

.project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product {
  max-width: 720px;
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product h3 {
  margin-bottom: 8px;
  font-size: 1.45rem;
}

.footer {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 40px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer p {
  margin: 0;
}

@media (max-width: 720px) {
  .page {
    width: min(100% - 28px, 960px);
    padding-top: 44px;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .project-list {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 30px 0;
  }

  .product {
    padding: 20px;
  }
}
