:root {
  --bg: #fff;
  --fg: #000;
  --muted: rgba(0, 0, 0, 0.52);
  --project-red: #C10E1A;
  --paper: rgba(0, 0, 0, 0.08);
  --gutter: 8px;
  --header-height: 34px;
  --body-font: Arial, Helvetica, sans-serif;
  --header-font: Helvetica, Arial, sans-serif;
}

@media (min-width: 768px) {
  :root {
    --gutter: 16px;
    --header-height: 38px;
  }
}

@media (min-width: 1280px) {
  :root {
    --header-height: 48px;
  }
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body-font);
  scroll-behavior: smooth;
}

body {
  min-height: 100svh;
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.15;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  width: 100%;
  min-height: var(--header-height);
  padding: 0.55rem var(--gutter);
  font-family: var(--header-font);
}

.site-nav {
  display: grid;
  grid-area: 1 / 1;
  grid-template-columns: 1fr min-content 1fr;
  align-items: center;
  gap: var(--gutter);
  width: 100%;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.nav-links-left {
  justify-self: start;
}

.nav-links-right {
  justify-self: end;
}

.nav-link,
.nav-logo {
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.72;
  text-transform: uppercase;
  transition: color 180ms ease, font-size 180ms ease;
}

.nav-link {
  font-size: clamp(0.875rem, 0.62vw + 0.72rem, 1.45rem);
}

.nav-logo {
  justify-self: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.35rem, 3.2vw, 3.7rem);
  letter-spacing: 0.08em;
  line-height: 0.9;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--project-red);
}

.site-tagline {
  position: absolute;
  top: clamp(3rem, 6vw, 5.2rem);
  left: 50%;
  max-width: 28rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.875rem, 0.7vw + 0.7rem, 1.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-align: center;
  text-transform: lowercase;
  transition: opacity 180ms ease;
  transform: translateX(-50%);
}

html.is-header-compact .nav-logo {
  font-size: clamp(0.875rem, 0.62vw + 0.72rem, 1.45rem);
}

html.is-scrolling-down .site-tagline {
  opacity: 0;
  pointer-events: none;
}

.work-main {
  padding: 24svh var(--gutter) 10rem;
}

.work-grid {
  display: flex;
  flex-direction: column;
  gap: var(--gutter);
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-item {
  color: var(--project-red);
}

.work-image-link {
  display: block;
  width: 100%;
  overflow: hidden;
  background: var(--paper);
}

.work-item.is-portrait .work-image-link {
  aspect-ratio: 4 / 5;
}

.work-item.is-landscape .work-image-link {
  aspect-ratio: 16 / 9;
}

.work-item.is-tall .work-image-link {
  aspect-ratio: 2 / 3;
}

.work-item.is-wide .work-image-link {
  aspect-ratio: 16 / 9;
}

.work-image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease;
  user-select: none;
}

.work-image-link:hover img {
  opacity: 0.78;
}

.work-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 1rem;
  color: rgba(0, 0, 0, 0.4);
  font-size: clamp(0.75rem, 0.28vw + 0.68rem, 0.95rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
  text-align: center;
  text-transform: lowercase;
}

.work-caption {
  max-width: 26rem;
  padding-top: 0.55rem;
}

