:root {
  --background: #eeeeee;
  --foreground: #050505;
  --accent: #BF1E2D;
  --line: #080808;
  --page-margin: 0px;
  --grid-gutter: 12px;
  --row-height: 42px;
  --line-overhang: 16vw;
  --footer-height: clamp(8rem, 28vw, 17rem);
  --nav-height: clamp(8rem, 28vw, 17rem);
  --text-size: clamp(1.05rem, 1.34vw, 1.45rem);
  --text-line-gap: 12px;
  --text-offset-y: 8px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow: hidden;
  background: var(--background);
  color: var(--foreground);
  font-family: "helvetica-neue-world", sans-serif;
  font-size: var(--text-size);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

a {
  color: inherit;
  text-decoration: none;
}

.project-list {
  height: calc(100vh - var(--footer-height));
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.45rem 0 3rem;
  scrollbar-width: none;
}

.project-list::-webkit-scrollbar {
  display: none;
}

.project-list--single {
  display: flex;
  align-items: flex-start;
}

.project-row {
  position: relative;
  margin-bottom: 40px;
  margin-top: 12px;
}

.project-row__link::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  background-image: var(--hover-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.project-row:hover .project-row__link::before,
.project-row:focus-within .project-row__link::before {
  opacity: 0.4;
}

.project-row__link {
  position: relative;
  z-index: 1;
  display: block;
  width: calc(100vw + (var(--line-overhang) * 2));
  margin-left: calc(var(--line-overhang) * -1);
  transform: rotate(-1.5deg);
  transform-origin: center top;
}

.project-row__item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(24, minmax(0, 1fr));
  column-gap: var(--grid-gutter);
  align-items: end;
  width: calc(100vw - (var(--page-margin) * 2));
  min-height: var(--row-height);
  margin: 0 calc(var(--page-margin) + var(--line-overhang));
  border-bottom: 1px solid var(--line);
  padding: 0 20px var(--text-line-gap);
}

.project-row__cell {
  position: relative;
  z-index: 1;
  min-width: 0;
  line-height: 1;
  white-space: nowrap;
  transform: translateY(var(--text-offset-y));
}

.project-row__text {
  display: block;
}

.project-row__thumb,
.mobile-menu-toggle,
.mobile-menu-close,
.mobile-menu-meta,
.footer-nav__meta-link {
  display: none;
}

.project-row__category {
  grid-column: 1 / 4;
}

.project-row__date {
  grid-column: 4 / 8;
}

.project-row__title,
.project-row__curation {
  grid-column: 8 / 15;
}

.project-row__person {
  grid-column: 15 / 21;
}

.project-row__location {
  grid-column: 21 / 25;
}

.project-detail {
  display: grid;
  grid-template-columns: repeat(24, minmax(0, 1fr));
  column-gap: var(--grid-gutter);
  height: calc(100vh - var(--footer-height));
  overflow: hidden;
  padding: 0 0px;
}

.project-detail__gallery {
  position: relative;
  grid-column: 1 / 9;
  height: 100%;
  margin: 0 -20px 0 0;
  overflow-y: auto;
  scrollbar-width: none;
}

.project-detail__gallery::-webkit-scrollbar,
.project-detail__content::-webkit-scrollbar {
  display: none;
}

.project-detail__figure,
.project-detail__end-image {
  margin: 0;
}

.project-detail__figure {
  position: relative;
}

.project-detail__figure img {
  display: block;
  width: 100%;
  min-height: calc(100vh - var(--footer-height));
  object-fit: cover;
}

.project-detail__credit {
  position: absolute;
  bottom: 8px;
  left: 12px;
  z-index: 2;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
}

.project-detail__credit--white {
  color: #fff;
}

.project-detail__credit--black {
  color: #000;
}

.project-detail__scroll-cue {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2.4px solid currentColor;
  border-radius: 50%;
  color: #eeeeee;
  text-transform: none;
  pointer-events: none;
  opacity: 1;
  transition: opacity 160ms ease;
}

.project-detail__scroll-cue.is-hidden {
  opacity: 0;
}

.project-detail__scroll-cue svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-detail__scroll-cue--light {
  color: #eeeeee;
}

.project-detail__scroll-cue--dark {
  color: #000;
}

.project-detail__back {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--foreground);
  font-size: 32px;
  line-height: 1;
  text-transform: none;
}

