@font-face {
  font-family: Inter;
  src: url(../fonts/inter-roman.woff2) format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: EB Garamond;
  src: url(../fonts/eb-garamond-roman.woff2) format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}
@font-face {
  font-family: EB Garamond;
  src: url(../fonts/eb-garamond-italic.woff2) format("woff2");
  font-style: italic;
  font-weight: 400 800;
  font-display: swap;
}
@font-face {
  font-family: JetBrains Mono;
  src: url(../fonts/jetbrains-mono-roman.woff2) format("woff2");
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
}
:root {
  --paper: #eeeae2;
  --ink: #10100e;
  --red: #d63524;
  --hair: rgba(16, 16, 14, 0.25);
  --gutter: 3.5vw;
  --serif: "EB Garamond", Georgia, serif;
  --sans: Inter, Arial, sans-serif;
  --mono: "JetBrains Mono", monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
svg {
  width: 1.15em;
  height: 1.15em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: square;
  stroke-linejoin: miter;
}
.living-yarn {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  color: var(--red);
}
.living-yarn path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}
.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}
.skip-link {
  position: fixed;
  z-index: 10;
  left: 1rem;
  top: 1rem;
  padding: 0.6rem 1rem;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-200%);
}
.skip-link:focus {
  transform: none;
}
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 4px;
}
.site-header {
  height: 42px;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.brand {
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.13em;
}
.brand b {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: 0.19em;
}
.brand i,
.footer-base i,
.article-byline i {
  font-style: normal;
  color: var(--red);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 31px;
}
.nav-action {
  appearance: none;
  border: 0;
  background: none;
  padding: 10px 0;
  font: inherit;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.site-nav a,
.nav-action {
  position: relative;
}
.site-nav a:after,
.nav-action:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 5px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.site-nav a:hover:after,
.nav-action:hover:after {
  transform: scaleX(1);
}
.masthead {
  position: relative;
  padding: 9px var(--gutter) 34px;
  display: grid;
  grid-template-columns: 1fr;
}
.masthead-word {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(90px, 22.2vw, 340px);
  line-height: 0.83;
  letter-spacing: -0.055em;
  white-space: nowrap;
}
.masthead aside {
  position: absolute;
  right: var(--gutter);
  top: 7.5vw;
  width: 65px;
  font: 8px/1.45 var(--mono);
  letter-spacing: 0.11em;
}
.masthead aside hr {
  width: 26px;
  margin: 10px 0 58px;
  border: 0;
  border-top: 1px solid var(--ink);
}
.red-script {
  position: absolute;
  left: var(--gutter);
  bottom: 6px;
  margin: 0;
  color: var(--red);
  font: italic clamp(24px, 3vw, 43px) / 1 var(--serif);
  letter-spacing: 0.04em;
}
.red-script:after {
  content: "";
  display: inline-block;
  width: 48vw;
  height: 18px;
  margin-left: 12px;
  border-top: 2px solid var(--red);
  transform: rotate(1deg);
}
.hero {
  border-bottom: 1px solid var(--red);
  padding: 28px var(--gutter) 26px;
  display: grid;
  grid-template-columns: 41% 59%;
  position: relative;
}
.hero-copy {
  padding: 3px 12px 65px 0;
}
.section-label,
.thread-meta,
.hero-note,
.article-byline {
  font: 10px/1.5 var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(64px, 6.5vw, 100px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.82;
  margin: 27px 0 30px;
}
.hero-title-line {
  white-space: nowrap;
}
.hero h1 em,
.work h2 em,
.footer-statement em {
  font-weight: 400;
}
.hero-copy > p:not(.section-label) {
  font-size: 20px;
  line-height: 1.08;
}
.text-link {
  display: inline-flex;
  gap: 20px;
  margin-top: 13px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--red);
  font-size: 21px;
}
.hero-art img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.hero-art {
  position: relative;
  margin: 0;
}
.yarn-knot {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}
.hero-art figcaption {
  text-align: right;
  padding-top: 16px;
  font: 9px var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-note {
  position: absolute;
  left: var(--gutter);
  bottom: 28px;
  font-size: 8px;
}
.work {
  padding: 25px var(--gutter) 30px;
  border-bottom: 1px solid var(--red);
}
.work-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding-bottom: 23px;
}
.work h2 {
  font-size: clamp(54px, 5.4vw, 83px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 8px 0 0;
}
.filters {
  display: flex;
  align-items: center;
  gap: 0;
}
.filters[hidden] {
  display: none;
}
.filters button {
  appearance: none;
  border: 0;
  background: none;
  padding: 10px 12px;
  font: 16px var(--serif);
  cursor: pointer;
}
.filters button + button:before {
  content: "/";
  padding-right: 24px;
}
.filters button[aria-pressed="true"] {
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 7px;
}
.filter-status {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.thread-list {
  border-top: 1px solid var(--hair);
}
.thread-row {
  display: grid;
  grid-template-columns: 36px 75px minmax(240px, 1.25fr) minmax(
      200px,
      1fr
    ) 140px 28px;
  gap: 24px;
  align-items: center;
  min-height: 88px;
  border-bottom: 1px solid var(--hair);
}
.thread-row[hidden] {
  display: none;
}
.thread-index {
  font-size: 15px;
}
.thread-thumb img {
  width: 75px;
  height: 58px;
  object-fit: cover;
  filter: grayscale(1);
}
.thread-row h3 {
  margin: 0;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}
.thread-row p {
  margin: 0;
  font-size: 15px;
  line-height: 1.28;
  color: #4e4b47;
}
.thread-meta {
  display: flex;
  flex-direction: column;
  font-size: 9px;
}
.thread-arrow {
  justify-self: end;
}
.thread-arrow svg {
  width: 28px;
  height: 28px;
}
.thread-empty {
  padding: 50px 0;
  text-align: center;
  font-style: italic;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 35px;
  padding-top: 34px;
  font: 11px var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 30px var(--gutter) 24px;
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr auto;
  position: relative;
}
.footer-statement {
  font-size: 38px;
  line-height: 1;
}
.footer-actions {
  display: flex;
  align-items: center;
  gap: 70px;
}
.footer-actions a {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--red);
  font-size: 15px;
}
.footer-base {
  grid-column: 1/-1;
  align-self: end;
  display: flex;
  justify-content: space-between;
  font: 9px var(--mono);
  letter-spacing: 0.13em;
}
.footer-base a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.archive-head,
.error-page {
  padding: 8vw var(--gutter);
  border-bottom: 1px solid var(--red);
}
.archive-head h1,
.error-page h1 {
  max-width: 1000px;
  font-size: clamp(64px, 9vw, 140px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.05em;
  margin: 20px 0;
}
.archive-head > p:not(.section-label),
.error-page > p:not(.section-label) {
  max-width: 650px;
  font-size: 24px;
}
.article {
  padding-bottom: 8vw;
}
.article-header {
  padding: 7vw max(var(--gutter), calc((100vw - 920px) / 2)) 5vw;
}
.article-header h1 {
  font-size: clamp(64px, 8vw, 124px);
  line-height: 0.88;
  letter-spacing: -0.055em;
  font-weight: 500;
  margin: 20px 0 35px;
}
.article-deck {
  font-size: 28px;
  max-width: 700px;
}
.article-image {
  max-width: 1200px;
  margin: 0 auto 6vw;
  padding: 0 var(--gutter);
}
.article-image img {
  width: 100%;
  max-height: 72vh;
  object-fit: cover;
}
.article-image figcaption {
  font: 10px var(--mono);
  padding-top: 10px;
}
.gh-content {
  max-width: 760px;
  margin: auto;
  padding: 0 24px;
  font-size: 21px;
  line-height: 1.58;
}
.gh-content h2,
.gh-content h3 {
  line-height: 1.05;
  font-weight: 500;
  margin: 2.5em 0 0.6em;
}
.gh-content h2 {
  font-size: 50px;
}
.gh-content h3 {
  font-size: 34px;
}
.gh-content a {
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-underline-offset: 3px;
}
.gh-content blockquote {
  font-size: 34px;
  font-style: italic;
  line-height: 1.15;
  border-left: 2px solid var(--red);
  margin: 2em -8vw;
  padding-left: 3vw;
}
.gh-content figure {
  margin: 2.5em 0;
}
.gh-content .kg-width-wide {
  width: min(1100px, calc(100vw - 2 * var(--gutter)));
  margin-left: 50%;
  transform: translateX(-50%);
}
.gh-content .kg-width-full {
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
}
.gh-content iframe,
.gh-content video {
  max-width: 100%;
}
.gh-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
.gh-content th,
.gh-content td {
  padding: 10px;
  border-bottom: 1px solid var(--hair);
  text-align: left;
}
.missing-original {
  display: grid;
  place-items: center;
  min-height: 180px;
  border: 1px solid var(--hair);
  padding: 30px;
  font: 11px var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.article-footer {
  max-width: 760px;
  margin: 5vw auto 0;
  padding: 25px 24px;
  border-top: 1px solid var(--red);
  display: flex;
  justify-content: space-between;
}
.article-footer button,
.content-cta button {
  appearance: none;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--red);
  font: 18px var(--serif);
  padding: 5px 0;
  cursor: pointer;
}
.content-cta {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 24px;
  border-top: 1px solid var(--red);
  border-bottom: 1px solid var(--red);
}
.content-cta h2 {
  font-size: 48px;
  font-weight: 500;
}
.content-cta button + button {
  margin-left: 25px;
}
.related {
  border-top: 1px solid var(--red);
}
@media (max-width: 900px) {
  .masthead {
    grid-template-columns: 1fr;
  }
  .masthead aside {
    display: none;
  }
  .red-script {
    bottom: 3px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 35px;
  }
  .hero-copy {
    padding: 0 0 45px;
  }
  .hero-note {
    display: none;
  }
  .thread-row {
    grid-template-columns: 36px 72px 1fr 28px;
    gap: 14px;
    padding: 18px 0;
  }
  .thread-thumb img {
    width: 72px;
    height: 60px;
  }
  .thread-row p,
  .thread-meta {
    grid-column: 3;
  }
  .thread-arrow {
    grid-column: 4;
    grid-row: 1/4;
  }
  .work-heading {
    display: block;
  }
  .filters {
    margin-top: 20px;
    flex-wrap: wrap;
  }
  .filters button + button:before {
    padding-right: 10px;
  }
  .footer-actions {
    gap: 30px;
  }
}
@media (max-width: 600px) {
  :root {
    --gutter: 20px;
  }
  .site-header {
    height: auto;
    min-height: 64px;
    align-items: flex-start;
    padding-top: 16px;
    padding-bottom: 10px;
  }
  .brand {
    gap: 8px;
    padding-top: 6px;
  }
  .site-nav {
    gap: 5px;
  }
  .site-nav > a {
    display: none;
  }
  .nav-action {
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
  }
  .nav-action span {
    display: none;
  }
  .masthead {
    padding-top: 16px;
    padding-bottom: 38px;
  }
  .masthead-word {
    font-size: 24.8vw;
    letter-spacing: -0.082em;
  }
  .red-script {
    font-size: 22px;
  }
  .red-script:after {
    width: 22vw;
  }
  .hero {
    padding-bottom: 27px;
  }
  .hero h1 {
    font-size: 17vw;
    margin: 23px 0 28px;
  }
  .hero-title-line {
    white-space: normal;
  }
  .hero-copy > p:not(.section-label) {
    font-size: 19px;
  }
  .hero-art figcaption {
    text-align: left;
    line-height: 1.5;
  }
  .work {
    padding-top: 30px;
  }
  .work h2 {
    font-size: 14vw;
  }
  .filters {
    margin: 22px -8px 5px;
  }
  .filters button {
    min-height: 44px;
    padding: 8px;
  }
  .filters button + button:before {
    content: none;
  }
  .thread-row {
    grid-template-columns: 28px 58px minmax(0, 1fr) 24px;
  }
  .thread-thumb img {
    width: 58px;
    height: 58px;
  }
  .thread-row h3 {
    font-size: 25px;
  }
  .thread-row p {
    font-size: 14px;
  }
  .thread-meta {
    font-size: 8px;
  }
  .footer-statement {
    font-size: 31px;
  }
  .site-footer {
    display: block;
  }
  .footer-actions {
    margin: 45px 0;
    display: block;
  }
  .footer-actions a {
    width: max-content;
    margin-top: 24px;
  }
  .footer-base {
    gap: 20px;
    line-height: 1.7;
  }
  .archive-head,
  .error-page {
    padding-top: 18vw;
    padding-bottom: 18vw;
  }
  .article-header {
    padding-top: 15vw;
  }
  .article-header h1 {
    font-size: 16vw;
  }
  .article-deck {
    font-size: 22px;
  }
  .gh-content {
    font-size: 19px;
  }
  .gh-content h2 {
    font-size: 39px;
  }
  .gh-content blockquote {
    margin: 2em 0;
  }
  .article-footer {
    display: block;
  }
  .article-footer > * {
    display: block;
    width: max-content;
    margin-top: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
  }
}
