@font-face {
  font-family: "Archivo";
  src: url("/assets/fonts/archivo-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("/assets/fonts/ibm-plex-mono-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --paper: #ffffff;
  --ink: #111111;
  --muted: #626262;
  --soft: #f4f4f2;
  --rule: #d2d2cf;
  --accent: #b95432;
  --gutter: clamp(1.25rem, 3.3vw, 4rem);
  --header-height: 5.5rem;
  --display: "Archivo", "Helvetica Neue", sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1rem;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

picture {
  display: block;
  overflow: hidden;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 520;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-200%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: var(--header-height);
  padding: 0 var(--gutter);
  border-bottom: 1px solid color-mix(in srgb, var(--rule) 78%, transparent);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(12px);
}

.wordmark {
  width: max-content;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.6rem, 3vw, 4.5rem);
  font-family: var(--mono);
  font-size: 0.76rem;
}

.site-nav a,
.site-footer nav a,
.text-link {
  position: relative;
  padding-bottom: 0.3rem;
}

.site-nav a::after,
.site-footer nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after,
.site-footer nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a[aria-current="page"],
.language-link strong {
  color: var(--accent);
  font-weight: 500;
}

.menu-toggle {
  display: none;
}

main {
  min-height: 70vh;
}

.home-profile-hero {
  display: grid;
  grid-template-areas:
    "copy portrait"
    "actions portrait"
    "credentials credentials";
  grid-template-columns: minmax(26rem, 0.9fr) minmax(34rem, 1.1fr);
  grid-template-rows: 1fr auto auto;
  column-gap: clamp(2.5rem, 5vw, 7rem);
  padding: clamp(1.75rem, 2.5vw, 2.75rem) var(--gutter) 0;
}

.home-profile-copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: clamp(2.5rem, 5vw, 6rem);
}

.home-profile-copy h1 {
  margin-bottom: clamp(2.2rem, 3vw, 3.25rem);
  font-size: clamp(4.8rem, 7vw, 8rem);
  white-space: nowrap;
}

.home-profile-copy h1::after {
  display: block;
  width: 2.75rem;
  height: 3px;
  margin-top: clamp(1.5rem, 2vw, 2.2rem);
  background: var(--accent);
  content: "";
}

.home-profile-role {
  margin-bottom: 1.4rem;
  font-size: clamp(1.15rem, 1.55vw, 1.55rem);
}

.home-profile-summary,
.home-profile-disciplines {
  max-width: 38rem;
  font-family: var(--mono);
  font-size: clamp(0.78rem, 0.9vw, 0.92rem);
  line-height: 1.65;
}

.home-profile-summary {
  margin-bottom: 1.85rem;
}

.home-profile-disciplines {
  margin-bottom: 0;
  word-spacing: 0.2em;
}

.about-intro > p:first-of-type::before {
  display: block;
  width: 2.75rem;
  height: 2px;
  margin-bottom: 1.5rem;
  background: var(--accent);
  content: "";
}

.hero-actions {
  display: flex;
  gap: clamp(2rem, 4vw, 5rem);
  font-family: var(--mono);
  font-size: 0.88rem;
}

.text-link-accent {
  color: var(--accent);
}

.text-link::after {
  transform: scaleX(1);
  transform-origin: left;
}

.text-link:hover::after {
  transform: scaleX(0.3);
  transform-origin: right;
}

.home-profile-actions {
  grid-area: actions;
  align-self: end;
  padding: clamp(2.8rem, 4vw, 4.25rem) 0 clamp(2.3rem, 3.25vw, 3.4rem);
}

.home-profile-portrait {
  grid-area: portrait;
  align-self: stretch;
  height: clamp(32rem, 38vw, 40rem);
  background: #b7b7b7;
}

.home-profile-portrait img {
  transition: transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.home-profile-portrait:hover img {
  transform: scale(1.012);
}

.home-profile-credentials {
  grid-area: credentials;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 6rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
}

.home-profile-credentials p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 1.4rem 1.75rem;
  font-family: var(--mono);
  font-size: clamp(0.68rem, 0.75vw, 0.8rem);
  text-align: center;
}

.home-profile-credentials p + p {
  border-left: 1px solid var(--rule);
}

@media (min-width: 1500px) {
  .home-profile-hero {
    grid-template-columns: minmax(31rem, 0.95fr) minmax(40rem, 1.05fr);
  }
}

.selected-work,
.work-index,
.experience-section {
  padding: clamp(4rem, 8vw, 9rem) var(--gutter);
}

.selected-work {
  padding-top: clamp(3rem, 5vw, 6rem);
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
  padding-top: 1.2rem;
  border-top: 1px solid var(--ink);
}

.section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(2.6rem, 4.6vw, 5.5rem);
}

.section-heading .text-link {
  font-family: var(--mono);
  font-size: 0.78rem;
}

.selected-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(3rem, 7vw, 8rem) clamp(1rem, 2.4vw, 3rem);
}

.selected-project {
  grid-column: span 6;
}

.selected-project-1 {
  grid-column: 1 / span 7;
}

.selected-project-2 {
  grid-column: 9 / span 4;
  align-self: end;
}

.selected-project-3 {
  grid-column: 2 / span 4;
}

.selected-project-4 {
  grid-column: 7 / span 6;
}

.selected-project-5 {
  grid-column: 1 / span 6;
}

.selected-project-6 {
  grid-column: 8 / span 5;
  margin-top: 8vw;
}

.selected-media {
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--soft);
  overflow: hidden;
}

.selected-project-2 .selected-media,
.selected-project-3 .selected-media {
  aspect-ratio: 3 / 4;
}

.selected-media img,
.work-row-media img {
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.selected-project:hover .selected-media img,
.work-row:hover .work-row-media img {
  transform: scale(1.018);
}

.selected-caption {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0 0.9rem;
  padding-top: 1rem;
}

.selected-caption > p,
.project-number,
.section-index,
.archive-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.selected-caption h3 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.2rem, 2vw, 2.25rem);
  line-height: 1.05;
}

.selected-caption h3 a,
.work-row h2 a {
  background-image: linear-gradient(currentColor, currentColor);
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size 240ms ease, background-position 0ms 240ms;
}

.selected-caption h3 a:hover,
.work-row h2 a:hover {
  background-position: 0 100%;
  background-size: 100% 1px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  grid-column: 2;
  gap: 0.45rem 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  line-height: 1.5;
}

.project-meta span:not(:last-child)::after {
  margin: 0 0.55rem;
  color: var(--rule);
  content: "|";
}

.credential-line {
  margin: 2.2rem 0;
  font-family: var(--mono);
  font-size: 0.78rem;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(22rem, 1fr) 1fr;
  margin: 0 var(--gutter);
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.contact-band h2 {
  max-width: 13ch;
  margin: 0;
  padding: clamp(3rem, 6vw, 7rem) clamp(2rem, 6vw, 7rem) clamp(3rem, 6vw, 7rem) 0;
  font-size: clamp(2.8rem, 5vw, 6rem);
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--rule);
}

.contact-actions a {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.8rem;
  min-height: 100%;
  padding: 2rem;
  border-left: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 0.5rem;
  transition: background-color 160ms ease, color 160ms ease, text-decoration-color 160ms ease;
}

.contact-actions a:first-child {
  border-left: 0;
}

.contact-actions a:hover {
  background: color-mix(in srgb, var(--accent) 9%, transparent);
  color: var(--ink);
  text-decoration-color: var(--accent);
}

.contact-actions span {
  color: var(--accent);
  font-size: 0.65rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 2rem;
  min-height: 8rem;
  padding: 2rem var(--gutter);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  gap: 2rem;
}

.page-intro {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 0.36fr);
  align-items: end;
  gap: 4rem;
  min-height: 28rem;
  padding: clamp(4rem, 8vw, 9rem) var(--gutter) clamp(3rem, 5vw, 5rem);
}

.page-intro h1 {
  margin-bottom: 0;
  font-size: clamp(5rem, 10vw, 12rem);
}

.page-intro p {
  max-width: 34rem;
  margin-bottom: 0.9rem;
  font-family: var(--mono);
  font-size: 0.8rem;
  line-height: 1.7;
}

.work-index {
  padding-top: 0;
}

.work-intro {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) minmax(18rem, 0.38fr);
  gap: clamp(1.5rem, 4vw, 5rem);
  align-items: end;
}

.work-intro .section-index {
  align-self: start;
  padding-top: 0.85rem;
  color: var(--accent);
}

.work-intro h1,
.work-intro > p:last-child {
  margin-bottom: 0;
}

.work-section-heading {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  align-items: end;
  padding: clamp(4rem, 8vw, 9rem) 0 clamp(2rem, 4vw, 4rem);
  border-bottom: 1px solid var(--ink);
}

.work-section-heading p {
  margin: 0 0 0.4rem;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.work-section-heading h2 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 7.5rem);
}

.selected-case-studies .work-row:first-of-type {
  border-top: 0;
}

.practice-group {
  padding: clamp(3rem, 6vw, 7rem) 0;
  border-bottom: 1px solid var(--ink);
}

.practice-group-heading {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1rem;
  align-items: baseline;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.practice-group-heading p {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.practice-group-heading h2 {
  max-width: 24ch;
  font-size: clamp(2rem, 4vw, 4.8rem);
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2.5rem, 5vw, 6rem) clamp(1.2rem, 2.5vw, 3rem);
  padding-left: 5rem;
}

.archive-card-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--soft);
}

.archive-card-media picture,
.archive-card-media img {
  height: 100%;
}

.archive-card-media img {
  transition: transform 500ms cubic-bezier(.2,.7,.2,1);
}

.archive-card:hover .archive-card-media img {
  transform: scale(1.025);
}

.archive-card-copy {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 0.2rem 0.8rem;
  padding-top: 1rem;
}

.archive-card-copy .project-number {
  grid-row: 1 / 5;
  color: var(--muted);
  font-size: 0.7rem;
}

.archive-card-copy h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.05;
}

.archive-card-copy > p:not(.project-number) {
  margin: 0.4rem 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.7rem;
  line-height: 1.5;
}

.archive-card-copy .project-meta {
  grid-column: 2;
}

.filter-bar {
  position: sticky;
  z-index: 20;
  top: var(--header-height);
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem clamp(1.2rem, 3vw, 3.5rem);
  padding: 1.2rem 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: color-mix(in srgb, var(--paper) 96%, transparent);
  backdrop-filter: blur(10px);
}

