:root {
  --ink: #24302b;
  --muted: #6e766f;
  --paper: #f5f1e8;
  --line: #d9d2c5;
  --forest: #294f3d;
  --cream: #fffaf0;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
}

a { color: inherit; }

.site-header,
footer {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header {
  min-height: 86px;
  border-bottom: 1px solid var(--line);
}

.brand {
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .02em;
}

nav { display: flex; gap: 26px; }

nav a {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: .86rem;
  text-decoration: none;
}

nav a:hover,
nav a.active { color: var(--ink); }

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

.narrow { width: min(760px, calc(100% - 40px)); }

.hero {
  min-height: 620px;
  padding: 110px 0 90px;
  background:
    radial-gradient(circle at 82% 35%, rgba(211, 184, 119, .28), transparent 20%),
    radial-gradient(circle at 72% 55%, rgba(72, 111, 86, .20), transparent 28%);
}

.eyebrow,
.date {
  margin: 0 0 14px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1, h2, h3 { line-height: 1.1; }

h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(3.2rem, 8vw, 6.7rem);
  font-weight: 500;
  letter-spacing: -.045em;
}

.lede {
  max-width: 620px;
  margin: 30px 0;
  color: #4f5a53;
  font-size: 1.2rem;
}

.button {
  display: inline-block;
  padding: 12px 18px;
  color: white;
  background: var(--forest);
  border-radius: 2px;
  font-family: Arial, sans-serif;
  font-size: .88rem;
  text-decoration: none;
}

.section { padding: 80px 0 110px; }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 32px;
}

.section-heading h2,
.page-intro h1 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  font-weight: 500;
  letter-spacing: -.035em;
}

.text-link,
.card a {
  color: var(--forest);
  font-family: Arial, sans-serif;
  font-size: .86rem;
  font-weight: 700;
  text-underline-offset: 4px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  min-height: 360px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(36, 48, 43, .12);
}

.card h3 { margin: 15px 0; font-size: 1.7rem; font-weight: 500; }
.card p:not(.date) { color: #4d5751; }
.card a { margin-top: auto; }
.card-sage { background: #dfe7dc; }
.card-gold { background: #eee1c3; }
.card-blue { background: #dbe5e5; }

.quote-block {
  margin-bottom: 100px;
  padding: 75px 8%;
  color: var(--cream);
  background: var(--forest);
  text-align: center;
}

.quote-block p { margin: 0 0 12px; font-size: clamp(2rem, 4vw, 3.4rem); }
.quote-block span { color: #c4d0c7; font-family: Arial, sans-serif; font-size: .8rem; }

.page-intro {
  padding: 110px 0 80px;
  border-bottom: 1px solid var(--line);
}

.page-intro p:last-child { max-width: 650px; color: var(--muted); font-size: 1.1rem; }

.entry { padding: 70px 0; border-bottom: 1px solid var(--line); }
.entry h2 { margin: 0 0 25px; font-size: 2.5rem; font-weight: 500; }
.entry p:not(.date) { font-size: 1.08rem; }

.about-grid { display: grid; gap: 0; margin-bottom: 80px; }
.about-grid > div { padding: 42px 0; border-bottom: 1px solid var(--line); }
.about-grid h2 { margin: 0 0 12px; font-size: 1.6rem; font-weight: 500; }
.about-grid p { margin: 0; color: var(--muted); }

footer {
  min-height: 110px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-family: Arial, sans-serif;
  font-size: .78rem;
}

@media (max-width: 760px) {
  .site-header { align-items: flex-start; padding: 22px 0; }
  .brand { max-width: 120px; line-height: 1.2; }
  nav { gap: 15px; }
  .hero { min-height: 520px; padding-top: 80px; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 300px; }
  .section-heading { align-items: flex-start; gap: 20px; }
  footer { align-items: flex-start; flex-direction: column; justify-content: center; gap: 6px; }
}
