:root {
  --bg: #f6f1ea;
  --card: #fffdf9;
  --ink: #2b2622;
  --muted: #6d645c;
  --line: rgba(43, 38, 34, 0.08);
  --accent: #c47b6a;
  --link: #7a4e42;
  --max: 42rem;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  line-height: 1.65;
}

body {
  min-height: 100vh;
}

a {
  color: var(--link);
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 2.25rem 1.25rem 4rem;
}

header {
  margin-bottom: 2rem;
}

.brand {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  margin: 0.4rem 0 0.35rem;
  letter-spacing: -0.02em;
}

.lede, .updated, p, li {
  color: var(--ink);
}

.lede, .updated {
  color: var(--muted);
}

.updated {
  font-size: 0.92rem;
  margin-top: 0;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem 1.35rem 0.4rem;
  box-shadow: 0 10px 30px rgba(43, 38, 34, 0.04);
}

h2 {
  font-size: 1.15rem;
  margin: 1.5rem 0 0.45rem;
}

ul {
  padding-left: 1.15rem;
}

.links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.1rem;
  margin: 1.4rem 0 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  font-size: 0.95rem;
}

footer {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.button {
  display: inline-block;
  margin-top: 0.4rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", sans-serif;
  font-size: 0.95rem;
}