.filter-bar button {
  padding: 0.25rem 0;
  border: 0;
  border-bottom: 1px solid transparent;
  background: none;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.7rem;
}

.filter-bar button:hover,
.filter-bar button[aria-pressed="true"] {
  border-color: currentColor;
  color: var(--accent);
}

.work-row {
  display: grid;
  grid-template-columns: minmax(16rem, 0.68fr) minmax(28rem, 1.32fr);
  gap: clamp(2rem, 5vw, 7rem);
  align-items: center;
  min-height: 42rem;
  padding: clamp(3rem, 6vw, 7rem) 0;
  border-bottom: 1px solid var(--rule);
}

.work-row[hidden] {
  display: none;
}

.work-row-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.work-row .project-number {
  margin-bottom: auto;
  font-size: 1.4rem;
}

.work-row h2 {
  max-width: 14ch;
  margin: 2rem 0 1rem;
  font-size: clamp(2.4rem, 4.5vw, 5.5rem);
}

.work-row-copy > p:not(.project-number) {
  margin-bottom: 1rem;
  color: var(--muted);
}

.work-row .project-meta {
  grid-column: auto;
}

.archive-label {
  width: max-content;
  margin-top: 1.4rem;
  padding-top: 0.45rem;
  border-top: 1px solid var(--accent);
  color: var(--accent);
}

.work-row-media {
  aspect-ratio: 16 / 10;
  background: var(--soft);
  overflow: hidden;
}

.work-row:nth-child(4n) {
  grid-template-columns: minmax(28rem, 1.32fr) minmax(16rem, 0.68fr);
}

.work-row:nth-child(4n) .work-row-copy {
  order: 2;
}

.work-row:nth-child(4n) .work-row-media {
  order: 1;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(28rem, 1fr) minmax(26rem, 0.74fr);
  min-height: calc(100svh - var(--header-height));
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--ink);
}

.about-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 9rem) clamp(2rem, 7vw, 9rem) clamp(4rem, 8vw, 9rem) 0;
}

.about-intro h1 {
  max-width: 12ch;
  margin-bottom: 3rem;
  font-size: clamp(4rem, 7vw, 8.5rem);
}

.about-intro > p {
  max-width: 47rem;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
}

.about-portrait {
  min-height: 100%;
  border-left: 1px solid var(--rule);
  background: #050505;
}

.timeline {
  border-top: 1px solid var(--ink);
}

.timeline-row {
  display: grid;
  grid-template-columns: minmax(10rem, 0.36fr) 1fr;
  gap: 3rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--rule);
}

.timeline-row:last-child {
  border-bottom: 0;
}

.timeline-period,
.timeline-role {
  font-family: var(--mono);
  font-size: 0.74rem;
}

.timeline-row h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.25rem, 2.2vw, 2.2rem);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.timeline-row h3 span {
  color: var(--muted);
  font-weight: 400;
}

.timeline-row div > p:last-child {
  max-width: 52rem;
  margin-bottom: 0;
  color: var(--muted);
}

.profile-details {
  display: grid;
  grid-template-columns: 0.8fr 0.8fr 1.4fr;
  margin: 0 var(--gutter) clamp(5rem, 9vw, 10rem);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.profile-details > div {
  min-height: 25rem;
  padding: 2rem clamp(1.5rem, 3vw, 3.5rem) 3rem;
  border-left: 1px solid var(--rule);
}

.profile-details > div:first-child {
  border-left: 0;
}

.profile-details h2 {
  margin-bottom: 3rem;
  font-family: var(--mono);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.profile-details ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--mono);
  font-size: 0.75rem;
  line-height: 2;
}

.education-list li {
  display: grid;
  margin-bottom: 1.4rem;
  line-height: 1.45;
}

.education-list span,
.education-list small {
  color: var(--muted);
}

.project-page {
  padding: 0 var(--gutter);
}

.project-header {
  padding-top: clamp(1.5rem, 3vw, 3.5rem);
}

.project-hero-media {
  width: 100%;
  height: min(58svh, 48rem);
  min-height: 30rem;
  background: var(--soft);
}

.project-title-block {
  display: grid;
  grid-template-columns: 4rem 1fr;
  padding: clamp(2.5rem, 5vw, 5rem) 0;
  border-bottom: 1px solid var(--ink);
}

.project-title-block .project-number {
  padding-top: 0.85rem;
}

.project-title-block h1 {
  max-width: 15ch;
  margin-bottom: 1.2rem;
  font-size: clamp(4rem, 8vw, 10rem);
}

.project-subtitle {
  grid-column: 2;
  margin-bottom: 1rem;
  font-family: var(--mono);
  font-size: clamp(0.85rem, 1.2vw, 1.1rem);
}

.project-title-block .project-meta {
  grid-column: 2;
}

.project-information {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(13rem, 0.55fr);
  gap: clamp(2rem, 5vw, 6rem);
  padding: clamp(3rem, 6vw, 7rem) 0;
  border-bottom: 1px solid var(--rule);
}

.project-information .section-index {
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.project-information p:last-child,
.project-lede {
  margin-bottom: 0;
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  line-height: 1.55;
}

.project-facts {
  margin: 0;
  border-top: 1px solid var(--ink);
}

.project-facts div {
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
}

.project-facts dt {
  margin-bottom: 0.35rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.project-facts dd {
  margin: 0;
  font-size: 0.88rem;
}

.project-attribution {
  max-width: 72rem;
  margin: 0;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--rule);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.7rem;
  line-height: 1.6;
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: clamp(3rem, 6vw, 7rem) 0;
}

.project-gallery picture {
  min-height: min(68vw, 58rem);
  background: var(--soft);
}

.project-gallery-figure {
  display: grid;
  grid-template-rows: 1fr auto;
  min-width: 0;
  margin: 0;
  background: var(--paper);
}

.project-gallery-figure.project-gallery-half picture {
  min-height: min(42vw, 40rem);
}

.project-gallery-figure figcaption {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem;
  padding: 0.9rem 0 1.6rem;
  border-top: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 0.76rem;
  line-height: 1.45;
}

.project-gallery-figure figcaption span {
  color: var(--muted);
}

.project-gallery-half {
  min-height: min(42vw, 40rem) !important;
}

.project-gallery-full {
  grid-column: 1 / -1;
}

.project-video {
  padding-bottom: clamp(3rem, 6vw, 7rem);
}

.project-video-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  padding: 1.2rem 0 1.5rem;
  border-top: 1px solid var(--ink);
}

.project-video-heading p {
  margin: 0;
}

.project-video-heading .section-index {
  color: var(--muted);
}

.project-video video {
  display: block;
  width: 100%;
  max-height: 80svh;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  object-fit: cover;
}

