@font-face {
  font-family: "Switzer";
  src: url("assets/fonts/switzer-latin-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --ink: #1a1a1a;
  --paper: #fff;
  --muted: #757575;
  --gap: clamp(10px, 1.55vw, 20px);
  --page-pad: clamp(19px, 2.29vw, 30px);
  --header-pad: clamp(29.4px, 3.64vw, 47.6px);
  --header-h: 65px;
  --gallery-max: 1598px;
  color-scheme: light;
  font-family: "Switzer", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}
button, a { color: inherit; }
a { text-decoration: none; }
button { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: env(safe-area-inset-top) var(--header-pad) 0;
  background: var(--paper);
  color: var(--ink);
  mix-blend-mode: normal;
  pointer-events: none;
}
.wordmark {
  font-family: "Switzer", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(20px, 1.7vw, 27px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .035em;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 34px);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1;
  letter-spacing: .01em;
}
.site-nav a, .wordmark { outline-offset: 6px; pointer-events: auto; }
.site-nav a { position: relative; }
.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 500ms ease;
}
.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.site-nav a[aria-current="page"] { font-weight: 700; }

.gallery-shell {
  width: min(var(--gallery-max), calc(100% - 2 * var(--page-pad)));
  margin-inline: auto;
  padding: var(--header-h) 0 0;
  container-type: inline-size;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(24, minmax(0, 1fr));
  gap: var(--gap);
}
.work {
  position: relative;
  min-width: 0;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: #101010;
  cursor: zoom-in;
  isolation: isolate;
}
.work:nth-child(1), .work:nth-child(16) { grid-column: span 12; }
.work:nth-child(2), .work:nth-child(9),
.work:nth-child(13) { grid-column: span 5; }
.work:nth-child(3) { grid-column: span 7; }
.work:nth-child(4) { grid-column: span 4; }
.work:nth-child(5) { grid-column: span 9; }
.work:nth-child(6), .work:nth-child(7),
.work:nth-child(14) { grid-column: span 11; }
.work:nth-child(8), .work:nth-child(10),
.work:nth-child(15) { grid-column: span 8; }
.work:nth-child(11), .work:nth-child(17),
.work:nth-child(18) { grid-column: span 6; }
.work:nth-child(12) { grid-column: span 10; }
.work:nth-child(19) { grid-column: 1 / -1; }

/* Six three-work rows, followed by one solo wide work. */
.work:nth-child(-n + 3) { height: clamp(370px, 35vw, 580px); }
.work:nth-child(n + 4):nth-child(-n + 6) { height: clamp(280px, 24vw, 430px); }
.work:nth-child(n + 7):nth-child(-n + 9),
.work:nth-child(n + 10):nth-child(-n + 12),
.work:nth-child(n + 13):nth-child(-n + 15) {
  height: min(520px, calc((100cqw - 2 * var(--gap)) / 3));
}
.work:nth-child(n + 16):nth-child(-n + 18) { height: clamp(370px, 35vw, 580px); }
.work:nth-child(19) { height: auto; aspect-ratio: 16 / 9; }

.work__media,
.work__placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #101010;
  transition: transform 650ms cubic-bezier(.2,.65,.25,1), opacity 300ms ease;
}

.work__placeholder {
  display: grid;
  place-items: center;
  color: rgb(255 255 255 / .42);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.work__placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .4;
  background:
    linear-gradient(115deg, transparent 0 47%, rgb(255 255 255 / .04) 47.1% 47.4%, transparent 47.5%),
    radial-gradient(circle at 20% 20%, rgb(255 255 255 / .04), transparent 34%);
}
.work__caption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0;
  padding: 42px clamp(13px, 1vw, 20px) clamp(12px, .9vw, 18px);
  color: #fff;
  background: linear-gradient(to bottom, transparent, rgb(0 0 0 / .66));
  font-family: "Switzer", "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: .025em;
  text-align: left;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}
.work:hover .work__media,
.work:focus-visible .work__media { transform: scale(1.012); }
.work:hover .work__caption,
.work:focus-visible .work__caption { opacity: 1; transform: none; }
.work:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.site-footer {
  width: min(var(--gallery-max), calc(100% - 2 * var(--page-pad)));
  margin-inline: auto;
  padding: clamp(82px, 7vw, 130px) 0 clamp(70px, 6vw, 112px);
  color: var(--ink);
  text-align: center;
}
.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 28px;
  font-size: 20px;
  font-weight: 400;
}
.social-icon {
  width: 21px;
  height: 21px;
  display: inline-grid;
  place-items: center;
}
.social-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.social-icon svg .fill { fill: currentColor; stroke: none; }
.site-footer p {
  margin: clamp(42px, 3.5vw, 66px) auto 0;
  color: var(--ink);
  font-size: clamp(13px, .92vw, 17px);
  line-height: 1.45;
  letter-spacing: .015em;
}

