:root {
  --color-bg: #fff;
  --color-text: #050505;
  --color-muted: #6d6d6d;
  --color-line: #dedede;
  --space-page: clamp(16px, 2vw, 28px);
  --font-sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 13px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--color-bg);
  color: var(--color-text);
  font-weight: 400;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  animation: page-fade 420ms ease both;
  overflow-x: hidden;
}

@keyframes page-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

body:not([data-page="home"]) {
  display: grid;
  grid-template-rows: auto 1fr auto;
}

img {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}

a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 0.18em;
  transition: color 140ms ease, opacity 140ms ease;
}

a:hover,
a:focus-visible {
  color: var(--color-muted);
}

.site-nav a,
.home-index__links a,
.home-index__meta a,
.site-footer a {
  text-decoration-thickness: 1px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.home-index__links a:hover,
.home-index__links a:focus-visible,
.home-index__meta a:hover,
.home-index__meta a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-text);
  text-decoration: underline;
}

strong {
  font-weight: 600;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 100;
  padding: 8px 10px;
  background: var(--color-bg);
  border: 1px solid var(--color-text);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  top: 16px;
  left: 16px;
  right: 16px;
  z-index: 20;
  display: block;
  padding: 0;
  font-size: 13px;
  line-height: 1.22;
  letter-spacing: 0;
  text-transform: none;
  background: transparent;
  pointer-events: none;
}

.brand {
  position: absolute;
  top: 0;
  right: 0;
  margin-left: 0;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.32;
  pointer-events: auto;
  color: var(--color-text);
}

.project-back {
  position: fixed;
  top: 48vh;
  right: clamp(22px, 2.2vw, 38px);
  transform: translateY(-50%);
  color: var(--color-muted);
  line-height: 1.32;
  pointer-events: auto;
}

.project-back:hover,
.project-back:focus-visible {
  color: var(--color-text);
  text-decoration: underline;
}

.mobile-back-area {
  display: none;
}

.site-nav {
  display: grid;
  align-items: start;
  gap: 4px;
  width: fit-content;
  line-height: 1.32;
  pointer-events: auto;
}

.site-nav a,
.site-nav__label,
.home-index__links a,
.home-index__links .site-nav__label {
  justify-self: start;
  width: max-content;
  transform-origin: left center;
  transition: color 140ms ease, opacity 140ms ease, transform 140ms ease;
}

.site-nav > a:first-child,
.home-index__links > a:first-child {
  font-size: 14px;
}

.site-nav > a:not(:first-child):hover,
.site-nav > a:not(:first-child):focus-visible,
.home-index__links > a:not(:first-child):hover,
.home-index__links > a:not(:first-child):focus-visible {
  transform: scale(1.04);
}

.site-nav a[href="info.html"],
.home-index__links a[href="info.html"] {
  margin-top: 8px;
}

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

.site-nav__mobile-projects {
  display: none;
}

.site-nav__mobile-subnav {
  display: none;
}

.site-subnav {
  display: grid;
  justify-items: start;
  gap: 3px;
  margin: -1px 0 0;
}

.site-subnav a {
  color: var(--color-muted);
  font-size: 11px;
  font-style: italic;
  line-height: 1.24;
}

.site-subnav a:hover,
.site-subnav a:focus-visible {
  color: var(--color-muted);
  transform: translateX(2px);
}

.site-nav a[aria-current="page"] {
  border-bottom: 1px solid currentColor;
}

body[data-page="home"] .site-header,
body[data-page="home"] .site-footer {
  display: none;
}

body[data-page="404"] .site-header {
  display: none;
}

body[data-page="project"] .site-header,
body[data-page="series-project"] .site-header {
  position: fixed;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 30;
  display: block;
  padding: 0;
  background: transparent;
  pointer-events: none;
}

body[data-page="project"] .site-header a,
body[data-page="series-project"] .site-header a {
  pointer-events: auto;
}

body[data-page="project"] .brand,
body[data-page="series-project"] .brand {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
}

body[data-page="project"] .site-nav,
body[data-page="series-project"] .site-nav {
  position: static;
  left: 10px;
  display: grid;
  gap: 4px;
}

.home-page {
  min-height: 100svh;
}

.home-index {
  position: relative;
  min-height: 100svh;
  padding: 16px;
  font-size: 13px;
  line-height: 1.22;
  letter-spacing: 0;
}

.home-index p {
  margin: 0;
  color: var(--color-muted);
}

.home-index__links,
.home-index__meta,
.home-index__image {
  display: grid;
  gap: 0;
}

.home-index__links {
  justify-self: start;
}

.home-index__links {
  position: absolute;
  left: 16px;
  top: 16px;
  display: grid;
  gap: 4px;
  line-height: 1.32;
}

.home-index__signature {
  position: absolute;
  top: 16px;
  right: 16px;
  margin: 0;
  color: var(--color-text) !important;
  font-size: 13px;
  line-height: 1.32;
}

