:root {
  color-scheme: light;
  --ink: #181714;
  --muted: #625f57;
  --line: #ddd7ca;
  --paper: #fbfaf7;
  --field: #ffffff;
  --green: #315f45;
  --gold: #c78d34;
}

* {
  box-sizing: border-box;
}

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

.page-shell {
  min-height: 100vh;
  padding: 64px clamp(20px, 6vw, 88px);
}

.hero {
  max-width: 760px;
  padding: 80px 0 64px;
}

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

h1 {
  margin: 0;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.intro {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.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(--line);
  border-radius: 6px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.button.primary {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.button.secondary {
  background: var(--field);
}

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

.products article {
  min-height: 180px;
  padding: 28px;
  background: var(--field);
}

.products h2 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.products p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

@media (max-width: 760px) {
  .page-shell {
    padding-top: 36px;
  }

  .hero {
    padding: 56px 0 44px;
  }

  .products {
    grid-template-columns: 1fr;
  }
}
