:root {
  color-scheme: light;
  --ink: #1c2321;
  --paper: #f1efe7;
  --accent: #d6532f;
  --muted: #666e69;
  --line: #c8cbc3;
  --panel: #e6e4dc;
}

* { box-sizing: border-box; }

html { font-family: Georgia, "Times New Roman", serif; background: var(--paper); color: var(--ink); }

body { margin: 0; min-height: 100vh; display: flex; flex-direction: column; }

a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 0.22em; }

.site-header, main, footer { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }

.site-header { min-height: 92px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }

.wordmark { font-family: Arial, Helvetica, sans-serif; font-weight: 800; font-size: 1.35rem; letter-spacing: -0.04em; text-decoration: none; }
.wordmark span { color: var(--accent); font-size: 0.65em; margin-left: 0.15rem; }

nav { display: flex; gap: clamp(1rem, 4vw, 2.5rem); font-family: Arial, Helvetica, sans-serif; font-size: 0.85rem; }
nav a { text-decoration: none; }
nav a:hover, nav a[aria-current="page"] { color: var(--accent); }

main { flex: 1; }
.hero { padding: clamp(5rem, 14vw, 10rem) 0 clamp(4rem, 9vw, 7rem); max-width: 900px; }
.eyebrow, .index, .small { font-family: Arial, Helvetica, sans-serif; color: var(--muted); font-size: 0.76rem; letter-spacing: 0.12em; text-transform: uppercase; }
h1 { max-width: 950px; margin: 0.2em 0 0.35em; font-size: clamp(3.2rem, 9vw, 7.5rem); line-height: 0.92; letter-spacing: -0.055em; font-weight: 500; }
.lead { max-width: 670px; font-size: clamp(1.15rem, 2.3vw, 1.65rem); line-height: 1.45; color: var(--muted); }
.button { display: inline-block; margin-top: 1.5rem; padding: 0.9rem 1.2rem; background: var(--ink); color: var(--paper); font-family: Arial, Helvetica, sans-serif; font-size: 0.85rem; text-decoration: none; }
.button:hover { background: var(--accent); }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.grid article { padding: 2rem; border-right: 1px solid var(--line); }
.grid article:first-child { padding-left: 0; }
.grid article:last-child { border-right: 0; }
h2 { margin: 0.35rem 0 0.7rem; font-size: 1.45rem; line-height: 1.12; font-weight: 500; }
article p { line-height: 1.55; color: var(--muted); }

.page { padding: clamp(4rem, 10vw, 8rem) 0; }
.page h1 { font-size: clamp(3rem, 8vw, 6rem); }
.narrow { max-width: 780px; margin-inline: auto; }
.narrow > p:not(.eyebrow, .lead, .small) { font-size: 1.15rem; line-height: 1.7; }
.entries { margin-top: 4rem; border-top: 1px solid var(--line); }
.entries article { display: grid; grid-template-columns: 160px 1fr 1.4fr; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--line); }
.entries article p { margin-top: 0.4rem; }
.status-card { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.5rem; margin: 3rem 0 1.5rem; background: var(--panel); border: 1px solid var(--line); }
.status-dot { width: 12px; height: 12px; margin-top: 0.25rem; border-radius: 50%; background: #4a8b61; box-shadow: 0 0 0 5px rgba(74, 139, 97, 0.14); }
.status-card h2, .status-card p { margin-top: 0; }
.error-page { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }

footer { display: flex; justify-content: space-between; gap: 2rem; padding: 2rem 0; margin-top: 5rem; border-top: 1px solid var(--line); font-family: Arial, Helvetica, sans-serif; font-size: 0.75rem; color: var(--muted); }

@media (max-width: 720px) {
  .site-header { min-height: 76px; }
  .grid { grid-template-columns: 1fr; }
  .grid article, .grid article:first-child { padding: 1.6rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .grid article:last-child { border-bottom: 0; }
  .entries article { grid-template-columns: 1fr; gap: 0.3rem; }
  footer { flex-direction: column; gap: 0.25rem; }
}
