:root {
  --ink: #27231f;
  --muted: #716961;
  --paper: #fbf8f3;
  --card: #fffdf9;
  --line: #ded5ca;
  --accent: #8b513c;
  --max: 72rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 17px/1.65 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: var(--accent); text-underline-offset: .18em; }
img, video { display: block; max-width: 100%; border-radius: .45rem; }
.shell { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.site-header { border-bottom: 1px solid var(--line); }
.site-header .shell { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 4.5rem; }
.brand { color: var(--ink); font-family: Georgia, serif; font-size: 1.2rem; text-decoration: none; }
.site-header nav { display: flex; gap: 1.25rem; }
.site-header nav a { color: var(--muted); text-decoration: none; }
.site-header nav a[aria-current="page"], .site-header nav a:hover { color: var(--ink); }
.hero { display: grid; place-items: center; min-height: calc(100vh - 9rem); padding: 3rem 0; text-align: center; }
.hero img { width: min(18rem, 65vw); aspect-ratio: 1; object-fit: cover; border-radius: 50%; margin: 0 auto 2rem; box-shadow: 0 1.25rem 3rem #38271c26; }
.eyebrow { color: var(--accent); font-size: .77rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.12; }
h1 { margin: .5rem 0 1rem; font-size: clamp(2.4rem, 7vw, 5.2rem); font-weight: 500; }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
.lede { max-width: 38rem; margin: 0 auto; color: var(--muted); font-size: 1.08rem; }
.button { display: inline-block; margin-top: 1.5rem; padding: .7rem 1rem; border: 1px solid var(--ink); border-radius: 999px; color: var(--ink); text-decoration: none; }
.page { padding: 4rem 0 6rem; }
.page-intro { max-width: 48rem; margin-bottom: 3rem; }
.page-intro h1 { font-size: clamp(2.5rem, 7vw, 4.75rem); }
.post-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }
.post-card { overflow: hidden; border: 1px solid var(--line); border-radius: .7rem; background: var(--card); }
.post-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 0; }
.post-card div { padding: 1.2rem; }
.post-card h2 { margin: .25rem 0 .5rem; font-size: 1.45rem; }
.post-card a { color: var(--ink); text-decoration: none; }
.meta { color: var(--muted); font-size: .88rem; }
.article { width: min(calc(100% - 2rem), 47rem); margin-inline: auto; padding: 4rem 0 6rem; }
.article header { margin-bottom: 2.5rem; }
.article h1 { font-size: clamp(2.5rem, 8vw, 4.8rem); }
.article p { margin: 1.25rem 0; }
.gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; margin: 2rem 0; }
.gallery a { display: block; }
.gallery img { width: 100%; height: 18rem; object-fit: cover; }
.gallery .wide { grid-column: 1 / -1; }
.gallery .wide img { height: auto; max-height: 36rem; }
.caption { margin-top: .4rem; color: var(--muted); font-size: .85rem; }
.back { display: inline-block; margin-bottom: 2rem; }
.site-footer { border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem; }
.site-footer .shell { padding-block: 1.5rem; }
@media (max-width: 760px) {
  .post-grid { grid-template-columns: 1fr; }
  .gallery img { height: 13rem; }
  .site-header .shell { align-items: flex-start; flex-direction: column; padding-block: 1rem; }
}