.project-detail__content {
  grid-column: 9 / 25;
  height: 100%;
  overflow-y: auto;
  padding: 28px 0 100px 40px;
  text-transform: none;
  scrollbar-width: none;
}

.project-detail h1 {
  margin: 0 0 44px;
  font-size: clamp(44px, 4.35vw, 72px);
  font-weight: 800;
  line-height: 0.92;
  text-transform: uppercase;
}

.project-detail h2,
.project-detail p,
.project-detail ul {
  margin: 0;
}

.project-detail__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 40px;
  margin-bottom: 72px;
}

.project-detail h2 {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
}

.project-detail__facts p,
.project-detail__people li,
.project-detail__people p {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.project-detail__map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 400;
}

.project-detail__map::before {
  content: "⌖";
  font-size: 20px;
  line-height: 1;
}

.project-detail__body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  column-gap: 40px;
}

.project-detail__description {
  max-width: 760px;
}

.project-detail__intro {
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.project-detail__description p {
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.08;
}

.project-detail__people {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.project-detail__people ul {
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}

.project-detail__end-image {
  margin-top: auto;
  padding-top: 40px;
}

.project-detail__end-image img {
  display: block;
  width: 100%;
  height: auto;
}

.archive-index {
  height: calc(100vh - var(--footer-height));
  overflow: hidden;
  padding: 24px 0 0;
}

.archive-index__track {
  display: flex;
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  width: calc(100% + 80px);
  margin-left: -48px;
  padding: 0 0 34px;
  transform: rotate(-1.5deg);
  transform-origin: center top;
  scrollbar-width: none;
}

.archive-index__track::-webkit-scrollbar {
  display: none;
}

.archive-index__columns {
  display: none;
}

.archive-card {
  flex: 0 0 clamp(330px, 24vw, 430px);
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.archive-card:first-child {
  border-left: 1px solid var(--line);
}

.archive-card:first-child a {
  padding-left: 56px;
}

.archive-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 560px;
  padding: 0 16px 14px;
}

.archive-card__image {
  height: clamp(260px, 34vh, 360px);
  margin: 0 -16px 16px;
  overflow: hidden;
}

.archive-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.archive-card__category {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
}

.archive-card h2 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.archive-card__text {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.05;
  text-transform: none;
}

.archive-card__date {
  margin: auto 0 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.archive-detail {
  height: calc(100vh - var(--footer-height));
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 80px;
  scrollbar-width: none;
}

.archive-detail::-webkit-scrollbar,
.archive-detail__slider::-webkit-scrollbar {
  display: none;
}

.archive-detail__gallery {
  position: relative;
  padding: 24px;
}

.archive-detail__slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.archive-detail__slide {
  flex: 0 0 clamp(340px, 44vw, 720px);
  height: 310px;
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
}

.archive-detail__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-detail__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2.4px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: #eeeeee;
  cursor: pointer;
  transform: translateY(-50%);
}

.archive-detail__arrow svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.archive-detail__arrow--prev {
  left: 32px;
}

.archive-detail__arrow--next {
  right: 32px;
}

.archive-detail__content {
  display: grid;
  grid-template-columns: repeat(24, minmax(0, 1fr));
  column-gap: var(--grid-gutter);
  padding: 0 24px 60px;
}

.archive-detail__meta {
  grid-column: 1 / 11;
}

.archive-detail__text {
  grid-column: 11 / 25;
  max-width: 960px;
  text-transform: none;
}

.archive-detail h1 {
  margin: 0 0 8px;
  font-size: clamp(44px, 4.2vw, 66px);
  font-weight: 800;
  line-height: 0.92;
}

.archive-detail__tag {
  margin: 0 0 48px;
  font-size: 14px;
  font-weight: 400;
}

.archive-detail__facts {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 34px 24px;
  margin: 0;
}

.archive-detail__facts div {
  grid-column: span 3;
}

.archive-detail__facts div:nth-child(3) {
  grid-column: span 4;
}

.archive-detail dt,
.archive-detail dd,
.archive-detail__text p {
  margin: 0;
}

.archive-detail dt {
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
}

.archive-detail dd {
  margin-bottom: 32px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
}

.archive-detail dd span {
  display: block;
}

.archive-detail__text p {
  margin-bottom: 24px;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.08;
}

.archive-detail__text p:first-child {
  font-weight: 800;
  text-transform: uppercase;
}

.page {
  height: calc(100vh - var(--footer-height));
  overflow-y: auto;
  overflow-x: hidden;
  padding: clamp(1rem, 3vw, 3rem);
  scrollbar-width: none;
}

.page::-webkit-scrollbar {
  display: none;
}

.page--text {
  max-width: 72rem;
}

.page h1 {
  margin: 0 0 2rem;
  font-size: clamp(2.5rem, 7vw, 8rem);
  line-height: 0.9;
}

.page p {
  max-width: 56rem;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.15;
  text-transform: none;
}

.about-page {
  height: calc(100vh - var(--footer-height));
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--accent);
  scrollbar-width: none;
}

.about-page::-webkit-scrollbar {
  display: none;
}

.about-hero {
  position: relative;
  min-height: 42vh;
  overflow: hidden;
  background: var(--accent);
}

.about-hero__image {
  display: block;
  width: 100%;
  height: 70vh;
  margin-top: -40px;
  object-fit: cover;
  /*filter: grayscale(1);*/
  /*mix-blend-mode: multiply*/
}

.about-hero__shape {
  position: absolute;
  top: 12%;
  right: 0;
  width: min(46vw, 700px);
  height: auto;
  z-index: 1;
}

.about-hero__title {
  position: absolute;
  right: 20px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 38px;
  font-weight: 800;
  z-index: 3;
}

.about-hero__title h1 {
  margin: 0;
  font: inherit;
}

.about-hero__title span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid currentColor;
  border-radius: 50%;
  line-height: 1;
}

