@font-face {
  font-family: "Geist";
  src: url("../fonts/Geist-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("../fonts/Geist-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("../fonts/GeistMono-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("../fonts/GeistMono-Italic-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --paper: #f4f3ef;
  --ink: #181816;
  --muted: #706f68;
  --line: rgba(24, 24, 22, 0.16);
  --soft: rgba(24, 24, 22, 0.06);
  --accent: #6f775f;
  --max: 1480px;
  --gutter: clamp(18px, 4vw, 56px);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Geist", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::selection {
  background: var(--ink);
  color: var(--paper);
}

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

img {
  display: block;
  width: 100%;
  height: auto;
  background: var(--soft);
}

figure {
  margin: 0;
}

.site-shell {
  min-height: 100dvh;
  overflow-x: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 72px;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 243, 239, 0.86);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(100%, var(--max));
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(110px, 1fr) auto minmax(110px, 1fr);
  align-items: center;
  gap: 24px;
}

.brand {
  font-size: 15px;
  font-weight: 520;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-links a,
.nav-contact {
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-contact:hover,
.nav-links .active {
  color: var(--ink);
}

.nav-series-menu {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
}

.series-menu-trigger {
  display: flex;
  align-items: center;
}

.series-dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  width: min(340px, calc(100vw - (2 * var(--gutter))));
  padding: 16px 18px 20px;
  display: grid;
  gap: 1px;
  border-top: 1px solid var(--ink);
  background: rgba(244, 243, 239, 0.97);
  color: var(--muted);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    visibility 220ms ease;
}

.series-dropdown a {
  padding: 7px 0;
  font-size: 13px;
  line-height: 1.25;
  text-transform: none;
  letter-spacing: 0;
}

.series-dropdown a:hover,
.series-dropdown a:focus-visible,
.series-dropdown a[aria-current="page"] {
  color: var(--ink);
}

.series-dropdown-all {
  margin-bottom: 7px;
  padding-bottom: 12px !important;
  border-bottom: 1px solid var(--line);
  font-family: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 10px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
}

.nav-series-menu.is-open .series-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

@media (hover: hover) and (pointer: fine) {
  .nav-series-menu:hover .series-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
}

@media (min-width: 901px) {
  .nav-links {
    align-self: stretch;
  }
}

.nav-contact {
  justify-self: end;
  border: 1px solid var(--line);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.main {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hero {
  min-height: calc(88dvh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(28px, 4vw, 50px) 0 clamp(32px, 4vw, 52px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kicker,
.meta,
.image-count,
.series-number {
  font-family: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.hero h1,
.page-title {
  margin: 0;
  font-size: clamp(48px, 8vw, 126px);
  line-height: 0.95;
  font-weight: 520;
  letter-spacing: 0;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 108px);
}

.hero-text,
.page-intro,
.series-summary,
.footer-note {
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 24px);
  line-height: 1.55;
}

.hero-text {
  margin: 26px 0 0;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  white-space: nowrap;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button {
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  padding: 0 18px;
}

.button:hover {
  background: transparent;
  color: var(--ink);
}

.button:active,
.text-link:active,
.nav-contact:active {
  transform: translateY(1px);
}

.text-link {
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 420px;
  transform-origin: 50% 46%;
  will-change: transform, opacity;
}

.hero-media img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.hero-media.reveal {
  opacity: 0;
  transform: translate3d(0, -18px, 0) scale(0.985);
}

.hero-media.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity 1700ms ease,
    transform 2400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-media.reveal.is-visible img {
  animation: hero-image-drift 18s ease-in-out 900ms both;
}

@keyframes hero-image-drift {
  0% {
    transform: scale(1) translate3d(0, 0, 0);
  }

  55% {
    transform: scale(1.018) translate3d(-1.2%, 1.4%, 0);
  }

  100% {
    transform: scale(1.01) translate3d(0.8%, 2.2%, 0);
  }
}

.section {
  padding: clamp(68px, 11vw, 154px) 0;
  border-top: 1px solid var(--line);
}

.image-field-section {
  border-top: 0;
  padding-top: clamp(150px, 20vw, 300px);
}

.section-heading {
  margin: 0 0 clamp(28px, 4vw, 56px);
  font-size: clamp(30px, 4.8vw, 72px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.lead-block {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.42fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
}

.lead-block .page-intro {
  margin: 0;
}

.section-action {
  margin: 28px 0 0;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.78fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: start;
}

.about-heading .section-heading {
  margin-bottom: 20px;
}

.about-portrait {
  width: min(100%, 360px);
  margin: clamp(42px, 6vw, 82px) 0 0;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--soft);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-role,
.about-label {
  margin: 0;
  font-family: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.about-copy {
  max-width: 690px;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.65vw, 24px);
  line-height: 1.55;
}

.about-copy p + p {
  margin-top: 1.35em;
}

.about-details {
  margin-top: clamp(74px, 11vw, 150px);
  display: grid;
  grid-template-columns: minmax(240px, 0.78fr) minmax(420px, 1.3fr);
  gap: clamp(32px, 7vw, 110px);
  align-items: start;
}

.about-detail {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.about-value {
  margin: 28px 0 0;
  max-width: 32ch;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.45;
}

.about-value span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.recognition-list {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px clamp(26px, 4vw, 54px);
}

.recognition-list li {
  display: grid;
  gap: 7px;
  align-content: start;
  color: var(--muted);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.4;
}

.recognition-list li span:first-child {
  color: var(--ink);
}

.recognition-list li span:last-child {
  color: var(--muted);
}

.homepage-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(12px, 2vw, 30px);
  row-gap: clamp(46px, 8vw, 132px);
  align-items: start;
  padding: clamp(24px, 5vw, 88px) 0 clamp(96px, 15vw, 220px);
}

.image-field-note {
  max-width: 30ch;
  margin: 0 0 0 auto;
  padding-top: clamp(18px, 2.6vw, 34px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: clamp(11px, 0.9vw, 14px);
  font-weight: 500;
  line-height: 1.35;
}

.homepage-grid figure,
.series-grid figure,
.detail-grid figure {
  margin: 0;
  overflow: hidden;
}

.homepage-grid img,
.series-grid img,
.detail-grid img {
  transition: transform 700ms ease, opacity 700ms ease;
}

.home-shot:hover img,
.series-card:hover img {
  transform: scale(1.025);
}

.home-shot {
  position: relative;
  aspect-ratio: var(--shot-ratio, 4 / 5);
  will-change: transform, opacity;
}

.home-shot img {
  height: 100%;
  object-fit: cover;
}

.home-shot.reveal {
  opacity: 0;
  transform:
    translate3d(var(--home-start-x, 0), var(--home-start-y, -120px), 0)
    rotate(var(--home-start-rotate, 0deg))
    scale(var(--home-start-scale, 0.96));
}

.home-shot.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  transition:
    opacity 2200ms ease,
    transform 3400ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--home-delay, 0ms);
}

.home-shot:nth-child(1) {
  grid-column: 2 / span 6;
  --shot-ratio: 5637 / 3758;
  --home-start-x: 40vw;
  --home-start-y: -92vh;
  --home-start-rotate: 0deg;
  --home-start-scale: 1.18;
  --home-delay: 40ms;
}

.home-shot:nth-child(1).reveal.is-visible {
  transition:
    opacity 2600ms ease,
    transform 4600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-shot:nth-child(2) {
  grid-column: 8 / span 4;
  margin-top: 16vw;
  --shot-ratio: 4 / 5;
  --home-start-x: -8vw;
  --home-start-y: -72vh;
  --home-start-rotate: 2deg;
  --home-delay: 520ms;
}

.home-shot:nth-child(3) {
  grid-column: 1 / span 3;
  margin-top: 22vw;
  --shot-ratio: 3 / 4;
  --home-start-x: 34vw;
  --home-start-y: -76vh;
  --home-start-rotate: 1.5deg;
  --home-delay: 760ms;
}

.home-shot:nth-child(4) {
  grid-column: 5 / span 5;
  margin-top: 4vw;
  --shot-ratio: 5 / 4;
  --home-start-x: 18vw;
  --home-start-y: -86vh;
  --home-start-rotate: -1deg;
  --home-delay: 300ms;
}

.home-shot:nth-child(5) {
  grid-column: 10 / span 3;
  margin-top: 26vw;
  --shot-ratio: 4 / 5;
  --home-start-x: -26vw;
  --home-start-y: -58vh;
  --home-start-rotate: 2.5deg;
  --home-delay: 560ms;
}

.home-shot:nth-child(6) {
  grid-column: 3 / span 6;
  margin-top: 10vw;
  --shot-ratio: 16 / 11;
  --home-start-x: 16vw;
  --home-start-y: -40vh;
  --home-start-rotate: -1.5deg;
  --home-delay: 120ms;
}

.home-shot:nth-child(7) {
  grid-column: 9 / span 4;
  margin-top: 30vw;
  --shot-ratio: 5702 / 3802;
  --home-start-x: -20vw;
  --home-start-y: -54vh;
  --home-start-rotate: 1deg;
  --home-delay: 360ms;
}

.home-shot:nth-child(8) {
  grid-column: 1 / span 5;
  margin-top: 12vw;
  --shot-ratio: 5 / 4;
  --home-start-x: 24vw;
  --home-start-y: -44vh;
  --home-start-rotate: -2.5deg;
  --home-delay: 500ms;
}

.home-shot:nth-child(9) {
  grid-column: 6 / span 3;
  margin-top: 24vw;
  --shot-ratio: 4 / 5;
  --home-start-x: 10vw;
  --home-start-y: -50vh;
  --home-start-rotate: 2deg;
  --home-delay: 300ms;
}

.home-shot:nth-child(10) {
  grid-column: 9 / span 4;
  margin-top: 6vw;
  --shot-ratio: 4 / 3;
  --home-start-x: -22vw;
  --home-start-y: -42vh;
  --home-start-rotate: -1deg;
  --home-delay: 620ms;
}

.home-shot:nth-child(11) {
  grid-column: 2 / span 4;
  margin-top: 18vw;
  --shot-ratio: 3 / 4;
  --home-start-x: 26vw;
  --home-start-y: -52vh;
  --home-start-rotate: 1.5deg;
  --home-delay: 240ms;
}

.home-shot:nth-child(12) {
  grid-column: 6 / span 6;
  margin-top: 28vw;
  --shot-ratio: 16 / 10;
  --home-start-x: -24vw;
  --home-start-y: -60vh;
  --home-start-rotate: -2deg;
  --home-delay: 460ms;
}

.home-shot:nth-child(13) {
  grid-column: 1 / span 3;
  margin-top: 10vw;
  --shot-ratio: 4 / 5;
  --home-start-x: 30vw;
  --home-start-y: -46vh;
  --home-start-rotate: 2deg;
  --home-delay: 700ms;
}

.home-shot:nth-child(14) {
  grid-column: 5 / span 4;
  margin-top: 2vw;
  --shot-ratio: 1866 / 2799;
  --home-start-x: -12vw;
  --home-start-y: -36vh;
  --home-start-rotate: -1.5deg;
  --home-delay: 340ms;
}

.home-shot:nth-child(15) {
  grid-column: 10 / span 3;
  margin-top: 20vw;
  --shot-ratio: 5397 / 3598;
  --home-start-x: -28vw;
  --home-start-y: -56vh;
  --home-start-rotate: 2.5deg;
  --home-delay: 760ms;
}

.home-shot:nth-child(16) {
  grid-column: 2 / span 5;
  margin-top: 26vw;
  --shot-ratio: 16 / 11;
  --home-start-x: 18vw;
  --home-start-y: -42vh;
  --home-start-rotate: -2deg;
  --home-delay: 540ms;
}

.home-shot:nth-child(17) {
  grid-column: 8 / span 4;
  margin-top: 8vw;
  --shot-ratio: 4 / 5;
  --home-start-x: -22vw;
  --home-start-y: -48vh;
  --home-start-rotate: 1deg;
  --home-delay: 660ms;
}

.home-shot:nth-child(18) {
  grid-column: 4 / span 3;
  margin-top: 22vw;
  --shot-ratio: 3 / 4;
  --home-start-x: 14vw;
  --home-start-y: -52vh;
  --home-start-rotate: -2.5deg;
  --home-delay: 840ms;
}

.home-shot:nth-child(19) {
  grid-column: 7 / span 6;
  margin-top: 16vw;
  --shot-ratio: 16 / 10;
  --home-start-x: -20vw;
  --home-start-y: -58vh;
  --home-start-rotate: 1.5deg;
  --home-delay: 900ms;
}

.home-shot:nth-child(20) {
  grid-column: 2 / span 5;
  margin-top: 28vw;
  --shot-ratio: 16 / 11;
  --home-start-x: 22vw;
  --home-start-y: -64vh;
  --home-start-rotate: -1deg;
  --home-delay: 980ms;
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px) clamp(18px, 2.6vw, 34px);
}

.series-card {
  display: grid;
  gap: 16px;
}

.series-card:nth-child(2),
.series-card:nth-child(5) {
  margin-top: 7vw;
}

.series-card:nth-child(3) {
  margin-top: 3vw;
}

.series-cover {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft);
}

.series-cover img {
  height: 100%;
  object-fit: cover;
}

.series-info {
  display: grid;
  gap: 7px;
}

.series-title-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}

.series-title-row h3 {
  margin: 0;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.08;
  font-weight: 500;
}

.series-summary {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.page-head {
  padding: clamp(58px, 10vw, 132px) 0 clamp(46px, 7vw, 84px);
}

.page-head .kicker {
  margin-bottom: 18px;
}

.page-title {
  max-width: 1060px;
  font-size: clamp(44px, 7vw, 108px);
}

.page-intro {
  margin: 30px 0 0;
}

.series-index {
  padding-bottom: clamp(70px, 12vw, 150px);
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding: clamp(54px, 9vw, 122px) 0 clamp(46px, 8vw, 112px);
}

.detail-copy {
  align-self: center;
  min-width: 0;
}

.detail-copy .page-title {
  font-size: clamp(42px, 6.8vw, 104px);
}

.detail-meta {
  margin-top: 28px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.detail-hero-image {
  min-height: 62vh;
  background: var(--soft);
}

.detail-hero-image img {
  height: 100%;
  min-height: 62vh;
  object-fit: cover;
}

.detail-statement {
  border-top: 1px solid var(--line);
  padding: clamp(44px, 8vw, 118px) 0 clamp(54px, 8vw, 126px);
  display: grid;
  grid-template-columns: minmax(0, 0.26fr) minmax(320px, 0.74fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
}

.detail-statement::before {
  content: "Statement";
  font-family: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.detail-statement-copy {
  max-width: 760px;
  min-width: 0;
}

.statement-paragraph {
  margin: 0;
  color: var(--muted);
  font-size: clamp(12.5px, 0.82vw, 13.5px);
  line-height: 1.65;
  letter-spacing: 0.01em;
  overflow-wrap: break-word;
}

.statement-paragraph + .statement-paragraph {
  margin-top: 1em;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 2vw, 30px);
  align-items: start;
  padding-bottom: clamp(76px, 12vw, 160px);
}

.detail-shot {
  grid-column: span 4;
}

.detail-shot:nth-child(4n + 1) {
  grid-column: span 7;
}

.detail-shot:nth-child(4n + 2) {
  grid-column: span 5;
  margin-top: 8vw;
}

.detail-shot:nth-child(4n + 3) {
  grid-column: 2 / span 4;
}

.detail-shot:nth-child(4n + 4) {
  grid-column: span 6;
  margin-top: 4vw;
}

.detail-shot img {
  width: 100%;
  object-fit: cover;
}

.retouch-head {
  max-width: 980px;
}

.retouch-head .page-intro + .page-intro {
  margin-top: 14px;
}

.retouch-capabilities {
  margin: 26px 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.retouch-capabilities span {
  display: block;
  margin-bottom: 7px;
  font-family: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  color: var(--ink);
  font-size: 10px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.retouch-interaction-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-family: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.retouch-index {
  padding: 0 0 clamp(44px, 8vw, 100px);
}

.retouch-category-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.retouch-category-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 15px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: border-color 180ms ease, color 180ms ease, transform 160ms ease;
}

.retouch-category-link:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.retouch-category-link:active {
  transform: translateY(1px);
}

.retouch-work {
  padding-bottom: clamp(76px, 12vw, 160px);
}

.retouch-category {
  border-top: 1px solid var(--line);
  padding: clamp(58px, 9vw, 128px) 0;
  scroll-margin-top: 96px;
}

.retouch-category-head {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.62fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  margin-bottom: clamp(34px, 6vw, 82px);
}

.retouch-category-head .section-heading {
  margin-bottom: 0;
}

.retouch-pair-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 72px);
}

.retouch-pair {
  display: grid;
  gap: clamp(10px, 1.6vw, 24px);
  align-items: start;
}

.retouch-pair.has-artwork {
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.retouch-panel {
  position: relative;
  overflow: hidden;
  background: var(--soft);
}

.retouch-panel img {
  display: block;
  width: 100%;
  transition: transform 700ms ease;
}

.retouch-panel:hover img,
.retouch-panel:focus-visible img {
  transform: scale(1.018);
}

.retouch-compare {
  cursor: pointer;
  outline: 0;
}

.retouch-compare .retouch-before {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 260ms ease, transform 700ms ease;
}

.retouch-compare.has-before:hover .retouch-before,
.retouch-compare.has-before:focus-visible .retouch-before,
.retouch-compare.is-before-visible .retouch-before {
  opacity: 1;
}

.retouch-compare:focus-visible {
  box-shadow: inset 0 0 0 1px var(--ink);
}

.retouch-label,
.retouch-finished-label {
  font-family: "Geist Mono", "SFMono-Regular", Consolas, monospace;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.retouch-label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 6px 8px;
  background: rgba(244, 243, 239, 0.82);
  backdrop-filter: blur(12px);
}

.retouch-label-before {
  opacity: 0;
  transition: opacity 180ms ease;
}

.retouch-compare.has-before:hover .retouch-label-after,
.retouch-compare.has-before:focus-visible .retouch-label-after,
.retouch-compare.is-before-visible .retouch-label-after {
  opacity: 0;
}

.retouch-compare.has-before:hover .retouch-label-before,
.retouch-compare.has-before:focus-visible .retouch-label-before,
.retouch-compare.is-before-visible .retouch-label-before {
  opacity: 1;
}

.retouch-finished {
  margin-top: clamp(52px, 8vw, 108px);
}

.retouch-finished-label {
  margin: 0 0 18px;
}

.retouch-finished-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.6vw, 22px);
}

.retouch-finished-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft);
}

.retouch-finished-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.retouch-finished-image:hover img {
  transform: scale(1.018);
}

.site-footer {
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(42px, 7vw, 76px) var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

.footer-note {
  margin: 0;
  max-width: 42ch;
  font-size: 17px;
}

.footer-links {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms ease;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .home-shot.reveal,
  .hero-media.reveal,
  .hero-media.reveal.is-visible,
  .home-shot.reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .hero-media.reveal.is-visible img {
    animation: none;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: auto;
  }

  .nav {
    min-height: 68px;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .nav-links {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    gap: 18px;
    overflow: visible;
    padding-bottom: 3px;
  }

  .nav-series-menu {
    align-self: center;
  }

  .series-dropdown {
    top: calc(100% + 12px);
    left: 0;
    transform: translate(0, -8px);
  }

  .nav-series-menu.is-open .series-dropdown,
  .nav-series-menu:hover .series-dropdown {
    transform: translate(0, 0);
  }

  .nav-contact {
    grid-column: 2;
  }

  .hero,
  .lead-block,
  .about-layout,
  .about-details,
  .detail-hero,
  .detail-statement,
  .retouch-category-head {
    grid-template-columns: 1fr;
  }

  .about-copy {
    max-width: 760px;
  }

  .about-details {
    margin-top: 72px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media,
  .hero-media img,
  .detail-hero-image,
  .detail-hero-image img {
    min-height: auto;
  }

  .hero-media img,
  .detail-hero-image img {
    max-height: 72vh;
    object-fit: cover;
  }

  .series-grid {
    grid-template-columns: 1fr 1fr;
  }

  .retouch-pair-grid,
  .retouch-pair,
  .retouch-pair.has-artwork {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 640px) {
  .nav {
    grid-template-columns: 1fr;
  }

  .nav-contact {
    display: none;
  }

  .hero h1,
  .page-title,
  .detail-copy .page-title {
    font-size: clamp(42px, 15vw, 72px);
    line-height: 0.98;
  }

  .detail-copy .page-title {
    font-size: clamp(30px, 8.2vw, 32px);
    line-height: 1.04;
    max-width: 12ch;
    overflow-wrap: normal;
  }

  .homepage-grid,
  .detail-grid {
    display: block;
  }

  .image-field-note {
    margin-left: 0;
  }

  .home-shot,
  .detail-shot {
    margin: 0 0 18px !important;
  }

  .series-grid {
    grid-template-columns: 1fr;
  }

  .series-card,
  .series-card:nth-child(2),
  .series-card:nth-child(3),
  .series-card:nth-child(5) {
    margin-top: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .recognition-list {
    grid-template-columns: 1fr;
  }

  .recognition-list li {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .recognition-list li span:last-child {
    text-align: left;
  }

  .retouch-category-link {
    width: 100%;
    justify-content: center;
  }

  .retouch-finished-grid {
    grid-template-columns: 1fr;
  }
}
