:root {
	--ink: #1a1a1a;
	--cream: #faf6ee;
	--accent: #8a5a2b;
	--rule: #e4dccb;
}
* { box-sizing: border-box; }
body {
	margin: 0;
	background: var(--cream);
	color: var(--ink);
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
	line-height: 1.6;
}
a { color: inherit; }
.site-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.25rem 1.5rem;
	border-bottom: 1px solid var(--rule);
	max-width: 760px;
	margin: 0 auto;
}
.site-header .logo { font-weight: 700; text-decoration: none; letter-spacing: 0.02em; }
.site-header nav a { margin-left: 1.25rem; text-decoration: none; font-size: 0.95rem; }
.site-header nav a[aria-current="page"] { text-decoration: underline; }
main { max-width: 700px; margin: 0 auto; padding: 2rem 1.5rem 4rem; }
h1 { font-size: 2rem; line-height: 1.15; margin-bottom: 0.5rem; }
.intro { color: #555; margin-top: 0; }
.post-list { list-style: none; padding: 0; margin: 2rem 0 0; }
.post-list li { border-bottom: 1px solid var(--rule); padding: 1.5rem 0; }
.post-list a { text-decoration: none; display: block; }
.post-list img { width: 100%; max-height: 260px; object-fit: cover; border-radius: 6px; margin-bottom: 0.75rem; }
.post-list h2 { margin: 0 0 0.4rem; font-size: 1.3rem; }
.post-list p { margin: 0 0 0.4rem; color: #444; }
.post-list time { font-size: 0.85rem; color: #888; }
.post-meta { color: #888; font-size: 0.9rem; margin-bottom: 0.5rem; }
.hero { width: 100%; border-radius: 8px; margin-bottom: 1.5rem; }
.prose p { margin: 1.1em 0; }
.prose h2 { margin-top: 2em; }
.site-footer { max-width: 700px; margin: 0 auto; padding: 2rem 1.5rem; border-top: 1px solid var(--rule); color: #777; font-size: 0.9rem; }
