:root {
  --paper: #f3f2ef;
  --paper-deep: #e9e7e2;
  --ink: #242423;
  --muted: #74716c;
  --line: rgba(36, 36, 35, 0.18);
  --dark: #2d2d2c;
  --dark-soft: #373735;
  --light: #f6f5f2;
  --accent: #9a271e;
  --page: min(1460px, calc(100vw - 96px));
  --header-height: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

section[id] {
  scroll-margin-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

body.menu-open {
  overflow: hidden;
}

html.intro-playing,
html.intro-playing body {
  overflow: hidden;
  overscroll-behavior: none;
}

html.intro-playing {
  scroll-behavior: auto !important;
}

.type-intro {
  position: fixed;
  z-index: 1900;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 4vw;
  background: var(--paper);
  color: var(--ink);
  clip-path: inset(0 0 0 0);
  transition: clip-path 850ms var(--ease);
}

.type-intro::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: rgba(244, 243, 240, 0.3);
}

.type-intro-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: var(--paper);
}

.type-intro-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  filter: grayscale(1) contrast(1.08);
}

.type-intro[hidden] {
  display: none;
}

.type-intro.is-leaving {
  clip-path: inset(0 0 100% 0);
}

.type-intro-line {
  position: relative;
  z-index: 2;
  display: flex;
  overflow: visible;
  font-size: clamp(7rem, 18vw, 20rem);
  font-weight: 300;
  letter-spacing: -0.095em;
  line-height: 0.82;
}

.type-intro-line--second {
  justify-content: flex-end;
  color: var(--accent);
}

.type-intro-line span {
  display: inline-block;
  opacity: 0;
  transform: translateY(112%) rotate(4deg);
}

.type-intro.is-active .type-intro-line span {
  animation: letter-arrival 720ms var(--ease) forwards;
  animation-delay: calc(var(--letter) * 42ms);
}

.type-intro p {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 3vw;
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  opacity: 0;
}

.type-intro.is-active p {
  animation: intro-label 500ms ease 600ms forwards;
}

@keyframes letter-arrival {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes intro-label {
  to { opacity: 1; }
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
}

::selection {
  background: var(--accent);
  color: white;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: white;
  color: var(--ink);
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

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

.section-pad {
  width: var(--page);
  margin-inline: auto;
}

.eyebrow,
.label,
.section-marker,
.project-number,
.credentials dt,
.cv-group h3 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  color: white;
  transition:
    background-color 300ms ease,
    color 300ms ease,
    backdrop-filter 300ms ease;
}

.site-header.scrolled,
.site-header.menu-active {
  background: rgba(243, 242, 239, 0.94);
  color: var(--ink);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(36, 36, 35, 0.08);
}

.brand {
  display: inline-flex;
  gap: 0.35em;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.3vw, 38px);
  font-size: 0.78rem;
}

.site-navigation a {
  position: relative;
  padding: 10px 0;
}

.site-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms var(--ease);
}

.site-navigation a:hover::after,
.site-navigation a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-navigation .nav-download {
  padding: 8px 12px;
  border: 1px solid currentColor;
}

.site-navigation .nav-download::after {
  display: none;
}

.menu-toggle {
  display: none;
  border: 0;
  padding: 10px 0 10px 12px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 0.76rem;
}

.menu-toggle i {
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-left: 8px;
  background: currentColor;
  vertical-align: middle;
  transition: transform 250ms ease;
}

.hero {
  position: relative;
  height: 100svh;
  min-height: 100svh;
  overflow: hidden;
  background: var(--dark);
  color: white;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 15, 14, 0.52), transparent 42%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.56), transparent 48%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 24%);
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  z-index: 3;
  inset: 0;
  pointer-events: none;
}

