
:root {
  --bg: #ffffff;
  --ink: #161616;
  --muted: #85817b;
  --line: rgba(22, 22, 22, 0.20);
  --sidebar-width: 205px;
  --tile-size: clamp(170px, 16vw, 238px);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 55% 48%, rgba(246, 246, 244, 0.94), rgba(255, 255, 255, 0) 43%),
    #ffffff;
  color: var(--ink);
  font-family: Garamond, "Adobe Garamond Pro", "EB Garamond", Georgia, serif;
  font-size: 17px;
  line-height: 1.25;
}

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

.site-shell {
  min-height: 100vh;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
  width: var(--sidebar-width);
  padding: 31px 22px 25px 31px;
  background: rgba(255, 255, 255, 0.67);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.artist-name-link {
  display: block;
  width: fit-content;
  font-size: 0.84rem;
  line-height: 1;
  letter-spacing: 0.075em;
  white-space: nowrap;
}

.artist-name-link:hover,
.artist-name-link:focus-visible {
  font-style: italic;
}

.info-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin-top: 24px;
}

.info-links a {
  font-size: 0.76rem;
  line-height: 1;
  letter-spacing: 0.045em;
}

.info-links a:hover,
.info-links a:focus-visible {
  font-style: italic;
}

.year-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 66px;
}

.year-link {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1;
  letter-spacing: 0.06em;
  transition: color 180ms ease, transform 180ms ease;
}

.year-link:hover,
.year-link:focus-visible,
.year-link.active {
  color: var(--ink);
}

.year-link.active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.year-link:hover {
  transform: translateX(3px);
}

.main {
  min-height: 100vh;
  margin-left: var(--sidebar-width);
}

/* HOME */
.home-view {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 34px;
}

.glass-stage {
  position: relative;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.43);
  box-shadow:
    0 18px 60px rgba(22,22,22,0.03),
    inset 0 0 48px rgba(255,255,255,0.96);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.home-grid {
  display: grid;
  grid-template-columns: repeat(3, var(--tile-size));
  gap: 6px;
}

.home-grid-second {
  margin-top: 6px;
}

.home-tile {
  position: relative;
  width: var(--tile-size);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(248,248,246,0.8);
}

.home-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.36), rgba(255,255,255,0.08) 45%, rgba(255,255,255,0.29)),
    rgba(255,255,255,0.11);
  opacity: 1;
  transition: opacity 280ms ease;
}

.home-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) saturate(0.72) brightness(1.08);
  opacity: 0.58;
  transform: scale(1.085);
  transition:
    filter 340ms ease,
    opacity 340ms ease,
    transform 340ms ease;
}

.home-tile span {
  position: absolute;
  z-index: 2;
  inset: auto 5px 4px 5px;
  padding: 2px 3px;
  background: rgba(255,255,255,0.78);
  color: rgba(22,22,22,0.82);
  font-size: 0.61rem;
  line-height: 1.05;
  opacity: 0;
  transition: opacity 220ms ease;
}

.home-tile:hover img,
.home-tile:focus-visible img {
  filter: blur(0) saturate(1) brightness(1);
  opacity: 1;
  transform: scale(1);
}

.home-tile:hover::after,
.home-tile:focus-visible::after {
  opacity: 0;
}

.home-tile:hover span,
.home-tile:focus-visible span {
  opacity: 1;
}

/* YEAR PAGES */
.year-page {
  padding: 31px clamp(28px, 5vw, 74px) 120px;
}


.year-works {
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 14px;
}

.year-work {
  padding: 56px 0 92px;
  border-bottom: 1px solid var(--line);
}

.year-image-frame {
  width: 100%;
  min-height: 520px;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f7f7f5;
}

.year-image-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 82vh;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transform: none;
}

.year-work-copy {
  padding-top: 16px;
}

.work-heading-line {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: baseline;
}

.work-heading-line h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.7vw, 3rem);
  line-height: 0.98;
  font-weight: 400;
}

.work-heading-line p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: right;
}

.interpretation {
  max-width: 660px;
  margin: 34px 0 0 auto;
}

.interpretation p {
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  line-height: 1.35;
}

