:root {
  --black: #000;
  --carbon: #080808;
  --smoke: #777977;
  --dim: #5e605e;
  --control: #555;
  --copy: #a6a8a5;
  --ghost-rule: rgba(255,255,255,.08);
  --silver: #d9dad7;
  --white: #f4f5f2;
  --blue: #4c64ff;
  --rule: #292a29;
  --bezel: #131313;
  --bezel-ridge: #303030;
  --camera-green: #54ff7a;
  --camera-red: #ff5b48;
  --font-display: "Libre Caslon Display", Georgia, serif;
  --font-body: "Libre Franklin", "Helvetica Neue", Arial, sans-serif;
  --font-interface: "Libre Franklin", "Helvetica Neue", Arial, sans-serif;
  --edge: clamp(18px, 2.6vw, 42px);
  --section: clamp(96px, 15vw, 220px);
  --page-max: 1440px;
  color-scheme: dark;
  font-family: var(--font-body);
  font-synthesis: none;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--silver);
  background: var(--black);
  font-weight: 400;
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.62;
  letter-spacing: .005em;
}

.home-page.is-intro-active {
  overflow: hidden;
  animation: intro-scroll-fallback 1ms 17620ms forwards;
}

@keyframes intro-scroll-fallback {
  to { overflow-x: hidden; overflow-y: auto; }
}

a,
button { color: inherit; }

a { text-decoration: none; }

button {
  padding: 0;
  border: 0;
  font: inherit;
  background: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 6px;
}

