*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #eee8de; --ink: #2a2318; --ink-muted: #7a6e60;
  --green: #5a6b3a; --warm-white: #f7f3ec; --sand: #c8b89a;
  --serif: Georgia, serif; --sans: 'DM Sans', system-ui, sans-serif;
}
body { background: var(--bg); color: var(--ink); font-family: var(--sans); font-weight: 300; line-height: 1.8; }
nav {
  position: sticky; top: 0; background: rgba(238,232,222,0.92);
  backdrop-filter: blur(12px); border-bottom: 1px solid rgba(90,107,58,0.12);
  padding: 1.1rem 4rem; display: flex; align-items: center; justify-content: space-between; z-index: 100;
}
.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; color: var(--ink); }
.nav-logo img { width: 70px; height: 70px; }
.nav-logo-text { font-family: var(--serif); font-size: 1.35rem; font-style: italic; }
.nav-back { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); text-decoration: none; border-bottom: 1px solid var(--green); padding-bottom: 1px; }
.nav-back:hover { opacity: 0.6; }
main { max-width: 720px; margin: 0 auto; padding: 5rem 2rem 6rem; }
.page-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--green); display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.page-label::before { content: ''; display: block; width: 1.5rem; height: 1px; background: var(--green); }
h1 { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 300; line-height: 1.2; margin-bottom: 0.5rem; }
.updated { font-size: 0.8rem; color: var(--ink-muted); margin-bottom: 3rem; letter-spacing: 0.04em; }
.divider { height: 1px; background: var(--sand); margin: 2.5rem 0; }
h2 { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; margin-bottom: 0.75rem; margin-top: 2.5rem; }
p { font-size: 0.92rem; color: var(--ink-muted); margin-bottom: 1rem; }
ul { font-size: 0.92rem; color: var(--ink-muted); margin: 0.5rem 0 1rem 1.5rem; }
ul li { margin-bottom: 0.4rem; }
a { color: var(--green); }
footer { text-align: center; padding: 2rem; font-size: 0.78rem; color: var(--ink-muted); border-top: 1px solid var(--sand); }
@media (max-width: 600px) { nav { padding: 1rem 1.5rem; } main { padding: 3rem 1.5rem 4rem; } }