/* INFORMATION PAGES */
.info-sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar-width);
  padding: 31px;
  background: rgba(255,255,255,0.70);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.info-sidebar .artist-link {
  display: block;
  margin-bottom: 28px;
  font-size: 0.84rem;
  letter-spacing: 0.075em;
}

.info-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.info-nav a.active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-page-shell {
  min-height: 100vh;
  margin-left: var(--sidebar-width);
  padding: 38px clamp(28px, 5vw, 74px) 90px;
}

.text-page {
  max-width: 980px;
}


.info-page-title {
  margin: 0 0 clamp(42px, 7vw, 82px);
  font-size: clamp(2rem, 4.2vw, 4.4rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: 0.075em;
}

.text-page h1 {
  margin: 0 0 clamp(48px, 8vw, 100px);
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: .9;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.statement {
  max-width: 740px;
  margin-left: min(14vw, 190px);
  font-size: clamp(1.3rem, 2.2vw, 2.2rem);
  line-height: 1.2;
}

.statement p {
  margin-top: 0;
  margin-bottom: 1.05em;
}

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

.cv-section {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 35px;
  padding: 24px 0 34px;
  border-bottom: 1px solid var(--line);
}

.cv-section h2 {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
}

.cv-item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 20px;
  margin-bottom: 9px;
}

.cv-item span {
  color: var(--muted);
}

.cv-item p {
  margin: 0;
}

.contact-lines {
  margin-top: 18vh;
}

.contact-lines a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  border-bottom: 1px solid currentColor;
  font-size: clamp(1.6rem, 4vw, 4.4rem);
  line-height: 1;
}

.thesis-intro {
  max-width: 760px;
  margin-left: min(12vw, 170px);
}

.thesis-intro h2 {
  margin: 0 0 18px;
  font-size: clamp(1.9rem, 4vw, 4.3rem);
  line-height: 0.98;
  font-weight: 400;
}

.thesis-intro p {
  max-width: 620px;
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
}

.thesis-sections {
  margin-top: 80px;
  border-top: 1px solid var(--line);
}

.thesis-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 35px;
  padding: 22px 0 30px;
  border-bottom: 1px solid var(--line);
}

.thesis-row span {
  color: var(--muted);
  font-size: 0.8rem;
}

.thesis-row p {
  margin: 0;
}

.small-note {
  margin-top: 45px;
  color: var(--muted);
  font-size: 0.8rem;
}

@media (max-width: 1100px) {
  :root {
    --tile-size: clamp(130px, 18vw, 185px);
  }
}

@media (max-width: 760px) {
  :root {
    --sidebar-width: 0px;
    --tile-size: clamp(94px, 29vw, 132px);
  }

  .sidebar {
    position: static;
    width: 100%;
    padding: 18px;
    border-bottom: 1px solid rgba(22,22,22,0.12);
  }

  .artist-name-link {
    font-size: 0.78rem;
  }

  .info-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 7px 15px;
    margin-top: 18px;
  }

  .year-nav {
    flex-direction: row;
    gap: 18px;
    margin-top: 22px;
  }

  .main {
    margin-left: 0;
  }

  .home-view {
    min-height: calc(100vh - 145px);
    padding: 20px 8px 34px;
  }

  .glass-stage {
    max-width: calc(100vw - 16px);
    padding: 24px 8px 20px;
  }

  .home-grid {
    gap: 4px;
  }

  .home-grid-second {
    margin-top: 4px;
  }

  .year-page {
    padding: 28px 18px 80px;
  }


  .year-image-frame {
    min-height: 280px;
  }

  .work-heading-line {
    display: block;
  }

  .work-heading-line p {
    margin-top: 6px;
    text-align: left;
  }

  .interpretation {
    margin-left: 0;
  }

  .info-sidebar {
    position: static;
    width: 100%;
    padding: 18px;
    border-bottom: 1px solid rgba(22,22,22,0.12);
  }

  .info-sidebar .artist-link {
    margin-bottom: 18px;
  }

  .info-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .text-page-shell {
    margin-left: 0;
    padding: 28px 18px 70px;
  }

  .statement,
  .thesis-intro {
    margin-left: 0;
  }

  .cv-section,
  .thesis-row {
    grid-template-columns: 1fr;
    gap: 13px;
  }
}

.interpretation p + p { margin-top: 1em; }