.work-caption h2,
.project-copy h1,
.info-panel h1 {
  margin: 0;
  font-family: var(--body-font);
  font-weight: 900;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.work-caption h2 {
  font-size: clamp(1.25rem, 1.35vw, 2.1rem);
  line-height: 0.82;
}

.work-caption p,
.project-copy p,
.project-meta,
.info-panel p,
.info-links,
.site-footer {
  margin: 0;
  font-size: clamp(0.875rem, 0.55vw + 0.74rem, 1.12rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-transform: lowercase;
}

.work-caption p {
  margin-top: 0.22rem;
}

.work-caption .work-summary {
  max-width: 24rem;
  margin-top: 0.65rem;
  color: var(--fg);
  font-size: clamp(0.72rem, 0.22vw + 0.68rem, 0.86rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.22;
  text-transform: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 var(--gutter) var(--gutter);
  color: var(--muted);
}

.site-footer a:hover,
.info-links a:hover,
.project-back:hover {
  color: var(--project-red);
}

.project-main {
  min-height: calc(100svh - var(--header-height));
  padding: clamp(4rem, 13svh, 9rem) var(--gutter) 6rem;
  color: var(--project-red);
}

.project-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: var(--gutter);
}

.project-hero {
  display: grid;
  gap: var(--gutter);
}

.project-media {
  margin: 0;
  overflow: hidden;
  background: var(--paper);
}

.project-media img {
  max-height: calc(100svh - 12rem);
  object-fit: cover;
  object-position: center;
}

.project-placeholder-media {
  display: grid;
  width: min(100%, 34rem);
  aspect-ratio: 4 / 5;
}

.project-copy {
  max-width: 42rem;
}

.project-copy h1 {
  margin-bottom: 0.4rem;
  font-size: clamp(3.2rem, 9.2vw, 10.5rem);
  line-height: 0.76;
}

.project-copy h1.research-title {
  font-size: clamp(3rem, 5.8vw, 6.5rem);
  line-height: 0.82;
}

.project-copy h1.archive-title {
  max-width: 10ch;
  font-size: clamp(2.15rem, 4.4vw, 4.9rem);
  line-height: 0.86;
}

.archive-project-main .project-media {
  justify-self: start;
  width: min(100%, 28rem);
}

.archive-project-main .project-media img {
  max-height: min(72svh, 42rem);
}

.archive-project-main .project-copy {
  max-width: 52rem;
}

.abuelo-main {
  padding: clamp(4rem, 11svh, 7rem) var(--gutter) 9rem;
  color: var(--project-red);
}

.abuelo-meta {
  margin-bottom: var(--gutter);
}

.abuelo-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(18rem, 0.42fr);
  align-items: end;
  gap: clamp(1.5rem, 4vw, 4rem);
  min-height: calc(100svh - var(--header-height) - 9rem);
}

.abuelo-cover {
  margin: 0;
}

.abuelo-cover img {
  width: 100%;
  max-height: min(68svh, 42rem);
  object-fit: contain;
  object-position: center bottom;
}

.abuelo-copy {
  max-width: 34rem;
  padding-bottom: clamp(0.75rem, 4svh, 3rem);
}

.abuelo-kicker {
  margin: 0 0 0.45rem;
  color: var(--project-red);
  font-size: clamp(0.78rem, 0.3vw + 0.72rem, 1rem);
  font-weight: 900;
  text-transform: lowercase;
}

.abuelo-copy h1 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.4rem, 4.5vw, 5.2rem);
  letter-spacing: -0.08em;
  line-height: 0.84;
}

.abuelo-summary {
  max-width: 28rem;
  margin: 1rem 0 0;
  color: var(--fg);
  font-size: clamp(0.9rem, 0.32vw + 0.82rem, 1.08rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.24;
}

.abuelo-scroll {
  min-height: var(--abuelo-scroll-height, 310svh);
  padding: clamp(5rem, 14svh, 10rem) 0 3rem;
}

.abuelo-composition {
  position: relative;
  width: min(100%, 104rem);
  height: var(--abuelo-composition-height, 285svh);
  margin-inline: auto;
}

.abuelo-item {
  --rotate: 0deg;
  --float-x: 2.4rem;
  --float-y: -1rem;
  --float-x-b: -2rem;
  --float-y-b: 1.3rem;
  --float-x-c: 1.1rem;
  --float-y-c: 2.1rem;
  --rotate-a: calc(var(--rotate) + 5deg);
  --rotate-b: calc(var(--rotate) - 4deg);
  --rotate-c: calc(var(--rotate) + 2deg);
  --scale-x: 1.03;
  --scale-y: 0.98;
  --scale-x-b: 0.98;
  --scale-y-b: 1.04;
  --scale-x-c: 1.02;
  --scale-y-c: 0.99;
  --skew-x: 1.5deg;
  --skew-y: -0.8deg;
  --img-skew: 1.8deg;
  --img-skew-b: -1.2deg;
  top: var(--top, auto);
  right: var(--right, auto);
  left: var(--left, auto);
  position: absolute;
  width: var(--item-width, clamp(25rem, 42vw, 46rem));
  margin: 0;
  opacity: 0;
  transform: translateY(5rem) rotate(var(--rotate));
  transition: opacity 520ms ease;
  will-change: opacity, transform;
}

.abuelo-item img {
  width: 100%;
  max-height: none;
  object-fit: contain;
  transform-origin: center;
  will-change: transform, filter;
}

.abuelo-item-wide {
  --item-width: clamp(36rem, 66vw, 72rem);
}

.abuelo-item.is-visible {
  opacity: 1;
  animation: abuelo-drift var(--float-duration, 18s) ease-in-out var(--float-delay, 0s) infinite alternate;
}

.abuelo-item.is-visible img {
  animation: abuelo-warp var(--warp-duration, 9s) ease-in-out var(--warp-delay, 0s) infinite alternate;
}

.abuelo-photo {
  position: absolute;
  z-index: 0;
  margin: 0;
  opacity: 0.72;
}

.abuelo-photo img {
  width: 100%;
  height: auto;
}

.abuelo-photo-left {
  top: 398svh;
  left: calc(50% - 50vw);
  width: min(52rem, 58vw);
}

.abuelo-photo-center {
  top: 606svh;
  left: 50%;
  width: min(43rem, 54vw);
  transform: translateX(-50%);
}

.abuelo-item:nth-child(1) {
  --top: 0;
  --left: 2%;
  --rotate: -8deg;
}

.abuelo-item:nth-child(2) {
  --top: 24svh;
  --left: 41%;
  --rotate: 7deg;
}

.abuelo-item:nth-child(3) {
  --top: 54svh;
  --left: 7%;
  --rotate: 4deg;
}

.abuelo-item:nth-child(4) {
  --top: 84svh;
  --right: -3%;
  --rotate: -11deg;
}

.abuelo-item:nth-child(5) {
  --top: 118svh;
  --left: 46%;
  --rotate: 13deg;
}

.abuelo-item:nth-child(6) {
  --top: 150svh;
  --left: -4%;
  --rotate: -5deg;
}

.abuelo-item:nth-child(7) {
  --top: 178svh;
  --left: 20%;
  --rotate: 2deg;
}

.abuelo-item:nth-child(8) {
  --top: 218svh;
  --right: 3%;
  --rotate: -12deg;
}

.abuelo-item:nth-child(9) {
  --top: 250svh;
  --left: 39%;
  --rotate: 9deg;
}

@keyframes abuelo-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--rotate)) scale(1) skew(0deg, 0deg);
  }

  24% {
    transform: translate3d(var(--float-x), var(--float-y), 0) rotate(var(--rotate-a)) scaleX(var(--scale-x)) scaleY(var(--scale-y));
  }

  52% {
    transform: translate3d(var(--float-x-b), var(--float-y-b), 0) rotate(var(--rotate-b)) scaleX(var(--scale-x-b)) scaleY(var(--scale-y-b)) skew(var(--skew-x), var(--skew-y));
  }

  76% {
    transform: translate3d(var(--float-x-c), var(--float-y-c), 0) rotate(var(--rotate-c)) scaleX(var(--scale-x-c)) scaleY(var(--scale-y-c));
  }
}