.to-top {
  position: fixed;
  z-index: 15;
  right: max(20px, var(--page-pad));
  bottom: max(20px, env(safe-area-inset-bottom));
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgb(235 235 235 / .92);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  cursor: pointer;
}
.to-top.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: #dedede; }
.to-top svg { width: 23px; fill: none; stroke: #777; stroke-linecap: round; stroke-width: 1.6; }

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
  cursor: ew-resize;
}
.lightbox::backdrop { background: rgb(255 255 255 / .94); }
.lightbox:focus { outline: none; }
.lightbox[open] { display: block; }
.lightbox__bar {
  position: absolute;
  z-index: 3;
  inset: 0 0 auto;
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: start;
  padding: calc(env(safe-area-inset-top) + 24px) clamp(24px, 2.5vw, 40px) 0;
  color: var(--ink);
  font-family: "Switzer", "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}
.lightbox__brand {
  justify-self: start;
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  font-size: 12px;
  letter-spacing: -.015em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}
.lightbox__info {
  justify-self: center;
  margin: 0;
}
.lightbox__info-secondary,
.lightbox__index-current { color: #9a9a9a; }
.lightbox__tools {
  justify-self: end;
  display: flex;
  gap: clamp(34px, 5vw, 92px);
  align-items: flex-start;
}
.lightbox__index { margin: 0; white-space: nowrap; }
.lightbox__close {
  min-width: 0;
  min-height: 0;
  border: 0;
  padding: 0;
  background: transparent;
  color: #9a9a9a;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}
.lightbox__stage {
  width: 100vw;
  height: 100dvh;
  display: grid;
  place-items: center;
  padding: 64px 0 12px;
}
.lightbox__content {
  max-width: 100vw;
  max-height: calc(100dvh - 76px);
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lightbox__media {
  display: grid;
  place-items: center;
  pointer-events: none;
}
.lightbox__media img,
.lightbox__media video {
  width: auto;
  height: auto;
  max-width: min(90vw, 1800px);
  max-height: calc(100dvh - 76px);
  object-fit: contain;
}
.lightbox__empty {
  width: min(82vw, 1600px);
  height: 80dvh;
  display: grid;
  place-items: center;
  background: #101010;
  color: rgb(255 255 255 / .55);
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.lightbox__nav {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 56px;
  height: 80px;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #fff;
  mix-blend-mode: difference;
  font-size: 25px;
  font-weight: 400;
  cursor: pointer;
}
.lightbox__nav--previous { left: 0; }
.lightbox__nav--next { right: 0; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.contact-main {
  width: min(var(--gallery-max), calc(100% - 2 * var(--page-pad)));
  margin-inline: auto;
  padding-top: calc(var(--header-h) + clamp(24px, 3vw, 48px));
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  min-height: clamp(580px, 72svh, 820px);
  background: #f4f3f0;
}
.contact-visual {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #dededb;
}
.contact-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 56%;
}
.contact-panel {
  align-self: center;
  padding: clamp(44px, 5.2vw, 92px);
}
.contact-kicker {
  margin: 0 0 clamp(24px, 3vw, 44px);
  color: var(--muted);
  font-size: clamp(12px, .82vw, 14px);
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.contact-panel h1 {
  max-width: 8ch;
  margin: 0;
  font-size: clamp(48px, 5.5vw, 88px);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.045em;
  text-wrap: balance;
}
.contact-copy {
  max-width: 600px;
  margin-top: clamp(34px, 4vw, 62px);
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.55;
}
.contact-copy p { margin: 0 0 1em; }
.contact-copy p:last-child { margin-bottom: 0; }
.contact-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 24px;
  align-items: center;
  margin-top: clamp(34px, 4vw, 62px);
  padding: 22px 0;
  border-top: 1px solid rgb(26 26 26 / .35);
  border-bottom: 1px solid rgb(26 26 26 / .35);
}
.contact-cta span {
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.contact-cta strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: clamp(18px, 1.35vw, 23px);
  font-weight: 500;
  line-height: 1.25;
}
.contact-cta svg {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  transition: transform 220ms ease;
}
.contact-cta:hover svg,
.contact-cta:focus-visible svg { transform: translateX(5px); }
.contact-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
  margin-top: clamp(34px, 4vw, 58px);
}
.contact-meta h2 {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-meta p {
  margin: 0;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.55;
}
.contact-page .site-footer {
  padding-top: clamp(70px, 8vw, 120px);
}

.noscript { padding: 80px 0; text-align: center; }

@media (max-width: 900px) {
  :root { --header-h: 64px; }
  .site-header { align-items: flex-start; padding-top: 18px; }
  .wordmark { font-size: 22px; }
  .site-nav { gap: 18px; font-size: 15px; }
  .gallery { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .work[data-shape] {
    grid-column: span 2;
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .work[data-shape="wide"],
  .work[data-shape="standard"],
  .work[data-shape="panorama"] { grid-column: span 4; }
  .work[data-shape="wide"],
  .work[data-shape="panorama"] { aspect-ratio: 4 / 3; }
  .work[data-shape="standard"] { aspect-ratio: 7 / 5; }
  .work[data-shape="portrait"] { aspect-ratio: 7 / 10; }
  .work[data-shape="slim"] { aspect-ratio: 9 / 16; }
  .work[data-shape="square"] { aspect-ratio: 1; }
  .work[data-shape="full"] { grid-column: span 6; aspect-ratio: 16 / 9; }
  .contact-layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .contact-panel {
    grid-row: 1;
    padding: clamp(52px, 8vw, 84px);
  }
  .contact-visual {
    grid-row: 2;
    aspect-ratio: 16 / 10;
  }
  .work__caption { opacity: 1; transform: none; }
}

@media (max-width: 620px) {
  :root { --page-pad: 12px; --header-h: 96px; --gap: 8px; }
  .site-header { display: block; padding-top: 18px; }
  .wordmark { display: inline-block; font-size: 19px; }
  .site-nav { justify-content: space-between; width: 100%; margin-top: 20px; font-size: 14px; }
  .gallery { display: block; }
  .work[data-shape] { width: 100%; margin-bottom: var(--gap); aspect-ratio: 4 / 3; }
  .work[data-shape="standard"] { aspect-ratio: 7 / 5; }
  .work[data-shape="portrait"] { aspect-ratio: 7 / 10; }
  .work[data-shape="slim"] { aspect-ratio: 9 / 16; }
  .work[data-shape="square"] { aspect-ratio: 1; }
  .work[data-shape="full"] { aspect-ratio: 16 / 9; }
  .contact-main { padding-top: calc(var(--header-h) + 18px); }
  .contact-panel { padding: 42px 24px 46px; }
  .contact-panel h1 { font-size: clamp(50px, 16vw, 68px); }
  .contact-copy { margin-top: 32px; font-size: 17px; }
  .contact-cta { margin-top: 34px; gap: 4px 14px; }
  .contact-cta strong { font-size: 17px; }
  .contact-meta { gap: 24px; margin-top: 34px; }
  .contact-meta p { font-size: 15px; }
  .contact-visual { aspect-ratio: 4 / 5; }
  .contact-page .site-footer { padding-top: 64px; }
  .site-footer p { max-width: 92%; }
  .to-top { width: 48px; height: 48px; }
  .lightbox__caption { max-width: 70%; font-size: 11px; }
  .lightbox__nav { width: 48px; }
}

.landing-page {
  font-family: "Switzer", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
}
.landing-header {
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: start;
  padding: calc(env(safe-area-inset-top) + 24px) clamp(24px, 2.5vw, 40px) 0;
}
.landing-page .wordmark {
  justify-self: start;
  font-family: "Switzer", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.015em;
}
.landing-context,
.landing-index {
  margin: 0;
  font-size: 11px;
  line-height: 1;
  text-transform: uppercase;
}
.landing-context {
  justify-self: center;
  color: #9a9a9a;
}
.landing-context strong { color: var(--ink); font-weight: 500; }
.landing-tools {
  justify-self: end;
  display: flex;
  align-items: flex-start;
  gap: clamp(34px, 5vw, 92px);
}
.landing-index {
  color: #9a9a9a;
  white-space: nowrap;
}
.landing-index span { color: var(--ink); }
.landing-header .site-nav {
  gap: 14px;
  font-size: 11px;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.landing-header .site-nav a {
  color: #9a9a9a;
  font-weight: 500;
  white-space: nowrap;
}
.landing-header .site-nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 500;
}
.landing-header .site-nav a::after { display: none; }
.landing-feature {
  min-height: 100svh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(120px, 14vh, 220px) var(--page-pad) clamp(100px, 13vh, 180px);
}
.landing-feature picture {
  width: min(64vw, 1280px);
  display: block;
}
.landing-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 900px) {
  .landing-header {
    grid-template-columns: auto 1fr;
    align-items: start;
  }
  .landing-context { display: none; }
  .landing-tools { grid-column: 2; }
  .landing-feature picture { width: min(82vw, 760px); }
}

@media (max-width: 620px) {
  .landing-header {
    height: 96px;
    display: block;
    padding: calc(env(safe-area-inset-top) + 18px) 12px 0;
  }
  .landing-page .wordmark { font-size: 12px; }
  .landing-tools {
    display: block;
    margin-top: 20px;
  }
  .landing-index { display: none; }
  .landing-header .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 6px;
    margin: 0;
    font-size: 10px;
  }
  .landing-feature {
    min-height: auto;
    padding: 134px 12px 88px;
  }
  .landing-feature picture { width: 100%; }
  .landing-feature img {
    aspect-ratio: 4 / 5;
    object-position: center;
  }
}

.editorial-header {
  height: 64px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: calc(env(safe-area-inset-top) + 24px) clamp(24px, 2.5vw, 40px) 0;
}
.editorial-header .wordmark {
  font-family: "Switzer", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.015em;
}
.editorial-header .site-nav {
  gap: 14px;
  font-size: 11px;
  line-height: 1;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
.editorial-header .site-nav a {
  color: #9a9a9a;
  font-weight: 500;
  white-space: nowrap;
}
.editorial-header .site-nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 500;
}
.editorial-header .site-nav a::after { display: none; }

.landing-page .site-footer {
  color: #9a9a9a;
  font-family: "Switzer", "Helvetica Neue", Arial, sans-serif;
}
.landing-page .social-links {
  color: #9a9a9a;
  font-family: "Switzer", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
}
.landing-page .site-footer p {
  color: #9a9a9a;
  font-family: "Switzer", "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  font-weight: 500;
}

.editorial-page {
  min-height: 100svh;
  font-family: "Switzer", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
}
.editorial-contact {
  min-height: 100svh;
}
.contact-corner {
  position: absolute;
  top: clamp(84px, 8vh, 112px);
  right: clamp(24px, 2.5vw, 40px);
  width: min(480px, 38vw);
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.22;
}
.contact-bio {
  margin: 0;
  max-width: 470px;
}
.contact-list {
  margin: clamp(20px, 2vw, 28px) 0 0;
  padding: 0;
}
.contact-list > div {
  display: grid;
  grid-template-columns: max-content max-content;
  gap: clamp(20px, 2vw, 32px);
}
.contact-list dt,
.contact-list dd { margin: 0; }
.contact-list dd {
  color: #9a9a9a;
  text-align: left;
}
.contact-list a { transition: color 180ms ease; }
.contact-list a:hover,
.contact-list a:focus-visible { color: var(--ink); }
.contact-footer {
  position: fixed;
  right: clamp(24px, 2.5vw, 40px);
  bottom: max(22px, env(safe-area-inset-bottom));
  color: #9a9a9a;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}
.contact-footer p { margin: 0; }

@media (max-width: 620px) {
  .editorial-header {
    height: 96px;
    display: block;
    padding: calc(env(safe-area-inset-top) + 18px) 12px 0;
  }
  .editorial-header .wordmark { font-size: 12px; }
  .editorial-header .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 6px;
    margin-top: 20px;
    font-size: 10px;
  }
  .landing-page .gallery-shell { padding-top: 96px; }
  .contact-corner {
    position: static;
    width: auto;
    margin: 0 12px 90px;
    padding-top: 116px;
    font-size: 14px;
  }
  .contact-list { margin-top: 24px; }
  .contact-list > div {
    grid-template-columns: 88px 1fr;
    gap: 12px;
  }
  .contact-footer {
    right: 12px;
    bottom: max(14px, env(safe-area-inset-bottom));
  }
  .lightbox__bar {
    height: 96px;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 18px 12px;
    padding: calc(env(safe-area-inset-top) + 18px) 12px 0;
    font-size: 10px;
  }
  .lightbox__brand { grid-column: 1; grid-row: 1; }
  .lightbox__tools {
    grid-column: 2;
    grid-row: 1;
    gap: 18px;
  }
  .lightbox__info {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
  }
  .lightbox__stage { padding: 96px 0 12px; }
  .lightbox__media img,
  .lightbox__media video {
    max-width: calc(100vw - 32px);
    max-height: calc(100dvh - 108px);
  }
}

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