:root {
  color-scheme: light dark;
  --paper: #f4f1eb;
  --paper-strong: #fbfaf7;
  --paper-soft: #ece8df;
  --ink: #172033;
  --muted: #5b6575;
  --faint: #d9d5cd;
  --blue: #2768a5;
  --blue-deep: #174d80;
  --gold: #9f722c;
  --navy: #102333;
  --cream: #f1ebdd;
  --max: 1120px;
  --radius: 5px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --paper: #121820;
    --paper-strong: #19212b;
    --paper-soft: #202a35;
    --ink: #edf1f5;
    --muted: #b4bec9;
    --faint: #35414e;
    --blue: #80b8ee;
    --blue-deep: #b1d4f5;
    --gold: #d2a45d;
  }
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; }
a { color: var(--blue-deep); text-underline-offset: .18em; }
a:hover { text-decoration-thickness: 2px; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  padding: 10px 14px; background: var(--ink); color: var(--paper);
}
.skip-link:focus { left: 12px; top: 12px; }
.shell { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.site-header { border-bottom: 1px solid var(--faint); background: var(--paper); }
.nav {
  min-height: 82px;
  display: flex; justify-content: space-between; align-items: center; gap: 28px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink); font-size: .83rem; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
}
.brand img { width: 38px; height: 38px; border-radius: 3px; }
.nav-links { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 22px; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: .78rem;
  font-weight: 700; letter-spacing: .10em; text-transform: uppercase;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--blue-deep); }
.hero {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(270px, .8fr);
  gap: 76px; padding: 92px 0 84px; align-items: end;
}
.eyebrow {
  margin: 0 0 20px; color: var(--gold); font-size: .76rem;
  font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
}
h1, h2, .display {
  font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.035em;
}
h1 { max-width: 800px; margin: 0; font-size: clamp(3.1rem, 7vw, 6.2rem); line-height: .96; }
.hero-intro { max-width: 500px; margin: 0; color: var(--muted); font-size: clamp(1.06rem, 2vw, 1.3rem); }
.hero-rule { width: 62px; height: 3px; margin: 34px 0 24px; background: var(--blue); }
.identity-line {
  margin-top: 22px; color: var(--muted); font-size: .95rem;
}
.identity-line strong { color: var(--ink); }
main { background: var(--paper-strong); border-top: 1px solid var(--faint); }
.section { padding: 76px 0; border-bottom: 1px solid var(--faint); }
.section-grid { display: grid; grid-template-columns: .67fr 1.33fr; gap: 72px; }
.section-label {
  margin: 5px 0 0; color: var(--blue-deep); font-size: .77rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
}
h2 { margin: 0; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.04; }
h3 { line-height: 1.25; }
.copy { max-width: 700px; margin: 0; color: var(--muted); font-size: 1.055rem; }
.copy + .copy { margin-top: 19px; }
.lede { color: var(--ink); font-size: 1.14rem; }
.grid-2, .grid-3 {
  display: grid; gap: 1px; margin-top: 36px; background: var(--faint); border: 1px solid var(--faint);
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  padding: 26px; background: var(--paper-strong);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--blue) 12%, transparent);
}
.card h3 { margin: 0 0 8px; color: var(--blue-deep); font-size: 1.03rem; }
.card p { margin: 0; color: var(--muted); font-size: .95rem; }
.card p + p { margin-top: 12px; }
.number {
  display: block; margin-bottom: 14px; color: var(--gold);
  font: 1rem ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; letter-spacing: .08em;
}
.meta { margin: 0 0 10px; color: var(--gold); font-size: .75rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.work-card h3 { font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; font-weight: 400; letter-spacing: -.02em; }
.text-link { display: inline-block; margin-top: 14px; font-weight: 750; }
.callout {
  margin-top: 32px; padding: 21px 23px; border-left: 3px solid var(--gold);
  background: var(--paper); color: var(--muted); font-size: .94rem;
}
.callout strong { color: var(--ink); }
.timeline { margin-top: 32px; border-top: 1px solid var(--faint); }
.timeline-item {
  display: grid; grid-template-columns: 155px 1fr; gap: 24px;
  padding: 23px 0; border-bottom: 1px solid var(--faint);
}
.timeline-item time { color: var(--gold); font-weight: 800; font-size: .84rem; letter-spacing: .05em; }
.timeline-item h3 { margin: 0 0 5px; font-size: 1rem; color: var(--ink); }
.timeline-item p { margin: 0; color: var(--muted); font-size: .95rem; }
.actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px; margin-top: 30px; }
.button {
  display: inline-block; padding: 13px 18px; border: 1px solid var(--blue);
  color: var(--blue-deep); font-weight: 750; text-decoration: none; border-radius: 2px;
}
.button:hover { background: var(--blue); color: #fff; }
.button.secondary { border-color: var(--faint); color: var(--ink); }
.quiet { color: var(--muted); font-size: .92rem; }
.site-footer { background: var(--paper); }
.footer {
  display: grid; grid-template-columns: 1fr auto; gap: 24px;
  padding: 28px 0 38px; color: var(--muted); font-size: .82rem;
}
.footer nav { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.footer a { color: var(--muted); }
.prose { max-width: 760px; }
.prose h2 { margin-top: 48px; }
.prose h3 { margin-top: 32px; }
.prose p, .prose li { color: var(--muted); }
.prose strong { color: var(--ink); }
.page-hero { padding: 78px 0 68px; }
.page-hero h1 { font-size: clamp(2.9rem, 6.5vw, 5.6rem); }
.page-hero .hero-intro { margin-top: 26px; max-width: 700px; }
.mark-panel {
  display: grid; grid-template-columns: 126px 1fr; gap: 28px; align-items: center;
  margin-top: 34px; padding: 24px; background: var(--navy); color: var(--cream);
}
.mark-panel img { width: 126px; border-radius: 3px; }
.mark-panel p { margin: 0; color: #d4dde4; }
.mark-panel strong { color: var(--cream); }
@media (max-width: 860px) {
  .nav { align-items: flex-start; padding: 18px 0; }
  .nav-links { justify-content: flex-end; }
  .hero { grid-template-columns: 1fr; gap: 34px; padding: 66px 0 62px; }
  .section-grid { grid-template-columns: 1fr; gap: 24px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .shell { padding: 0 20px; }
  .nav { display: block; }
  .brand { margin-bottom: 16px; }
  .nav-links { justify-content: flex-start; gap: 10px 18px; }
  h1 { font-size: 3.25rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
  .footer { grid-template-columns: 1fr; }
  .mark-panel { grid-template-columns: 82px 1fr; gap: 18px; }
  .mark-panel img { width: 82px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