@keyframes abuelo-warp {
  0%,
  100% {
    filter: saturate(1) contrast(1);
    transform: scaleX(1) scaleY(1) skew(0deg, 0deg);
  }

  35% {
    filter: saturate(1.08) contrast(1.04);
    transform: scaleX(1.045) scaleY(0.97) skew(var(--img-skew), 0deg);
  }

  68% {
    filter: saturate(0.96) contrast(1.08);
    transform: scaleX(0.975) scaleY(1.055) skew(0deg, var(--img-skew-b));
  }
}

@media (prefers-reduced-motion: reduce) {
  .abuelo-item,
  .abuelo-item.is-visible,
  .abuelo-item.is-visible img {
    animation: none;
    transition: none;
  }

  .abuelo-item.is-visible {
    transform: translateY(0) rotate(var(--rotate));
  }

  .abuelo-item.is-visible img {
    filter: none;
    transform: none;
  }
}

.abuelo-audio-control {
  position: fixed;
  right: var(--gutter);
  bottom: var(--gutter);
  z-index: 60;
  padding: 0.38rem 0.52rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: var(--bg);
  color: var(--project-red);
  cursor: pointer;
  font-size: clamp(0.68rem, 0.24vw + 0.64rem, 0.82rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.abuelo-audio-control:hover {
  background: var(--project-red);
  color: var(--bg);
}

.abuelo-final {
  width: min(30rem, 72vw);
  margin: clamp(12rem, 32svh, 24rem) auto 0;
  color: var(--fg);
  font-size: clamp(0.78rem, 0.2vw + 0.72rem, 0.9rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
}

.archive-gallery-main {
  display: grid;
  justify-items: center;
  gap: clamp(3.5rem, 8vw, 8.5rem);
  padding: clamp(5rem, 10svh, 7rem) var(--gutter) 10rem;
}

.archive-gallery-frame {
  width: min(72vw, 44rem);
  margin: 0;
}

.archive-gallery-frame img {
  width: 100%;
  max-height: 86svh;
  object-fit: contain;
}

.archive-gallery-full {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
}

.archive-gallery-full img {
  width: 100%;
  max-height: none;
}

.archive-gallery-cover {
  width: min(64vw, 38rem);
}

.archive-gallery-credits {
  width: min(78vw, 42rem);
  margin: clamp(-2rem, -3vw, -0.75rem) 0 0;
  color: var(--fg);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.72rem, 0.18vw + 0.67rem, 0.86rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.28;
  text-align: center;
  text-transform: none;
}

.archive-gallery-credits h2 {
  margin: 0 0 1.45rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.15rem, 0.55vw + 1rem, 1.55rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1;
}

.archive-gallery-credits p {
  margin: 0;
}

.archive-gallery-credits a {
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.project-copy p {
  max-width: 32rem;
}

.project-copy .project-type {
  margin-bottom: 0.7rem;
}

.research-article {
  display: grid;
  grid-template-columns: minmax(9rem, 0.7fr) minmax(0, 76rem) minmax(9rem, 0.7fr);
  column-gap: clamp(2rem, 4vw, 5rem);
  max-width: none;
  margin: clamp(4rem, 8vw, 8rem) auto 0;
  padding-inline: clamp(0.25rem, 1vw, 1rem);
  color: var(--fg);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(0.9rem, 0.76rem + 0.45vw, 1.28rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.44;
  text-align: justify;
  text-transform: none;
}

.research-article-spaced {
  column-gap: clamp(4rem, 8vw, 10rem);
}

.research-summary {
  justify-self: center;
  max-width: 20rem;
  margin: 0;
  color: rgba(0, 0, 0, 0.92);
  font-size: clamp(0.82rem, 0.7rem + 0.28vw, 1rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.22;
  text-align: left;
}

.research-article .research-summary p {
  margin: 0;
}

.research-content {
  grid-column: 2;
  min-width: 0;
  max-width: 76rem;
  padding-top: clamp(9rem, 16vw, 16rem);
}

.research-article h2,
.research-article h3 {
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.86;
  text-align: left;
  text-transform: uppercase;
}

.research-article h2 {
  max-width: 12ch;
  margin-bottom: clamp(1rem, 2.8vw, 2.2rem);
  font-size: clamp(3rem, 6.6vw, 7.2rem);
}

.research-article h3 {
  margin: clamp(2.4rem, 5vw, 5rem) 0 clamp(0.8rem, 2vw, 1.7rem);
  font-size: clamp(1.45rem, 2.5vw, 3.2rem);
}

.research-article p {
  margin: 0 0 1rem;
}

.research-article p:last-child {
  margin-bottom: 0;
}

.research-figure {
  margin: clamp(2rem, 5vw, 4.5rem) 0;
}

.research-figure img {
  width: 100%;
  height: auto;
  background: var(--paper);
}

.research-figure-full {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
}

.research-figure-portrait {
  width: min(26rem, 62vw);
  margin-inline: auto;
}

.research-testimony-item {
  display: grid;
  justify-items: center;
  gap: clamp(0.8rem, 1.8vw, 1.5rem);
}

.research-testimony {
  max-width: 42rem;
  margin: 0;
  font-size: clamp(0.86rem, 0.74rem + 0.28vw, 1.08rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.36;
  text-align: left;
}

.research-testimony-item .research-testimony {
  width: min(100%, 42rem);
}

.research-testimony-portrait {
  width: min(26rem, 62vw);
  margin-inline: auto;
}

.research-testimony-portrait img {
  width: 100%;
}

.research-testimony-portrait .research-testimony {
  width: 100%;
}

.research-figure-full .research-testimony {
  width: min(42rem, calc(100vw - var(--gutter) * 2));
  margin-left: max(var(--gutter), calc((100vw - 76rem) / 2));
}

.research-testimony-special {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(13rem, 0.28fr);
  align-items: start;
  gap: clamp(1.2rem, 4vw, 4rem);
  margin: clamp(3rem, 8vw, 7rem) 0;
}

.research-testimony-special figure {
  margin: 0;
}

.research-testimony-special img {
  width: 100%;
  height: auto;
}

.research-testimony-special .research-testimony {
  max-width: 22rem;
  padding-bottom: 0;
}

.research-bibliography {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem clamp(1.2rem, 3vw, 2.4rem);
  width: min(42rem, 100%);
  margin: clamp(9rem, 18vw, 16rem) 0 0 auto;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(0, 0, 0, 0.16);
  color: rgba(0, 0, 0, 0.66);
  font-size: clamp(0.68rem, 0.58rem + 0.2vw, 0.82rem);
  font-weight: 300;
  line-height: 1.32;
  text-align: left;
}

.research-bibliography h3 {
  grid-row: 1 / -1;
  margin: 0;
  color: rgba(0, 0, 0, 0.48);
  font-size: clamp(0.62rem, 0.55rem + 0.16vw, 0.76rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: lowercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.research-bibliography p {
  grid-column: 2;
  margin: 0;
  padding-left: 1rem;
  text-indent: -1rem;
}

.info-main {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(2rem, 5vw, 4rem);
  min-height: calc(100svh - var(--header-height));
  padding: clamp(5rem, 13svh, 9rem) var(--gutter) var(--gutter);
}

.info-hero {
  align-self: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 30rem);
  align-items: start;
  gap: clamp(2rem, 6vw, 6rem);
}

.info-panel {
  display: grid;
  justify-items: start;
  max-width: 62rem;
}

.info-panel h1 {
  max-width: 16ch;
  font-size: clamp(2.7rem, 6vw, 7rem);
  line-height: 0.84;
}

.info-panel p {
  max-width: 32rem;
  margin-top: 1.25rem;
  color: var(--muted);
}

.info-portrait {
  position: relative;
  justify-self: end;
  align-self: start;
  width: min(30vw, 26rem);
  min-width: 14rem;
  margin: 0 3vw 0 0;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: var(--paper);
}

.info-portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transition: opacity 180ms ease;
}

.info-portrait-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.info-portrait:hover .info-portrait-hover {
  opacity: 1;
}

.info-links {
  align-self: end;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: calc(
      (100vw - var(--gutter) * 21) / 20 * 1.5 + var(--gutter) * 0.5
    );
    row-gap: 100px;
    padding-bottom: 100px;
  }

  .project-hero {
    grid-template-columns: minmax(0, 0.62fr) minmax(18rem, 0.38fr);
    align-items: end;
  }

  .archive-project-main .project-hero {
    grid-template-columns: minmax(14rem, 0.42fr) minmax(0, 0.58fr);
    align-items: center;
  }

}

@media (min-width: 1280px) {
  .work-grid {
    column-gap: calc(
      (100vw - var(--gutter) * 21) / 20 * 2.5 + var(--gutter) * 1.5
    );
    row-gap: 200px;
    padding-bottom: 200px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: auto;
    padding-top: 0.55rem;
  }

  .site-nav {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .nav-logo,
  .nav-links,
  .site-tagline {
    justify-self: start;
  }

  .site-tagline {
    position: static;
    grid-area: auto;
    margin-top: 1.2rem;
    text-align: left;
    transform: none;
  }

  .work-main {
    padding-top: 16svh;
  }

  .work-caption {
    padding-bottom: 2.75rem;
  }

  .project-main,
  .info-main {
    padding-top: 24svh;
  }

  .info-hero {
    grid-template-columns: 1fr;
  }

  .info-portrait {
    justify-self: start;
    width: min(58vw, 16rem);
    margin: 0;
  }

  .project-meta,
  .site-footer,
  .info-links {
    flex-direction: column;
  }

  .research-article {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-inline: 0;
    text-align: left;
  }

  .research-summary {
    justify-self: start;
    max-width: 100%;
  }

  .research-content {
    grid-column: 1;
    padding-top: 0;
  }

  .research-figure-full {
    width: 100%;
    margin-left: 0;
  }

  .research-figure-portrait {
    width: min(100%, 22rem);
  }

  .research-testimony-special {
    grid-template-columns: 1fr;
  }

  .research-testimony-special .research-testimony {
    max-width: 100%;
    padding-bottom: 0;
  }

  .project-media img {
    max-height: none;
  }

  .abuelo-main {
    padding-top: clamp(4rem, 10svh, 6rem);
  }

  .abuelo-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 2rem;
  }

  .abuelo-cover img {
    max-height: 50svh;
    object-position: left bottom;
  }

  .abuelo-copy h1 {
    font-size: clamp(2.1rem, 10.5vw, 3.5rem);
  }

  .abuelo-scroll {
    min-height: var(--abuelo-scroll-mobile-height, 335svh);
    padding-top: 5rem;
  }

  .abuelo-composition {
    height: var(--abuelo-composition-mobile-height, 310svh);
  }

  .abuelo-item {
    top: var(--mobile-top, var(--top, auto));
    right: var(--mobile-right, auto);
    left: var(--mobile-left, auto);
    width: clamp(20rem, 112vw, 34rem);
    transform: translateY(3rem) rotate(var(--rotate));
  }

  .abuelo-item-wide {
    width: clamp(28rem, 138vw, 44rem);
  }

  .abuelo-photo-left {
    top: 442svh;
    left: calc(50% - 50vw);
    width: 94vw;
  }

  .abuelo-photo-center {
    top: 694svh;
    width: 78vw;
  }

  .abuelo-final {
    width: min(24rem, 78vw);
    margin-top: 11rem;
  }
}
