@font-face {
  font-family: "Newsreader";
  src: url("/fonts/newsreader-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("/fonts/newsreader-latin-variable-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/fonts/ibm-plex-sans-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/fonts/ibm-plex-sans-latin-variable-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 100 700;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/fonts/ibm-plex-mono-latin-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/fonts/ibm-plex-mono-latin-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --ink: #14130f;
  --body: #2e2c26;
  --muted: #75716a;
  --muted-warm: #5a574f;
  --paper: #fff;
  --cream: #faf8f3;
  --frame: #efede8;
  --rule: #d8d4cb;
  --rule-warm: #e3c4b2;
  --rule-mobile: #ede9e1;
  --rust: #9a4b2c;
  --scrim: rgba(15, 14, 12, 0.97);
  --scrim-edge: rgba(239, 237, 232, 0.34);
  --serif: "Newsreader", Georgia, serif;
  --sans: "IBM Plex Sans", system-ui, sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
  --page-shell: min(1160px, calc(100% - 80px));
  --edge: max(24px, calc((100vw - 1160px) / 2));
  --rail: calc(310px + max(24px, (100vw - 1160px) / 2));
  --body-indent: 56px;
  --media-transition: 360ms ease;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: var(--paper);
  color: var(--body);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: var(--ink);
  text-decoration: none;
}

a:hover {
  color: var(--rust);
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  transform: translateY(-160%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 2px solid var(--ink);
  backdrop-filter: blur(12px);
}

.site-header__bar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  min-height: 51px;
  padding-block: 14px 11px;
}

.site-mark {
  flex: 0 0 auto;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
}

.desktop-nav a,
.mobile-nav a {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.desktop-nav a {
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--ink);
}

.desktop-nav a[aria-current="page"] {
  border-bottom-color: var(--rust);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mobile-nav {
  display: grid;
  padding: 6px 20px 16px;
  border-top: 1px solid var(--rule);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 13px 0;
  border-bottom: 1px solid var(--rule-mobile);
}

.mobile-nav a[aria-current="page"] {
  color: var(--rust);
}

.home-grid {
  display: grid;
  grid-template-columns: var(--rail) minmax(0, 1fr);
}

.home-rail {
  min-width: 0;
  background: var(--cream);
  border-right: 1px solid var(--rule-warm);
}

.home-latest {
  grid-column: 1;
  grid-row: 1;
  padding: 53px 30px 28px var(--edge);
}

.home-latest__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 19px;
}

.home-latest__heading p,
.home-latest__heading time {
  margin: 0;
  font-family: var(--mono);
  font-size: 10px;
}

.home-latest__heading p {
  color: var(--ink);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-latest__heading time {
  color: var(--rust);
  letter-spacing: 0.04em;
}

.home-latest h2 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.15;
  text-wrap: balance;
}

.home-latest > p {
  margin: 0;
  color: var(--body);
  font-size: 14px;
  line-height: 1.72;
  text-wrap: pretty;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 17px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--rust);
  color: var(--rust);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-intro {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  padding: 53px var(--edge) 0 var(--body-indent);
}

.home-intro h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(70px, 8.1vw, 114px);
  font-weight: 300;
  letter-spacing: -0.038em;
  line-height: 0.82;
}

.home-role {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 29px;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}

.home-role p {
  margin: 0;
  color: var(--rust);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.home-role span {
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.home-intro__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  margin-top: 43px;
}

.home-intro__columns p {
  margin: 0;
  color: var(--body);
  font-size: 17px;
  line-height: 1.76;
  text-wrap: pretty;
}

.home-lede {
  font-family: var(--serif);
  font-size: 1.28em;
}

.home-quote {
  margin: 45px 0;
  padding: 23px 0 22px;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.home-quote blockquote {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 29px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.28;
  text-wrap: balance;
}

.home-quote figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-colophon {
  grid-column: 1;
  grid-row: 2;
  padding: 0 30px 72px var(--edge);
}

.home-colophon h2 {
  margin: 0;
  padding: 26px 0 14px;
  border-top: 1px solid var(--rule-warm);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-colophon dl {
  margin: 0;
  border-top: 1px solid var(--rule-warm);
}

.home-colophon dl > div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--rule-warm);
}

.home-colophon dt,
.home-colophon dd,
.home-colophon > p {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.65;
}

.home-colophon dt {
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-colophon dd {
  margin: 0;
  color: var(--body);
}

.home-colophon > p {
  margin: 18px 0 0;
  color: var(--muted-warm);
}

.home-work {
  grid-column: 2;
  grid-row: 2;
  min-width: 0;
  padding: 0 var(--edge) 72px var(--body-indent);
}

.section-heading {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ink);
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.section-heading span {
  margin-left: auto;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 22px;
}

.work-card {
  display: block;
  min-width: 0;
}

.work-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--frame);
  isolation: isolate;
}

.work-card__media picture,
.work-card__image,
.work-card__motion {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.work-card__media picture {
  display: block;
}

.work-card__image,
.work-card__motion {
  object-fit: cover;
}

.work-card__image {
  z-index: 1;
}

.work-card__motion {
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--media-transition);
}

.work-card__media.is-playing .work-card__motion {
  opacity: 1;
}

.work-card__meta {
  display: block;
  margin-top: 11px;
  padding-top: 9px;
  border-top: 1px solid var(--rule);
}

.work-card__meta strong,
.work-card__meta em {
  display: block;
}

