:root {
  --paper: #ffffff;
  --ink: #4b4945;
  --ink-soft: #77736d;
  --ink-faint: #a39f98;
  --line: #e8e6e2;
  --line-soft: #f1f0ed;
  --beige: #d5c2a1;
  --header-height: 86px;
  --page-pad: clamp(24px, 5vw, 80px);
  --content: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Noto Sans KR", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: -0.015em;
  text-rendering: optimizeLegibility;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

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

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

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

button {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
}

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

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--paper);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.site-loader img {
  width: min(42vw, 420px);
  opacity: 0.58;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 0 var(--page-pad);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}

.site-header::after {
  content: "";
  position: absolute;
  left: var(--page-pad);
  bottom: -1px;
  width: 86px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--beige), transparent);
}

.brand {
  display: inline-flex;
  width: 88px;
  align-items: center;
}

.brand img {
  width: 100%;
  opacity: 0.64;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 2.7vw, 48px);
}

.primary-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -11px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--beige), transparent);
  transition: left 0.25s ease, right 0.25s ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  left: 0;
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.language-control {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
}

.language-control select {
  width: 108px;
  height: 32px;
  display: block;
  margin: 0;
  padding-block: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 300;
  line-height: 32px;
  vertical-align: middle;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--ink-soft);
  transition: transform 0.25s ease;
}

.site-footer {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 0 var(--page-pad);
  border-top: 1px solid var(--line);
  color: var(--ink-faint);
  font-size: 12px;
}

.site-footer img {
  width: 84px;
  opacity: 0.42;
}

.page-shell {
  width: min(100%, var(--content));
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

.page-hero {
  min-height: 440px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(48px, 8vw, 140px);
  align-items: end;
  padding-top: clamp(90px, 12vw, 180px);
  padding-bottom: clamp(70px, 9vw, 130px);
  border-bottom: 1px solid var(--line);
}

.page-hero.single {
  grid-template-columns: minmax(0, 920px);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--ink-faint);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  margin: 0 12px 4px 0;
  background: linear-gradient(90deg, transparent, var(--beige));
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-weight: 200;
  line-height: 1.28;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 960px;
  margin-bottom: 28px;
  font-size: clamp(38px, 6vw, 82px);
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(28px, 4vw, 52px);
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(20px, 2.4vw, 30px);
}

.lead {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 300;
  line-height: 1.75;
}

.hero-meta {
  display: grid;
  gap: 12px;
  align-self: end;
  color: var(--ink-soft);
  font-size: 13px;
}

.hero-meta span {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.section {
  padding-top: clamp(80px, 10vw, 150px);
  padding-bottom: clamp(80px, 10vw, 150px);
}

.section + .section {
  border-top: 1px solid var(--line-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 60px;
  align-items: end;
  margin-bottom: clamp(50px, 7vw, 100px);
}

.section-heading p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.home-main {
  height: calc(100svh - var(--header-height));
  min-height: 540px;
}

.video-hero {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #e9e8e5;
}

.video-hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.video-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(71, 69, 65, 0.03) 42%, rgba(71, 69, 65, 0.42) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent 45%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  z-index: 2;
  left: var(--page-pad);
  right: var(--page-pad);
  bottom: clamp(34px, 6vh, 76px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  color: #f7f7f5;
}

.hero-overlay .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.hero-overlay h1 {
  max-width: 950px;
  margin-bottom: 12px;
  color: #f7f7f5;
  font-size: clamp(36px, 5.8vw, 80px);
  text-shadow: 0 1px 18px rgba(70, 68, 63, 0.22);
}

.hero-overlay p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.sound-toggle,
.hero-fullscreen,
.video-play {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(10px);
}

.sound-toggle:hover,
.sound-toggle:focus-visible,
.hero-fullscreen:hover,
.hero-fullscreen:focus-visible {
  background: rgba(31, 30, 28, 0.34);
  transform: scale(1.04);
}

.sound-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sound-toggle .sound-off,
.sound-toggle.is-muted .sound-on {
  display: none;
}

.sound-toggle.is-muted .sound-off {
  display: block;
}

.video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}

.video-paused .video-play {
  opacity: 1;
  pointer-events: auto;
}

.exhibition-index {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 3vw, 50px);
}

.exhibition-card {
  min-width: 0;
}

.exhibition-card-image {
  display: block;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #fafaf8;
  border: 1px solid var(--line-soft);
}

.exhibition-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.exhibition-card.is-portrait .exhibition-card-image img {
  object-fit: contain;
  object-position: center top;
}

.exhibition-card:hover .exhibition-card-image img {
  transform: scale(1.015);
}

.exhibition-number {
  position: absolute;
  top: 18px;
  left: 18px;
  min-width: 42px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-soft);
  font-size: 11px;
  text-align: center;
}

.exhibition-card time,
.exhibition-card small {
  display: block;
  margin-top: 26px;
  color: var(--ink-faint);
  font-size: 12px;
}

.exhibition-card h2 {
  min-height: 2.6em;
  margin: 14px 0 18px;
  font-size: clamp(23px, 2.2vw, 34px);
}

.exhibition-card p {
  color: var(--ink-soft);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
}

.text-link::after {
  content: "↗";
  color: var(--ink-faint);
}

.early-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 60px);
}

.performance-work-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.performance-work-grid.is-single {
  width: min(100%, 460px);
  grid-template-columns: minmax(0, 1fr);
}

.work-group-separated {
  margin-top: clamp(72px, 9vw, 128px);
  padding-top: clamp(52px, 7vw, 92px);
  border-top: 1px solid var(--line-soft);
}

