:root {
  color-scheme: light;
  --ink: #11151a;
  --paper: #f4f5f3;
  --white: #fff;
  --blue: #174c65;
  --blue-dark: #102f3d;
  --red: #7a2c3b;
  --gold: #c28a32;
  --mist: #dce5e7;
  --muted: #60686c;
  --line: rgba(17, 21, 26, 0.18);
  --shell: min(1180px, calc(100vw - 64px));
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  display: flex;
  width: var(--shell);
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  transform: translateX(-50%);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.wordmark__monogram {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  font-family: var(--serif);
  font-size: 18px;
}

.wordmark__text {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  font-size: 14px;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  text-decoration: underline;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(840px, 88svh);
  overflow: hidden;
  align-items: end;
  background: var(--ink);
  color: var(--white);
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
  object-position: center 35%;
  filter: grayscale(1) contrast(1.07);
}

.hero__shade {
  background: rgba(7, 11, 14, 0.62);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: 160px 72px;
}

.hero__kicker,
.eyebrow {
  margin: 0 0 24px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__kicker {
  color: #f5c470;
}

.hero h1 {
  max-width: 950px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(66px, 10vw, 144px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0;
}

.hero__subtitle {
  max-width: 590px;
  margin: 40px 0 34px;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 29px);
  line-height: 1.4;
}

.hero__link {
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.section {
  padding-block: clamp(88px, 10vw, 150px);
}

.intro__grid,
.archive__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: start;
}

.intro h2,
.poetry h2,
.life h2,
.nature h2,
.books h2,
.archive h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 82px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.intro__copy {
  padding-top: 30px;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.55;
}

.intro__copy p {
  margin: 0 0 1.35em;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(64px, 9vw, 120px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact {
  min-height: 180px;
  padding: 34px 24px 28px 0;
  border-right: 1px solid var(--line);
}

.fact + .fact {
  padding-left: 28px;
}

.fact:last-child {
  border-right: 0;
}

.fact strong,
.fact span {
  display: block;
}

.fact strong {
  margin-bottom: 12px;
  color: var(--blue);
  font-family: var(--serif);
  font-size: clamp(38px, 4.4vw, 60px);
  font-weight: 400;
  line-height: 1;
}

.fact span {
  max-width: 160px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.poetry {
  padding-bottom: 0;
  background: var(--ink);
  color: var(--white);
}

.poetry__heading {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px 80px;
  padding-bottom: clamp(72px, 9vw, 120px);
}

.poetry__heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.eyebrow--light {
  color: #f2bd64;
}

.poetry__heading > p:last-child {
  max-width: 490px;
  margin: 12px 0 0;
  color: #cbd0d2;
  font-size: 16px;
}

.poem {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.poem--field {
  background: var(--blue);
}

.poem--night {
  background: var(--blue-dark);
}

.poem--earth {
  background: var(--red);
}

.poem__inner {
  display: grid;
  min-height: 540px;
  grid-template-columns: 100px minmax(0, 820px);
  gap: 30px;
  align-items: center;
}

.poem__inner--right {
  grid-template-columns: 100px minmax(0, 820px);
  justify-content: end;
}

.poem__number {
  align-self: start;
  margin: 72px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--serif);
  font-size: 18px;
}

.poem blockquote {
  margin: 0;
  padding: 70px 0;
}

.poem blockquote > p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.2;
}

.poem footer {
  display: flex;
  margin-top: 50px;
  gap: 12px 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.poem cite {
  font-style: normal;
  font-weight: 700;
}

.life__grid,
.nature__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(52px, 9vw, 140px);
  align-items: start;
}

.life__portrait {
  margin: 0;
}

.life__portrait img {
  width: 100%;
  max-height: 780px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1);
}

figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
}

.life__content {
  padding-top: 18px;
}

.life__lead {
  max-width: 720px;
  margin: 48px 0 50px;
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.5;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 26px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.timeline time {
  color: var(--blue);
  font-family: var(--serif);
  font-size: 24px;
}

.timeline span {
  max-width: 620px;
}

.nature {
  background: var(--blue-dark);
  color: var(--white);
}

.nature__grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: center;
}

.nature__text p:not(.eyebrow) {
  max-width: 620px;
  color: #d9dfe1;
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 25px);
}

.nature__text h2 {
  margin-bottom: 50px;
}

.nature__portrait {
  margin: 0;
}

.nature__portrait img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.05);
}

.nature__portrait figcaption {
  color: #aebbc0;
}

.books__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: start;
}

.books__heading {
  position: sticky;
  top: 32px;
}

.book-cover {
  width: min(260px, 70%);
  margin: 56px 0 0;
}

.book-cover img {
  width: 100%;
  box-shadow: 18px 20px 0 var(--mist);
}

