@font-face {
  font-family: 'Cheltenham';
  src: url('/fonts/cheltenham/cheltenham-normal-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Cheltenham';
  src: url('/fonts/cheltenham/cheltenham-italic-400.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: 'Cheltenham';
  src: url('/fonts/cheltenham/cheltenham-normal-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Cheltenham';
  src: url('/fonts/cheltenham/cheltenham-italic-700.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
}

body {
  background: #fff;
  color: #111;
  font-family: 'Cheltenham', Georgia, serif;
  font-size: 1.6rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  padding: 6rem 2rem 2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

main { flex: 1; }

h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

ul {
  list-style: none;
  padding-left: 0;
}

li::before { content: '— '; }

li { margin-bottom: 0.3rem; }

a {
  color: #111;
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:hover {
  color: #555;
  font-style: unset;
  font-weight: 700;
}

footer {
  color: #aaa;
  font-size: 1.00rem;
  margin-top: 2rem;
}

/* ── dark mode ── */
@media (prefers-color-scheme: dark) {
  body { background: #000; color: #ddd; }
  a { color: #ddd; }
  a:hover { color: #999; }
  footer { color: #555; }
}