.hero-copy .eyebrow {
  position: absolute;
  top: 136px;
  left: 6vw;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.hero h1 {
  position: absolute;
  inset: 19vh 0 auto;
  margin: 0;
  color: white;
  font-size: clamp(8rem, 18vw, 20rem);
  font-weight: 300;
  letter-spacing: -0.085em;
  line-height: 0.68;
  mix-blend-mode: difference;
}

.hero-name {
  display: block;
  width: max-content;
  opacity: 0;
  filter: blur(10px);
  will-change: transform, opacity, filter;
}

.hero-name--artan {
  margin-left: 2vw;
  transform: translateX(-8vw);
}

.hero-name--shalsi {
  margin-left: 30vw;
  transform: translateX(8vw);
}

.site-entered .hero-name {
  opacity: 1;
  filter: blur(0);
  transform: none;
  transition:
    opacity 1s ease 1250ms,
    filter 1.2s ease 1250ms,
    transform 1.4s var(--ease) 1220ms;
}

.hero-note {
  position: absolute;
  left: 6vw;
  bottom: 38px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-image {
  position: relative;
  margin: 0;
  height: 100%;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.7) contrast(1.02);
  transform: scale(1.055);
  animation: hero-breath 18s ease-in-out infinite alternate;
}

.hero-image figcaption {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.66rem;
  text-align: right;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.5);
}

.hero-image figcaption span:last-child {
  color: rgba(255, 255, 255, 0.58);
}

.hero-concept {
  position: absolute;
  right: 7vw;
  bottom: 15vh;
  display: grid;
  grid-template-columns: auto minmax(92px, auto);
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.77rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.concept-window {
  height: 1.5em;
  overflow: hidden;
  color: white;
}

.concept-reel {
  display: flex;
  flex-direction: column;
  animation: concept-cycle 10s var(--ease) infinite;
}

.concept-reel > span {
  height: 1.5em;
  flex: 0 0 1.5em;
}

@keyframes hero-breath {
  to { transform: scale(1.105) translateX(-0.8%); }
}

@keyframes concept-cycle {
  0%, 15% { transform: translateY(0); }
  23%, 38% { transform: translateY(-1.5em); }
  46%, 61% { transform: translateY(-3em); }
  69%, 84% { transform: translateY(-4.5em); }
  92%, 100% { transform: translateY(-6em); }
}

.scroll-cue {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 1px;
  background: rgba(255, 255, 255, 0.42);
  overflow: hidden;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: white;
  transform: translateX(-105%);
  animation: cue 2.4s var(--ease) infinite;
}

@keyframes cue {
  45%, 100% { transform: translateX(105%); }
}

.introduction {
  padding-top: clamp(110px, 14vw, 220px);
  padding-bottom: clamp(110px, 13vw, 205px);
}

.section-marker {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--accent);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(70px, 10vw, 170px);
  padding-top: clamp(62px, 7.5vw, 118px);
}

.intro-statement h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.5rem, 4.6vw, 5.3rem);
  font-weight: 300;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.intro-statement p {
  max-width: 650px;
  margin: 60px 0 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.24rem);
  line-height: 1.7;
}

.intro-statement p.intro-principle {
  max-width: 590px;
  margin-top: 52px;
  color: var(--ink);
  font-size: clamp(1.2rem, 1.75vw, 1.65rem);
  line-height: 1.45;
}

.intro-statement p.intro-detail {
  margin-top: 22px;
}

.credentials {
  margin: 0;
}

