:root {
  --paper: #f4efe6;
  --ink: #1c2420;
  --muted: #5a6660;
  --canal: #2f6f7e;
  --brick: #b5523a;
  --line: #d7cebf;
  --card: #fffaf1;
}

* { 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 88% 12%, #e7f0ef 0 16%, transparent 40%),
    linear-gradient(165deg, #ebe3d4 0%, var(--paper) 42%);
}
.wrap {
  width: min(760px, 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: 42px;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
a { color: var(--canal); text-decoration: none; }
a:hover { text-decoration: underline; }
nav a { color: var(--muted); }
h1 {
  font-size: clamp(2.1rem, 5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 16px;
}
.lede {
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 38em;
}
.card {
  margin-top: 36px;
  padding: 22px 24px;
  background: var(--card);
  border: 1px solid var(--line);
}
.card p {
  margin: 0 0 12px;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.card p:last-child { margin-bottom: 0; }
.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);
}
.places {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.places li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
}
.places strong {
  display: block;
  font-family: "Iowan Old Style", Palatino, serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--brick);
}
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;
}
