:root {
  --bg-top: #f7f8f4;
  --bg-bottom: #eef4ea;
  --text: #183226;
  --muted: #355847;
  --muted-2: #4b6c51;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-soft: #f7faf2;
  --border: rgba(24, 50, 38, 0.08);
  --accent: #244833;
  --accent-soft: #edf4df;
  --shadow: 0 18px 60px rgba(24, 50, 38, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(128, 167, 78, 0.14), transparent 32%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
  color: var(--text);
  font-family: Arial, sans-serif;
}

a {
  color: var(--accent);
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 20px 56px;
}

.header,
.nav,
.chips,
.grid,
.footer-links,
.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.header {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.brand {
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav a,
.footer-links a {
  color: #294c3b;
  font-size: 14px;
  text-decoration: none;
}

.hero,
.section,
.contact,
.cta {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero,
.section,
.contact,
.cta {
  padding: 28px;
}

.redirect-note {
  border-color: rgba(36, 72, 51, 0.14);
  background: #f2f7ea;
}

.redirect-note p {
  max-width: 760px;
  margin: 0;
}

.hero {
  padding: 40px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.15;
}

h1 {
  max-width: 850px;
  font-size: 42px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 20px;
}

p,
li {
  color: var(--muted);
  line-height: 1.65;
}

.lead {
  max-width: 880px;
  margin: 0;
  font-size: 18px;
}

.chips {
  margin-top: 22px;
}

.chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #294c3b;
  font-size: 14px;
}

.stack {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.grid {
  align-items: stretch;
  margin-top: 18px;
}

.card {
  flex: 1 1 220px;
  min-width: 220px;
  padding: 20px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface-soft);
}

.card p,
.meta {
  margin: 0;
}

.meta {
  margin-top: 10px;
  color: var(--muted-2);
  font-size: 14px;
}

.layout-2 {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 18px;
}

.list {
  margin: 0;
  padding-left: 20px;
}

.facts {
  margin-top: 18px;
}

.fact {
  flex: 1 1 180px;
  min-width: 180px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface-soft);
}

.fact strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.button.secondary {
  background: #fff;
  color: var(--accent);
  border: 1px solid rgba(36, 72, 51, 0.18);
}

.contact address {
  margin-top: 16px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.8;
}

.footer {
  margin-top: 18px;
  padding: 18px 4px 0;
  color: var(--muted-2);
  font-size: 14px;
}

.footer p {
  margin: 12px 0 0;
}

@media (max-width: 900px) {
  .hero {
    padding: 28px;
  }

  h1 {
    font-size: 34px;
  }

  .layout-2 {
    grid-template-columns: 1fr;
  }
}
