:root {
  --paper: #f3ead7;
  --ink: #1f2a24;
  --muted: #5d6b62;
  --brick: #b44a2d;
  --line: #d4c7ad;
  --card: #fff8ea;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, "Times New Roman", serif;
  color: var(--ink);
  background: var(--paper);
  background-image:
    radial-gradient(circle at 12% 8%, #f8f1e0 0 18%, transparent 42%),
    linear-gradient(180deg, #efe4cc 0%, var(--paper) 38%);
}

.wrap {
  width: min(720px, calc(100% - 48px));
  margin: 0 auto;
  padding: 36px 0 72px;
}

.mark {
  width: 56px;
  height: 56px;
  display: block;
  margin-bottom: 28px;
}

nav {
  display: flex;
  gap: 22px;
  margin-bottom: 48px;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

a {
  color: var(--brick);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

nav a {
  color: var(--muted);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 18px;
}

.lede {
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 36em;
}

.card {
  margin-top: 40px;
  padding: 22px 24px;
  background: var(--card);
  border: 1px solid var(--line);
}

.card p {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

.meta {
  margin-top: 14px;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

article p {
  line-height: 1.65;
  max-width: 40em;
}

footer {
  margin-top: 64px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}
