:root {
  --paper: #f9f6ee;
  --paper-edge: #f2efe7;
  --ink: #1a1816;
  --ink-soft: #4a463f;
  --rule: #ddd7c9;
  --accent: #b4502a; /* warm wax-seal red */
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-serif, "New York", "Iowan Old Style", Georgia, "Times New Roman", serif;
  line-height: 1.62;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 40rem;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

.feather {
  display: block;
  width: 34px;
  height: auto;
  margin: 0 auto 1.25rem;
  opacity: 0.85;
}

h1 {
  font-size: 2.1rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0 0 0.35rem;
}

.tagline {
  text-align: center;
  color: var(--ink-soft);
  font-style: italic;
  margin: 0 0 2.75rem;
}

.updated {
  text-align: center;
  font-family: ui-sans-serif, -apple-system, "Avenir Next", "Helvetica Neue", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 2.75rem;
}

h2 {
  font-size: 1.3rem;
  margin: 2.5rem 0 0.6rem;
  letter-spacing: -0.005em;
}

p { margin: 0 0 1.1rem; }

ul { margin: 0 0 1.1rem; padding-left: 1.2rem; }
li { margin: 0 0 0.5rem; }

a { color: var(--accent); text-decoration: none; border-bottom: 1px solid rgba(180,80,42,0.35); }
a:hover { border-bottom-color: var(--accent); }

hr {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 3rem 0;
}

.lede {
  font-size: 1.15rem;
  color: var(--ink-soft);
}

.card {
  background: var(--paper-edge);
  border: 1px solid var(--rule);
  border-radius: 14px;
  padding: 1.25rem 1.4rem;
  margin: 1.5rem 0;
}

.card p:last-child { margin-bottom: 0; }

.email {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.95rem;
}

footer {
  text-align: center;
  margin-top: 4rem;
  color: var(--ink-soft);
  font-family: ui-sans-serif, -apple-system, "Avenir Next", "Helvetica Neue", sans-serif;
  font-size: 0.82rem;
}

footer a { border: none; }