.about-hero__title svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-intro {
  position: relative;
  min-height: 78vh;
  padding: 0 20px 9rem;
  overflow: hidden;
  background: var(--accent);
}

.about-intro__small {
  position: relative;
  z-index: 12;
  max-width: 46rem;
  margin: 60px 0 60px;
  line-height: 1.2;
  font-size: 22px;
}

.about-intro h2 {
  position: relative;
  z-index: 12;
  width: 100%;
  margin: 0 0 200px;
  font-size: clamp(2.2rem, 3.35vw, 38px);
  font-weight: 800;
  line-height: 1.04;
}

.about-intro__image {
  position: relative;
  z-index: 2;
  display: block;
  width: min(40vw, 520px);
  height: 160px;
  margin: 0 auto;
  margin-bottom: 120px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  cursor: ns-resize;
}

.about-intro__image::-webkit-scrollbar {
  display: none;
}

.about-intro__image img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
}

.about-copy {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  width: calc(100% + 160px);
  margin-left: -80px;
  padding: 120px 100px 120px;
  background: transparent;
  isolation: isolate;
}

.about-copy::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: var(--background);
  transform: rotate(-2deg);
  transform-origin: center top;
}

.about-copy > div {
  align-self: start;
}

.about-copy p {
  margin: 0;
  align-items: flex-start;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: none;
}

.about-red {
  background: var(--accent);
}

.about-red--image {
  min-height: 44vh;
  padding: 0;
}

.about-red--image img {
  display: block;
  width: 100%;
  height: 64vh;
  object-fit: cover;
  mix-blend-mode: color-burn;
  margin-top: -160px;
}

.about-red--statement {
  padding: 100px 20px 0;
}

.about-red--statement > div:first-child {
  max-width: 64rem;
}

.about-red--statement p {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.about-red__bottom-image {
  margin: 0 -20px;
}

.about-red__bottom-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-logo-section {
  padding: 4.5rem 40px 12rem 20px;
  background: var(--background);
}

.about-logos + .about-logos {
  margin-top: 5rem;
}

.about-logos h2 {
  margin: 0 0 2rem;
  font-size: clamp(14px, 1vw, 18px);
  font-weight: 800;
  line-height: 1;
}

.about-logos__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 40px;
  row-gap: 42px;
  align-items: center;
}

.about-logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.about-logos__item img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  mix-blend-mode: darken;
}

.site-footer {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 40;
  height: var(--footer-height);
  overflow: hidden;
  background: var(--background);
}

.template-about .site-footer,
.site-footer--about {
  background: var(--accent);
}

