:root {
  --ivory: #f2f0e8;
  --ivory-deep: #e8e4d8;
  --ink: #26251f;
  --soft-ink: #55534b;
  --hairline: rgba(38, 37, 31, .22);
  --bronze: #8a7252;
  --night: #1c201d;
  --night-soft: #b9b9ac;
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ivory);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button, select { font: inherit; }
::selection { color: var(--ivory); background: var(--bronze); }

.shell {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}

.section-pad { padding-block: 132px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.overline,
.section-label {
  margin: 0;
  color: var(--bronze);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(260px, .65fr);
  gap: 9vw;
  align-items: center;
  min-height: calc(100svh - 70px);
  padding-block: 84px 110px;
  overflow: hidden;
}

.hero h1 {
  margin: 28px 0 32px;
  font-family: var(--serif);
  font-size: clamp(78px, 10.5vw, 146px);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.055em;
}

.hero-lead {
  max-width: 720px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.18;
  letter-spacing: -.018em;
}

.hero-note {
  align-self: end;
  padding-bottom: 34px;
}

.note-rule {
  display: block;
  width: 44px;
  height: 1px;
  margin-bottom: 24px;
  background: var(--bronze);
}

.hero-note p {
  margin: 0 0 30px;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.65;
}

.hero-note a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--bronze);
  font-size: 12px;
}

.hero-mark {
  position: absolute;
  right: 0;
  top: 16%;
  width: 236px;
  height: 236px;
  opacity: .1;
  pointer-events: none;
}

.hero-mark::before,
.hero-mark::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.hero-mark::after { inset: 68px; }

.hero-mark b {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
}

.hero-mark span {
  position: absolute;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.hero-mark span:nth-child(1) { left: 100px; top: 0; }
.hero-mark span:nth-child(2) { right: 13px; top: 45px; }
.hero-mark span:nth-child(3) { right: 0; top: 111px; }
.hero-mark span:nth-child(4) { right: 14px; bottom: 42px; }
.hero-mark span:nth-child(6) { left: 99px; bottom: 0; }
.hero-mark span:nth-child(7) { left: -2px; bottom: 43px; }
.hero-mark span:nth-child(8) { left: 0; top: 111px; }
.hero-mark span:nth-child(9) { left: 12px; top: 44px; }

.work-section {
  border-top: 1px solid var(--hairline);
  background: var(--ivory-deep);
}

.section-heading {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 64px;
  margin-bottom: 72px;
}

.section-heading h2,
.research-layout h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(44px, 5.2vw, 72px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.035em;
}

.section-heading > div > p {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--soft-ink);
  font-size: 15px;
  line-height: 1.65;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}

.work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  padding: 34px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  color: inherit;
  text-decoration: none;
  background: rgba(242, 240, 232, .18);
  cursor: pointer;
  transition: background 180ms ease, box-shadow 180ms ease;
}

.work-card:hover,
.work-card:focus-visible {
  outline: none;
  background: rgba(242, 240, 232, .7);
  box-shadow: inset 0 0 0 2px var(--bronze);
}

.work-card-top,
.work-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--soft-ink);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.work-card h3 {
  margin: 68px 0 10px;
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.04em;
}

.work-card h3 sup {
  margin-left: 4px;
  font-family: var(--sans);
  font-size: 12px;
  vertical-align: top;
}

.work-subtitle {
  margin: 0;
  color: var(--bronze);
  font-family: var(--serif);
  font-size: 20px;
}

.work-copy {
  max-width: 470px;
  margin: 34px 0 52px;
  color: var(--soft-ink);
  font-size: 14px;
  line-height: 1.65;
}

.work-card-foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
}

