:root {
  --ink: #faf7f2;
  --surface: #ffffff;
  --surface-2: #f6f3ee;
  --edge: #e9e4da;
  --amber: #e08a3e;
  --amber-text: #a85718;
  --teal-text: #086b5c;
  --text: #1c1f26;
  --muted: #4a4844;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
header {
  max-width: 820px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--edge);
}
.logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--text);
}
.logo span { color: var(--amber-text); }
.back-link {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
}
.back-link:hover { color: var(--text); text-decoration: underline; }

main {
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}
h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 2rem;
  margin: 0 0 8px;
}
h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 1.25rem;
  margin: 32px 0 10px;
}
h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 22px 0 6px;
}
p, li { font-size: 0.95rem; color: var(--text); }
ul { padding-left: 20px; }
a { color: var(--teal-text); }

.notice {
  background: #fff6e8;
  border: 1px solid var(--amber);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 20px 0 28px;
  font-size: 0.9rem;
}
.notice strong { color: var(--amber-text); }

.placeholder {
  background: #ffe9c9;
  padding: 1px 6px;
  border-radius: 4px;
  font-weight: 600;
  color: var(--amber-text);
}

.updated { color: var(--muted); font-size: 0.85rem; margin-top: 40px; }

footer {
  border-top: 1px solid var(--edge);
  padding: 22px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.footer-links a { color: var(--muted); text-decoration: underline; }
.footer-links a:hover { color: var(--text); }

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}