.work-card__meta strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.work-card__meta em {
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.work-card:hover .work-card__meta strong,
.work-card:focus-visible .work-card__meta strong {
  color: var(--rust);
}

.site-footer {
  padding: 52px 20px 40px;
  border-top: 2px solid var(--ink);
  text-align: center;
}

.site-footer__logo {
  display: inline-block;
}

.site-footer__logo picture {
  display: block;
}

.site-footer__logo-image {
  width: 54px;
  height: auto;
  margin: 0 auto 20px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.preview-placeholder {
  min-height: calc(100vh - 190px);
  padding-block: clamp(80px, 12vw, 160px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--rust);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.preview-placeholder h1 {
  max-width: 900px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(54px, 8vw, 108px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-wrap: balance;
}

.preview-placeholder > p:not(.eyebrow) {
  max-width: 700px;
  margin: 34px 0 0;
  font-size: 18px;
  line-height: 1.7;
}

.preview-placeholder > .preview-placeholder__source {
  margin-top: 14px;
  color: var(--muted-warm);
  font-size: 15px;
}

.preview-placeholder__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button:hover {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--paper);
}

.button--quiet {
  background: transparent;
  color: var(--ink);
}

.editorial-page {
  padding-top: 30px;
  padding-bottom: 96px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 38px;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  gap: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.breadcrumbs a:hover {
  color: var(--rust);
}

.editorial-head {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.9fr);
  gap: 70px;
  align-items: end;
  padding-bottom: 33px;
  border-bottom: 2px solid var(--ink);
}

.editorial-head--single {
  grid-template-columns: minmax(0, 900px);
}

.editorial-head h1,
.contact-head h1 {
  margin: 0 0 31px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(64px, 8vw, 102px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 0.87;
  text-wrap: balance;
}

.editorial-head p {
  max-width: 72ch;
  margin: 15px 0 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.75;
  text-wrap: pretty;
}

.editorial-head p:first-of-type {
  margin-top: 0;
}

.editorial-head__aside {
  min-width: 0;
  padding-bottom: 2px;
}

.video-head {
  padding-bottom: 0;
  border-bottom: 0;
}

.video-head + .category-grid {
  margin-top: 48px;
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.kit-grid h2 {
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.kit-grid ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.kit-grid li {
  color: var(--muted-warm);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.55;
}

.media-frame {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--frame);
}

.media-frame picture,
.media-frame img,
.media-frame video {
  display: block;
  width: 100%;
  height: 100%;
}

.media-frame img,
.media-frame video {
  object-fit: cover;
}

.media-frame--landscape {
  aspect-ratio: 16 / 9;
}

.media-frame--photo {
  aspect-ratio: 3 / 2;
}

.media-frame--portrait {
  aspect-ratio: 1 / 1;
}

.media-frame--natural picture,
.media-frame--natural img {
  height: auto;
}

.media-frame .work-card__motion {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--media-transition);
}

.media-frame.is-playing .work-card__motion {
  opacity: 1;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 72px;
  padding-top: 19px;
  border-top: 2px solid var(--ink);
}

.category-card {
  min-width: 0;
}

.category-card__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-height: 61px;
}

.category-card__head em,
.case-study__number {
  margin: 0;
  color: var(--rust);
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.14em;
}

.category-card__head strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.016em;
  line-height: 1.08;
}

.category-card:hover .category-card__head strong {
  color: var(--rust);
}

.category-card__description {
  display: block;
  margin-top: 14px;
  color: var(--muted-warm);
  font-size: 14px;
  line-height: 1.65;
  text-wrap: pretty;
}

.category-detail-head {
  align-items: end;
}

.category-detail-head h1 {
  max-width: 850px;
}

.category-facts {
  margin: 0;
  border-top: 1px solid var(--rule);
}

.category-facts > div {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid var(--rule);
}

.category-facts dt {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.category-facts dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.55;
}

.editorial-category-page .category-detail-head {
  display: block;
  padding-bottom: 0;
  border-bottom: 0;
}

.editorial-category-page .category-detail-head h1 {
  max-width: none;
}

.editorial-category-page .editorial-head__aside {
  padding-bottom: 0;
}

.editorial-category-page .category-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.editorial-category-page .category-facts > div {
  display: block;
  padding: 15px 18px 17px;
  border-right: 1px solid var(--rule);
  border-bottom: 0;
}

.editorial-category-page .category-facts > div:last-child {
  border-right: 0;
}

.editorial-category-page .category-facts dt {
  margin-bottom: 6px;
}

.editorial-category-page .category-facts dd {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.3;
}

.editorial-category-page .category-overview > div:first-child p {
  font-size: 18px;
  line-height: 1.7;
}

.editorial-category-page .category-overview li span {
  font-size: 14px;
  line-height: 1.65;
}

.editorial-category-page .section-intro {
  font-size: 17px;
}

.editorial-category-page .category-work__copy > p {
  font-size: 16px;
  line-height: 1.7;
}

.category-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.85fr);
  gap: 70px;
  margin-top: 43px;
}

.category-overview > div:first-child p {
  margin: 0 0 16px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.75;
  text-wrap: pretty;
}

.category-overview__label {
  margin: 0 0 13px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.category-overview ol {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--rule);
  list-style: none;
}

.category-overview li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--rule);
}

.category-overview li em {
  color: var(--rust);
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
}

.category-overview li span {
  color: var(--muted-warm);
  font-size: 13px;
  line-height: 1.6;
}

.category-work-list,
.category-stills,
.category-related {
  margin-top: 78px;
}

.category-work {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.9fr);
  gap: 58px;
  align-items: start;
  padding: 43px 0;
  border-bottom: 1px solid var(--rule);
}

.category-work__heading {
  display: flex;
  align-items: baseline;
  gap: 13px;
}

.category-work__heading em {
  color: var(--rust);
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.14em;
}

.category-work__heading h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  letter-spacing: -0.018em;
  line-height: 1.15;
  text-wrap: balance;
}

.category-work__copy > p {
  max-width: 64ch;
  margin: 15px 0 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.74;
  text-wrap: pretty;
}

.category-work__links {
  display: grid;
  margin-top: 22px;
  border-top: 1px solid var(--rule);
}

.category-work__links a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  color: var(--body);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.5;
}

.category-work__links a:hover {
  color: var(--rust);
}

.category-work__links em {
  flex: none;
  color: var(--rust);
  font-style: normal;
}

