:root {
  color-scheme: light;
  --ink: #18212f;
  --muted: #667085;
  --line: #e4dccd;
  --paper: #fffaf0;
  --panel: #ffffff;
  --forest: #2f7654;
  --forest-dark: #1f4f39;
  --gold: #efc45a;
}

* {
  box-sizing: border-box;
}

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

a {
  color: var(--forest-dark);
  font-weight: 700;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.94);
}

.nav {
  max-width: 1040px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  color: var(--forest-dark);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

main {
  max-width: 1040px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.hero {
  max-width: 760px;
}

.eyebrow {
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 10px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(38px, 8vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
  margin: 0;
}

h2 {
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: 0;
  margin: 42px 0 12px;
}

h3 {
  font-size: 18px;
  margin: 24px 0 8px;
}

p, li {
  font-size: 16px;
}

.lead {
  color: var(--muted);
  font-size: 19px;
  max-width: 680px;
}

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

.button {
  min-height: 46px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: var(--forest);
  color: #ffffff;
  text-decoration: none;
}

.button.secondary {
  background: #ffffff;
  color: var(--forest-dark);
  border: 1px solid var(--line);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.card h3 {
  margin-top: 0;
}

.legal {
  max-width: 820px;
}

.legal h1 {
  font-size: clamp(32px, 6vw, 52px);
}

.meta {
  color: var(--muted);
  font-size: 14px;
}

table {
  border-collapse: collapse;
  width: 100%;
  margin: 18px 0;
}

th, td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

th {
  background: #f5eddd;
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 24px;
}

.site-footer div {
  max-width: 1040px;
  margin: 0 auto;
}

@media (max-width: 620px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  main {
    padding-top: 34px;
  }
}
