:root {
  color-scheme: dark;
  --surface: #141312;
  --surface-deep: #0f0e0d;
  --surface-low: #1a1918;
  --surface-high: #211f1e;
  --text: #e8e6e2;
  --text-soft: #b6b3ae;
  --muted: #92908c;
  --quiet: #5e5c58;
  --inactive: #7c7a76;
  --line: rgba(232, 230, 226, 0.055);
  --line-strong: rgba(232, 230, 226, 0.18);
  --accent-cool: #8ca0a7;
  --accent-warm: #ad8179;
  --accent-moss: #8e9b82;
  --page-x: 4rem;
  --page-y: 2.5rem;
  --ease-curatorial: cubic-bezier(0.16, 1, 0.3, 1);
  --font-display: "Arial Black", "Segoe UI Black", "Noto Sans SC", sans-serif;
  --font-body: Inter, "Segoe UI", "Noto Sans SC", sans-serif;
  --font-mono: "Cascadia Mono", "JetBrains Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

a {
  text-decoration: none;
}

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

::selection {
  background: #3a3938;
  color: var(--text);
}

:focus-visible {
  outline: 1px solid var(--text);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--text);
  color: var(--surface);
  transform: translateY(-180%);
  transition: transform 250ms var(--ease-curatorial);
}

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

.screen {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: clip;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.screen:first-child {
  border-top: 0;
}

.screen-topbar {
  position: absolute;
  top: var(--page-y);
  right: var(--page-x);
  left: var(--page-x);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--quiet);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem var(--page-x);
  background: transparent;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.625rem;
  line-height: 1.4;
  pointer-events: none;
  text-transform: uppercase;
}

.site-header > .brand-anchor {
  pointer-events: auto;
  white-space: nowrap;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.25rem);
  pointer-events: auto;
}

.site-header nav a {
  position: relative;
  color: var(--quiet);
  transition: color 350ms var(--ease-curatorial);
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: opacity 350ms var(--ease-curatorial), transform 350ms var(--ease-curatorial);
}

.site-header nav a:hover,
.site-header nav a.is-current {
  color: var(--text);
}

.site-header nav a.is-current::after {
  opacity: 0.8;
  transform: scaleX(1);
}

.about-topbar {
  display: none;
}

.brand-anchor {
  color: var(--muted);
  transition: color 350ms var(--ease-curatorial);
}

.brand-anchor:hover {
  color: var(--text);
}

.page-intro-hidden {
  visibility: hidden;
}

.section-code,
.rail-data,
.rail-footer,
.catalog-header span,
.media-header,
.media-footer,
.project-number,
.project-phase,
.contact-block header,
.contact-item > span,
.about-footer,
.cover-role,
.peek-item {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: var(--accent-moss);
  vertical-align: middle;
}

.cover {
  display: grid;
  grid-template-rows: auto minmax(20rem, 1fr) auto;
  padding: var(--page-y) var(--page-x) 2rem;
}

.cover-topbar {
  position: static;
  display: flex;
  justify-content: flex-end;
}

.about-topbar nav {
  display: none;
}

.cover-lockup {
  align-self: center;
  justify-self: center;
  margin-top: 2rem;
  text-align: center;
}

.reveal-mask {
  overflow: hidden;
}

.cover h1 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 8.5rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
}

.cover-subtitle {
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 0.875rem;
  letter-spacing: 0;
}

.cover-lower {
  display: grid;
  grid-template-columns: minmax(12rem, 0.8fr) minmax(32rem, 1.8fr) 4rem;
  align-items: end;
  gap: 2rem;
}

.cover-role {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding-bottom: 0.3rem;
  color: var(--quiet);
}

.cover-role span:first-child {
  color: var(--muted);
}

