:root {
  --green: #1f5135;
  --green-2: #2f734c;
  --gold: #d5a84f;
  --cream: #f8f4e9;
  --paper: #fffdf8;
  --ink: #17231c;
  --muted: #5d6b61;
  --line: #e7dfcd;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, rgba(213, 168, 79, .18), transparent 22rem), linear-gradient(180deg, #fff, var(--cream));
  line-height: 1.6;
}

a { color: var(--green); }

.site-header {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  text-decoration: none;
  font-weight: 900;
  font-size: 20px;
}

.brand span {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
}

nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
  font-weight: 750;
}

nav a { text-decoration: none; }

main {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 68svh;
  display: grid;
  align-content: center;
  padding: 54px 0;
}

.badge {
  width: fit-content;
  padding: 8px 13px;
  border: 1px solid rgba(31, 81, 53, .15);
  border-radius: 999px;
  background: rgba(255, 253, 248, .85);
  color: var(--green);
  font-weight: 850;
  margin-bottom: 18px;
}

h1 {
  max-width: 820px;
  margin: 0;
  color: var(--green);
  font-size: clamp(44px, 8vw, 86px);
  line-height: .98;
  letter-spacing: -.06em;
}

h2 {
  color: var(--green);
  margin: 0 0 8px;
  line-height: 1.15;
}

p { max-width: 760px; }

.hero p {
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  text-decoration: none;
  font-weight: 850;
}

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

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: 54px;
}

.card, .page {
  background: rgba(255, 253, 248, .88);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(31, 81, 53, .10);
}

.card {
  padding: 24px;
}

.icon {
  font-size: 30px;
  display: inline-block;
  margin-bottom: 12px;
}

.page {
  padding: clamp(22px, 5vw, 54px);
  margin: 28px auto 54px;
}

.page h1 {
  font-size: clamp(38px, 6vw, 64px);
  margin-bottom: 20px;
}

.page h2 { margin-top: 28px; }

.eyebrow {
  color: var(--green-2);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 900;
}

footer {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: var(--muted);
}

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

  nav { justify-content: flex-start; }

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

  .hero { min-height: auto; padding: 38px 0; }
}