.work-card-action {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.work-card-action b {
  font-size: 18px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.work-card:hover .work-card-action b,
.work-card:focus-visible .work-card-action b { transform: translate(4px, -4px); }

.lineage-section { border-bottom: 1px solid var(--hairline); }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 0 42px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
}

.timeline li {
  min-height: 300px;
  padding: 26px;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.timeline time {
  color: var(--bronze);
  font-family: var(--mono);
  font-size: 10px;
}

.timeline h3 {
  margin: 72px 0 20px;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.timeline p {
  margin: 0;
  color: var(--soft-ink);
  font-size: 13px;
  line-height: 1.6;
}

.principle-section { padding-block: 112px; background: var(--ivory-deep); }

.principle-inner {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 260px;
  gap: 58px;
  align-items: start;
}

.principle-inner blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.5vw, 62px);
  line-height: 1.08;
  letter-spacing: -.03em;
}

.principle-inner blockquote span {
  display: block;
  margin-top: 10px;
  color: var(--bronze);
  font-style: italic;
}

.principle-inner > p:last-child {
  margin: 8px 0 0;
  color: var(--soft-ink);
  font-size: 13px;
  line-height: 1.65;
}

.research-section { color: var(--ivory); background: #333832; }

.research-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9vw;
}

.research-layout .section-label { color: #bdab8e; }
.research-layout h2 { margin-top: 34px; color: var(--ivory); }
.research-items { border-top: 1px solid rgba(242, 240, 232, .24); }

.research-items a {
  position: relative;
  display: block;
  padding: 30px 42px 30px 0;
  border-bottom: 1px solid rgba(242, 240, 232, .24);
}

.research-items a > span { font-family: var(--serif); font-size: 28px; }

.research-items a p {
  max-width: 450px;
  margin: 12px 0 0;
  color: var(--night-soft);
  font-size: 13px;
  line-height: 1.55;
}

.research-items a b { position: absolute; top: 30px; right: 0; font-weight: 400; }
.writing-section { border-bottom: 1px solid var(--hairline); }
.writing-heading { margin-bottom: 54px; }
.writing-list { border-top: 1px solid var(--hairline); }

.writing-row {
  display: grid;
  grid-template-columns: 46px minmax(260px, 1.2fr) minmax(220px, .8fr) 120px 20px;
  gap: 26px;
  align-items: center;
  min-height: 126px;
  border-bottom: 1px solid var(--hairline);
  transition: color 160ms ease;
}

.writing-row:hover { color: var(--bronze); }

.writing-index,
.writing-title > span,
.writing-row time {
  color: var(--soft-ink);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.writing-title h3 {
  margin: 7px 0 0;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 400;
  line-height: 1.1;
}

.writing-row > p { margin: 0; color: var(--soft-ink); font-size: 12px; line-height: 1.5; }
.writing-row > b { font-weight: 400; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 56px; min-height: auto; }
  .hero-main { padding-top: 48px; }
  .hero-note { max-width: 460px; }
  .hero-mark { right: -48px; top: 22%; }
  .work-card-foot { align-items: flex-start; flex-direction: column; gap: 14px; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .principle-inner { grid-template-columns: 140px 1fr; }
  .principle-inner > p:last-child { grid-column: 2; }
  .research-layout { grid-template-columns: 1fr; }
  .writing-row { grid-template-columns: 38px 1fr 100px 20px; }
  .writing-row > p { display: none; }
}

@media (max-width: 700px) {
  .shell { width: min(100% - 36px, 1180px); }
  .section-pad { padding-block: 86px; }
  .hero { min-height: calc(100svh - 62px); padding-block: 72px 70px; }
  .hero h1 { margin-top: 24px; font-size: 76px; }
  .hero-lead { font-size: 28px; }
  .hero-mark { width: 180px; height: 180px; top: 30%; opacity: .07; }
  .hero-mark span { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 46px; }
  .section-heading h2, .research-layout h2 { font-size: 44px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card { min-height: 400px; padding: 26px; }
  .work-card h3 { margin-top: 54px; font-size: 54px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline li { min-height: 240px; }
  .timeline h3 { margin-top: 52px; }
  .principle-inner { grid-template-columns: 1fr; gap: 34px; }
  .principle-inner > p:last-child { grid-column: auto; }
  .principle-inner blockquote { font-size: 42px; }
  .writing-row { grid-template-columns: 28px 1fr 18px; gap: 14px; padding-block: 22px; }
  .writing-row time { display: none; }
  .writing-title h3 { font-size: 23px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .work-card, .work-card-action b, .writing-row { transition: none; }
}
