:root {
  color-scheme: dark;
  --void: #07090a;
  --wall: #111314;
  --wall-edge: #090b0c;
  --gold: #d4bf83;
  --gold-dim: #aa986b;
  --line: rgba(214, 195, 145, .23);
  --veil: rgba(25, 27, 27, .58);
  --series-type-size: clamp(1.1rem, 1.6vw, 1.5rem);
  font-family: "Iowan Old Style", Baskerville, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--void);
  color: var(--gold);
  -webkit-font-smoothing: antialiased;
}
.ambient-background {
  position: fixed;
  z-index: 0;
  inset: -20svh 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 72% 52% at 50% 39%, rgba(46, 57, 118, .24), transparent 74%),
    radial-gradient(ellipse 60% 42% at 43% 70%, rgba(33, 45, 99, .16), transparent 76%),
    linear-gradient(100deg, #06080b 0%, #0d1123 48%, #06080b 100%);
  transform: translate3d(0, 0, 0);
  will-change: transform;
}
.site-header, main, .site-footer { position: relative; z-index: 1; }
body.depth-open {
  position: fixed;
  top: var(--locked-scroll);
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}
img { display: block; max-width: 100%; }
figure, h1, h2, p { margin: 0; }
button { font: inherit; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 5px; }
[hidden] { display: none !important; }
.visually-hidden {
  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;
  top: -5rem;
  left: 1rem;
  z-index: 50;
  padding: .8rem 1rem;
  background: var(--gold);
  color: var(--void);
}
.skip-link:focus { top: 1rem; }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1.4rem, 3vw, 2.6rem) clamp(1.3rem, 4.5vw, 5rem);
}
.header-actions { display: flex; align-items: center; gap: clamp(1.2rem, 3vw, 2.8rem); }
.brand, .depth-brand {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 400;
  letter-spacing: -.06em;
  text-decoration: none;
}
.header-link {
  font-size: .77rem;
  letter-spacing: .03em;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: .4rem;
}
.header-link:hover { border-color: var(--gold); }
.language-switch { display: inline-flex; align-items: center; gap: .45rem; color: var(--gold-dim); font-size: .72rem; letter-spacing: .04em; }
.language-switch button { padding: .4rem .05rem; border: 0; background: none; color: var(--gold-dim); cursor: pointer; }
.language-switch button[aria-pressed="true"] { color: #eddaa6; text-decoration: underline; text-underline-offset: .35rem; }
.language-switch button:hover { color: var(--gold); }

.intro {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 6rem 1.5rem 4rem;
}
.intro-content { width: 100%; display: grid; justify-items: center; text-align: center; }
.intro-eye-shell {
  position: relative;
  width: clamp(6.5rem, 15.5vw, 12rem);
  aspect-ratio: 1;
}
.intro-eye {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(212, 191, 131, .28);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(212, 191, 131, .05), 0 0 55px rgba(45, 55, 113, .19);
}
.intro-eye > img,
.intro-eye > video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: brightness(.75) saturate(.86);
}
.intro-eye > img { z-index: 2; }
.intro-eye > video {
  z-index: 1;
  pointer-events: none;
  background: transparent;
  -webkit-appearance: none;
  transform: translateZ(0);
}
.intro-eye.is-playing > img { visibility: hidden; }
.intro-eye > video::-webkit-media-controls,
.intro-eye > video::-webkit-media-controls-enclosure,
.intro-eye > video::-webkit-media-controls-panel,
.intro-eye > video::-webkit-media-controls-start-playback-button { display: none !important; -webkit-appearance: none; }
.intro-motion-control {
  min-height: 2.75rem;
  margin-top: .1rem;
  padding: .55rem;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-size: .68rem;
  line-height: 1.2;
  letter-spacing: .07em;
  opacity: .8;
  transition: opacity .2s ease, border-color .2s ease;
}
.intro-motion-control:hover,
.intro-motion-control:focus-visible { opacity: 1; border-color: currentColor; }
.intro-art-label { margin-top: .1rem; color: var(--gold-dim); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; }
.intro h1 {
  margin-top: 2.1rem;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -.035em;
}
.intro-description {
  max-width: 33ch;
  margin: 1rem auto 0;
  color: var(--gold-dim);
  font-size: clamp(.82rem, 1vw, .96rem);
  line-height: 1.6;
}
.intro-paths { display: flex; justify-content: center; gap: clamp(1.5rem, 5vw, 4rem); width: 100%; margin-top: clamp(2.3rem, 5svh, 3.5rem); }
.intro-path { display: flex; align-items: center; justify-content: space-between; gap: 2rem; min-width: 11.5rem; padding: .9rem .1rem; border-top: 1px solid var(--line); font-size: .84rem; text-decoration: none; transition: border-color .25s ease, color .25s ease; }
.intro-path:hover { border-color: var(--gold); color: #eddaa6; }
.intro-path span:last-child { font-size: 1.15rem; }

.threshold-home,
.threshold-depth-veil,
.threshold-skip { display: none; }

.threshold-prototype { overflow-anchor: none; }
.threshold-prototype body { overflow-anchor: none; }
.threshold-prototype.threshold-active { scroll-behavior: auto; }
.threshold-prototype .standard-home-only { display: none !important; }
.threshold-prototype .intro {
  min-height: 100svh;
  display: block;
  padding: 0;
  overflow: visible;
}
.threshold-prototype.threshold-active .intro { height: 350svh; }
.threshold-prototype .intro-content {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  align-content: center;
  isolation: isolate;
}
.threshold-prototype .threshold-home {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: clamp(1.7rem, 4svh, 2.8rem);
}
.threshold-eye-trigger {
  width: clamp(14.375rem, 25vw, 20rem);
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.threshold-eye-frame {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(212, 191, 131, .28);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(212, 191, 131, .05), 0 0 72px rgba(45, 55, 113, .25);
  opacity: var(--threshold-eye-opacity, 1);
  transform: scale(var(--threshold-eye-scale, 1));
  transform-origin: 50% 54%;
  will-change: transform, opacity;
}
.threshold-eye-frame img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
}
.threshold-home-copy {
  display: grid;
  justify-items: center;
  gap: 1.35rem;
  opacity: var(--threshold-copy-opacity, 1);
  transition: opacity .35s ease;
}
.threshold-home-copy h1 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: -.035em;
}
.threshold-scroll-cue {
  position: fixed;
  z-index: 7;
  left: 50%;
  bottom: clamp(1.5rem, 4svh, 3rem);
  margin: 0;
  color: var(--gold-dim);
  font-size: .68rem;
  letter-spacing: .09em;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity .25s ease;
  white-space: nowrap;
}
.threshold-enter,
.threshold-skip {
  min-height: 2.75rem;
  padding: .65rem .2rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-size: .75rem;
  letter-spacing: .1em;
  text-decoration: none;
}
.threshold-enter:hover,
.threshold-enter:focus-visible,
.threshold-skip:hover,
.threshold-skip:focus-visible { border-color: var(--gold); color: #eddaa6; }
.threshold-prototype .threshold-depth-veil {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  pointer-events: none;
  opacity: var(--threshold-depth-opacity, 0);
  background:
    radial-gradient(circle at 50% 50%, rgba(30, 40, 91, .2) 0%, rgba(7, 10, 22, .72) 36%, rgba(2, 3, 6, .98) 76%),
    linear-gradient(90deg, rgba(0,0,0,.82), rgba(10,14,34,.28) 50%, rgba(0,0,0,.82));
  transform: scale(var(--threshold-depth-scale, 1));
  will-change: opacity, transform;
}
.threshold-prototype .threshold-skip {
  position: absolute;
  z-index: 6;
  right: clamp(1.3rem, 4.5vw, 5rem);
  bottom: clamp(1.4rem, 3vw, 2.7rem);
  display: block;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.threshold-prototype.threshold-active:not(.threshold-has-moved) .threshold-scroll-cue { opacity: .82; }
.threshold-prototype.threshold-image-failed .threshold-skip { opacity: .8; pointer-events: auto; }
.threshold-prototype.threshold-arrived .threshold-skip:not(:focus-visible) { opacity: 0; pointer-events: none; }
.threshold-prototype.threshold-active .threshold-home-copy { opacity: 0; pointer-events: none; }
.threshold-prototype.threshold-active .threshold-eye-trigger { pointer-events: none; }
.threshold-prototype.threshold-active .work-sirenas {
  z-index: 4;
  min-height: 100svh;
  margin-top: -100svh;
  pointer-events: none;
}
.threshold-prototype.threshold-active .work-sirenas .work-stage {
  opacity: var(--threshold-sirenas-opacity, 0);
  transform: scale(var(--threshold-sirenas-scale, .94));
  transform-origin: center;
  will-change: opacity, transform;
}
.threshold-prototype.threshold-active .work-sirenas .artwork img {
  opacity: 1;
  filter: none;
  transform: none;
  animation: none;
}
.threshold-prototype.threshold-active .work-sirenas .artwork::after { display: none; }
.threshold-prototype.threshold-active .work-sirenas .work-caption,
.threshold-prototype.threshold-active .work-sirenas .depth-trigger { opacity: 0; pointer-events: none; }
.threshold-prototype.threshold-arrived .work-sirenas { pointer-events: auto; }
.threshold-prototype.threshold-arrived .work-sirenas.initial-caption-visible .work-caption { opacity: 1; }
.threshold-prototype.threshold-arrived .work-sirenas.initial-caption-complete .depth-trigger { opacity: 1; pointer-events: auto; }

.exhibition {
  position: relative;
  isolation: isolate;
}
.work {
  position: relative;
  isolation: isolate;
  min-height: 80svh;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 2svh, 2rem) 1.25rem;
  scroll-margin-top: 0;
}
.work-stage {
  position: relative;
  width: min(88vw, 1390px, var(--art-width-by-height, 104.4svh), var(--art-max-width, 1204px));
  margin-inline: auto;
}
.work-tantra { --art-width-by-height: 104.1svh; --art-max-width: 1201px; }
.work-signos { --art-width-by-height: 139.2svh; --art-max-width: 1390px; }
.work-mirada, .work-trinidad { --art-width-by-height: 139.2svh; --art-max-width: 1390px; }
.artwork {
  position: relative;
  height: min(78svh, 900px);
  display: grid;
  place-items: end center;
  isolation: isolate;
}
.artwork::before {
  content: none;
}
.artwork img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(78svh, 900px);
  object-fit: contain;
  border: 1px solid rgba(212, 191, 131, .33);
  box-shadow: 0 0 0 1px rgba(212, 191, 131, .08), 0 0 26px rgba(212, 191, 131, .17), 0 28px 90px rgba(0,0,0,.48);
}
.work-sirenas .artwork img {
  opacity: 0;
  filter: brightness(.32);
  transform: scale(.985);
}
.work-sirenas.initial-revealed .artwork img {
  animation: artwork-emergence 2.6s cubic-bezier(.22,.72,.22,1) both;
}
.work-sirenas .artwork::after {
  content: "";
  position: absolute;
  inset: 14% 9%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(ellipse, rgba(240, 222, 168, .18), transparent 56%);
  mix-blend-mode: screen;
}
.work-sirenas.initial-revealed .artwork::after {
  animation: presence-glint .85s ease-out 2.1s both;
}
.work-caption {
  display: flex;
  align-items: baseline;
  gap: .7rem;
  margin-top: .55rem;
  padding-right: 6rem;
  color: var(--gold);
}
.work-sirenas .work-caption {
  opacity: 0;
  transition: opacity .35s ease;
}
.work-sirenas.initial-caption-visible .work-caption { opacity: 1; }
.work-sirenas:not(.initial-caption-complete) .depth-trigger {
  opacity: 0;
  pointer-events: none;
}
.work-year, .work-caption h2 {
  color: var(--gold);
  font-size: calc(var(--series-type-size) - .167rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -.025em;
}
.work-caption { color: rgba(212, 191, 131, .83); }
.work-year, .work-caption h2 { color: inherit; }

.depth-trigger {
  position: absolute;
  right: 0;
  bottom: -.2rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem 0 .35rem .35rem;
  border: 0;
  background: none;
  color: rgba(212, 191, 131, .82);
  cursor: pointer;
  font-size: .72rem;
  letter-spacing: .015em;
  transition: color .25s ease;
}
.depth-trigger-mark {
  width: 1.45rem;
  height: 1.45rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 191, 131, .53);
  border-radius: 50%;
  font-size: .85rem;
  line-height: 1;
  box-shadow: 0 0 12px rgba(212, 191, 131, .1);
  transition: border-color .25s ease, transform .25s ease;
}
.depth-trigger:hover, .depth-trigger:focus-visible {
  color: var(--gold);
}
.depth-trigger:hover .depth-trigger-mark, .depth-trigger:focus-visible .depth-trigger-mark { border-color: var(--gold); transform: translate(2px, 2px); }
.work.is-entering .artwork img { transform: scale(1.035); filter: brightness(.65); }
.artwork img { transition: transform .38s ease, filter .38s ease; }

