:root {
  --ink: #633b2c;
  --accent: #986a3e;
  --paper: #fdf7ef;
  --cream: #f7ecdf;
  --white: #fffdf9;
  --line: rgba(99, 59, 44, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Gill Sans", "Trebuchet MS", sans-serif; line-height: 1.7; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.site-shell { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.site-header { position: sticky; z-index: 10; top: 0; border-bottom: 1px solid var(--line); background: rgba(253, 247, 239, .94); backdrop-filter: blur(14px); }
.nav { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: 1.55rem; font-weight: 700; text-decoration: none; letter-spacing: -.02em; }
.brand small { display: block; margin-top: -7px; color: var(--accent); font-family: "Gill Sans", "Trebuchet MS", sans-serif; font-size: .6rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: .88rem; font-weight: 600; }
.nav-links a { text-decoration: none; }
.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; padding: 0 20px; border-radius: 999px; background: var(--ink); color: white; font-weight: 700; text-decoration: none; }
.hero { padding: 96px 0 64px; text-align: center; }
.eyebrow { color: var(--accent); font-size: .75rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { font-family: "Iowan Old Style", Baskerville, Georgia, serif; line-height: 1.12; letter-spacing: -.025em; }
.hero h1 { max-width: 780px; margin: 16px auto; font-size: clamp(3rem, 8vw, 6.4rem); font-weight: 500; }
.hero p { max-width: 630px; margin: 0 auto; color: rgba(99, 59, 44, .74); font-size: 1.05rem; }
.post-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; padding-bottom: 96px; }
.post-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--white); transition: transform .2s ease, box-shadow .2s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(99, 59, 44, .1); }
.card-image, .article-image { width: 100%; object-fit: cover; background: linear-gradient(135deg, #ead4bc, #986a3e); }
.card-image { aspect-ratio: 16 / 9; }
.image-placeholder { display: grid; place-items: center; color: white; font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: 2rem; }
.card-body { padding: 28px; }
.post-meta { display: flex; flex-wrap: wrap; gap: 8px 16px; color: var(--accent); font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.post-card h2 { margin: 12px 0; font-size: clamp(1.75rem, 4vw, 2.35rem); font-weight: 500; }
.post-card h2 a { text-decoration: none; }
.post-card p { margin: 0 0 22px; color: rgba(99, 59, 44, .72); }
.read-more { color: var(--accent); font-weight: 800; text-decoration: none; }
.article-header { max-width: 900px; padding: 90px 0 48px; text-align: center; }
.article-header h1 { margin: 18px 0; font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 500; }
.article-dek { max-width: 720px; margin: 0 auto 20px; color: rgba(99, 59, 44, .72); font-size: 1.15rem; }
.article-image { max-height: 620px; aspect-ratio: 16 / 8; border-radius: 28px; }
.article-body { width: min(760px, calc(100% - 40px)); margin: 64px auto 96px; font-family: "Iowan Old Style", Baskerville, Georgia, serif; font-size: 1.16rem; }
.article-body h2 { margin: 2.5em 0 .7em; font-size: 2rem; }
.article-body h3 { margin: 2em 0 .5em; font-size: 1.5rem; }
.article-body p, .article-body ul, .article-body ol, .article-body blockquote { margin: 0 0 1.35em; }
.article-body a { color: var(--accent); }
.article-body blockquote { padding: 18px 24px; border-left: 3px solid var(--accent); background: var(--cream); }
.article-body img { margin: 32px auto; border-radius: 18px; }
.back-link { display: inline-block; margin-bottom: 24px; color: var(--accent); font-weight: 800; text-decoration: none; }
.site-footer { padding: 44px 0; border-top: 1px solid var(--line); background: var(--cream); }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.empty { grid-column: 1 / -1; padding: 64px; border: 1px dashed var(--line); border-radius: 24px; text-align: center; }
@media (max-width: 760px) {
  .site-shell { width: min(100% - 24px, 1160px); }
  .nav { min-height: 68px; }
  .nav-links a:not(.button) { display: none; }
  .hero { padding-top: 64px; }
  .post-grid { grid-template-columns: 1fr; }
  .article-header { padding-top: 64px; }
  .article-body { width: min(100% - 30px, 760px); }
  .footer-row { align-items: flex-start; flex-direction: column; }
}