/* V11: homepage image positioning */
.home-tile--contain {
  background: rgba(250, 250, 248, 0.96);
}

.home-tile--contain img {
  object-fit: contain;
  object-position: center;
}

.home-tile--still img {
  transform: scale(0.90);
}

.home-tile--still:hover img,
.home-tile--still:focus-visible img {
  transform: scale(0.94);
}

.home-tile--fragile img {
  transform: scale(0.80);
}

.home-tile--fragile:hover img,
.home-tile--fragile:focus-visible img {
  transform: scale(0.84);
}

/* V11: image-led year pages */
.year-works {
  max-width: 1180px;
}

.year-work {
  padding: 54px 0 88px;
}

.portfolio-layout figure {
  margin: 0;
  overflow: hidden;
  background: #f7f7f5;
}

.portfolio-layout img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transform: none;
}

.gallery-single figure {
  min-height: 520px;
  display: grid;
  place-items: center;
}

.gallery-single img {
  max-height: 84vh;
}

.gallery-single--contained figure {
  padding: clamp(20px, 4vw, 54px);
}

.gallery-still,
.gallery-keyless,
.gallery-drifting {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 10px;
  align-items: stretch;
}

.gallery-still .gallery-main img,
.gallery-keyless .gallery-main img,
.gallery-drifting .gallery-main img {
  min-height: 720px;
  object-fit: contain;
}

.gallery-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gallery-still .gallery-details figure:first-child,
.gallery-drifting .gallery-details figure:last-child {
  grid-column: 1 / -1;
}

.gallery-keyless .gallery-details figure:last-child {
  grid-column: 1 / -1;
}

.gallery-details img {
  min-height: 220px;
  object-fit: cover;
}

.gallery-saltscript {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(180px, 0.7fr));
  gap: 10px;
  align-items: stretch;
}

.gallery-saltscript .gallery-main img {
  min-height: 590px;
  object-fit: contain;
}

.gallery-saltscript figure:not(.gallery-main) img {
  min-height: 590px;
  object-fit: contain;
  background: #fff;
}

.gallery-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.gallery-pair img {
  min-height: 500px;
  object-fit: contain;
}

.minimal-caption {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 28px;
  padding-top: 13px;
}

.minimal-caption h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 2.8rem);
  line-height: 1;
  font-weight: 400;
}

.minimal-caption p {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: right;
}

/* V11: text-only 2026 concepts */
.concept-page {
  padding: 30px clamp(28px, 5vw, 74px) 110px;
}

.concept-list {
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.concept-item {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(34px, 7vw, 110px);
  padding: clamp(46px, 7vw, 88px) 0;
  border-bottom: 1px solid var(--line);
}

.concept-heading h2 {
  margin: 0 0 11px;
  font-size: clamp(2rem, 4.2vw, 4.6rem);
  line-height: 0.95;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.concept-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.concept-text {
  max-width: 610px;
  margin: 0;
  align-self: end;
  font-size: clamp(1.08rem, 1.65vw, 1.45rem);
  line-height: 1.42;
}

/* V11: lighter CV / Biographie / Thesis typography */
.info-page-title {
  font-weight: normal !important;
  letter-spacing: 0.14em !important;
}

.statement,
.statement p,
.cv,
.cv p,
.cv span {
  font-weight: normal !important;
}

.statement {
  letter-spacing: 0.025em;
  line-height: 1.36;
}

@media (max-width: 900px) {
  .gallery-still,
  .gallery-keyless,
  .gallery-drifting,
  .gallery-saltscript {
    grid-template-columns: 1fr;
  }

  .gallery-still .gallery-main img,
  .gallery-keyless .gallery-main img,
  .gallery-drifting .gallery-main img,
  .gallery-saltscript .gallery-main img,
  .gallery-saltscript figure:not(.gallery-main) img {
    min-height: 0;
    max-height: none;
  }

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

  .gallery-saltscript .gallery-main {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .gallery-details,
  .gallery-pair,
  .gallery-saltscript {
    grid-template-columns: 1fr;
  }

  .gallery-still .gallery-details figure:first-child,
  .gallery-drifting .gallery-details figure:last-child,
  .gallery-keyless .gallery-details figure:last-child,
  .gallery-saltscript .gallery-main {
    grid-column: auto;
  }

  .gallery-details img,
  .gallery-pair img,
  .gallery-single figure {
    min-height: 0;
  }

  .minimal-caption {
    display: block;
  }

  .minimal-caption p {
    margin-top: 7px;
    text-align: left;
  }

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


/* V12 — vertical image rhythm */
.vertical-gallery {
  display: flex;
  flex-direction: column;
  gap: clamp(72px, 9vw, 122px);
}

.large-image-box {
  width: 100%;
  min-height: 560px;
  margin: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f7f7f5;
}

.large-image-box img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 86vh;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transform: none;
}

.large-image-box--paper {
  padding: clamp(40px, 7vw, 96px);
  background: #ffffff;
}

.large-image-box--contained {
  padding: clamp(28px, 6vw, 80px);
}

/* Keyless Entry: distant wall view + three equal square details underneath */
.keyless-layout {
  display: flex;
  flex-direction: column;
  gap: clamp(58px, 8vw, 100px);
}

.keyless-overview {
  width: 100%;
  min-height: 620px;
  margin: 0;
  display: grid;
  place-items: center;
  padding: clamp(22px, 5vw, 64px);
  background: #f7f7f5;
}

.keyless-overview img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 82vh;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transform: none;
}

.square-detail-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 54px);
}