.home-index__image {
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  height: 100svh;
  min-width: 0;
  margin: 0;
  justify-items: end;
}

.home-index__image img {
  width: auto;
  height: 100svh;
  max-width: calc(100vw - 112px);
  object-fit: contain;
  object-position: right top;
}

.home-index__meta {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 40;
}

.page-header h1,
.info-intro h1 {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0;
}

.section,
.page {
  padding: clamp(54px, 9vw, 112px) var(--space-page);
}

.page--work,
.page--journal,
.info-page {
  padding-top: clamp(124px, 14vw, 170px);
}

.page--work {
  padding-top: clamp(54px, 6vw, 72px);
}

.page--journal {
  padding-top: clamp(72px, 8vw, 96px);
}
.section__intro {
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}

.featured-work {
  padding-top: 0;
}

.featured-work .section__intro {
  margin-bottom: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-line);
}

.eyebrow {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
}

.feature-list,
.project-grid,
.journal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(34px, 8vw, 96px);
}

.feature-item,
.project-card,
.journal-card {
  display: grid;
  gap: 12px;
}

.feature-item__image,
.project-card__image,
.journal-card__image {
  overflow: hidden;
}

.feature-item img,
.project-card img,
.journal-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: opacity 160ms ease;
}

.feature-item:hover img,
.project-card:hover img,
.journal-card:hover img {
  opacity: 0.86;
}

.item-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: baseline;
  font-size: 13px;
  line-height: 1.25;
}

.item-meta h2,
.item-meta h3,
.detail-header h1,
.journal-header h1,
.info-columns h2 {
  margin: 0;
  font-weight: 300;
}

.item-meta p {
  margin: 0;
  color: var(--color-muted);
  text-align: right;
}

.page-header {
  max-width: 980px;
  margin-bottom: clamp(34px, 7vw, 86px);
}

.page--work .page-header {
  margin-bottom: clamp(30px, 5vw, 64px);
}

.page--journal .page-header {
  max-width: 760px;
}

.page-header h1 {
  max-width: 860px;
  margin-top: 0;
  font-size: 13px;
}

.page--work .page-header h1 {
  max-width: 620px;
}

.page--work .project-grid {
  grid-template-columns: 1fr;
  gap: clamp(38px, 6vw, 78px) clamp(18px, 2.8vw, 42px);
  max-width: 1360px;
  margin: 0 auto;
}

.page--work .project-card {
  display: grid;
  gap: 12px;
}

.page--work .project-card__image {
  display: block;
  aspect-ratio: 4 / 5;
  height: auto;
}

.page--work .project-card__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}

.page--work .item-meta {
  padding-top: 0;
  border-top: 0;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.page--work .item-meta h2 {
  font-size: 13px;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: none;
}

.page--work .item-meta span span,
.page--work .item-meta p {
  color: var(--color-muted);
}

.page--journal .journal-grid {
  gap: clamp(42px, 8vw, 110px) clamp(18px, 3vw, 42px);
}

.journal-wall {
  column-count: 2;
  column-gap: clamp(8px, 1.1vw, 16px);
}

.journal-photo {
  break-inside: avoid;
  margin: 0 0 clamp(8px, 1.1vw, 16px);
}

.journal-photo__button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  font: inherit;
  text-align: left;
}

.journal-photo__button img {
  height: auto;
  object-fit: contain;
  transition: opacity 160ms ease;
}

.journal-photo__button:hover img,
.journal-photo__button:focus-visible img {
  opacity: 0.72;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 46px 16px 54px;
  background: rgba(255, 255, 255, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 140ms ease;
  cursor: auto;
}

.lightbox[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__figure {
  display: grid;
  gap: 16px;
  width: min(calc(100vw - 32px), 1480px);
  max-width: none;
  margin: 0;
}

.lightbox__stage {
  --lightbox-stage-height: min(78svh, 860px);
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: var(--lightbox-stage-height);
  max-width: 100%;
  margin: 0 auto;
  overflow: visible;
}

.lightbox__stage img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  max-height: var(--lightbox-stage-height);
  margin: 0 auto;
  object-fit: contain;
}

.lightbox__close {
  position: fixed;
  top: 18px;
  right: auto;
  z-index: 4;
  padding: 9px 0 9px 18px;
  border: 0;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  pointer-events: auto;
  text-transform: none;
}

.lightbox__indicator {
  position: fixed;
  z-index: 2;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 120ms ease;
}

.lightbox__indicator[data-visible="true"] {
  opacity: 1;
}

body.is-lightbox-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}

.page--journal .journal-card img {
  aspect-ratio: 4 / 5;
}

.page--journal .journal-card:nth-child(2n) img {
  aspect-ratio: 3 / 4;
}

.page--journal .journal-card:nth-child(3n) img {
  aspect-ratio: 5 / 4;
}

.project-layout {
  display: block;
  max-width: none;
  margin: 0;
}

