:root {
  --bg: #ffffff;
  --text: #111111;
  --muted: #555555;
  --line: #dddddd;
  --max: 1120px;
  --measure: 720px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, li { margin: 0 0 1rem; color: var(--muted); }
strong { color: var(--text); font-weight: 600; }

h1, h2, h3 {
  margin: 0;
  color: var(--text);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 6.6rem);
  line-height: 0.96;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.02;
  max-width: 12ch;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.15;
}

.container {
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(221,221,221,0.85);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand,
.section-label,
.contact-list span,
.legal-line {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.72rem;
  font-weight: 600;
}

.brand { color: var(--text); }
.section-label,
.contact-list span,
.legal-line,
.nav nav a,
.hero-meta,
.hero-meta a,
.footer-row p,
.essay-back a {
  color: var(--muted);
}

.nav nav {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
}

.nav nav a:hover,
.hero-meta a:hover,
.prose a:hover,
.contact-list a:hover,
.essay-back a:hover {
  color: var(--text);
}

.section-first { padding: 8rem 0 4.5rem; }
.section { padding: 4.75rem 0; }
.section-last { padding-bottom: 7rem; }
.border-top { border-top: 1px solid var(--line); }

.hero-shell {
  display: grid;
  grid-template-columns: 136px minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.portrait-rail {
  padding-top: 0.4rem;
}

.portrait-image {
  width: 136px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #f4f4f4;
}

.hero-title {
  max-width: 8ch;
}

.hero-kicker {
  margin-top: 1.75rem;
  max-width: 24ch;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.28;
  color: var(--text);
}

.hero-lead {
  margin-top: 1.5rem;
  max-width: 58ch;
  font-size: 1rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.6rem;
  font-size: 0.96rem;
}

.legal-line { margin-top: 1.2rem; }

.text-section { max-width: 100%; }
.text-columns {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
}

.prose,
.contact-list,
.essay-intro,
.essay-body {
  max-width: var(--measure);
}

.compact-list p {
  margin: 0;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line);
  color: var(--text);
}

.compact-list p:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-list p {
  margin: 0;
  padding: 0.95rem 0;
  border-top: 1px solid var(--line);
}

.contact-list p:last-child {
  border-bottom: 1px solid var(--line);
}

.essay-shell {
  width: min(calc(100% - 3rem), 760px);
  margin: 0 auto;
}

.essay-title {
  max-width: 12ch;
  margin-bottom: 1.6rem;
}

.essay-intro ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  border-top: 1px solid var(--line);
}

.essay-intro li {
  padding: 1rem 0;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.essay-intro li a {
  color: var(--text);
}

.essay-body {
  font-size: 1.04rem;
}

.essay-body h2,
.essay-body h3 {
  margin: 2.5rem 0 0.8rem;
  max-width: 100%;
}

.essay-back { margin-top: 3rem; }

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0 2rem;
}

.footer-row p {
  margin: 0;
  font-size: 0.94rem;
}

@media (max-width: 860px) {
  .hero-shell,
  .text-columns,
  .footer-row,
  .nav {
    grid-template-columns: 1fr;
    display: grid;
  }

  .nav {
    padding: 1rem 0;
    gap: 0.75rem;
  }

  .portrait-rail {
    padding-top: 0;
  }

  .portrait-image {
    width: 112px;
  }

  .section-first { padding-top: 6.5rem; }
}