.bridge {
  min-height: clamp(7.5rem, 15svh, 9rem);
  display: grid;
  place-items: center;
  padding: 1.25rem 1.5rem;
  overflow-x: clip;
}
.bridge p {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 0;
  text-align: center;
  white-space: nowrap;
  font-style: italic;
  color: var(--gold);
  font-size: calc(var(--series-type-size) + .15rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -.025em;
  text-shadow: 0 0 18px rgba(224, 191, 101, .38), 0 0 40px rgba(224, 191, 101, .13);
  transform: none;
}
.bridge p::after {
  content: "";
  position: absolute;
  inset: -1rem -3rem;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(238, 211, 136, .28), transparent);
  pointer-events: none;
}
.enhanced .bridge p { opacity: 0; }
.enhanced .bridge.bridge-revealed p { animation: guide-appearance .38s ease-out both, guide-breath 5.8s ease-in-out .5s infinite; }
.enhanced .bridge.bridge-revealed p::after { animation: guide-flash .48s ease-out both; }

@keyframes artwork-emergence {
  from {
    opacity: 0;
    filter: brightness(.32);
    transform: scale(.985);
  }
  to {
    opacity: 1;
    filter: brightness(1);
    transform: scale(1);
  }
}

@keyframes presence-glint {
  0%, 100% { opacity: 0; }
  48% { opacity: 1; }
}