.square-detail-row figure {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  background: #f7f7f5;
}

.square-detail-row img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  opacity: 1;
  transform: none;
}

/* V12 — detailed 2026 project information */
.concept-item--detailed {
  align-items: start;
}

.concept-information dl {
  margin: 0;
}

.concept-information dl > div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 24px;
  padding: 14px 0;
  border-top: 1px solid rgba(22, 22, 22, 0.14);
}

.concept-information dl > div:last-child {
  border-bottom: 1px solid rgba(22, 22, 22, 0.14);
}

.concept-information dt {
  color: var(--muted);
  font-size: 0.73rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.concept-information dd {
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.4;
}

@media (max-width: 760px) {
  .vertical-gallery {
    gap: 54px;
  }

  .large-image-box,
  .keyless-overview {
    min-height: 0;
  }

  .square-detail-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .concept-information dl > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }
}


/* V13 — square detail grids and image order */
.detail-grid {
  display: grid;
  gap: clamp(22px, 3.5vw, 48px);
}

.detail-grid--five,
.detail-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-grid figure {
  width: min(100%, 260px);
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  background: #f7f7f5;
  justify-self: center;
}

.detail-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  opacity: 1;
  transform: none;
}

.large-work-image {
  width: 100%;
  min-height: 560px;
  margin: clamp(72px, 9vw, 120px) 0 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f7f7f5;
}

.large-work-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 86vh;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transform: none;
}

#drifting-dwelling .large-work-image {
  margin-top: 0;
}

#drifting-dwelling .detail-grid {
  margin-top: clamp(58px, 8vw, 100px);
}

@media (max-width: 760px) {
  .detail-grid--five,
  .detail-grid--three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-grid figure {
    width: 100%;
  }

  .large-work-image {
    min-height: 0;
  }
}

@media (max-width: 460px) {
  .detail-grid--five,
  .detail-grid--three {
    grid-template-columns: 1fr;
  }
}


/* V14 — controlled space between detail grids and large images */
#still-here .large-work-image,
#drifting-dwelling .large-work-image {
  margin-top: clamp(76px, 8vw, 112px);
}

#drifting-dwelling .detail-grid {
  margin-top: 0;
}

/* V14 — Biography trajectory */
.biography-page {
  max-width: 1120px;
}

.biography-trajectory {
  width: 100%;
  margin: 0 0 clamp(50px, 7vw, 90px);
  padding: clamp(16px, 3vw, 34px);
  background: #ffffff;
}

.biography-trajectory img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.journey-list {
  width: 100%;
  margin-bottom: clamp(78px, 10vw, 136px);
  border-top: 1px solid var(--line);
}

.journey-entry {
  display: grid;
  grid-template-columns: 160px 110px minmax(0, 1fr);
  gap: clamp(20px, 4vw, 58px);
  padding: 24px 0 30px;
  border-bottom: 1px solid var(--line);
}

.journey-entry p {
  margin: 0;
  font-weight: normal;
}