img { max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 9px 12px;
  color: var(--black);
  background: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.ambient-canvas {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.shutter-flash {
  position: fixed;
  z-index: 90;
  inset: 0;
  opacity: 0;
  background: var(--white);
  pointer-events: none;
}

.is-shooting .shutter-flash { animation: shutter-release 340ms steps(2, end); }

@keyframes shutter-release {
  0%, 100% { opacity: 0; }
  28% { opacity: .72; }
  46% { opacity: 0; }
  62% { opacity: .14; }
}

.focus-cursor {
  position: fixed;
  z-index: 80;
  width: 46px;
  height: 46px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.86);
  transition: opacity 180ms ease, transform 420ms cubic-bezier(.16, 1, .3, 1);
}

.focus-cursor.is-active { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.focus-cursor.is-locking { transform: translate(-50%, -50%) scale(.72); }

.focus-cursor i {
  position: absolute;
  width: 13px;
  height: 13px;
  border-color: var(--blue);
  border-style: solid;
  filter: drop-shadow(0 0 3px rgba(76, 100, 255, .7));
}

.focus-cursor i:nth-child(1) { top: 0; left: 0; border-width: 1px 0 0 1px; }
.focus-cursor i:nth-child(2) { top: 0; right: 0; border-width: 1px 1px 0 0; }
.focus-cursor i:nth-child(3) { right: 0; bottom: 0; border-width: 0 1px 1px 0; }
.focus-cursor i:nth-child(4) { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.focus-cursor b { position: absolute; top: 21px; left: 21px; width: 4px; height: 4px; background: var(--blue); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  width: min(100%, var(--page-max));
  margin-inline: auto;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  min-height: 64px;
  padding: 14px var(--edge);
  font-family: var(--font-interface);
  font-size: .72rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.home-page .site-header { mix-blend-mode: difference; }

.home-page .site-header,
.home-page .home-projects,
.home-page .recognition,
.home-page .about-contact,
.home-page footer {
  transition: opacity 620ms cubic-bezier(.16, 1, .3, 1), transform 620ms cubic-bezier(.16, 1, .3, 1), visibility 0s linear 620ms;
}

.home-page.is-intro-active .site-header,
.home-page.is-intro-active .home-projects,
.home-page.is-intro-active .recognition,
.home-page.is-intro-active .about-contact,
.home-page.is-intro-active footer {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  animation: intro-content-fallback 620ms 17s cubic-bezier(.16, 1, .3, 1) forwards;
}

.home-page.is-content-ready .site-header,
.home-page.is-content-ready .home-projects,
.home-page.is-content-ready .recognition,
.home-page.is-content-ready .about-contact,
.home-page.is-content-ready footer {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 180ms;
}

@keyframes intro-content-fallback {
  to { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0); }
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: -.03em;
  text-transform: none;
}

.brand img { width: 22px; height: 27px; }

.site-header nav { display: flex; gap: clamp(18px, 3vw, 46px); }
.site-header nav a { color: var(--smoke); transition: color 180ms ease; }
.site-header nav a:hover,
.site-header nav a[aria-current="page"] { color: var(--white); }

.camera-topline,
.camera-bottomline,
.camera-index,
.camera-focus-status,
.section-index,
.section-label,
figcaption,
.project-facts,
.opening-title > p,
.opening-count,
.opening-scroll {
  font-family: var(--font-interface);
  font-size: .69rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.home-page .recognition > h2,
.home-page .about-contact h2 { font-family: var(--font-display); }

.home-viewfinder-frame {
  position: fixed;
  z-index: 42;
  inset: 10px;
  border: 1px solid rgba(244,245,242,.07);
  pointer-events: none;
}

.home-viewfinder-frame i {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: rgba(244,245,242,.46);
  border-style: solid;
}
.home-viewfinder-frame i:nth-child(1) { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.home-viewfinder-frame i:nth-child(2) { top: -1px; right: -1px; border-width: 1px 1px 0 0; }
.home-viewfinder-frame i:nth-child(3) { right: -1px; bottom: -1px; border-width: 0 1px 1px 0; }
.home-viewfinder-frame i:nth-child(4) { bottom: -1px; left: -1px; border-width: 0 0 1px 1px; }

.camera-hero {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  min-height: 100svh;
  margin-inline: auto;
  padding: 0;
  place-items: center;
}

.camera-hero[hidden] { display: none; }

.home-page.is-intro-active .camera-hero {
  position: fixed;
  z-index: 60;
  inset: 0;
  animation: intro-camera-fallback 1ms 17.62s linear forwards;
}

.home-page.is-intro-active .camera-hero.is-intro-leaving {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.012);
  transition: opacity 620ms cubic-bezier(.7, 0, .84, 0), transform 620ms cubic-bezier(.7, 0, .84, 0), visibility 0s linear 620ms;
}

@keyframes intro-camera-fallback {
  to { position: relative; z-index: 1; inset: auto; }
}

.camera-screen {
  position: relative;
  width: 100%;
  height: 100svh;
  max-height: none;
  aspect-ratio: auto;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--black);
  box-shadow: none;
  animation: camera-power 1100ms cubic-bezier(.16, 1, .3, 1) both;
}

.camera-screen::before {
  position: absolute;
  z-index: 7;
  inset: 0;
  border: 1px solid rgba(244,245,242,.16);
  box-shadow: inset 0 0 26px rgba(0,0,0,.42);
  content: "";
  pointer-events: none;
}

.camera-screen::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(118deg, rgba(255,255,255,.025), transparent 28%, transparent 72%, rgba(255,255,255,.018));
  content: "";
  pointer-events: none;
}

@keyframes camera-power {
  from { opacity: .15; filter: brightness(.3); clip-path: inset(49% 0); }
  to { opacity: 1; filter: brightness(1); clip-path: inset(0); }
}

.camera-slides,
.camera-image-shade,
.camera-preview-shutter { position: absolute; inset: 0; }
.camera-slides { z-index: 0; overflow: hidden; background: var(--black); }
.camera-slides--portrait { display: none; }
.camera-slide { position: absolute; inset: 0; margin: 0; opacity: 0; transform: scale(1.018); transition: transform 7s linear; }
.camera-slide.is-active { opacity: 1; transform: scale(1); }
.camera-slide img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(.82) contrast(1.12); }
.camera-image-shade { z-index: 1; background: radial-gradient(ellipse at 50% 48%, rgba(0,0,0,.14) 0 28%, rgba(0,0,0,.34) 68%, rgba(0,0,0,.68) 100%), linear-gradient(180deg, rgba(0,0,0,.34), transparent 25%, transparent 66%, rgba(0,0,0,.56)); pointer-events: none; }
.camera-preview-shutter { z-index: 2; overflow: hidden; pointer-events: none; }
.camera-preview-shutter i { position: absolute; right: 0; left: 0; height: 50%; background: #030303; transition: transform 340ms cubic-bezier(.76, 0, .24, 1); }
.camera-preview-shutter i:first-child { top: 0; transform: translateY(-101%); }
.camera-preview-shutter i:last-child { bottom: 0; transform: translateY(101%); }
.camera-hero.is-slide-capturing .camera-preview-shutter i { transform: translateY(0); }

.camera-level { position: absolute; z-index: 5; top: 22%; left: 50%; width: 34px; height: 24px; opacity: .72; pointer-events: none; transform: translateX(-50%); }
.camera-level i,
.camera-level b { position: absolute; top: 50%; left: 50%; display: block; background: var(--white); transform: translate(-50%, -50%); }
.camera-level i { width: 34px; height: 1px; }
.camera-level b { width: 1px; height: 24px; }

.camera-topline { position: absolute; z-index: 5; top: 7px; right: 18px; left: 18px; display: grid; min-height: 28px; padding: 0; align-items: center; color: var(--white); background: none; grid-template-columns: auto auto 1fr auto; gap: clamp(12px, 2vw, 24px); text-shadow: 0 1px 3px #000, 0 0 8px #000; }
.camera-topline p { margin: 0; }
.camera-topline strong { color: var(--white); font-weight: 500; }
.camera-mode-chip,
.camera-storage { display: flex; gap: 6px; align-items: center; }
.camera-mode-chip { min-width: 38px; color: var(--white); text-align: left; }
.camera-storage { color: var(--white); }
.camera-awb { margin-left: 2px; padding: 0 3px 1px; color: var(--black); background: var(--white); line-height: 1.15; text-shadow: none; }
.camera-top-centre { position: absolute; left: 50%; display: grid; color: var(--white); justify-items: center; line-height: 1; transform: translateX(-50%); }
.camera-top-centre small { font-size: .65rem; }
.camera-battery { display: flex; gap: 5px; align-items: center; justify-self: end; }
.camera-battery > span { position: relative; display: block; width: 25px; height: 11px; border: 1px solid var(--silver); }
.camera-battery > span::after { position: absolute; top: 2px; right: -4px; width: 2px; height: 5px; background: var(--silver); content: ""; }
.camera-battery i { display: block; width: 72%; height: 7px; margin: 1px; background: var(--silver); }

.hud-camera-icon { position: relative; display: block; width: 16px; height: 11px; border: 1px solid currentColor; }
.hud-camera-icon::before { position: absolute; top: -4px; left: 2px; width: 6px; height: 3px; border: 1px solid currentColor; border-bottom: 0; content: ""; }
.hud-camera-icon::after { position: absolute; top: 3px; left: 6px; width: 3px; height: 3px; border: 1px solid currentColor; border-radius: 50%; content: ""; }
.hud-card-icon { display: block; width: 9px; height: 13px; border: 1px solid currentColor; clip-path: polygon(0 0, 70% 0, 100% 25%, 100% 100%, 0 100%); }
.hud-flash-icon { position: relative; display: block; width: 10px; height: 12px; }
.hud-flash-icon::before { position: absolute; inset: 0; background: currentColor; clip-path: polygon(48% 0, 100% 0, 68% 42%, 100% 42%, 28% 100%, 43% 56%, 8% 56%); content: ""; }

.camera-side-rail { position: absolute; z-index: 5; top: 62px; bottom: 88px; display: grid; gap: 8px; align-content: center; color: var(--white); font-family: var(--font-interface); font-size: .7rem; text-shadow: 0 1px 3px #000, 0 0 8px #000; }
.camera-side-left { left: 18px; }
.camera-side-right { right: 18px; }
.camera-side-rail span { display: grid; width: 48px; min-height: 38px; align-content: center; justify-items: start; }
.camera-side-right span { justify-items: end; }
.camera-side-rail b { font-size: .78rem; font-weight: 500; line-height: 1; }
.camera-side-rail small { color: var(--white); font-size: .66rem; letter-spacing: .03em; line-height: 1.05; text-transform: uppercase; }
.camera-side-rail .is-active b { padding: 2px 5px; border: 1px solid var(--white); color: var(--white); background: rgba(0,0,0,.5); text-shadow: none; }
.hud-drive-icon { position: relative; width: 18px; height: 12px; border: 1px solid currentColor; }
.hud-drive-icon::before { position: absolute; top: 3px; right: 3px; left: 3px; height: 1px; background: currentColor; box-shadow: 0 3px 0 currentColor; content: ""; }
.hud-area-icon { position: relative; width: 18px; height: 14px; border: 1px solid currentColor; }
.hud-area-icon::before { position: absolute; inset: 3px; border: 1px solid currentColor; content: ""; }
.hud-face-icon { position: relative; width: 16px; height: 16px; border: 1px solid currentColor; border-radius: 50%; }
.hud-face-icon::after { position: absolute; top: 5px; left: 4px; width: 6px; height: 4px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; border-left: 1px solid currentColor; border-radius: 0 0 50% 50%; content: ""; }
.hud-eye-icon { position: relative; width: 19px; height: 12px; border: 1px solid currentColor; border-radius: 50% 15%; transform: rotate(45deg); }
.hud-eye-icon::after { position: absolute; top: 3px; left: 6px; width: 4px; height: 4px; border: 1px solid currentColor; border-radius: 50%; content: ""; }
.camera-role-label { position: absolute; z-index: 5; top: 42px; left: 50%; margin: 0; color: var(--white); font-family: var(--font-interface); font-size: .65rem; letter-spacing: .09em; opacity: .82; text-shadow: 0 1px 3px #000, 0 0 8px #000; text-transform: uppercase; transform: translateX(-50%); }

.camera-subject { position: absolute; z-index: 4; inset: 0; display: grid; place-items: center; }
.camera-subject h1 {
  display: flex;
  gap: .2em;
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(4.25rem, 9vw, 6rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .82;
  opacity: .42;
  filter: blur(12px);
  text-shadow: 0 3px 30px rgba(0,0,0,.98), 0 1px 4px rgba(0,0,0,.95);
  transform: scale(1.035);
  transition: opacity 1200ms ease, filter 1800ms cubic-bezier(.16, 1, .3, 1), transform 1800ms cubic-bezier(.16, 1, .3, 1);
}

.camera-focus-box { position: absolute; top: calc(50% - clamp(96px, 14svh, 132px)); left: 50%; width: 46px; height: 34px; opacity: .62; transform: translate(-50%, -50%) scale(1.8); transition: opacity 700ms ease, transform 1700ms cubic-bezier(.16, 1, .3, 1); }
.camera-focus-box i { position: absolute; width: 11px; height: 11px; border-color: var(--silver); border-style: solid; transition: border-color 240ms ease; }
.camera-focus-box i:nth-child(1) { top: 0; left: 0; border-width: 1px 0 0 1px; }
.camera-focus-box i:nth-child(2) { top: 0; right: 0; border-width: 1px 1px 0 0; }
.camera-focus-box i:nth-child(3) { right: 0; bottom: 0; border-width: 0 1px 1px 0; }
.camera-focus-box i:nth-child(4) { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.camera-focus-box b { position: absolute; top: 50%; left: 50%; width: 5px; height: 5px; opacity: 0; background: var(--camera-red); transform: translate(-50%, -50%); transition: opacity 240ms ease; }

.camera-focus-status { position: absolute; top: calc(50% + 64px); left: 50%; width: 150px; margin: 0; color: var(--smoke); font-weight: 500; text-align: center; transform: translateX(-50%); transition: color 240ms ease; }

.camera-settings-strip { position: absolute; z-index: 5; bottom: 10px; left: 18px; display: grid; width: min(72%, 720px); min-height: 42px; padding: 7px 8px 4px; align-items: end; color: var(--white); background: linear-gradient(0deg, rgba(0,0,0,.86), rgba(0,0,0,.18)); font-family: var(--font-interface); grid-template-columns: 36px 1.3fr 1fr 1.2fr 1fr; text-shadow: 0 1px 3px #000, 0 0 8px #000; }
.camera-settings-strip > span { min-width: 0; padding-inline: 8px; }
.camera-settings-strip strong { color: var(--white); font-size: 1.12rem; font-weight: 500; letter-spacing: 0; line-height: 1.1; opacity: .76; transition: opacity 700ms ease; }
.camera-settings-strip strong small { margin-right: 3px; color: var(--white); font-size: .65rem; letter-spacing: .04em; }
.camera-enter {
  position: absolute;
  z-index: 6;
  bottom: 76px;
  left: 50%;
  min-width: 156px;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(244,245,242,.72);
  color: var(--white);
  background: rgba(0,0,0,.72);
  font-family: var(--font-interface);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .11em;
  opacity: 0;
  text-transform: uppercase;
  transform: translate(-50%, 8px);
  transition: opacity 360ms cubic-bezier(.16, 1, .3, 1), transform 500ms cubic-bezier(.16, 1, .3, 1), background-color 180ms ease;
}
.camera-enter.is-visible { opacity: 1; transform: translate(-50%, 0); }
.camera-enter:hover,
.camera-enter:focus-visible { background: rgba(244,245,242,.14); }
.camera-wireless { position: relative; align-self: center; width: 22px; height: 22px; padding: 0 !important; border: 2px solid var(--camera-green); border-radius: 50%; box-shadow: 0 0 0 1px rgba(0,0,0,.72); }
.camera-wireless::before,
.camera-wireless::after { position: absolute; border: 1px solid var(--camera-green); border-radius: 50%; content: ""; }
.camera-wireless::before { inset: 3px; }
.camera-wireless::after { inset: 7px; background: var(--camera-green); }

.camera-index { position: absolute; bottom: 22px; margin: 0; color: var(--dim); }
.camera-index-left { left: var(--edge); }
.camera-index-right { right: var(--edge); }

.camera-hero.is-resolving .camera-subject h1 { opacity: 1; filter: blur(0); transform: scale(1); }
.camera-hero.is-resolving .camera-focus-box { opacity: .82; transform: translate(-50%, -50%) scale(1); }
.camera-hero.is-resolving .camera-settings-strip strong { opacity: 1; }
.camera-hero.is-focused .camera-focus-box i { border-color: var(--camera-green); }
.camera-hero.is-focused .camera-focus-box b { opacity: 1; }
.camera-hero.is-focused .camera-focus-status { color: var(--white); }

.shutter-blades { position: fixed; z-index: 89; inset: 0; pointer-events: none; }
.shutter-blades i { position: absolute; right: 0; left: 0; height: 50%; background: var(--black); transition: transform 420ms cubic-bezier(.76, 0, .24, 1); }
.shutter-blades i:first-child { top: 0; transform: translateY(-101%); }
.shutter-blades i:last-child { bottom: 0; transform: translateY(101%); }
.is-shooting .shutter-blades i { transform: translateY(0); }

.project-index-main { position: relative; z-index: 1; width: min(100%, var(--page-max)); margin-inline: auto; padding: 88px var(--edge) 0; }
.home-projects { position: relative; z-index: 1; width: min(100%, var(--page-max)); margin-inline: auto; padding: var(--section) var(--edge); border-top: 1px solid var(--rule); }
.home-projects-head { display: grid; margin-bottom: clamp(64px, 10vw, 140px); grid-template-columns: minmax(0, 1fr) minmax(280px, 36ch); gap: clamp(36px, 7vw, 110px); align-items: end; }
.home-projects-head h2 { margin: 22px 0 0; color: var(--white); font-family: var(--font-display); font-size: clamp(2.7rem, 6vw, 5.5rem); font-weight: 400; letter-spacing: -.04em; line-height: .9; }
.home-projects-head > p { max-width: 36ch; margin: 0 0 5px; color: var(--copy); font-size: .92rem; line-height: 1.55; }
.home-projects .project-thumb-featured { grid-column: auto; }
.home-projects .project-thumb:first-child { grid-column: 1 / -1; }
.home-projects .project-thumb-image,
.home-projects .project-thumb-featured .project-thumb-image,
.home-projects .project-thumb-portrait .project-thumb-image { height: min(68svh, 760px); }
.home-projects-more { display: flex; width: min(100%, 360px); margin: clamp(48px, 7vw, 96px) 0 0 auto; justify-content: space-between; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.34); font-family: var(--font-interface); font-size: .69rem; letter-spacing: .09em; text-transform: uppercase; }
.project-index-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 4vw, 60px) clamp(18px, 2.6vw, 38px); }
.project-thumb { display: grid; min-width: 0; align-content: start; }
.project-thumb-featured { grid-column: 1 / -1; cursor: none; }
.project-thumb-image,
.project-thumb-placeholder { width: 100%; margin: 0; overflow: hidden; background: var(--carbon); }
.project-thumb-featured .project-thumb-image { height: min(76svh, 820px); }
.project-thumb-image img { display: block; width: 100%; height: 100%; object-fit: cover; filter: brightness(.86) saturate(.92); transform: scale(1.006); transition: filter 700ms ease, transform 1200ms cubic-bezier(.16, 1, .3, 1); }
.project-thumb-featured:hover img,
.project-thumb-featured:focus-visible img { filter: brightness(1) saturate(1); transform: scale(1); }
.project-thumb-portrait .project-thumb-image { display: grid; height: min(90svh, 960px); place-items: center; }
.project-thumb-portrait .project-thumb-image img { object-fit: contain; }
.project-thumb-placeholder { display: grid; min-height: 48svh; border: 1px solid var(--rule); place-items: center; }
.project-thumb-placeholder span { color: rgba(244,245,242,.08); font-family: var(--font-display); font-size: clamp(4.25rem, 9vw, 6rem); font-weight: 400; letter-spacing: -.045em; }
.project-thumb-caption { display: grid; padding: 15px 0 30px; border-top: 1px solid var(--rule); grid-template-columns: 110px minmax(0, 1fr) auto; gap: clamp(14px, 2.5vw, 36px); align-items: baseline; }
.project-thumb-caption span,
.project-thumb-caption p,
.project-index-note a { font-family: var(--font-interface); font-size: .69rem; letter-spacing: .09em; text-transform: uppercase; }
.project-thumb-caption span,
.project-thumb-caption p { margin: 0; color: var(--smoke); }
.project-thumb-caption h1,
.project-thumb-caption h2 { margin: 0; color: var(--white); font-family: var(--font-display); font-size: clamp(1.8rem, 3.6vw, 3.4rem); font-weight: 400; letter-spacing: -.04em; line-height: .92; }
.project-thumb-pending .project-thumb-caption { grid-template-columns: 90px minmax(0, 1fr); }
.project-thumb-pending .project-thumb-caption p { grid-column: 2; }
.project-thumb-pending .project-thumb-caption h2 { color: var(--copy); font-size: clamp(1.4rem, 2.7vw, 2.4rem); }
.project-index-note { display: grid; min-height: 58svh; padding: var(--section) 0 60px; align-content: end; gap: 42px; }
.project-index-note p { max-width: 42ch; margin: 0; color: var(--copy); }
.project-index-note a { display: flex; width: min(100%, 340px); justify-content: space-between; padding: 10px 0; border-top: 1px solid rgba(255,255,255,.34); }
.works-page footer { background: var(--black); }

.single-frames { padding: var(--section) 0; border-top: 1px solid var(--rule); scroll-margin-top: 72px; }
#single-frames-title { scroll-margin-top: 90px; }
.single-frames-head { display: grid; margin-bottom: clamp(72px, 11vw, 150px); grid-template-columns: minmax(0, 1fr) minmax(240px, 34ch); gap: clamp(30px, 7vw, 110px); align-items: end; }
.single-frames-head h2 { max-width: 10ch; margin: 18px 0 0; color: var(--white); font-family: var(--font-display); font-size: clamp(2.7rem, 6vw, 5.5rem); font-weight: 400; letter-spacing: -.04em; line-height: .9; }
.single-frames-head > p { margin: 0; color: var(--copy); }
.single-frame-series + .single-frame-series { margin-top: clamp(140px, 18vw, 270px); padding-top: clamp(84px, 11vw, 160px); border-top: 1px solid var(--rule); }
.single-frame-series-head { display: grid; margin-bottom: clamp(56px, 8vw, 110px); grid-template-columns: minmax(0, 1fr) minmax(240px, 34ch); gap: clamp(30px, 7vw, 110px); align-items: end; }
.single-frame-series-head p { margin: 0; color: var(--copy); }
.single-frame-series-head div > p { color: var(--smoke); font-family: var(--font-interface); font-size: .69rem; letter-spacing: .1em; text-transform: uppercase; }
.single-frame-series-head h3 { margin: 14px 0 0; color: var(--white); font-family: var(--font-display); font-size: clamp(1.8rem, 3.6vw, 3.4rem); font-weight: 400; letter-spacing: -.04em; line-height: .92; }
.single-frame-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(64px, 9vw, 132px) clamp(18px, 2.6vw, 38px); align-items: start; }
.single-frame { min-width: 0; grid-column: span 4; cursor: none; }
.single-frame--five { grid-column: span 5; }
.single-frame--six { grid-column: span 6; }
.single-frame--seven { grid-column: span 7; }
.single-frame--offset { padding-top: clamp(44px, 7vw, 100px); }
.single-frame--offset-small { padding-top: clamp(20px, 3.5vw, 54px); }
.single-frame figure { margin: 0; }
.single-frame-image { overflow: hidden; background: var(--carbon); }
.single-frame img { display: block; width: 100%; height: auto; filter: brightness(.86) saturate(.9); transform: scale(1.008); transition: filter 700ms ease, transform 1200ms cubic-bezier(.16, 1, .3, 1); }
.single-frame:hover img,
.single-frame:focus-visible img { filter: brightness(1) saturate(1); transform: scale(1); }
.single-frame figcaption { display: grid; min-height: 38px; margin-top: 10px; padding-top: 7px; border-top: 1px solid var(--rule); grid-template-columns: 34px minmax(0, 1fr); gap: 10px; align-items: baseline; }
.single-frame figcaption span { color: var(--dim); }
.single-frame figcaption em { color: var(--smoke); font-style: normal; text-align: right; }

.recognition,
.about-contact {
  position: relative;
  z-index: 1;
  width: min(100%, var(--page-max));
  margin-inline: auto;
  padding: var(--section) var(--edge);
  border-top: 1px solid var(--rule);
}

.recognition {
  --white: oklch(.2 .012 72);
  --silver: oklch(.27 .014 72);
  --copy: oklch(.34 .016 72);
  --smoke: oklch(.4 .017 72);
  --dim: oklch(.42 .016 72);
  --rule: oklch(.34 .014 72 / .18);
  --blue: oklch(.43 .13 250);
  --camera-green: oklch(.36 .07 154);
  width: 100%;
  padding-right: max(var(--edge), calc((100vw - var(--page-max)) / 2 + var(--edge)));
  padding-left: max(var(--edge), calc((100vw - var(--page-max)) / 2 + var(--edge)));
  background: oklch(.972 .011 82);
  color-scheme: light;
}

.section-index { display: flex; justify-content: space-between; margin-bottom: clamp(70px, 11vw, 150px); color: var(--smoke); }
.section-index p { margin: 0; }

.recognition-title-row h2,
.about-contact h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .9;
}

.recognition-title-row { display: grid; margin-bottom: clamp(64px, 10vw, 140px); grid-template-columns: minmax(0, 1fr) minmax(280px, 36ch); gap: clamp(36px, 7vw, 110px); align-items: end; }
.recognition-title-row p { max-width: 36ch; margin: 0 0 5px; color: var(--copy); font-size: .92rem; line-height: 1.55; }
.recognition-browser { display: grid; grid-template-columns: minmax(240px, .4fr) minmax(0, 1fr); gap: clamp(52px, 8vw, 128px); align-items: start; }
.recognition-tabs { position: sticky; top: 88px; border-top: 1px solid var(--rule); }
.recognition-tab { position: relative; display: grid; width: 100%; min-height: 84px; padding: 16px 28px 16px 0; border-bottom: 1px solid var(--rule); cursor: pointer; grid-template-columns: 38px minmax(0, 1fr); grid-template-rows: auto auto; gap: 3px 12px; text-align: left; }
.recognition-tab::after { position: absolute; top: 50%; right: 0; width: 13px; height: 1px; background: var(--dim); content: ""; transform: translateY(-50%); transition: width 360ms cubic-bezier(.16, 1, .3, 1), background 240ms ease; }
.recognition-tab > span { color: var(--dim); font-family: var(--font-interface); font-size: .63rem; letter-spacing: .09em; grid-row: 1 / 3; }
.recognition-tab > strong { color: var(--copy); font-family: var(--font-display); font-size: 1.14rem; font-weight: 400; letter-spacing: -.02em; line-height: 1.05; transition: color 240ms ease, transform 360ms cubic-bezier(.16, 1, .3, 1); }
.recognition-tab > small { color: var(--dim); font-family: var(--font-interface); font-size: .62rem; font-weight: 500; letter-spacing: .09em; text-transform: uppercase; }
.recognition-tab:hover > strong,
.recognition-tab[aria-selected="true"] > strong { color: var(--white); transform: translateX(5px); }
.recognition-tab[aria-selected="true"]::after { width: 24px; background: var(--camera-green); }
.recognition-tab:focus-visible { outline: 2px solid var(--blue); outline-offset: 4px; }
.recognition-stage { min-width: 0; border-top: 1px solid var(--rule); }
.recognition-panel[hidden] { display: none; }
.recognition-panel { position: relative; min-width: 0; overflow: clip; isolation: isolate; animation: recognition-record-open 600ms cubic-bezier(.16, 1, .3, 1) both; }
.recognition-panel::before { position: absolute; z-index: -1; top: -.18em; right: -.02em; color: oklch(.2 .012 72 / .032); content: attr(data-record); font-family: var(--font-display); font-size: clamp(9rem, 22vw, 18rem); letter-spacing: -.07em; line-height: 1; pointer-events: none; }
.recognition-panel-head { display: grid; min-height: clamp(250px, 30vw, 410px); padding: clamp(28px, 4vw, 52px) 0 clamp(38px, 6vw, 76px); border-bottom: 1px solid var(--rule); grid-template-columns: minmax(0, 1fr) auto; gap: 30px; align-items: end; }
.recognition-panel-head p,
.recognition-panel-head > strong { margin: 0; color: var(--smoke); font-family: var(--font-interface); font-size: .69rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.recognition-panel-head h3 { max-width: 13ch; margin: 20px 0 0; color: var(--white); font-family: var(--font-display); font-size: clamp(3rem, 5.5vw, 5.6rem); font-weight: 400; letter-spacing: -.04em; line-height: .88; }
.recognition-panel-head > strong { padding-bottom: 8px; color: var(--silver); text-align: right; }
.recognition-detail { display: grid; padding: clamp(26px, 4vw, 52px) 0; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 4vw, 56px); }
.recognition-detail p { margin: 0; color: var(--copy); font-size: .78rem; }
.recognition-detail p > span { display: block; margin-bottom: 7px; color: var(--dim); font-family: var(--font-interface); font-size: .65rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.recognition-detail em { color: var(--silver); }
.recognition-detail .recognition-detail-time { color: var(--smoke); }
.recognition-panel--text .recognition-detail { padding-bottom: clamp(120px, 17vw, 240px); }
.recognition-media-label { display: flex; margin: clamp(22px, 3vw, 38px) 0 16px; justify-content: space-between; gap: 24px; color: var(--smoke); font-family: var(--font-interface); font-size: .64rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.recognition-media-label span { color: var(--silver); }
.recognition-media { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(180px, .7fr); gap: clamp(18px, 3vw, 44px); align-items: end; }
.recognition-media--single { width: min(84%, 760px); margin-left: auto; grid-template-columns: minmax(0, 1fr); }
.recognition-media-slot { min-width: 0; margin: 0; }
.recognition-media-placeholder { position: relative; display: grid; min-height: clamp(190px, 25vw, 350px); overflow: hidden; border: 1px solid var(--rule); background: oklch(.995 .004 82); place-content: center; gap: 7px; text-align: center; transition: border-color 300ms ease, background 300ms ease; }
.recognition-media-placeholder::before,
.recognition-media-placeholder::after { position: absolute; width: 22px; height: 22px; border-color: var(--dim); content: ""; transition: border-color 300ms ease, transform 420ms cubic-bezier(.16, 1, .3, 1); }
.recognition-media-placeholder::before { top: 13px; left: 13px; border-top: 1px solid; border-left: 1px solid; }
.recognition-media-placeholder::after { right: 13px; bottom: 13px; border-right: 1px solid; border-bottom: 1px solid; }
.recognition-media-slot.is-portrait .recognition-media-placeholder { width: min(100%, 260px); min-height: 0; margin-left: auto; aspect-ratio: 4 / 5; }
.recognition-media-placeholder span,
.recognition-media-placeholder small,
.recognition-media-slot figcaption { font-family: var(--font-interface); font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.recognition-media-placeholder span { color: var(--copy); font-size: .72rem; }
.recognition-media-placeholder small { color: var(--smoke); font-size: .62rem; }
.recognition-media-slot figcaption { display: flex; min-height: 30px; margin-top: 9px; color: var(--smoke); font-size: .64rem; align-items: baseline; }
.recognition-media-slot figcaption em { color: var(--copy); }
.recognition-media-slot img { display: block; width: 100%; height: 100%; object-fit: cover; }
.recognition-media-slot:hover .recognition-media-placeholder { border-color: var(--camera-green); background: oklch(.985 .007 82); }
.recognition-media-slot:hover .recognition-media-placeholder::before,
.recognition-media-slot:hover .recognition-media-placeholder::after { border-color: var(--camera-green); transform: scale(.82); }

@keyframes recognition-record-open {
  from { opacity: 0; filter: blur(4px); transform: translateY(-8px); }
  to { opacity: 1; filter: blur(0); transform: translateY(0); }
}

.about-contact {
  display: grid;
  min-height: 88svh;
  grid-template-columns: minmax(260px, .62fr) minmax(320px, 1fr);
  gap: clamp(38px, 7vw, 110px);
  align-items: start;
}
.about-contact-head { position: sticky; top: 110px; }
.about-contact h2 { max-width: 8ch; margin-top: 22px; }
.about-position { margin: clamp(36px, 7vw, 88px) 0 0; color: var(--smoke); font-family: var(--font-interface); font-size: .69rem; letter-spacing: .09em; line-height: 1.65; text-transform: uppercase; }
.about-copy { max-width: 68ch; }
.about-copy .about-biography-copy p { color: var(--copy); font-size: clamp(16px, 1.08vw, 18px); line-height: 1.72; }
.contact-block { margin-top: clamp(52px, 8vw, 110px); padding-top: clamp(24px, 3vw, 38px); border-top: 1px solid var(--rule); }
.contact-block p { max-width: 46ch; margin: 0 0 24px; }
.contact-block .section-label { margin-bottom: 22px; }
.pending { color: var(--smoke); font-size: .78rem; }
.contact-block a { display: inline-block; padding-bottom: 5px; border-bottom: 1px solid var(--dim); color: var(--silver); font-size: .78rem; }
.contact-block a:hover { border-bottom-color: var(--white); color: var(--white); }
.section-label { margin: 0; color: var(--smoke); }

footer,
.project-end {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, var(--page-max));
  margin-inline: auto;
  justify-content: space-between;
  gap: 30px;
  padding: 18px var(--edge);
  border-top: 1px solid var(--rule);
  color: var(--smoke);
  font-family: var(--font-interface);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

footer p { margin: 0; }
footer a:hover,
.project-end a:hover { color: var(--white); }

/* Project sequence */

.project-opening {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, var(--page-max));
  min-height: 100svh;
  margin-inline: auto;
  padding: 88px var(--edge) 28px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "image image image"
    "title count scroll";
  gap: 18px clamp(24px, 4vw, 64px);
}

.opening-image { position: relative; display: grid; min-width: 0; height: min(72svh, 820px); cursor: none; grid-area: image; place-items: center; }
.opening-image img { display: block; width: 100%; height: 100%; object-fit: contain; }
.opening-title { display: flex; grid-area: title; gap: 30px; align-items: end; }
.opening-title p { min-width: 180px; margin: 0 0 7px; color: var(--smoke); }
.opening-title h1 { margin: 0; color: var(--white); font-family: var(--font-display); font-size: clamp(3.5rem, 9vw, 6rem); font-weight: 400; letter-spacing: -.045em; line-height: .82; }
.opening-count { margin: 0 0 5px; color: var(--smoke); grid-area: count; align-self: end; text-align: right; }
.opening-scroll { padding-bottom: 5px; border-bottom: 1px solid var(--smoke); grid-area: scroll; align-self: end; }

.project-statement {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, var(--page-max));
  min-height: 85svh;
  margin-inline: auto;
  padding: var(--section) var(--edge);
  border-top: 1px solid var(--rule);
  background: var(--black);
  grid-template-columns: minmax(100px, .35fr) minmax(0, 1.2fr) minmax(140px, .35fr);
  gap: clamp(30px, 7vw, 110px);
  align-items: start;
}

.project-statement > div { columns: 2; column-gap: clamp(32px, 6vw, 90px); }
.project-statement > div p { margin: 0 0 1em; break-inside: avoid; }
.project-facts { margin: 0; color: var(--smoke); text-align: right; }

.project-continuation { position: relative; z-index: 1; display: grid; width: min(100%, var(--page-max)); min-height: 72svh; margin-inline: auto; padding: var(--section) var(--edge); border-top: 1px solid var(--rule); background: var(--black); grid-template-columns: minmax(100px, .35fr) minmax(0, 1.2fr) minmax(140px, .35fr); gap: clamp(30px, 7vw, 110px); align-items: start; }
.project-continuation > div { max-width: 54ch; }
.project-continuation h2 { margin: 0 0 24px; color: var(--white); font-family: var(--font-display); font-size: clamp(2.7rem, 6vw, 5.5rem); font-weight: 400; letter-spacing: -.04em; line-height: .9; }
.project-continuation p { margin: 0; color: var(--copy); }
.project-continuation .continuation-index { color: var(--smoke); text-align: right; }

.sequence { position: relative; z-index: 1; width: min(100%, var(--page-max)); margin-inline: auto; padding: var(--section) var(--edge); background: var(--black); }
.sequence-room { width: 100%; margin: 0 0 clamp(150px, 23vw, 340px); cursor: none; }
.sequence-room img { display: block; width: 100%; height: auto; }
.sequence-room figcaption { display: flex; justify-content: space-between; margin-top: 10px; color: var(--smoke); }
.sequence-origin { max-width: min(60ch, 72%); text-align: right; }
.sequence-origin small { display: block; margin-top: 5px; letter-spacing: .035em; line-height: 1.45; text-transform: none; }
.room-wide { width: 100%; margin-right: auto; margin-left: auto; }
.room-left,
.room-right { width: 82%; margin-right: auto; margin-left: auto; }
.room-small { width: 68%; margin-right: auto; margin-left: auto; }
.final-room { margin-bottom: 0; }
.project-end { padding-top: clamp(70px, 12vw, 170px); padding-bottom: clamp(70px, 12vw, 170px); }

.reveal { opacity: .34; transform: translateY(28px); transition: opacity 900ms cubic-bezier(.16, 1, .3, 1), transform 1100ms cubic-bezier(.16, 1, .3, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .project-opening {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 1fr auto auto;
    grid-template-areas:
      "image image"
      "title title"
      "count scroll";
  }
}

@media (max-width: 820px) {
  .site-header { align-items: flex-start; min-height: 68px; }
  .site-header nav { gap: 18px; }
  .camera-screen { width: 100%; height: 100dvh; min-height: 100svh; max-height: none; }
  .home-projects-head { grid-template-columns: 1fr; }
  .home-projects-head > p { max-width: 42ch; }
  .home-projects .project-thumb:first-child { grid-column: auto; }
  .project-index-grid { grid-template-columns: 1fr; }
  .project-thumb-featured { grid-column: auto; }
  .project-thumb-featured .project-thumb-image { height: 64svh; }
  .project-thumb-portrait .project-thumb-image { height: 78svh; }
  .single-frames-head { grid-template-columns: 1fr; }
  .single-frames-head > p { max-width: 42ch; }
  .single-frame-series-head { grid-template-columns: 1fr; }
  .single-frame-series-head > p { max-width: 42ch; }
  .single-frame-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .single-frame,
  .single-frame--five,
  .single-frame--six,
  .single-frame--seven { grid-column: span 1; }
  .single-frame--offset { padding-top: clamp(30px, 8vw, 60px); }
  .single-frame--offset-small { padding-top: 0; }
  .recognition-browser { grid-template-columns: 1fr; gap: 48px; }
  .recognition-tabs { position: static; display: flex; margin-right: calc(var(--edge) * -1); overflow-x: auto; border-bottom: 1px solid var(--rule); scroll-snap-type: x proximity; scrollbar-width: none; }
  .recognition-tabs::-webkit-scrollbar { display: none; }
  .recognition-tab { flex: 0 0 min(72vw, 270px); min-height: 82px; padding-right: 26px; border-top: 1px solid var(--rule); border-bottom: 0; scroll-snap-align: start; }
  .recognition-tab::after { right: 12px; }
  .recognition-panel-head { min-height: 220px; }
  .recognition-media--single { width: 100%; margin-left: 0; }
  .about-contact { min-height: auto; grid-template-columns: 1fr; }
  .about-contact-head { position: static; }
  .project-opening { grid-template-columns: 1fr; grid-template-rows: auto auto auto; grid-template-areas: "image" "title" "count" "scroll"; }
  .opening-image { height: 62svh; }
  .opening-title { display: block; }
  .opening-title p { margin-bottom: 12px; }
  .opening-count { writing-mode: horizontal-tb; }
  .opening-scroll { width: max-content; }
  .project-statement { min-height: auto; grid-template-columns: 1fr; }
  .project-statement > div { columns: 1; }
  .project-facts { text-align: left; }
  .project-continuation { min-height: 62svh; grid-template-columns: 1fr; }
  .project-continuation .continuation-index { text-align: left; }
  .room-left,
  .room-right,
  .room-small { width: 100%; }
}

@media (max-width: 820px) and (orientation: portrait) {
  .camera-slides--landscape { display: none; }
  .camera-slides--portrait { display: block; }
  .camera-slides {
    top: max(72px, calc(env(safe-area-inset-top) + 54px));
    bottom: max(92px, calc(env(safe-area-inset-bottom) + 72px));
  }
  .camera-slide { transform: scale(.985); }
  .camera-slide.is-active { transform: scale(1); }
  .camera-slide img { object-fit: contain; object-position: center; }
  .camera-image-shade {
    background: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,.04) 0 30%, rgba(0,0,0,.28) 72%, rgba(0,0,0,.66) 100%), linear-gradient(180deg, rgba(0,0,0,.5), transparent 24%, transparent 70%, rgba(0,0,0,.72));
  }
}

@media (max-height: 520px) and (orientation: landscape) {
  .camera-slide { transform: scale(.985); }
  .camera-slide.is-active { transform: scale(1); }
  .camera-slide img { object-fit: contain; object-position: center; }
  .camera-image-shade {
    background: radial-gradient(ellipse at 50% 50%, rgba(0,0,0,.04) 0 32%, rgba(0,0,0,.26) 72%, rgba(0,0,0,.62) 100%), linear-gradient(90deg, rgba(0,0,0,.64), transparent 24%, transparent 76%, rgba(0,0,0,.64));
  }
}

@media (max-width: 520px) {
  .site-header nav { gap: 10px; font-size: .6rem; }
  .brand { font-size: .65rem; }
  .home-viewfinder-frame { inset: 6px; }
  .camera-hero { padding: 0; }
  .camera-screen { height: 100dvh; min-height: 100svh; border-width: 0; border-radius: 0; aspect-ratio: auto; }
  .camera-topline { top: max(7px, env(safe-area-inset-top)); right: max(8px, env(safe-area-inset-right)); left: max(8px, env(safe-area-inset-left)); font-size: .65rem; grid-template-columns: auto auto 1fr auto; gap: 7px; }
  .camera-role-label { top: max(41px, calc(env(safe-area-inset-top) + 39px)); width: max-content; }
  .camera-side-rail { top: max(72px, calc(env(safe-area-inset-top) + 60px)); bottom: max(108px, calc(env(safe-area-inset-bottom) + 96px)); gap: 6px; }
  .camera-side-left { left: max(8px, env(safe-area-inset-left)); }
  .camera-side-right { right: max(8px, env(safe-area-inset-right)); }
  .camera-side-rail span { width: 34px; height: 30px; }
  .camera-level { top: 22%; }
  .camera-subject h1 { gap: 0; max-width: calc(100vw - 112px); font-size: clamp(3rem, 15vw, 4rem); flex-direction: column; text-align: center; }
  .camera-focus-box { top: calc(50% - clamp(82px, 11svh, 96px)); }
  .camera-focus-status { top: calc(50% + 78px); }
  .camera-settings-strip { right: max(8px, env(safe-area-inset-right)); bottom: max(9px, env(safe-area-inset-bottom)); left: max(8px, env(safe-area-inset-left)); width: auto; padding-inline: 4px; grid-template-columns: 26px 1.25fr .8fr 1.15fr 1fr; }
  .camera-settings-strip > span { padding-inline: 3px; }
  .camera-settings-strip strong { font-size: .78rem; }
  .camera-enter { bottom: max(68px, calc(env(safe-area-inset-bottom) + 58px)); }
  .project-thumb-caption { grid-template-columns: 72px minmax(0, 1fr); }
  .project-thumb-caption p { grid-column: 2; }
  .single-frames-head { margin-bottom: 64px; }
  .single-frame-grid { gap: 54px 14px; }
  .single-frame--offset { padding-top: 34px; }
  .single-frame figcaption { grid-template-columns: 24px minmax(0, 1fr); }
  .camera-index-left,
  .camera-index-right { display: none; }
  .recognition-title-row { grid-template-columns: 1fr; }
  .recognition-title-row p { text-align: left; }
  .recognition-panel-head { min-height: 0; padding-bottom: 34px; grid-template-columns: 1fr; gap: 22px; }
  .recognition-panel-head h3 { margin-top: 14px; font-size: clamp(2.7rem, 12vw, 3.5rem); }
  .recognition-panel-head > strong { padding-bottom: 0; text-align: left; }
  .recognition-detail { padding: 28px 0 34px; grid-template-columns: 1fr; gap: 18px; }
  .recognition-media { grid-template-columns: 1fr; gap: 24px; }
  .recognition-media-slot.is-portrait .recognition-media-placeholder { width: 68%; margin-left: auto; }
  footer { flex-direction: column; gap: 6px; }
}

@media (hover: none), (pointer: coarse) {
  .focus-cursor { display: none; }
  .project-thumb-featured,
  .single-frame,
  .opening-image,
  .sequence-room { cursor: default; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ambient-canvas { display: none; }
  .shutter-flash { display: none; }
  .camera-screen { animation: none; }
  .home-page.is-intro-active .camera-hero,
  .home-page.is-intro-active,
  .home-page.is-intro-active .site-header,
  .home-page.is-intro-active .recognition,
  .home-page.is-intro-active .about-contact,
  .home-page.is-intro-active footer { animation: none; }
  .reveal,
  .focus-cursor,
  .camera-subject h1,
  .camera-focus-box,
  .camera-focus-box i,
  .camera-focus-box b,
  .camera-focus-status,
  .camera-settings-strip strong,
  .camera-slide,
  .camera-preview-shutter i,
  .shutter-blades i,
  .recognition-tab::after,
  .recognition-tab > strong,
  .project-thumb-image img,
  .single-frame img { transition: none; }
  .recognition-panel { animation: none; }
  .recognition-media-placeholder,
  .recognition-media-placeholder::before,
  .recognition-media-placeholder::after { transition: none; }
  .reveal { opacity: 1; transform: none; }
}

/* Holy Static — one continuous exposure */

.holy-static-page { background: #000; }
.holy-static-page .site-header { mix-blend-mode: difference; }
.holy-story {
  --holy-progress: 0;
  position: relative;
  z-index: 1;
  background: #000;
}

.holy-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: #000;
}

.holy-stage::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.66) 0%, transparent 34%, transparent 67%, rgba(0,0,0,.62) 100%), linear-gradient(180deg, rgba(0,0,0,.58), transparent 27%, transparent 70%, rgba(0,0,0,.7));
  content: "";
  pointer-events: none;
}

.holy-ambient {
  position: absolute;
  inset: -6%;
  opacity: .42;
  background: url("images/holy-static/01_devotion.jpg") center 48% / cover no-repeat;
  filter: blur(32px) brightness(.2) saturate(.8);
  transform: scale(1.08);
}

.holy-frame {
  position: absolute;
  z-index: 1;
  top: 9svh;
  left: 50%;
  width: auto;
  height: min(82svh, 900px);
  margin: 0;
  cursor: none;
  transform: translateX(-50%) scale(calc(1 - var(--holy-progress) * .035));
  transform-origin: 50% 52%;
  transition: left 1100ms cubic-bezier(.16, 1, .3, 1), height 1100ms cubic-bezier(.16, 1, .3, 1), filter 900ms ease;
}

.holy-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 28px 90px rgba(0,0,0,.62);
  content: "";
  pointer-events: none;
}