.early-work {
  min-width: 0;
}

.early-work button {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fbfbfa;
  border: 1px solid var(--line-soft);
}

.early-work img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.early-work figcaption {
  padding-top: 22px;
}

.early-work strong,
.early-work small {
  display: block;
}

.early-work strong {
  font-size: 15px;
  font-weight: 300;
}

.early-work small {
  margin-top: 7px;
  color: var(--ink-faint);
  font-size: 12px;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(35px, 5vw, 76px) clamp(22px, 3vw, 46px);
}

.work-card {
  min-width: 0;
  text-align: left;
}

.work-card-image {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  background: #fbfbfa;
  border: 1px solid var(--line-soft);
}

.work-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.work-card:hover .work-card-image img {
  transform: scale(1.018);
}

.work-card-copy {
  display: grid;
  gap: 5px;
  padding-top: 18px;
}

.work-card-copy strong {
  font-size: 13px;
  font-weight: 300;
}

.work-card-copy span {
  color: var(--ink-soft);
  font-size: 16px;
}

.work-card-copy small {
  color: var(--ink-faint);
  font-size: 11px;
}

.exhibition-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: start;
}

.exhibition-lead-copy {
  max-width: 740px;
}

.exhibition-lead-copy p {
  color: var(--ink-soft);
  font-size: 17px;
}

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

.exhibition-facts div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
}

.exhibition-facts span:first-child {
  color: var(--ink-faint);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 60px);
}

.video-grid.is-single {
  grid-template-columns: minmax(0, 980px);
}

.video-frame {
  margin: 0;
}

.video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #ecebe8;
}

.captioned-video[data-caption-id="bussot-archive"],
.captioned-video[data-caption-id="bussot-archive"] video {
  background: #050505;
}

.captioned-video[data-caption-id="bussot-archive"] video {
  object-fit: contain;
}

.video-frame figcaption {
  padding-top: 14px;
  color: var(--ink-soft);
  font-size: 13px;
}

.video-frame figcaption .track-credit {
  display: block;
  margin-top: 7px;
  color: var(--ink-faint);
  font-size: 11px;
  line-height: 1.55;
}

.record-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 62px) clamp(22px, 3vw, 42px);
}

.record-card {
  margin: 0;
}

.record-card button {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f8f8f6;
}

.record-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.record-card figcaption {
  padding-top: 14px;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.65;
}

.portrait-grid {
  display: grid;
  gap: 90px;
}

.portrait-work {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
  padding-top: 70px;
  border-top: 1px solid var(--line);
}

.portrait-work > button {
  width: 100%;
  min-height: 420px;
  display: grid;
  place-items: start center;
  background: #fbfbfa;
}

.portrait-work > button img {
  width: 100%;
  height: auto;
  max-height: 620px;
  object-fit: contain;
  object-position: center top;
}

.portrait-copy p {
  color: var(--ink-soft);
  font-size: 13px;
}

.portrait-copy video {
  width: 100%;
  margin-top: 24px;
  aspect-ratio: 16 / 9;
  background: #ecebe8;
}

.story-flow {
  display: grid;
  gap: clamp(100px, 14vw, 210px);
}

.story-chapter {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: center;
}

.story-chapter:nth-child(even) .story-visual {
  order: 2;
}

.story-visual {
  min-height: 480px;
  display: grid;
  place-items: center;
  background: #fbfbfa;
  border: 1px solid var(--line-soft);
}

.story-visual img {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
}

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

.story-copy p {
  color: var(--ink-soft);
  font-size: 17px;
}

.current-layout {
  display: grid;
  grid-template-columns: minmax(260px, 420px) minmax(0, 1fr);
  gap: clamp(60px, 10vw, 160px);
  align-items: start;
}

.current-poster {
  border: 1px solid var(--line-soft);
}

.current-poster img {
  width: 100%;
  height: auto;
}

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

.current-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 45px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.current-details h3 {
  font-size: 19px;
}

.current-details p {
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 14px;
}

.current-venue-contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px 42px;
  margin-top: 34px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.current-venue-contact p {
  margin: 0 0 5px;
  color: var(--ink-faint);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.current-venue-contact address,
.current-venue-contact a {
  color: var(--ink-soft);
  font-size: 14px;
  font-style: normal;
}

.current-venue-contact a {
  display: inline-block;
  border-bottom: 1px solid rgba(120, 114, 105, 0.24);
}

.external-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 44px;
}

.external-links a {
  padding: 11px 17px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
}

.artist-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(50px, 10vw, 170px);
}

.artist-mark {
  width: min(280px, 80%);
  opacity: 0.42;
}

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

.artist-copy > p {
  color: var(--ink-soft);
  font-size: 18px;
}

.history {
  margin-top: 70px;
  border-top: 1px solid var(--line);
}

.history [data-history] > div {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
}

.history [data-history] time {
  color: var(--ink-faint);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(60px, 10vw, 160px);
}

.contact-aside {
  color: var(--ink-soft);
}

.contact-email {
  display: inline-block;
  margin-top: 20px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 24px;
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 12px;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  padding: 10px 0 13px;
  font-size: 15px;
  font-weight: 300;
  transition: border-color 0.2s ease;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--ink-faint);
}

.submit-button {
  justify-self: start;
  min-width: 150px;
  padding: 12px 18px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
}