.journey-place {
  font-size: 0.88rem;
  letter-spacing: 0.075em;
}

.journey-age {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.journey-description {
  max-width: 650px;
  font-size: clamp(1.05rem, 1.55vw, 1.34rem);
  line-height: 1.4;
  letter-spacing: 0.018em;
}

.biography-statement {
  margin-left: min(11vw, 150px);
  letter-spacing: 0.025em;
  font-weight: normal;
}

.biography-statement p {
  font-weight: normal;
}

@media (max-width: 760px) {
  .journey-entry {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .biography-statement {
    margin-left: 0;
  }

  #still-here .large-work-image,
  #drifting-dwelling .large-work-image {
    margin-top: 60px;
  }
}


/* V16 — align biography practice text with the journey descriptions */
.biography-statement {
  width: 100%;
  max-width: none;
  margin-left: 0;
  display: grid;
  grid-template-columns: 160px 110px minmax(0, 1fr);
  column-gap: clamp(20px, 4vw, 58px);
  letter-spacing: 0.025em;
}

.biography-statement p {
  grid-column: 3;
  max-width: 650px;
  margin-top: 0;
  font-weight: normal;
}

@media (max-width: 760px) {
  .biography-statement {
    display: block;
  }

  .biography-statement p {
    max-width: none;
  }
}

/* V16 — thesis page */
.thesis-summary {
  max-width: 760px;
  margin-left: min(12vw, 170px);
}

.thesis-summary h2 {
  margin: 0 0 18px;
  font-size: clamp(1.9rem, 4vw, 4.3rem);
  line-height: 0.98;
  font-weight: 400;
}

.thesis-summary > p {
  max-width: 680px;
  margin: 0 0 1.1em;
  font-size: clamp(1.08rem, 1.7vw, 1.42rem);
  line-height: 1.42;
  font-weight: normal;
}

.thesis-meta {
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

.thesis-meta-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 28px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.thesis-meta-row span {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.thesis-meta-row p {
  margin: 0;
  font-weight: normal;
}

.thesis-chapters {
  margin-top: clamp(70px, 10vw, 130px);
  border-top: 1px solid var(--line);
}

.thesis-chapter {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: clamp(32px, 6vw, 90px);
  padding: clamp(34px, 5vw, 62px) 0;
  border-bottom: 1px solid var(--line);
}

.thesis-chapter-number {
  color: var(--muted);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.thesis-chapter h3 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 2.8vw, 3rem);
  line-height: 1;
  font-weight: 400;
}

.thesis-chapter p {
  max-width: 670px;
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.42;
  font-weight: normal;
}

.thesis-download {
  margin-top: clamp(60px, 8vw, 100px);
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.thesis-download a {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  font-size: clamp(1.3rem, 2.4vw, 2.4rem);
  line-height: 1.1;
}

@media (max-width: 760px) {
  .thesis-summary {
    margin-left: 0;
  }

  .thesis-meta-row,
  .thesis-chapter {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}


/* V17 — compact 19 cm-inspired square details */
.detail-grid--compact {
  justify-content: start;
}

.detail-grid--compact.detail-grid--five,
.detail-grid--compact.detail-grid--three {
  grid-template-columns: repeat(3, 190px);
}

.detail-grid--compact figure {
  width: 190px;
  height: 190px;
  aspect-ratio: 1 / 1;
  justify-self: start;
}

#still-here .large-work-image--first {
  margin-top: 0;
  margin-bottom: clamp(72px, 8vw, 108px);
}

#still-here .detail-grid--compact {
  margin-top: 0;
}

#drifting-dwelling .detail-grid--compact {
  margin-top: 0;
}

#drifting-dwelling .large-work-image {
  margin-top: clamp(72px, 8vw, 108px);
}

/* Two Keyless Entry details centred below the overview */
#keyless-entry .square-detail-row {
  grid-template-columns: repeat(2, 190px);
  justify-content: center;
  gap: clamp(28px, 5vw, 64px);
}

#keyless-entry .square-detail-row figure {
  width: 190px;
  height: 190px;
}

/* Biography practice text begins at the same left edge as country/city names */
.biography-statement {
  display: block;
  width: 100%;
  max-width: 650px;
  margin-left: 0;
}