.category-work__facts {
  margin: 15px 0 0;
  border-top: 1px solid var(--rule);
}

.category-work__facts > div {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--rule);
}

.category-work__facts dt {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-work__facts dd {
  margin: 0;
  color: var(--body);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.6;
}

.category-stills__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.category-related__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
  margin-top: 31px;
}

.featured-list,
.case-studies {
  margin-top: 78px;
}

.section-rule {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-bottom: 13px;
  border-bottom: 2px solid var(--ink);
}

.section-rule h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-rule span {
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.section-rule em,
.collection-total {
  margin: 0;
  color: var(--rust);
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-list > .section-rule h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
}

.featured-list > .section-rule {
  padding-bottom: 6px;
}

.featured-list > .section-rule span {
  display: none;
}

.featured-list > .section-rule em {
  margin-left: auto;
}

.editorial-category-page .category-work-list > .section-rule h2,
.editorial-category-page .category-stills > .section-rule h2,
.editorial-category-page .category-related > .section-rule h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
}

.editorial-category-page .category-work-list > .section-rule,
.editorial-category-page .category-stills > .section-rule,
.editorial-category-page .category-related > .section-rule {
  padding-bottom: 6px;
}

.editorial-category-page .category-work-list > .section-rule span,
.editorial-category-page .category-stills > .section-rule span,
.editorial-category-page .category-related > .section-rule span {
  display: none;
}

.editorial-category-page .category-work-list > .section-rule em,
.editorial-category-page .category-stills > .section-rule em,
.editorial-category-page .category-related > .section-rule em {
  margin-left: auto;
}

.web-page .case-studies > .section-rule h2 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
}

.web-page .case-studies > .section-rule {
  padding-bottom: 6px;
}

.web-page .case-studies > .section-rule span {
  display: none;
}

.web-page .case-studies > .section-rule em {
  margin-left: auto;
}

.web-page .case-study__copy > p:not(.case-study__number) {
  font-size: 16px;
}

.web-page .case-studies:last-child > .case-study:last-child {
  border-bottom: 0;
}

.editorial-category-page .category-work-list > .category-work:last-child {
  border-bottom: 0;
}

.section-intro {
  max-width: 76ch;
  margin: 18px 0 3px;
  color: var(--muted-warm);
  font-size: 16px;
  line-height: 1.7;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 65fr) minmax(280px, 35fr);
  gap: 46px;
  align-items: center;
  padding: 46px 0;
  border-bottom: 1px solid var(--rule);
}

.feature-row--reverse {
  grid-template-columns: minmax(280px, 35fr) minmax(0, 65fr);
}

.feature-row__copy {
  width: min(100%, 66ch);
}

.feature-row--reverse .feature-row__copy {
  order: 2;
  justify-self: start;
}

.feature-row--reverse .feature-row__media {
  order: 1;
}

.feature-row h3,
.case-study h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.12;
  text-wrap: balance;
}

.feature-row__copy > p,
.case-study__copy > p:not(.case-study__number) {
  margin: 16px 0 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.72;
  text-wrap: pretty;
}

.featured-list .feature-row__copy > p {
  font-size: 17px;
}

.featured-list > .feature-row:last-child {
  border-bottom: 0;
}

.case-study {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.6fr);
  gap: 56px;
  align-items: start;
  padding: 48px 0;
  border-bottom: 1px solid var(--rule);
}

.case-study--reverse {
  grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.85fr);
}

.case-study--reverse .case-study__copy {
  order: 2;
}

.case-study--reverse .case-study__media {
  order: 1;
}

.case-study__number {
  margin-bottom: 11px;
}

.case-study__links {
  display: grid;
  margin-top: 22px;
  border-top: 1px solid var(--rule);
}

.case-study__links a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-study__facts,
.journal-state,
.contact-facts {
  margin: 21px 0 0;
  border-top: 1px solid var(--rule);
}

.case-study__facts > div,
.journal-state > div,
.contact-facts > div {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 13px;
  padding: 9px 0;
  border-bottom: 1px solid var(--rule);
}

.case-study__facts dt,
.journal-state dt,
.contact-facts dt {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-study__facts dd,
.journal-state dd,
.contact-facts dd {
  margin: 0;
  color: var(--body);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.55;
}

.case-study__media--gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.case-study__media--gallery .media-frame {
  aspect-ratio: 4 / 3;
}

.case-study__media--gallery .media-frame:first-child:nth-last-child(odd) {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.photography-head {
  grid-template-columns: minmax(0, 1.85fr) minmax(260px, 1fr);
  align-items: end;
  padding-bottom: 22px;
}

.photography-head > div:first-child > p {
  max-width: 54ch;
  color: var(--body);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
}

.photography-head .editorial-head__aside {
  text-align: right;
}

.photography-head .collection-total {
  width: 100%;
  max-width: none;
  color: var(--rust);
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.14em;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 39px 26px;
  margin-top: 51px;
}

.gallery-card__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  padding-top: 9px;
  border-top: 1px solid var(--rule);
}

.gallery-card__meta strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  text-wrap: pretty;
}

.gallery-card:hover .gallery-card__meta strong {
  color: var(--rust);
}

