:root {
  --bg: #f4ede3;
  --bg-elev: #faf6ef;
  --bg-soft: #ebe3d6;
  --ink: #2f3438;
  --ink-soft: #4a5560;
  --muted: #6e787f;
  --line: #ddd2c3;
  --terracotta: #8b5e4b;
  --terracotta-soft: #f0e4dc;
  --sage: #6b7f6e;
  --sage-soft: #e4ebe4;
  --accent: var(--terracotta);
  --accent-soft: var(--terracotta-soft);
  --radius: 12px;
  --shadow: 0 1px 2px rgba(47, 52, 56, 0.04), 0 12px 32px rgba(47, 52, 56, 0.06);
  --font: "Newsreader", "Iowan Old Style", Palatino, "Palatino Linotype", Georgia, serif;
  --sans: "IBM Plex Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --max: 720px;
  --wide: 960px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(139, 94, 75, 0.07), transparent),
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--terracotta); text-underline-offset: 3px; }
a:hover { color: var(--ink); }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 {
  font-family: var(--font);
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.01em;
}
h2 { font-size: 1.65rem; margin: 0 0 0.75rem; }
h3 { font-size: 1.15rem; margin: 0 0 0.4rem; }
p { margin: 0 0 1rem; }
ul { margin: 0 0 1rem; padding-left: 1.2rem; }
li { margin-bottom: 0.35rem; }
blockquote {
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--terracotta);
  background: var(--bg-elev);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--ink-soft);
}
blockquote cite {
  display: block;
  margin-top: 0.65rem;
  font-style: normal;
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.skip {
  position: absolute; left: -9999px;
}
.skip:focus {
  left: 1rem; top: 1rem; background: #fff; padding: 0.5rem 1rem; z-index: 99;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(244, 237, 227, 0.92);
  backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 40;
}
.topbar-inner {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0.8rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand {
  font-family: var(--font);
  font-size: 1.1rem;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.brand span { color: var(--muted); font-weight: 400; font-size: 0.92em; }
.nav {
  display: flex; flex-wrap: wrap; gap: 0.5rem 0.95rem;
  font-size: 0.78rem;
  justify-content: flex-end;
}
.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav a:hover { color: var(--terracotta); }

.hero {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 2.75rem 1.25rem 2rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: center;
}
.hero-portrait {
  position: relative;
}
.hero-portrait img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  object-fit: cover;
  aspect-ratio: 3 / 4;
}
.photo-credit {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.5rem;
  line-height: 1.4;
}
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 0.6rem;
  font-weight: 600;
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 0.35rem;
}
.years {
  font-family: var(--font);
  font-size: 1.15rem;
  color: var(--muted);
  margin: 0 0 1rem;
  font-variant-numeric: oldstyle-nums;
}
.lede {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 38rem;
  margin-bottom: 1.15rem;
}
.meta-row {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.chip {
  display: inline-block;
  font-size: 0.75rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  color: var(--ink-soft);
}

main {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 1.25rem 3.5rem;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: start;
}
.toc {
  position: sticky;
  top: 4.5rem;
  padding: 1rem;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.toc h2 {
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.75rem;
  font-weight: 600;
}
.toc ol {
  margin: 0;
  padding: 0 0 0 1.1rem;
  font-size: 0.84rem;
}
.toc li { margin-bottom: 0.45rem; }
.toc a { color: var(--ink-soft); text-decoration: none; }
.toc a:hover { color: var(--terracotta); }

.content { min-width: 0; }
section {
  margin-bottom: 2.75rem;
  padding-top: 0.5rem;
  scroll-margin-top: 4.5rem;
}
.section-intro {
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 2px solid var(--line);
}
.timeline li {
  position: relative;
  padding: 0 0 1.35rem 1.35rem;
  margin: 0;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 2px solid var(--bg);
}
.timeline .when {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.2rem;
}
.timeline .what {
  color: var(--ink-soft);
  margin: 0;
}

.card-grid {
  display: grid;
  gap: 1rem;
}
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow);
}
.card .tag {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.card p:last-child { margin-bottom: 0; }
.card .buy {
  font-size: 0.82rem;
  margin-top: 0.75rem;
}

.place-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}
.place-grid img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.links-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  margin: 0;
}
.links-list li:last-child { border-bottom: none; }
.links-list a { font-weight: 500; text-decoration: none; }
.links-list a:hover { text-decoration: underline; }
.links-list .desc {
  display: block;
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

.disclaimer {
  background: var(--sage-soft);
  border: 1px solid #cfd9d0;
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}
.disclaimer p:last-child { margin-bottom: 0; }

footer.sources {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}
footer.sources h2 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.75rem;
  font-weight: 600;
}
footer.sources ul {
  padding-left: 1.1rem;
  margin: 0 0 1rem;
}
.footnote {
  font-size: 0.8rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-portrait { max-width: 240px; }
  main { grid-template-columns: 1fr; }
  .toc {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    align-items: baseline;
  }
  .toc h2 { margin: 0; }
  .toc ol {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.85rem;
    padding: 0;
    list-style: none;
  }
  .toc li { margin: 0; }
  .card-grid.cols-2 { grid-template-columns: 1fr; }
  .place-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
}

@media (max-width: 520px) {
  .hero { padding-top: 1.75rem; }
  .hero-portrait { max-width: 180px; }
}