.holy-frame img { display: block; width: auto; height: 100%; }
.holy-frame figcaption {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: rgba(244,245,242,.55);
  font-family: var(--font-interface);
  font-size: .61rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.holy-title {
  position: absolute;
  z-index: 4;
  top: 16svh;
  left: max(var(--edge), calc((100vw - var(--page-max)) / 2 + var(--edge)));
  width: min(36vw, 540px);
  transition: opacity 700ms ease, filter 900ms ease, transform 1100ms cubic-bezier(.16, 1, .3, 1);
}

.holy-title p,
.holy-title small {
  display: block;
  margin: 0;
  color: rgba(244,245,242,.58);
  font-family: var(--font-interface);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.holy-title h1 {
  margin: clamp(18px, 3vh, 34px) 0 22px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(5.2rem, 9.6vw, 9.7rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .72;
}

.holy-title h1 span { display: block; }
.holy-title h1 span:last-child { margin-left: .16em; }
.holy-story:not([data-holy-state="0"]) .holy-title { opacity: 0; filter: blur(8px); transform: translateY(-28px); }
.holy-story[data-holy-state="1"] .holy-frame,
.holy-story[data-holy-state="3"] .holy-frame { left: 28%; height: min(76svh, 820px); }
.holy-story[data-holy-state="2"] .holy-frame { left: 72%; height: min(76svh, 820px); }

.holy-meter {
  position: absolute;
  z-index: 4;
  top: 50%;
  right: max(var(--edge), calc((100vw - var(--page-max)) / 2 + var(--edge)));
  display: grid;
  height: 38svh;
  color: rgba(244,245,242,.46);
  font-family: var(--font-interface);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .09em;
  grid-template-rows: auto 1fr auto;
  gap: 9px;
  justify-items: center;
  transform: translateY(-50%);
}

.holy-meter i { position: relative; display: block; width: 1px; height: 100%; background: rgba(255,255,255,.18); }
.holy-meter b { position: absolute; inset: 0; display: block; background: #cf7b2a; transform: scaleY(var(--holy-progress)); transform-origin: 50% 0; }
.holy-progress-label {
  position: absolute;
  z-index: 4;
  right: max(var(--edge), calc((100vw - var(--page-max)) / 2 + var(--edge)));
  bottom: 24px;
  margin: 0;
  color: rgba(244,245,242,.55);
  font-family: var(--font-interface);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .12em;
}

.holy-beats { position: relative; z-index: 3; margin-top: -100svh; }
.holy-beat {
  display: grid;
  min-height: 100svh;
  padding: max(90px, 12svh) max(var(--edge), calc((100vw - var(--page-max)) / 2 + var(--edge)));
  align-items: center;
}

.holy-beat-title { align-items: end; justify-items: center; }
.holy-beat-title a {
  display: flex;
  min-width: 190px;
  margin-bottom: 25px;
  justify-content: space-between;
  padding: 11px 0;
  border-top: 1px solid rgba(255,255,255,.34);
  color: rgba(244,245,242,.7);
  font-family: var(--font-interface);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.holy-beat-copy { align-content: center; }
.holy-beat-copy-right { justify-items: end; }
.holy-beat-copy-left { justify-items: start; }
.holy-beat-copy > * { width: min(38vw, 510px); }
.holy-beat-copy-right > * { margin-right: 72px; }
.holy-beat-copy .section-label {
  margin-bottom: clamp(28px, 5vh, 54px);
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.25);
  color: rgba(244,245,242,.52);
  font-family: var(--font-interface);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.holy-beat-copy > p:not(.section-label) {
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.45vw, 2.9rem);
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.18;
  text-wrap: balance;
}

.holy-beat-copy em { font-style: normal; }
.holy-beat-final > small {
  display: block;
  margin-top: 32px;
  color: rgba(244,245,242,.58);
  font-size: .72rem;
  line-height: 1.55;
}

.holy-project-end {
  position: relative;
  z-index: 4;
  display: grid;
  width: min(100%, var(--page-max));
  min-height: 68svh;
  margin-inline: auto;
  padding: clamp(100px, 16vw, 220px) var(--edge);
  border-top: 1px solid var(--rule);
  background: #000;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 8vw, 130px);
  align-items: center;
}

.holy-project-end a { display: grid; padding: 14px 0 18px; border-top: 1px solid rgba(255,255,255,.3); gap: 28px; }
.holy-project-end span { color: var(--smoke); font-family: var(--font-interface); font-size: .66rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.holy-project-end strong { color: var(--white); font-family: var(--font-display); font-size: clamp(2rem, 4vw, 4.6rem); font-weight: 400; letter-spacing: -.045em; line-height: .9; transition: transform 500ms cubic-bezier(.16, 1, .3, 1); }
.holy-project-end a:hover strong { transform: translateX(8px); }

@media (max-width: 820px) {
  .holy-frame { top: 76px; height: min(67svh, 650px); }
  .holy-title { top: 96px; bottom: auto; width: 82vw; }
  .holy-title h1 { font-size: clamp(4.25rem, 20vw, 6.6rem); }
  .holy-title h1 span:last-child { margin-left: .08em; }
  .holy-story[data-holy-state="1"] .holy-frame,
  .holy-story[data-holy-state="2"] .holy-frame,
  .holy-story[data-holy-state="3"] .holy-frame { top: 70px; left: 50%; height: min(48svh, 500px); filter: brightness(.58); }
  .holy-stage::after { background: linear-gradient(180deg, rgba(0,0,0,.38), transparent 38%, rgba(0,0,0,.3) 62%, #000 91%); }
  .holy-meter { top: 34%; right: var(--edge); height: 25svh; }
  .holy-progress-label { right: var(--edge); }
  .holy-beat-copy { padding-top: 47svh; align-content: end; align-items: end; justify-items: start; }
  .holy-beat-copy > * { width: 100%; }
  .holy-beat-copy-right > * { margin-right: 0; }
  .holy-beat-copy > p:not(.section-label) { font-size: clamp(1.55rem, 6vw, 2.3rem); }
  .holy-beat-copy .section-label { margin-bottom: 24px; }
  .holy-project-end { min-height: 76svh; grid-template-columns: 1fr; align-content: center; }
}

@media (max-width: 520px) {
  .holy-frame { height: min(62svh, 560px); }
  .holy-frame figcaption { font-size: .52rem; }
  .holy-beat-title a { margin-bottom: 18px; }
  .holy-beat-copy { padding-bottom: 10svh; }
}

@media (prefers-reduced-motion: reduce) {
  .holy-stage { position: relative; }
  .holy-beats { margin-top: 0; }
  .holy-story:not([data-holy-state="0"]) .holy-title { opacity: 1; filter: none; transform: none; }
  .holy-frame { transition: none; transform: translateX(-50%); }
  .holy-meter b { transform: scaleY(1); }
  .holy-beat { min-height: auto; padding-top: clamp(90px, 14vw, 150px); padding-bottom: clamp(90px, 14vw, 150px); border-top: 1px solid var(--rule); }
  .holy-beat-title { display: none; }
  .holy-beat-copy { display: block; }
  .holy-beat-copy > * { width: min(100%, 720px); }
}

/* Misread — beauty, glass and the unreliable gaze */

.misread-page { --misread-line: 36%; --misread-shift: 7px; }
.misread-page .site-header {
  background: linear-gradient(180deg, rgba(0,0,0,.62), transparent);
}
.misread-hero {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  overflow: hidden;
  background: #02101b;
}

.misread-hero-image,
.misread-refracted,
.misread-hero-image > img,
.misread-refracted img { position: absolute; inset: 0; width: 100%; height: 100%; }
.misread-hero-image { margin: 0; cursor: none; }
.misread-hero-image > img,
.misread-refracted img { object-fit: cover; object-position: 58% center; }
.misread-refracted {
  z-index: 1;
  overflow: hidden;
  clip-path: inset(var(--misread-line) 0 0 0);
  transform: translate3d(var(--misread-shift), 5px, 0) scale(1.012);
  transform-origin: 50% var(--misread-line);
  transition: transform 700ms cubic-bezier(.16, 1, .3, 1);
}
.misread-hero-shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.48) 35%, rgba(0,0,0,.08) 68%, rgba(0,0,0,.28) 100%), linear-gradient(180deg, rgba(0,0,0,.4), transparent 42%, rgba(0,0,0,.42));
  pointer-events: none;
}
.misread-waterline {
  position: absolute;
  z-index: 5;
  top: var(--misread-line);
  right: 0;
  left: 0;
  height: 1px;
  opacity: .7;
  background: rgba(218,235,242,.72);
  box-shadow: 0 5px 20px rgba(116,189,218,.28);
  pointer-events: none;
}
.misread-title-lockup {
  position: absolute;
  z-index: 4;
  top: 19svh;
  left: max(var(--edge), calc((100vw - var(--page-max)) / 2 + var(--edge)));
  width: min(46vw, 610px);
}
.misread-title-lockup > p,
.misread-title-lockup > small,
.misread-hero-note,
.misread-enter {
  font-family: var(--font-interface);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .12em;
  line-height: 1.45;
  text-transform: uppercase;
}
.misread-title-lockup > p,
.misread-title-lockup > small { display: block; margin: 0; color: rgba(244,245,242,.7); }
.misread-title-lockup h1 {
  position: relative;
  width: 6.4ch;
  height: 1em;
  margin: clamp(22px, 4vh, 42px) 0 28px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(4.1rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .82;
}
.misread-title-lockup h1 span { position: absolute; inset: 0; display: block; }
.misread-title-clear { clip-path: inset(0 0 46% 0); }
.misread-title-below { clip-path: inset(54% 0 0 0); transform: translateX(var(--misread-shift)); transition: transform 700ms cubic-bezier(.16, 1, .3, 1); }
.misread-hero-note {
  position: absolute;
  z-index: 4;
  right: max(var(--edge), calc((100vw - var(--page-max)) / 2 + var(--edge)));
  bottom: 28px;
  margin: 0;
  color: rgba(244,245,242,.64);
  text-align: right;
}
.misread-enter {
  position: absolute;
  z-index: 4;
  bottom: 28px;
  left: max(var(--edge), calc((100vw - var(--page-max)) / 2 + var(--edge)));
  display: flex;
  width: min(240px, 34vw);
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.42);
  color: rgba(244,245,242,.76);
}

.misread-statement {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, var(--page-max));
  min-height: 100svh;
  margin-inline: auto;
  padding: var(--section) var(--edge);
  border-top: 1px solid var(--rule);
  background: #000;
  grid-template-columns: minmax(90px, .25fr) minmax(0, .72fr) minmax(300px, .78fr);
  grid-template-rows: auto auto;
  gap: clamp(44px, 7vw, 110px);
  align-content: center;
}
.misread-statement > .section-label { padding-top: 8px; border-top: 1px solid var(--rule); }
.misread-statement h2 {
  max-width: 11ch;
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .9;
  text-wrap: balance;
}
.misread-statement-copy { max-width: 68ch; }
.misread-statement-copy p { margin: 0 0 1.35em; color: var(--copy); }
.misread-statement-copy em { color: var(--silver); font-style: normal; }
.misread-statement-note {
  max-width: 34ch;
  margin: 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.34);
  color: var(--silver);
  font-size: .78rem;
  grid-column: 3;
}

.misread-sequence {
  position: relative;
  z-index: 2;
  width: min(100%, var(--page-max));
  margin-inline: auto;
  padding: clamp(90px, 13vw, 190px) var(--edge);
  border-top: 1px solid var(--rule);
  background: #000;
}
.misread-room { min-width: 0; margin: 0; }
.misread-room img { display: block; width: 100%; height: auto; }
.misread-room figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 7px;
  border-top: 1px solid var(--rule);
  color: var(--smoke);
  font-size: .62rem;
}
.misread-room-wide { width: 100%; }
.misread-room-mid { width: 78%; margin-right: auto; margin-left: auto; }
.misread-room-right { margin-right: 0; }
.misread-room + .misread-threshold,
.misread-pair + .misread-threshold { margin-top: clamp(150px, 21vw, 300px); }
.misread-threshold + .misread-room,
.misread-threshold + .misread-pair,
.misread-room + .misread-room,
.misread-room + .misread-pair,
.misread-pair + .misread-room,
.misread-pair + .misread-pair { margin-top: clamp(130px, 18vw, 260px); }
.misread-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 62px);
  align-items: start;
}
.misread-pair-even { padding-inline: clamp(0px, 4vw, 58px); }
.misread-pair-portrait { width: 82%; margin-inline: auto; }
.misread-pair-asymmetric { grid-template-columns: minmax(0, 1.35fr) minmax(240px, .65fr); align-items: end; }
.misread-pair-final { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); }
.misread-room-lower { margin-top: clamp(48px, 8vw, 120px); }
.misread-threshold {
  display: grid;
  min-height: 62svh;
  padding: clamp(80px, 12vw, 170px) 0;
  align-content: center;
  justify-items: start;
}
.misread-threshold-right { justify-items: end; text-align: right; }
.misread-threshold p {
  margin: 0 0 10px;
  color: var(--smoke);
  font-family: var(--font-interface);
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.misread-threshold strong {
  max-width: 13ch;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .86;
}
.misread-threshold-final { justify-items: center; text-align: center; }
.misread-threshold-final p { color: var(--copy); font-family: var(--font-body); font-size: clamp(1rem, 1.5vw, 1.35rem); font-weight: 400; letter-spacing: 0; text-transform: none; }
.misread-project-end { border-top-color: rgba(110,184,214,.22); }

@media (max-width: 820px) {
  .misread-page { --misread-line: 34%; }
  .misread-hero-image > img,
  .misread-refracted img { object-position: 40% center; }
  .misread-hero-shade { background: linear-gradient(180deg, rgba(0,0,0,.54), transparent 36%, rgba(0,0,0,.2) 62%, rgba(0,0,0,.7)); }
  .misread-title-lockup { top: calc(34svh - 70px); width: 76vw; }
  .misread-title-lockup h1 { font-size: clamp(3.25rem, 16vw, 4.8rem); }
  .misread-hero-note { display: none; }
  .misread-enter { right: var(--edge); left: var(--edge); width: auto; }
  .misread-statement { min-height: auto; grid-template-columns: 1fr; gap: 42px; }
  .misread-statement h2 { max-width: 10ch; }
  .misread-statement-copy { max-width: 100%; }
  .misread-statement-note { grid-column: auto; }
  .misread-pair,
  .misread-pair-asymmetric,
  .misread-pair-final { grid-template-columns: 1fr; }
  .misread-pair,
  .misread-pair-portrait { width: 100%; padding-inline: 0; }
  .misread-room-mid { width: 100%; }
  .misread-room-lower { width: 82%; margin-top: clamp(78px, 22vw, 130px); margin-left: auto; }
  .misread-threshold { min-height: 52svh; }
  .misread-threshold strong { font-size: clamp(3.25rem, 16vw, 5rem); }
  .misread-threshold-final { text-align: left; justify-items: start; }
}

@media (prefers-reduced-motion: reduce) {
  .misread-refracted { transform: translate3d(5px, 5px, 0) scale(1.012); transition: none; }
  .misread-title-below { transform: translateX(5px); transition: none; }
}

/* About — the practice read through its bodies of work */

.about-page { background: #000; }
.about-page .site-header { background: linear-gradient(180deg, rgba(0,0,0,.72), transparent); }
.about-hero {
  display: grid;
  min-height: 100svh;
  padding: 78px var(--edge) var(--edge);
  grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr);
  gap: clamp(32px, 5vw, 84px);
}
.about-identity {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.about-identity > p,
.about-identity > a,
.about-triptych span,
.about-project-list > a > span,
.about-project-list > a > p,
.about-links span,
.about-links small {
  font-family: var(--font-interface);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.about-identity > p { margin: 0; color: var(--smoke); }
.about-identity h1 {
  margin: clamp(30px, 6vh, 64px) 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(4.25rem, 8vw, 6rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .82;
}
.about-identity h1 span { display: block; }
.about-identity > a {
  display: flex;
  width: min(260px, 100%);
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--dim);
  color: var(--copy);
}
.about-identity > a + a { margin-top: 9px; }
.about-triptych {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  grid-template-columns: .9fr .72fr 1.15fr;
  gap: 1px;
  background: var(--rule);
}
.about-triptych a {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #030303;
  animation: about-negative-open 1400ms cubic-bezier(.16, 1, .3, 1) both;
}
.about-triptych img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.68);
  transition: filter 700ms cubic-bezier(.16, 1, .3, 1), transform 900ms cubic-bezier(.16, 1, .3, 1);
}
.about-triptych a:nth-child(1) { animation-delay: 70ms; }
.about-triptych a:nth-child(2) { animation-delay: 150ms; }
.about-triptych a:nth-child(3) { animation-delay: 230ms; }
.about-triptych a:nth-child(1) img { object-position: 28% center; }
.about-triptych a:nth-child(2) img { object-position: 50% center; }
.about-triptych a:nth-child(3) img { object-position: 55% center; }
.about-triptych a:hover img,
.about-triptych a:focus-visible img { filter: brightness(.92); transform: scale(1.018); }
.about-triptych span { position: absolute; right: 13px; bottom: 14px; left: 13px; color: rgba(244,245,242,.76); writing-mode: vertical-rl; }

@keyframes about-negative-open {
  from { opacity: .28; clip-path: inset(48% 0 48% 0); }
  to { opacity: 1; clip-path: inset(0); }
}

.about-biography,
.about-index,
.about-links {
  position: relative;
  z-index: 1;
  width: min(100%, var(--page-max));
  margin-inline: auto;
  padding: var(--section) var(--edge);
  border-top: 1px solid var(--rule);
  background: #000;
}
.about-biography {
  display: grid;
  min-height: 88svh;
  grid-template-columns: minmax(100px, .3fr) minmax(0, .75fr) minmax(320px, .9fr);
  gap: clamp(38px, 7vw, 110px);
  align-content: center;
}
.about-biography > .section-label { padding-top: 8px; border-top: 1px solid var(--rule); }
.about-biography h2,
.about-index h2 {
  max-width: 10ch;
  margin: 0;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .9;
  text-wrap: balance;
}
.about-biography-copy { max-width: 68ch; }
.about-biography-copy p { margin: 0 0 1.35em; color: var(--copy); }
.about-biography-copy em { color: var(--silver); }
.about-index {
  display: grid;
  grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: start;
}
.about-index header { position: sticky; top: 110px; }
.about-index header .section-label { margin-bottom: 28px; }
.about-project-list { border-top: 1px solid var(--rule); }
.about-project-list > a {
  display: grid;
  min-height: clamp(190px, 18vw, 270px);
  padding: clamp(24px, 4vw, 54px) 0;
  border-bottom: 1px solid var(--rule);
  grid-template-columns: minmax(86px, .26fr) minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr;
  gap: 18px clamp(22px, 4vw, 56px);
  transition: border-color 300ms ease, transform 500ms cubic-bezier(.16, 1, .3, 1);
}
.about-project-list > a > span { color: var(--smoke); }
.about-project-list > a > strong {
  color: var(--silver);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  font-weight: 400;
  letter-spacing: -.04em;
  line-height: .9;
}
.about-project-list > a > p { max-width: 50ch; margin: 0; color: var(--smoke); grid-column: 2; align-self: end; }
.about-project-list > a > i { color: var(--smoke); font-style: normal; grid-column: 3; grid-row: 1 / 3; align-self: center; }
.about-project-list > a:hover,
.about-project-list > a:focus-visible { border-bottom-color: var(--silver); transform: translateX(8px); }
.about-project-list > a:hover > strong,
.about-project-list > a:focus-visible > strong { color: var(--white); }
.about-links { display: grid; min-height: 70svh; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; padding-top: 0; padding-bottom: 0; background: var(--rule); }
.about-links > a,
.about-links > div { display: flex; min-width: 0; padding: clamp(70px, 10vw, 150px) clamp(28px, 5vw, 78px); background: #000; flex-direction: column; align-items: flex-start; justify-content: center; }
.about-links > a > span,
.about-links > div > span { margin-bottom: clamp(36px, 7vw, 90px); color: var(--smoke); }
.about-links h2 { max-width: 12ch; margin: 0; color: var(--white); font-family: var(--font-display); font-size: clamp(3rem, 5.5vw, 5.8rem); font-weight: 400; letter-spacing: -.04em; line-height: .86; }
.about-links small { margin-top: 26px; color: var(--smoke); }
.about-links p { max-width: 44ch; margin: 24px 0 34px; color: var(--copy); }
.about-links > div > a { padding-bottom: 7px; border-bottom: 1px solid var(--dim); color: var(--silver); }
.about-links > div > a:hover { border-bottom-color: var(--white); color: var(--white); }

@media (max-width: 820px) {
  .about-hero { min-height: 100svh; padding: 76px var(--edge) var(--edge); grid-template-columns: 1fr; grid-template-rows: auto minmax(360px, 58svh); gap: 34px; }
  .about-identity { justify-content: flex-end; }
  .about-identity h1 { margin: 22px 0; font-size: clamp(3.25rem, 17vw, 4.8rem); }
  .about-identity h1 span { display: inline; }
  .about-identity h1 span + span::before { content: " "; }
  .about-enter { display: none !important; }
  .about-contact-shortcut { width: min(190px, 100%) !important; }
  .about-triptych span { font-size: .58rem; }
  .about-biography { min-height: auto; grid-template-columns: 1fr; gap: 42px; }
  .about-biography h2 { max-width: 9ch; }
  .about-biography-copy { max-width: 100%; }
  .about-index { grid-template-columns: 1fr; }
  .about-index header { position: static; }
  .about-project-list > a { grid-template-columns: 70px minmax(0, 1fr) auto; }
  .about-links { min-height: auto; grid-template-columns: 1fr; }
  .about-links > a,
  .about-links > div { min-height: 68svh; }
}

@media (prefers-reduced-motion: reduce) {
  .about-triptych a { animation: none; }
  .about-triptych img { transition: none; }
  .about-project-list > a { transition: none; }
}