.biography-statement p {
  max-width: 650px;
  margin-left: 0;
}

@media (max-width: 760px) {
  .detail-grid--compact.detail-grid--five,
  .detail-grid--compact.detail-grid--three {
    grid-template-columns: repeat(2, minmax(0, 190px));
  }

  #keyless-entry .square-detail-row {
    grid-template-columns: repeat(2, minmax(0, 160px));
  }

  #keyless-entry .square-detail-row figure {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 460px) {
  .detail-grid--compact.detail-grid--five,
  .detail-grid--compact.detail-grid--three,
  #keyless-entry .square-detail-row {
    grid-template-columns: 1fr;
  }

  .detail-grid--compact figure {
    width: 100%;
    height: auto;
  }
}


/* V18 — concise work descriptions */
.work-description {
  max-width: 660px;
  margin: 26px 0 0 auto;
}

.work-description p {
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.42;
  font-weight: normal;
  letter-spacing: 0.012em;
}

@media (max-width: 760px) {
  .work-description {
    margin-left: 0;
  }
}


/* V20 — Keyless Entry spacing */
#keyless-entry .keyless-layout {
  gap: clamp(30px, 4vw, 52px);
}

#keyless-entry .minimal-caption {
  margin-top: clamp(54px, 6vw, 82px);
}

@media (max-width: 760px) {
  #keyless-entry .keyless-layout {
    gap: 28px;
  }

  #keyless-entry .minimal-caption {
    margin-top: 44px;
  }
}


/* V21 — consistent spacing between artwork images and captions */
.year-work .minimal-caption {
  margin-top: clamp(40px, 4.5vw, 64px);
  padding-top: 0;
}

/* Keyless Entry follows the same caption rhythm as every other work */
#keyless-entry .minimal-caption {
  margin-top: clamp(40px, 4.5vw, 64px);
}

@media (max-width: 760px) {
  .year-work .minimal-caption,
  #keyless-entry .minimal-caption {
    margin-top: 32px;
  }
}


/* V22 — Saltscript paired details */
#saltscript .saltscript-gallery {
  gap: clamp(68px, 8vw, 104px);
}

.saltscript-detail-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 58px);
  align-items: stretch;
}

.saltscript-detail-card {
  min-width: 0;
  min-height: 520px;
  margin: 0;
  padding: clamp(28px, 4.5vw, 62px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #ffffff;
}

.saltscript-detail-card img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 72vh;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

/* Whisper on the Mirror: slightly more air before the title */
#whisper-on-the-mirror .minimal-caption {
  margin-top: clamp(58px, 6vw, 84px);
}

@media (max-width: 760px) {
  .saltscript-detail-pair {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .saltscript-detail-card {
    min-height: 0;
  }

  #whisper-on-the-mirror .minimal-caption {
    margin-top: 44px;
  }
}


/* V23 — scroll focus: current image stays sharp, passed images soften */
.scroll-focus-item {
  transition:
    filter 620ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: filter, opacity, transform;
}

.scroll-focus-item.is-current {
  filter: blur(0);
  opacity: 1;
  transform: translateZ(0) scale(1);
}

.scroll-focus-item.is-past {
  filter: blur(4px);
  opacity: 0.58;
  transform: translateZ(0) scale(0.992);
}

.scroll-focus-item.is-upcoming {
  filter: blur(0);
  opacity: 0.94;
  transform: translateZ(0) scale(0.997);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-focus-item {
    transition: none;
  }
}

@media (max-width: 760px) {
  .scroll-focus-item.is-past {
    filter: blur(3px);
    opacity: 0.64;
  }
}


/* V26 — Contact details */
.contact-details {
  width: 100%;
  max-width: 720px;
  margin-top: clamp(54px, 8vw, 100px);
  border-top: 1px solid var(--line);
}

.contact-row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  padding: 20px 0 24px;
  border-bottom: 1px solid var(--line);
}

.contact-row span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-row a {
  font-size: clamp(1.15rem, 2vw, 1.8rem);
  line-height: 1.2;
  text-decoration: none;
}

.contact-row a:hover,
.contact-row a:focus-visible {
  opacity: 0.58;
}

@media (max-width: 620px) {
  .contact-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-row a {
    overflow-wrap: anywhere;
  }
}