.project-peek {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.peek-item {
  min-width: 0;
  padding: 0.8rem 0.9rem;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-radius: 2px 2px 0 0;
  background: var(--surface-low);
  color: var(--quiet);
  text-align: left;
  cursor: pointer;
  transition:
    color 450ms var(--ease-curatorial),
    background-color 450ms var(--ease-curatorial),
    transform 550ms var(--ease-curatorial);
}

.peek-item span {
  display: block;
  white-space: nowrap;
}

.peek-item span:last-child {
  margin-top: 0.3rem;
  color: var(--text-soft);
}

.peek-item:hover {
  color: var(--text-soft);
  background: var(--surface-high);
  transform: translateY(-4px);
}

.explore-button {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  will-change: transform;
  transition:
    color 350ms var(--ease-curatorial),
    border-color 350ms var(--ease-curatorial),
    background-color 350ms var(--ease-curatorial);
}

.explore-button:hover {
  border-color: var(--line-strong);
  background: var(--surface-high);
  color: var(--text);
}

.explore-button span {
  font-size: 1rem;
}

.works {
  display: grid;
  grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
  min-height: 100svh;
  gap: clamp(3rem, 6vw, 7rem);
  padding: 5.5rem var(--page-x) 4rem;
}

.works-rail,
.works-catalog,
.works-media {
  min-width: 0;
}

.works-rail {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  padding-right: 1.5rem;
  border-right: 1px solid var(--line);
  color: var(--quiet);
}

.works-rail .section-code {
  margin: 0;
  color: var(--muted);
}

.short-rule {
  width: 1rem;
  height: 1px;
  margin-top: 1rem;
  background: var(--line);
}

.rail-data {
  display: grid;
  gap: 1.4rem;
  margin: 0;
}

.rail-data div {
  display: grid;
  gap: 0.25rem;
}

.rail-data dt,
.rail-data dd {
  margin: 0;
}

.rail-data dt {
  color: var(--quiet);
}

.rail-data dd {
  max-width: 10rem;
  color: var(--muted);
}

.rail-footer {
  display: grid;
  gap: 0.2rem;
}

.rail-footer strong {
  color: var(--text-soft);
  font-weight: 500;
}

.works-catalog {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.catalog-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.catalog-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 650;
  letter-spacing: 0;
}

.catalog-header span {
  color: var(--muted);
}

.project-list {
  display: flex;
  flex: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
}

.project-entry {
  position: relative;
  display: grid;
  grid-template-columns: 1.7rem minmax(0, 1fr);
  gap: 0.35rem 0.4rem;
  width: 100%;
  padding: clamp(1.2rem, 2.8vh, 2.35rem) 0;
  border-bottom: 0;
  border-radius: 0;
  background: transparent;
  color: var(--inactive);
  text-align: left;
  cursor: pointer;
  opacity: 0.42;
  transition:
    color 500ms var(--ease-curatorial),
    opacity 500ms var(--ease-curatorial),
    transform 600ms var(--ease-curatorial);
}

.project-entry:hover,
.project-entry.is-active {
  color: var(--text);
  opacity: 1;
}

.project-entry:not(.is-active):hover {
  opacity: 0.72;
}

.project-number {
  grid-row: span 1;
  padding-top: 0.25rem;
  color: var(--muted);
}

.project-entry.is-active .project-number {
  color: var(--text);
}

.project-copy {
  display: grid;
  min-width: 0;
  gap: 0.45rem;
}

.project-copy strong {
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
}

.project-copy small {
  color: var(--inactive);
  font-size: 0.75rem;
  line-height: 1.55;
}

.project-details {
  display: grid;
  grid-template-rows: 0fr;
  min-height: 0;
  opacity: 0;
  transform: translateY(-0.35rem);
  transition:
    grid-template-rows 520ms var(--ease-curatorial),
    opacity 360ms var(--ease-curatorial),
    transform 520ms var(--ease-curatorial);
}

.project-details-inner {
  display: grid;
  min-height: 0;
  gap: 0.45rem;
  overflow: hidden;
}

.project-entry:hover .project-details,
.project-entry:focus-visible .project-details,
.project-entry.is-active .project-details {
  grid-template-rows: 1fr;
  opacity: 1;
  transform: translateY(0);
}

.project-phase {
  color: var(--inactive);
}

.project-entry.is-active .project-copy strong {
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
}

.project-entry:hover .project-copy small,
.project-entry:hover .project-phase,
.project-entry.is-active .project-copy small,
.project-entry.is-active .project-phase {
  color: var(--muted);
}

.catalog-note {
  margin: 1rem 0 0;
  color: var(--quiet);
  font-size: 0.7rem;
  line-height: 1.55;
}

.works-media {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 0;
}

.media-header,
.media-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--quiet);
}