.credentials > div {
  padding: 0 0 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.credentials > div:last-child {
  margin-bottom: 0;
}

.credentials dt {
  margin-bottom: 14px;
  color: var(--accent);
}

.credentials dd {
  margin: 0;
  font-size: clamp(1.12rem, 1.8vw, 1.7rem);
  font-weight: 400;
}

.credentials dd.meta {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.84rem;
}

.portfolio-callout {
  background: var(--accent);
  color: white;
}

.portfolio-download {
  display: grid;
  grid-template-columns: 0.45fr 1.45fr auto;
  gap: clamp(30px, 6vw, 100px);
  align-items: end;
  padding-top: clamp(48px, 6vw, 88px);
  padding-bottom: clamp(48px, 6vw, 88px);
}

.portfolio-download .label {
  align-self: start;
  color: rgba(255, 255, 255, 0.72);
}

.portfolio-download strong {
  font-size: clamp(2.8rem, 6vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.portfolio-meta {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.portfolio-meta i {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 50%;
  font-size: 1.3rem;
  font-style: normal;
  transition:
    background-color 300ms ease,
    color 300ms ease,
    transform 350ms var(--ease);
}

.portfolio-download:hover .portfolio-meta i,
.portfolio-download:focus-visible .portfolio-meta i {
  background: white;
  color: var(--accent);
  transform: translateY(5px);
}

.works-heading {
  padding-top: 44px;
  padding-bottom: clamp(36px, 4.5vw, 68px);
}

.project {
  padding-top: clamp(95px, 11vw, 170px);
  padding-bottom: clamp(100px, 13vw, 210px);
}

.project-header {
  display: grid;
  grid-template-columns: 86px minmax(280px, 1.1fr) minmax(290px, 0.7fr);
  gap: 40px;
  align-items: start;
  margin-bottom: clamp(80px, 10vw, 160px);
}

.project-light {
  position: relative;
  overflow: hidden;
  padding-top: clamp(34px, 4.5vw, 68px);
  padding-bottom: clamp(72px, 8vw, 118px);
  background: #ebe9e4;
}

.project-header--visual {
  grid-template-columns: 86px minmax(300px, 0.72fr) minmax(500px, 1.28fr);
  gap: clamp(30px, 4vw, 66px);
  align-items: start;
  margin-bottom: clamp(62px, 7vw, 108px);
}

.project-intro-copy {
  padding-top: clamp(4px, 1.8vw, 26px);
}

.project-header--visual .project-kicker {
  margin: 0 0 clamp(30px, 3.4vw, 48px);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.project-header--visual h3 {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.5vw, 22px);
}

.project-mark {
  color: var(--accent);
  font-size: 1.5em;
  line-height: 0.72;
}

.project-title-rest {
  font-size: 0.72em;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.project-header--visual .project-period {
  margin-top: clamp(24px, 2.8vw, 38px);
}

.project-header--visual .project-summary {
  max-width: 430px;
  margin: clamp(26px, 3vw, 42px) 0 0;
}

.project-header-image {
  width: 100%;
  grid-column: 3;
  grid-row: 1;
}

.project-number {
  margin: 5px 0 0;
  color: var(--accent);
}

.project-header h3,
.paper-header h3 {
  margin: 0;
  font-size: clamp(2.8rem, 5.2vw, 6rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.project-header > div > p {
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.project-summary {
  max-width: 430px;
  margin: 8px 0 0 auto;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.15vw, 1.12rem);
  line-height: 1.65;
}

.image-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  text-align: left;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 900ms var(--ease),
    filter 600ms ease;
}

.image-frame:hover img,
.image-frame:focus-visible img {
  transform: scale(1.018);
  filter: saturate(0.96);
}

.image-caption {
  display: block;
  margin-top: 12px;
  font-size: 0.68rem;
  letter-spacing: 0.015em;
}

.image-wide {
  width: calc(100% - 12vw);
  height: min(78vw, 940px);
  max-height: 83svh;
  margin: 0 auto;
}

.image-wide img {
  object-position: center 48%;
}

.image-pair {
  display: grid;
  grid-template-columns: 1.23fr 0.77fr;
  gap: clamp(28px, 6vw, 100px);
  align-items: end;
  padding-top: clamp(100px, 13vw, 210px);
}

.image-pair .image-frame:first-child {
  height: min(52vw, 760px);
}

.image-pair .image-portrait {
  height: min(42vw, 650px);
}

.project-note {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: 40px;
  padding-top: clamp(38px, 4vw, 64px);
}

.project-note p:first-child {
  margin: 0;
  font-size: clamp(2rem, 4.3vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 1;
}

.project-note p:last-child {
  max-width: 450px;
  margin: 10px 0 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.recognition-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: center;
}

.recognition-feature .image-frame {
  width: min(100%, 720px);
}

.object-copy {
  align-self: center;
}

.object-copy .eyebrow {
  color: var(--accent);
}

.object-copy h4 {
  margin: 20px 0 26px;
  font-size: clamp(1.5rem, 2.5vw, 2.7rem);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.object-copy > p:last-child {
  color: var(--muted);
  font-size: 0.8rem;
}

.project-carbonio {
  padding: 0;
  background: #e4e1db;
}

.carbonio-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(46px, 8vw, 140px);
  align-items: center;
  padding-top: clamp(90px, 12vw, 180px);
  padding-bottom: clamp(100px, 13vw, 200px);
}

.carbonio-copy .project-number {
  margin: 0 0 34px;
}

.carbonio-copy .eyebrow {
  margin: 0 0 26px;
  color: var(--accent);
}

.carbonio-copy h3 {
  margin: 0;
  font-size: clamp(3.4rem, 7.2vw, 8.2rem);
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 0.84;
}

.carbonio-copy h3 span {
  font-size: 0.52em;
  letter-spacing: -0.045em;
}

.carbonio-summary {
  max-width: 420px;
  margin: 42px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.65;
}

.carbonio-note {
  max-width: 360px;
  margin: 28px 0 0;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  text-transform: uppercase;
}

.carbonio-figure {
  margin: 0;
}

.carbonio-frame {
  width: 100%;
}

.carbonio-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.carbonio-figure figcaption {
  margin-top: 13px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.015em;
}

.project-film {
  padding-top: 0;
  padding-bottom: clamp(70px, 8vw, 120px);
}

.project-film-header {
  display: grid;
  grid-template-columns: 120px minmax(280px, 1fr) auto;
  gap: clamp(24px, 4vw, 64px);
  align-items: baseline;
  width: min(1120px, 100%);
  margin-left: auto;
  padding: 0 0 clamp(26px, 2.8vw, 40px);
}

.project-film-header .eyebrow {
  margin: 0;
  color: var(--accent);
}

.project-film-header .film-description {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  line-height: 1.5;
}

.project-film-header .film-meta {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.045em;
  white-space: nowrap;
  text-transform: uppercase;
}

.project-film-media {
  width: min(1120px, 100%);
  margin-left: auto;
  overflow: hidden;
  background: #161615;
}

.project-film-media video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 848 / 480;
  background: #161615;
  object-fit: contain;
}

.project-dark {
  background: var(--dark);
  color: var(--light);
}

.project-dark .project-header > div > p,
.project-dark .project-summary,
.project-dark .image-caption,
.project-dark .steel-copy {
  color: rgba(246, 245, 242, 0.58);
}

.matter-lead {
  position: relative;
  min-height: 720px;
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  align-items: center;
  overflow: hidden;
}

.matter-lead .image-frame {
  z-index: 2;
  width: min(520px, 36vw);
  height: min(660px, 49vw);
  justify-self: center;
}

.matter-word {
  margin-left: -8vw;
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(7rem, 18vw, 20rem);
  font-weight: 300;
  letter-spacing: -0.09em;
  line-height: 0.8;
  user-select: none;
}

.steel-grid {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: clamp(30px, 7vw, 120px);
  align-items: center;
  padding-top: clamp(110px, 14vw, 220px);
}

.steel-grid .image-frame:first-child {
  height: min(50vw, 720px);
}

.steel-grid .image-frame:last-child {
  height: min(35vw, 500px);
}

.steel-installation {
  display: grid;
  grid-template-columns: 0.85fr 0.85fr 0.7fr;
  gap: clamp(28px, 5vw, 78px);
  align-items: center;
  padding-top: clamp(110px, 14vw, 230px);
}

.steel-installation .image-frame {
  height: min(50vw, 730px);
}

.steel-copy {
  font-size: clamp(1.2rem, 2.1vw, 2.15rem);
  font-weight: 300;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.yellow-field {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 66px);
  align-items: end;
  padding-top: clamp(120px, 15vw, 240px);
}

.yellow-field .image-frame:first-child {
  height: min(43vw, 640px);
}

.yellow-field .image-frame:last-child {
  height: min(35vw, 530px);
}

.project-space {
  background: var(--paper-deep);
}

.morbida {
  width: 100%;
  height: min(69vw, 980px);
}

.morbida .image-caption {
  position: absolute;
  left: 38px;
  bottom: 30px;
  margin: 0;
  color: white;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.56);
}

.horizon-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(30px, 7vw, 120px);
  align-items: end;
  padding-top: clamp(110px, 14vw, 230px);
}

.horizon-grid .image-frame:first-child {
  height: min(39vw, 590px);
}

.horizon-grid .image-frame:last-child {
  height: min(45vw, 690px);
}

.connection-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(20px, 3vw, 48px);
  align-items: end;
  padding-top: clamp(110px, 14vw, 220px);
}

.connection-grid .image-frame {
  height: min(43vw, 650px);
}

.mirror-feature {
  padding-top: clamp(130px, 17vw, 270px);
  padding-bottom: clamp(40px, 6vw, 90px);
}

.mirror-header {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 36px;
  align-items: end;
  padding-top: 22px;
  padding-bottom: clamp(65px, 8vw, 125px);
  border-top: 1px solid var(--line);
}

.mirror-header h4 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 6.5vw, 7.5rem);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.mirror-header > p:last-child {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.8rem;
}

.mirror-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.mirror-main {
  height: min(58vw, 850px);
}

.mirror-main .image-caption,
.mirror-detail .image-caption {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 17px;
  margin: 0;
  padding: 7px 9px;
  background: rgba(243, 242, 239, 0.88);
  color: var(--ink);
}

.mirror-side {
  display: flex;
  flex-direction: column;
  gap: clamp(38px, 4vw, 62px);
}

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

.mirror-code {
  margin: 0 0 36px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.mirror-copy > p:not(.mirror-code) {
  margin: 0;
  font-size: clamp(1.15rem, 1.65vw, 1.65rem);
  font-weight: 300;
  letter-spacing: -0.015em;
  line-height: 1.5;
}

.mirror-copy dl {
  margin: 54px 0 0;
}

.mirror-copy dl > div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.mirror-copy dt {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.mirror-copy dd {
  margin: 0;
  font-size: 0.82rem;
}

.mirror-detail {
  height: min(20vw, 270px);
}

.mirror-detail img {
  object-position: 43% 48%;
  transform: scale(1.72);
}

.mirror-detail:hover img,
.mirror-detail:focus-visible img {
  transform: scale(1.79);
}

.paper {
  padding-top: clamp(115px, 14vw, 220px);
  padding-bottom: clamp(120px, 15vw, 240px);
}

.paper-header {
  display: grid;
  grid-template-columns: 86px 1fr 0.7fr;
  gap: 40px;
  align-items: start;
  margin-bottom: clamp(75px, 9vw, 145px);
}

.paper-header > p:last-child {
  max-width: 340px;
  margin: 10px 0 0 auto;
  color: var(--muted);
}

.paper-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(25px, 5vw, 76px);
  align-items: end;
}

.paper-grid .image-frame {
  height: min(40vw, 590px);
}

.paper-grid .image-frame:nth-child(3) {
  height: min(46vw, 680px);
}

.individual-work {
  background: #dfdcd5;
}

.individual-work-inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: center;
  padding-top: clamp(95px, 12vw, 180px);
  padding-bottom: clamp(95px, 12vw, 180px);
}

.individual-work-copy .eyebrow {
  margin: 0 0 clamp(34px, 4vw, 58px);
  color: var(--accent);
}

.individual-work-copy h3 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.individual-work-statement {
  max-width: 450px;
  margin: clamp(38px, 4.5vw, 68px) 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.65;
}

.individual-work-specs {
  max-width: 470px;
  margin: clamp(46px, 5vw, 76px) 0 0;
}

.individual-work-specs > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 22px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.individual-work-specs dt {
  color: var(--muted);
  font-size: 0.67rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.individual-work-specs dd {
  margin: 0;
  font-size: 0.82rem;
}

.individual-work-image {
  width: 100%;
}

.exhibitions {
  padding-top: clamp(100px, 12vw, 190px);
  padding-bottom: clamp(110px, 14vw, 220px);
  border-top: 1px solid var(--line);
}

.bio-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(70px, 12vw, 190px);
  padding-top: clamp(70px, 9vw, 140px);
}

.bio-copy h2 {
  margin: 0 0 55px;
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.bio-copy > p {
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.75;
}

.portrait {
  width: 180px;
  height: auto;
  aspect-ratio: 308 / 440;
  object-fit: cover;
  margin: 70px 0 0 auto;
  filter: saturate(0.72);
}

.cv-group {
  padding-bottom: 38px;
  margin-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.cv-group h3 {
  margin: 0 0 24px;
  color: var(--accent);
}

.cv-group ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cv-group li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  padding: 7px 0;
  font-size: 0.92rem;
}

.cv-group time {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: 0.83rem;
}

.text-link span {
  transition: transform 300ms var(--ease);
}

.text-link:hover span {
  transform: translate(4px, 4px);
}

.contact {
  background: var(--dark);
  color: var(--light);
}

.contact-inner {
  padding-top: clamp(100px, 13vw, 200px);
  padding-bottom: clamp(100px, 12vw, 180px);
}

.contact .eyebrow {
  color: rgba(255, 255, 255, 0.52);
}

.contact h2 {
  max-width: 1050px;
  margin: 55px 0 100px;
  font-size: clamp(3.1rem, 6.7vw, 8rem);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.7fr;
  gap: 50px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-grid .label {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.45);
}

.contact-grid a,
.contact-grid p:not(.label) {
  margin: 0 0 9px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.95rem, 1.35vw, 1.25rem);
}

.contact-grid a:hover {
  color: white;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 48px;
  background: #232322;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
}

.site-footer p {
  margin: 0;
}

.lightbox {
  width: 100vw;
  max-width: none;
  height: 100svh;
  max-height: none;
  margin: 0;
  border: 0;
  padding: 0;
  background: rgba(25, 25, 24, 0.98);
  color: white;
}

.lightbox::backdrop {
  background: rgba(25, 25, 24, 0.82);
}

.lightbox-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 72px;
}

.lightbox img {
  width: auto;
  max-width: min(1500px, 92vw);
  height: auto;
  max-height: calc(100svh - 150px);
  object-fit: contain;
}

.lightbox p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
}