.project-detail,
.series-detail {
  padding: 0 10px 10px;
}

.series-detail {
  padding-bottom: clamp(84px, 10vw, 150px);
}

.detail-header,
.journal-header {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(38px, 7vw, 82px);
}

.project-layout .detail-header {
  gap: 2px;
  margin-bottom: 0;
  position: fixed;
  top: 48vh;
  left: 10px;
  transform: translateY(-50%);
  z-index: 25;
  width: 132px;
  background: var(--color-bg);
}

.detail-header h1,
.journal-header h1 {
  font-weight: 400;
  font-size: 13px;
  line-height: 1.22;
}

.detail-meta,
.journal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  color: var(--color-muted);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
}

.detail-description,
.journal-note {
  max-width: 620px;
  margin: 0;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.45;
}

.image-stack {
  display: grid;
  gap: clamp(44px, 6vw, 82px);
  width: min(90vw, 1274px);
  margin-left: clamp(132px, 10vw, 160px);
  justify-items: start;
}

.image-stack figure {
  margin: 0;
}

.image-stack img {
  width: auto;
  max-width: min(100%, calc(100vw - 206px));
  height: calc(100svh - 28px);
  max-height: 900px;
  aspect-ratio: auto;
  margin: 0 auto 0 0;
  object-fit: contain;
  object-position: left top;
}

.image-stack figcaption {
  max-width: min(100%, 1040px);
  margin: 10px auto 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.4;
}

.series-project .detail-header h1 {
  font-size: 12px;
}

.series-project--exhibition .detail-header {
  position: static;
  top: auto;
  left: auto;
  transform: none;
  z-index: auto;
  width: auto;
  margin: clamp(88px, 9vw, 128px) 0 clamp(34px, 4.5vw, 62px) clamp(132px, 10vw, 160px);
  background: transparent;
}

.series-project--exhibition .image-stack {
  width: min(calc(100vw - 220px), 1260px);
  margin-left: clamp(132px, 10vw, 160px);
}

.series-project--exhibition .detail-header h1 {
  font-size: 13px;
  line-height: 1.22;
}

.exhibition-stack {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: row;
  width: min(calc(100vw - 260px), 1180px);
  gap: clamp(18px, 2.5vw, 42px) clamp(14px, 2.2vw, 32px);
  align-items: flex-start;
}

.exhibition-figure {
  --span: 4;
  grid-column: auto / span var(--span);
  width: 100%;
  margin: 0;
}

.exhibition-figure--mini {
  --span: 2;
}

.exhibition-figure--small,
.exhibition-figure--detail {
  --span: 2;
}

.exhibition-figure--medium {
  --span: 3;
}

.exhibition-figure--portrait {
  --span: 3;
}

.exhibition-figure--wide {
  --span: 6;
}

.exhibition-figure--large {
  --span: 6;
  margin-bottom: clamp(12px, 2vw, 32px);
}

.exhibition-figure--xlarge {
  --span: 6;
  margin-bottom: clamp(16px, 2.8vw, 42px);
}

.exhibition-figure--anchor {
  --span: 7;
  margin-bottom: clamp(16px, 2.8vw, 42px);
}

.exhibition-figure--hero {
  --span: 7;
  margin-bottom: clamp(18px, 3vw, 48px);
}

.exhibition-figure--start {
  grid-column: 1 / span var(--span);
}

.exhibition-figure--center {
  justify-self: center;
}

.exhibition-figure--end {
  justify-self: end;
}

.exhibition-figure--mini.exhibition-figure--center {
  grid-column: 6 / span 2;
}

.exhibition-figure--mini.exhibition-figure--end {
  grid-column: 11 / span 2;
}

.exhibition-figure--small.exhibition-figure--center,
.exhibition-figure--detail.exhibition-figure--center {
  grid-column: 6 / span 2;
}

.exhibition-figure--small.exhibition-figure--end,
.exhibition-figure--detail.exhibition-figure--end {
  grid-column: 11 / span 2;
}

.exhibition-figure--medium.exhibition-figure--center,
.exhibition-figure--portrait.exhibition-figure--center {
  grid-column: 5 / span 3;
}

.exhibition-figure--medium.exhibition-figure--end,
.exhibition-figure--portrait.exhibition-figure--end {
  grid-column: 10 / span 3;
}

.exhibition-figure--wide.exhibition-figure--center,
.exhibition-figure--large.exhibition-figure--center {
  grid-column: 4 / span 6;
}

.exhibition-figure--wide.exhibition-figure--end,
.exhibition-figure--large.exhibition-figure--end {
  grid-column: 7 / span 6;
}

.exhibition-figure--xlarge.exhibition-figure--center {
  grid-column: 4 / span 6;
}

.exhibition-figure--xlarge.exhibition-figure--end {
  grid-column: 7 / span 6;
}