.media-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 0;
  border-radius: 2px;
  background: var(--surface-low);
  box-shadow: 0 2rem 4.5rem rgba(0, 0, 0, 0.16);
  isolation: isolate;
}

.media-stage::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  border: 0;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.media-preview {
  position: absolute;
  inset: 0;
  z-index: 1;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.995);
  will-change: transform, opacity;
}

.media-preview.is-active {
  z-index: 2;
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.media-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03) brightness(0.87);
  transition: filter 700ms var(--ease-curatorial);
}

.media-stage:hover .media-preview.is-active img {
  filter: saturate(1) contrast(1.02) brightness(0.93);
}

.media-preview.is-missing::before,
.media-preview.is-missing::after {
  position: absolute;
  z-index: -1;
  content: "";
}

.media-preview.is-missing::before {
  inset: 15% 10% 22%;
  border: 1px solid var(--line);
  background: var(--surface-high);
}

.media-preview.is-missing::after {
  top: 24%;
  right: 18%;
  bottom: 34%;
  width: 30%;
  border-left: 1px solid var(--line-strong);
  background: var(--surface-deep);
}

.media-preview.is-missing img {
  display: none;
}

.media-preview figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  gap: 0.3rem;
  padding: 0.85rem 1rem;
  border-top: 0;
  background: rgba(15, 14, 13, 0.9);
}

.media-preview figcaption span {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0;
}

.media-preview figcaption strong {
  max-width: 34rem;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
}

.media-corner {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 6;
  display: flex;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0;
}

.media-corner span {
  padding: 0.35rem 0.45rem;
  border: 1px solid transparent;
  border-radius: 2px;
  background: rgba(15, 14, 13, 0.68);
  color: var(--muted);
}

.media-footer strong {
  color: var(--text-soft);
  font-weight: 500;
}

.media-footer a {
  color: var(--muted);
  transition: color 300ms var(--ease-curatorial);
}

.media-footer a:hover {
  color: var(--text);
}

/* Interactive Works: vertical project reel with a frameless media Coverflow. */
.works {
  display: grid;
  grid-template-columns: minmax(16rem, 0.82fr) minmax(0, 2.18fr);
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: center;
  width: min(100%, 108rem);
  min-height: 100svh;
  margin: 0 auto;
  padding: 6rem var(--page-x) 3.5rem;
}

.works-catalog,
.works-media {
  min-width: 0;
}

.works-catalog {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  justify-content: flex-start;
  min-height: 38rem;
  padding: clamp(2rem, 6vh, 4.5rem) 0 0;
}

.section-index {
  margin: 0;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 650;
  line-height: 1;
}

.mode-selector {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.72rem;
  margin-top: 2rem;
}

.mode-option {
  display: inline-flex;
  align-items: center;
  gap: 0.58rem;
  min-height: 1.35rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0;
  opacity: 0.68;
  cursor: pointer;
  transition: color 320ms var(--ease-curatorial), opacity 320ms var(--ease-curatorial), transform 480ms var(--ease-curatorial);
}

.mode-option:hover,
.mode-option:focus-visible {
  color: var(--text);
  opacity: 0.88;
}

.mode-option.is-active {
  color: var(--text);
  opacity: 1;
  transform: translateX(0.08rem);
}

.mode-dot {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background: currentColor;
}

.collection-meta,
.archive-range,
.gallery-readout {
  font-family: var(--font-mono);
  font-size: 0.57rem;
  letter-spacing: 0;
}

.collection-meta {
  margin-top: 3rem;
  color: var(--quiet);
  line-height: 1.65;
}

.collection-meta p {
  margin: 0.1rem 0;
}

.project-reel {
  display: grid;
  grid-template-rows: 4.4rem 9.2rem 4.4rem;
  align-items: center;
  margin: auto 0;
  outline: none;
}

.project-entry {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--quiet);
  opacity: 0.46;
}

.project-entry.is-active {
  color: var(--text);
  opacity: 1;
}

.project-button {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 380ms var(--ease-curatorial), opacity 380ms var(--ease-curatorial);
}

.project-button:hover,
.project-button:focus-visible {
  color: var(--text-soft);
}

.project-entry.is-active .project-button {
  color: var(--text);
  cursor: default;
}

.project-number {
  padding-top: 0.37rem;
  color: inherit;
  font-size: 0.56rem;
}

