:root {
    --ink: #1c1a17;
    --paper: #f7f3ec;
    --rule: #8a7b65;
    --link: #5a3c1e;
    --meta: #8a7b65;
    --quote: #6b5a3e;
}

* { box-sizing: border-box; }

body {
    font-family: Georgia, "Times New Roman", serif;
    max-width: 38em;
    margin: 3em auto;
    padding: 0 1.2em;
    color: var(--ink);
    line-height: 1.65;
    background: var(--paper);
    font-size: 17px;
}

header {
    border-bottom: 1px solid var(--rule);
    padding-bottom: 0.6em;
    margin-bottom: 2em;
}

header .nav {
    font-size: 0.9em;
    color: var(--meta);
    margin-top: 0.4em;
}

header .nav a {
    margin-right: 0.8em;
}

h1 {
    font-weight: normal;
    font-size: 1.7em;
    margin: 0 0 0.2em 0;
    letter-spacing: 0.01em;
}

h2 {
    font-weight: normal;
    font-size: 1.25em;
    margin-top: 2em;
    border-bottom: 1px dotted var(--rule);
    padding-bottom: 0.2em;
}

h3 {
    font-weight: normal;
    font-size: 1.08em;
    margin-bottom: 0.2em;
}

a {
    color: var(--link);
    text-decoration: none;
    border-bottom: 1px solid #d4c8b3;
}

a:hover {
    border-bottom-color: var(--link);
}

p {
    margin: 0.7em 0;
}

blockquote {
    margin: 1.2em 1em;
    padding-left: 0.9em;
    border-left: 2px solid var(--rule);
    color: var(--quote);
    font-style: italic;
}

.meta {
    color: var(--meta);
    font-size: 0.88em;
    font-style: italic;
    margin-bottom: 0.8em;
}

.post {
    margin-bottom: 2.5em;
}

.tag {
    display: inline-block;
    color: var(--meta);
    font-size: 0.8em;
    margin-right: 0.4em;
}

footer {
    margin-top: 4em;
    padding-top: 1em;
    border-top: 1px dotted var(--rule);
    color: var(--meta);
    font-size: 0.85em;
}

.figure {
    margin: 1.5em 0;
    padding: 1em;
    background: #efe7d7;
    border-left: 3px solid var(--rule);
    font-size: 0.9em;
    color: var(--quote);
    font-style: italic;
}

ul.bare {
    list-style: none;
    padding-left: 0;
}

ul.bare li {
    margin-bottom: 0.5em;
}

table.kit {
    border-collapse: collapse;
    margin: 1em 0;
    font-size: 0.92em;
}

table.kit th, table.kit td {
    text-align: left;
    padding: 0.3em 0.9em 0.3em 0;
    border-bottom: 1px dotted var(--rule);
    vertical-align: top;
}

table.kit th {
    color: var(--meta);
    font-weight: normal;
}