.privacy-note {
  margin: 0;
  align-self: center;
  color: var(--ink-faint);
  font-size: 11px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

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

.map-frame {
  width: 100%;
  height: min(66vh, 640px);
  border: 1px solid var(--line);
  filter: grayscale(1) contrast(0.88);
}

.thanks-page {
  min-height: calc(100svh - var(--header-height));
  display: grid;
  place-items: center;
  padding: var(--page-pad);
  text-align: center;
}

.thanks-page img {
  width: 150px;
  margin: 0 auto 50px;
  opacity: 0.42;
}

.thanks-page p {
  color: var(--ink-soft);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: clamp(20px, 4vw, 60px);
  background: rgba(247, 247, 245, 0.97);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  width: min(100%, 1200px);
  height: min(82vh, 900px);
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
  place-items: center;
}

.lightbox figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox figcaption {
  color: var(--ink-soft);
  font-size: 13px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 28px;
  width: 44px;
  height: 44px;
  color: var(--ink-soft);
  font-size: 30px;
  font-weight: 200;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  color: var(--ink-soft);
  font-size: 22px;
}

.lightbox-arrow.is-prev {
  left: 18px;
}

.lightbox-arrow.is-next {
  right: 18px;
}

@media (forced-colors: active) {
  .has-art-cursor body,
  .has-art-cursor a,
  .has-art-cursor button,
  .has-art-cursor video {
    cursor: auto !important;
  }
}

@media (max-width: 1060px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    grid-template-columns: 110px 1fr auto;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    padding: 50px var(--page-pad);
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }

  .menu-open .primary-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--line-soft);
    font-size: 19px;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-open .menu-toggle > span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle > span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .page-hero,
  .section-heading,
  .exhibition-lead,
  .story-chapter,
  .current-layout,
  .artist-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .story-chapter:nth-child(even) .story-visual {
    order: 0;
  }

  .exhibition-index {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 720px) {
  :root {
    --page-pad: 20px;
  }

  .site-header {
    grid-template-columns: 88px 1fr auto;
    gap: 10px;
  }

  .brand {
    width: 72px;
  }

  .language-control select {
    width: 86px;
    font-size: 11px;
  }

  .site-footer {
    min-height: 140px;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    text-align: center;
  }

  .home-main {
    min-height: 520px;
  }

  .video-hero video {
    object-position: 52% center;
  }

  .hero-overlay {
    align-items: flex-end;
  }

  .hero-overlay h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .hero-overlay .hero-copy {
    max-width: calc(100% - 70px);
  }

  .page-hero {
    min-height: 390px;
    padding-top: 80px;
    padding-bottom: 65px;
  }

  h1 {
    font-size: clamp(36px, 12vw, 56px);
  }

  .exhibition-index,
  .early-grid,
  .works-grid,
  .record-grid,
  .video-grid,
  .current-details,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .exhibition-card h2 {
    min-height: 0;
  }

  .portrait-work {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .portrait-work > button {
    min-height: 360px;
  }

  .story-visual {
    min-height: 360px;
  }

  .contact-form .full {
    grid-column: auto;
  }

  .privacy-note {
    padding-top: 8px;
  }

  .lightbox-arrow {
    top: auto;
    bottom: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* v6.0 — compact translucent navigation and content-first pages */
:root {
  --header-height: 68px;
  --header-compact-height: 40px;
}

.site-loader img {
  width: min(32vw, 190px);
  height: auto;
  opacity: 0.46;
  image-rendering: auto;
}

.site-header {
  --accent-x: 50vw;
  height: var(--header-height);
  grid-template-columns: 124px 1fr auto;
  gap: clamp(22px, 3vw, 44px);
  background: rgba(255, 255, 255, 0.58);
  border-bottom-color: rgba(232, 230, 226, 0.64);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  backdrop-filter: blur(24px) saturate(145%);
  transition:
    height 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  height: var(--header-compact-height);
  background: rgba(255, 255, 255, 0.76);
  border-bottom-color: rgba(226, 224, 220, 0.74);
  box-shadow: 0 8px 28px rgba(68, 66, 62, 0.045);
}

.site-header::after {
  left: var(--accent-x);
  width: 148px;
  opacity: 0.62;
  transform: translateX(-50%);
  pointer-events: none;
}

.brand {
  width: 118px;
  height: 34px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.brand-wordmark {
  display: block;
  width: 148px;
  color: rgba(77, 74, 69, 0.72);
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-stretch: condensed;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0.035em;
  white-space: nowrap;
  transform: scaleX(0.78);
  transform-origin: left center;
}

.primary-nav {
  gap: clamp(18px, 2.2vw, 38px);
}

.primary-nav-main {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 38px);
}

.primary-nav-utility {
  display: none;
}

.primary-nav a {
  font-size: 12px;
  letter-spacing: 0.025em;
}

.header-route-actions {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-inline-start: 15px;
  border-inline-start: 1px solid rgba(105, 100, 92, 0.16);
}

.header-current-link,
.header-contact-link {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-size: 11.5px;
  font-weight: 430;
  line-height: 1;
  letter-spacing: 0.018em;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.header-current-link {
  color: rgba(74, 70, 64, 0.82);
}

.header-current-link:hover,
.header-current-link[aria-current="page"] {
  color: var(--ink);
}

.header-contact-link {
  padding: 0 13px;
  border: 1px solid rgba(89, 84, 77, 0.25);
  border-radius: 999px;
  color: rgba(67, 63, 57, 0.88);
  background: rgba(255, 255, 255, 0.2);
}

.header-contact-link:hover,
.header-contact-link[aria-current="page"] {
  border-color: rgba(77, 72, 66, 0.5);
  background: rgba(255, 255, 255, 0.58);
  transform: translateY(-1px);
}

.language-control select {
  width: 132px;
}

.section-first {
  padding-top: clamp(64px, 8vw, 112px);
}

.section-first.exhibition-index {
  padding-top: clamp(58px, 7vw, 96px);
}

.exhibition-lead h1,
.current-copy h1,
.artist-heading h1,
.contact-aside h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(34px, 4.5vw, 62px);
}

.exhibition-lead-copy .lead {
  margin-bottom: 34px;
}

.home-main {
  height: calc(100svh - var(--header-height));
}

.hero-controls {
  position: absolute;
  z-index: 7;
  right: var(--page-pad);
  bottom: clamp(22px, 3.6vh, 42px);
  left: var(--page-pad);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(14px, 2vw, 24px);
  align-items: center;
  pointer-events: none;
}

.hero-progress,
.hero-control-actions {
  pointer-events: auto;
}

.hero-progress {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-width: 0;
  direction: ltr;
}

.hero-progress input[type="range"] {
  --seek-progress: 0%;
  width: 100%;
  height: 22px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.hero-progress input[type="range"]:disabled {
  cursor: wait;
  opacity: 0.55;
}

.hero-progress input[type="range"]::-webkit-slider-runnable-track {
  height: 3px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.94) 0 var(--seek-progress),
      rgba(255, 255, 255, 0.34) var(--seek-progress) 100%
    );
  box-shadow: 0 1px 8px rgba(20, 20, 20, 0.28);
}

.hero-progress input[type="range"]::-moz-range-track {
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 1px 8px rgba(20, 20, 20, 0.28);
}

.hero-progress input[type="range"]::-moz-range-progress {
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
}

.hero-progress input[type="range"]::-webkit-slider-thumb {
  width: 13px;
  height: 13px;
  margin-top: -5px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 8px rgba(20, 20, 20, 0.34);
  appearance: none;
  -webkit-appearance: none;
}

.hero-progress input[type="range"]::-moz-range-thumb {
  width: 13px;
  height: 13px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 8px rgba(20, 20, 20, 0.34);
}

.hero-progress input[type="range"]:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.92);
  outline-offset: 4px;
}