.project-title {
  font-size: clamp(1.12rem, 1.65vw, 1.48rem);
  font-weight: 520;
  line-height: 1.16;
}

.project-entry.is-active .project-title {
  font-size: clamp(1.6rem, 2.45vw, 2.35rem);
  font-weight: 650;
}

.project-details {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.52rem 1rem;
  min-height: 0;
  margin: 0.65rem 0 0 2rem;
  color: var(--muted);
  opacity: 1;
  transform: none;
}

.project-description {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.73rem;
  line-height: 1.5;
}

.project-phase,
.project-repository {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  line-height: 1.5;
}

.project-repository {
  justify-self: start;
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(232, 230, 226, 0.28);
  text-underline-offset: 0.28rem;
}

.project-repository:hover,
.project-repository:focus-visible {
  text-decoration-color: currentColor;
}

.archive-range {
  margin: auto 0 0;
  color: var(--quiet);
}

.works-media {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  min-height: 38rem;
  padding: 0;
  touch-action: pan-y;
}

.coverflow-stage {
  position: relative;
  width: 100%;
  height: clamp(29rem, 64vh, 46rem);
  overflow: hidden;
  outline: none;
  perspective: 75rem;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.coverflow-stage:focus-visible {
  outline: 1px solid rgba(232, 230, 226, 0.26);
  outline-offset: -0.4rem;
}

.coverflow-stage.is-portrait {
  height: clamp(24rem, calc(100svh - 13rem), 54rem);
  background: transparent;
}

.coverflow-stage.is-portrait .media-plane img {
  width: 100%;
  height: 100%;
}

.gallery-description {
  width: min(78%, 68rem);
  margin: 0.65rem auto 0;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.7;
}

@media (max-width: 940px) {
  .coverflow-stage.is-portrait {
    height: min(110vw, 68svh, 42rem);
  }

  .gallery-description {
    width: 88%;
  }
}

.coverflow-stage.is-static {
  cursor: default;
}

.coverflow-stage.is-dragging {
  cursor: grabbing;
}

.media-track {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.media-plane {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(78%, 68rem);
  height: min(60vh, 43rem);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transform-origin: center;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.media-plane img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  border: 0;
  object-fit: contain;
  pointer-events: none;
  -webkit-user-drag: none;
}

.media-plane.is-missing::after {
  color: var(--quiet);
  font-family: var(--font-mono);
  font-size: 0.58rem;
  content: "MEDIA TO BE ADDED";
}

.media-plane.is-missing img {
  display: none;
}

.gallery-readout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(78%, 68rem);
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.5;
}

.media-caption {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 0.75rem;
}

.media-count {
  flex: 0 0 auto;
  color: var(--text);
}

.media-title {
  overflow: hidden;
  color: var(--text-soft);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.media-status {
  flex: 0 0 auto;
  margin-left: 0.35rem;
  color: var(--quiet);
}

.media-controls {
  display: flex;
  flex: 0 0 auto;
  gap: 0.8rem;
}

.media-controls button {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  place-items: center;
  cursor: pointer;
  transition: color 260ms var(--ease-curatorial), transform 320ms var(--ease-curatorial);
}

.media-controls button:hover,
.media-controls button:focus-visible {
  color: var(--text);
  transform: translateX(var(--nudge, 0));
}

.media-controls button:first-child {
  --nudge: -0.14rem;
}

.media-controls button:last-child {
  --nudge: 0.14rem;
}

.media-controls button:disabled {
  color: var(--quiet);
  cursor: default;
  opacity: 0.45;
  transform: none;
}

.route-reserve[hidden] {
  display: none;
}

.about {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 48rem;
  padding: 7rem var(--page-x) 2rem;
  border-top: 0;
}

.about-topbar nav {
  display: flex;
  gap: 1.8rem;
}

.about-topbar nav a {
  color: var(--quiet);
  transition: color 300ms var(--ease-curatorial);
}

.about-topbar nav a:hover,
.about-topbar nav .is-current {
  color: var(--text);
}

.about-layout {
  display: grid;
  grid-template-columns: 32% 68%;
  width: 100%;
  max-width: 90rem;
  margin: auto;
}

.about-profile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2.5rem;
  min-width: 0;
  padding-right: 2.5rem;
  border-right: 0;
}

.about-profile .section-code,
.statement-block .section-code {
  margin: 0 0 1.1rem;
  color: var(--muted);
}

.about-profile h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.02;
}