.lightbox-close {
  position: fixed;
  z-index: 2;
  top: 24px;
  right: 32px;
  border: 0;
  padding: 10px;
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.process-study {
  padding-top: clamp(60px, 8vw, 120px);
  padding-bottom: clamp(110px, 14vw, 210px);
  border-top: 1px solid var(--line);
}

.process-header {
  display: grid;
  grid-template-columns: 0.5fr 1.3fr 0.8fr;
  gap: clamp(28px, 5vw, 82px);
  align-items: start;
  padding-bottom: clamp(56px, 7vw, 108px);
}

.process-header .eyebrow {
  margin: 8px 0 0;
  color: var(--accent);
}

.process-header h4 {
  margin: 0;
  font-size: clamp(2.8rem, 5.6vw, 6.4rem);
  font-weight: 300;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.process-header > p:last-child {
  max-width: 420px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.15vw, 1.1rem);
  line-height: 1.65;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: clamp(28px, 4.5vw, 72px);
  align-items: start;
}

.process-film-media {
  grid-row: span 2;
}

.process-film-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #dddcd8;
  object-fit: cover;
}

.project-light .image-pair {
  padding-top: 0;
}

.project-light .process-study {
  border-top: 0;
  padding-bottom: clamp(80px, 9vw, 140px);
}

