* { box-sizing: border-box; }
:root {
  --paper: #ffffff;
  --ink: #161616;
  --muted: #6b6b68;
  --line: #d9d7d0;
  --accent: #54657a;
  --max: 1180px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
html { background: var(--paper); }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
.site {
  width: min(calc(100% - 64px), var(--max));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.header {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.home-mark {
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: -0.08em;
  line-height: 1;
}
.home-mark:hover { color: var(--accent); }
nav { display: flex; gap: 32px; font-size: .95rem; }
nav a { color: #333; }
nav a:hover,
nav a[aria-current="page"] { color: var(--ink); }
nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 7px; text-decoration-thickness: 1px; }
main { flex: 1; }
.hero {
  min-height: 500px;
  max-width: 900px;
  padding: 92px 0 74px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 650;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero h1,
.page-header h1,
.not-found h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.035em;
}
.hero h1 {
  max-width: 860px;
  font-size: clamp(3.25rem, 5.15vw, 4.85rem);
  line-height: 1.03;
}
.standfirst {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 1rem;
}
.routes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.routes a {
  min-height: 126px;
  padding: 24px 28px 24px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.routes a + a { padding-left: 28px; border-left: 1px solid var(--line); }
.route-title {
  font-family: var(--serif);
  font-size: 1.25rem;
}
.route-copy { max-width: 270px; color: var(--muted); font-size: .88rem; line-height: 1.55; }
.routes a:hover .route-title { text-decoration: underline; text-underline-offset: 4px; }
.footer {
  min-height: 74px;
  padding: 22px 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: .78rem;
}
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a:hover { color: var(--ink); }
.page-main { padding: 72px 0 88px; }
.page-header { max-width: 760px; padding-bottom: 42px; }
.page-header h1 { font-size: clamp(3.2rem, 5vw, 4.8rem); line-height: 1; }
.page-header > p:last-child { max-width: 620px; margin: 22px 0 0; color: var(--muted); font-size: 1rem; }
.listing { border-top: 1px solid var(--line); }
.empty-state {
  min-height: 220px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.empty-label { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; }
.empty-state p { max-width: 560px; margin: 0; font-family: var(--serif); font-size: 1.25rem; line-height: 1.5; }
.entry { display: grid; grid-template-columns: 160px 1fr; gap: 32px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.entry-meta { color: var(--muted); font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; }
.entry h2 { margin: 0 0 10px; font-family: var(--serif); font-size: 1.55rem; font-weight: 400; }
.entry p { max-width: 700px; margin: 0; color: var(--muted); font-size: .92rem; }
.entry-links { grid-column: 2; margin-top: 16px; display: flex; gap: 15px; flex-wrap: wrap; }
.entry-links a { font-family: var(--serif); font-size: .92rem; text-decoration: underline; text-underline-offset: 4px; }
.about-grid { display: grid; grid-template-columns: 1.4fr .8fr; gap: 80px; border-top: 1px solid var(--line); padding-top: 34px; }
.bio { max-width: 760px; margin: 0; font-family: var(--serif); font-size: clamp(1.55rem, 2.3vw, 2.15rem); line-height: 1.42; letter-spacing: -.018em; }
.details { border-left: 1px solid var(--line); padding-left: 30px; }
.detail-group + .detail-group { margin-top: 32px; }
.detail-group h2 { margin: 0 0 12px; color: var(--muted); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 650; }
.detail-group a { display: block; padding: 9px 0; border-bottom: 1px solid var(--line); font-family: var(--serif); font-size: .96rem; }
.detail-group a span { float: right; color: var(--muted); font-family: var(--sans); font-size: .72rem; }
.detail-group a:hover { text-decoration: underline; text-underline-offset: 4px; }
.not-found { min-height: 560px; display: flex; flex-direction: column; justify-content: center; }
.not-found h1 { font-size: clamp(3rem, 5vw, 4.5rem); }
.not-found > p:not(.eyebrow) { margin: 18px 0; color: var(--muted); }
.text-link { width: fit-content; font-family: var(--serif); text-decoration: underline; text-underline-offset: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
@media (max-width: 820px) {
  .site { width: min(calc(100% - 40px), var(--max)); }
  .header { height: 72px; }
  nav { gap: 20px; font-size: .9rem; }
  .hero { min-height: 420px; padding: 62px 0 52px; }
  .hero h1 { font-size: clamp(2.8rem, 8vw, 4rem); }
  .routes { grid-template-columns: 1fr; }
  .routes a, .routes a + a { min-height: 96px; padding: 18px 0; border-left: 0; }
  .routes a + a { border-top: 1px solid var(--line); }
  .route-copy { max-width: none; }
  .page-main { padding: 54px 0 70px; }
  .about-grid { grid-template-columns: 1fr; gap: 46px; }
  .details { border-left: 0; padding-left: 0; }
  .empty-state, .entry { grid-template-columns: 1fr; gap: 12px; }
  .entry-links { grid-column: 1; }
  .footer { align-items: flex-start; flex-direction: column; gap: 8px; }
}
@media (max-width: 460px) {
  .site { width: calc(100% - 30px); }
  nav { gap: 15px; font-size: .86rem; }
  .home-mark { font-size: 1.35rem; }
  .hero { min-height: 390px; padding: 50px 0 44px; }
  .hero h1 { font-size: clamp(2.55rem, 12vw, 3.3rem); }
  .standfirst { margin-top: 22px; }
  .page-header h1 { font-size: 3rem; }
  .detail-group a span { float: none; display: block; margin-top: 3px; }
}
