:root {
  color-scheme: light;
  --forest: #183f35;
  --leaf: #4f7b58;
  --ink: #25302c;
  --muted: #65736d;
  --line: #dfd8ca;
  --paper: #fbf8f0;
  --mint: #e6efe3;
  --white: #fffdf8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(230, 239, 227, 0.9), transparent 32rem),
    linear-gradient(180deg, var(--paper), #f3eee3);
}

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

.shell {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.hero {
  min-height: 62vh;
  display: grid;
  align-content: center;
  gap: 22px;
}

.eyebrow,
.updated {
  margin: 0;
  color: var(--leaf);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  color: var(--forest);
  font-family: ui-serif, Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.page h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

h2 {
  margin: 0 0 12px;
  color: var(--forest);
  font-size: 1.25rem;
}

h3 {
  margin: 24px 0 8px;
  color: var(--forest);
}

p,
li {
  line-height: 1.65;
}

.lede {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  text-decoration: none;
}

.button.primary {
  border-color: var(--forest);
  color: white;
  background: var(--forest);
}

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

article,
section {
  margin: 18px 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 18px 45px rgba(40, 48, 44, 0.08);
}

article p,
section p {
  margin: 0 0 12px;
}

.back {
  display: inline-flex;
  margin-bottom: 28px;
  text-decoration: none;
}

.note {
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 24px, 960px);
    padding: 34px 0;
  }

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

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

  article,
  section {
    padding: 18px;
    border-radius: 14px;
  }
}