.book-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.book-list li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.book-list time {
  color: var(--red);
  font-family: var(--serif);
  font-size: 22px;
}

.book-list strong,
.book-list small {
  display: block;
}

.book-list strong {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 400;
  line-height: 1.25;
}

.book-list small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.archive {
  background: var(--red);
  color: var(--white);
}

.archive__copy {
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 25px);
}

.archive__copy > p {
  margin: 0 0 1.4em;
}

.source-list {
  margin: 50px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  font-family: var(--sans);
  font-size: 14px;
  list-style: none;
}

.source-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.34);
}

.source-list a {
  display: block;
  padding: 18px 0;
  text-decoration: none;
}

.source-list a:hover {
  text-decoration: underline;
}

.site-footer {
  padding-block: 54px;
  background: var(--ink);
  color: #c8ced1;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 40px;
  align-items: end;
  font-size: 13px;
  line-height: 1.6;
}

.site-footer p {
  margin: 0;
}

.site-footer strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
}

.site-footer a {
  color: var(--white);
}

.error-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 32px;
  background: var(--blue-dark);
  color: var(--white);
}

.error-page__inner {
  width: min(760px, 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-block: 56px;
}

.error-page__code {
  margin: 0 0 28px;
  color: #f2bd64;
  font-weight: 800;
}

.error-page h1 {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: clamp(52px, 10vw, 104px);
  font-weight: 400;
  line-height: 0.95;
}

.error-page p {
  max-width: 520px;
  font-family: var(--serif);
  font-size: 21px;
}

.error-page a {
  display: inline-block;
  margin-top: 22px;
  font-family: var(--sans);
  font-size: 14px;
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 40px, 720px);
  }

  .site-header {
    min-height: 76px;
  }

  .wordmark__text {
    display: none;
  }

  .site-nav {
    max-width: calc(100vw - 92px);
    gap: 20px;
    overflow-x: auto;
    padding-block: 18px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    min-height: min(760px, 90svh);
  }

  .hero__image {
    object-position: 58% center;
  }

  .hero__content {
    padding-block: 130px 52px;
  }

  .hero h1 {
    font-size: clamp(58px, 16vw, 92px);
    line-height: 0.88;
  }

  .intro__grid,
  .poetry__heading,
  .life__grid,
  .nature__grid,
  .books__layout,
  .archive__grid {
    grid-template-columns: 1fr;
  }

  .intro__copy {
    padding-top: 0;
  }

  .facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fact:nth-child(2) {
    border-right: 0;
  }

  .fact:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .poetry__heading .eyebrow {
    grid-column: auto;
  }

  .poem__inner,
  .poem__inner--right {
    min-height: 460px;
    grid-template-columns: 54px 1fr;
    gap: 14px;
  }

  .poem__number {
    margin-top: 58px;
  }

  .poem blockquote {
    padding-block: 58px;
  }

  .poem footer {
    flex-direction: column;
  }

  .life__portrait {
    width: min(520px, 100%);
  }

  .life__content,
  .nature__text {
    padding-top: 16px;
  }

  .nature__portrait {
    width: min(480px, 100%);
    grid-row: 1;
  }

  .books__heading {
    position: static;
  }

  .book-cover {
    width: min(230px, 62%);
  }
}

@media (max-width: 520px) {
  :root {
    --shell: calc(100% - 32px);
  }

  body {
    font-size: 15px;
  }

  .site-nav {
    gap: 16px;
    font-size: 12px;
  }

  .hero {
    min-height: min(710px, 88svh);
  }

  .hero__shade {
    background: rgba(7, 11, 14, 0.67);
  }

  .hero__kicker {
    margin-bottom: 18px;
  }

  .hero__subtitle {
    margin-top: 30px;
    font-size: 19px;
  }

  .section {
    padding-block: 80px;
  }

  .intro h2,
  .poetry h2,
  .life h2,
  .nature h2,
  .books h2,
  .archive h2 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .facts {
    grid-template-columns: 1fr;
  }

  .fact,
  .fact + .fact {
    min-height: 0;
    padding: 25px 0;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .fact:first-child {
    border-top: 0;
  }

  .poetry__heading {
    padding-bottom: 72px;
  }

  .poem__inner,
  .poem__inner--right {
    display: block;
    min-height: 0;
    padding-block: 48px;
  }

  .poem__number {
    margin: 0 0 22px;
  }

  .poem blockquote {
    padding: 0;
  }

  .poem blockquote > p {
    font-size: clamp(29px, 8.5vw, 42px);
  }

  .poem footer {
    margin-top: 34px;
  }

  .timeline li,
  .book-list li {
    grid-template-columns: 70px 1fr;
    gap: 16px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