.hero-video-time {
  min-width: 7.2em;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  text-align: right;
  text-shadow: 0 1px 5px rgba(20, 20, 20, 0.78);
  white-space: nowrap;
}

.hero-control-actions {
  display: flex;
  gap: 9px;
  align-items: center;
}

.sound-toggle,
.hero-fullscreen {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.11);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hero-fullscreen svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-fullscreen .fullscreen-exit-icon {
  display: none;
}

.hero-fullscreen.is-fullscreen .fullscreen-enter-icon {
  display: none;
}

.hero-fullscreen.is-fullscreen .fullscreen-exit-icon {
  display: block;
}

.video-subtitles {
  position: absolute;
  z-index: 4;
  top: clamp(22px, 5vh, 58px);
  left: 50%;
  width: min(88vw, 980px);
  transform: translateX(-50%);
  padding: 0.5em 0.8em;
  color: #fff;
  font-size: clamp(15px, 1.8vw, 23px);
  font-weight: 300;
  line-height: 1.55;
  text-align: center;
  text-shadow: 0 1px 5px rgba(20, 20, 20, 0.9);
  white-space: pre-line;
  pointer-events: none;
}

.video-subtitles.is-bottom {
  top: auto;
  bottom: clamp(130px, 16vh, 176px);
}