.profile-intro {
  max-width: 22rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.capability-list {
  display: grid;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  border-top: 0;
  list-style: none;
}

.capability-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 0;
}

.capability-list span {
  color: var(--quiet);
  font-family: var(--font-mono);
  font-size: 0.6rem;
}

.capability-list strong {
  font-size: 0.78rem;
  font-weight: 500;
}

.text-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 0;
  padding: 0.5rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text-soft);
  font-size: 0.75rem;
  transition:
    color 300ms var(--ease-curatorial),
    transform 450ms var(--ease-curatorial);
}

.text-link:hover {
  background: transparent;
  color: var(--text);
  transform: translateX(0.25rem);
}

.about-statement {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3.25rem;
  min-width: 0;
  padding-left: 3.25rem;
}

.statement-block h3 {
  max-width: 54rem;
  margin: 0;
  font-size: 2.45rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.2;
}

.statement-block > p:last-child {
  max-width: 52rem;
  margin: 1.5rem 0 0;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.75;
}

.contact-block header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 0;
  color: var(--quiet);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem 2.5rem;
  margin-top: 1.25rem;
}

.contact-item {
  display: grid;
  gap: 0.65rem;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-item-wide {
  grid-column: 1 / -1;
}

.contact-item > span {
  color: var(--quiet);
}

.contact-item strong {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 500;
}

.about-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 90rem;
  margin: 3rem auto 0;
  padding-top: 1rem;
  border-top: 0;
  color: var(--quiet);
}

.about-footer a {
  color: var(--muted);
}

@media (max-width: 1180px) {
  :root {
    --page-x: 2rem;
  }

  .cover h1 {
    font-size: 7rem;
  }

  .cover-lower {
    grid-template-columns: 10rem minmax(28rem, 1fr) 3.5rem;
    gap: 1.25rem;
  }

  .works {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    gap: 3rem;
  }

  .works-catalog {
    padding: 0;
  }

  .works-media {
    padding-left: 0;
  }

  .project-copy strong {
    font-size: 1.2rem;
  }

  .statement-block h3 {
    font-size: 2.1rem;
  }
}

@media (max-width: 1180px) {
  .works {
    grid-template-columns: minmax(15rem, 0.78fr) minmax(0, 1.92fr);
    gap: 2.8rem;
  }
}

@media (max-width: 940px) {
  .cover h1 {
    font-size: 6rem;
  }

  .cover-lower {
    grid-template-columns: minmax(0, 1fr) 3.5rem;
  }

  .cover-role {
    display: none;
  }

  .works {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    overflow: visible;
  }

  .works-rail {
    grid-row: 1 / span 2;
  }

  .rail-data {
    display: none;
  }

  .works-media {
    grid-column: auto;
    min-height: 32rem;
    padding: 2.5rem 0 0;
  }

  .media-stage {
    margin: 2rem 0;
  }

  .about {
    padding-top: 8rem;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-profile {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.75fr);
    padding: 0 0 3rem;
    border-right: 0;
    border-bottom: 0;
  }

  .about-profile .text-link {
    grid-column: 1 / -1;
  }

  .about-statement {
    padding-left: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --page-x: 1.25rem;
    --page-y: 1.5rem;
  }

  .site-header {
    gap: 0.75rem;
    font-size: 0.5rem;
  }

  .site-header nav {
    gap: 0.75rem;
  }

  .screen {
    overflow: hidden;
  }

  .screen-topbar {
    font-size: 0.55rem;
  }

  .cover {
    grid-template-rows: auto minmax(18rem, 1fr) auto;
    padding-bottom: 1.25rem;
  }

  .cover h1 {
    font-size: 4rem;
  }

  .cover-subtitle {
    margin-top: 0.9rem;
    font-size: 0.78rem;
  }

  .cover-lower {
    grid-template-columns: minmax(0, 1fr) 3rem;
    gap: 0.75rem;
  }

  .project-peek {
    gap: 0.4rem;
  }

  .peek-item {
    padding: 0.65rem 0.5rem;
    font-size: 0.5rem;
  }

  .peek-item span:last-child {
    display: none;
  }

  .explore-button {
    width: 3rem;
    height: 3rem;
  }

  .works {
    display: block;
    min-height: 0;
    padding-top: 1.5rem;
    padding-bottom: 2rem;
    overflow: visible;
  }

  .works-rail {
    display: none;
  }

  .short-rule,
  .rail-data {
    display: none;
  }

  .works-catalog {
    padding: 1.5rem 0 0;
  }

  .project-entry {
    padding: 1.15rem 0;
  }

  .project-copy strong {
    font-size: 1.05rem;
  }

  .catalog-note {
    margin-bottom: 0;
  }

  .works-media {
    display: block;
    min-height: 0;
    padding: 2.25rem 0 0;
  }

  .media-stage {
    margin: 1rem 0;
  }

  .media-header,
  .media-footer {
    font-size: 0.52rem;
  }

  .media-footer > span:nth-child(2) {
    display: none;
  }

  .media-corner span:first-child {
    display: none;
  }

  .media-preview figcaption strong {
    font-size: 0.68rem;
  }

  .about {
    display: block;
    min-height: 0;
    padding-top: 6.5rem;
  }

  .about-topbar nav {
    gap: 0.85rem;
  }

  .about-layout {
    display: block;
  }

  .about-profile {
    display: block;
    padding-bottom: 2.5rem;
  }

  .about-profile h2 {
    font-size: 2.5rem;
  }

  .capability-list {
    margin: 2rem 0;
  }

  .about-statement {
    padding-top: 2.5rem;
  }

  .statement-block h3 {
    font-size: 1.7rem;
    line-height: 1.3;
  }

  .statement-block > p:last-child {
    font-size: 0.88rem;
  }

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

  .contact-item-wide {
    grid-column: auto;
  }

  .about-footer {
    flex-direction: column;
    margin-top: 2.5rem;
  }
}

