   :root { --bg: #faf7f2; --surface: #ffffff; --border: #e8e0d4; --accent: #b05e3a; --accent-light: #f5ece6; --text: #1c1814; --text-muted: #7a6e63; --text-dim: #b0a89e; }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'DM Sans', sans-serif; font-weight: 300; background: var(--bg); color: var(--text); min-height: 100vh; }
    header { border-bottom: 1px solid var(--border); background: var(--surface); padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 64px; position: sticky; top: 0; z-index: 10; }
    .logo { font-family: 'Lora', serif; font-size: 20px; color: var(--text); text-decoration: none; letter-spacing: -0.3px; }
    .logo span { color: var(--accent); }
    nav a { font-size: 13px; color: var(--text-muted); text-decoration: none; margin-left: 28px; font-weight: 400; transition: color 0.15s; }
    nav a:hover { color: var(--text); }
    .nav-auth { font-size: 14px; text-decoration: none; margin-left: 24px; font-weight: 500; color: var(--accent); }
    .nav-auth:hover { opacity: 0.8; }
    .content { max-width: 680px; margin: 0 auto; padding: 64px 40px 100px; }
    .page-label { font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 2.5px; color: var(--accent); margin-bottom: 14px; }
    h1 { font-family: 'Lora', serif; font-size: 38px; letter-spacing: -0.5px; margin-bottom: 8px; }
    .updated { font-size: 13px; color: var(--text-dim); margin-bottom: 48px; }
    h2 { font-family: 'Lora', serif; font-size: 20px; color: var(--text); margin: 36px 0 12px; }
    p { font-size: 15px; line-height: 1.75; color: var(--text-muted); margin-bottom: 14px; }
    ul { margin: 0 0 14px 20px; }
    ul li { font-size: 15px; line-height: 1.75; color: var(--text-muted); margin-bottom: 6px; }
    a { color: var(--accent); text-decoration: none; }
    a:hover { text-decoration: underline; }
    footer { border-top: 1px solid var(--border); background: var(--surface); padding: 28px 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
    .footer-left { font-size: 13px; color: var(--text-dim); line-height: 1.6; }
    .footer-left a { color: var(--text-dim); text-decoration: none; }
    .footer-left a:hover { color: var(--text-muted); }
    .footer-right { display: flex; gap: 20px; }
    .footer-right a { font-size: 13px; color: var(--text-dim); text-decoration: none; transition: color 0.15s; }
    .footer-right a:hover { color: var(--text-muted); }
    @media (max-width: 600px) { header { padding: 0 20px; } .content { padding: 48px 20px 80px; } h1 { font-size: 28px; } footer { padding: 24px 20px; flex-direction: column; align-items: flex-start; } }