@keyframes guide-appearance {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes guide-breath {
  0%, 100% { text-shadow: 0 0 18px rgba(224, 191, 101, .32), 0 0 40px rgba(224, 191, 101, .1); }
  50% { text-shadow: 0 0 22px rgba(224, 191, 101, .45), 0 0 48px rgba(224, 191, 101, .16); }
}

@keyframes guide-flash {
  0% { opacity: 0; transform: scaleX(.5); }
  38% { opacity: 1; }
  100% { opacity: 0; transform: scaleX(1.2); }
}

.site-footer {
  min-height: 33svh;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  padding: 4rem clamp(1.3rem, 4.5vw, 5rem);
  color: var(--gold-dim);
  font-size: .8rem;
}
.site-footer a { text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: .35rem; }

.curatorial { position: relative; padding: 0 clamp(1.3rem, 5vw, 5rem) 7rem; }
.curatorial-opening { width: min(100%, 1100px); margin: 0 auto; padding: 6rem 0 4rem; }
.eyebrow, .section-index, .archive-number { color: var(--gold-dim); font-size: .7rem; letter-spacing: .13em; }
.curatorial-opening h2 { margin-top: 1.1rem; font-size: clamp(2.7rem, 5.3vw, 5rem); font-weight: 300; line-height: 1.05; letter-spacing: -.045em; }
.curatorial-opening > p:not(.eyebrow) { max-width: 39ch; margin-top: 1.3rem; color: var(--gold-dim); font-size: clamp(.9rem, 1.2vw, 1.08rem); line-height: 1.55; }
.curatorial-switch { display: inline-flex; align-items: center; gap: 1.5rem; margin-top: 2.5rem; padding-bottom: .5rem; border-bottom: 1px solid var(--line); font-size: .78rem; text-decoration: none; }
.curatorial-switch:hover { border-color: var(--gold); }
.curatorial-nav { position: sticky; z-index: 5; top: 0; display: flex; gap: clamp(1.5rem, 3vw, 3rem); overflow-x: auto; width: min(100%, 1100px); margin: 0 auto; padding: 1.1rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(9, 12, 24, .94); backdrop-filter: blur(12px); scrollbar-width: none; }
.curatorial-nav::-webkit-scrollbar { display: none; }
.curatorial-nav a { flex: 0 0 auto; color: var(--gold-dim); font-size: .76rem; text-decoration: none; white-space: nowrap; }
.curatorial-nav a:hover, .curatorial-nav a:focus-visible { color: var(--gold); }
.curatorial-section { display: grid; grid-template-columns: minmax(4rem, 8rem) minmax(0, 1fr); gap: clamp(1rem, 3vw, 3rem); width: min(100%, 1100px); margin: 0 auto; padding: clamp(3rem, 6vw, 5.5rem) 0; border-bottom: 1px solid var(--line); scroll-margin-top: 5rem; }
.curatorial-section h3 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300; letter-spacing: -.035em; }
.section-lead { max-width: 56ch; margin-top: 1.4rem; font-size: clamp(1.08rem, 1.6vw, 1.4rem); line-height: 1.55; }
.section-note { max-width: 58ch; margin-top: 1.2rem; color: var(--gold-dim); font-size: .91rem; line-height: 1.6; }
.book-title { font-style: italic; }
.source-details { margin-top: 2rem; border-top: 1px solid var(--line); }
.source-details summary, .archive-source summary {
  width: max-content;
  max-width: 100%;
  padding: .9rem 0;
  color: var(--gold-dim);
  cursor: pointer;
  font-size: .78rem;
  list-style-position: outside;
}
.source-details summary:hover, .archive-source summary:hover { color: var(--gold); }
.about-document { display: grid; grid-template-columns: minmax(10rem, 15rem) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); padding-top: 1rem; }
.about-document img { width: 100%; height: auto; border: 1px solid rgba(212, 191, 131, .22); filter: brightness(.86); }
.source-prose { max-width: 68ch; color: var(--gold-dim); font-size: .91rem; line-height: 1.7; }
.source-prose p + p { margin-top: 1rem; }
.source-prose a, .source-prose .video-open { display: inline-block; margin-top: 1.3rem; color: var(--gold); text-underline-offset: .35em; }
.source-links { display: flex; flex-wrap: wrap; gap: .25rem 1.5rem; }
.archive-list { margin-top: 2.5rem; }
.archive-row { display: grid; grid-template-columns: 2.5rem minmax(0, 1fr) 7.5rem; align-items: center; gap: 1rem; min-height: 5.5rem; padding: .7rem 0; border-top: 1px solid rgba(214, 195, 145, .16); }
.archive-row h4 { font-size: clamp(1rem, 1.5vw, 1.3rem); font-weight: 300; line-height: 1.25; }
.archive-image { justify-self: end; width: 7.5rem; height: 4.5rem; overflow: hidden; padding: 0; border: 1px solid rgba(212, 191, 131, .22); background: none; cursor: pointer; }
.archive-image img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.78); transition: transform .45s ease, filter .45s ease; }
.archive-image-contain { background: #050505; }
.archive-image-contain img { object-fit: contain; }
.archive-image:hover img, .archive-image:focus-visible img { transform: scale(1.04); filter: brightness(1); }
.archive-source { grid-column: 2 / -1; align-self: start; margin-top: -.55rem; }
.archive-source[open] { padding-bottom: 1.2rem; }
.archive-source .source-prose { padding: .4rem 0 1rem; }
.archive-row-text { align-items: start; padding-block: 1.25rem; }
.archive-status { grid-column: 2 / -1; max-width: 62ch; color: var(--gold-dim); font-size: .84rem; line-height: 1.6; }
.timeline { max-width: 46rem; margin: 2rem 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.timeline li { display: grid; grid-template-columns: 6rem minmax(0, 1fr); gap: 1rem; padding: 1rem 0; border-bottom: 1px solid rgba(214, 195, 145, .16); }
.timeline li > span { color: var(--gold); font-size: .78rem; letter-spacing: .06em; }
.timeline p { color: var(--gold-dim); font-size: .9rem; line-height: 1.55; }
.document-link { display: inline-block; margin-top: 1.6rem; color: var(--gold); font-size: .86rem; text-underline-offset: .4em; }
.cv-links { display: flex; flex-wrap: wrap; gap: 0 1.5rem; }
.resource-list { max-width: 58rem; margin: 2rem 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.resource-list li { display: flex; justify-content: space-between; gap: 1.5rem; padding: .9rem 0; border-bottom: 1px solid rgba(214, 195, 145, .16); color: var(--gold-dim); font-size: .86rem; }
.resource-list a, .resource-list .video-open, .contact-list a { color: var(--gold); text-underline-offset: .35em; }
.video-open {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}
.contact-list { display: flex; flex-wrap: wrap; gap: .8rem 1.8rem; margin-top: 2rem; font-size: .9rem; font-style: normal; }
.archive-dialog { width: min(90vw, 1100px); max-height: 90svh; overflow: visible; padding: clamp(1rem, 3vw, 2rem); border: 1px solid rgba(212, 191, 131, .28); background: #0a0d17; color: var(--gold); box-shadow: 0 30px 110px rgba(0,0,0,.65); }
.archive-dialog::backdrop { background: rgba(3, 5, 10, .82); backdrop-filter: blur(8px); }
.archive-dialog img { width: 100%; max-height: 74svh; object-fit: contain; }
.archive-dialog figcaption { margin-top: .9rem; font-size: .82rem; }
.archive-dialog-close { position: absolute; right: -.9rem; top: -.9rem; width: 2rem; height: 2rem; border: 1px solid var(--line); border-radius: 50%; background: #0a0d17; color: var(--gold); cursor: pointer; font-size: 1.1rem; }
.video-dialog {
  width: min(92vw, 1100px);
  max-height: 92svh;
  overflow: visible;
  padding: clamp(1rem, 3vw, 2rem);
  border: 1px solid rgba(212, 191, 131, .28);
  background: #0a0d17;
  color: var(--gold);
  box-shadow: 0 30px 110px rgba(0,0,0,.65);
}
.video-dialog::backdrop { background: rgba(3, 5, 10, .88); backdrop-filter: blur(8px); }
.video-dialog h2 { margin: 0 0 1rem; font-size: clamp(1rem, 2vw, 1.35rem); font-weight: 300; }
.video-dialog-close { position: absolute; right: -.9rem; top: -.9rem; z-index: 2; width: 2rem; height: 2rem; border: 1px solid var(--line); border-radius: 50%; background: #0a0d17; color: var(--gold); cursor: pointer; font-size: 1.1rem; }
.video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #030405;
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
}
.video-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #030405;
  cursor: pointer;
}
.video-poster img { width: 100%; height: 100%; object-fit: contain; filter: brightness(.68); transition: filter .25s ease; }
.video-poster:hover img, .video-poster:focus-visible img { filter: brightness(.82); }
.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(3.5rem, 7vw, 5.5rem);
  height: clamp(3.5rem, 7vw, 5.5rem);
  display: grid;
  place-items: center;
  border: 1px solid rgba(238, 211, 136, .76);
  border-radius: 50%;
  background: rgba(6, 8, 10, .72);
  color: var(--gold);
  font-size: clamp(1rem, 2.2vw, 1.5rem);
  line-height: 1;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(5px);
}
.video-frame { width: 100%; height: 100%; border: 0; }

.depth-overlay {
  position: fixed;
  z-index: 30;
  inset: 0;
  overflow-y: auto;
  background: #07090a;
  opacity: 0;
  transform: scale(1.07);
  transition: opacity .34s ease, transform .46s cubic-bezier(.2,.7,.2,1);
}
.depth-overlay.is-visible { opacity: 1; transform: scale(1); }
.depth-well {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 60% 70% at 43% 48%, #252521 0%, #111313 43%, #07090a 82%);
}
.depth-header {
  position: sticky;
  z-index: 2;
  top: 0;
  min-height: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem clamp(1.3rem, 4.5vw, 5rem);
  background: rgba(7, 9, 10, .86);
  backdrop-filter: blur(14px);
}
.return-button, .folder-back {
  border: 0;
  background: none;
  color: var(--gold);
  cursor: pointer;
  font-size: .8rem;
  text-align: left;
}
.return-button:hover, .folder-back:hover { text-decoration: underline; text-underline-offset: .5em; }
.depth-content {
  position: relative;
  z-index: 1;
  width: min(100% - 9vw, 1520px);
  min-height: calc(100svh - 6rem);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
  margin: 0 auto;
  padding: 2rem 0 5rem;
}
.depth-art { display: grid; place-items: center; }
.depth-art .video-player { width: min(100%, calc(69svh * 16 / 9)); }
.depth-art > img {
  width: 100%;
  max-height: 69svh;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
}
.depth-panel { max-width: 460px; }
.depth-panel h2 {
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -.035em;
}
.depth-caption {
  margin-top: 1.3rem;
  color: var(--gold-dim);
  font-size: .78rem;
}
.folder-list { display: grid; grid-template-columns: 1fr 1fr; gap: .15rem 1.3rem; margin-top: 2.5rem; }
.folder-button {
  min-height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .75rem 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  color: var(--gold);
  cursor: pointer;
  font-size: .83rem;
  text-align: left;
}
.folder-button:hover { color: #f0dba1; border-color: var(--gold); }
.folder-button:disabled { color: rgba(170, 152, 107, .42); border-color: rgba(214, 195, 145, .09); cursor: not-allowed; }
.folder-button:disabled .folder-depth { opacity: .35; box-shadow: none; }
.folder-depth {
  position: relative;
  flex: 0 0 auto;
  width: 1.65rem;
  height: 1.65rem;
  border: 1px solid rgba(215, 195, 139, .38);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 67%, rgba(234, 214, 159, .3), transparent 13%, #020303 14% 22%, #37352c 23% 27%, #090b0b 29% 100%);
  box-shadow: 0 3px 8px rgba(235, 214, 158, .18), inset 0 0 8px #000;
}
.folder-depth::before, .folder-depth::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(218, 198, 145, .25);
  border-radius: 50%;
}
.folder-depth::before { inset: .23rem; }
.folder-depth::after { inset: .45rem; border-color: rgba(235, 214, 158, .57); }
.folder-button:hover .folder-depth, .folder-button:focus-visible .folder-depth {
  box-shadow: 0 4px 11px rgba(235, 214, 158, .28), inset 0 0 8px #000;
}
.folder-back { margin: 0 0 3rem; padding: .5rem 0; }
.folder-placeholder {
  max-width: 31ch;
  margin-top: 1.4rem;
  color: var(--gold-dim);
  font-size: .88rem;
  line-height: 1.6;
}
.folder-link { display: inline-block; margin-top: 1.4rem; color: var(--gold); font-size: .84rem; text-underline-offset: .4em; }
.depth-gallery { width: 100%; max-height: 69svh; display: grid; grid-auto-flow: column; grid-auto-columns: minmax(74%, 1fr); gap: 1rem; overflow-x: auto; overscroll-behavior-inline: contain; scroll-snap-type: inline mandatory; scrollbar-color: var(--gold-dim) transparent; }
.depth-gallery figure { display: grid; place-items: center; min-width: 0; scroll-snap-align: center; }
.depth-gallery img { display: block; width: 100%; height: 100%; max-height: 66svh; object-fit: contain; }

@media (max-width: 760px) {
  .work { min-height: auto; padding-block: 1.5rem; }
  .work-stage { width: min(94vw, 620px); }
  .artwork { height: auto; }
  .depth-content {
    width: min(100% - 2.6rem, 620px);
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-content: start;
    padding: 1rem 0 5rem;
  }
  .depth-art > img { max-height: 40svh; }
  .depth-art .video-player { width: min(100%, calc(40svh * 16 / 9)); }
  .depth-gallery { max-height: 48svh; grid-auto-columns: 88%; }
  .depth-gallery img { max-height: 46svh; }
  .depth-panel { max-width: none; }
  .intro-paths { flex-direction: column; align-items: center; gap: .35rem; }
  .intro-path { width: min(100%, 17rem); }
  .curatorial-section { grid-template-columns: 1fr; gap: .8rem; }
  .about-document { grid-template-columns: 1fr; }
  .about-document img { width: min(70vw, 18rem); }
}
@media (max-width: 520px) {
  .site-header { padding: 1.3rem; }
  .header-actions { gap: 1rem; }
  .intro { padding-top: 6rem; }
  .intro { padding-inline: 1.3rem; }
  .intro h1 { margin-top: 1.7rem; }
  .archive-row { grid-template-columns: 1.8rem minmax(0, 1fr) 5rem; gap: .6rem; min-height: 4.7rem; }
  .archive-image { width: 5rem; height: 3.5rem; }
  .work-stage { width: 100%; }
  .work-caption { margin-top: .4rem; padding-right: 0; flex-wrap: wrap; gap: .25rem .55rem; }
  .depth-trigger { position: relative; right: auto; bottom: auto; display: flex; width: max-content; margin: .1rem 0 0 auto; }
  .bridge p { max-width: 30ch; white-space: normal; }
  .depth-header { min-height: 5rem; padding: 1.3rem; }
  .return-button { max-width: 9rem; line-height: 1.4; }
  .folder-list { gap: .15rem .9rem; }
  .site-footer { align-items: start; flex-direction: column; justify-content: end; }
  .resource-list li { align-items: flex-start; flex-direction: column; gap: .35rem; }
  .timeline li { grid-template-columns: 4.5rem minmax(0, 1fr); }
  .threshold-prototype .intro { padding-inline: 0; }
  .threshold-eye-trigger { width: min(14.375rem, 72vw); }
  .threshold-home-copy { gap: 1rem; padding-inline: 1.3rem; }
  .threshold-home-copy h1 { max-width: 15ch; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .work-sirenas .artwork img, .work-sirenas .work-caption { opacity: 1; filter: none; transform: none; }
  .work-sirenas .depth-trigger { opacity: 1; pointer-events: auto; }
  .enhanced .bridge.bridge-revealed p { animation: none; opacity: 1; }
  .threshold-prototype .threshold-eye-frame,
  .threshold-prototype.threshold-active .work-sirenas .work-stage { transform: none; }
}