@media (max-width: 390px) {
  .cover h1 {
    font-size: 3rem;
  }

  .cover-topbar span {
    display: none;
  }

  .media-preview figcaption {
    padding: 0.6rem 0.7rem;
  }
}

@media (max-height: 760px) and (min-width: 941px) {
  .project-entry {
    padding: 0;
  }
}

@media (max-height: 760px) and (min-width: 761px) {
  :root {
    --page-y: 1.75rem;
  }

  .cover h1 {
    font-size: 6rem;
  }

  .project-entry {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .project-entry::before {
    top: 1rem;
  }

  .about {
    padding-top: 5.5rem;
  }

  .statement-block h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 940px) {
  .works {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.8rem;
    align-items: start;
    min-height: auto;
    padding-top: 6.3rem;
    overflow: visible;
  }

  .works-catalog {
    min-height: 30rem;
    padding: 1.5rem 0 0;
  }

  .mode-selector {
    flex-direction: row;
    gap: 1.4rem;
    margin-top: 1.35rem;
  }

  .collection-meta {
    margin-top: 2rem;
  }

  .project-reel {
    margin: 2rem 0 0;
  }

  .archive-range {
    display: none;
  }

  .works-media {
    min-height: 0;
    padding: 0;
  }

  .coverflow-stage {
    height: min(72vw, 32rem);
  }

  .media-plane {
    width: 80%;
    height: min(66vw, 30rem);
  }
}

@media (max-width: 760px) {
  .works {
    display: grid;
    gap: 1.3rem;
    min-height: auto;
    padding: 5.2rem var(--page-x) 3rem;
  }

  .works-catalog {
    min-height: 28rem;
    padding: 1rem 0 0;
  }

  .project-reel {
    grid-template-rows: 3.7rem 8.4rem 3.7rem;
  }

  .project-entry {
    padding: 0;
  }

  .project-entry.is-active .project-title {
    font-size: 1.7rem;
  }

  .project-description {
    font-size: 0.68rem;
  }

  .coverflow-stage {
    height: 20rem;
  }

  .media-plane {
    width: 84%;
    height: 18rem;
  }

  .gallery-readout {
    width: 88%;
  }

  .media-status,
  .media-divider {
    display: none;
  }
}

@media (max-width: 390px) {
  .project-entry.is-active .project-title {
    font-size: 1.55rem;
  }

  .media-plane {
    width: 88%;
  }
}

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

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

  [data-intro],
  [data-about-reveal],
  .media-preview {
    transform: none !important;
  }
}
