:root {
  color-scheme: light;
  --bg: #f7f6f2;
  --ink: #161a18;
  --muted: #626862;
  --line: #d6d8d2;
  --accent: #9f4b31;
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body { min-height: 100%; margin: 0; }

main {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(56px, 10vw, 120px) 0 72px;
}

header { padding-bottom: clamp(64px, 11vw, 120px); }

header > a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

h1 {
  margin: 26px 0 0;
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(4.5rem, 13vw, 8.5rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

nav { border-top: 1px solid var(--line); }

.reader {
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.reader span {
  color: var(--muted);
  font-size: 0.9rem;
}

.reader strong {
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(1.55rem, 4vw, 2.3rem);
  font-weight: 500;
  line-height: 1.15;
  transition: color 160ms ease;
}

.reader:hover strong,
.reader:focus-visible strong { color: var(--accent); }

.reader:focus-visible { outline: 2px solid var(--accent); outline-offset: 8px; }

@media (max-width: 560px) {
  .reader { grid-template-columns: 1fr; gap: 8px; }
}