.process-film-media > p,
.commission-item > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.015em;
}

.process-grid > .image-frame:last-child {
  width: 72%;
  margin-left: auto;
}

.commission-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr 0.8fr;
  gap: clamp(34px, 5vw, 80px);
  align-items: start;
  padding-top: clamp(100px, 13vw, 190px);
  border-top: 1px solid var(--line);
  margin-top: clamp(90px, 11vw, 160px);
}

.commission-item {
  min-width: 0;
}

.commission-item .image-caption {
  color: var(--ink);
}

.commission-item > p {
  max-width: 350px;
  color: var(--muted);
  line-height: 1.55;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  :root {
    --page: calc(100vw - 56px);
  }

  .site-header {
    padding-inline: 28px;
  }

  .hero h1 {
    font-size: clamp(8rem, 19vw, 14rem);
  }

  .hero-name--shalsi {
    margin-left: 23vw;
  }

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

  .credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 50px;
  }

  .credentials > div {
    margin: 0;
  }

  .project-header,
  .paper-header {
    grid-template-columns: 60px 1fr;
  }

  .project-header--visual {
    margin-bottom: 72px;
  }

  .project-header--visual .project-header-image {
    grid-column: 2;
    grid-row: auto;
    margin-top: 28px;
  }

  .project-summary,
  .paper-header > p:last-child {
    grid-column: 2;
    max-width: 620px;
    margin: 10px 0 0;
  }

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

  .object-copy {
    order: 3;
    grid-column: 1 / -1;
    max-width: 500px;
  }

  .steel-installation {
    grid-template-columns: 1fr 1fr;
  }

  .steel-copy {
    grid-column: 1 / -1;
    max-width: 640px;
  }

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

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

  .mirror-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 60px;
  }

  .mirror-detail {
    height: 300px;
  }

  .process-header {
    grid-template-columns: 0.45fr 1.55fr;
  }

  .process-header > p:last-child {
    grid-column: 2;
  }

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

  .process-film-media {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .process-grid > .image-frame:last-child {
    width: 78%;
  }

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

  .commission-item:last-child {
    width: 70%;
    grid-column: 2;
  }

  .bio-grid {
    gap: 80px;
  }

  .individual-work-inner {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 70px;
  }
}

