:root {
  color-scheme: light;
  --paper: #f4f0e8;
  --ink: #17211d;
  --muted: #66716c;
  --line: #d8d2c6;
  --green: #1f5b48;
  --card: rgba(255, 255, 255, 0.62);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 9%, rgba(231, 190, 118, 0.23), transparent 26rem),
    var(--paper);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
.site-header, main, footer { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.site-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; gap: 12px; align-items: center; font-weight: 700; letter-spacing: -0.01em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--green);
  border-radius: 10px 10px 10px 3px;
  font-family: Georgia, serif;
}
nav { display: flex; gap: 26px; color: var(--muted); font-size: 0.94rem; }
nav a:hover { color: var(--ink); }

.hero {
  min-height: 570px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
  padding: 76px 0;
}
.hero img { width: 100%; height: auto; filter: drop-shadow(0 26px 28px rgba(40, 49, 44, 0.12)); }
.eyebrow, .tag { color: var(--green); font-size: 0.76rem; font-weight: 750; letter-spacing: 0.14em; text-transform: uppercase; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; line-height: 1.08; margin: 0; }
h1 { max-width: 740px; font-size: clamp(3rem, 7vw, 5.8rem); letter-spacing: -0.055em; }
.lede { max-width: 600px; margin-top: 28px; color: var(--muted); font-size: 1.13rem; }
.notes { padding: 70px 0 110px; border-top: 1px solid var(--line); }
.section-heading { display: flex; justify-content: space-between; align-items: end; margin-bottom: 34px; }
.section-heading h2, .about h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.035em; }
.section-heading span { color: var(--muted); font-size: 0.9rem; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--card);
  border: 1px solid rgba(216, 210, 198, 0.85);
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(49, 57, 53, 0.045);
}
article h3 { margin: 12px 0 18px; font-size: 1.62rem; }
article p:not(.tag) { color: var(--muted); }
article time { margin-top: auto; color: #7b827e; font-size: 0.8rem; }
.about { max-width: 720px; margin: 20px 0 120px; }
.about > p:last-child { max-width: 620px; color: var(--muted); font-size: 1.07rem; }
footer {
  display: flex;
  justify-content: space-between;
  padding: 28px 0 44px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
}

@media (max-width: 760px) {
  .site-header, main, footer { width: min(100% - 28px, 1120px); }
  .hero { min-height: auto; grid-template-columns: 1fr; gap: 30px; padding: 58px 0 72px; }
  .hero img { max-width: 520px; }
  .grid { grid-template-columns: 1fr; }
  article { min-height: 240px; }
  .section-heading { align-items: start; flex-direction: column; gap: 10px; }
  footer { gap: 20px; flex-direction: column; }
}