.gallery-card__meta em,
.gallery-card__place {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.gallery-card__meta em {
  flex: none;
}

.gallery-card__place {
  display: block;
  margin-top: 7px;
}

.gallery-card .media-frame img {
  filter: saturate(0.92);
  transition: filter var(--media-transition);
}

.gallery-card:hover .media-frame img {
  filter: saturate(1.08);
}

.album-head h1 {
  max-width: 1000px;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(60px, 7.4vw, 94px);
  font-weight: 300;
  letter-spacing: -0.034em;
  line-height: 0.92;
  text-wrap: balance;
}

.album-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 34px 0 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.album-facts > div {
  min-width: 0;
  padding: 17px 21px 15px;
  border-right: 1px solid var(--rule);
}

.album-facts > div:last-child {
  border-right: 0;
}

.album-facts dt {
  margin-bottom: 7px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.album-facts dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.album-description {
  max-width: 78ch;
  margin: 39px 0 0;
  color: var(--body);
  font-family: var(--serif);
  font-size: 25px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.42;
  text-wrap: pretty;
}

.album-hint {
  margin: 25px 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 43px;
}

.album-shot {
  position: relative;
  display: block;
  min-width: 0;
  aspect-ratio: 3 / 2;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--frame);
  cursor: zoom-in;
}

.album-shot picture,
.album-shot img {
  display: block;
  width: 100%;
  height: 100%;
}

.album-shot img {
  object-fit: cover;
  transition: transform var(--media-transition);
}

.album-shot:hover img,
.album-shot:focus-visible img {
  transform: scale(1.025);
}

.album-shot > span {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 5px 8px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.album-related {
  margin-top: 78px;
}

.album-related__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
  margin-top: 31px;
}

body.has-lightbox {
  overflow: hidden;
}

.album-lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 20px;
  border: 0;
  background: var(--scrim);
  color: var(--frame);
}

.album-lightbox[open] {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 14px;
}

.album-lightbox::backdrop {
  background: var(--scrim);
}

.album-lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.album-lightbox__bar p,
.album-lightbox__nav p {
  margin: 0;
  color: var(--frame);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.album-lightbox button {
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid var(--scrim-edge);
  background: transparent;
  color: var(--frame);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.album-lightbox button:hover,
.album-lightbox button:focus-visible {
  border-color: var(--frame);
  color: var(--paper);
}

.album-lightbox__bar button {
  padding-inline: 5px;
  border-color: transparent;
}

.album-lightbox__stage {
  display: grid;
  place-items: center;
  min-height: 0;
  overflow: hidden;
}

.album-lightbox__stage img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: calc(100dvh - 160px);
  object-fit: contain;
}

.album-lightbox__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.album-lightbox__nav p {
  min-width: 64px;
  text-align: center;
}

.field-notes-head {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.4fr);
}

.field-notes-head .editorial-head__aside {
  padding-bottom: 0;
}

.journal-state {
  margin-top: 0;
}

.journal-state > div {
  display: flex;
  justify-content: space-between;
}

.note-controls {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) minmax(160px, 0.65fr) minmax(190px, 0.8fr) auto;
  gap: 28px;
  align-items: end;
  margin-top: 43px;
}

.note-controls label {
  display: grid;
  gap: 7px;
}

.note-controls label > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.note-controls input,
.note-controls select {
  width: 100%;
  height: 42px;
  padding: 0 3px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
}

.note-controls__status {
  margin: 0;
  padding-bottom: 11px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.notes-index {
  margin-top: 42px;
}

.note-row {
  display: grid;
  grid-template-columns: 42px 105px minmax(0, 1.8fr) minmax(180px, 0.72fr) 58px;
  gap: 20px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}

.note-row[hidden] {
  display: none;
}

.note-row--head {
  padding-top: 0;
  padding-bottom: 9px;
  border-bottom-color: var(--ink);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.note-row__number {
  color: var(--rust);
  font-family: var(--mono);
  font-size: 10px;
}

.note-row time,
.note-row__tags,
.note-row__read {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.75;
}

.note-row__summary strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.2;
  text-wrap: pretty;
}

.note-row:hover .note-row__summary strong {
  color: var(--rust);
}

.note-row__summary > span {
  display: block;
  margin-top: 9px;
  color: var(--muted-warm);
  font-size: 13px;
  line-height: 1.6;
  text-wrap: pretty;
}

.note-row__read {
  text-align: right;
}

.notes-index__empty {
  margin: 0;
  padding: 44px 0;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
}

.term-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 340px);
  gap: 72px;
  align-items: start;
  margin-top: 27px;
  padding-top: 22px;
  border-top: 2px solid var(--ink);
}

.term-head__kicker {
  margin: 0;
  color: var(--rust);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.term-head h1 {
  margin: 14px 0 0;
  color: var(--ink);
  font-family: var(--mono);
  font-size: clamp(31px, 3vw, 39px);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.term-head__summary {
  max-width: 64ch;
  margin: 23px 0 0;
  color: var(--body);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 300;
  line-height: 1.43;
  text-wrap: pretty;
}

.term-head__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.term-head__actions .button {
  min-height: 42px;
}

.term-head__facts {
  margin: 0;
  border-top: 1px solid var(--rule);
}

.term-head__facts > div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--rule);
}

.term-head__facts dt,
.term-head__facts dd {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.55;
  text-transform: uppercase;
}

.term-head__facts dt {
  color: var(--muted);
  letter-spacing: 0.16em;
}

.term-head__facts dd {
  margin: 0;
  color: var(--body);
  letter-spacing: 0.04em;
}

.term-head__facts a:hover {
  color: var(--rust);
}

.term-nearby {
  margin-top: 44px;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.term-nearby > p {
  margin: 0 0 12px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.term-nearby > p span {
  color: var(--rust);
}

.term-nearby > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0 12px;
  align-items: center;
}

.term-nearby a {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  min-height: 32px;
  color: var(--body);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
}

.term-nearby a:hover {
  color: var(--rust);
}

.term-nearby em,
.term-nearby i {
  color: var(--rust);
  font-style: normal;
}

.term-nearby i {
  font-size: 10px;
}

.term-notes {
  margin-top: 52px;
}

.term-notes .notes-index {
  margin-top: 0;
}

.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;
}

.note-detail-page {
  padding: 47px 0 0;
}

.note-detail-head {
  max-width: 910px;
  margin: 46px auto 0;
  text-align: center;
}

.note-detail-kicker {
  margin: 0 0 20px;
  color: var(--rust);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.note-detail-head h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.027em;
  line-height: 1.03;
  text-wrap: balance;
}