@media (max-width: 760px) {
  :root {
    --page: calc(100vw - 36px);
    --header-height: 68px;
  }

  .site-header {
    padding-inline: 18px;
  }

  .type-intro {
    padding: 18px;
  }

  .type-intro-line {
    font-size: 27vw;
    line-height: 0.8;
  }

  .type-intro p {
    right: 18px;
    bottom: 24px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] i {
    transform: rotate(45deg);
  }

  /* A backdrop filter makes fixed descendants use the header as their
     containing block. Disable it while the full-screen menu is open. */
  .site-header.menu-active {
    backdrop-filter: none;
  }

  .site-navigation {
    position: fixed;
    z-index: -1;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding: 95px 28px 40px;
    background: var(--paper);
    color: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 260ms ease,
      visibility 260ms ease,
      transform 400ms var(--ease);
  }

  .site-navigation.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .site-navigation a {
    font-size: clamp(2.7rem, 14vw, 5rem);
    font-weight: 300;
    letter-spacing: -0.055em;
    line-height: 1;
  }

  .site-navigation .nav-download {
    margin-top: 20px;
    border: 0;
    padding: 0;
    color: var(--accent);
  }

  .hero {
    min-height: 100svh;
  }

  .hero::after {
    background:
      linear-gradient(0deg, rgba(10, 10, 10, 0.66), transparent 58%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 32%);
  }

  .hero-copy .eyebrow {
    top: 112px;
    left: 18px;
    color: rgba(255, 255, 255, 0.76);
  }

  .hero h1 {
    inset: 34vh 0 auto;
    font-size: 27vw;
    line-height: 0.72;
  }

  .hero-name--artan {
    margin-left: 2vw;
  }

  .hero-name--shalsi {
    margin-left: 12vw;
  }

  .hero-note {
    left: 18px;
    bottom: 28px;
  }

  .hero-image {
    height: 100%;
  }

  .hero-image img {
    object-position: 50% center;
  }

  .hero-image figcaption {
    display: none;
  }

  .hero-concept {
    right: auto;
    bottom: 100px;
    left: 18px;
    font-size: 0.69rem;
  }

  .scroll-cue {
    display: none;
  }

  .introduction {
    padding-top: 96px;
    padding-bottom: 110px;
  }

  .portfolio-download {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .portfolio-download strong {
    font-size: 12vw;
  }

  .portfolio-meta {
    justify-content: space-between;
    margin-top: 12px;
  }

  .intro-grid {
    gap: 75px;
    padding-top: 50px;
  }

  .intro-statement h2 {
    font-size: clamp(2.45rem, 12vw, 4.4rem);
  }

  .intro-statement p {
    margin-top: 38px;
    font-size: 1rem;
  }

  .credentials {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .credentials > div {
    padding-bottom: 22px;
  }

  .works-heading {
    padding-bottom: 28px;
  }

  .project {
    padding-top: 90px;
    padding-bottom: 110px;
  }

  .project-header,
  .paper-header {
    grid-template-columns: 38px 1fr;
    gap: 18px;
    margin-bottom: 68px;
  }

  .project-light {
    padding-top: 36px;
  }

  .project-header--visual {
    margin-bottom: 54px;
  }

  .project-header--visual .project-header-image {
    grid-column: 1 / -1;
    margin-top: 18px;
  }

  .project-header--visual .project-kicker {
    margin-bottom: 26px;
  }

  .project-mark {
    font-size: 1.65em;
  }

  .project-title-rest {
    font-size: 0.78em;
  }

  .project-header--visual .project-summary {
    margin-top: 28px;
  }

  .project-header h3,
  .paper-header h3 {
    font-size: 12vw;
  }

  .project-summary,
  .paper-header > p:last-child {
    grid-column: 2;
    margin-top: 6px;
  }

  .image-wide {
    width: 100%;
    height: 74svh;
  }

  .image-pair,
  .recognition-feature,
  .steel-grid,
  .steel-installation,
  .yellow-field,
  .horizon-grid,
  .connection-grid,
  .paper-grid,
  .bio-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .individual-work-inner {
    grid-template-columns: 1fr;
    gap: 64px;
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .individual-work-copy h3 {
    font-size: 14vw;
  }

  .image-pair,
  .steel-grid,
  .steel-installation,
  .yellow-field,
  .horizon-grid,
  .connection-grid {
    gap: 70px;
    padding-top: 96px;
  }

  .image-pair .image-frame:first-child,
  .image-pair .image-portrait,
  .recognition-feature .image-frame,
  .steel-grid .image-frame:first-child,
  .steel-grid .image-frame:last-child,
  .steel-installation .image-frame,
  .yellow-field .image-frame:first-child,
  .yellow-field .image-frame:last-child,
  .horizon-grid .image-frame:first-child,
  .horizon-grid .image-frame:last-child,
  .connection-grid .image-frame,
  .paper-grid .image-frame,
  .paper-grid .image-frame:nth-child(3) {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .image-pair .image-frame:first-child,
  .steel-grid .image-frame:last-child,
  .yellow-field .image-frame:first-child,
  .horizon-grid .image-frame:first-child,
  .connection-grid .image-frame:last-child {
    aspect-ratio: 4 / 3;
  }

  .project-note {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .project-note p:last-child {
    margin: 0;
  }

  .process-study {
    padding-top: 70px;
    padding-bottom: 110px;
  }

  .process-header,
  .process-grid,
  .commission-grid {
    grid-template-columns: 1fr;
  }

  .process-header {
    gap: 24px;
    padding-bottom: 54px;
  }

  .process-header > p:last-child {
    grid-column: auto;
    margin-top: 8px;
  }

  .process-grid {
    gap: 64px;
  }

  .process-film-media,
  .commission-item:last-child {
    grid-column: auto;
    width: 100%;
  }

  .process-grid > .image-frame:last-child {
    width: 78%;
    margin-inline: auto 0;
  }

  .commission-grid {
    gap: 72px;
    padding-top: 80px;
    margin-top: 80px;
  }

  .object-copy {
    order: initial;
    grid-column: auto;
    padding: 25px 0;
  }

  .project-film {
    padding-top: 0;
    padding-bottom: 110px;
  }

  .project-film-header {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-bottom: 32px;
  }

  .project-film-header .eyebrow {
    margin: 0;
  }

  .project-film-header .film-meta {
    white-space: normal;
  }

  .matter-lead {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 30px 40px;
  }

  .matter-lead .image-frame {
    width: 86%;
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .matter-word {
    display: none;
  }

  .steel-copy {
    grid-column: auto;
  }

  .morbida {
    height: 66svh;
  }

  .connection-grid .image-frame:last-child {
    grid-column: auto;
    width: 100%;
    margin: 0;
  }

  .mirror-feature {
    padding-top: 130px;
    padding-bottom: 30px;
  }

  .mirror-header {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 55px;
  }

  .mirror-header h4 {
    font-size: 13vw;
  }

  .mirror-header > p:last-child {
    margin: 0;
  }

  .mirror-grid,
  .mirror-side {
    grid-template-columns: 1fr;
  }

  .mirror-main {
    height: 70svh;
  }

  .mirror-side {
    display: grid;
    gap: 70px;
  }

  .mirror-copy {
    margin-top: 60px;
  }

  .mirror-detail {
    height: 300px;
  }

  .paper-grid {
    gap: 70px;
  }

  .portrait {
    width: 145px;
    margin: 50px 0 0;
  }

  .bio-grid {
    gap: 90px;
  }

  .contact h2 {
    margin: 40px 0 78px;
    font-size: 13vw;
  }

  .contact-grid {
    gap: 52px;
  }

  .site-footer {
    padding: 20px 18px;
  }

  .lightbox-inner {
    padding: 64px 16px 30px;
  }

  .lightbox-close {
    top: 12px;
    right: 10px;
  }
}

/* Preserve the complete composition of artwork photography at every breakpoint.
   Only the separately labelled mirror detail intentionally uses a crop. */
.image-frame.artwork-full {
  height: auto !important;
  max-height: none !important;
  aspect-ratio: auto !important;
}

.image-frame.artwork-full img {
  display: block;
  height: auto !important;
  object-fit: contain;
}

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

  .carbonio-copy {
    max-width: 650px;
  }
}

@media (max-width: 760px) {
  .carbonio-grid {
    gap: 66px;
    padding-top: 90px;
    padding-bottom: 110px;
  }

  .carbonio-copy h3 {
    font-size: 20vw;
  }
}

@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;
  }
}