.exhibition-figure--anchor.exhibition-figure--start {
  grid-column: 1 / span 7;
}

.exhibition-figure--anchor.exhibition-figure--center {
  grid-column: 4 / span 7;
}

.exhibition-figure--anchor.exhibition-figure--end {
  grid-column: 6 / span 7;
}

.exhibition-figure--hero.exhibition-figure--center {
  grid-column: 4 / span 7;
}

.exhibition-figure--hero.exhibition-figure--end {
  grid-column: 6 / span 7;
}

.exhibition-figure:nth-child(4n + 2) {
  margin-top: clamp(4px, 1vw, 14px);
}

.exhibition-figure:nth-child(5n + 3) {
  margin-top: clamp(6px, 1.3vw, 22px);
}

.exhibition-figure:nth-child(7n) {
  margin-top: clamp(4px, 1vw, 16px);
}

.exhibition-figure:nth-child(-n + 3) {
  margin-top: 0;
}

.exhibition-figure:nth-child(2) {
  margin-top: clamp(6px, 1vw, 16px);
}

.exhibition-figure:nth-child(3) {
  grid-row: 2;
  margin-top: clamp(4px, 1vw, 18px);
}

.exhibition-figure:nth-child(4),
.exhibition-figure:nth-child(5),
.exhibition-figure:nth-child(6) {
  margin-top: clamp(0px, 0.4vw, 6px);
}

.exhibition-figure:nth-child(4),
.exhibition-figure:nth-child(5) {
  grid-row: 2;
}

.exhibition-figure:nth-child(7) {
  grid-column: 1 / span 4;
  margin-top: clamp(0px, 0.4vw, 6px);
}

.exhibition-figure:nth-child(8) {
  grid-column: 5 / span 8;
  margin-top: clamp(0px, 0.4vw, 8px);
}

.exhibition-figure:nth-child(n + 14) {
  margin-bottom: clamp(18px, 3vw, 46px);
}

.exhibition-figure:nth-child(12),
.exhibition-figure:nth-child(16),
.exhibition-figure:nth-child(19),
.exhibition-figure:nth-child(21) {
  margin-top: clamp(30px, 4.4vw, 72px);
}

.exhibition-figure:nth-child(11),
.exhibition-figure:nth-child(13),
.exhibition-figure:nth-child(17),
.exhibition-figure:nth-child(21) {
  margin-top: clamp(14px, 2.2vw, 38px);
}

.exhibition-figure:nth-child(17) {
  grid-column: 5 / span 2;
  margin-top: clamp(4px, 1vw, 18px);
}

.exhibition-figure:nth-child(18) {
  grid-column: 7 / span 6;
  margin-top: clamp(4px, 1vw, 18px);
}

body[data-series="cross-dresser"] .series-project--exhibition .detail-header {
  margin-bottom: clamp(28px, 3.4vw, 46px);
}

body[data-series="cross-dresser"] .series-project--exhibition .image-stack {
  width: min(calc(100vw - 190px), 1280px);
  margin-left: clamp(154px, 14vw, 224px);
}

body[data-series="cross-dresser"] .exhibition-stack {
  width: min(calc(100vw - 220px), 1240px);
  gap: clamp(38px, 4.4vw, 68px) clamp(22px, 2.4vw, 38px);
}

body[data-series="cross-dresser"] .exhibition-figure {
  margin: 0;
}

body[data-series="cross-dresser"] .exhibition-figure:nth-child(1) {
  grid-column: 3 / span 3;
  grid-row: 1;
}

body[data-series="cross-dresser"] .exhibition-figure:nth-child(2) {
  grid-column: 6 / span 7;
  grid-row: 1;
  margin-top: 0;
}

body[data-series="cross-dresser"] .exhibition-figure:nth-child(3) {
  grid-column: 1 / span 5;
  grid-row: 2;
  margin-top: 0;
}

body[data-series="cross-dresser"] .exhibition-figure:nth-child(4) {
  grid-column: 6 / span 4;
  grid-row: 2;
}

body[data-series="cross-dresser"] .exhibition-figure:nth-child(5) {
  grid-column: 1 / span 7;
  grid-row: 3;
}

body[data-series="cross-dresser"] .exhibition-figure:nth-child(6) {
  grid-column: 8 / -1;
  grid-row: 3;
}

body[data-series="cross-dresser"] .exhibition-figure:nth-child(7) {
  grid-column: 1 / span 2;
  grid-row: 4;
  justify-self: start;
  width: 74%;
  transform: translateX(clamp(18px, 1.4vw, 28px));
  margin-top: clamp(92px, 8.4vw, 128px);
}

body[data-series="cross-dresser"] .exhibition-figure:nth-child(8) {
  grid-column: 3 / span 3;
  grid-row: 4;
  justify-self: start;
  align-self: end;
  width: 88%;
  transform: translate(clamp(-28px, -1.8vw, -14px), clamp(42px, 4vw, 64px));
  margin-top: 0;
}