.hero-video-nav {
  position: absolute;
  z-index: 5;
  inset: 50% var(--page-pad) auto;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-video-arrow {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: rgba(42, 41, 39, 0.09);
  color: rgba(255, 255, 255, 0.92);
  font-size: 22px;
  font-weight: 200;
  line-height: 1;
  -webkit-backdrop-filter: blur(14px) saturate(125%);
  backdrop-filter: blur(14px) saturate(125%);
  pointer-events: auto;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.hero-video-arrow svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-video-arrow:hover {
  background: rgba(42, 41, 39, 0.22);
  transform: scale(1.04);
}

.hero-video-choices {
  position: absolute;
  z-index: 5;
  bottom: clamp(80px, 10vh, 106px);
  left: 50%;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.video-hero:fullscreen,
.video-hero.is-pseudo-fullscreen {
  width: 100vw;
  height: 100dvh;
  min-height: 0;
  background: #050505;
}

.video-hero.is-pseudo-fullscreen {
  position: fixed;
  z-index: 11000;
  inset: 0;
}

body.hero-pseudo-fullscreen {
  overflow: hidden;
}

.video-hero:fullscreen::backdrop {
  background: #050505;
}

.video-hero:fullscreen video,
.video-hero.is-pseudo-fullscreen video {
  width: 100vw;
  height: 100dvh;
  object-fit: contain;
  background: #050505;
}

.video-hero:fullscreen .hero-controls,
.video-hero.is-pseudo-fullscreen .hero-controls {
  right: max(22px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  left: max(22px, env(safe-area-inset-left));
}

.video-hero:fullscreen .hero-video-choices,
.video-hero.is-pseudo-fullscreen .hero-video-choices {
  bottom: max(82px, calc(env(safe-area-inset-bottom) + 72px));
}

.video-hero:fullscreen .video-subtitles,
.video-hero.is-pseudo-fullscreen .video-subtitles {
  top: max(24px, env(safe-area-inset-top));
  width: min(88vw, 1180px);
  font-size: clamp(16px, 2vw, 28px);
}

.video-hero:fullscreen .video-subtitles.is-bottom,
.video-hero.is-pseudo-fullscreen .video-subtitles.is-bottom {
  top: auto;
  bottom: max(142px, calc(env(safe-area-inset-bottom) + 126px));
}

.hero-video-choice {
  width: 28px;
  height: 18px;
  display: grid;
  place-items: center;
}

.hero-video-choice::before {
  content: "";
  width: 5px;
  height: 5px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  background: transparent;
  transition: width 0.25s ease, border-radius 0.25s ease, background-color 0.25s ease;
}

.hero-video-choice.is-active::before {
  width: 20px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.86);
}

.captioned-video {
  position: relative;
  overflow: hidden;
  background: #ecebe8;
}

.captioned-video video {
  position: relative;
  z-index: 1;
}

.caption-fullscreen-button {
  position: absolute;
  z-index: 5;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background: rgba(31, 30, 28, 0.24);
  color: #fff;
  opacity: 0.82;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: opacity 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.caption-fullscreen-button:hover,
.caption-fullscreen-button:focus-visible {
  opacity: 1;
  background: rgba(31, 30, 28, 0.46);
  transform: scale(1.04);
}

.caption-fullscreen-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.caption-fullscreen-button.is-fullscreen svg {
  transform: rotate(180deg);
}

.captioned-video video::-webkit-media-controls-fullscreen-button {
  display: none !important;
}

.caption-pseudo-fullscreen {
  overflow: hidden;
  overscroll-behavior: none;
}

.captioned-video.is-pseudo-fullscreen {
  position: fixed;
  z-index: 10000;
  inset: 0;
}

.captioned-video:fullscreen,
.captioned-video:-webkit-full-screen,
.captioned-video.is-pseudo-fullscreen {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #050505;
}

.captioned-video:fullscreen video,
.captioned-video:-webkit-full-screen video,
.captioned-video.is-pseudo-fullscreen video {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-width: none;
  aspect-ratio: auto;
  object-fit: contain;
  background: #050505;
}

.captioned-video:fullscreen .timed-video-subtitles,
.captioned-video:-webkit-full-screen .timed-video-subtitles,
.captioned-video.is-pseudo-fullscreen .timed-video-subtitles {
  top: max(24px, env(safe-area-inset-top));
  width: min(88vw, 1180px);
  font-size: clamp(16px, 2vw, 28px);
}

.captioned-video:fullscreen .timed-video-subtitles.is-bottom,
.captioned-video:-webkit-full-screen .timed-video-subtitles.is-bottom,
.captioned-video.is-pseudo-fullscreen .timed-video-subtitles.is-bottom {
  top: auto;
  bottom: max(72px, calc(env(safe-area-inset-bottom) + 58px));
}

.captioned-video:fullscreen .caption-fullscreen-button,
.captioned-video:-webkit-full-screen .caption-fullscreen-button,
.captioned-video.is-pseudo-fullscreen .caption-fullscreen-button {
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
}

[dir="rtl"] .timed-video-subtitles,
[dir="rtl"] .video-subtitles {
  direction: rtl;
}

[dir="rtl"] .hero-video-nav,
[dir="rtl"] .hero-video-choices,
[dir="rtl"] .caption-fullscreen-button,
[dir="rtl"] .military-cinema-close {
  direction: ltr;
}

.timed-video-subtitles {
  z-index: 3;
  top: clamp(14px, 3vw, 30px);
  width: min(92%, 900px);
  font-size: clamp(13px, 1.55vw, 19px);
}

.timed-video-subtitles.is-bottom {
  top: auto;
  bottom: clamp(38px, 5vw, 52px);
}

.work-group + .work-group {
  margin-top: clamp(72px, 9vw, 128px);
  padding-top: clamp(52px, 7vw, 92px);
  border-top: 1px solid var(--line-soft);
}

.work-group-title {
  margin-bottom: clamp(32px, 4vw, 54px);
  font-size: clamp(22px, 2.8vw, 34px);
}

.portrait-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 72px) clamp(20px, 3vw, 42px);
}

.portrait-photo-card {
  min-width: 0;
  text-align: left;
}

.portrait-photo-image {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #fafafa;
  border: 1px solid var(--line-soft);
}

.portrait-photo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.portrait-photo-image.is-tall {
  aspect-ratio: 3 / 4;
}

.portrait-photo-copy {
  display: grid;
  gap: 6px;
  padding-top: 17px;
}

.portrait-photo-copy strong {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
}

.portrait-photo-copy small {
  color: var(--ink-faint);
  font-size: 11px;
}

.installation-feature {
  display: grid;
  grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(44px, 7vw, 112px);
  align-items: center;
}

.installation-feature > div {
  max-width: 540px;
}

.installation-feature p:last-child {
  color: var(--ink-soft);
}

.installation-image,
.installation-hero button {
  width: 100%;
  overflow: hidden;
  background: transparent;
}

.installation-image img,
.installation-hero img {
  width: 100%;
  height: auto;
  max-height: 820px;
  object-fit: contain;
  object-position: center top;
}

.installation-hero {
  margin: 0 0 clamp(52px, 7vw, 96px);
}

.installation-hero figcaption {
  max-width: 760px;
  padding-top: 16px;
  color: var(--ink-soft);
  font-size: 13px;
}

.installation-carousel {
  position: relative;
  margin: 0 0 clamp(52px, 7vw, 96px);
}

.installation-feature .installation-carousel {
  min-width: 0;
  margin: 0;
}

.installation-carousel-track {
  display: flex;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.installation-carousel-track::-webkit-scrollbar {
  display: none;
}

.installation-slide {
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
  scroll-snap-align: start;
}

.installation-slide button {
  width: 100%;
  overflow: hidden;
  background: transparent;
}

.installation-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.installation-slide figcaption {
  max-width: 820px;
  padding-top: 15px;
  color: var(--ink-soft);
  font-size: 13px;
}

.carousel-arrow {
  position: absolute;
  z-index: 2;
  top: calc(min(68vh, 780px) / 2);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(221, 218, 212, 0.8);
  color: var(--ink-soft);
  font-size: 22px;
  font-weight: 200;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.carousel-arrow.is-prev {
  left: 16px;
}

.carousel-arrow.is-next {
  right: 16px;
}

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

.military-video-card figcaption {
  display: grid;
  gap: 5px;
}

.military-video-card figcaption strong {
  font-weight: 300;
}

.military-video-card figcaption small {
  color: var(--ink-faint);
  font-size: 11px;
}

.military-video-launch {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #efeeeb;
}

.military-video-launch img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.military-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 50%;
  background: rgba(42, 41, 39, 0.24);
  color: #fff;
  font-size: 15px;
  text-indent: 2px;
  transform: translate(-50%, -50%);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.military-video-launch:hover .military-video-play {
  background: rgba(42, 41, 39, 0.42);
  transform: translate(-50%, -50%) scale(1.05);
}

body.military-cinema-open {
  overflow: hidden;
}

.military-cinema {
  position: fixed;
  z-index: 20000;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100vw;
  height: 100dvh;
  background: #050505;
}

.military-cinema[hidden] {
  display: none;
}

.military-cinema video {
  width: 100vw;
  height: 100dvh;
  max-width: none;
  object-fit: contain;
  background: #050505;
}

.military-cinema-close {
  position: fixed;
  z-index: 20001;
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.36);
  color: #fff;
  font-size: 30px;
  font-weight: 200;
  line-height: 1;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.military-cinema-close:focus-visible {
  outline: 1px solid #fff;
  outline-offset: 4px;
}

.military-cinema,
.military-cinema *,
.military-cinema:fullscreen,
.military-cinema:fullscreen * {
  cursor: auto !important;
}

.military-cinema-close,
.military-cinema-close * {
  cursor: pointer !important;
}

.artist-layout {
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(44px, 8vw, 130px);
}

.artist-heading {
  position: sticky;
  top: 92px;
  align-self: start;
}

.artist-copy {
  max-width: 880px;
}

.story-intro {
  max-width: 940px;
  margin: 0 auto clamp(60px, 8vw, 110px);
  padding-bottom: clamp(38px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}

.story-intro .lead {
  max-width: 830px;
}

.story-language-note {
  margin: 22px 0 0;
  color: var(--ink-faint);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.story-source {
  width: min(100%, 920px);
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.25vw, 17px);
}

.story-source p {
  margin-bottom: 1.45em;
}

.story-source p:has(> strong:first-child) {
  margin: clamp(74px, 9vw, 122px) 0 28px;
  color: var(--ink);
  font-size: clamp(24px, 3.4vw, 42px);
  font-weight: 200;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.story-source p:first-child:has(> strong:first-child) {
  margin-top: 0;
}

.story-source strong {
  color: var(--ink);
  font-weight: 300;
}

.story-source p:has(> img) {
  margin: clamp(48px, 7vw, 86px) 0 22px;
  color: var(--ink-faint);
  font-size: 12px;
  line-height: 1.65;
}

.story-source img {
  width: auto;
  max-width: 100%;
  max-height: 820px;
  margin: 0 auto 14px;
  object-fit: contain;
  object-position: center top;
}

.contact-aside .eyebrow {
  margin-bottom: 18px;
}

.contact-hub {
  min-height: calc(100svh - var(--header-height) - 90px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
  padding-top: clamp(36px, 5vw, 68px);
  padding-bottom: clamp(36px, 5vw, 68px);
}

.contact-panel {
  display: grid;
  gap: 28px;
}

.contact-intro {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
  align-items: baseline;
}

.contact-intro p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.contact-intro .contact-email {
  margin-top: 0;
}

.contact-hub .contact-form {
  gap: 18px 22px;
}

.contact-hub .contact-form textarea {
  min-height: 112px;
}

.contact-map-panel {
  display: grid;
  gap: 14px;
}

.contact-map-panel address {
  color: var(--ink-soft);
  font-size: 13px;
  font-style: normal;
}

.contact-map-panel .map-frame {
  height: min(68vh, 680px);
}

.footer-contact {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.page-scroll-cue {
  position: fixed;
  z-index: 80;
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(96px, 14vh, 144px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: clamp(17px, 2.8vh, 30px);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.42) 46%,
      rgba(255, 255, 255, 0.9) 100%
    );
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: none;
  transition:
    opacity 0.42s ease,
    transform 0.42s ease,
    visibility 0s linear 0s;
}

.page-scroll-cue.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.42s ease,
    transform 0.42s ease,
    visibility 0s linear 0.42s;
}

.page-scroll-cue button {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(119, 115, 109, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 28px rgba(75, 73, 69, 0.08);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  backdrop-filter: blur(14px) saturate(135%);
  pointer-events: auto;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.25s ease;
}

.page-scroll-cue button:hover {
  border-color: rgba(119, 115, 109, 0.5);
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(2px);
}

.page-scroll-cue button:focus-visible {
  outline: 1px solid var(--ink-soft);
  outline-offset: 4px;
}

.page-scroll-cue-icon {
  width: 9px;
  height: 9px;
  border-right: 1px solid var(--ink-soft);
  border-bottom: 1px solid var(--ink-soft);
  transform: translateY(-2px) rotate(45deg);
  animation: page-scroll-cue-drift 1.9s ease-in-out infinite;
}

.page-scroll-cue.is-up .page-scroll-cue-icon {
  transform: translateY(2px) rotate(225deg);
  animation-name: page-scroll-cue-rise;
}

@keyframes page-scroll-cue-drift {
  0%,
  100% {
    transform: translateY(-3px) rotate(45deg);
  }

  50% {
    transform: translateY(3px) rotate(45deg);
  }
}

@keyframes page-scroll-cue-rise {
  0%,
  100% {
    transform: translateY(3px) rotate(225deg);
  }

  50% {
    transform: translateY(-3px) rotate(225deg);
  }
}

.art-cursor-layer {
  --cursor-x: -100px;
  --cursor-y: -100px;
  --cursor-scale: 1;
  position: fixed;
  z-index: 12050;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  contain: strict;
  transition: opacity 0.12s ease;
}

.art-cursor-layer.is-visible {
  opacity: 1;
}

.art-cursor-trail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.art-cursor-head {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 38.4px;
  overflow: visible;
  transform:
    translate3d(var(--cursor-x), var(--cursor-y), 0)
    scale(var(--cursor-scale));
  transform-origin: 1.12px 0.8px;
  transition: opacity 0.12s ease;
  will-change: transform;
}

.art-cursor-shape,
.art-cursor-hover {
  transform-box: fill-box;
  transform-origin: 1.12px 0.8px;
  transition: opacity 0.16s ease, transform 0.2s ease;
}

.art-cursor-shape {
  opacity: 1;
  transform: scale(1);
}

.art-cursor-hover {
  opacity: 0;
  transform: scale(0.38);
}

.art-cursor-layer.is-interactive .art-cursor-shape {
  opacity: 0;
  transform: scale(0.34);
}

.art-cursor-layer.is-interactive .art-cursor-hover {
  opacity: 0.94;
  transform: scale(1);
}

.art-cursor-layer.is-pressed {
  --cursor-scale: 0.9;
}

.art-cursor-layer.is-native-zone {
  opacity: 0;
}

@media (any-hover: hover) and (any-pointer: fine) and (prefers-reduced-motion: no-preference) {
  .has-art-cursor body,
  .has-art-cursor a,
  .has-art-cursor button,
  .has-art-cursor video {
    cursor: none;
  }

  .has-art-cursor input,
  .has-art-cursor textarea,
  .has-art-cursor [contenteditable="true"] {
    cursor: text;
  }

  .has-art-cursor input[type="range"],
  .has-art-cursor select,
  .has-art-cursor iframe,
  .has-art-cursor video[controls],
  .has-art-cursor .military-cinema,
  .has-art-cursor .military-cinema * {
    cursor: auto !important;
  }
}

@media (forced-colors: active), (prefers-reduced-motion: reduce) {
  .art-cursor-layer {
    display: none !important;
  }
}

@media (max-width: 1060px) {
  :root {
    --header-height: 62px;
  }

  .site-header {
    grid-template-columns: 116px 1fr auto;
  }

  .site-header.is-scrolled {
    height: var(--header-compact-height);
  }

  .primary-nav {
    inset: var(--header-height) 0 0;
    min-height: calc(100dvh - var(--header-height));
    display: flex;
    overflow-y: auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding:
      clamp(38px, 7vh, 72px)
      var(--page-pad)
      max(38px, env(safe-area-inset-bottom));
    background-color: rgba(248, 247, 244, 0.985);
    border-top: 1px solid rgba(226, 223, 217, 0.72);
    box-shadow: 0 26px 70px rgba(55, 52, 47, 0.1);
    -webkit-backdrop-filter: blur(32px) saturate(135%);
    backdrop-filter: blur(32px) saturate(135%);
    isolation: isolate;
  }

  .primary-nav-main {
    width: min(100%, 720px);
    display: flex;
    flex-direction: column;
    align-self: center;
    gap: 0;
  }

  .primary-nav-main > a {
    width: 100%;
    padding: clamp(14px, 2.2vh, 20px) 0;
    border-bottom: 1px solid rgba(104, 99, 91, 0.13);
    color: rgba(48, 45, 41, 0.96);
    font-size: clamp(22px, 3.2vw, 29px);
    font-weight: 430;
    line-height: 1.28;
    letter-spacing: -0.012em;
  }

  .primary-nav-main > a:first-child {
    border-top: 1px solid rgba(104, 99, 91, 0.13);
  }

  .primary-nav-main > a::after {
    bottom: 8px;
  }

  .primary-nav-utility {
    width: min(100%, 720px);
    display: grid;
    grid-template-columns: 1fr;
    align-self: center;
    gap: 12px;
    margin-top: clamp(30px, 6vh, 58px);
    padding-top: clamp(22px, 3.2vh, 32px);
    border-top: 1px solid rgba(104, 99, 91, 0.2);
  }

  .primary-nav-utility > a {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 18px;
    border: 1px solid rgba(91, 86, 79, 0.23);
    border-radius: 999px;
    color: rgba(61, 57, 52, 0.92);
    font-size: clamp(14px, 1.9vw, 16px);
    font-weight: 450;
    line-height: 1.2;
    letter-spacing: 0.005em;
    text-align: center;
  }

  .primary-nav-utility > a::after {
    display: none;
  }

  .primary-nav-utility .menu-current-link:hover,
  .primary-nav-utility .menu-current-link[aria-current="page"] {
    border-color: rgba(180, 154, 114, 0.65);
    background: rgba(180, 154, 114, 0.08);
  }

  .primary-nav-utility .menu-contact-link {
    border-color: rgba(70, 66, 60, 0.84);
    background: rgba(70, 66, 60, 0.9);
    color: #fff;
  }

  .primary-nav-utility .menu-contact-link:hover,
  .primary-nav-utility .menu-contact-link[aria-current="page"] {
    background: rgba(53, 50, 46, 0.97);
  }

  .header-route-actions {
    display: none;
  }

  .site-header.is-scrolled .primary-nav {
    inset: var(--header-compact-height) 0 0;
    min-height: calc(100dvh - var(--header-compact-height));
  }

  .menu-open .site-header {
    background: rgba(248, 247, 244, 0.98);
  }

  .menu-open .page-scroll-cue {
    opacity: 0;
    visibility: hidden;
  }

  .section-heading,
  .exhibition-lead,
  .current-layout,
  .artist-layout,
  .contact-layout,
  .installation-feature,
  .contact-hub {
    grid-template-columns: 1fr;
  }

  .contact-hub {
    min-height: 0;
  }

  .contact-map-panel .map-frame {
    height: min(58vh, 540px);
  }

  .artist-heading {
    position: static;
  }

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

  .caption-fullscreen-button {
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 1060px) and (orientation: portrait) {
  .captioned-video[data-caption-id="bussot-interview"]:fullscreen
    .timed-video-subtitles,
  .captioned-video[data-caption-id="bussot-interview"]:-webkit-full-screen
    .timed-video-subtitles,
  .captioned-video[data-caption-id="bussot-interview"].is-pseudo-fullscreen
    .timed-video-subtitles {
    top: calc(50dvh + 37.5vw + 12px);
    bottom: auto;
    width: min(92vw, 760px);
  }

  .captioned-video[data-caption-id="bussot-archive"]:fullscreen
    .timed-video-subtitles.is-bottom,
  .captioned-video[data-caption-id="bussot-archive"]:-webkit-full-screen
    .timed-video-subtitles.is-bottom,
  .captioned-video[data-caption-id="bussot-archive"].is-pseudo-fullscreen
    .timed-video-subtitles.is-bottom {
    top: calc(50dvh + 37.5vw + 12px);
    bottom: auto;
    width: min(92vw, 760px);
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 58px;
  }

  .site-header {
    grid-template-columns: 104px 1fr auto;
  }

  .brand {
    width: 100px;
  }

  .language-control select {
    width: 118px;
  }

  .primary-nav-main > a {
    font-size: clamp(21px, 6.4vw, 26px);
  }

  .primary-nav-utility {
    grid-template-columns: 1fr;
  }

  .site-loader img {
    width: min(42vw, 150px);
  }

  .section,
  .section-first {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-first.exhibition-index {
    padding-top: 44px;
  }

  .exhibition-lead h1,
  .current-copy h1,
  .artist-heading h1,
  .contact-aside h1 {
    font-size: clamp(32px, 10vw, 48px);
  }

  .portrait-photo-grid {
    grid-template-columns: 1fr;
  }

  .military-video-grid {
    grid-template-columns: 1fr;
  }

  .portrait-photo-image {
    aspect-ratio: auto;
    min-height: 360px;
  }

  .video-subtitles {
    top: 18px;
    font-size: 14px;
  }

  .video-subtitles.is-bottom {
    top: auto;
    bottom: 124px;
  }

  .hero-video-nav {
    right: 14px;
    left: 14px;
  }

  .hero-video-arrow {
    width: 40px;
    height: 40px;
    font-size: 19px;
  }

  .hero-video-choices {
    bottom: 76px;
  }

  .hero-controls {
    right: 14px;
    bottom: 17px;
    left: 14px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
  }

  .hero-progress {
    grid-template-columns: minmax(72px, 1fr);
  }

  .hero-video-time {
    display: none;
  }

  .sound-toggle,
  .hero-fullscreen {
    width: 40px;
    height: 40px;
  }

  .video-hero:fullscreen .hero-controls,
  .video-hero.is-pseudo-fullscreen .hero-controls {
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    left: max(14px, env(safe-area-inset-left));
  }

  .video-hero:fullscreen .hero-video-choices,
  .video-hero.is-pseudo-fullscreen .hero-video-choices {
    bottom: max(74px, calc(env(safe-area-inset-bottom) + 66px));
  }

  .video-hero:fullscreen .video-subtitles.is-bottom,
  .video-hero.is-pseudo-fullscreen .video-subtitles.is-bottom {
    bottom: max(120px, calc(env(safe-area-inset-bottom) + 108px));
  }

  .timed-video-subtitles {
    top: 12px;
    font-size: 13px;
  }

  .timed-video-subtitles.is-bottom {
    top: auto;
    bottom: 36px;
  }

  .installation-slide img {
    height: auto;
  }

  .carousel-arrow {
    top: calc(min(56vh, 560px) / 2);
    width: 38px;
    height: 38px;
  }

  .hero-controls {
    right: 20px;
    bottom: 22px;
  }

  .story-source {
    font-size: 15px;
  }

  .page-scroll-cue {
    height: 104px;
    padding-bottom: 16px;
  }

  .page-scroll-cue button {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 360px) {
  .site-header {
    grid-template-columns: 84px 1fr auto;
    gap: 6px;
  }

  .brand {
    width: 82px;
  }

  .header-actions {
    gap: 8px;
  }

  .language-control select {
    width: 104px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-scroll-cue,
  .page-scroll-cue button {
    transition: none;
  }

  .page-scroll-cue-icon {
    animation: none;
  }
}