.brand-mark {
  position: absolute;
  right: 1rem;
  bottom: -36%;
  left: 1rem;
  width: calc(100% - 2rem);
  height: auto;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.footer-nav {
  position: absolute;
  inset: auto 0 0;
  display: grid;
  grid-template-columns: repeat(4, max-content);
  grid-template-rows: 1fr auto;
  align-items: center;
  justify-content: space-between;
  row-gap: 3rem;
  min-height: var(--nav-height);
  padding: 1.4rem clamp(1.25rem, 3vw, 3rem) 2rem;
  background: var(--accent);
  color: var(--foreground);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.footer-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  line-height: 0.95;
}

.footer-nav__main-link {
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 800;
}

.footer-nav__main-link--projects,
.footer-nav__meta-link--instagram {
  grid-column: 1;
}

.footer-nav__main-link--about,
.footer-nav__meta-link--stockwerk {
  grid-column: 2;
}

.footer-nav__main-link--archive,
.footer-nav__meta-link--impressum {
  grid-column: 3;
}

.footer-nav__language {
  grid-column: 4;
  color: var(--background);
}

.footer-nav__meta-link {
  display: flex;
  grid-row: 2;
  align-self: end;
  justify-self: start;
  justify-content: flex-start;
  font-size: clamp(1rem, 1.35vw, 1.4rem);
  font-weight: 800;
  line-height: 1;
}

.site-footer:hover .brand-mark,
.site-footer:focus-within .brand-mark {
  opacity: 0;
}

.site-footer:hover .footer-nav,
.site-footer:focus-within .footer-nav {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  :root {
    --footer-height: 140px;
    --nav-height: 140px;
    --mobile-header-height: 60px;
    --mobile-footer-space: 120px;
    --mobile-project-row-height: 160px;
    --mobile-project-meta-gap: 4px;
    --mobile-project-gallery-height: 200px;
    --mobile-project-content-padding: 20px;
    --mobile-project-footer-space: 40px;
    --mobile-project-text-bottom-space: 18px;
    --mobile-archive-card-image-height: 166px;
    --mobile-archive-card-height: 390px;
    --mobile-archive-detail-gallery-height: 240px;
    --mobile-archive-detail-bottom-space: 18px;
    --page-margin: 12px;
    --grid-gutter: 8px;
    --row-height: 36px;
    --line-overhang: 22vw;
    --text-size: 16px;
    --text-line-gap: 9px;
    --text-offset-y: 6px;
  }

  .mobile-menu-toggle {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 60;
    display: flex;
    justify-content: flex-end;
    height: var(--mobile-header-height);
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 28px 14px 0;
    background: var(--background);
    color: var(--foreground);
    cursor: pointer;
    font: inherit;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
  }

  body {
    overflow-y: hidden;
    overflow-x: hidden;
  }

  .project-list {
    height: 100dvh;
    overflow-x: hidden;
    padding: var(--mobile-header-height) 0 var(--mobile-footer-space);
  }

  .page {
    height: 100dvh;
    padding: calc(var(--mobile-header-height) + 16px) 14px var(--mobile-footer-space);
  }

  .project-row {
    margin: 0;
  }

  .project-row__link {
    display: block;
    width: 100%;
    min-height: var(--mobile-project-row-height);
    margin-left: 0;
    transform: none;
  }

  .project-row__link::before {
    display: none;
  }

  .project-row__thumb {
    position: absolute;
    top: 32px;
    right: 14px;
    z-index: 2;
    display: block;
    width: 36px;
    height: 36px;
    overflow: hidden;
  }

  .project-row__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .project-row__link .project-row__item + .project-row__item {
    display: none;
  }

  .project-row__item {
    grid-template-columns: repeat(24, minmax(0, 1fr));
    grid-template-rows: 1fr auto auto;
    row-gap: var(--mobile-project-meta-gap);
    width: calc(100vw - (var(--page-margin) * 2));
    min-height: var(--mobile-project-row-height);
    margin: 0 var(--page-margin);
    padding: 30px 0 12px;
    column-gap: 8px;
    align-items: end;
  }

  .project-row__category {
    grid-column: 1 / 12;
    grid-row: 2;
  }

  .project-row__date {
    grid-column: 12 / 25;
    grid-row: 2;
    text-align: right;
  }

  .project-row__title,
  .project-row__curation {
    grid-column: 1 / 21;
    grid-row: 1;
    align-self: start;
    margin-bottom: 0;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
  }

  .project-row__person {
    grid-column: 1 / 12;
    grid-row: 3;
  }

  .project-row__location {
    display: block;
    grid-column: 12 / 25;
    grid-row: 3;
    text-align: right;
  }

  .project-row__cell {
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.05;
    white-space: normal;
    transform: none;
  }

  .project-row:not(.project-row--single-person) .project-row__person {
    display: none;
  }

  .project-detail {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    overflow-y: hidden;
    overflow-x: hidden;
    padding: var(--mobile-header-height) 0 var(--mobile-project-footer-space);
    scrollbar-width: none;
  }

  .project-detail__gallery {
    display: flex;
    flex: 0 0 var(--mobile-project-gallery-height);
    height: var(--mobile-project-gallery-height);
    margin: 0;
    overflow-x: auto;
    overflow-y: hidden;
    border-bottom: 1px solid var(--line);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .project-detail__figure {
    display: block;
    flex: 0 0 100%;
    width: 100%;
    vertical-align: initial;
    scroll-snap-align: start;
  }

  .project-detail__figure img {
    width: 100%;
    height: var(--mobile-project-gallery-height);
    min-height: 0;
    object-fit: cover;
  }

  .project-detail__back {
    display: none;
  }

  .project-detail__content {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: var(--mobile-project-content-padding) 14px var(--mobile-project-text-bottom-space);
    scrollbar-width: none;
  }

  .project-detail h1 {
    margin-bottom: 24px;
    font-size: 44px;
    line-height: 0.92;
  }

  .project-detail__facts,
  .project-detail__body {
    display: block;
  }

  .project-detail__facts > div,
  .project-detail__description {
    margin-bottom: 24px;
  }

  .project-detail h2 {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .project-detail__facts p,
  .project-detail__people li,
  .project-detail__people p,
  .project-detail__map {
    font-size: 18px;
  }

  .project-detail__description p {
    font-size: 20px;
    line-height: 1.08;
  }

  .project-detail__intro {
    font-size: 18px;
  }

  .project-detail__people ul {
    margin-bottom: 32px;
  }

  .project-detail__end-image {
    max-width: none;
    margin-top: 24px;
    padding-top: 0;
  }

  .archive-index {
    height: 100dvh;
    overflow: hidden;
    padding: var(--mobile-header-height) 0 var(--mobile-footer-space);
  }

  .archive-index__track {
    display: none;
  }

  .archive-index__columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: 100%;
    overflow: hidden;
    border-top: 1px solid var(--line);
  }

  .archive-index__column {
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
  }

  .archive-index__column::-webkit-scrollbar {
    display: none;
  }

  .archive-index__column:first-child {
    border-right: 1px solid var(--line);
  }

  .archive-card {
    min-height: var(--mobile-archive-card-height);
    border-right: 0;
    border-bottom: 1px solid var(--line);
    flex-basis: auto;
  }

  .archive-card:first-child {
    border-left: 0;
    margin-left: 0;
  }

  .archive-card:first-child a {
    padding-left: 12px;
  }

  .archive-card a {
    min-height: var(--mobile-archive-card-height);
    padding: 12px;
  }

  .archive-card__image {
    height: var(--mobile-archive-card-image-height);
    margin: 0 0 12px;
  }

  .archive-card__category {
    margin-bottom: 6px;
    font-size: 14px;
    font-weight: 800;
  }

  .archive-card h2 {
    margin-bottom: 14px;
    font-size: 20px;
    line-height: 1.05;
  }

  .archive-card__text,
  .archive-card__date {
    font-size: 16px;
    line-height: 1.08;
  }

  .archive-card__date {
    font-size: 20px;
    line-height: 1;
  }

  .archive-detail {
    display: flex;
    flex-direction: column;
    height: 100dvh;
    overflow: hidden;
    padding: var(--mobile-header-height) 0 var(--mobile-project-footer-space);
  }

  .archive-detail__gallery {
    flex: 0 0 var(--mobile-archive-detail-gallery-height);
    height: var(--mobile-archive-detail-gallery-height);
    padding: 0;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
  }

  .archive-detail__slider {
    height: 100%;
    gap: 24px;
  }

  .archive-detail__slide {
    flex-basis: 82vw;
    height: var(--mobile-archive-detail-gallery-height);
  }

  .archive-detail__arrow {
    display: none;
  }

  .archive-detail__content {
    position: relative;
    display: block;
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 18px 14px var(--mobile-archive-detail-bottom-space);
    scrollbar-width: none;
  }

  .archive-detail__meta {
    position: relative;
    margin-bottom: 34px;
  }

  .archive-detail h1 {
    max-width: calc(100% - 42px);
    margin-bottom: 22px;
    font-size: 38px;
    line-height: 1.16;
  }

  .archive-detail__tag {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
  }

  .archive-detail__facts {
    display: block;
  }

  .archive-detail__facts div,
  .archive-detail__facts div:nth-child(3) {
    grid-column: auto;
    margin-bottom: 24px;
  }

  .archive-detail__people {
    grid-column: auto;
  }

  .archive-detail dt {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .archive-detail dd {
    font-size: 16px;
  }

  .archive-detail__text p {
    font-size: 16px;
    line-height: 1.08;
  }

  .about-page {
    height: 100dvh;
    padding: var(--mobile-header-height) 0 var(--mobile-footer-space);
  }

  .about-hero {
    min-height: 240px;
  }

  .about-hero__image {
    height: 400px;
  }

  .about-hero__shape {
    width: 62vw;
  }

  .about-hero__title {
    left: 14px;
    right: 14px;
    bottom: 0;
    justify-content: flex-start;
    text-align: right;
    font-size: 16px;
  }

  .about-hero__title span {
  width: 28px;
  height: 28px;
  border-width: 2px;
}

.about-hero__title svg {
  width: 18px;
  height: 18px;
}

  .about-intro {
    min-height: 600px;
    padding: 60px 14px 72px;
  }

  .about-intro__small {
    margin: 0 0 86px;
    font-size: 16px;
  }

  .about-intro h2 {
    margin-bottom: 56px;
    font-size: 22px;
  }

  .about-intro__image {
    margin-top: 120px;
    width: 64vw;
    height: 100px;
  }

  .about-copy {
    display: block;
    width: calc(100% + 80px);
    margin-left: -40px;
    padding: 64px 54px 72px;
  }

    .about-copy p {
    font-size: 16px;
  }

  .about-copy > div + div {
    margin-top: 28px;
  }

  .about-red--image,
  .about-red--image img {
    min-height: 280px;
    height: 280px;
  }

  .about-red--statement {
    padding: 80px 14px 0;
  }

  .about-red--statement p {
    font-size: 16px;
  }

  .about-red--statement > div:first-child {
    margin-bottom: 40px;
  }

  .about-red__bottom-image img {
    height: 220px;
  }

  .about-red__bottom-image {
    margin-right: -14px;
    margin-left: -14px;
  }

  .about-logo-section {
    padding: 42px 40px calc(var(--mobile-footer-space) + 60px) 20px;
  }

  .about-logos__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 28px;
  }

  .about-logos__item img {
    max-height: 56px;
  }

  .brand-mark {
    right: 8px;
    bottom: -22%;
    left: 8px;
    width: calc(100% - 16px);
  }

  .menu-is-open .site-footer {
    top: 0;
    z-index: 40;
    height: 100dvh;
    overflow: hidden;
    background: var(--accent);
  }

  .menu-is-open .brand-mark {
    position: fixed;
    right: 8px;
    bottom: calc(env(safe-area-inset-bottom, 0px) - 22px);
    left: 8px;
    width: calc(100% - 16px);
    z-index: 42;
    opacity: 1;
  }

  .footer-nav {
    position: fixed;
    inset: 0;
    z-index: 41;
    display: block;
    height: 100dvh;
    min-height: 100dvh;
    padding: 0 14px;
    background: var(--accent);
    opacity: 0;
    pointer-events: none;
    transform: translateY(100%);
  }

  .footer-nav .footer-nav__meta-link {
    display: none;
  }

  .site-footer:hover .footer-nav,
  .site-footer:focus-within .footer-nav {
    opacity: 0;
    transform: translateY(100%);
  }

  .menu-is-open .footer-nav,
  .menu-is-open .site-footer:hover .footer-nav,
  .menu-is-open .site-footer:focus-within .footer-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-is-open .mobile-menu-toggle {
    opacity: 0;
    pointer-events: none;
  }

  .mobile-menu-close {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    justify-content: flex-end;
    height: 66px;
    margin: 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 28px 14px 0;
    background: transparent;
    color: var(--foreground);
    cursor: pointer;
    font: inherit;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
  }

  .mobile-menu-meta {
    position: absolute;
    top: 80px;
    right: 14px;
    left: 14px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: start;
    padding-top: 0;
  }

  .mobile-menu-meta a {
    display: flex;
    justify-self: start;
    font-size: 14px;
    line-height: 1;
  }

  .mobile-menu-meta a:last-child {
    justify-self: end;
    justify-content: flex-end;
    color: var(--foreground);
  }

  .mobile-menu-instagram {
    justify-self: center;
    justify-content: center;
  }

  .mobile-menu-instagram img {
    display: block;
    width: 22px;
    height: 22px;
  }

  .footer-nav__main-link {
    position: absolute;
    right: 14px;
    left: 14px;
    display: block;
    width: auto;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
  }

  .footer-nav__main-link--projects {
    top: 32dvh;
  }

  .footer-nav__main-link--about {
    top: calc(32dvh + 82px);
  }

  .footer-nav__main-link--archive {
    top: calc(32dvh + 164px);
  }

  .footer-nav__language {
    top: auto;
    bottom: calc(var(--footer-height) * 0.62 + env(safe-area-inset-bottom, 0px) + 18px);
    color: var(--background);
  }

  .project-detail__scroll-cue {
    display: none;
  }
}

@media (max-width: 560px) {
  :root {
    --footer-height: 80px;
    --nav-height: 80px;
    --mobile-footer-space: 100px;
    --mobile-project-row-height: 160px;
    --mobile-project-meta-gap: 4px;
    --mobile-project-footer-space: 64px;
    --mobile-project-text-bottom-space: 8px;
    --mobile-archive-card-image-height: 166px;
    --mobile-archive-card-height: 390px;
    --mobile-archive-detail-gallery-height: 200px;
    --mobile-archive-detail-bottom-space: 8px;
    --row-height: 34px;
    --text-size: 12px;
    --text-line-gap: 12px;
    --text-offset-y: 5px;
  }

  .project-row__category {
    grid-column: 1 / 12;
  }

  .project-row__date {
    grid-column: 12 / 25;
  }

  .project-row__title,
  .project-row__curation {
    grid-column: 1 / 20;
    font-size: 36px;
  }

  .project-row__person {
    grid-column: 1 / 12;
  }

  .project-row__location {
    grid-column: 12 / 25;
  }

  .project-detail__figure {
    flex-basis: 100%;
    width: 100%;
  }

  .project-detail__figure img {
    height: var(--mobile-project-gallery-height);
    min-height: 0;
  }

  .project-detail__back {
    top: 14px;
    left: 14px;
    width: 44px;
    height: 44px;
    font-size: 28px;
  }

  .project-detail h1,
  .archive-detail h1 {
    font-size: 38px;
  }

  .project-detail__facts p,
  .project-detail__people li,
  .project-detail__people p,
  .project-detail__map,
  .archive-detail dd {
    font-size: 16px;
  }

  .project-detail__description p,
  .archive-detail__text p {
    font-size: 16px;
  }

  .archive-card {
    min-height: var(--mobile-archive-card-height);
    flex-basis: auto;
  }

  .archive-card a {
    min-height: var(--mobile-archive-card-height);
  }

  .archive-card__image {
    height: var(--mobile-archive-card-image-height);
  }

  .archive-card h2 {
    font-size: 24px;
  }

  .archive-card__text,
  .archive-card__date {
    font-size: 16px;
  }

  .archive-detail__slide {
    flex-basis: 82vw;
    height: var(--mobile-archive-detail-gallery-height);
  }

  .archive-detail__arrow {
    display: none;
  }

  .footer-nav__main-link {
    font-size: 28px;
  }

  .footer-nav__main-link--projects {
    top: 32dvh;
  }

  .footer-nav__main-link--about {
    top: calc(32dvh + 80px);
  }

  .footer-nav__main-link--archive {
    top: calc(32dvh + 160px);
  }

  .footer-nav__language {
    bottom: calc(var(--footer-height) * 0.68 + env(safe-area-inset-bottom, 0px) + 22px);
  }
}