body[data-series="cross-dresser"] .exhibition-figure:nth-child(9) {
  grid-column: 5 / span 3;
  grid-row: 4;
  justify-self: start;
  align-self: end;
  width: 84%;
  transform: translate(clamp(22px, 1.7vw, 34px), clamp(42px, 4vw, 64px));
  margin-top: 0;
}

body[data-series="cross-dresser"] .exhibition-figure:nth-child(10) {
  grid-column: 10 / span 3;
  grid-row: 5;
  margin-top: clamp(6px, 0.8vw, 14px);
  transform: translateY(-100%);
}

body[data-series="cross-dresser"] .exhibition-figure:nth-child(11) {
  grid-column: 1 / span 2;
  grid-row: 5;
  justify-self: start;
  width: 74%;
  transform: translateX(clamp(18px, 1.4vw, 28px));
  margin-top: clamp(64px, 6.2vw, 96px);
}

body[data-series="cross-dresser"] .exhibition-figure:nth-child(12) {
  grid-column: 3 / span 4;
  grid-row: 5;
  justify-self: start;
  width: 100%;
  margin-top: clamp(6px, 0.8vw, 14px);
}

body[data-series="cross-dresser"] .exhibition-figure:nth-child(13) {
  grid-column: 8 / span 5;
  grid-row: 5;
  margin-top: clamp(190px, 18vw, 274px);
}

body[data-series="cross-dresser"] .exhibition-figure:nth-child(14) {
  grid-column: 2 / span 3;
  grid-row: 6;
  justify-self: start;
  width: 45%;
  transform: translate(clamp(8px, 0.8vw, 16px), clamp(42px, 4vw, 64px));
  margin-top: clamp(22px, 2.6vw, 42px);
}

body[data-series="cross-dresser"] .exhibition-figure:nth-child(15) {
  grid-column: 4 / span 4;
  grid-row: 6;
  justify-self: start;
  width: 66%;
  transform: translate(clamp(16px, 1.2vw, 28px), clamp(42px, 4vw, 64px));
  margin-top: clamp(74px, 6.8vw, 104px);
}

body[data-series="cross-dresser"] .exhibition-figure:nth-child(16) {
  grid-column: 10 / span 3;
  grid-row: 6;
  justify-self: start;
  width: 52%;
  margin-top: clamp(0px, 0.8vw, 14px);
}

body[data-series="cross-dresser"] .exhibition-figure:nth-child(17) {
  grid-column: 1 / span 8;
  grid-row: 7;
  margin-top: clamp(36px, 4.2vw, 64px);
}

body[data-series="cross-dresser"] .exhibition-figure:nth-child(18) {
  grid-column: 8 / span 4;
  grid-row: 8;
  margin-top: 0;
}

body[data-series="cross-dresser"] .exhibition-figure:nth-child(19) {
  grid-column: 1 / span 5;
  grid-row: 9;
  margin-top: clamp(28px, 3vw, 48px);
}

body[data-series="cross-dresser"] .exhibition-figure:nth-child(20) {
  grid-column: 7 / span 6;
  grid-row: 9;
  margin-top: clamp(88px, 8.5vw, 128px);
}

body[data-series="cross-dresser"] .exhibition-figure:nth-child(21) {
  grid-column: 5 / span 8;
  grid-row: 10;
  margin-top: clamp(44px, 5vw, 78px);
}

.exhibition-stack img {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: none;
  margin: 0;
  object-fit: contain;
  object-position: center;
}

.journal-nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(52px, 10vw, 120px);
  padding-top: 20px;
  border-top: 1px solid var(--color-line);
  color: var(--color-muted);
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
}

.info-page {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.info-intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 0.64fr);
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  max-width: none;
  width: calc(100vw - 136px);
  height: 100svh;
  margin-left: 104px;
  margin-right: 16px;
}

.info-image {
  order: 2;
  margin: 0;
}

.info-image img {
  width: 100%;
  height: 100svh;
  max-height: none;
  object-fit: contain;
  object-position: right top;
}

.bio,
.info-list {
  order: 1;
  max-width: none;
  width: min(360px, 100%);
  margin-top: 0;
  justify-self: end;
  font-size: 13px;
  line-height: 1.35;
  display: grid;
  gap: 28px;
}

.bio p,
.info-list p {
  margin: 0;
}

.info-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 110px);
}

.info-list span {
  color: var(--color-muted);
}

.info-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--color-line);
}

