:root {
  --paper: #FBFAF7;
  --ink: #1A1A18;
  --secondary: #6B6862;
  --muted: #8A867E;
  --rule: #E5E2DA;
  --max: 1080px;
  --text: 690px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration-color: #AAA69D; text-underline-offset: 0.18em; }
a:hover { text-decoration-color: var(--ink); }
a:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; border-radius: 2px; }

.site-header {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 30px 0 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--rule);
}
.wordmark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
}
.primary-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
}
.primary-nav a { color: var(--secondary); text-decoration: none; }
.primary-nav a:hover,
.primary-nav a[aria-current='page'] { color: var(--ink); }

main {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 70px 0 90px;
}
.home-main { padding-top: 92px; }
.home-intro, .standard-copy, .article-wrap { max-width: var(--text); }
.home-statement {
  margin: 0 0 28px;
  font-size: 32px;
  line-height: 1.27;
  font-weight: 400;
  letter-spacing: -0.012em;
}
.home-deck {
  margin: 0;
  font-size: 19px;
  line-height: 1.7;
  max-width: 65ch;
}
.section-label {
  margin: 72px 0 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.article-list { border-top: 1px solid var(--rule); }
.article-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 21px 0;
  border-bottom: 1px solid var(--rule);
}
.article-item a {
  font-size: 20px;
  line-height: 1.35;
  text-decoration-thickness: 1px;
}
.date {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}
.page-title {
  margin: 0 0 42px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.012em;
}
.standard-copy p,
.article-body p {
  margin: 0 0 1.35em;
  font-size: 18px;
  line-height: 1.72;
}
.standard-copy p:first-of-type { font-size: 21px; line-height: 1.6; }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, var(--text)) 260px;
  gap: 72px;
  align-items: start;
}
.headshot {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.disclaimer {
  margin-top: 38px !important;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  color: var(--secondary);
  font-size: 15px !important;
  line-height: 1.6 !important;
  font-style: italic;
}

.contact-email {
  display: inline-block;
  margin-top: 2px;
  font-size: 20px;
}

.article-header {
  max-width: var(--text);
  margin-bottom: 54px;
}
.article-title {
  margin: 0 0 16px;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -0.018em;
}
.article-body h2 {
  margin: 2.4em 0 .75em;
  font-size: 26px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.article-body strong { font-weight: 700; }
.article-body em { font-style: italic; }

.site-footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 24px 0 36px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 12px;
}

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; gap: 38px; }
  .about-photo { order: -1; max-width: 280px; }
}

@media (max-width: 620px) {
  .site-header {
    width: min(calc(100% - 30px), var(--max));
    padding: 22px 0 18px;
    display: block;
  }
  .primary-nav {
    margin-top: 16px;
    gap: 18px;
    justify-content: flex-start;
  }
  main {
    width: min(calc(100% - 30px), var(--max));
    padding: 48px 0 68px;
  }
  .home-main { padding-top: 58px; }
  .home-statement { font-size: 27px; }
  .home-deck { font-size: 18px; line-height: 1.66; }
  .section-label { margin-top: 56px; }
  .article-item { grid-template-columns: 1fr; gap: 8px; }
  .page-title { font-size: 31px; margin-bottom: 32px; }
  .article-title { font-size: 35px; }
  .standard-copy p, .article-body p { font-size: 18px; line-height: 1.68; }
  .standard-copy p:first-of-type { font-size: 20px; }
  .article-body h2 { font-size: 24px; }
  .site-footer { width: min(calc(100% - 30px), var(--max)); }
}
