/* Earlyword — letterhead, not landing page. Self-contained: no fonts fetched,
   no scripts. Palette: ink on cool paper, one ledger-green accent. */

:root {
  --paper: #fbfbf9;
  --ink: #1c2530;
  --muted: #5b6672;
  --accent: #175a4c;
  --rule: #e3e5e1;
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #12161b;
    --ink: #e8eae6;
    --muted: #9aa4ad;
    --accent: #4fa88f;
    --rule: #2a313a;
  }
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Charter, "Bitstream Charter", "Sitka Text", Cambria, Georgia, serif;
  font-size: 1.1875rem;
  line-height: 1.65;
  padding: 3.5rem 1.5rem 4rem;
}

main, footer { max-width: 34rem; margin: 0 auto; }

.masthead {
  font-family: "Iowan Old Style", Georgia, "Times New Roman", serif;
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.masthead a { color: inherit; text-decoration: none; }

.masthead::after {
  content: "";
  display: block;
  width: 2.75rem;
  border-bottom: 3px solid var(--accent);
  margin: 1.1rem 0 2.6rem;
}

h1 {
  font-family: "Iowan Old Style", Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  margin: 0 0 1.2rem;
}
h2 {
  font-family: "Iowan Old Style", Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  margin: 1.8rem 0 0.5rem;
}

p { margin-bottom: 1.15rem; }
ul { margin: 0 0 1.15rem 1.2rem; }
li { margin-bottom: 0.4rem; }

.specimen {
  border-left: 3px solid var(--accent);
  padding: 0.15rem 0 0.15rem 1.1rem;
  margin: 1.9rem 0;
  font-style: italic;
  color: var(--muted);
}
.specimen .label {
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-style: normal;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

a { color: var(--accent); text-underline-offset: 3px; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 1px; }

footer {
  margin-top: 3.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--rule);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--muted);
}
footer a { color: var(--muted); }