.info-columns h2 {
  margin-bottom: 14px;
  color: var(--color-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-columns p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
}

.site-footer {
  display: none;
}

.site-footer p {
  margin: 0;
  max-width: 260px;
}

.empty-state {
  max-width: 560px;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.45;
}

@media (min-width: 700px) {
  .home-index__image {
    height: 100svh;
  }

  .feature-list {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }

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

  .journal-card:nth-child(2n) {
    margin-top: clamp(44px, 8vw, 112px);
  }

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

  .page--work .project-card:nth-child(2n) {
    margin-top: 0;
  }

  .journal-wall {
    column-count: 3;
  }

  .page--work,
  .page--journal {
    padding-left: clamp(132px, 14vw, 190px);
  }

  .page--work .item-meta {
    grid-template-columns: 1fr auto;
  }

  .journal-header {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
    align-items: end;
  }

  .project-layout .detail-header h1 {
    margin-bottom: 2px;
  }

  .detail-description,
  .journal-note {
    justify-self: end;
  }

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

@media (min-width: 1100px) {
  .project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page--work .project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .page--journal .journal-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .journal-wall {
    column-count: 5;
  }

  .page--work,
  .page--journal {
    padding-left: clamp(148px, 12vw, 210px);
  }

  .page--journal .journal-card {
    grid-column: span 2;
  }

  .page--journal .journal-card:nth-child(3n + 1) {
    grid-column: span 3;
  }

  .page--journal .journal-card:nth-child(3n + 2) {
    grid-column: span 2;
    margin-top: clamp(62px, 8vw, 118px);
  }

  .page--journal .journal-card:nth-child(3n) {
    grid-column: span 2;
    align-self: end;
  }
}

@media (max-width: 520px) {
  body[data-page="home"] .site-header,
  body[data-page="404"] .site-header {
    display: block;
  }

  .site-header {
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    padding: 16px 16px 14px;
    background: var(--color-bg);
  }

  .site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 2px 14px;
    width: auto;
    max-width: calc(100vw - 32px);
    line-height: 1.28;
  }

  .site-nav a,
  .site-nav__label,
  .site-nav__mobile-projects {
    width: auto;
    min-height: 22px;
    display: inline-flex;
    align-items: center;
  }

  .site-nav__label,
  .brand,
  .site-subnav {
    display: none;
  }

  .site-nav > a:first-child {
    order: 1;
    flex-basis: 100%;
    min-height: 20px;
    font-size: 14px;
  }

  .site-nav > a:not(:first-child),
  .site-nav__mobile-projects {
    order: 2;
  }

  .site-nav__mobile-projects {
    display: inline-flex;
    min-height: 22px;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
  }

  .site-nav a[href="info.html"] {
    margin-top: 0;
  }

  .site-nav__mobile-subnav {
    order: 3;
    flex-basis: 100%;
    display: flex;
    gap: 14px;
    min-height: 22px;
    align-items: center;
    color: var(--color-muted);
    font-size: 12px;
    font-style: italic;
  }

  .site-nav__mobile-subnav[hidden] {
    display: none;
  }

  .home-page,
  .page {
    padding-top: 116px;
  }

  body.is-mobile-projects-open .home-page,
  body.is-mobile-projects-open .page {
    padding-top: 146px;
  }

  .page--work,
  .page--journal {
    padding-top: 116px;
  }

  .page--work {
    padding-top: 92px;
  }

  body.is-mobile-projects-open .page--work,
  body.is-mobile-projects-open .page--journal {
    padding-top: 146px;
  }

  .page--work {
    padding-right: 16px;
    padding-left: 16px;
    min-height: 100svh;
    padding-bottom: 10px;
    overflow: hidden;
  }

  .page--work .project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 8px;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .page--work .project-card {
    gap: 3px;
    min-width: 0;
  }

  .page--work .project-card__image {
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .feature-item img,
  .project-card img,
  .journal-card img {
    transition: none;
  }

  .feature-item:hover img,
  .feature-item:focus-visible img,
  .project-card:hover img,
  .project-card:focus-visible img,
  .journal-card:hover img,
  .journal-card:focus-visible img {
    opacity: 1;
  }

  .page--work .item-meta {
    display: block;
    font-size: 9px;
    line-height: 1.14;
  }

  .page--work .item-meta h2 {
    font-size: 9px;
    line-height: 1.14;
  }

  .page--work .item-meta p {
    margin-top: 1px;
    font-size: 9px;
    line-height: 1.14;
    text-align: left;
  }

  .info-page {
    padding: 116px 16px 72px;
  }

  body[data-page="project"] .site-header,
  body[data-page="series-project"] .site-header {
    top: 0;
    left: 0;
    right: 0;
    z-index: 80;
    padding: 16px 16px 14px;
    background: var(--color-bg);
  }

  body[data-page="project"] .site-nav,
  body[data-page="series-project"] .site-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0 14px;
    max-width: calc(100vw - 32px);
  }

  .project-back {
    display: none;
  }

  .mobile-back-area {
    display: flex;
    width: 100%;
    min-height: 112px;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    color: #3d3d3d;
    font-size: 13px;
    line-height: 1.32;
    text-align: center;
  }

  .mobile-back-area:hover,
  .mobile-back-area:focus-visible {
    color: var(--color-text);
    text-decoration: underline;
  }

  .home-index__links,
  .home-index__signature {
    display: none;
  }

  body[data-page="home"] {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    height: 100dvh;
    overflow: hidden;
  }

  body[data-page="work"] {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100svh;
    overflow: hidden;
    overscroll-behavior: none;
  }

  body[data-page="home"] .home-page,
  body.is-mobile-projects-open[data-page="home"] .home-page {
    min-height: 100svh;
    padding-top: 0;
    overflow: hidden;
  }

  body[data-page="home"] .home-index {
    min-height: 100svh;
    padding: 0;
    overflow: hidden;
  }

  .home-index__image {
    width: min(calc(100vw - 16px), 430px);
    height: auto;
    min-width: 0;
    right: auto;
    left: 50%;
    top: 96px;
    bottom: auto;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    overflow: visible;
    justify-items: center;
  }

  body.is-mobile-projects-open .home-index__image {
    top: 124px;
    bottom: auto;
  }

  .home-index__image img {
    width: 100%;
    height: auto;
    max-width: none;
    min-width: 0;
    flex: 0 0 auto;
    object-fit: contain;
    object-position: center bottom;
    transition: none;
  }

  body.is-mobile-projects-open .home-index__image img {
    height: auto;
  }

  .journal-wall {
    column-count: 3;
    column-gap: 6px;
  }

  .journal-photo {
    margin-bottom: 6px;
  }

  .project-detail .image-stack img,
  .series-detail .image-stack img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 72svh;
    aspect-ratio: auto;
  }

  .project-detail,
  .series-detail {
    padding: 100px 16px 48px;
  }

  body[data-page="project"]::before,
  body[data-page="series-project"]::before {
    content: none;
  }

  body.is-mobile-projects-open[data-page="project"]::before,
  body.is-mobile-projects-open[data-page="series-project"]::before {
    content: none;
  }

  body.is-mobile-projects-open .project-detail,
  body.is-mobile-projects-open .series-detail {
    padding-top: 124px;
  }

  .project-layout .detail-header {
    display: none;
  }

  body.is-mobile-projects-open .project-layout .detail-header {
    display: none;
  }

  .series-project--exhibition .detail-header {
    display: none;
  }

  body.is-mobile-projects-open .series-project--exhibition .detail-header {
    display: none;
  }

  .image-stack {
    width: 100%;
    margin-left: 0;
    gap: 28px;
  }

  .series-project--exhibition .image-stack {
    width: 100%;
    margin-left: 0;
    padding-top: 0;
  }

  body[data-series="cross-dresser"] .series-project--exhibition .image-stack,
  body[data-series="cross-dresser"] .exhibition-stack {
    width: 100%;
    margin-left: 0;
  }

  .exhibition-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .exhibition-figure,
  .exhibition-figure--mini,
  .exhibition-figure--small,
  .exhibition-figure--detail,
  .exhibition-figure--medium,
  .exhibition-figure--portrait,
  .exhibition-figure--wide,
  .exhibition-figure--large,
  .exhibition-figure--xlarge,
  .exhibition-figure--anchor,
  .exhibition-figure--hero {
    flex-basis: auto;
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    width: 76%;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .exhibition-figure--mini {
    width: 58%;
  }

  .exhibition-figure--small,
  .exhibition-figure--detail {
    width: 58%;
  }

  .exhibition-figure--portrait,
  .exhibition-figure--medium {
    width: 76%;
  }

  .exhibition-figure--wide,
  .exhibition-figure--large,
  .exhibition-figure--anchor {
    width: 90%;
  }

  .exhibition-figure--xlarge,
  .exhibition-figure--hero {
    width: 94%;
  }

  .exhibition-figure--center {
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .exhibition-figure--end {
    justify-self: end;
    margin-left: auto;
    margin-right: 0;
  }

  .exhibition-figure--start {
    justify-self: start;
  }

  body[data-series="cross-dresser"] .series-detail {
    padding-right: 16px;
    padding-bottom: 120px;
    padding-left: 16px;
  }

  body[data-series="cross-dresser"] .series-project--exhibition .detail-header {
    margin-bottom: 28px;
  }

  body[data-series="cross-dresser"] .series-project--exhibition .image-stack,
  body[data-series="cross-dresser"] .exhibition-stack {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  body[data-series="cross-dresser"] .exhibition-stack {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px 7px;
    align-items: flex-start;
  }

  body[data-series="cross-dresser"] .exhibition-stack img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
  }

  body[data-series="cross-dresser"] .exhibition-figure {
    grid-row: auto !important;
    width: 100%;
    transform: none;
    margin-top: 0;
    margin-bottom: 0;
  }

  body[data-series="cross-dresser"] .exhibition-figure:nth-child(1) {
    grid-column: 3 / span 3 !important;
    grid-row: 1 !important;
  }

  body[data-series="cross-dresser"] .exhibition-figure:nth-child(2) {
    grid-column: 6 / span 7 !important;
    grid-row: 1 !important;
  }

  body[data-series="cross-dresser"] .exhibition-figure:nth-child(3) {
    grid-column: 1 / span 5 !important;
    grid-row: 2 !important;
  }

  body[data-series="cross-dresser"] .exhibition-figure:nth-child(4) {
    grid-column: 6 / span 4 !important;
    grid-row: 2 !important;
  }

  body[data-series="cross-dresser"] .exhibition-figure:nth-child(5) {
    grid-column: 1 / span 7 !important;
    grid-row: 3 !important;
  }

  body[data-series="cross-dresser"] .exhibition-figure:nth-child(6) {
    grid-column: 8 / -1 !important;
    grid-row: 3 !important;
  }

  body[data-series="cross-dresser"] .exhibition-figure:nth-child(7) {
    grid-column: 1 / span 2 !important;
    grid-row: 4 !important;
    width: 74%;
    transform: translateX(8px);
    margin-top: 42px;
  }

  body[data-series="cross-dresser"] .exhibition-figure:nth-child(8) {
    grid-column: 3 / span 3 !important;
    grid-row: 4 !important;
    width: 88%;
    transform: translate(-8px, 22px);
  }

  body[data-series="cross-dresser"] .exhibition-figure:nth-child(9) {
    grid-column: 5 / span 3 !important;
    grid-row: 4 !important;
    width: 84%;
    transform: translate(8px, 22px);
  }

  body[data-series="cross-dresser"] .exhibition-figure:nth-child(10) {
    grid-column: 10 / span 3 !important;
    grid-row: 5 !important;
    transform: translateY(-74%);
  }

  body[data-series="cross-dresser"] .exhibition-figure:nth-child(11) {
    grid-column: 1 / span 2 !important;
    grid-row: 5 !important;
    width: 74%;
    transform: translateX(8px);
    margin-top: 34px;
  }

  body[data-series="cross-dresser"] .exhibition-figure:nth-child(12) {
    grid-column: 3 / span 4 !important;
    grid-row: 5 !important;
  }

  body[data-series="cross-dresser"] .exhibition-figure:nth-child(13) {
    grid-column: 8 / span 5 !important;
    grid-row: 5 !important;
    margin-top: 72px;
  }

  body[data-series="cross-dresser"] .exhibition-figure:nth-child(14) {
    grid-column: 2 / span 3 !important;
    grid-row: 6 !important;
    width: 45%;
    transform: translate(6px, 22px);
    margin-top: 16px;
  }

  body[data-series="cross-dresser"] .exhibition-figure:nth-child(15) {
    grid-column: 4 / span 4 !important;
    grid-row: 6 !important;
    width: 66%;
    transform: translate(8px, 22px);
    margin-top: 38px;
  }

  body[data-series="cross-dresser"] .exhibition-figure:nth-child(16) {
    grid-column: 10 / span 3 !important;
    grid-row: 6 !important;
    width: 52%;
  }

  body[data-series="cross-dresser"] .exhibition-figure:nth-child(17) {
    grid-column: 1 / span 8 !important;
    grid-row: 7 !important;
    margin-top: 24px;
  }

  body[data-series="cross-dresser"] .exhibition-figure:nth-child(18) {
    grid-column: 8 / span 4 !important;
    grid-row: 8 !important;
  }

  body[data-series="cross-dresser"] .exhibition-figure:nth-child(19) {
    grid-column: 1 / span 5 !important;
    grid-row: 9 !important;
    margin-top: 20px;
  }

  body[data-series="cross-dresser"] .exhibition-figure:nth-child(20) {
    grid-column: 7 / span 6 !important;
    grid-row: 9 !important;
    margin-top: 42px;
  }

  body[data-series="cross-dresser"] .exhibition-figure:nth-child(21) {
    grid-column: 5 / span 8 !important;
    grid-row: 10 !important;
    margin-top: 32px;
  }

  .info-intro {
    grid-template-columns: 1fr;
    gap: 22px;
    width: 100%;
    height: auto;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .info-image {
    order: 1;
  }

  .info-list {
    order: 2;
    width: 100%;
    gap: 22px;
    justify-self: start;
  }

  .info-image img {
    height: auto;
    max-height: 54svh;
    object-position: center top;
  }

  .info-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
  }

  .info-row:first-child {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .info-row a {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
  }

  .home-index__links,
  .site-nav {
    max-width: calc(100vw - 132px);
  }

  .brand {
    max-width: 128px;
    text-align: right;
  }

  .lightbox {
    padding: 48px 12px 30px;
    cursor: auto;
  }

  .lightbox__stage {
    --lightbox-stage-height: 72svh;
  }

  .lightbox__close {
    top: 14px;
    right: 12px;
  }

  .lightbox__indicator {
    display: none;
  }

  .item-meta {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .item-meta p {
    text-align: left;
  }

  .journal-nav {
    font-size: 12px;
  }
}