.project-pagination {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.project-pagination a {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 11rem;
  padding: 2rem 0;
  transition: color 180ms ease;
}

.project-pagination a + a {
  align-items: flex-end;
  padding-left: 2rem;
  border-left: 1px solid var(--rule);
  text-align: right;
}

.project-pagination a:hover {
  color: var(--accent);
}

.project-pagination span {
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.project-pagination strong {
  max-width: 26rem;
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  font-weight: 500;
}

.project-page + .contact-band {
  margin-top: clamp(5rem, 9vw, 10rem);
}

html.motion-ready .reveal {
  opacity: 1;
  transform: none;
}

html.motion-ready .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-profile-hero {
    grid-template-columns: minmax(21rem, 0.85fr) minmax(28rem, 1.15fr);
    gap: 2rem;
  }

  .site-nav {
    gap: 1.65rem;
  }

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

  .contact-actions {
    min-height: 14rem;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .project-information {
    grid-template-columns: 1fr 1fr;
  }

  .project-facts {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 4.5rem;
  }

  .site-header {
    min-height: var(--header-height);
    /* A backdrop filter creates a containing block for fixed descendants.
       Keep the mobile navigation fixed to the viewport, not the header. */
    backdrop-filter: none;
  }

  .wordmark {
    position: relative;
    z-index: 60;
    font-size: 0.86rem;
  }

  .menu-toggle {
    position: relative;
    z-index: 60;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0;
    border: 0;
    background: none;
    color: var(--ink);
    cursor: pointer;
    font-family: var(--mono);
    font-size: 0.7rem;
  }

  .menu-lines,
  .menu-lines::after {
    display: block;
    width: 1.4rem;
    height: 1px;
    background: currentColor;
    content: "";
    transition: transform 180ms ease;
  }

  .menu-lines::after {
    transform: translateY(0.38rem);
  }

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

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

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 55;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.5rem;
    min-height: 100vh;
    min-height: 100dvh;
    padding: calc(var(--header-height) + 2.75rem) var(--gutter) 2.5rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--paper);
    font-family: var(--display);
    font-size: clamp(2.8rem, 12vw, 5rem);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity 180ms ease, transform 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav .language-link {
    margin-top: 1rem;
    font-family: var(--mono);
    font-size: 0.8rem;
    letter-spacing: 0;
  }

  .home-profile-hero,
  .about-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-profile-hero {
    grid-template-areas:
      "copy"
      "portrait"
      "actions"
      "credentials";
    grid-template-rows: auto;
    gap: 0;
    padding-top: 2.5rem;
  }

  .home-profile-copy {
    padding: 2rem 0 3rem;
  }

  .home-profile-copy h1 {
    font-size: clamp(4rem, 15vw, 7rem);
    white-space: normal;
  }

  .home-profile-portrait {
    height: 62vw;
  }

  .home-profile-actions {
    padding: 2.25rem 0 2.75rem;
  }

  .home-profile-credentials {
    grid-template-columns: 1fr;
  }

  .home-profile-credentials p {
    justify-content: flex-start;
    min-height: 4.2rem;
    padding-right: 0;
    padding-left: 0;
    text-align: left;
  }

  .home-profile-credentials p + p {
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .selected-project,
  .selected-project-1,
  .selected-project-2,
  .selected-project-3,
  .selected-project-4,
  .selected-project-5,
  .selected-project-6 {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .selected-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .selected-project-2 .selected-media,
  .selected-project-3 .selected-media {
    aspect-ratio: 4 / 3;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .page-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: 23rem;
  }

  .page-intro h1 {
    font-size: clamp(4rem, 20vw, 8rem);
  }

  .work-intro .section-index {
    padding-top: 0;
  }

  .work-section-heading,
  .practice-group-heading {
    grid-template-columns: 2.5rem 1fr;
  }

  .archive-grid {
    padding-left: 3.5rem;
  }

  .filter-bar {
    top: var(--header-height);
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-bar button {
    flex: 0 0 auto;
  }

  .work-row,
  .work-row:nth-child(4n) {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-height: 0;
  }

  .work-row .work-row-copy,
  .work-row .work-row-media,
  .work-row:nth-child(4n) .work-row-copy,
  .work-row:nth-child(4n) .work-row-media {
    order: initial;
  }

  .work-row .project-number {
    margin-bottom: 1rem;
  }

  .about-intro {
    padding-right: 0;
  }

  .about-intro h1 {
    font-size: clamp(3.5rem, 15vw, 7rem);
  }

  .about-portrait {
    min-height: 100vw;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .timeline-row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .profile-details {
    grid-template-columns: 1fr;
  }

  .profile-details > div,
  .profile-details > div:first-child {
    min-height: 0;
    padding: 2rem 0 3rem;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .profile-details > div:first-child {
    border-top: 0;
  }

  .project-hero-media {
    height: 65vw;
    min-height: 18rem;
  }

  .project-title-block {
    grid-template-columns: 2.5rem 1fr;
  }

  .project-title-block h1 {
    font-size: clamp(3.4rem, 13vw, 7rem);
  }

  .project-information {
    grid-template-columns: 1fr;
  }

  .project-facts {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 560px) {
  .archive-grid {
    grid-template-columns: 1fr;
    padding-left: 0;
  }

  .archive-card-copy {
    grid-template-columns: 2.5rem 1fr;
  }

  .home-profile-copy h1 {
    max-width: 5.5ch;
    font-size: clamp(4rem, 20vw, 6.5rem);
  }

  .home-profile-portrait {
    height: 76vw;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .selected-grid {
    gap: 3rem;
  }

  .selected-caption {
    grid-template-columns: 2rem 1fr;
  }

  .contact-actions {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .contact-actions a {
    min-height: 7rem;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .contact-actions a:first-child {
    border-top: 0;
  }

  .project-page {
    padding: 0;
  }

  .project-title-block,
  .project-information,
  .project-attribution,
  .project-gallery,
  .project-video,
  .project-pagination {
    margin-right: var(--gutter);
    margin-left: var(--gutter);
  }

  .project-title-block {
    grid-template-columns: 1fr;
  }

  .project-title-block .project-number,
  .project-title-block h1,
  .project-subtitle,
  .project-title-block .project-meta {
    grid-column: 1;
  }

  .project-title-block .project-number {
    margin-bottom: 1rem;
  }

  .project-gallery {
    grid-template-columns: 1fr;
  }

  .project-gallery-full {
    grid-column: 1;
  }

  .project-gallery picture,
  .project-gallery-half {
    min-height: 75vw !important;
  }

  .project-gallery-figure figcaption {
    grid-template-columns: 2.5rem 1fr;
    padding-bottom: 1.3rem;
  }

  .project-video-heading {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .project-pagination {
    grid-template-columns: 1fr;
  }

  .project-pagination a + a {
    align-items: flex-start;
    padding-left: 0;
    border-top: 1px solid var(--rule);
    border-left: 0;
    text-align: left;
  }
}

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

  html.motion-ready .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Working dossier — compact, direct and deliberately less gallery-like. */
:root {
  --paper: #eeece4;
  --ink: #18201c;
  --muted: #626a64;
  --soft: #e2e2d8;
  --rule: #bfc1b7;
  --accent: #d8492f;
  --blue: #315e70;
  --olive: #68705a;
  --gutter: clamp(1rem, 2.4vw, 2.75rem);
  --header-height: 4.4rem;
}

body {
  background-color: var(--paper);
  background-image:
    linear-gradient(to right, color-mix(in srgb, var(--ink) 3%, transparent) 1px, transparent 1px),
    linear-gradient(to bottom, color-mix(in srgb, var(--ink) 3%, transparent) 1px, transparent 1px);
  background-size: 24px 24px;
}

h1,
h2,
h3 {
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.site-header {
  min-height: var(--header-height);
  border-bottom: 2px solid var(--ink);
  background: color-mix(in srgb, var(--paper) 96%, transparent);
  backdrop-filter: none;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
}

.wordmark small {
  padding-left: 1rem;
  border-left: 1px solid var(--rule);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.site-nav {
  gap: 0.25rem;
  font-size: 0.66rem;
}

.site-nav a {
  padding: 0.45rem 0.6rem;
  border: 1px solid transparent;
}

.site-nav a::after {
  display: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.site-nav .language-link:hover,
.site-nav .language-link:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
}

.home-profile-hero {
  grid-template-areas:
    "copy portrait"
    "actions portrait"
    "credentials credentials";
  grid-template-columns: minmax(24rem, 1fr) minmax(20rem, 0.62fr);
  grid-template-rows: auto auto auto;
  gap: 0 clamp(2rem, 5vw, 6rem);
  min-height: 0;
  padding-top: clamp(2.5rem, 5vw, 5.5rem);
  border-bottom: 1px solid var(--ink);
}

.home-profile-copy {
  justify-content: flex-start;
  padding-top: 0;
}

.home-profile-copy h1 {
  max-width: 8ch;
  margin-bottom: 2rem;
  font-size: clamp(3.75rem, 6.6vw, 7rem);
  white-space: normal;
}

.home-profile-copy h1::after {
  width: 4rem;
  height: 0.55rem;
  margin-top: 1.1rem;
  background: var(--accent);
}

.home-profile-role {
  margin-bottom: 0.8rem;
  color: var(--blue);
  font-size: clamp(1.1rem, 1.7vw, 1.6rem);
  font-weight: 650;
}

.home-profile-summary,
.home-profile-disciplines {
  max-width: 48rem;
  font-size: clamp(0.72rem, 0.85vw, 0.84rem);
}

.home-profile-summary {
  margin-bottom: 1rem;
}

.home-profile-portrait {
  align-self: start;
  height: clamp(24rem, 34vw, 34rem);
  border: 1px solid var(--ink);
  box-shadow: 0.7rem 0.7rem 0 var(--blue);
}

.home-profile-actions {
  padding: 2rem 0 2.75rem;
}

.hero-actions {
  gap: 0.55rem;
  font-size: 0.7rem;
}

  .hero-actions .text-link {
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.hero-actions .text-link::after {
  display: none;
}

.hero-actions .text-link-accent {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--paper);
}

.home-profile-credentials {
  min-height: 0;
  border-color: var(--ink);
}

.home-profile-credentials p {
  justify-content: flex-start;
  padding: 1rem;
  font-size: 0.64rem;
  text-align: left;
}

.home-profile-credentials p::before {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  flex: 0 0 auto;
  margin-right: 0.7rem;
  border-radius: 50%;
  background: var(--olive);
  content: "";
}

.selected-work,
.work-index,
.experience-section {
  padding: clamp(3rem, 5vw, 5.5rem) var(--gutter);
}

.selected-work {
  padding-top: clamp(2.75rem, 4vw, 4.5rem);
}

.section-heading {
  align-items: center;
  margin-bottom: 1.5rem;
  padding-top: 0.75rem;
  border-top: 2px solid var(--ink);
}

.section-heading h2 {
  font-size: clamp(2.2rem, 3.4vw, 3.75rem);
}

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

.selected-project,
.selected-project-1,
.selected-project-2,
.selected-project-3,
.selected-project-4,
.selected-project-5,
.selected-project-6 {
  grid-column: auto;
  align-self: start;
  margin-top: 0;
  padding: 0.7rem;
  border: 1px solid var(--rule);
  background: color-mix(in srgb, var(--paper) 92%, white);
}

.selected-media,
.selected-project-2 .selected-media,
.selected-project-3 .selected-media {
  aspect-ratio: 16 / 10;
  border: 1px solid var(--rule);
}

.selected-caption {
  grid-template-columns: 1.7rem 1fr;
  gap: 0 0.6rem;
  padding-top: 0.7rem;
}

.selected-caption h3 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.05rem, 1.5vw, 1.45rem);
}

.project-meta {
  font-size: 0.58rem;
}

.project-dossier {
  display: flex;
  flex-wrap: wrap;
  grid-column: 2;
  gap: 0.25rem;
  margin-top: 0.65rem;
}

.project-dossier span {
  padding: 0.28rem 0.38rem;
  border: 1px solid var(--rule);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.52rem;
  line-height: 1.35;
}

.project-dossier b {
  margin-right: 0.35rem;
  color: var(--ink);
  font-weight: 500;
  text-transform: uppercase;
}

.contact-band {
  grid-template-columns: minmax(18rem, 0.7fr) 1fr;
  background: color-mix(in srgb, var(--paper) 92%, white);
}

.contact-band h2 {
  padding: 2rem 2rem 2rem 0;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
}

.contact-actions {
  min-height: 8rem;
}

.contact-actions a {
  min-height: 8rem;
  padding: 1rem;
  font-size: 0.67rem;
}

.site-footer {
  min-height: 5.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.page-intro {
  min-height: 15rem;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.work-intro {
  grid-template-columns: 3rem minmax(0, 0.8fr) minmax(18rem, 0.45fr);
}

.page-intro h1 {
  font-size: clamp(3.5rem, 6vw, 6.5rem);
}

.work-index {
  padding-top: 0;
}

.filter-bar {
  gap: 0.35rem;
  padding: 0.6rem 0;
  border-top: 2px solid var(--ink);
  background: color-mix(in srgb, var(--paper) 97%, transparent);
}

.filter-bar button {
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--rule);
  font-size: 0.6rem;
}

.filter-bar button:hover,
.filter-bar button[aria-pressed="true"] {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.work-section-heading {
  grid-template-columns: 3rem 1fr;
  padding: 3.5rem 0 1rem;
  border-bottom-width: 2px;
}

.work-section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.work-row,
.work-row:nth-child(4n) {
  grid-template-columns: minmax(13rem, 22rem) 1fr;
  gap: clamp(1rem, 2.5vw, 2.75rem);
  min-height: 0;
  padding: 1.25rem 0;
}

.work-row-copy,
.work-row:nth-child(4n) .work-row-copy {
  order: 2;
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  align-content: center;
  align-self: stretch;
  gap: 0 1rem;
}

.work-row-media,
.work-row:nth-child(4n) .work-row-media {
  order: 1;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--rule);
}

.work-row .project-number {
  grid-row: 1 / 7;
  margin: 0;
  color: var(--accent);
  font-size: 0.72rem;
}

.work-row h2 {
  grid-column: 2;
  max-width: 22ch;
  margin: 0 0 0.4rem;
  font-size: clamp(1.55rem, 2.7vw, 2.9rem);
}

.work-row-copy > p:not(.project-number),
.work-row .project-meta,
.work-row .archive-label {
  grid-column: 2;
}

.work-row-copy > p:not(.project-number) {
  margin-bottom: 0.45rem;
  font-size: 0.78rem;
}

.work-row .archive-label {
  margin-top: 0.6rem;
  font-size: 0.55rem;
}

.practice-group {
  padding: 3rem 0;
}

.practice-group-heading {
  grid-template-columns: 3rem 1fr;
  margin-bottom: 1rem;
}

.practice-group-heading h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.8rem);
}

.archive-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding-left: 4rem;
}

.archive-card {
  padding: 0.55rem;
  border: 1px solid var(--rule);
  background: color-mix(in srgb, var(--paper) 92%, white);
}

.archive-card-media {
  aspect-ratio: 16 / 10;
  border: 1px solid var(--rule);
}

.archive-card-copy {
  grid-template-columns: 1.5rem 1fr;
  gap: 0.15rem 0.5rem;
  padding-top: 0.65rem;
}

.archive-card-copy h3 {
  font-size: clamp(1rem, 1.35vw, 1.25rem);
}

.archive-card-copy > p:not(.project-number) {
  font-size: 0.58rem;
}

.about-hero {
  grid-template-columns: minmax(28rem, 1fr) minmax(18rem, 25rem);
  gap: clamp(2rem, 5vw, 6rem);
  min-height: 0;
  padding-top: clamp(3rem, 6vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 6rem);
}

.about-intro {
  justify-content: flex-start;
  padding: 0;
}

.about-intro h1 {
  max-width: 16ch;
  margin-bottom: 2rem;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
}

.about-intro > p {
  max-width: 52rem;
  font-size: clamp(0.9rem, 1.15vw, 1.08rem);
}

.about-portrait {
  min-height: 0;
  height: clamp(26rem, 38vw, 38rem);
  border: 1px solid var(--ink);
  box-shadow: 0.65rem 0.65rem 0 var(--olive);
}

.experience-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.timeline-row {
  grid-template-columns: minmax(9rem, 0.25fr) 1fr;
  gap: 2rem;
  padding: 1.25rem 0;
}

.timeline-row h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.55rem);
}

.timeline-row div > p:last-child {
  font-size: 0.85rem;
}

.profile-details {
  margin-bottom: 4rem;
}

.profile-details > div {
  min-height: 18rem;
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

.profile-details h2 {
  margin-bottom: 1.5rem;
}

.project-page {
  padding-top: clamp(2rem, 4vw, 4rem);
}

.project-header {
  display: grid;
  grid-template-columns: minmax(20rem, 0.72fr) minmax(28rem, 1.28fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: start;
  padding-top: 0;
  padding-bottom: clamp(2rem, 4vw, 4rem);
  border-bottom: 2px solid var(--ink);
}

.project-title-block {
  display: block;
  padding: 0;
  border-bottom: 0;
}

.project-title-block .project-number {
  margin-bottom: 3rem;
  padding: 0.55rem 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  color: var(--accent);
}

.project-title-block h1 {
  max-width: 13ch;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 5vw, 5.8rem);
}

.project-subtitle {
  margin-bottom: 0.85rem;
  color: var(--blue);
  font-size: 0.8rem;
}

.project-hero-media {
  width: 100%;
  height: clamp(22rem, 34vw, 34rem);
  min-height: 0;
  border: 1px solid var(--ink);
  box-shadow: 0.65rem 0.65rem 0 var(--blue);
}

.project-information {
  grid-template-columns: 1fr 1fr minmax(13rem, 0.65fr);
  gap: clamp(1.5rem, 3vw, 3rem);
  padding: 2.5rem 0;
}

.project-information .section-index {
  margin-bottom: 0.8rem;
  color: var(--accent);
}

.project-information p:last-child,
.project-lede {
  font-size: clamp(0.9rem, 1.15vw, 1.06rem);
}

.project-facts div {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 0.5rem;
  padding: 0.65rem 0;
}

.project-facts dt {
  margin: 0;
}

.project-facts dd {
  font-size: 0.75rem;
}

.project-attribution {
  width: max-content;
  max-width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--accent);
  background: color-mix(in srgb, var(--accent) 7%, var(--paper));
  color: var(--ink);
  font-size: 0.62rem;
}

.project-material {
  padding: clamp(3rem, 5vw, 5rem) 0;
}

.project-material-heading {
  display: grid;
  grid-template-columns: minmax(10rem, 0.6fr) 1.4fr auto;
  gap: 2rem;
  align-items: end;
  padding: 0.75rem 0 1rem;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.project-material-heading p,
.project-material-heading h2 {
  margin: 0;
}

.project-material-heading h2 {
  max-width: 20ch;
  font-size: clamp(1.55rem, 2.6vw, 2.8rem);
}

.project-material-heading > p:last-child {
  font-family: var(--mono);
  font-size: 0.62rem;
}

.project-gallery {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  padding: 2rem 0 0;
}

.project-gallery-figure,
.project-gallery-figure.project-gallery-half,
.project-gallery-figure.project-gallery-full {
  grid-column: span 6;
  min-height: 0 !important;
  align-self: start;
  border: 1px solid var(--rule);
  background: color-mix(in srgb, var(--paper) 90%, white);
}

.project-gallery-figure.project-gallery-full {
  grid-column: span 8;
}

.project-gallery-figure:nth-child(3n + 2) {
  grid-column: span 4;
}

.project-gallery-figure:nth-child(4n) {
  grid-column: 3 / span 8;
}

.project-gallery picture,
.project-gallery-figure.project-gallery-half picture {
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--rule);
}

.project-gallery-figure figcaption {
  grid-template-columns: 2rem 1fr;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem 0.7rem;
  border-top: 0;
  font-size: 0.6rem;
}

.project-video {
  padding-bottom: 4rem;
}

.project-video-heading {
  max-width: 75%;
  padding-top: 0.75rem;
}

.project-video video {
  width: 75%;
  border: 1px solid var(--ink);
}

.project-pagination a {
  min-height: 7rem;
  padding: 1.25rem 0;
}

.project-pagination {
  margin-top: clamp(3rem, 5vw, 5rem);
}

.project-page + .contact-band {
  margin-top: 4rem;
}

@media (max-width: 1100px) {
  .selected-grid,
  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-profile-hero {
    grid-template-columns: minmax(22rem, 1fr) minmax(18rem, 0.68fr);
  }

  .project-header {
    grid-template-columns: minmax(18rem, 0.8fr) minmax(24rem, 1.2fr);
  }

  .project-information {
    grid-template-columns: 1fr 1fr;
  }

  .project-facts {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 4rem;
  }

  .wordmark small {
    display: none;
  }

  .site-nav {
    gap: 0.4rem;
    padding-top: calc(var(--header-height) + 2rem);
    background: var(--paper);
    font-family: var(--mono);
    font-size: clamp(1.7rem, 8vw, 3rem);
    font-weight: 500;
    letter-spacing: -0.035em;
  }

  .site-nav a {
    width: 100%;
    padding: 0.65rem 0;
    border: 0;
    border-bottom: 1px solid var(--rule);
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    background: transparent;
    color: var(--accent);
  }

  .home-profile-hero {
    grid-template-areas:
      "copy portrait"
      "actions actions"
      "credentials credentials";
    grid-template-columns: 1fr minmax(10rem, 0.45fr);
    gap: 1.5rem;
  }

  .home-profile-copy {
    padding: 0;
  }

  .home-profile-copy h1 {
    font-size: clamp(3.2rem, 10vw, 5rem);
  }

  .home-profile-portrait {
    height: 19rem;
  }

  .home-profile-actions {
    padding: 1.5rem 0;
  }

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

  .work-intro > p:last-child {
    grid-column: 2;
  }

  .work-row,
  .work-row:nth-child(4n) {
    grid-template-columns: minmax(11rem, 15rem) 1fr;
  }

  .about-hero {
    grid-template-columns: 1fr minmax(14rem, 20rem);
  }

  .about-portrait {
    height: 27rem;
    min-height: 0;
    border-top: 1px solid var(--ink);
  }

  .project-header {
    grid-template-columns: 1fr;
  }

  .project-hero-media {
    height: min(60vw, 28rem);
  }

  .project-title-block .project-number {
    margin-bottom: 1.5rem;
  }

  .project-material-heading {
    grid-template-columns: 1fr auto;
  }

  .project-material-heading h2 {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .project-gallery-figure,
  .project-gallery-figure.project-gallery-full,
  .project-gallery-figure:nth-child(3n + 2),
  .project-gallery-figure:nth-child(4n) {
    grid-column: span 6;
  }

  .project-video-heading,
  .project-video video {
    width: 100%;
    max-width: none;
  }
}

@media (max-width: 620px) {
  .home-profile-hero {
    grid-template-areas:
      "copy"
      "portrait"
      "actions"
      "credentials";
    grid-template-columns: 1fr;
    padding-top: 2rem;
  }

  .home-profile-copy h1 {
    max-width: none;
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .home-profile-portrait {
    width: calc(100% - 0.65rem);
    height: 64vw;
  }

  .home-profile-portrait img {
    object-position: 50% 19% !important;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.45rem;
  }

  .hero-actions .text-link {
    padding: 0.55rem 0.65rem;
  }

  .home-profile-credentials {
    grid-template-columns: 1fr;
  }

  .home-profile-credentials p + p {
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .selected-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .selected-work,
  .work-index,
  .experience-section {
    padding-right: var(--gutter);
    padding-left: var(--gutter);
  }

  .work-row,
  .work-row:nth-child(4n) {
    grid-template-columns: 1fr;
  }

  .work-row-media,
  .work-row:nth-child(4n) .work-row-media {
    order: 1;
  }

  .work-row-copy,
  .work-row:nth-child(4n) .work-row-copy {
    order: 2;
  }

  .archive-grid {
    padding-left: 0;
  }

  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    width: calc(100% - 0.65rem);
    height: 92vw;
  }

  .project-page {
    padding-top: 2rem;
  }

  .project-header,
  .project-material {
    margin-right: var(--gutter);
    margin-left: var(--gutter);
  }

  .project-header {
    padding-bottom: 2.5rem;
  }

  .project-title-block h1 {
    font-size: clamp(2.75rem, 13vw, 4.5rem);
  }

  .project-hero-media {
    height: 68vw;
  }

  .project-information {
    margin-right: var(--gutter);
    margin-left: var(--gutter);
  }

  .project-facts {
    display: block;
  }

  .project-material .project-gallery {
    margin: 0;
  }

  .project-gallery-figure,
  .project-gallery-figure.project-gallery-full,
  .project-gallery-figure:nth-child(3n + 2),
  .project-gallery-figure:nth-child(4n) {
    grid-column: 1 / -1;
  }

  .project-gallery picture,
  .project-gallery-figure.project-gallery-half picture {
    min-height: 0 !important;
  }

  .project-attribution {
    width: auto;
  }

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

/* The Work masthead becomes a simple vertical composition on phones and tablets. */
@media (max-width: 820px) {
  .work-body .work-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "count"
      "title"
      "intro";
    gap: 0.8rem;
    align-items: start;
    padding-top: clamp(2.5rem, 9vw, 4.5rem);
    padding-bottom: clamp(2.5rem, 8vw, 4rem);
  }

  .work-body .work-intro .section-index {
    grid-area: count;
    padding: 0;
    margin: 0 0 0.2rem;
    white-space: nowrap;
  }

  .work-body .work-intro h1 {
    grid-area: title;
    font-size: clamp(4.5rem, 17vw, 7rem);
    line-height: 0.88;
  }

  .work-body .work-intro > p:last-child {
    grid-area: intro;
    width: min(100%, 38rem);
    max-width: none;
    margin: 1rem 0 0;
    font-size: clamp(0.78rem, 2.2vw, 0.9rem);
    line-height: 1.65;
  }
}

@media (max-width: 440px) {
  .work-body .work-intro h1 {
    font-size: clamp(4.25rem, 22vw, 5.75rem);
  }

  .work-body .work-intro > p:last-child {
    width: 100%;
    max-width: none;
  }
}

/* Consistent media geometry: previews crop; full drawings keep natural ratios. */
.work-row,
.work-row:nth-child(4n) {
  min-height: 11.5rem;
  align-items: center;
}

.work-row-media,
.work-row:nth-child(4n) .work-row-media {
  height: 9.5rem;
  grid-template-columns: 62% 38%;
  overflow: hidden;
}

.work-row-media picture,
.work-row-media img {
  width: 100%;
  height: 100%;
}

.work-row-media img,
.work-row-support img {
  object-fit: cover !important;
  mix-blend-mode: normal;
}

.work-row-copy,
.work-row:nth-child(4n) .work-row-copy {
  min-height: 9.5rem;
}

.work-row h2 {
  display: -webkit-box;
  min-height: 2.2em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.work-row-copy > p:not(.project-number) {
  min-height: 1.5em;
}

.archive-grid {
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.archive-card {
  display: grid;
  grid-template-rows: 10rem 1fr;
  height: 100%;
}

.archive-card-media {
  width: 100%;
  height: 10rem;
  aspect-ratio: auto;
}

.archive-card-media picture,
.archive-card-media img {
  width: 100%;
  height: 100%;
}

.archive-card-media img {
  object-fit: cover !important;
}

.archive-card-copy {
  grid-template-rows: auto auto auto 1fr;
  min-height: 10.75rem;
}

.archive-card-copy h3 {
  display: -webkit-box;
  min-height: 2.15em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.archive-card-copy > p:not(.project-number) {
  display: -webkit-box;
  min-height: 3em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.selected-project {
  display: grid;
  grid-template-rows: 16rem 1fr;
  height: 100%;
}

.selected-media,
.selected-project:first-child .selected-media {
  height: 16rem;
}

.selected-media picture,
.selected-media img,
.selected-project:first-child .selected-media picture,
.selected-project:first-child .selected-media img {
  height: 100%;
}

.selected-media img,
.selected-media-support img {
  object-fit: cover !important;
  mix-blend-mode: normal;
}

.selected-caption {
  min-height: 8.5rem;
  align-content: start;
}

.selected-caption h3 {
  display: -webkit-box;
  min-height: 2.1em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.project-gallery-image,
.project-gallery-image img {
  width: 100%;
  height: 100%;
}

.project-gallery-image img {
  object-fit: cover !important;
}

.project-gallery-drawing-figure {
  align-self: start;
  grid-template-rows: auto auto;
}

.project-gallery picture.project-gallery-drawing,
.project-gallery-figure.project-gallery-half picture.project-gallery-drawing {
  width: 100%;
  height: auto;
  min-height: 0 !important;
  aspect-ratio: auto;
  background: color-mix(in srgb, var(--paper) 65%, white);
}

.project-gallery-drawing img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain !important;
}

@media (max-width: 820px) {
  .work-row,
  .work-row:nth-child(4n) {
    min-height: 0;
  }

  .work-row-media,
  .work-row:nth-child(4n) .work-row-media {
    height: 8.5rem;
  }

  .work-row-copy,
  .work-row:nth-child(4n) .work-row-copy {
    min-height: 8.5rem;
  }
}

@media (max-width: 620px) {
  .work-row-media,
  .work-row:nth-child(4n) .work-row-media {
    height: 11rem;
  }

  .work-row-copy,
  .work-row:nth-child(4n) .work-row-copy {
    min-height: 0;
  }

  .archive-card {
    grid-template-rows: 12rem 1fr;
  }

  .archive-card-media {
    height: 12rem;
  }

  .selected-project,
  .selected-media,
  .selected-project:first-child .selected-media {
    height: auto;
  }

  .selected-project {
    grid-template-rows: 13rem 1fr;
  }

  .selected-media,
  .selected-project:first-child .selected-media {
    height: 13rem;
  }
}

/* Calm portfolio direction: warm, human and precise. */
:root {
  --paper: #f3eddf;
  --ink: #292722;
  --muted: #6b6258;
  --soft: #eee4d1;
  --rule: #b8ad9c;
  --accent: #98513d;
  --blue: #536f65;
  --olive: #7a8067;
  --header-height: 4.4rem;
}

body {
  background-color: var(--paper);
  background-image:
    linear-gradient(to right, rgb(41 39 34 / 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(41 39 34 / 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.site-header {
  border-bottom: 1px solid var(--rule);
  background: color-mix(in srgb, var(--paper) 96%, transparent);
}

.wordmark {
  gap: 0;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.wordmark small {
  display: none;
}

.site-nav {
  gap: 1.8rem;
  font-family: var(--display);
  font-size: 0.76rem;
}

.site-nav a {
  padding: 0.25rem 0;
  border: 0;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border: 0;
  background: none;
  color: var(--accent);
}

.site-nav .language-link:hover,
.site-nav .language-link:focus-visible {
  border: 0;
  background: none;
  color: var(--accent);
}

.home-profile-hero {
  grid-template-areas:
    "copy how portrait"
    "actions how portrait"
    "credentials credentials credentials";
  grid-template-columns: minmax(30rem, 1.25fr) minmax(16rem, 0.55fr) minmax(20rem, 0.78fr);
  gap: 0 clamp(2rem, 4vw, 5rem);
  align-items: center;
  padding-top: clamp(3rem, 5vw, 5rem);
  padding-bottom: 0;
  border-bottom: 0;
}

.home-profile-copy {
  justify-content: center;
}

.home-profile-role {
  order: -1;
  margin-bottom: 1.1rem;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.home-profile-copy h1 {
  max-width: 15ch;
  margin-bottom: 1.35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 4.25vw, 4.5rem);
  font-weight: 400;
  line-height: 1.02;
}

.home-profile-copy h1 em {
  color: var(--accent);
  font-weight: 400;
}

.home-profile-copy h1::after {
  display: none;
}

.home-profile-summary {
  max-width: 46rem;
  margin-bottom: 0.75rem;
  font-family: var(--display);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.55;
}

.home-profile-disciplines {
  color: var(--muted);
  font-size: 0.7rem;
}

.home-profile-portrait {
  width: 100%;
  height: clamp(23rem, 31vw, 31rem);
  min-width: 0;
  min-height: 0;
  align-self: center;
  justify-self: end;
  border: 0;
  border-radius: 0.15rem;
  box-shadow: none;
}

.home-profile-portrait img {
  border-radius: 0.15rem;
  filter: saturate(0.75);
  object-position: 50% 10% !important;
}

.home-profile-how {
  grid-area: how;
  align-self: center;
  padding: 1.7rem 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.home-profile-how p {
  margin-bottom: 1rem;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.home-profile-how span {
  display: block;
  font-size: clamp(0.9rem, 1.05vw, 1.05rem);
  line-height: 1.55;
}

.home-profile-actions {
  padding: 1.5rem 0 2.5rem;
}

.hero-actions {
  gap: 1rem;
}

.hero-actions .text-link {
  padding: 0.45rem 0;
  border: 0;
  background: none;
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.75rem;
}

.hero-actions .text-link::after {
  display: block;
}

.hero-actions .text-link-accent {
  color: var(--accent);
}

.linkedin-text-link,
.contact-actions .linkedin-label {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.linkedin-icon {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
}

.contact-actions .linkedin-label {
  color: inherit;
  font-size: inherit;
}

.contact-actions .linkedin-icon {
  width: 1.2rem;
  height: 1.2rem;
}

.home-profile-credentials {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 0;
  margin-top: 0;
  border-top: 1px solid var(--ink);
  border-right: 0;
  border-bottom: 1px solid var(--ink);
  border-left: 0;
}

.home-profile-credentials p {
  display: block;
  padding: 0.9rem 1rem;
  text-align: left;
}

.home-profile-credentials p::before {
  display: none;
}

.home-profile-credentials strong,
.home-profile-credentials span {
  display: block;
}

.home-profile-credentials strong {
  margin-bottom: 0.3rem;
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 500;
}

.home-profile-credentials span {
  color: var(--muted);
  font-size: 0.55rem;
  line-height: 1.45;
}

.selected-work {
  margin: 0;
  padding: clamp(3rem, 5vw, 5rem) var(--gutter) clamp(4rem, 6vw, 6rem);
  border-radius: 0;
  background: transparent;
}

.section-heading {
  align-items: flex-end;
  margin-bottom: 1.2rem;
  padding-top: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--ink);
}

.section-heading h2 {
  font-size: clamp(2.2rem, 3.6vw, 4rem);
}

.home-selected-list {
  border-top: 1px solid var(--rule);
}

.home-selected-list .work-row,
.home-selected-list .work-row:nth-child(4n) {
  grid-template-columns: minmax(14rem, 20rem) 1fr;
  padding: 1.2rem 0;
}

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

.selected-project,
.selected-project-1,
.selected-project-2,
.selected-project-3 {
  padding: 0;
  border: 1px solid var(--rule);
  border-radius: 0.35rem;
  background: color-mix(in srgb, var(--paper) 72%, white);
  overflow: hidden;
}

.selected-media,
.selected-project-2 .selected-media,
.selected-project-3 .selected-media {
  display: grid;
  grid-template-columns: 1fr;
  aspect-ratio: auto;
  border: 0;
  background: var(--soft);
}

.selected-project:first-child .selected-media {
  grid-template-columns: 1.35fr 0.75fr;
}

.selected-media-primary,
.selected-media-support {
  height: clamp(10rem, 15vw, 14rem);
}

.selected-media-support {
  height: clamp(4.5rem, 6vw, 6rem);
  border-top: 1px solid var(--rule);
  background: color-mix(in srgb, var(--paper) 80%, white);
}

.selected-project:first-child .selected-media-primary,
.selected-project:first-child .selected-media-support {
  height: clamp(14rem, 19vw, 18rem);
}

.selected-project:first-child .selected-media-support {
  border-top: 0;
  border-left: 1px solid var(--rule);
}

.selected-media-support img {
  object-fit: contain !important;
  mix-blend-mode: multiply;
}

.selected-caption {
  grid-template-columns: 1.4rem 1fr;
  padding: 0.85rem;
}

.selected-caption h3 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.15rem, 1.6vw, 1.65rem);
}

.selected-caption .project-dossier {
  display: none;
}

.page-intro {
  min-height: 0;
  padding-top: clamp(3rem, 6vw, 6rem);
  padding-bottom: 2.5rem;
}

.work-intro {
  grid-template-columns: 3.5rem minmax(0, 0.8fr) minmax(20rem, 0.48fr);
}

.page-intro h1 {
  font-size: clamp(3.8rem, 7vw, 7.5rem);
}

.filter-bar {
  gap: 1.5rem;
  padding: 0.8rem 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: color-mix(in srgb, var(--paper) 97%, transparent);
}

.filter-bar button {
  padding: 0;
  border: 0;
  color: var(--ink);
}

.filter-bar button:hover,
.filter-bar button[aria-pressed="true"] {
  border: 0;
  background: none;
  color: var(--accent);
}

.work-section-heading {
  padding: 3rem 0 1rem;
  border-bottom: 1px solid var(--ink);
}

.work-section-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3.5rem);
}

.work-row,
.work-row:nth-child(4n) {
  grid-template-columns: minmax(15rem, 22rem) 1fr;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  padding: 1.25rem 0;
}

.work-row-media,
.work-row:nth-child(4n) .work-row-media {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  aspect-ratio: auto;
  border: 1px solid var(--rule);
  background: color-mix(in srgb, var(--paper) 80%, white);
}

.work-row-media picture {
  height: 8.5rem;
}

.work-row-support {
  border-left: 1px solid var(--rule);
}

.work-row-support img {
  object-fit: contain !important;
  mix-blend-mode: multiply;
}

.work-row-copy,
.work-row:nth-child(4n) .work-row-copy {
  grid-template-columns: 2.25rem minmax(0, 1fr) minmax(12rem, 0.6fr);
}

.work-row .project-number {
  grid-row: 1 / 6;
}

.work-row h2,
.work-row-copy > p:not(.project-number),
.work-row .project-meta {
  grid-column: 2;
}

.work-row h2 {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.1vw, 2.1rem);
  font-weight: 560;
}

.work-row .project-dossier {
  grid-column: 3;
  grid-row: 1 / 5;
  align-self: center;
  display: grid;
  margin: 0;
  border-left: 1px solid var(--rule);
  padding-left: 1.25rem;
}

.work-row .project-dossier span {
  padding: 0.2rem 0;
  border: 0;
  font-size: 0.55rem;
}

.practice-group {
  padding: 2.5rem 0;
}

.practice-group-heading h2 {
  font-size: clamp(1.7rem, 2.7vw, 2.75rem);
}

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

.archive-card {
  border-radius: 0.3rem;
  background: color-mix(in srgb, var(--paper) 72%, white);
  overflow: hidden;
}

.archive-card-copy h3 {
  font-family: var(--display);
  font-weight: 560;
}

.about-hero {
  grid-template-columns: minmax(30rem, 1fr) minmax(18rem, 25rem);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.about-intro h1 {
  max-width: 14ch;
  font-size: clamp(3rem, 5vw, 5.5rem);
}

.about-portrait {
  width: min(25rem, 27vw);
  height: min(25rem, 27vw);
  min-width: 18rem;
  min-height: 18rem;
  justify-self: end;
  border: 0;
  border-radius: 50%;
  box-shadow: none;
}

.about-portrait img {
  border-radius: 50%;
  filter: saturate(0.75);
  object-position: 50% 13% !important;
}

.timeline-row h3 {
  font-family: var(--display);
  font-weight: 560;
}

.project-header {
  grid-template-columns: minmax(20rem, 0.78fr) minmax(28rem, 1.22fr);
  border-bottom: 1px solid var(--ink);
}

.project-title-block .project-number {
  color: var(--accent);
}

.project-title-block h1 {
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.project-hero-media {
  height: clamp(21rem, 32vw, 32rem);
  border: 0;
  border-radius: 0.25rem;
  box-shadow: none;
}

.project-hero-media img[style*="object-fit:contain"] {
  background: color-mix(in srgb, var(--paper) 72%, white);
}

.project-information {
  padding: 2.75rem 0;
}

.project-attribution {
  width: min(100%, 52rem);
  margin-top: 0.9rem;
  padding: 0 0 0.15rem 1rem;
  border: 0;
  border-left: 2px solid var(--accent);
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  line-height: 1.55;
}

.project-attribution + .project-material {
  padding-top: clamp(2.25rem, 4vw, 3.75rem);
}

.project-material-heading {
  border-top: 1px solid var(--ink);
}

.project-material-heading h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.project-gallery {
  gap: clamp(1rem, 2vw, 2rem);
}

.project-gallery-figure,
.project-gallery-figure.project-gallery-half,
.project-gallery-figure.project-gallery-full {
  border-radius: 0.25rem;
  overflow: hidden;
}

.contact-band {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: transparent;
}

.contact-band h2 {
  font-size: clamp(2.2rem, 3.8vw, 4rem);
}

.contact-actions a:hover {
  background: color-mix(in srgb, var(--accent) 9%, transparent);
  color: var(--ink);
}

@media (max-width: 1000px) {
  .home-profile-hero {
    grid-template-areas:
      "copy portrait"
      "how portrait"
      "actions portrait"
      "credentials credentials";
    grid-template-columns: minmax(28rem, 1fr) minmax(18rem, 0.72fr);
    gap: 1.5rem 3rem;
  }

  .home-profile-portrait {
    width: 100%;
    height: 31rem;
  }

  .about-portrait {
    width: min(21rem, 31vw);
    height: min(21rem, 31vw);
  }

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

  .selected-project:first-child {
    grid-column: 1 / -1;
  }

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

@media (max-width: 820px) {
  .site-nav {
    gap: 0.4rem;
    font-family: var(--display);
    font-size: clamp(2rem, 9vw, 3.5rem);
  }

  .site-nav a {
    padding: 0.7rem 0;
  }

  .home-profile-hero {
    grid-template-areas:
      "copy portrait"
      "how portrait"
      "actions actions"
      "credentials credentials";
    grid-template-columns: 1fr minmax(13rem, 16rem);
  }

  .home-profile-portrait {
    width: 100%;
    height: 27rem;
    min-width: 0;
    min-height: 0;
  }

  .work-row-copy,
  .work-row:nth-child(4n) .work-row-copy {
    grid-template-columns: 2rem 1fr;
  }

  .work-row .project-dossier {
    grid-column: 2;
    grid-row: auto;
    display: flex;
    border-left: 0;
    padding-left: 0;
  }

  .about-hero {
    grid-template-columns: 1fr minmax(14rem, 18rem);
  }

  .about-portrait {
    width: min(18rem, 35vw);
    height: min(18rem, 35vw);
    min-width: 14rem;
    min-height: 14rem;
  }
}

@media (max-width: 620px) {
  .home-profile-hero {
    grid-template-areas:
      "copy"
      "how"
      "portrait"
      "actions"
      "credentials";
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-top: 2.75rem;
  }

  .home-profile-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.65rem, 12vw, 3.7rem);
    line-height: 1.02;
  }

  .home-profile-portrait {
    width: 100%;
    height: 82vw;
    justify-self: center;
  }

  .home-profile-how {
    margin-top: 0.5rem;
  }

  .home-profile-actions {
    justify-content: center;
  }

  .home-profile-credentials {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-profile-credentials p:nth-child(3) {
    border-left: 0;
  }

  .home-profile-credentials p:nth-child(n + 3) {
    border-top: 1px solid var(--rule);
  }

  .selected-work {
    margin: 0;
    padding: 3rem var(--gutter) 4rem;
  }

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

  .home-selected-list .work-row,
  .home-selected-list .work-row:nth-child(4n) {
    grid-template-columns: 1fr;
  }

  .selected-project:first-child {
    grid-column: auto;
  }

  .selected-project:first-child .selected-media {
    grid-template-columns: 1fr;
  }

  .selected-project:first-child .selected-media-primary,
  .selected-project:first-child .selected-media-support {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .selected-project:first-child .selected-media-support {
    height: 5.5rem;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .work-row,
  .work-row:nth-child(4n) {
    grid-template-columns: 1fr;
  }

  .work-row-media picture {
    height: 7rem;
  }

  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    width: min(18rem, 72vw);
    height: min(18rem, 72vw);
    justify-self: center;
  }

  .project-header {
    grid-template-columns: 1fr;
  }

  .project-hero-media {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }
}

/* Final preview override: nested responsive images must fill both panes. */
.work-row-media,
.work-row:nth-child(4n) .work-row-media {
  grid-auto-rows: 1fr;
  align-items: stretch;
}

.work-row-media > picture,
.work-row-media > picture > img {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  align-self: stretch;
}

.work-row-media > picture > img,
.work-row-support > img {
  object-fit: cover !important;
  object-position: center !important;
  mix-blend-mode: normal !important;
}

/* Keep the Work introduction comfortably readable before the desktop split fits. */
@media (max-width: 1000px) {
  .work-intro {
    grid-template-columns: 3.5rem minmax(0, 1fr);
    column-gap: clamp(1.25rem, 4vw, 3rem);
    row-gap: 1.5rem;
  }

  .work-intro > p:last-child {
    grid-column: 2;
    width: min(100%, 52rem);
    max-width: none;
    margin: 0;
    font-size: clamp(0.78rem, 1.8vw, 0.9rem);
  }
}

@media (max-width: 620px) {
  .work-intro {
    grid-template-columns: 2.5rem minmax(0, 1fr);
  }

  .work-body .filter-bar {
    margin-right: calc(var(--gutter) * -1);
    padding-right: var(--gutter);
    mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 2rem), transparent 100%);
  }
}

/* A quieter Work page: the grid provides texture; rules only mark hierarchy. */
.work-body {
  background-image:
    linear-gradient(to right, rgb(41 39 34 / 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(41 39 34 / 0.012) 1px, transparent 1px);
}

.work-body .filter-bar {
  border-top: 0;
  border-bottom-color: color-mix(in srgb, var(--ink) 62%, transparent);
}

.work-body .work-section-heading {
  border-bottom-color: color-mix(in srgb, var(--ink) 68%, transparent);
}

.work-body .work-row,
.work-body .work-row:nth-child(4n) {
  border-bottom-color: color-mix(in srgb, var(--ink) 15%, transparent);
}

.work-body .selected-case-studies .work-row:last-child {
  border-bottom: 0;
}

/* Project narratives are divided by content, with spacing doing most of the work. */
.project-body .project-material {
  padding: clamp(3.5rem, 7vw, 7rem) 0 0;
}

.project-body .project-summary {
  max-width: 44rem;
  margin: 1.35rem 0 1rem;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.05vw, 1.02rem);
  line-height: 1.55;
}

.project-body .project-material + .project-material {
  margin-top: clamp(2.5rem, 5vw, 5rem);
  padding-top: 0;
}

.project-body .project-material-heading {
  grid-template-columns: minmax(8rem, 0.45fr) minmax(0, 1.55fr) auto;
  padding: 0 0 1rem;
  border-top: 0;
  border-bottom-color: color-mix(in srgb, var(--ink) 55%, transparent);
}

.project-body .project-material-heading .section-index {
  color: var(--accent);
}

.project-body .project-material-heading h2 {
  max-width: 24ch;
}

.project-body .project-material-built .project-gallery-figure,
.project-body .project-material-design .project-gallery-figure {
  background: var(--paper);
}

.project-body .project-material-plans .project-gallery-figure,
.project-body .project-material-sections .project-gallery-figure,
.project-body .project-material-technical .project-gallery-figure,
.project-body .project-material-process .project-gallery-figure {
  background: color-mix(in srgb, var(--paper) 76%, white);
}

@media (max-width: 620px) {
  .project-attribution {
    width: auto;
  }

  .project-pagination {
    margin-top: 2.5rem;
  }

  .project-body .project-material-heading {
    grid-template-columns: 1fr auto;
    gap: 0.6rem 1rem;
  }

  .project-body .project-material-heading .section-index,
  .project-body .project-material-heading h2 {
    grid-column: 1;
  }

  .project-body .project-material-heading > p:last-child {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: end;
  }
}

/* Wide desktop frame: keep the portfolio readable instead of stretching with the screen. */
@media (min-width: 1101px) {
  :root {
    --desktop-frame: max(var(--gutter), calc((100vw - 88rem) / 2));
  }

  .site-header,
  .site-footer,
  .home-profile-hero,
  .selected-work,
  .page-intro,
  .work-index,
  .about-hero,
  .experience-section,
  .project-page {
    padding-right: var(--desktop-frame);
    padding-left: var(--desktop-frame);
  }

  .profile-details,
  .contact-band {
    margin-right: var(--desktop-frame);
    margin-left: var(--desktop-frame);
  }

  .home-profile-hero {
    grid-template-columns: minmax(28rem, 1.25fr) minmax(14rem, 0.5fr) minmax(17rem, 0.68fr);
    gap: 0 clamp(2rem, 2.8vw, 3.5rem);
    padding-top: clamp(2.75rem, 3.5vw, 4rem);
  }

  .home-profile-copy h1 {
    max-width: 22ch;
    font-size: clamp(2.9rem, 3.35vw, 3.9rem);
    line-height: 1.02;
  }

  .home-profile-summary {
    font-size: clamp(1rem, 1.05vw, 1.12rem);
  }

  .home-profile-how span {
    font-size: clamp(0.88rem, 0.9vw, 0.98rem);
  }

  .home-profile-portrait {
    height: clamp(21rem, 25vw, 26rem);
  }

  .selected-work {
    padding-top: clamp(2.75rem, 3.5vw, 3.75rem);
    padding-bottom: clamp(3.5rem, 4vw, 4.5rem);
  }

  .page-intro {
    padding-top: clamp(3rem, 4vw, 4.5rem);
  }

  .page-intro h1 {
    font-size: clamp(3.8rem, 5vw, 6rem);
  }

  .work-section-heading {
    padding-top: 2.5rem;
  }

  .about-hero {
    padding-top: clamp(3.5rem, 4.5vw, 5rem);
    padding-bottom: clamp(3.5rem, 4.5vw, 5rem);
  }

  .about-intro h1,
  .project-title-block h1 {
    font-size: clamp(3.2rem, 4vw, 4.75rem);
  }

  .about-portrait {
    width: min(22rem, 23vw);
    height: min(22rem, 23vw);
  }

  .project-hero-media {
    height: clamp(21rem, 27vw, 28rem);
  }

  .project-body .project-material {
    padding-top: clamp(3.5rem, 5vw, 5rem);
  }
}

/* About profile: a compact editorial composition that matches the homepage rhythm. */
.about-hero {
  grid-template-areas:
    "intro biography portrait"
    "utilities utilities portrait";
  grid-template-columns: minmax(22rem, 0.95fr) minmax(20rem, 0.85fr) minmax(18rem, 0.62fr);
  gap: clamp(1.75rem, 3.5vw, 4.5rem);
  align-items: center;
  min-height: 0;
  padding-top: clamp(3rem, 4.8vw, 5rem);
  padding-bottom: clamp(3rem, 4.8vw, 5rem);
  border-bottom: 0;
}

.about-intro {
  grid-area: intro;
  display: block;
  padding: 0;
}

.about-eyebrow {
  margin: 0 0 1.15rem;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.67rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.about-intro h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.8rem, 4.15vw, 4.65rem);
  line-height: 1.02;
}

.about-biography {
  grid-area: biography;
  padding: 1.5rem 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.about-biography .section-index {
  margin-bottom: 1.2rem;
  color: var(--accent);
}

.about-biography > p:not(.section-index) {
  max-width: 36rem;
  margin: 0;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.55;
}

.about-biography > p:not(.section-index) + p {
  margin-top: 0.85rem;
}

.about-portrait {
  grid-area: portrait;
  width: min(22rem, 23vw);
  height: min(22rem, 23vw);
  min-width: 17rem;
  min-height: 17rem;
  align-self: center;
  justify-self: end;
}

.about-utilities {
  grid-area: utilities;
  display: flex;
  gap: 1.5rem 2.25rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid color-mix(in srgb, var(--ink) 48%, transparent);
}

.about-profile-actions {
  gap: 0.75rem 1.5rem;
  margin: 0;
}

.arb-credential {
  margin: 0;
}

.arb-credential .arb-logo {
  width: 6.2rem;
}

.arb-credential span {
  max-width: 13rem;
  font-size: 0.56rem;
}

@media (max-width: 1000px) {
  .about-hero {
    grid-template-areas:
      "intro portrait"
      "biography portrait"
      "utilities utilities";
    grid-template-columns: minmax(0, 1fr) minmax(16rem, 0.58fr);
    gap: 2rem 3rem;
  }

  .about-intro h1 {
    max-width: 14ch;
  }
}

@media (max-width: 620px) {
  .about-hero {
    grid-template-areas:
      "intro"
      "portrait"
      "biography"
      "utilities";
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2.75rem;
    padding-bottom: 2.75rem;
  }

  .about-intro h1 {
    max-width: 12ch;
    font-size: clamp(2.7rem, 13vw, 3.7rem);
  }

  .about-portrait {
    width: min(18rem, 78vw);
    height: min(18rem, 78vw);
    min-width: 0;
    min-height: 0;
    justify-self: start;
  }

  .about-biography {
    padding: 1.25rem 0;
  }

  .about-utilities {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Page shortcuts, practice headings and compact archive facts. */
.page-shortcuts {
  position: sticky;
  z-index: 35;
  top: var(--header-height);
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: baseline;
  padding: 0.62rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 55%, transparent);
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(12px);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.about-body .page-shortcuts {
  margin-right: var(--gutter);
  margin-left: var(--gutter);
}

.page-shortcuts > span {
  color: var(--accent);
  text-transform: uppercase;
}

.page-shortcuts > div {
  display: flex;
  min-width: 0;
  flex-wrap: nowrap;
  gap: 0.55rem 1.4rem;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.page-shortcuts > div::-webkit-scrollbar {
  display: none;
}

.page-shortcuts a {
  color: var(--muted);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.28rem;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.page-shortcuts a:hover,
.page-shortcuts a:focus-visible,
.page-shortcuts a[aria-current="location"] {
  color: var(--ink);
  text-decoration-color: var(--accent);
}

.page-shortcuts a[aria-current="location"] {
  color: var(--accent);
}

.work-body .filter-bar {
  top: calc(var(--header-height) + 3.75rem);
}

.selected-case-studies,
.experience-section {
  scroll-margin-top: calc(var(--header-height) + 4.2rem);
}

.work-body .selected-case-studies,
.work-body .practice-group {
  scroll-margin-top: calc(var(--header-height) + 8rem);
}

@media (min-width: 621px) {
  .selected-case-studies .work-section-heading h2 {
    max-width: none;
    white-space: nowrap;
  }
}

.practice-group {
  scroll-margin-top: calc(var(--header-height) + 4.2rem);
}

.practice-group-heading {
  grid-template-columns: 4rem minmax(0, 1fr);
  align-items: start;
}

.practice-group-heading > p {
  width: 4rem;
  margin: 0;
  padding-top: 0.35rem;
  line-height: 1.35;
}

.practice-group-heading h2 {
  margin: 0;
}

.practice-group-heading .practice-location {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  line-height: 1.45;
}

.archive-grid {
  align-items: stretch;
  grid-auto-rows: auto;
}

.archive-card {
  grid-template-rows: 10rem auto;
  height: 100%;
}

.archive-card-copy {
  grid-template-rows: auto auto auto auto;
  min-height: 0;
}

.archive-card-copy .project-dossier {
  align-self: start;
  display: flex;
  margin-top: 0.7rem;
}

.archive-card-copy .project-dossier span {
  min-height: 0;
  padding: 0.28rem 0.38rem;
}

.credential-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 1rem;
  border-left: 1px solid var(--rule);
}

.credential-card-link span {
  display: block;
}

.arb-logo {
  display: block;
  width: min(15.5rem, 100%);
  height: auto;
}

.credential-card-link span {
  max-width: 8.5rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.5rem;
  line-height: 1.45;
}

.arb-logo-compact {
  width: min(7.4rem, 58%);
  flex: 0 0 auto;
}

.credential-card-link:hover span,
.arb-credential a:hover span {
  color: var(--accent);
}

.arb-credential {
  margin: 1.5rem 0 0;
}

.about-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.4rem;
  margin-top: 1.6rem;
  font-size: 0.78rem;
}

.about-profile-actions .text-link {
  width: max-content;
}

.arb-credential a {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.arb-credential .arb-logo {
  width: 7.25rem;
  flex: 0 0 auto;
}

.arb-credential span {
  max-width: 11rem;
  padding-bottom: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.62rem;
  line-height: 1.5;
  text-decoration: underline;
  text-decoration-color: var(--rule);
  text-underline-offset: 0.28rem;
}

.profile-details > div {
  scroll-margin-top: calc(var(--header-height) + 4.2rem);
}

/* A short destination cue connects the sticky shortcut to the section it opens. */
.shortcut-target-flash {
  animation: shortcut-target-flash 1.4s ease-out both;
}

@keyframes shortcut-target-flash {
  0%,
  22% {
    background-color: color-mix(in srgb, var(--accent) 9%, transparent);
  }

  100% {
    background-color: transparent;
  }
}

.shortcut-target-flash h2 {
  animation: shortcut-heading-flash 1.4s ease-out both;
}

@keyframes shortcut-heading-flash {
  0%,
  22% {
    color: var(--accent);
  }

  100% {
    color: var(--ink);
  }
}

@media (prefers-reduced-motion: reduce) {
  .shortcut-target-flash {
    animation: none !important;
    background-color: color-mix(in srgb, var(--accent) 9%, transparent);
  }

  .shortcut-target-flash h2 {
    animation: none !important;
    color: var(--accent);
  }
}

@media (min-width: 1101px) {
  .about-body .page-shortcuts {
    margin-right: var(--desktop-frame);
    margin-left: var(--desktop-frame);
  }

  .about-intro h1 {
    max-width: 15ch;
    font-size: clamp(2.9rem, 3.45vw, 4.1rem);
  }
}

@media (max-width: 620px) {
  .work-body .filter-bar {
    top: calc(var(--header-height) + 3rem);
  }

  .page-shortcuts {
    grid-template-columns: 1fr;
    gap: 0.2rem;
    padding-top: 0.45rem;
    padding-bottom: 0.35rem;
    overflow: hidden;
  }

  .page-shortcuts > span {
    font-size: 0.52rem;
  }

  .page-shortcuts > div {
    flex-wrap: nowrap;
    padding-bottom: 0.2rem;
    overflow-x: auto;
    mask-image: linear-gradient(to right, #000 0, #000 calc(100% - 1.5rem), transparent 100%);
    scroll-behavior: smooth;
    scrollbar-width: none;
  }

  .page-shortcuts > div::-webkit-scrollbar {
    display: none;
  }

  .page-shortcuts a {
    flex: 0 0 auto;
  }

  .practice-group-heading {
    grid-template-columns: 3.5rem minmax(0, 1fr);
  }

  .archive-card {
    grid-template-rows: 12rem auto;
  }

  .credential-card-link {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .arb-logo-compact {
    width: min(7.1rem, 82%);
  }

  .arb-credential a {
    align-items: center;
    flex-direction: row;
    gap: 0.7rem;
  }

  .about-profile-actions {
    gap: 0.7rem 1.1rem;
  }

  .arb-credential .arb-logo {
    width: 6.75rem;
  }
}

/* About hero: one quiet profile composition with secondary credentials. */
.about-hero {
  display: grid;
  grid-template-areas: none;
  grid-template-columns: minmax(15rem, 18rem) minmax(0, 43rem);
  gap: clamp(3.5rem, 6.5vw, 6rem);
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding-top: clamp(3.5rem, 6vw, 6.5rem);
  padding-bottom: clamp(3.5rem, 6vw, 6.5rem);
}

.about-copy {
  grid-column: 2;
  max-width: 48rem;
}

.about-intro h1 {
  max-width: 16ch;
  margin: 0;
  font-size: clamp(2.85rem, 4.1vw, 4.35rem);
  line-height: 1.02;
}

.about-biography {
  max-width: 43rem;
  margin-top: clamp(2rem, 3vw, 2.75rem);
  padding: 0;
  border: 0;
}

.about-biography > p:not(.section-index) {
  max-width: none;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  line-height: 1.6;
}

.about-biography > p:not(.section-index) + p {
  margin-top: 0.8rem;
}

.about-utilities {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.25rem;
  align-items: center;
  justify-content: flex-start;
  margin-top: clamp(2rem, 3vw, 2.75rem);
  padding: 0;
  border: 0;
}

.about-profile-actions {
  gap: 0.7rem 1.35rem;
  margin: 0;
}

.arb-credential {
  margin: 0;
}

.arb-credential a {
  gap: 0.65rem;
}

.arb-credential .arb-logo {
  width: 5.1rem;
}

.arb-credential span {
  max-width: 10rem;
  font-size: 0.56rem;
  text-decoration: none;
}

.about-portrait {
  grid-area: auto;
  grid-column: 1;
  grid-row: 1;
  width: min(18rem, 21vw);
  height: min(18rem, 21vw);
  min-width: 15rem;
  min-height: 15rem;
  align-self: center;
  justify-self: start;
  margin: 0;
}

@media (max-width: 800px) {
  .about-hero {
    grid-template-columns: minmax(11rem, 15rem) minmax(0, 1fr);
    gap: 2.5rem;
  }

  .about-portrait {
    width: min(15rem, 31vw);
    height: min(15rem, 31vw);
    min-width: 11rem;
    min-height: 11rem;
  }
}

@media (max-width: 620px) {
  .about-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2.75rem;
    padding-bottom: 3rem;
  }

  .about-copy {
    display: contents;
    grid-column: auto;
  }

  .about-intro {
    grid-area: auto;
    order: 1;
  }

  .about-portrait {
    order: 2;
    grid-column: auto;
    grid-row: auto;
    width: min(14rem, 62vw);
    height: min(14rem, 62vw);
    min-width: 0;
    min-height: 0;
    justify-self: start;
  }

  .about-biography {
    grid-area: auto;
    order: 3;
    margin-top: 0;
  }

  .about-utilities {
    grid-area: auto;
    order: 4;
    align-items: flex-start;
    flex-direction: column;
    gap: 1.35rem;
    margin-top: 0;
  }

  .about-intro h1 {
    max-width: 14ch;
    font-size: clamp(2.55rem, 12vw, 3.45rem);
  }
}

/* Project visual authorship remains legible without competing with captions. */
.project-hero-figure {
  min-width: 0;
  margin: 0;
}

.project-hero-figure > figcaption {
  display: flex;
  justify-content: flex-end;
  padding-top: 0.45rem;
}

.project-gallery-caption {
  display: block;
  color: var(--ink) !important;
}

.media-credit {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.45rem;
  margin-top: 0.3rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.52rem;
  font-weight: 400;
  line-height: 1.4;
}

.media-credit span {
  color: var(--accent) !important;
  text-transform: uppercase;
}

.project-hero-figure .media-credit {
  margin-top: 0;
}

/* Personal notes stay compact and editorial, secondary to the professional profile. */
.personal-section {
  margin: 0 var(--gutter) clamp(5rem, 8vw, 8rem);
  padding-top: clamp(1rem, 2vw, 2rem);
  scroll-margin-top: calc(var(--header-height) + 4.2rem);
}

.personal-section-heading {
  display: grid;
  grid-template-columns: minmax(9rem, 0.42fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.personal-section-heading > p {
  margin: 0 0 0.45rem;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.personal-section-heading h2 {
  max-width: none;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 3.5vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
}

.personal-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 5rem);
  padding-left: min(17.5rem, 20vw);
}

.personal-note {
  min-width: 0;
}

.personal-illustration {
  width: 100%;
  height: clamp(5.75rem, 8vw, 7.25rem);
  margin-bottom: 1.35rem;
}

.personal-illustration img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.personal-note-content {
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  gap: 0.75rem;
}

.personal-note-index {
  margin: 0.18rem 0 0;
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.58rem;
}

.personal-note h3 {
  margin: 0 0 0.8rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.personal-note p {
  max-width: 31rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.62;
}

.personal-note .text-link {
  color: var(--ink);
  white-space: nowrap;
}

@media (min-width: 1101px) {
  .personal-section {
    margin-right: var(--desktop-frame);
    margin-left: var(--desktop-frame);
  }
}

@media (max-width: 900px) {
  .personal-notes {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-left: min(11rem, 18vw);
  }
}

@media (max-width: 620px) {
  .personal-section-heading {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    margin-bottom: 2.5rem;
  }

  .personal-section-heading h2 {
    font-size: clamp(2.4rem, 11vw, 3.25rem);
  }

  .personal-notes {
    gap: 2.1rem;
    padding-left: 0;
  }

  .personal-note {
    max-width: 30rem;
  }

  .personal-note-content {
    grid-template-columns: 1.25rem minmax(0, 1fr);
    gap: 0.65rem;
  }

  .personal-illustration {
    height: 6.25rem;
    margin-bottom: 1rem;
  }
}