.note-detail-summary {
  max-width: 760px;
  margin: 25px auto 0;
  color: var(--body);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  text-wrap: pretty;
}

.note-detail-meta {
  display: grid;
  grid-template-columns: minmax(30px, 1fr) auto minmax(30px, 1fr);
  gap: 20px;
  align-items: center;
  max-width: 680px;
  margin: 30px auto 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.note-detail-meta > span[aria-hidden="true"] {
  height: 1px;
  background: var(--rule);
}

.margin-toggle {
  min-height: 34px;
  margin-top: 21px;
  padding: 6px 12px;
  border: 1px solid var(--rule);
  border-radius: 0;
  background: transparent;
  color: var(--muted-warm);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.margin-toggle:hover,
.margin-toggle:focus-visible {
  border-color: var(--ink);
  color: var(--ink);
}

.note-detail-hero {
  margin: 51px 0 0;
}

.note-detail-hero picture,
.note-detail-hero img {
  display: block;
  width: 100%;
  height: auto;
}

.note-detail-hero figcaption {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 11px;
  padding-top: 9px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.07em;
  line-height: 1.6;
}

.media-prompt {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.media-prompt summary {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  list-style: none;
  cursor: help;
}

.media-prompt summary::-webkit-details-marker {
  display: none;
}

.media-prompt__icon {
  display: inline-grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 8px;
  line-height: 1;
}

.media-prompt__tooltip {
  position: absolute;
  z-index: 20;
  bottom: calc(100% + 9px);
  left: 0;
  width: min(520px, calc(100vw - 48px));
  max-height: 300px;
  padding: 14px 16px;
  overflow: auto;
  visibility: hidden;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 12px 30px rgba(20, 19, 15, 0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 120ms ease, transform 120ms ease, visibility 120ms ease;
}

.media-prompt:hover .media-prompt__tooltip,
.media-prompt:focus-within .media-prompt__tooltip,
.media-prompt[open] .media-prompt__tooltip {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.media-prompt__tooltip p {
  margin: 0;
  color: inherit;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.55;
  overflow-wrap: anywhere;
  text-transform: none;
  white-space: pre-wrap;
}

.margin-summary {
  position: absolute;
  top: 22px;
  left: var(--edge);
  display: grid;
  gap: 12px;
  width: calc(var(--rail) - var(--edge) - 30px);
  margin: 0;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--rule-warm);
}

.margin-summary h2,
.margin-summary p,
.margin-summary div {
  margin: 0;
}

.note-article-body .margin-summary h2 {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.margin-summary div {
  display: grid;
  gap: 7px;
}

.margin-summary div span {
  color: var(--rust);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.margin-summary p {
  color: var(--muted-warm);
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.6;
  text-align: left;
}

.note-article-body {
  display: grid;
  grid-template-columns: minmax(210px, 270px) minmax(0, 760px);
  column-gap: clamp(38px, 3.5vw, 52px);
  align-items: start;
  justify-content: center;
  width: var(--page-shell);
  margin: 26px auto 0;
  padding-top: 22px;
  padding-bottom: 28px;
  border-top: 1px solid var(--rule);
}

.note-article-body.has-margin-notes {
  position: relative;
  display: block;
  width: 100%;
  padding-right: var(--edge);
  padding-left: calc(var(--rail) + clamp(38px, 3.5vw, 52px));
  background: linear-gradient(
    to right,
    var(--cream) 0,
    var(--cream) calc(var(--rail) - 1px),
    var(--rule-warm) calc(var(--rail) - 1px),
    var(--rule-warm) var(--rail),
    transparent var(--rail)
  );
}

.note-article-body--plain,
.note-article-body.is-marks-hidden {
  grid-template-columns: minmax(0, 760px);
}

.note-article-body.has-margin-notes.is-marks-hidden {
  display: block;
  padding-right: 0;
  padding-left: 0;
  width: var(--page-shell);
  background: transparent;
}

.note-article-body.has-margin-notes.is-marks-hidden > :not(.margin-summary):not(.margin-note-group) {
  margin-right: auto;
  margin-left: auto;
}

.note-article-body > * {
  grid-column: 2;
  min-width: 0;
}

.note-article-body > .margin-summary {
  grid-column: 1;
}

.note-article-body.has-margin-notes > :not(.margin-summary):not(.margin-note-group) {
  width: min(100%, 760px);
}

.note-article-body--plain > *,
.note-article-body.is-marks-hidden > * {
  grid-column: 1;
}

.note-article-body.is-marks-hidden .margin-note-group {
  display: none;
}

.note-article-body.is-marks-hidden .margin-summary {
  display: none;
}

.note-article-body.has-margin-notes:not(.is-marks-hidden) [data-margin-range] {
  position: relative;
}

.note-article-body.has-margin-notes:not(.is-marks-hidden) [data-margin-range]::before {
  position: absolute;
  top: -11px;
  bottom: -11px;
  left: -22px;
  width: 8px;
  border-left: 1px solid color-mix(in srgb, var(--rust) 58%, transparent);
  content: "";
  pointer-events: none;
}

.note-article-body.has-margin-notes:not(.is-marks-hidden) [data-margin-range-start]::before {
  border-top: 1px solid color-mix(in srgb, var(--rust) 58%, transparent);
}

.note-article-body.has-margin-notes:not(.is-marks-hidden) [data-margin-range-end]::before {
  border-bottom: 1px solid color-mix(in srgb, var(--rust) 58%, transparent);
}

.note-article-body > p,
.note-article-body > div:not(.margin-note-group),
.note-article-body > ul,
.note-article-body > ol {
  margin: 0 0 21px;
  color: var(--body);
  font-size: 17px;
  line-height: 1.78;
  text-wrap: pretty;
}

.note-article-body > p:empty,
.note-article-body > div:empty {
  display: none;
}

.note-article-body h2,
.note-article-body h3 {
  margin: 37px 0 15px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.016em;
  line-height: 1.2;
  text-wrap: pretty;
}

.note-article-body > h2:first-child,
.note-article-body > h3:first-child {
  margin-top: 0;
}

.note-article-body a {
  color: var(--rust);
  border-bottom: 1px solid var(--rule-warm);
}

.note-article-body a:hover {
  border-bottom-color: currentColor;
}

.note-article-body strong {
  color: var(--ink);
  font-weight: 600;
}

.note-article-body blockquote {
  margin: 25px 0 31px;
  padding: 21px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 30px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.3;
  text-wrap: pretty;
}

.note-article-body pre {
  max-width: 100%;
  margin: 4px 0 27px;
  padding: 2px 0 2px 20px;
  border-left: 2px solid var(--rust);
  overflow-x: auto;
  color: var(--body);
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.8;
  white-space: pre-wrap;
}

.note-article-body code {
  font-family: var(--mono);
  font-size: 0.88em;
}

.note-article-body > .field-note-table-wrap {
  max-width: 100%;
  margin: 12px 0 32px;
  overflow-x: auto;
  color: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overscroll-behavior-inline: contain;
}

.note-article-body table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.note-article-body caption {
  padding: 12px 0 0;
  color: var(--muted-warm);
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.45;
  text-align: left;
  caption-side: bottom;
}

.note-article-body th,
.note-article-body td {
  padding: 12px 17px 12px 0;
  border-bottom: 1px solid var(--rule);
  text-align: left;
  vertical-align: top;
}

.note-article-body th {
  color: var(--rust);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.note-article-body > ul,
.note-article-body > ol {
  padding-left: 23px;
}

.note-article-body li + li {
  margin-top: 8px;
}

.note-article-body figure {
  margin: 23px 0 32px;
}

.note-article-body figure picture,
.note-article-body figure img,
.note-article-body > picture,
.note-article-body > picture img {
  display: block;
  width: 100%;
  height: auto;
}

.note-article-body img[style*="width"] {
  width: revert;
  max-width: 100%;
}

.note-article-body figcaption {
  margin-top: 10px;
  padding-top: 9px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

.field-note-video-frame {
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--frame);
}

.field-note-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.model-perspective {
  padding: 22px;
  border: 1px solid var(--rule);
  background: var(--cream);
}

.model-perspective::before {
  content: attr(data-model);
  display: block;
  margin-bottom: 13px;
  color: var(--rust);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.margin-note-group {
  position: absolute;
  left: var(--edge);
  width: calc(var(--rail) - var(--edge) - 30px);
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid var(--rule-warm);
}

.margin-note-group--section {
  margin-top: 0;
}

.margin-note-group--quote {
  margin-top: 0;
}

.margin-note + .margin-note {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--rule-warm);
}

.note-article-body .margin-note__label {
  margin: 0 0 7px;
  color: var(--rust);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.margin-note p {
  margin: 0;
  color: var(--body);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.72;
}

.note-detail-footer {
  margin-top: 0;
  padding: 41px 0 58px;
  border-top: 2px solid var(--ink);
  background: var(--paper);
}

.note-detail-footer__inner {
  padding-inline: var(--body-indent) 0;
}

.note-tag-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 15px;
}

.note-tag-links a {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.note-tag-links a:hover {
  color: var(--rust);
}

.note-related {
  margin-top: 34px;
}

.note-related h2 {
  margin: 0;
  color: var(--body);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.note-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 17px;
}

.note-related__grid a {
  display: grid;
  align-content: start;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
}

.note-related__grid time {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.note-related__grid strong {
  margin-top: 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  text-wrap: pretty;
}

.note-related__grid a:hover strong {
  color: var(--rust);
}

.note-author {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 25px;
  align-items: center;
  margin-top: 43px;
  padding-top: 26px;
  border-top: 1px solid var(--rule);
}

.note-author picture {
  display: block;
}

.note-author__portrait {
  width: 72px;
  height: 72px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 34%;
}

.note-author__copy p {
  max-width: 920px;
  margin: 0;
  color: var(--muted-warm);
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  line-height: 1.5;
  text-wrap: pretty;
}

.note-author__copy p + p {
  margin-top: 10px;
}

.contact-head {
  padding-bottom: 22px;
  border-bottom: 2px solid var(--ink);
}

.contact-head h1 {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.85fr);
  gap: 80px;
  margin-top: 47px;
}

.contact-copy > p {
  margin: 0 0 17px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.75;
  text-wrap: pretty;
}

.contact-copy .contact-close {
  margin-top: 28px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.35;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.contact-aside .media-frame img {
  object-position: center 28%;
}

.contact-aside .media-frame {
  border-radius: 0;
}

.contact-facts {
  margin-top: 23px;
}

.contact-facts dd {
  font-family: var(--serif);
  font-size: 16px;
}

@media (min-width: 561px) and (max-width: 900px) {
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

@media (max-width: 900px) {
  :root {
    --page-shell: calc(100% - 40px);
  }

  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

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

  .home-grid > * {
    grid-column: 1;
    grid-row: auto;
  }

  .home-intro {
    order: 1;
    padding: 48px 20px 2px;
  }

  .home-latest {
    order: 2;
  }

  .home-work {
    order: 3;
    padding: 38px 20px 64px;
  }

  .home-colophon {
    order: 4;
  }

  .home-rail {
    padding: 24px 20px;
    border-top: 1px solid var(--rule-warm);
    border-right: 0;
    border-bottom: 1px solid var(--rule-warm);
  }

  .home-intro h1 {
    font-size: clamp(66px, 14vw, 112px);
  }

  .home-intro__columns {
    grid-template-columns: minmax(0, 1fr);
    gap: 23px;
  }

  .home-colophon h2 {
    padding-top: 0;
    border-top: 0;
  }

  .editorial-head,
  .field-notes-head,
  .term-head,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 35px;
  }

  .editorial-head__aside,
  .photography-head .editorial-head__aside {
    text-align: left;
  }

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

  .editorial-category-page .category-facts > div:nth-child(2) {
    border-right: 0;
  }

  .editorial-category-page .category-facts > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--rule);
  }

  .category-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
  }

  .category-overview,
  .category-work {
    grid-template-columns: minmax(0, 1fr);
    gap: 31px;
  }

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

  .category-card__head {
    min-height: 48px;
  }

  .feature-row,
  .feature-row--reverse,
  .case-study,
  .case-study--reverse {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .feature-row--reverse .feature-row__copy,
  .feature-row--reverse .feature-row__media,
  .case-study--reverse .case-study__copy,
  .case-study--reverse .case-study__media {
    order: initial;
  }

  .feature-row__copy,
  .feature-row--reverse .feature-row__copy {
    width: 100%;
    justify-self: stretch;
  }

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

  .note-row {
    grid-template-columns: 42px 105px minmax(0, 1fr) 58px;
  }

  .note-row--head span:nth-child(4),
  .note-row__tags {
    display: none;
  }
}

@media (max-width: 560px) {
  :root {
    --page-shell: calc(100% - 36px);
  }

  .site-header__bar {
    min-height: 55px;
  }

  .home-intro {
    padding-inline: 18px;
  }

  .home-role {
    align-items: flex-start;
  }

  .home-role p {
    line-height: 1.6;
  }

  .home-quote blockquote {
    font-size: 25px;
  }

  .home-rail,
  .home-work {
    padding-inline: 18px;
  }

  .section-heading {
    align-items: flex-end;
  }

  .section-heading h2 {
    max-width: 230px;
    line-height: 1.15;
  }

  .work-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .preview-placeholder__actions {
    display: grid;
  }

  .button {
    justify-content: center;
  }

  .editorial-page {
    padding-top: 22px;
    padding-bottom: 65px;
  }

  .breadcrumbs ol {
    margin-bottom: 28px;
  }

  .editorial-head h1,
  .contact-head h1 {
    margin-bottom: 24px;
    font-size: clamp(58px, 17vw, 84px);
  }

  .web-page .editorial-head h1 {
    font-size: clamp(52px, 15vw, 70px);
  }

  .editorial-category-page .category-facts {
    grid-template-columns: minmax(0, 1fr);
  }

  .editorial-category-page .category-facts > div,
  .editorial-category-page .category-facts > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .editorial-category-page .category-facts > div:last-child {
    border-bottom: 0;
  }

  .kit-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .category-grid,
  .featured-list,
  .case-studies,
  .category-work-list,
  .category-stills,
  .category-related {
    margin-top: 55px;
  }

  .category-overview {
    margin-top: 34px;
  }

  .category-work {
    padding: 33px 0;
  }

  .category-stills__grid,
  .category-related__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-row,
  .case-study {
    padding: 32px 0;
  }

  .case-study__media--gallery {
    grid-template-columns: minmax(0, 1fr);
  }

  .case-study__media--gallery .media-frame:first-child:nth-last-child(odd) {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .album-head h1 {
    font-size: clamp(52px, 15vw, 76px);
  }

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

  .album-facts > div {
    padding-inline: 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .album-facts > div:last-child {
    border-bottom: 0;
  }

  .album-description {
    font-size: 22px;
  }

  .album-grid,
  .album-related__grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .album-grid {
    gap: 18px;
  }

  .album-related {
    margin-top: 55px;
  }

  .album-lightbox {
    padding: 14px;
  }

  .album-lightbox__bar p {
    max-width: 220px;
    line-height: 1.5;
  }

  .album-lightbox__nav {
    gap: 8px;
  }

  .album-lightbox__nav button {
    padding-inline: 9px;
  }

  .note-controls {
    grid-template-columns: minmax(0, 1fr);
    gap: 19px;
  }

  .note-controls__status {
    padding: 0;
  }

  .term-head {
    gap: 34px;
  }

  .term-head__summary {
    font-size: 21px;
  }

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

  .term-head__actions .button {
    justify-content: center;
  }

  .term-nearby {
    margin-top: 36px;
  }

  .term-notes {
    margin-top: 40px;
  }

  .note-row--head {
    display: none;
  }

  .note-row {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 6px 14px;
  }

  .note-row time,
  .note-row__read,
  .note-row__tags {
    display: none;
  }

  .contact-grid {
    gap: 42px;
    margin-top: 35px;
  }

  .contact-actions {
    display: grid;
  }
}

@media (max-width: 980px) {
  .note-detail-page {
    padding-top: 34px;
  }

  .note-detail-head {
    margin-top: 37px;
  }

  .note-article-body,
  .note-article-body.has-margin-notes {
    display: grid;
    grid-template-columns: minmax(0, 760px);
    width: var(--page-shell);
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
    background: transparent;
  }

  .note-article-body > * {
    grid-column: 1;
  }

  .margin-note-group {
    position: static;
    width: auto;
    margin: 7px 0 20px;
    padding: 14px 16px;
    border-top: 1px solid var(--rule-warm);
    border-left: 2px solid var(--rust);
    background: var(--cream);
  }

  .margin-summary {
    position: static;
    width: auto;
    margin: 0 0 20px;
    padding: 14px 16px;
    border-left: 2px solid var(--rust);
    background: var(--cream);
  }

  .margin-note-group--section,
  .margin-note-group--quote {
    margin-top: 7px;
  }

  .note-article-body.has-margin-notes [data-margin-range]::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .note-detail-page {
    padding: 22px 0 0;
  }

  .note-detail-head {
    margin-top: 30px;
    text-align: left;
  }

  .note-detail-kicker {
    margin-bottom: 15px;
  }

  .note-detail-head h1 {
    font-size: clamp(44px, 13vw, 59px);
    line-height: 0.99;
  }

  .note-detail-summary {
    margin-top: 21px;
    font-size: 20px;
  }

  .note-detail-meta {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    margin-top: 24px;
  }

  .note-detail-meta > span[aria-hidden="true"] {
    display: none;
  }

  .margin-toggle {
    margin-top: 17px;
  }

  .note-detail-hero {
    margin-top: 36px;
  }

  .note-detail-hero figcaption {
    display: grid;
    gap: 4px;
  }

  .margin-summary {
    gap: 8px;
    padding: 13px 14px;
  }

  .note-article-body {
    margin-top: 18px;
    padding-top: 18px;
    padding-bottom: 22px;
  }

  .note-article-body > p,
  .note-article-body > div:not(.margin-note-group),
  .note-article-body > ul,
  .note-article-body > ol {
    font-size: 16px;
    line-height: 1.74;
  }

  .note-article-body h2,
  .note-article-body h3 {
    margin-top: 32px;
    font-size: 27px;
  }

  .note-article-body blockquote {
    padding: 18px 0;
    font-size: 26px;
  }

  .note-article-body > .field-note-table-wrap {
    margin: 9px 0 28px;
  }

  .margin-note-group {
    padding: 13px 14px;
  }

  .note-detail-footer {
    margin-top: 0;
    padding: 31px 0 40px;
  }

  .note-detail-footer__inner {
    padding-inline: 0;
  }

  .note-related__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .note-author {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    margin-top: 36px;
  }

  .note-author__portrait {
    width: 58px;
    height: 58px;
  }

  .note-author__copy p {
    font-size: 15px;
  }
}

/* Project details and preserved web archive ------------------------------ */

.project-detail-page .editorial-head > div:first-child > p {
  max-width: 62ch;
}

.project-visit {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-top: 15px;
  padding: 11px 0;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-visit span {
  color: var(--rust);
}

.project-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 18px;
  margin-top: 32px;
}

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

.category-stills__grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.project-media-card {
  display: block;
  min-width: 0;
  color: var(--ink);
}

button.project-media-card,
.category-still {
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.category-still {
  display: block;
  overflow: hidden;
}

.category-still .media-frame img,
.category-still .media-frame video {
  transition: transform 220ms ease;
}

.category-still:hover .media-frame img,
.category-still:hover .media-frame video,
.category-still:focus-visible .media-frame img,
.category-still:focus-visible .media-frame video {
  transform: scale(1.02);
}

.project-media-card__meta {
  display: grid;
  grid-template-columns: 27px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: baseline;
  padding-top: 11px;
  border-top: 1px solid transparent;
}

.project-media-card__meta em,
.project-media-card__meta span {
  color: var(--rust);
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.project-media-card__meta strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.2;
}

.project-media-card:hover .project-media-card__meta strong,
.project-media-card:focus-visible .project-media-card__meta strong {
  color: var(--rust);
}

.project-lightbox__stage > [hidden] {
  display: none !important;
}

.project-lightbox__stage video,
.project-lightbox__stage iframe {
  display: block;
  width: min(100%, 1280px);
  height: auto;
  max-height: calc(100dvh - 160px);
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
  object-fit: contain;
}

.archive-head {
  align-items: end;
}

.archive-concepts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 64px;
  padding-top: 20px;
  border-top: 2px solid var(--ink);
}

.archive-concept {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--body);
  text-align: left;
  cursor: pointer;
}

.archive-concept .media-frame {
  opacity: 0.62;
  filter: grayscale(0.5);
  transition: opacity 180ms ease, filter 180ms ease;
}

.archive-concept:hover .media-frame,
.archive-concept:focus-visible .media-frame,
.archive-concept.is-active .media-frame {
  opacity: 1;
  filter: none;
}

.archive-concept__meta {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 4px 10px;
  align-items: baseline;
  margin-top: 13px;
}

.archive-concept__meta em,
.archive-concept__meta span {
  color: var(--rust);
  font-family: var(--mono);
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.archive-concept__meta span {
  grid-column: 2;
  color: var(--muted);
}

.archive-concept__meta strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.archive-concept.is-active .archive-concept__meta strong {
  color: var(--rust);
}

.archive-concept__description {
  display: block;
  margin: 11px 0 0 35px;
  color: var(--muted-warm);
  font-size: 12px;
  line-height: 1.55;
}

.archive-viewer {
  margin-top: 78px;
  padding-bottom: 16px;
}

.archive-viewer__toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  padding: 16px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--rule);
}

.archive-viewer__toolbar > div {
  display: grid;
  grid-template-columns: auto auto;
  gap: 4px 13px;
  align-items: baseline;
}

.archive-viewer__toolbar p,
.archive-viewer__toolbar span,
.archive-viewer__toolbar a {
  margin: 0;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.archive-viewer__toolbar p {
  grid-column: 1 / -1;
  color: var(--muted);
}

.archive-viewer__toolbar h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}

.archive-viewer__toolbar span,
.archive-viewer__toolbar a span {
  color: var(--rust);
}

.archive-viewer__toolbar > a {
  flex: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--ink);
}

.archive-viewer__frame {
  min-height: 680px;
  padding: 12px;
  background: var(--frame);
  border-bottom: 1px solid var(--rule);
}

.archive-viewer__frame iframe {
  display: block;
  width: 100%;
  height: min(78vh, 900px);
  min-height: 660px;
  border: 0;
  background: #fff;
}

@media (max-width: 1000px) {
  .project-media-grid,
  .archive-concepts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .project-media-grid,
  .archive-concepts {
    grid-template-columns: 1fr;
  }

  .archive-concepts {
    gap: 34px;
    margin-top: 42px;
  }

  .archive-concept__description {
    margin-left: 35px;
  }

  .archive-viewer {
    margin-top: 58px;
  }

  .archive-viewer__toolbar {
    display: grid;
    align-items: start;
  }

  .archive-viewer__toolbar > a {
    justify-self: start;
  }

  .archive-viewer__frame,
  .archive-viewer__frame iframe {
    min-height: 520px;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --media-transition: 1ms linear;
  }

  html {
    scroll-behavior: auto;
  }
}
