:root {
  color-scheme: light;
  font-family: system-ui, sans-serif;
  background: #f4f8f2;
  color: #18331f;
}
* {
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  margin: 0;
  padding: 2rem 1rem 4rem;
}
.page {
  width: min(64rem, 100%);
  margin: 0 auto;
}
header.site {
  text-align: center;
  padding: 2rem 1rem 3rem;
}
.eyebrow {
  color: #4f7c59;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
h1.wordmark {
  margin: 0.35rem 0 0.6rem;
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  line-height: 1;
}
.tagline {
  font-size: 1.1rem;
  line-height: 1.5;
  color: #3c5c44;
  max-width: 34rem;
  margin: 0 auto;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 2rem #18331f14;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}
.card .body {
  padding: 1.1rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.tag {
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #666;
  background: #f2f2f2;
  border-radius: 0.3rem;
  padding: 0.15rem 0.5rem;
}
.card h2 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.35;
  color: #18331f;
}
.card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #455b4c;
}
footer.site {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #5a6b60;
}
footer.site a {
  color: #4f7c59;
}
