

@font-face {
  font-family: "Cormorant";
  src: url("../assets/fonts/cormorant-var.woff2?v=v8-7-20260820") format("woff2");
  font-weight: 300 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant";
  src: url("../assets/fonts/cormorant-var-italic.woff2?v=v8-7-20260820") format("woff2");
  font-weight: 300 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Cinzel";
  src: url("../assets/fonts/cinzel-var.woff2?v=v8-7-20260820") format("woff2");
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --ink:        #060608;
  --bone:       #ede6da;
  --bone-dim:   #9a938a;
  --bone-faint: #4c4843;
  --ember:      #c2704a;
  --serif: "Cormorant", "Iowan Old Style", Palatino, Georgia, serif;
  --sans:  ui-sans-serif, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --gutter: clamp(1.25rem, 5vw, 7rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
*, *::before, *::after { box-sizing: border-box; }
 
html { -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.25rem);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--ember); color: var(--ink); }
 
.meta {
  font-family: var(--sans);
  font-size: clamp(0.6rem, 0.55rem + 0.2vw, 0.72rem);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bone-dim);
  font-weight: 500;
}

.co,
.co-static {
  font-family: "Cinzel", var(--serif);
  font-weight: 550;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
 
.gate {
  position: fixed; inset: 0; z-index: 60;
  display: grid; place-items: center;
  background: var(--ink);
  transition: opacity 1.1s var(--ease), visibility 1.1s;
  pointer-events: auto;
}
.gate__card {
  display: grid; gap: clamp(1.2rem, 3vh, 2rem); justify-items: center;
  text-align: center;
  padding: 0 var(--gutter);
  opacity: 0; transform: translateY(14px);
  transition: opacity 1.1s var(--ease) 0.25s, transform 1.1s var(--ease) 0.25s;
}
.gate--dark .gate__card { opacity: 1; transform: none; }
.gate--open { opacity: 0; visibility: hidden; pointer-events: none; }
.gate__welcome { margin: 0; }
.gate__name {
  margin: 0;
  font-family: "Cinzel", var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 8vw, 4.6rem);
  letter-spacing: 0.18em;
  color: var(--bone);
  line-height: 1.15;
  max-width: 100%;
}
.gate__card .gate__enter { margin-top: 0.4rem; justify-self: center; }
 
body:not(.is-entered) .hero__inner,
body:not(.is-entered) .nav,
body:not(.is-entered) .hero__mark { opacity: 0; }
.hero__inner, .nav, .hero__mark { transition: opacity 1.1s var(--ease) 0.6s; }
.gate--open .gate__card { opacity: 0; transform: none; transition: opacity 0.45s var(--ease); }
 
.nav {
  position: absolute; top: clamp(2rem, 4.6vh, 3.1rem); right: var(--gutter); z-index: 3;
  display: flex; gap: clamp(1rem, 2.6vw, 2.2rem);
}
.nav a {
  font-family: var(--sans);
  font-size: clamp(0.6rem, 0.55rem + 0.2vw, 0.72rem);
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--bone-dim); text-decoration: none;
  padding-bottom: 0.3rem;
  border-bottom: 1px solid transparent;
  text-shadow: 0 1px 16px rgba(6,6,8,0.8);
  transition: color 0.5s var(--ease), border-color 0.5s var(--ease);
}
.nav a:hover, .nav a[aria-current] { color: #fff; border-bottom-color: var(--ember); }
.nav a { position: relative; }
.nav a::after {
  content: ""; position: absolute;
  left: -0.55rem; right: -0.55rem; top: -0.95rem; bottom: -0.85rem;
}
@media (max-width: 480px) { .nav { gap: 0.72rem; } .nav a { letter-spacing: 0.14em; font-size: 0.66rem; } }

.frame {
  position: relative;
  min-height: 100vh;
  min-height: 100lvh;
  display: grid;
  overflow: clip;
}
.frame--tall { min-height: 104vh; min-height: 104lvh; }
 
[style*="--lqip"] {
  background-image: var(--lqip);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #060608;
}
.frame__media { position: absolute; inset: 0; overflow: hidden; }
.frame__media video, .frame__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;  
}
.frame__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(6,6,8,0.55) 0%, rgba(6,6,8,0.12) 34%,
    rgba(6,6,8,0.24) 66%, rgba(6,6,8,0.82) 100%);
}
.frame__media--deep::after {
  background: linear-gradient(to bottom,
    rgba(6,6,8,0.7) 0%, rgba(6,6,8,0.4) 45%, rgba(6,6,8,0.92) 100%);
}
.frame__inner {
  position: relative; z-index: 1;
  display: grid;
  align-content: end;
  gap: 1.1rem;
  padding: clamp(4rem, 10vh, 7rem) var(--gutter) clamp(2.6rem, 8vh, 5.5rem);
  grid-template-columns: minmax(0, 1fr);
}
.frame__inner--center { align-content: center; justify-items: start; }
.frame__inner--corner { align-content: end; justify-items: end; text-align: right; }
 
.display {
  margin: 0;
  font-weight: 350;
  font-size: clamp(1.9rem, 1.1rem + 3.6vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  max-width: min(24ch, 100%);
  text-wrap: balance;
}
.display em { font-style: italic; font-weight: 300; color: #fff; }
.display--xl {
  font-size: clamp(1.95rem, 1rem + 4.2vw, 5.1rem);
  max-width: min(24ch, 100%);
}
.lede {
  margin: 0;
  font-size: clamp(1.2rem, 1rem + 1.3vw, 2rem);
  line-height: 1.38;
  font-weight: 350;
  max-width: min(36ch, 100%);
  color: var(--bone);
}
.display + .lede { margin-top: clamp(0.9rem, 0.45rem + 1.6vw, 2.1rem); }
.lede + .lede { margin-top: clamp(0.3rem, 0.12rem + 0.55vw, 0.75rem); }
.lede--dim { color: var(--bone-dim); }
.lede em { font-style: italic; color: #fff; }


#heroVideo { transition: opacity 2s var(--ease); }
#heroVideo.is-done { opacity: 0; }
.hero__mark {
  position: absolute; top: clamp(1.9rem, 4.5vh, 3rem); left: var(--gutter); z-index: 2;
  color: var(--bone);
  letter-spacing: 0.34em;
}
.hero__mark .co { font-size: clamp(1rem, 2.4vw, 1.4rem); color: #fff; text-shadow: 0 1px 24px rgba(6,6,8,0.8); }
.foot .co { font-size: 1.05em; color: var(--bone); }
.hero__foot {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem;
  margin-top: clamp(1.4rem, 3.5vh, 2.6rem);
}
.hero__foot p { margin: 0; }
.cue { display: inline-flex; align-items: center; gap: 0.7rem; }
.cue i {
  display: block; width: 1px; height: 2.2rem;
  background: linear-gradient(to bottom, var(--bone-dim), transparent);
  animation: cue-drift 2.6s var(--ease) infinite;
}
@keyframes cue-drift {
  0%, 100% { transform: scaleY(0.6); transform-origin: top; opacity: 0.5; }
  50%      { transform: scaleY(1);   opacity: 1; }
}

.chapter.meta {
  margin: 0 0 clamp(1.1rem, 2.6vh, 1.8rem);
  color: #fff;
  font-weight: 600;
}
 
.frame__label {
  position: absolute; z-index: 2;
  top: clamp(2rem, 4.6vh, 3.1rem); left: var(--gutter);
  margin: 0;
  text-shadow: 0 1px 20px rgba(6, 6, 8, 0.95);
}
@supports (padding: env(safe-area-inset-top)) {
  .frame__label { top: calc(clamp(2rem, 4.6vh, 3.1rem) + env(safe-area-inset-top)); }
}
 
.film__num {
  font-style: italic; font-weight: 300;
  font-size: clamp(3.6rem, 2.4rem + 7vw, 9rem);
  line-height: 0.9;
  color: rgba(237, 230, 218, 0.15);
  user-select: none;
}
.film__title {
  margin: 0;
  font-weight: 350;
  font-size: clamp(2rem, 1.2rem + 3.6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  max-width: min(18ch, 100%);
}
.film__note {
  margin: 0; max-width: min(46ch, 100%);
  color: var(--bone-dim);
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.25rem);
}
.play {
  margin-top: 0.6rem;
  display: inline-flex; align-items: center; gap: 0.9rem;
  background: none; border: 0; padding: 0; cursor: pointer;
  color: var(--bone); font-family: var(--sans);
  font-size: 0.7rem; letter-spacing: 0.26em; text-transform: uppercase;
  text-decoration: none;
}
.play .ring {
  width: clamp(3.2rem, 5.5vw, 4.2rem); height: clamp(3.2rem, 5.5vw, 4.2rem);
  border: 1px solid rgba(237, 230, 218, 0.55); border-radius: 999px;
  display: grid; place-items: center;
  transition: transform 0.7s var(--ease), background 0.7s var(--ease);
}
.play .ring svg { width: 34%; fill: var(--bone); transform: translateX(6%); }
.play:hover .ring { transform: scale(1.1); background: rgba(237, 230, 218, 0.08); }
 
.wall { padding: clamp(4.5rem, 12vh, 8rem) 0; background: var(--ink); position: relative; }
.wall__head { padding: 0 var(--gutter); margin-bottom: clamp(1.8rem, 5vh, 3.5rem); display: grid; gap: 1rem; }
.wall__rows { display: grid; gap: clamp(0.5rem, 1.2vw, 1rem); }
.wall__row { overflow: clip; min-width: 0; }
.wall__track {
  display: flex; gap: clamp(0.5rem, 1.2vw, 1rem);
  width: max-content;
  animation: drift 64s linear infinite;
}
.wall__row--rev .wall__track { animation-name: drift-rev; animation-duration: 74s; }
.wall__row.is-paused .wall__track { animation-play-state: paused; }
@keyframes drift     { to { transform: translateX(-50%); } }
@keyframes drift-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.tile {
  flex: 0 0 auto; margin: 0;
  width: clamp(120px, 17vw, 210px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #0c0c10;
  border-radius: 2px;
}
.tile video, .tile img { width: 100%; height: 100%; object-fit: cover; }
 
.strip { position: relative; }
.strip__pin { position: sticky; top: 0; height: 100vh; height: 100lvh; overflow: clip; display: grid; align-content: center; gap: clamp(1.6rem, 4vh, 3rem); }
.strip__head { padding: 0 var(--gutter); }
.strip__belt {
  display: flex; gap: clamp(0.8rem, 1.6vw, 1.6rem);
  padding: 0 var(--gutter);
  width: max-content;
  will-change: transform;
}
.strip__belt figure { margin: 0; flex: 0 0 auto; position: relative; }
.strip__belt img {
  height: clamp(300px, 54svh, 540px); width: auto;
  border-radius: 2px;
}
.strip__belt figcaption {
  position: absolute; left: 0.9rem; bottom: 0.75rem;
  text-shadow: 0 1px 18px rgba(6, 6, 8, 0.95);
}

 
@media (max-width: 46rem) {
  .strip__belt { gap: 0.55rem; }
  .strip__belt figure {
    width: 80vw;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 2px;
  }
  .strip__belt img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: 50% 50%;
    border-radius: 0;
  }
}
 
.nation {
  padding: clamp(5.5rem, 14vh, 10rem) var(--gutter);
  display: grid; gap: clamp(1.8rem, 4.5vh, 2.8rem);
  background: var(--ink);
}
.nation p {
  margin: 0;
  max-width: min(38ch, 100%);
  font-size: clamp(1.2rem, 1rem + 1.3vw, 1.9rem);
  line-height: 1.44;
  font-weight: 350;
}
.nation p + p { color: var(--bone-dim); }
 
.essay {
  padding: clamp(4.5rem, 12vh, 8.5rem) var(--gutter);
  display: grid; gap: clamp(1.4rem, 3.5vh, 2.2rem);
  background: var(--ink);
}
.essay :is(h1, h2) {
  margin: 0;
  font-weight: 350;
  font-size: clamp(1.7rem, 1.1rem + 2.6vw, 3.4rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  max-width: min(22ch, 100%);
  text-wrap: balance;
}
.essay :is(h1, h2) em { font-style: italic; font-weight: 300; color: #fff; }
.essay p {
  margin: 0;
  max-width: 58ch;
  color: #b8b1a7;
  font-family: var(--sans);
  font-size: clamp(0.95rem, 0.9rem + 0.22vw, 1.05rem);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.004em;
}
.essay p strong { color: var(--bone); font-weight: 600; }
.essay p em { font-style: italic; color: var(--bone); }
.essay p + p { margin-top: 1.15em; }
.essay__body { display: grid; gap: clamp(1.1rem, 2.6vh, 1.7rem); min-width: 0; }
 
.essay__lead { display: grid; gap: inherit; min-width: 0; align-content: start; }
@media (min-width: 62rem) {
  .essay--split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: clamp(3rem, 7vw, 8rem);
    align-items: start;
  }
  .essay--split h2 { max-width: min(16ch, 100%); }
  .essay--split .essay__body p { max-width: min(46ch, 100%); }
}
.portrait { margin: clamp(1rem, 3vh, 2rem) 0 0; }
.portrait img { width: 100%; height: auto; border-radius: 2px; }
 
.people {
  --portrait-h: clamp(6.5rem, 15vw, 8.75rem);
  display: grid; gap: clamp(2.2rem, 5vw, 3.5rem);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 46rem) { .people { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.person { min-width: 0; display: grid; gap: 0; align-content: start; }
 
.person__head {
  display: flex;
  align-items: flex-end;
  gap: clamp(0.9rem, 2.4vw, 1.3rem);
  margin: 0 0 clamp(1.1rem, 3vh, 1.6rem);
}
@media (min-width: 46rem) { .person__head { min-height: var(--portrait-h); } }
.person__id { min-width: 0; }
.person__portrait {
  margin: 0;
  flex: 0 0 auto;
  width: calc(var(--portrait-h) * 0.8);    
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0c0c10;
  border-radius: 2px;
}
.person__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%; }
.person .person__name {
  margin: 0 0 0.35rem;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.1rem + 0.8vw, 1.7rem);
  font-weight: 400;
  color: var(--bone);
  line-height: 1.15;
  letter-spacing: 0;
}
 
.person .person__role {
  margin: 0 0 clamp(1rem, 2.4vh, 1.5rem);
  font-family: var(--sans);
  font-size: clamp(0.69rem, 0.6rem + 0.24vw, 0.78rem);
  text-transform: uppercase;
  color: var(--bone-dim);
  font-weight: 500;
  letter-spacing: 0.2em;
}
.person p:not(.person__name):not(.person__role) {
  margin: 0;
  max-width: 46ch;
  color: #b8b1a7;
  font-family: var(--sans);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.05rem);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.004em;
}
.person p:not(.person__name):not(.person__role) + p { margin-top: 1.15em; }
.person em { font-style: italic; color: var(--bone); }
 
.who {
  min-height: 100vh;
  min-height: 100lvh;
  display: grid;
  align-content: center;
  gap: clamp(1.8rem, 5vw, 4.5rem);
  grid-template-columns: minmax(0, 1fr);
  padding: clamp(4rem, 12vh, 8rem) var(--gutter);
}
@media (min-width: 56rem) {
  .who { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr); align-items: center; }
  .who--flip .who__portrait { order: 2; }
}
.who__portrait {
  margin: 0; min-width: 0;
  border-radius: 2px; overflow: hidden; background: #0c0c10;
}
.who__portrait img {
  width: 100%; height: auto; display: block;
  max-height: 74lvh; object-fit: cover;
  object-position: 50% 12%;
}
@media (min-width: 56rem) { .who__portrait img { max-height: 78lvh; } }
.who__text { min-width: 0; }
.who__name {
  margin: 0 0 0.45rem;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.9rem, 1.2rem + 3vw, 3.4rem);
  color: var(--bone); line-height: 1.1; letter-spacing: 0;
}
.who__role {
  margin: 0 0 clamp(1.4rem, 3.5vh, 2.2rem);
  font-family: var(--sans);
  font-size: clamp(0.69rem, 0.6rem + 0.24vw, 0.8rem);
  text-transform: uppercase; color: var(--bone-dim);
  font-weight: 500; letter-spacing: 0.2em;
}
.who__text p:not(.who__name):not(.who__role) {
  margin: 0; max-width: 46ch; color: #b8b1a7;
  font-family: var(--sans);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  font-weight: 400; line-height: 1.75; letter-spacing: 0.004em;
}
.who__text p:not(.who__name):not(.who__role) + p { margin-top: 1.15em; }
 
.pair {
  display: grid;
  gap: clamp(0.4rem, 1vw, 0.9rem);
  background: var(--ink);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 46rem) {
  .pair { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.pair__half {
  margin: 0; min-width: 0;
  position: relative; overflow: hidden;
  background: #0c0c10;
  height: 50lvh;
}
@media (min-width: 46rem) { .pair__half { height: 100lvh; } }
.pair__half img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; object-position: 50% 28%;
}
.pair__half::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 40%;
  background: linear-gradient(to bottom, rgba(6, 6, 8, 0) 0%, rgba(6, 6, 8, 0.72) 100%);
  pointer-events: none;
}
.pair__half figcaption {
  position: absolute; left: clamp(1rem, 3vw, 2.2rem); bottom: clamp(1rem, 4vh, 2.4rem);
  z-index: 1; display: grid; gap: 0.4rem;
}
.pair .pair__name {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.35rem, 1rem + 1.6vw, 2.1rem);
  color: var(--bone); line-height: 1.1; letter-spacing: 0;
  text-shadow: 0 1px 18px rgba(6, 6, 8, 0.95);
}
.pair .pair__role {
  font-family: var(--sans);
  font-size: clamp(0.66rem, 0.6rem + 0.2vw, 0.76rem);
  text-transform: uppercase; color: var(--bone-dim);
  font-weight: 500; letter-spacing: 0.2em;
  text-shadow: 0 1px 18px rgba(6, 6, 8, 0.95);
}
 
.plates {
  display: grid;
  gap: clamp(0.4rem, 1vw, 0.9rem);
  background: var(--ink);
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 46rem) { .plates { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 76rem) { .plates { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.plates figure {
  margin: 0; min-width: 0;
  position: relative; overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0c0c10;
}
.plates img { width: 100%; height: 100%; object-fit: cover; }
.plates figure::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 38%;
  background: linear-gradient(to bottom, rgba(6, 6, 8, 0) 0%, rgba(6, 6, 8, 0.68) 100%);
  pointer-events: none;
}
.plates figcaption {
  position: absolute; left: 0.9rem; bottom: 0.7rem; z-index: 1;
  color: var(--bone);
  text-shadow: 0 1px 18px rgba(6, 6, 8, 0.95);
}
 
.desk { padding-bottom: clamp(6rem, 18vh, 11rem); }
@supports (padding: env(safe-area-inset-bottom)) {
  .desk { padding-bottom: calc(clamp(6rem, 18vh, 11rem) + env(safe-area-inset-bottom)); }
}
 
.contact__mail {
  font-size: clamp(1.5rem, 1rem + 3vw, 3.2rem);
  font-weight: 350;
  text-decoration: none;
  border-bottom: 1px solid var(--bone-faint);
  padding-bottom: 0.1em;
  transition: border-color 0.6s var(--ease);
  width: fit-content; max-width: 100%;
  overflow-wrap: anywhere;
}
.contact__mail:hover { border-color: var(--bone); }
.contact__mail { position: relative; }
.contact__mail::after {
  content: ""; position: absolute;
  left: -0.4rem; right: -0.4rem; top: -0.45rem; bottom: -0.45rem;
}
.foot {
  position: relative; z-index: 1;
  display: grid; gap: 1.2rem;
  padding: clamp(2.2rem, 6vh, 3.5rem) var(--gutter) clamp(1.8rem, 4.5vh, 2.6rem);
}
.foot .credit { max-width: 44ch; line-height: 1.9; }
@media (min-width: 56rem) {
  .foot { grid-template-columns: 1fr auto; align-items: end; }
   
  .foot .credit   { grid-column: 1; grid-row: 1 / span 2; align-self: end; }
  .foot .endmark  { grid-column: 2; grid-row: 1; }
  .foot__social   { grid-column: 2; grid-row: 2; margin: 0; }
}
 
.reach { display: grid; gap: clamp(1.1rem, 2.6vh, 1.6rem); max-width: 40rem; width: 100%; }
.reach form { display: grid; gap: clamp(1rem, 2.4vh, 1.5rem); }
.reach__row { display: grid; gap: clamp(1rem, 2.4vh, 1.5rem); }
@media (min-width: 640px) { .reach__row { grid-template-columns: 1fr 1fr; gap: 1.5rem; } }
.field { display: grid; gap: 0.35rem; }
.field label { margin: 0; }
.field input, .field textarea {
  background: none; border: 0; border-bottom: 1px solid var(--bone-faint);
  color: var(--bone);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.3rem);
  font-weight: 350;
  padding: 0.3em 0;
  border-radius: 0;
  width: 100%;
  transition: border-color 0.6s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--ember); }
.field textarea { resize: none; min-height: 3.2em; line-height: 1.45; }
.field ::placeholder { color: var(--bone-faint); font-style: italic; }
 
.field input[type="file"] {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--bone-dim);
  padding: 0.55em 0;
  cursor: pointer;
}
.field input[type="file"]::file-selector-button {
  margin-right: 0.9rem; padding: 0.42rem 0.9rem;
  border: 1px solid rgba(237, 230, 218, 0.24); border-radius: 999px;
  background: rgba(237, 230, 218, 0.05); color: var(--bone);
  font-family: var(--sans); font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input[type="file"]::-webkit-file-upload-button {
  margin-right: 0.9rem; padding: 0.42rem 0.9rem;
  border: 1px solid rgba(237, 230, 218, 0.24); border-radius: 999px;
  background: rgba(237, 230, 218, 0.05); color: var(--bone);
  font-family: var(--sans); font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field input[type="file"]:hover::file-selector-button,
.field input[type="file"]:focus-visible::file-selector-button {
  border-color: var(--ember); background: rgba(194, 112, 74, 0.12);
}
.field__opt {
  font-size: 0.85em; letter-spacing: 0.12em;
  color: var(--bone-faint); text-transform: none;
}
.field__fine {
  margin: 0.15rem 0 0;
  font-family: var(--sans); font-size: 0.68rem; line-height: 1.55;
  letter-spacing: 0.02em; color: var(--bone-faint); max-width: 44ch;
}
 
.drop { position: relative; }
.drop__btn {
  width: 100%; text-align: left; cursor: pointer;
  background: none; border: 0; border-bottom: 1px solid var(--bone-faint);
  color: var(--bone);
  font-family: var(--serif); font-weight: 350;
  font-size: clamp(1.05rem, 1rem + 0.4vw, 1.3rem);
  padding: 0.3em 2rem 0.3em 0;
  transition: border-color 0.6s var(--ease);
  position: relative;
}
.drop__btn:focus-visible { outline: none; border-bottom-color: var(--ember); }
.drop__btn .drop__placeholder { color: var(--bone-faint); font-style: italic; }
.drop__btn::after {
  content: ""; position: absolute; right: 0.4rem; top: 50%;
  width: 0.5rem; height: 0.5rem;
  border-right: 1px solid var(--bone-dim); border-bottom: 1px solid var(--bone-dim);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.5s var(--ease);
}
.drop.is-open .drop__btn::after { transform: translateY(-30%) rotate(225deg); }
.drop__list {
  position: absolute; left: 0; right: 0; bottom: calc(100% + 1px); z-index: 10;
  margin: 0; padding: 0.35rem 0; list-style: none;
  background: rgba(10, 10, 14, 0.97);
  border: 1px solid var(--bone-faint);
  backdrop-filter: blur(12px);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), visibility 0.45s;
}
.drop.is-open .drop__list { opacity: 1; visibility: visible; transform: none; }
.drop__list li {
  padding: 0.6em 1.1rem;
  font-family: var(--serif); font-weight: 350;
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.2rem);
  color: var(--bone-dim); cursor: pointer;
  transition: color 0.3s var(--ease), background 0.3s var(--ease), padding-left 0.3s var(--ease);
}
.drop__list li:hover, .drop__list li[aria-selected="true"] {
  color: #fff; background: rgba(194, 112, 74, 0.12); padding-left: 1.5rem;
}
.send {
  justify-self: start;
  display: inline-flex; align-items: center; gap: 1rem;
  background: none; border: 1px solid rgba(237, 230, 218, 0.45); border-radius: 999px;
  color: var(--bone); cursor: pointer;
  font-family: var(--sans); font-size: 0.7rem;
  letter-spacing: 0.26em; text-transform: uppercase;
  padding: 1rem 2.2rem;
  text-decoration: none;
  transition: border-color 0.6s var(--ease), background 0.6s var(--ease);
}
.send:hover { border-color: var(--ember); background: rgba(194, 112, 74, 0.1); }
.reach__done { display: none; }
.reach.is-sent form { display: none; }
.reach.is-sent .reach__done { display: grid; gap: 1rem; }
 
.theater {
  position: fixed; inset: 0; z-index: 70;
  background: rgba(4, 4, 6, 0.96);
  display: grid; place-items: center;
  padding: clamp(0.8rem, 3vw, 3rem);
  opacity: 0; visibility: hidden;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
.theater.is-open { opacity: 1; visibility: visible; }
.theater__stage { width: min(1200px, 100%); aspect-ratio: 16/9; background: #000; }
.theater__stage iframe { width: 100%; height: 100%; border: 0; }
.theater__close {
  position: absolute; top: clamp(0.9rem, 3vh, 2rem); right: var(--gutter);
  background: none; border: 1px solid rgba(237, 230, 218, 0.4); border-radius: 999px;
  color: var(--bone); font-family: var(--sans); font-size: 0.65rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.7rem 1.3rem; cursor: pointer;
  transition: background 0.5s var(--ease);
}
.theater__close:hover { background: rgba(237, 230, 218, 0.1); }
 
.upnext {
  width: 100%; height: 100%;
  display: grid; align-content: center; gap: clamp(0.9rem, 2.4vh, 1.6rem);
  padding: clamp(1rem, 3.5vw, 2.4rem);
  background: #0a0a0d;
  overflow: hidden;
}
.upnext__lab {
  margin: 0; font-family: var(--sans); font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--bone-faint);
}
.upnext__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.6rem, 1.4vw, 1.1rem);
  min-height: 0;
}
.upnext__tile {
  display: grid; gap: 0.5rem; align-content: start; min-width: 0;
  padding: 0; border: 0; margin: 0; background: none; color: inherit;
  font: inherit; text-align: left; cursor: pointer;
  -webkit-appearance: none; appearance: none;
  -webkit-tap-highlight-color: transparent;
}
.upnext__tile img {
  width: 100%; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: 2px; background: #14141a; display: block;
  opacity: 0.82; transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.upnext__tile:hover img,
.upnext__tile:focus-visible img { opacity: 1; transform: scale(1.03); }
.upnext__cap { display: grid; gap: 0.15rem; min-width: 0; }
.upnext__t {
  font-family: var(--serif); font-weight: 350; color: var(--bone);
  font-size: clamp(0.82rem, 0.7rem + 0.4vw, 1rem); line-height: 1.25;
  overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}
.upnext__r {
  font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.16em;
  color: var(--bone-faint);
}
@media (max-width: 46rem) {
  .upnext__grid {
    display: flex; overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain; padding-bottom: 0.4rem;
    scrollbar-width: thin; scrollbar-color: var(--bone-faint) transparent;
  }
  .upnext__grid::-webkit-scrollbar { height: 3px; }
  .upnext__grid::-webkit-scrollbar-thumb { background: var(--bone-faint); }
  .upnext__tile { flex: 0 0 min(58vw, 15rem); scroll-snap-align: start; }
}
 
.plate-cap.meta {
  position: absolute; left: var(--gutter); bottom: clamp(1.2rem, 3.5vh, 2rem); z-index: 2;
  text-shadow: 0 1px 20px rgba(6, 6, 8, 0.95);
  color: #fff;           
  font-weight: 600;
}
 
.pageturn {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: clamp(1rem, 2.5vw, 1.8rem);
  row-gap: 0.3rem;
  justify-self: start;
  margin-top: clamp(1.6rem, 4vh, 2.6rem);
  padding-bottom: 0.7rem;
  text-decoration: none;
  border-bottom: 1px solid var(--bone-faint);
  transition: border-color 0.6s var(--ease);
}
.pageturn__label { grid-column: 1; }
.pageturn__title {
  grid-column: 1;
  font-size: clamp(1.35rem, 1rem + 1.8vw, 2.4rem);
  font-weight: 350;
  color: var(--bone);
  line-height: 1.1;
}
.pageturn__arrow { grid-column: 2; grid-row: 1 / span 2; width: clamp(2.2rem, 5vw, 3.2rem); color: var(--bone-dim); }
.pageturn__arrow svg { width: 100%; display: block; transition: transform 0.6s var(--ease); }
.pageturn:hover { border-bottom-color: var(--ember); }
.pageturn:hover .pageturn__arrow svg { transform: translateX(6px); }
.pageturn:hover .pageturn__arrow { color: var(--ember); }
 
.endmark {
  margin: 0;
  line-height: 1.5;
  align-self: end;
}
.endmark .co {
  font-size: clamp(1.15rem, 2.6vw, 1.7rem);
  color: var(--bone);
  text-shadow: 0 1px 24px rgba(6, 6, 8, 0.9);
}
@media (min-width: 56rem) { .endmark { text-align: right; } }




 
.wall__track .tile { cursor: pointer; }
.reel {
  position: fixed; inset: 0; z-index: 80;
  background: #000;
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.reel.is-open { opacity: 1; visibility: visible; }
.reel video { width: 100%; height: 100%; object-fit: contain; }  
.reel__close {
  position: absolute; top: clamp(0.9rem, 3vh, 2rem); right: var(--gutter); z-index: 1;
  background: rgba(6, 6, 8, 0.5); border: 1px solid rgba(237, 230, 218, 0.4); border-radius: 999px;
  color: var(--bone); font-family: var(--sans); font-size: 0.7rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.95rem 1.5rem; cursor: pointer;
}
@supports (padding: env(safe-area-inset-top)) {
  .reel__close { top: calc(clamp(0.9rem, 3vh, 2rem) + env(safe-area-inset-top)); }
}
 
@media (max-width: 46rem) and (orientation: portrait) {
  .frame--cine .frame__media { background: #000; }
  .frame--cine .frame__media video,
  .frame--cine .frame__media img {
    object-fit: contain;
    object-position: 50% 42%;  
  }
  .frame--cine .frame__media::after { background: linear-gradient(to bottom,
    rgba(6,6,8,0) 0%, rgba(6,6,8,0) 60%, rgba(6,6,8,0.55) 100%); }
}
 
.essay--first { padding-top: clamp(9rem, 20vh, 13rem); }
@media (max-width: 46rem) {
  .essay--first { padding-top: clamp(6.5rem, 14vh, 8.5rem); padding-bottom: clamp(1.6rem, 4vh, 2.4rem); }
  .who { min-height: 0; padding-top: clamp(1.6rem, 4vh, 2.6rem); padding-bottom: clamp(2.4rem, 6vh, 3.6rem); }
}
 
@supports (padding: env(safe-area-inset-top)) {
  .hero__mark { top: calc(clamp(1.9rem, 4.5vh, 3rem) + env(safe-area-inset-top)); }
  .nav { top: calc(clamp(2rem, 4.6vh, 3.1rem) + env(safe-area-inset-top)); }
  .frame__inner { padding-bottom: calc(clamp(2.6rem, 8vh, 5.5rem) + env(safe-area-inset-bottom)); }
}
@media (max-width: 480px) {
  .display--xl { font-size: clamp(1.7rem, 7.2vw, 2.1rem); }
  .display { font-size: clamp(1.55rem, 6.6vw, 1.9rem); }
  .lede { font-size: 1.12rem; }
  .film__title { font-size: clamp(1.8rem, 8.4vw, 2.4rem); }
  .film__num { font-size: 3.2rem; }
  .frame__inner { gap: 0.9rem; }
  .hero__foot { flex-wrap: wrap; gap: 0.9rem 2rem; }
  .contact__mail { font-size: 1.35rem; }
   
  .meta { font-size: 0.69rem; letter-spacing: 0.2em; }
   
  .theater__close { font-size: 0.7rem; padding: 0.95rem 1.5rem; letter-spacing: 0.2em; }
   
  .send { font-size: 0.75rem; letter-spacing: 0.22em; }
   
  .field input, .field textarea, .drop__btn { padding-top: 0.62em; padding-bottom: 0.62em; }
}
 
.poster-fallback { display: none; position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
@media (prefers-reduced-motion: reduce) {
  .wall__track { animation: none; flex-wrap: wrap; width: auto; }
  .frame__media video { display: none; }
  .poster-fallback { display: block !important; }
  .cue i { animation: none; }
  * { transition-duration: 0.01s !important; }
}
 
.mark-set { padding: clamp(4rem, 10vh, 7rem) var(--gutter) 0; }
.mark-set__head { display: grid; gap: 1.2rem; margin-bottom: clamp(2.4rem, 6vh, 4rem); }
.caveat {
  padding: 1rem 1.3rem;
  border-left: 2px solid var(--ember);
  color: var(--bone-dim);
  max-width: 60ch;
  font-size: 0.98em;
}
.mark {
  display: grid; gap: clamp(0.8rem, 2vw, 1.6rem);
  margin-top: clamp(2rem, 5vh, 3.2rem);
}
@media (min-width: 60rem) { .mark { grid-template-columns: 2.2fr 1fr 2.2fr; } }
.mark__big { background: #000; display: grid; place-items: center; padding: clamp(1.5rem, 4vw, 3.5rem); }
.mark__big img { width: 100%; max-width: 30rem; }
.mark__small { background: #0c0c10; display: grid; place-items: center; gap: 1.2rem; padding: 2rem; }
.mark__small img { width: 3.5rem; height: 3.5rem; object-fit: contain; }
.mark__small .tiny { display: flex; align-items: center; gap: 0.55rem; }
.mark__small .tiny img { width: 1.1rem; height: 1.1rem; }
.mark__over { position: relative; overflow: hidden; min-height: 14rem; background: #000; }
.mark__over img.frame-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.mark__over img.logo { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 46%; z-index: 1; }
.mark__label { margin: 0 0 0.4rem; }

 
.fwmark { width: 1em; height: 1.18em; display: block; overflow: visible; }
 
.brand {
  display: inline-flex; align-items: center; gap: 0.62em;
  color: var(--bone); text-decoration: none;
}
.brand .fwmark { font-size: 1.55em; margin-top: -0.06em; }
.brand:hover { color: #fff; }
.hero__mark.brand { letter-spacing: normal; }
.hero__mark.brand .co { letter-spacing: 0.34em; }
.foot .brand { color: var(--bone); }
.foot .brand .fwmark { font-size: 1.5em; }
.gate__card .fwmark { font-size: clamp(2.6rem, 9vw, 4.2rem); margin: 0 auto; color: var(--bone); }
 
.work { padding: clamp(4.5rem, 12vh, 8rem) 0; background: var(--ink); }
.work__head { padding: 0 var(--gutter); display: grid; gap: 1rem; margin-bottom: clamp(2rem, 6vh, 3.5rem); }
.work__list { display: grid; gap: clamp(1.5rem, 4vh, 2.6rem); padding: 0 var(--gutter); }
.project {
  display: grid; gap: clamp(1.1rem, 3vw, 2.4rem); align-items: center;
  color: inherit; text-decoration: none; min-width: 0;
}
@media (min-width: 52rem) { .project { grid-template-columns: 1.35fr 1fr; } }
.project__still {
  position: relative; overflow: hidden; background: #000;
  aspect-ratio: 16 / 9; min-width: 0; border-radius: 2px;
}
@media (max-width: 52rem) { .project__still { aspect-ratio: 4 / 3; } }
.project__still img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.project:hover .project__still img { transform: scale(1.03); }
.project__still::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,8,0.55), transparent 55%);
}
.project__text { min-width: 0; display: grid; gap: 0.75rem; align-content: center; }
.project__title {
  margin: 0; font-family: "Cinzel", var(--serif); font-weight: 500;
  font-size: clamp(1.6rem, 4vw, 2.6rem); letter-spacing: 0.06em; color: var(--bone);
  line-height: 1.15;
}
.project:hover .project__title { color: #fff; }
.project__note { margin: 0; color: var(--bone-dim); max-width: 46ch; }
.project__go {
  display: inline-flex; align-items: center; gap: 0.7rem;
  color: var(--ember); margin-top: 0.3rem;
}
.project__go svg { width: 2.1rem; height: 0.7rem; transition: transform 0.5s var(--ease); }
.project:hover .project__go svg { transform: translateX(5px); }
.project--soon { opacity: 0.5; pointer-events: none; }
.project--soon .project__still { display: grid; place-items: center; border: 1px dashed var(--bone-faint); background: transparent; }
.project--soon .project__still span { color: var(--bone-faint); }
 
.frame__phone { display: none; }
.cap-phone { display: none; }

 
@media (max-width: 34rem) {
  .nav { gap: clamp(0.5rem, 2.2vw, 1.6rem); }
  .nav a { letter-spacing: 0.1em; }
}
@media (min-width: 34.01rem) and (max-width: 44rem) {
  .nav a { letter-spacing: 0.16em; }
}
 
@media (max-width: 22rem) {
  .nav { gap: 0.34rem; }
  .nav a { letter-spacing: 0.05em; }
}
@media (max-width: 30rem) {
  .brand { gap: 0.34em; }
  .hero__mark.brand .co { letter-spacing: 0.15em; font-size: 0.72rem; }
  .brand .fwmark { font-size: 1.35em; }
}
@media (max-width: 28rem) {
  .hero__mark.brand .co { display: none; }
  .brand .fwmark { font-size: 1.5em; }
}
 
.hero__mark.brand { position: absolute; }
.hero__mark.brand::after {
  content: ""; position: absolute;
  left: -0.5rem; right: -0.6rem; top: -0.7rem; bottom: -0.7rem;
}

@supports (padding: env(safe-area-inset-bottom)) {
  .foot { padding-bottom: calc(clamp(1.8rem, 4.5vh, 2.6rem) + env(safe-area-inset-bottom)); }
  .strip__pin { padding-bottom: 0; }
}
@media (pointer: coarse) {
  a, button, .tile { -webkit-tap-highlight-color: transparent; }
  .nav a:active,
  .hero__mark:active,
  .contact__mail:active,
  .pageturn:active,
  .play:active,
  .tile:active { opacity: 0.55; transition: opacity 0.08s linear; }
}

 
.say { display: none; }




 
@media (max-width: 46rem) and (orientation: portrait) {
  .frame .frame__label--mid {
    top: 50%; left: 0; right: 0;
    transform: translateY(-50%);
    text-align: center;
    padding: 0 var(--gutter);
  }
}
 
.tile--loop { width: clamp(240px, 34vw, 480px); aspect-ratio: 16 / 9; }
 
@media (max-width: 46rem) and (orientation: portrait) {
  .tile--loop { width: min(60vw, 300px); }    
  .wall__rows { gap: 0.45rem; }
  .wall__track { gap: 0.45rem; }
}






 
@media (max-width: 46rem) and (orientation: portrait) {
  .tile:not(.tile--loop) { width: min(26vw, 120px); }    
}
 
.gate__hill {
  position: relative;
  width: min(100%, 52rem);
  padding-bottom: clamp(3.4rem, 11vh, 6rem);
  isolation: isolate;
}
 
.gate__ridge {
  position: absolute; left: 50%; translate: -50% 0; bottom: 0;
  width: 100vw; height: clamp(5.5rem, 17vh, 10rem);
  z-index: -1;
  display: block;
}
.gate { overflow-x: clip; }
.gate__ridge-far  { fill: #14141c; }
.gate__ridge-near { fill: url(#fwHill); }
.gate__crest { fill: none; stroke: rgba(194,112,74,0.30); stroke-width: 1.4; vector-effect: non-scaling-stroke; }
.gate__hill::after {
  content: ""; position: absolute; z-index: -2;
  left: 14%; right: 6%; bottom: clamp(2.6rem, 8vh, 4.6rem);
  height: clamp(4rem, 12vh, 7rem);
  background: radial-gradient(52% 100% at 64% 100%, rgba(194,112,74,0.34), rgba(194,112,74,0.10) 42%, transparent 70%);
  pointer-events: none;
}
.gate__sign {
  position: relative; z-index: 1;
  white-space: nowrap;
  font-size: clamp(1.8rem, 7.4vw, 4.4rem);
}
.gate__sign .sgn {
  display: inline-block;
  transform: translateY(var(--d, 0));
  text-shadow: 0 2px 10px rgba(6,6,8,0.85);
}
@media (max-width: 46rem) {
  .gate__sign .sgn { transform: translateY(calc(var(--d, 0) * 0.55)); }
}
@media (prefers-reduced-motion: reduce) {
  .gate__hill::after { filter: none; }
}

 
.figs {
  display: grid; gap: clamp(1.6rem, 4vw, 2.8rem);
  grid-template-columns: repeat(auto-fit, minmax(min(11rem, 100%), 1fr));
  margin-top: clamp(2rem, 6vh, 3.4rem);
  padding-top: clamp(1.8rem, 5vh, 2.6rem);
  border-top: 1px solid var(--bone-faint);
}
.fig { display: grid; gap: 0.55rem; align-content: start; min-width: 0; }
.figs .fig__n {
  margin: 0;
  font-family: "Cinzel", var(--serif); font-weight: 500;
  font-size: clamp(1.7rem, 1.1rem + 2.2vw, 2.9rem);
  letter-spacing: 0.04em; color: var(--bone); line-height: 1;
}
.figs .fig__l {
  margin: 0; max-width: 26ch;
  font-family: var(--sans);
  font-size: clamp(0.86rem, 0.83rem + 0.14vw, 0.95rem);
  line-height: 1.6; color: var(--bone-dim);
}
 
.slate { padding: clamp(4.5rem, 13vh, 8.5rem) var(--gutter); background: var(--ink); }
.slate__inner { display: grid; gap: clamp(1.3rem, 3.4vh, 2rem); max-width: 62rem; }
.slate h2 {
  margin: 0; font-weight: 350;
  font-size: clamp(1.7rem, 1.1rem + 2.6vw, 3.4rem);
  line-height: 1.06; letter-spacing: -0.01em;
  max-width: min(20ch, 100%); text-wrap: balance;
}
.slate h2 em { font-style: italic; font-weight: 300; color: #fff; }
.slate p {
  margin: 0; max-width: 58ch; color: #b8b1a7;
  font-family: var(--sans);
  font-size: clamp(0.95rem, 0.9rem + 0.22vw, 1.05rem);
  font-weight: 400; line-height: 1.75; letter-spacing: 0.004em;
}
.slate p + p { margin-top: 0.2rem; }
.slate .chapter::after {
  content: ""; display: block; width: 2.4rem; height: 1px;
  background: var(--ember); margin-top: 0.9rem;
}

 
.sz-head {
  position: relative;
  min-height: 78vh; min-height: 78lvh;
  display: grid; align-content: end;
  gap: clamp(1rem, 2.6vh, 1.5rem);
  padding: clamp(9rem, 22vh, 14rem) var(--gutter) clamp(3.5rem, 9vh, 6rem);
  background: var(--ink);
}
.sz-head h1 {
  margin: 0; font-weight: 350;
  font-size: clamp(2.2rem, 1.2rem + 5.4vw, 5.4rem);
  line-height: 1.02; letter-spacing: -0.015em;
  max-width: min(15ch, 100%); text-wrap: balance; color: var(--bone);
}
.sz-head h1 em { font-style: italic; font-weight: 300; color: #fff; }
.sz-head .lede { max-width: 46ch; }
 
.sz-work { padding: clamp(4.5rem, 12vh, 8rem) 0; background: var(--ink); }
.sz-work__head { padding: 0 var(--gutter); display: grid; gap: 1rem; margin-bottom: clamp(2rem, 6vh, 3.5rem); }
.sz-reels {
  display: grid; gap: clamp(1.6rem, 4vw, 2.8rem);
  grid-template-columns: repeat(auto-fit, minmax(min(21rem, 100%), 1fr));
  padding: 0 var(--gutter);
}
.sz-reel { display: grid; gap: 0.9rem; min-width: 0; align-content: start; }
.sz-reel__btn {
  position: relative; display: block; width: 100%; padding: 0;
  border: 0; background: #000; cursor: pointer;
  aspect-ratio: 16 / 9; overflow: hidden; border-radius: 2px;
  color: inherit; font: inherit;
}
.sz-reel__btn img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.4s var(--ease), opacity 0.6s var(--ease);
  opacity: 0.86;
}
.sz-reel__btn:hover img, .sz-reel__btn:focus-visible img { transform: scale(1.03); opacity: 1; }
.sz-reel__btn::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(6,6,8,0.6), transparent 58%);
}
.sz-reel__ring {
  position: absolute; left: 50%; top: 50%; translate: -50% -50%;
  width: clamp(3rem, 7vw, 4.2rem); aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(237,230,218,0.72);
  display: grid; place-items: center; z-index: 2;
  background: rgba(6,6,8,0.3);
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease);
}
.sz-reel__btn:hover .sz-reel__ring,
.sz-reel__btn:focus-visible .sz-reel__ring { background: rgba(6,6,8,0.62); border-color: #fff; }
.sz-reel__ring svg { width: 34%; fill: var(--bone); transform: translateX(6%); }
.sz-reel__title {
  margin: 0; font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.15rem, 1rem + 0.8vw, 1.55rem);
  color: var(--bone); line-height: 1.2;
}
.sz-reel__meta {
  margin: 0; font-family: var(--sans);
  font-size: clamp(0.86rem, 0.83rem + 0.14vw, 0.94rem);
  line-height: 1.6; color: var(--bone-dim); max-width: 44ch;
}
.sz-reel__run { color: var(--bone-faint); }
 
.sz-yn {
  display: grid; gap: clamp(1.6rem, 4vw, 2.6rem);
  grid-template-columns: repeat(auto-fit, minmax(min(19rem, 100%), 1fr));
  padding: 0 var(--gutter);
  margin-top: clamp(2rem, 6vh, 3.4rem);
}
.sz-yn__item { display: grid; gap: 0.6rem; align-content: start; min-width: 0; padding-top: 1.4rem; border-top: 1px solid var(--bone-faint); }
.sz-yn__tag {
  margin: 0; font-family: var(--sans);
  font-size: clamp(0.66rem, 0.6rem + 0.2vw, 0.74rem);
  text-transform: uppercase; letter-spacing: 0.26em; font-weight: 500;
}
.sz-yn__item--is .sz-yn__tag { color: var(--ember); }
.sz-yn__item--isnt .sz-yn__tag { color: var(--bone-faint); }
.sz-yn__h { margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem); color: var(--bone); line-height: 1.25; }
.sz-yn__p { margin: 0; font-family: var(--sans); font-size: clamp(0.9rem, 0.87rem + 0.15vw, 0.98rem); line-height: 1.7; color: #b8b1a7; max-width: 44ch; }
 
.sz-steps, .sz-credits { display: grid; padding: 0 var(--gutter); margin-top: clamp(2rem, 6vh, 3.4rem); }
.sz-step, .sz-credit {
  display: grid; gap: 0.5rem clamp(1.4rem, 4vw, 3rem);
  padding: clamp(1.4rem, 3.5vh, 2rem) 0;
  border-top: 1px solid var(--bone-faint); min-width: 0;
}
@media (min-width: 52rem) {
  .sz-step, .sz-credit { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.6fr); align-items: baseline; }
}
.sz-step__n, .sz-credit__role {
  margin: 0; font-family: var(--sans);
  font-size: clamp(0.66rem, 0.6rem + 0.2vw, 0.74rem);
  text-transform: uppercase; letter-spacing: 0.24em; color: var(--bone-dim);
}
.sz-step__h, .sz-credit__h {
  margin: 0 0 0.3rem; font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.25rem, 1.05rem + 1vw, 1.8rem); color: var(--bone); line-height: 1.2;
}
.sz-step__p, .sz-credit__p {
  margin: 0; font-family: var(--sans);
  font-size: clamp(0.9rem, 0.87rem + 0.16vw, 1rem);
  line-height: 1.72; color: #b8b1a7; max-width: 56ch;
}
.sz-step__body, .sz-credit__body { min-width: 0; }

 
.navtoggle { display: none; }
@media (max-width: 46rem) {
  .navtoggle {
    display: inline-flex; align-items: center; gap: 0.55rem;
    position: fixed; z-index: 60;
    top: clamp(1.5rem, 4.6vh, 3.1rem); right: var(--gutter);
    margin: 0; padding: 0.5rem 0.8rem;
    border: 0; border-radius: 2px;
    background: rgba(6, 6, 8, 0.44);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
    font-family: var(--sans); font-size: 0.66rem; font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--bone); cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .navtoggle::after {
    content: ""; position: absolute;
    top: -9px; bottom: -9px; left: -6px; right: -6px;
  }
  .navtoggle__bars { display: grid; gap: 4px; width: 15px; }
  .navtoggle__bars i {
    display: block; height: 1px; background: currentColor;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }
  .navtoggle[aria-expanded="true"] .navtoggle__bars i:first-child { transform: translateY(2.5px) rotate(45deg); }
  .navtoggle[aria-expanded="true"] .navtoggle__bars i:last-child  { transform: translateY(-2.5px) rotate(-45deg); }
   
  .nav {
    position: fixed; inset: 0; z-index: 50;
    top: 0; right: 0;
    display: grid; align-content: center; justify-items: start;
    gap: clamp(1.1rem, 3.6vh, 2rem);
    padding: 0 var(--gutter);
     
    background: #060608;
    opacity: 0; visibility: hidden;
    transition: opacity 0.18s var(--ease), visibility 0.18s var(--ease);
  }
  .nav[data-open] { opacity: 1; visibility: visible; }
  .nav a {
    font-family: var(--serif); font-weight: 350;
    font-size: clamp(1.7rem, 1.2rem + 3vw, 2.6rem);
    letter-spacing: 0.01em; text-transform: none;
    color: var(--bone); border-bottom: 0; padding-bottom: 0;
    opacity: 0; transform: translateY(0.5rem);
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  }
  .nav[data-open] a { opacity: 1; transform: none; }
  .nav[data-open] a:nth-child(1) { transition-delay: 0.03s; }
  .nav[data-open] a:nth-child(2) { transition-delay: 0.06s; }
  .nav[data-open] a:nth-child(3) { transition-delay: 0.09s; }
  .nav[data-open] a:nth-child(4) { transition-delay: 0.12s; }
  .nav a[aria-current] { color: #fff; }
  .nav a[aria-current]::before {
    content: ""; position: absolute; left: -0.9rem; top: 50%;
    width: 4px; height: 4px; margin-top: -2px; border-radius: 50%;
    background: var(--ember);
  }
  .nav a::after { content: none; }
  body[data-navopen] { overflow: hidden; }
}
 
.reelwall { padding: clamp(4.5rem, 12vh, 8rem) 0; background: var(--ink); position: relative; }
.reelwall__head { padding: 0 var(--gutter); margin-bottom: clamp(1.8rem, 5vh, 3.5rem); display: grid; gap: 1rem; }
.reelwall__rail {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: min(76vw, 30rem);
  gap: clamp(0.9rem, 2vw, 1.6rem);
  padding: 0 var(--gutter) 1.4rem;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--gutter);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--bone-faint) transparent;
}
.reelwall__rail:focus-visible { outline: 1px solid var(--ember); outline-offset: 4px; }
.reelwall__rail::-webkit-scrollbar { height: 3px; }
.reelwall__rail::-webkit-scrollbar-thumb { background: var(--bone-faint); }
.reelwall__item { margin: 0; scroll-snap-align: start; display: grid; gap: 0.85rem; align-content: start; }
.reelwall__still {
  aspect-ratio: 16 / 9; overflow: hidden;
  background: #0d0d10; border-radius: 2px;
}
.reelwall__still img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
  filter: saturate(0.92);
}
.reelwall__item:hover .reelwall__still img { transform: scale(1.045); filter: saturate(1); }
.reelwall__title { margin: 0; font-family: var(--serif); font-size: 1.12rem; font-weight: 400; color: var(--bone); }
.reelwall__note  { margin: 0; font-family: var(--sans); font-size: 0.78rem; line-height: 1.5; color: var(--bone-dim); }
.reelwall__hint  { margin: 0; padding: 0 var(--gutter); color: var(--bone-faint); }
@media (min-width: 46rem) { .reelwall__hint { display: none; } }


 
.hero__inner {
  padding-top: clamp(6rem, 16vh, 11rem);
  padding-bottom: clamp(6rem, 16vh, 11rem);
  gap: clamp(1.6rem, 3.4vh, 2.6rem);
}
.hero__inner .display--xl { max-width: min(20ch, 100%); }
.hero__foot { margin-top: clamp(2rem, 5vh, 3.4rem); }
 
.reelwall,
.wall,
.slate { padding-block: clamp(6rem, 15vh, 10rem); }
.reelwall__head,
.wall__head { margin-bottom: clamp(2.6rem, 6.5vh, 4.5rem); }
 
.slate__inner > * + * { margin-top: 0; }
.slate__body > p + p { margin-top: 1.5em; }
.slate__lead h2 { margin-bottom: 0; }
@media (min-width: 56rem) {
  .slate__inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    column-gap: clamp(3rem, 7vw, 7.5rem);
    align-items: start;
    max-width: 84rem;
  }
  .slate__inner > .figs { grid-column: 1 / -1; margin-top: clamp(2.4rem, 6vh, 4rem); }
  .slate__body > p { max-width: min(48ch, 100%); }
}
 
.essay { padding-block: clamp(5.5rem, 13vh, 9rem); }
 
.work { padding-block: clamp(6rem, 15vh, 10rem); }
.work__list { gap: clamp(3rem, 7vh, 5rem); }
.work__head { margin-bottom: clamp(2.6rem, 6.5vh, 4.5rem); }
 
.reelwall__item { gap: 1.1rem; }
.reelwall__rail { padding-bottom: 2rem; }
 
.who { padding-block: clamp(2rem, 5vh, 3.5rem); }
.who__text { gap: 0.9rem; }
.who__text p + p { margin-top: 1.1em; }
 
#top.frame--tall .frame__media::after {
  background:
    linear-gradient(100deg,
      rgba(6, 6, 8, 0.86) 0%,
      rgba(6, 6, 8, 0.62) 30%,
      rgba(6, 6, 8, 0.18) 56%,
      rgba(6, 6, 8, 0.00) 76%),
    linear-gradient(to bottom,
      rgba(6, 6, 8, 0.62) 0%,
      rgba(6, 6, 8, 0.22) 30%,
      rgba(6, 6, 8, 0.20) 68%,
      rgba(6, 6, 8, 0.72) 100%);
}
@media (max-width: 46rem) {
  #top.frame--tall .frame__media::after {
    background: linear-gradient(to bottom,
      rgba(6, 6, 8, 0.58) 0%,
      rgba(6, 6, 8, 0.46) 34%,
      rgba(6, 6, 8, 0.52) 66%,
      rgba(6, 6, 8, 0.80) 100%);
  }
}
 
@media (min-width: 56rem) {
  .essay--first h2 { max-width: min(28ch, 100%); }
}
.essay--first { padding-bottom: clamp(1.5rem, 3.5vh, 2.5rem); }
 
.essay__plate {
  margin: clamp(1.6rem, 4vh, 2.8rem) 0 0;
  width: min(100%, 62rem);
  border-radius: 2px; overflow: hidden; background: #0c0c10;
}
.essay__plate img {
  width: 100%; height: auto; display: block;
  filter: brightness(0.94);
}
 
.who--solo { grid-template-columns: minmax(0, 1fr); }
.who--solo .who__text { max-width: min(58ch, 100%); }
 
@media (min-width: 56rem) {
  .who--solo .who__text {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 0.5fr) minmax(0, 1fr);
    column-gap: clamp(2.5rem, 4vw, 4.5rem);
    align-items: start;
  }
  .who--solo .who__name { grid-column: 1; grid-row: 1; }
  .who--solo .who__role { grid-column: 1; grid-row: 2; }
  .who--solo .who__text > p:not(.who__name):not(.who__role) {
    grid-column: 2; max-width: min(48ch, 100%);
  }
  .who--solo .who__text > p:not(.who__name):not(.who__role) + p { margin-top: 1.5em; }
}
 
.closer {
  background: var(--ink);
  padding: clamp(4rem, 11vh, 7rem) 0 clamp(2.5rem, 6vh, 4rem);
}
.closer .frame__inner {
  position: static; display: grid; align-content: start;
  gap: clamp(1.1rem, 3vh, 1.8rem);
  padding: 0 var(--gutter);
}
 
.leadpic { margin: clamp(1.6rem, 4vh, 2.6rem) 0 0; display: grid; gap: 0.7rem; }
.leadpic img { width: 100%; height: auto; display: block; border-radius: 2px; background: #0d0d10; }
.leadpic figcaption { color: var(--bone-faint); }

 
@media (min-width: 52rem) {
  .reelwall__rail {
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: repeat(auto-fit, minmax(min(26rem, 100%), 1fr));
    overflow: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }
  .reelwall__item { scroll-snap-align: none; }
}
 
@media (min-width: 62rem) {
  .leadpic img { aspect-ratio: 4 / 3; object-fit: cover; object-position: 50% 45%; }
}

 
.hero__mark { position: fixed; }
.hero__mark.brand { position: fixed; }
.hero__mark.is-stuck {
  padding: 0.42rem 0.72rem;
  margin: -0.42rem 0 0 -0.72rem;
  border-radius: 2px;
  background: rgba(6, 6, 8, 0.52);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
@media (prefers-reduced-motion: no-preference) {
  .hero__mark { transition: background 0.3s var(--ease), padding 0.3s var(--ease); }
}
 
.totop {
  position: fixed; z-index: 55;
  right: var(--gutter); bottom: calc(1.4rem + env(safe-area-inset-bottom));
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin: 0; padding: 0.55rem 0.85rem;
  border: 0; border-radius: 2px;
  background: rgba(6, 6, 8, 0.52);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  font-family: var(--sans); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bone); cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}
.totop.is-on { opacity: 1; visibility: visible; }
.totop:hover { color: #fff; }
.totop svg { width: 9px; height: 11px; fill: none; stroke: currentColor; stroke-width: 1.3; }
 
.foot__social {
  display: flex; flex-wrap: wrap; justify-content: flex-end;
  gap: 0.55rem 1.1rem;
  margin: 1.4rem 0 0;
}
.foot__social a {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--sans); font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--bone-dim); text-decoration: none;
  transition: color 0.3s var(--ease);
}
.foot__social a:hover { color: var(--bone); }
.foot__social svg { width: 13px; height: 13px; fill: currentColor; }
.foot__social a[data-placeholder] { cursor: default; }
.foot__social a[data-placeholder]:hover { color: var(--bone-dim); }
.foot__social a[data-placeholder]::after {
  content: "soon"; font-size: 0.86em; letter-spacing: 0.1em;
  color: var(--bone-faint); text-transform: lowercase;
}
@media (max-width: 46rem) {
  .foot__social { justify-content: flex-start; }
  .foot__social { gap: 0.1rem 1.1rem; }
  .foot__social a { padding-block: 0.82rem; }
}
 
#end.frame--endpage .frame__inner { align-content: end; padding-bottom: 0; }
#end.frame--endpage .foot { padding-bottom: calc(0.6rem + env(safe-area-inset-bottom)); }
 
.rail { position: relative; }
.rail__ctl {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0 var(--gutter); margin-top: 1.1rem;
}
.rail__btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.4rem; height: 2.4rem; padding: 0;
  flex: 0 0 auto; aspect-ratio: 1 / 1; box-sizing: border-box; line-height: 0;
  -webkit-appearance: none; appearance: none;
  border: 1px solid var(--bone-faint); border-radius: 50%;
  background: transparent; color: var(--bone); cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), opacity 0.3s var(--ease);
}
 
@media (pointer: coarse) {
  .rail__btn { width: 44px; height: 44px; }
}
 
.navtoggle { position: relative; }
.navtoggle::after {
  content: ""; position: absolute; inset: -9px -8px;
}
.rail__btn:hover:not(:disabled) { border-color: var(--ember); color: #fff; }
.rail__btn:disabled { opacity: 0.28; cursor: default; }
.rail__btn svg { width: 15px; height: 11px; fill: none; stroke: currentColor; stroke-width: 1.3; }
.rail__btn--prev svg { transform: scaleX(-1); }
.rail__count {
  margin: 0 0 0 0.4rem;
  font-family: var(--sans); font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.2em; color: var(--bone-faint);
}
.rail .reelwall__hint { display: none; }
 
.cols { padding: clamp(4.5rem, 12vh, 8rem) 0; background: var(--ink); }
.cols__head { padding: 0 var(--gutter); display: grid; gap: 1rem; max-width: 62rem; }
.cols__lede {
  margin: 0; padding: 0 var(--gutter); max-width: 46rem;
  font-family: var(--sans); font-size: clamp(0.9rem, 0.84rem + 0.3vw, 1.02rem);
  line-height: 1.65; color: var(--bone-dim);
}
.cols__head + .cols__lede { margin-top: clamp(1.1rem, 3vh, 1.8rem); }
.cols__lede + .cols__lede { margin-top: 1.15em; }
.cols__grid {
  display: grid; gap: clamp(2rem, 4vw, 3.4rem);
  padding: 0 var(--gutter);
  margin-top: clamp(2.6rem, 7vh, 4.5rem);
}
@media (min-width: 52rem) {
  .cols__grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .cols__grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.col { display: grid; gap: 0.7rem; align-content: start; min-width: 0; }
.col__n {
  margin: 0; padding-top: 1.1rem;
  border-top: 1px solid var(--bone-faint);
  font-family: var(--sans); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--bone-faint);
}
.col__h {
  margin: 0; font-family: var(--serif); font-weight: 350;
  font-size: clamp(1.25rem, 1.05rem + 0.8vw, 1.7rem);
  line-height: 1.2; color: var(--bone);
}
.col__p {
  margin: 0; font-family: var(--sans);
  font-size: 0.84rem; line-height: 1.65; color: var(--bone-dim);
}
 
.comring { background: var(--ink); }
.comring .wall { padding-top: clamp(2rem, 5vh, 3rem); }
.comring__lead {
  display: grid; gap: 1.1rem;
  padding: clamp(4.5rem, 12vh, 8rem) var(--gutter) 0;
  max-width: 52rem;
}
.comring__p {
  margin: 0; font-family: var(--sans);
  font-size: clamp(0.9rem, 0.84rem + 0.3vw, 1.02rem);
  line-height: 1.7; color: var(--bone-dim);
}
.comring__go {
  display: inline-flex; align-items: center; gap: 0.7rem;
  margin: clamp(1.6rem, 4vh, 2.6rem) var(--gutter) clamp(4.5rem, 12vh, 8rem);
  padding: 0.9rem 1.4rem;
  border: 1px solid var(--bone-faint); border-radius: 2px;
  font-family: var(--sans); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--bone); text-decoration: none;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), background 0.3s var(--ease);
}
.comring__go:hover { border-color: var(--ember); background: rgba(194, 112, 74, 0.1); color: #fff; }
.comring__go svg { width: 26px; height: 9px; fill: none; stroke: currentColor; stroke-width: 1.2; }
 
.strip { height: auto !important; }
.strip__pin {
  position: static; height: auto; overflow: visible;
  padding: clamp(4.5rem, 12vh, 8rem) 0;
  display: grid; align-content: start;
}
 
@media (max-width: 46rem) {
  .strip__pin { padding: clamp(2.6rem, 7vh, 4rem) 0 0; gap: 1.1rem; }
  .strip .rail__nav { margin-top: 1rem; }
}
.strip__scroller {
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--gutter);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: var(--bone-faint) transparent;
  padding-bottom: 1.2rem;
}
.strip__scroller::-webkit-scrollbar { height: 3px; }
.strip__scroller::-webkit-scrollbar-thumb { background: var(--bone-faint); }
.strip__belt { transform: none !important; will-change: auto; }
.strip__belt figure { scroll-snap-align: start; }
 
.holder { padding: clamp(4.5rem, 12vh, 8rem) var(--gutter) 0; }
.holder__grid {
  display: grid; gap: clamp(1.6rem, 4vw, 3rem);
  margin-top: clamp(2.4rem, 6vh, 4rem);
}
@media (min-width: 52rem) { .holder__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.holder__card {
  display: grid; gap: 1rem; align-content: start;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border: 1px dashed var(--bone-faint); border-radius: 2px;
}
.holder__pic {
  aspect-ratio: 4 / 5; display: grid; place-content: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--bone-faint); border-radius: 2px;
}
.holder__pic span,
.holder__note {
  font-family: var(--sans); font-size: 0.66rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--bone-faint);
  margin: 0; text-align: center;
}
.holder__note { text-align: left; letter-spacing: 0.16em; }
.holder__name {
  margin: 0; font-family: var(--serif); font-weight: 350;
  font-size: clamp(1.2rem, 1rem + 0.8vw, 1.6rem); color: var(--bone);
}
 
@media (max-width: 46rem) {
  .nav[data-open] ~ .totop,
  body[data-navopen] .totop { opacity: 0; visibility: hidden; }
}
 
.figs .fig:only-child { max-width: 32rem; }

 
@media (min-width: 46.01rem) {
  .nav { position: fixed; z-index: 56; }
  .nav.is-stuck {
    padding: 0.42rem 0.9rem;
    margin: -0.42rem -0.9rem 0 0;
    border-radius: 2px;
    background: rgba(6, 6, 8, 0.52);
    -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  }
  @media (prefers-reduced-motion: no-preference) {
    .nav { transition: background 0.3s var(--ease), padding 0.3s var(--ease); }
  }
}
 
@media (min-width: 52rem) {
  .reelwall__rail {
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 2 * clamp(0.9rem, 2vw, 1.6rem)) / 3);
    grid-template-columns: none;
    overflow-x: auto; overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding-bottom: 1.4rem;
  }
  .reelwall__item { scroll-snap-align: start; }
}
 
.col__media {
  position: relative; display: block;
  aspect-ratio: 16 / 9; overflow: hidden;
  background: #0d0d10; border-radius: 2px;
  margin-bottom: 0.3rem;
  -webkit-tap-highlight-color: transparent;
}
.col__vid {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.92);
  transition: transform 1.1s var(--ease), filter 1.1s var(--ease);
}
.col__media:hover .col__vid { transform: scale(1.04); filter: saturate(1); }
.col__play {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  display: grid; place-items: center;
  width: 46px; height: 46px; border-radius: 999px;
  background: rgba(6, 6, 8, 0.5);
  border: 1px solid rgba(237, 230, 218, 0.4);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  opacity: 0.85; transition: opacity 0.3s var(--ease);
}
.col__media:hover .col__play { opacity: 1; }
.col__play svg { width: 15px; height: 15px; fill: var(--bone); }
@media (pointer: coarse) { .col__play { display: none; } }
.col__media + .col__n { border-top: 0; padding-top: 0.2rem; }
 
.figs--one { grid-template-columns: minmax(0, max-content); }
 
.comring { padding-bottom: clamp(4.5rem, 12vh, 8rem); }
.comring__lead .comring__go { margin: clamp(0.7rem, 2vh, 1.4rem) 0 0; justify-self: start; }

.co--art {
  height: 1.5em; width: auto; display: block;
  filter: drop-shadow(0 1px 14px rgba(6, 6, 8, 0.9));
}
.foot .co--art { filter: none; }
.fwmark--logo { width: 1.1em; height: 1.1em; }
.brand .fwmark--logo { margin-top: 0; }
.gate__card .fwmark--logo { font-size: clamp(2.2rem, 7.6vw, 3.6rem); }

 
:root { --topbar-h: 3.4rem; }
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center;
  gap: clamp(1.1rem, 3vw, 2.6rem);
  height: calc(var(--topbar-h) + env(safe-area-inset-top));
  padding: env(safe-area-inset-top) var(--gutter) 0;
  background: #000;
  border-bottom: 1px solid rgba(237, 230, 218, 0.09);
}
body:not(.is-entered) .topbar { opacity: 0; pointer-events: none; }
.topbar .nav, .topbar .hero__mark { transition: opacity 1.1s var(--ease) 0.6s; }
 
@media (min-width: 46.01rem) {
  .topbar .hero__mark, .topbar .nav {
    position: static; top: auto; right: auto; left: auto; margin: 0;
  }
  .nav.is-stuck, .hero__mark.is-stuck {
    padding: 0; margin: 0; background: none;
    -webkit-backdrop-filter: none; backdrop-filter: none;
  }
}
@media (max-width: 46rem) {
   
  .topbar .hero__mark { position: relative; z-index: 51; top: auto; left: auto; margin: 0; }
  .topbar .navtoggle { position: relative; z-index: 51; top: auto; right: auto; margin: 0; }
  .hero__mark.is-stuck { padding: 0; margin: 0; background: none;
    -webkit-backdrop-filter: none; backdrop-filter: none; }
  .nav { padding-top: calc(var(--topbar-h) + env(safe-area-inset-top)); }
}
 
.frame__inner { padding-top: calc(var(--topbar-h) + env(safe-area-inset-top)); }
.frame__label { top: calc(var(--topbar-h) + env(safe-area-inset-top) + 0.6rem); }
 
.frame:has(> .frame__label) > .frame__inner {
  padding-top: calc(var(--topbar-h) + env(safe-area-inset-top) + 3.1rem);
}
 
.frame:has(> .frame__label) .frame__inner--center > .display { text-wrap: pretty; }
 
.sitefoot {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1rem 2rem;
  padding: clamp(1.4rem, 3.5vh, 2.2rem) var(--gutter)
           calc(clamp(1.4rem, 3.5vh, 2.2rem) + env(safe-area-inset-bottom));
  background: #000;
  border-top: 1px solid rgba(237, 230, 218, 0.09);
}
.sitefoot__mark { margin: 0; color: var(--bone-faint); }
.sitefoot .foot__social { margin: 0; justify-content: flex-end; }
@media (min-width: 46.01rem) {
  .sitefoot { padding-right: calc(var(--gutter) + 8.5rem); }
}
@media (max-width: 46rem) {
  .sitefoot { flex-direction: column; align-items: flex-start; }
  .sitefoot .foot__social { justify-content: flex-start; }
}
 
.frame--cine .frame__media::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg,
    rgba(6, 6, 8, 0.92) 0%,
    rgba(6, 6, 8, 0.86) 26%,
    rgba(6, 6, 8, 0.55) 52%,
    rgba(6, 6, 8, 0.12) 74%,
    rgba(6, 6, 8, 0) 100%);
}
@media (max-width: 62rem) {
  .frame--cine .frame__media::before {
    background: linear-gradient(180deg,
      rgba(6, 6, 8, 0.55) 0%, rgba(6, 6, 8, 0.86) 38%, rgba(6, 6, 8, 0.9) 100%);
  }
}
.frame--cine .frame__inner { position: relative; z-index: 2; }
.frame--cine .frame__inner > * { max-width: 34rem; }
 
.deck { position: relative; padding: 0 var(--gutter); }
.deck__stage {
  position: relative;
  width: min(100%, 62rem); margin: 0 auto;
  aspect-ratio: 16 / 9;
  perspective: 1600px;
  overflow: visible;
}
.deck__drum {
  position: absolute; inset: 0;
  transform-style: preserve-3d;
  transform: translateZ(calc(var(--deck-r, 520px) * -1)) rotateY(var(--deck-a, 0deg));
  transition: transform 0.72s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.deck__drum.is-dragging { transition: none; }
.deck__face {
  position: absolute; inset: 0;
  display: block; text-decoration: none; color: inherit;
  border-radius: 3px; overflow: hidden;
  background: #0d0d10;
  backface-visibility: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  opacity: 0.34; filter: saturate(0.55) brightness(0.6);
  pointer-events: none;
  transition: opacity 0.6s var(--ease), filter 0.6s var(--ease);
}
.deck__face.is-front {
  opacity: 1; filter: none; pointer-events: auto;
}
.deck__still, .deck__still picture, .deck__still img, .deck__still video {
  position: absolute; inset: 0; display: block;
  width: 100%; height: 100%; object-fit: cover;
}
.deck__vid {
  opacity: 0; pointer-events: none;
  transition: opacity 0.55s var(--ease);
}
.deck__face.is-front .deck__vid.is-live { opacity: 1; }
.deck__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: grid; gap: 0.3rem;
  padding: clamp(1.1rem, 3vw, 2rem);
  background: linear-gradient(to top, rgba(6,6,8,0.92), rgba(6,6,8,0.55) 55%, transparent);
}
.deck__t {
  font-family: var(--serif); font-size: clamp(1.05rem, 0.9rem + 0.7vw, 1.45rem);
  color: var(--bone);
}
.deck__n {
  font-family: var(--sans); font-size: clamp(0.74rem, 0.7rem + 0.2vw, 0.84rem);
  line-height: 1.5; color: var(--bone-dim); max-width: 46ch;
}
.deck__play {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%); z-index: 2;
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.6rem 1.1rem 0.6rem 0.95rem;
  border: 1px solid rgba(237, 230, 218, 0.42); border-radius: 999px;
  background: rgba(6, 6, 8, 0.46);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  opacity: 0; transition: opacity 0.45s var(--ease);
}
.deck__face.is-front .deck__play { opacity: 1; }
.deck__play svg { width: 13px; height: 13px; fill: var(--bone); }
.deck__play em {
  font-style: normal; font-family: var(--sans); font-size: 0.64rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--bone);
}
.deck__play--none { border-style: dashed; }
.deck__play--none em { color: var(--bone-faint); }
.deck__face--still { cursor: default; }
.deck__stage { touch-action: pan-y; cursor: grab; }
.deck__stage:active { cursor: grabbing; }
.deck__face, .deck__face img, .deck__still, .deck__still img {
  -webkit-user-drag: none; user-select: none; -webkit-user-select: none;
}
 
.deck .rail__ctl { justify-content: flex-start; padding: 1.4rem var(--gutter) 0; }
 
@media (prefers-reduced-motion: reduce) {
  .deck__stage { perspective: none; aspect-ratio: auto; width: 100%;
    cursor: default; touch-action: auto; }
  .deck__drum {
    position: static; transform: none; transform-style: flat;
    display: grid; grid-auto-flow: column;
    grid-auto-columns: calc((100% - 2 * clamp(0.9rem, 2vw, 1.6rem)) / 3);
    gap: clamp(0.9rem, 2vw, 1.6rem);
    overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1.4rem;
  }
  .deck__face {
    position: relative; inset: auto; aspect-ratio: 16 / 9;
    opacity: 1; filter: none; pointer-events: auto;
    scroll-snap-align: start; box-shadow: none;
  }
  .deck__face .deck__play { opacity: 1; }
}
@media (max-width: 46rem) {
  .deck__stage { perspective: 1100px; }
  .deck__cap { padding: 0.9rem 1rem; }
}

 
.frame--cine .frame__media img { filter: brightness(0.72) saturate(0.92); }
.frame--cine .frame__media::before {
  background: linear-gradient(100deg,
    rgba(6, 6, 8, 0.95) 0%,
    rgba(6, 6, 8, 0.9) 28%,
    rgba(6, 6, 8, 0.66) 54%,
    rgba(6, 6, 8, 0.36) 78%,
    rgba(6, 6, 8, 0.22) 100%);
}
@media (max-width: 62rem) {
  .frame--cine .frame__media::before {
    background: linear-gradient(180deg,
      rgba(6, 6, 8, 0.62) 0%, rgba(6, 6, 8, 0.9) 38%, rgba(6, 6, 8, 0.94) 100%);
  }
}
 
:root { --topbar-h: 4.2rem; }
@media (max-width: 46rem) { :root { --topbar-h: 3.7rem; } }
.topbar {
  gap: clamp(1.4rem, 3.4vw, 3.2rem);
  background:
    linear-gradient(180deg, rgba(237, 230, 218, 0.05) 0 1px, transparent 1px),
    linear-gradient(180deg, #0b0b0e 0%, #000 62%);
  border-bottom: 1px solid rgba(194, 112, 74, 0.18);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5);
}
 
.topbar .brand { gap: 0.58em; }
.topbar .brand .co--art { height: 1.66em; filter: none; }
.topbar .brand .fwmark--logo {
  width: 1.26em; height: 1.26em;
  transition: transform 0.6s var(--ease);
}
.topbar .brand:hover .fwmark--logo { transform: rotate(-7deg); }
@media (min-width: 46.01rem) {
  .topbar .nav { align-items: center; gap: clamp(1.6rem, 2.7vw, 2.8rem); }
  .topbar .nav::before {
    content: ""; flex: 0 0 1px; align-self: center;
    width: 1px; height: 1.15rem;
    background: rgba(237, 230, 218, 0.16);
  }
  .topbar .nav a {
    font-size: 0.7rem; letter-spacing: 0.2em;
    color: rgba(237, 230, 218, 0.68);
    padding: 0.5rem 0 0.45rem;
    border-bottom: 0; text-shadow: none;
    transition: color 0.45s var(--ease);
  }
  .topbar .nav a::before {
    content: ""; position: absolute; left: 0; right: 100%; bottom: 0;
    height: 1px; background: var(--ember);
    transition: right 0.5s var(--ease);
  }
  .topbar .nav a:hover, .topbar .nav a:focus-visible { color: #fff; }
  .topbar .nav a[aria-current] { color: var(--bone); }
  .topbar .nav a:hover::before,
  .topbar .nav a:focus-visible::before,
  .topbar .nav a[aria-current]::before { right: 0; }
}
 
.nav__social { display: flex; align-items: center; gap: 0.55rem; }
.nav__social a { display: inline-flex; align-items: center; }
.nav__social svg { width: 1em; height: 1em; fill: currentColor; flex: 0 0 auto; }
.nav__social-t {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip-path: inset(50%); white-space: nowrap;
}
.nav__social a[data-placeholder] { cursor: default; }
@media (min-width: 46.01rem) {
   
  .topbar .nav { flex: 1; }
  .topbar .nav__social {
    margin-left: auto; font-size: 0.95rem;
    color: rgba(237, 230, 218, 0.5);
  }
  .topbar .nav .nav__social a { padding: 0.35rem; color: inherit; }
  .topbar .nav .nav__social a::before { content: none; }
  .topbar .nav .nav__social a:hover,
  .topbar .nav .nav__social a:focus-visible { color: var(--bone); }
}
@media (max-width: 46rem) {
  .nav .nav__social {
    gap: 1.35rem; font-size: 1.35rem; margin-top: 0.5rem;
    padding-top: clamp(1rem, 3vh, 1.7rem);
    border-top: 1px solid rgba(237, 230, 218, 0.14);
    align-self: stretch; color: rgba(237, 230, 218, 0.62);
  }
  .nav .nav__social a { position: relative; color: inherit; }
  .nav .nav__social a::after {
    content: ""; position: absolute;
    top: -11px; bottom: -11px; left: -10px; right: -10px;
  }
}
@media (max-width: 46rem) {
  .topbar .navtoggle {
    padding: 0.42rem 0.78rem;
    border: 1px solid rgba(237, 230, 218, 0.18); border-radius: 999px;
    background: rgba(237, 230, 218, 0.05);
    -webkit-backdrop-filter: none; backdrop-filter: none;
    font-size: 0.62rem; letter-spacing: 0.18em;
  }
  .topbar .navtoggle[aria-expanded="true"] {
    border-color: var(--ember); color: #fff;
  }
}
 
.deck__stage { width: min(100%, 66rem); }
.deck__face {
  border-radius: 12px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.6);
  opacity: 0.4; filter: saturate(0.5) brightness(0.44);
  transition: opacity 0.6s var(--ease), filter 0.6s var(--ease),
              box-shadow 0.6s var(--ease);
}
.deck__face.is-front {
  box-shadow: 0 44px 110px rgba(0, 0, 0, 0.72),
              0 0 0 1px rgba(237, 230, 218, 0.13) inset;
}
.deck__cap { opacity: 0; transition: opacity 0.55s var(--ease); }
.deck__face.is-front .deck__cap { opacity: 1; }
.deck__cap {
  padding: clamp(1.3rem, 3.4vw, 2.3rem);
  background: linear-gradient(to top,
    rgba(6, 6, 8, 0.94) 0%, rgba(6, 6, 8, 0.72) 42%, transparent 100%);
}
.deck__t { font-size: clamp(1.15rem, 0.95rem + 0.85vw, 1.7rem); line-height: 1.15; }
.deck__n { font-size: clamp(0.76rem, 0.72rem + 0.22vw, 0.88rem); }
.deck__play {
  top: 44%;
  padding: 0.72rem 1.35rem 0.72rem 1.15rem;
  border-color: rgba(237, 230, 218, 0.3);
  background: rgba(10, 10, 13, 0.42);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
  transition: opacity 0.45s var(--ease), background 0.35s var(--ease),
              border-color 0.35s var(--ease), transform 0.35s var(--ease);
}
.deck__face.is-front:hover .deck__play {
  background: var(--ember); border-color: var(--ember); transform: translate(-50%, -50%) scale(1.04);
}
.deck__face.is-front:hover .deck__play svg { fill: #0b0b0e; }
.deck__face.is-front:hover .deck__play em { color: #0b0b0e; }
.deck__play--none { background: rgba(10, 10, 13, 0.3); }
.deck__face--still:hover .deck__play--none { background: rgba(10, 10, 13, 0.3); }
 
.deck .rail__ctl {
  justify-content: center; gap: clamp(1.2rem, 2.6vw, 2.1rem);
  padding: clamp(1.8rem, 4.5vh, 2.8rem) var(--gutter) 0;
}
.deck .rail__btn {
  width: 2.9rem; height: 2.9rem;
  border-color: rgba(237, 230, 218, 0.2);
  background: rgba(237, 230, 218, 0.04);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
              color 0.35s var(--ease), transform 0.35s var(--ease);
}
.deck .rail__btn:hover:not(:disabled) {
  background: var(--ember); border-color: var(--ember); color: #0b0b0e;
  transform: translateY(-2px);
}
.deck .rail__btn svg { width: 17px; height: 12px; }
.deck .rail__count {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  padding: 0; border: 0; overflow: hidden; clip-path: inset(50%);
  white-space: nowrap;
}
.deck__dots { display: flex; align-items: center; gap: 0.55rem; }
@media (max-width: 46rem) {
  .deck__dots { gap: 1.45rem; }
  .deck__dot::after { left: -0.72rem; right: -0.72rem; }
}
.deck__dot {
  position: relative; display: block;
  width: 0.4rem; height: 0.4rem; padding: 0; border: 0; border-radius: 999px;
  flex: 0 0 auto; -webkit-appearance: none; appearance: none;    
  background: rgba(237, 230, 218, 0.24); cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: width 0.5s var(--ease), background 0.5s var(--ease);
}
.deck__dot::after {
  content: ""; position: absolute; left: -0.5rem; right: -0.5rem;
  top: -1.2rem; bottom: -1.2rem;
}
.deck__dot:hover { background: rgba(237, 230, 218, 0.55); }
.deck__dot.is-on { width: 1.6rem; background: var(--ember); }
@media (prefers-reduced-motion: reduce) {
  .deck__dots { display: none; }
  .deck .rail__count { position: static; width: auto; height: auto;
    margin: 0 0 0 0.4rem; clip-path: none; overflow: visible; }
  .deck__cap { opacity: 1; }
}
 
.cols--pillars { padding: clamp(5.5rem, 15vh, 10rem) 0; }
.cols--pillars .cols__grid { margin-top: 0; }
.cols__grid--pillars {
  gap: clamp(2.8rem, 6vw, 6.5rem);
  max-width: 82rem;
}
.cols__grid--pillars .col { gap: 1rem; }
.cols__grid--pillars .col__n {
  padding-top: 1.5rem;
  border-top-color: rgba(194, 112, 74, 0.4);
  font-size: 0.7rem; letter-spacing: 0.3em;
  color: var(--bone-dim);
}
.cols__grid--pillars .col__h {
  font-size: clamp(1.9rem, 1.3rem + 2.1vw, 3.1rem);
  line-height: 1.08; letter-spacing: -0.012em;
}
.cols__grid--pillars .col__p {
  font-size: clamp(1rem, 0.92rem + 0.5vw, 1.24rem);
  line-height: 1.62; max-width: 38ch; color: var(--bone-dim);
}
 
@media (min-width: 62rem) {
  #end .frame__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
    column-gap: clamp(3rem, 7vw, 7rem);
    row-gap: clamp(0.9rem, 2.2vh, 1.5rem);
    align-content: center;
  }
  #end .frame__inner > .chapter  { grid-column: 1; grid-row: 1; align-self: end; }
  #end .frame__inner > .display  { grid-column: 1; grid-row: 2; max-width: 16ch; }
  #end .frame__inner > .reach {
    grid-column: 2; grid-row: 1 / span 3;
    align-self: center; justify-self: end;
    width: 100%; max-width: 38rem;
  }
  #end .frame__inner > .pageturn {
    grid-column: 1; grid-row: 3;
    align-self: end; margin-top: clamp(2rem, 6vh, 4rem);
  }
  #end .frame__inner > .foot {
    grid-column: 1 / -1; grid-row: 4;
    margin-top: clamp(2.4rem, 6vh, 4.5rem);
  }
}
 
@media (min-width: 62rem) {
  #end .foot { grid-template-columns: minmax(0, 1.6fr) auto; column-gap: clamp(2rem, 5vw, 5rem); }
  #end .foot .credit { max-width: 78ch; }
}

#end .frame__media img { filter: brightness(0.66) saturate(0.95); }
#end .frame__media--deep::after {
  background: linear-gradient(to bottom,
    rgba(6, 6, 8, 0.8) 0%,
    rgba(6, 6, 8, 0.64) 28%,
    rgba(6, 6, 8, 0.58) 52%,
    rgba(6, 6, 8, 0.68) 80%,
    rgba(6, 6, 8, 0.72) 100%);
}


 
@media (max-width: 46rem) { .totop { display: none; } }
 
@media (max-width: 46rem) {
  .deck { padding: 0; }
  .deck__stage {
    perspective: none; aspect-ratio: auto; width: 100%;
    cursor: default; touch-action: auto;
  }
  .deck__drum {
    position: static; transform: none; transform-style: flat;
    display: grid; grid-auto-flow: column;
    grid-auto-columns: 86%;
    gap: 0.75rem;
    padding: 0 var(--gutter) 0.4rem;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .deck__drum::-webkit-scrollbar { display: none; }
  .deck__face {
    position: relative; inset: auto; aspect-ratio: 16 / 9;
    opacity: 1; filter: none; pointer-events: auto;
    scroll-snap-align: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
  }
  .deck__face.is-front { box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55); }
  .deck__face .deck__play, .deck__face .deck__cap { opacity: 1; }
  .deck .rail__ctl { padding-top: 1.4rem; }
}
 
button.deck__face {
  padding: 0; border: 0; margin: 0;
  font: inherit; text-align: left; -webkit-appearance: none; appearance: none;
  -webkit-tap-highlight-color: transparent;
}
button.deck__face.is-front { cursor: pointer; }
 
@media (min-width: 46.01rem) { .sitefoot { justify-content: flex-end; } }


 
.frame--opening .frame__media::after {
  background: linear-gradient(to bottom,
    rgba(6, 6, 8, 0.34) 0%, rgba(6, 6, 8, 0) 30%,
    rgba(6, 6, 8, 0) 58%, rgba(6, 6, 8, 0.3) 76%,
    rgba(6, 6, 8, 0.84) 100%);
}
.frame--opening .frame__media img,
.frame--opening .frame__media video { filter: none; }

.frame--opening .hero__inner {
  grid-template-rows: 0.34fr auto 1.66fr;
  align-content: stretch; justify-items: center; text-align: center;
  padding-bottom: clamp(4.5rem, 12vh, 7rem);
}
.opening__card { grid-row: 2; align-self: center; width: 100%; }
.opening__word {
  display: block; margin: 0 auto; height: auto;
  width: min(92vw, 1120px);
  filter: drop-shadow(0 6px 44px rgba(6, 6, 8, 0.85));
}
.opening__line {
  grid-row: 3; align-self: end;
  margin: 0; max-width: 50rem;
  font-family: var(--serif); font-weight: 350;
  font-size: clamp(1.28rem, 1.06rem + 0.95vw, 1.95rem);
  line-height: 1.38; color: var(--bone); text-wrap: balance;
  text-shadow: 0 1px 22px rgba(6, 6, 8, 0.9);
}
.opening__line em { font-style: italic; color: var(--bone-dim); }
 
@keyframes openingRise {
  from { opacity: 0; transform: translate3d(0, 12px, 0); }
  to   { opacity: 1; transform: none; }
}
@keyframes openingFade { from { opacity: 0; } to { opacity: 1; } }
 
.opening__card { animation: none; }
@keyframes openingRise {
  from { opacity: 0; transform: translate3d(0, 12px, 0); }
  to   { opacity: 1; transform: none; }
}
@keyframes openingFade { from { opacity: 0; } to { opacity: 1; } }
 
.opening__card { animation: none; }
.opening__strike { position: relative; display: block; animation: none; }
.opening__strike::before {
  content: ""; position: absolute; pointer-events: none;
  left: 50%; top: 50%; translate: -50% -50%;
  width: 124%; height: 260%;
  background: radial-gradient(ellipse at center,
    rgba(6, 6, 8, 0.52) 0%, rgba(6, 6, 8, 0.34) 44%,
    rgba(6, 6, 8, 0.12) 64%, rgba(6, 6, 8, 0) 76%);
}
@keyframes openingRise {
  from { opacity: 0; transform: translate3d(0, 12px, 0); }
  to   { opacity: 1; transform: none; }
}
@keyframes openingFade { from { opacity: 0; } to { opacity: 1; } }
}
.opening__line { animation: openingRise 0.7s var(--ease) 0.35s both; }
.opening__cue  { animation: openingFade 0.8s var(--ease) 0.7s both; }
 
#top.frame--opening .hero__inner { display: grid; opacity: 1; }
 
.opening__cue {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: clamp(1.6rem, 5vh, 3.2rem);
  display: grid; justify-items: center; gap: 0.55rem;
  text-decoration: none; color: var(--bone-dim);
  transition: color 0.4s var(--ease);
}
.opening__cue span {
  font-family: var(--sans); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
}
.opening__cue svg {
  width: 11px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.2;
  animation: openingCue 2.6s var(--ease) infinite;
}
.opening__cue:hover { color: var(--bone); }
@keyframes openingCue {
  0%, 100% { transform: translateY(0); opacity: 0.55; }
  50%      { transform: translateY(5px); opacity: 1; }
}
 
@media (prefers-reduced-motion: reduce) {
  .opening__card, .opening__strike, .opening__word,
  .opening__line, .opening__cue, .opening__cue svg {
    animation: none; opacity: 1; transform: none; filter: none;
  }
  .opening__cue { transform: translateX(-50%); }
  .opening__word { filter: drop-shadow(0 6px 44px rgba(6, 6, 8, 0.85)); }
}
 
@media (max-width: 46rem) {
  .opening__word { width: min(90vw, 785px); }
  .opening__line { font-size: 1.2rem; max-width: 30ch; }
  .frame--opening .hero__inner { padding-bottom: clamp(5rem, 14vh, 8rem); }
}
 
.topbar .hero__mark.brand .co { display: block; }
@media (max-width: 46rem) {
  .topbar .brand .co--art { height: 1.5rem; }
  .topbar .brand .fwmark--logo { width: 1.85rem; height: 1.85rem; }
}
@media (max-width: 22rem) {
  .topbar .brand .co--art { height: 1.28rem; }
  .topbar { gap: 0.9rem; }
}

 
#top.frame--opening .frame__inner { z-index: auto; }
.opening__vid {
  display: block; margin: 0 auto; height: auto;
  width: min(92vw, 1120px);
  mix-blend-mode: screen;
  filter: brightness(1.22) contrast(1.06);
  animation: openingFade 0.7s var(--ease) both;
  background: transparent;
}
.opening__still { display: none; }
@media (max-width: 46rem) { .opening__vid { width: min(90vw, 785px); } }
 
@media (prefers-reduced-motion: reduce) {
  .opening__vid { display: none; }
  .opening__still { display: block; animation: none; opacity: 1; transform: none; filter: none; }
}
 
.deck__stage { width: min(100%, 33rem); }


 
body:has(.frame--opening) .topbar .hero__mark.brand .co { display: block; }

body:has(.frame--opening) .topbar .brand { display: flex; }

 
.topbar {
  transition: transform 0.42s var(--ease), opacity 0.42s var(--ease),
              background 0.4s var(--ease);
}
.topbar.is-tucked {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
 
.topbar.is-atop {
  transform: none;
  opacity: 1;
  pointer-events: auto;
}
body[data-navopen] .topbar.is-tucked,
body[data-navopen] .topbar.is-atop {
  transform: none; opacity: 1; pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  .topbar { transition: none; }
}
@media (max-width: 46rem) {
  .frame--opening .hero__inner { grid-template-rows: 0.545fr auto 1.455fr; }
}

 
.herobg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.herobg__plate {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  animation: heroPlate 28s var(--ease) infinite;
}
.herobg__plate:nth-child(1) { animation-delay: 0s; }
.herobg__plate:nth-child(2) { animation-delay: 7s; }
.herobg__plate:nth-child(3) { animation-delay: 14s; }
@keyframes heroPlate {
  0%    { opacity: 0; }
  3%    { opacity: 1; }
  22%   { opacity: 1; }
  25%   { opacity: 0; }
  100%  { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .herobg { display: none; } }
 
.frame--cine .frame__media::before {
  background: linear-gradient(100deg,
    rgba(6, 6, 8, 0.97) 0%,
    rgba(6, 6, 8, 0.93) 34%,
    rgba(6, 6, 8, 0.72) 58%,
    rgba(6, 6, 8, 0.4) 80%,
    rgba(6, 6, 8, 0.2) 100%);
}
@media (max-width: 62rem) {
  .frame--cine .frame__media::before {
    background: linear-gradient(180deg,
      rgba(6, 6, 8, 0.66) 0%, rgba(6, 6, 8, 0.92) 34%, rgba(6, 6, 8, 0.95) 100%);
  }
}

 
.frame--opening .hero__inner {
  grid-template-rows: none;
  align-content: end;
}
.frame--opening .opening__card {
  position: absolute;
  top: calc(var(--topbar-h) + env(safe-area-inset-top));
  left: var(--gutter); right: var(--gutter);
  height: calc(41.1% - var(--topbar-h) - env(safe-area-inset-top));
  display: grid; place-items: center;
  grid-row: auto; align-self: auto;
  width: auto;
}
.opening__vid  { width: min(92vw, 1020px); }
.opening__still { width: min(92vw, 1020px); }
@media (max-width: 46rem) {
  .opening__vid, .opening__still { width: min(88vw, 785px); }
}

 
.cols__grid--pillars { max-width: none; }
 
@media (min-width: 62rem) {
  .reelwall__head {
    justify-items: center; text-align: center;
    max-width: 52rem; margin-inline: auto;
  }
  .reelwall__head .display { max-width: none; }
}


.cols__head {
  margin-inline: auto; justify-items: center; text-align: center;
  max-width: 54rem;
}
.cols__lede { margin-inline: auto; text-align: center; }
.comring__lead {
  margin-inline: auto; justify-items: center; text-align: center;
}
.comring__lead .comring__go { justify-self: center; }
.slate__inner { margin-inline: auto; }
 
.cols__grid--3 .col,
.cols__grid--pillars .col { justify-items: center; text-align: center; }
.cols__grid--3 .col__p,
.cols__grid--pillars .col__p { margin-inline: auto; }

.figs { justify-content: center; text-align: center; }
.figs--one { justify-items: center; }
 
.frame--opening .opening__card {
  height: calc(42% - var(--topbar-h) - env(safe-area-inset-top));
}
.frame--opening .frame__media .frame__vid {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
 
button.col__media {
  width: 100%; padding: 0; border: 0; margin: 0 0 0.3rem;
  font: inherit; text-align: left; color: inherit;
  -webkit-appearance: none; appearance: none; cursor: pointer;
}
a.col__media { display: block; width: 100%; cursor: pointer; text-decoration: none; }

 
.opening__strike { display: contents; }
.opening__strike::before { content: none; }
.opening__word {
  display: block; margin: 0 auto; height: auto;
  width: min(92vw, 1020px);
  mix-blend-mode: normal;
  filter: drop-shadow(0 6px 44px rgba(6, 6, 8, 0.85));
  animation: openingFade 0.7s var(--ease) both;
}
@media (max-width: 46rem) { .opening__word { width: min(88vw, 785px); } }
 
@media (max-width: 46rem) and (orientation: portrait) {
  .frame--opening .frame__media::after {
    background:
      radial-gradient(66% 30% at 50% 26%,
        rgba(6,6,8,0.58) 0%, rgba(6,6,8,0.30) 55%, rgba(6,6,8,0) 84%),
      linear-gradient(to bottom,
        rgba(6,6,8,0.55) 0%, rgba(6,6,8,0.12) 34%,
        rgba(6,6,8,0.24) 66%, rgba(6,6,8,0.82) 100%);
  }
}


#top.frame--opening .frame__media::after { background: none; }
.opening__cue { text-shadow: 0 1px 18px rgba(6, 6, 8, 0.95); }
.opening__cue svg { filter: drop-shadow(0 1px 12px rgba(6, 6, 8, 0.95)); }
 
.opening__word {
  -webkit-mask-image: linear-gradient(to bottom, #000 87%, transparent 100%);
          mask-image: linear-gradient(to bottom, #000 87%, transparent 100%);
}
 
.frame__inner > .foot__social {
  margin: 0.4rem 0 0;
  justify-content: flex-start;
  border-top: 1px solid rgba(237, 230, 218, 0.09);
  padding-top: clamp(1rem, 2.5vh, 1.5rem);
}
@media (min-width: 46.01rem) {
  .frame__inner > .foot__social { padding-right: 8.5rem; }
}



.cols--plated .cols__grid--pillars .col {
  justify-items: start; text-align: left; gap: 0.9rem;
}
.cols--plated .cols__grid--pillars .col__p { margin-inline: 0; }
.cols--plated .cols__grid--pillars .col__n { padding-top: 1.2rem; }
.col__plate {
  position: relative; width: 100%;
  aspect-ratio: 16 / 9; overflow: hidden;
  border-radius: 2px; margin-bottom: clamp(0.6rem, 1.6vh, 1.1rem);
  background: #0d0d10;
}
.col__plate img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(0.82) saturate(0.94);
  transition: transform 0.9s var(--ease), filter 0.9s var(--ease);
}
.col__plate::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  border-top: 1px solid rgba(194, 112, 74, 0.42);
  background: linear-gradient(to bottom,
    rgba(6, 6, 8, 0.28) 0%, rgba(6, 6, 8, 0) 42%, rgba(6, 6, 8, 0.45) 100%);
}
.col:hover .col__plate img { transform: scale(1.03); filter: brightness(0.92) saturate(1); }
@media (prefers-reduced-motion: reduce) {
  .col__plate img, .col:hover .col__plate img { transition: none; transform: none; }
}
 
.comring__hero {
  position: relative; isolation: isolate;
  display: grid; align-items: end;
  min-height: min(76vh, 44rem);
}
.comring__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.comring__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: brightness(0.74) saturate(0.92);
}
.comring__media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(6,6,8,0.94) 0%, rgba(6,6,8,0.86) 30%,
                    rgba(6,6,8,0.52) 58%, rgba(6,6,8,0.12) 84%, rgba(6,6,8,0) 100%),
    linear-gradient(to bottom, rgba(6,6,8,0.32) 0%, rgba(6,6,8,0) 30%,
                    rgba(6,6,8,0.18) 70%, rgba(6,6,8,0.86) 100%);
}
.comring--plated .comring__lead {
  position: relative; z-index: 1;
  margin-inline: 0; justify-items: start; text-align: left;
  max-width: 44rem;
  padding: clamp(5rem, 14vh, 9rem) var(--gutter) clamp(3rem, 8vh, 5rem);
}
.comring--plated .comring__lead .comring__go { justify-self: start; margin-inline: 0; }
.comring--plated .comring__p { color: #cfc8bd; }
@media (max-width: 46rem) {
  .comring__hero { min-height: 58vh; }
  .comring--plated .comring__lead { max-width: none; }
}
 
.slate__plate { overflow: hidden; border-radius: 2px; background: #0d0d10; }
.slate__plate img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; aspect-ratio: 4 / 5;
  filter: brightness(0.86) saturate(0.95);
}
@media (min-width: 52.01rem) {
  .slate--split .slate__inner {
    max-width: 78rem;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    grid-template-areas: "plate lead" "plate body";
    grid-template-rows: auto 1fr;
    column-gap: clamp(2.2rem, 4.5vw, 4.5rem);
    align-items: start;
  }
  .slate--split .slate__lead  { grid-area: lead; }
  .slate--split .slate__body  { grid-area: body; }
  .slate--split .slate__plate { grid-area: plate; align-self: stretch; }
  .slate--split .slate__plate img { aspect-ratio: auto; min-height: 100%; }
}
@media (max-width: 52rem) {
  .slate__plate { margin-top: clamp(1.6rem, 4vh, 2.4rem); }
  .slate__plate img { aspect-ratio: 3 / 2; }
}
 
.slate--plate { position: relative; isolation: isolate; overflow: hidden; }
.slate--plate .slate__inner { position: relative; z-index: 1; }
@media (min-width: 52.01rem) {
  .slate--plate .slate__band { position: absolute; inset: 0; z-index: 0; }
  .slate--plate .slate__band img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    filter: brightness(0.66) saturate(0.9);
  }
  .slate--plate .slate__band::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(6,6,8,0.92) 0%, rgba(6,6,8,0.8) 32%,
                rgba(6,6,8,0.44) 62%, rgba(6,6,8,0.16) 88%, rgba(6,6,8,0.06) 100%);
  }
}
@media (max-width: 52rem) {
  .slate--plate .slate__band { margin-top: clamp(2rem, 5vh, 3rem); }
  .slate--plate .slate__band img {
    width: 100%; height: auto; display: block;
    border-top: 1px solid rgba(194, 112, 74, 0.34);
    filter: brightness(0.86) saturate(0.95);
  }
}
 
.slate--plate .slate__lead h2,
.slate--plate .slate__body p,
.slate--plate .chapter { text-shadow: 0 1px 18px rgba(6, 6, 8, 0.92); }

 
.sz-head::after {
  content: ""; display: block;
  width: clamp(3.4rem, 6vw, 5.5rem); height: 1px;
  background: var(--ember);
  margin-top: clamp(1.4rem, 4vh, 2.2rem);
}

@media (min-width: 70rem) {
  .sz-yn { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 70rem) {
  .sz-step { grid-template-columns: minmax(0, 11rem) minmax(0, 17rem) minmax(0, 1fr); }
  .sz-step .sz-step__body { display: contents; }
  .sz-step .sz-step__h { min-width: 0; margin-bottom: 0; }
  .sz-step .sz-step__p { min-width: 0; max-width: 70ch; }
}
 
@media (min-width: 46.01rem) {
  .frame__inner .foot .foot__social { padding-right: 8.5rem; }
}
 
@media (min-width: 56rem) {
  .who--solo {
    min-height: 0;
    padding-block: clamp(2.4rem, 5vh, 3.4rem);
    align-content: start;
  }
  .who--solo + .who--solo { border-top: 1px solid var(--bone-faint); }
}
 
.who__id { display: grid; gap: 0.5rem; min-width: 0; }
@media (min-width: 56rem) {
  .who--solo .who__text { grid-template-rows: auto; }
  .who--solo .who__id { grid-column: 1; grid-row: 1; }
  .who--solo .who__text > p:not(.who__name):not(.who__role) { grid-column: 2; grid-row: 1; }
  .who--solo .who__text > p:not(.who__name):not(.who__role) ~ p { grid-row: auto; }
}



 
.topbar .hero__mark.brand { opacity: 1; transition: none; }
@media (min-width: 46.01rem) {
  .topbar #sitenav { opacity: 1; transition: none; }
}

 
.topbar .brand .co--art { height: 0.94em; }
@media (max-width: 46rem) { .topbar .brand .co--art { height: 1.05rem; } }
@media (max-width: 22rem) { .topbar .brand .co--art { height: 0.92rem; } }
 
.opening__word { width: min(94vw, 1180px); }
@media (max-width: 46rem) { .opening__word { width: min(92vw, 785px); } }
 
.hero__title-name .co--art { height: auto; width: min(76vw, 360px); margin: 0 auto; }

 
body:has(.frame--opening) .topbar .brand { display: none; }
@media (min-width: 46.01rem) {
  body:has(.frame--opening) .topbar .nav::before { content: none; }
}
 
.topbar .brand .co--art { height: 0.86em; }
@media (max-width: 46rem) { .topbar .brand .co--art { height: 0.95rem; } }
@media (max-width: 22rem) { .topbar .brand .co--art { height: 0.84rem; } }
.opening__word { width: min(94vw, 1260px); }
@media (max-width: 46rem) { .opening__word { width: min(92vw, 785px); } }
.hero__title-name .co--art { width: min(76vw, 340px); }
 
.frame--cine .frame__inner > * { max-width: 46rem; }
.frame--cine .lede { max-width: min(38ch, 100%); }
.frame--cine .display { line-height: 1.16; }
 
.credit {
  font-family: var(--sans);
  font-size: clamp(0.72rem, 0.68rem + 0.16vw, 0.82rem);
  letter-spacing: 0.01em;
  text-transform: none;
  font-weight: 400;
  line-height: 1.72;
  color: var(--bone-faint);
  margin: 0;
}
.foot .credit { max-width: 62ch; line-height: 1.72; }
 
.signoff {
  margin: 0;
  display: flex; flex-wrap: wrap; gap: 0.2rem 1.15rem;
  font-family: var(--sans);
  font-size: clamp(0.72rem, 0.68rem + 0.16vw, 0.82rem);
  letter-spacing: 0.01em;
  color: var(--bone-dim);
}
.signoff__grp { white-space: nowrap; }
.signoff__mail { color: var(--bone); text-decoration: none; border-bottom: 1px solid rgba(237,230,218,0.28); }
.signoff__mail:hover { color: #fff; border-bottom-color: var(--ember); }
.signoff .co { letter-spacing: 0.16em; }
 
@media (min-width: 56rem) {
  .foot { padding-right: calc(var(--gutter) + 8.5rem); }
  .foot__social { padding-top: 0.2rem; }
}
.foot--flush { padding-left: 0; }
@media (max-width: 55.99rem) { .foot--flush { padding-right: 0; } }
 
.frame--opening .opening__card {
  top: 38%;
  height: 24%;
  pointer-events: none;
}
 
.opening__word { width: min(96vw, 1560px); }
@media (max-width: 46rem) { .opening__word { width: min(94vw, 785px); } }
 
.opening__word {
  filter:
    drop-shadow(0 0 2px rgba(6, 6, 8, 0.92))
    drop-shadow(0 2px 10px rgba(6, 6, 8, 0.8))
    drop-shadow(0 0 26px rgba(6, 6, 8, 0.5));
}

 
.frame--opening .opening__card {
  top: 32.5%;
  height: 20%;
}
 
.frame--opening .opening__card {
  left: clamp(0.75rem, 1.2vw, 2rem);
  right: clamp(0.75rem, 1.2vw, 2rem);
}
.opening__word { width: 100%; max-width: 1560px; }
@media (max-width: 46rem) { .opening__word { width: 100%; max-width: none; } }

 
.display { line-height: 1.24; }
.slate h2 { line-height: 1.22; }
.frame--cine .display { line-height: 1.24; }
.essay :is(h1, h2) { line-height: 1.24; }
.slate h2 { line-height: 1.24; }

 
.opening__word { filter: none; }
 
.frame--opening .opening__card {
  top: 14%;
  height: 32%;
}
 
.topbar .brand .co--art { height: 1.22em; }
@media (max-width: 46rem) { .topbar .brand .co--art { height: 1.32rem; } }
@media (max-width: 22rem) { .topbar .brand .co--art { height: 1.16rem; } }
 
.opening__word { max-width: 2000px; }

 
.opening__word {
  -webkit-mask-image: none;
          mask-image: none;
}

 
.gate__vid {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: none;
}
.gate__card { position: relative; z-index: 2; }
 
.gate::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(130% 85% at 50% 62%, rgba(6,6,8,0) 0%, rgba(6,6,8,0.35) 55%, rgba(6,6,8,0.78) 100%),
    linear-gradient(to bottom, rgba(6,6,8,0.62) 0%, rgba(6,6,8,0.18) 42%, rgba(6,6,8,0.55) 100%);
}

 
.opening__line em { color: var(--bone); }
.opening__cue { color: var(--bone); }
.opening__cue:hover { color: #fff; }
 
.frame--opening .opening__card {
  top: 11%;
  height: 32%;
}
 
.gate__card { padding: 0 clamp(0.5rem, 2vw, 1.5rem); }
.gate__sign--wide {
  font-size: 8.2vw;
  white-space: nowrap;
  max-width: 100%;
}
.gate__sign--wide .sgn { transform: none; }
@media (max-width: 46rem) { .gate__sign--wide .sgn { transform: none; } }

 
.essay--first {
  justify-items: center;
  text-align: center;
}
.essay--first .essay__lead { justify-items: center; }
.essay--first :is(h1, h2) { margin-inline: auto; }
.essay--first .essay__plate { margin-inline: auto; }
 
.opening__word { width: 90%; max-width: 1800px; }
 
.opening__word { width: 81%; max-width: 1620px; }
 
.cols--pillars { padding-top: clamp(1rem, 2.5vh, 1.75rem); padding-bottom: clamp(3rem, 8vh, 5rem); }
 
.reel .upnext {
  position: absolute; inset: 0;
  width: auto; height: auto;
  align-content: center; justify-content: center;
  background: rgba(6, 6, 8, 0.97);
}
.reel .upnext__grid { max-width: 64rem; margin-inline: auto; width: 100%; }

 
.field input[type="file"] { border-bottom: 0; padding-bottom: 0.15em; }
 
.field__fine {
  margin: 0.6rem 0 0;
  font-size: 0.74rem; line-height: 1.6;
  color: var(--bone-dim);
  max-width: 68ch;
}
.essay .field__fine {
  font-size: 0.74rem; line-height: 1.6;
  color: var(--bone-dim);
  max-width: 68ch;
}
 
#end .field input,
#end .field textarea,
#end .drop__btn { border-bottom-color: rgba(237, 230, 218, 0.26); }
#end .field input:focus,
#end .field textarea:focus,
#end .drop__btn:focus-visible { border-bottom-color: var(--ember); }
 
#end .reach > .signoff { overflow-wrap: anywhere; }
@media (min-width: 62rem) { #end .reach > .signoff { max-width: 34ch; } }

 
.slate p.chapter {
  font-size: clamp(0.6rem, 0.55rem + 0.2vw, 0.72rem);
  letter-spacing: 0.26em;
}
 
@media (min-width: 68rem) {
  .slate:not(.slate--split) .slate__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 28rem);
  }
  .slate--split .slate__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 28rem);
  }
}
 
.cols__grid--pillars .col__n { border-top: 0; padding-top: 0; }
.cols__grid--pillars .col__n::before {
  content: ""; display: block;
  width: 3.5rem; height: 1px;
  background: rgba(194, 112, 74, 0.4);
  margin-bottom: 1.5rem;
}
 
@media (min-width: 68rem) {
  .who--solo .who__text {
    grid-template-columns: minmax(0, 16rem) minmax(0, 30rem);
    column-gap: clamp(2.5rem, 4vw, 4.5rem);
    justify-content: center;
  }
}
 
p:not(.display):not(.say__lead) { text-wrap: pretty; }

 
@media (min-width: 52.01rem) {
  .slate--split .slate__inner {
    grid-template-areas: "lead plate" "body plate";
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  }
   
  .slate--split .slate__plate { align-self: start; }
  .slate--split .slate__plate img {
    aspect-ratio: 1456 / 816;
    min-height: 0;
    height: auto;
  }
}
 
@media (min-width: 68rem) {
  .slate--split .slate__inner {
    grid-template-columns: minmax(0, 28rem) minmax(0, 1fr);
  }
}

 
@media (min-width: 62rem) {
  .frame__inner--split {
    grid-template-columns: minmax(0, 1fr);
     
    grid-template-rows: auto;
    row-gap: clamp(2.2rem, 5vh, 4rem);
  }
  .frame__inner--split > .display,
  .frame__inner--split > .lede { grid-column: 1; }
   
  .frame__inner--split > .frame__aside {
    grid-column: 1;
    grid-row: 1;
    align-self: start;
     
    justify-self: stretch;
    max-width: none;
     
    margin-top: 2rem;
  }
}
 
.frame__aside {
  display: grid;
  gap: clamp(2rem, 4vh, 3.2rem);
  align-content: center;
  max-width: 22rem;
}
.frame__aside .col__n { border-top-color: rgba(194, 112, 74, 0.4); }
.frame__aside .col__p { max-width: 40ch; }
 
@media (min-width: 62rem) {
  .frame__aside {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(2rem, 4vw, 4.5rem);
    row-gap: 0;
    align-content: start;
    align-items: start;
    max-width: none;
  }
  .frame__aside .col { justify-items: stretch; }
  .frame__aside .col__h { font-size: clamp(1.1rem, 0.95rem + 0.45vw, 1.35rem); }
  .frame__aside .col__p { font-size: 0.78rem; max-width: 34ch; }
}

 
@media (min-width: 56rem) {
  .who--solo .who__id + p { padding-top: 5.25em; }
}

 
@media (max-width: 46rem) {
  .deck__n { display: none; }
  .deck__t { font-size: 0.95rem; line-height: 1.2; }
  .deck__cap { padding: 0.75rem 0.9rem; gap: 0; }
  .deck__play { top: 40%; }
  .deck__cap {
    background: linear-gradient(to top, rgba(6, 6, 8, 0.9), rgba(6, 6, 8, 0.5) 62%, transparent);
  }
}
@media (prefers-reduced-motion: reduce) {
  .deck__n { display: none; }
  .deck__t { font-size: 1rem; line-height: 1.2; }
  .deck__cap { padding: 0.75rem 0.9rem; gap: 0;
    background: linear-gradient(to top, rgba(6, 6, 8, 0.9), rgba(6, 6, 8, 0.5) 62%, transparent); }
  .deck__play { top: 40%; }
}
 
@media (max-width: 22.5rem) {
  .signoff__grp { white-space: normal; }
}
.reach, .reach form, .reach__row, .field { min-width: 0; }
.field input, .field textarea, .drop__btn { max-width: 100%; }
.field input[type="file"] { min-width: 0; }
 
#navtoggle::after { top: -0.6rem; bottom: -0.6rem; }
.topbar .brand { padding-block: 0.55rem; }
.field input[type="file"] { padding: 0.75em 0; }
 
.signoff__mail { position: relative; }
.signoff__mail::after {
  content: ""; position: absolute; left: 0; right: 0;
  top: 50%; height: 40px; transform: translateY(-50%);
}
 
@media (max-width: 46rem) {
  .comring__hero {
    align-items: start;
    padding-top: 56.25vw;
  }
  .comring__media {
    bottom: auto; height: auto; aspect-ratio: 16 / 9;
  }
  .comring__media img { filter: brightness(0.92) saturate(0.96); }
  .comring--plated .comring__hero .comring__lead { padding-top: clamp(1.5rem, 5vw, 2.2rem); }
}
 
@media (max-width: 46rem) {
  .slate { padding-block: clamp(4rem, 10vh, 6.5rem); }
  .cols, .cols--pillars, .reelwall, .wall, .work, .sz-work { padding-block: clamp(3.5rem, 8.5vh, 5.5rem); }
  .comring { padding-bottom: clamp(3.5rem, 8.5vh, 5.5rem); }
  .comring--plated .wall { padding-bottom: 0; }
  .slate--plate .slate__band { margin-top: 0; }
  #end .frame__media video { filter: brightness(0.66) saturate(0.95); }
  #end .frame__media--deep::after {
    background: linear-gradient(to bottom,
      rgba(6, 6, 8, 0.84) 0%,
      rgba(6, 6, 8, 0.78) 28%,
      rgba(6, 6, 8, 0.76) 52%,
      rgba(6, 6, 8, 0.76) 80%,
      rgba(6, 6, 8, 0.72) 100%);
  }
  #end .field ::placeholder { color: rgba(237, 230, 218, 0.5); }
  #end .drop__btn .drop__placeholder { color: rgba(237, 230, 218, 0.5); }
  #end .field__fine { color: var(--bone-dim); }
  .col__n, .foot__social a, .deck__play em, .slate p.chapter, .sz-yn__tag, .sz-step__n,
  .navtoggle, .opening__cue span, .comring__go, .pageturn__label {
    font-size: 0.7rem; letter-spacing: 0.2em;
  }
  .field__opt { font-size: 0.92em; }
}
 
@media (max-width: 56rem) and (orientation: landscape) and (max-height: 32rem) {
  .frame--opening .opening__card { height: calc(64% - var(--topbar-h) - env(safe-area-inset-top)); }
  .opening__word { width: min(54vw, 560px); }
  .frame--opening .hero__inner { padding-bottom: clamp(4.6rem, 21vh, 6rem); }
  .opening__line { font-size: clamp(1rem, 0.9rem + 0.7vw, 1.25rem); max-width: 40rem; }
}
 
.comring--plated .wall { padding-bottom: 0; }
 
video:not([controls])::-webkit-media-controls-start-playback-button { display: none !important; -webkit-appearance: none !important; }
video:not([controls])::-webkit-media-controls-panel { display: none !important; }
video:not([controls])::-webkit-media-controls { display: none !important; }
.navtoggle { -webkit-appearance: none; appearance: none; }

@media (max-width: 46rem) and (orientation: portrait) {
  :root {
    --band-top: calc(var(--topbar-h) + env(safe-area-inset-top) + 0.75rem);
    --card-gap: clamp(1.4rem, 5vw, 2.4rem);
  }
   
  .frame--opening .frame__media .frame__vid { object-fit: cover; }
   
  .frame:has(> .frame__media > video):not(.frame--opening) {
    min-height: 0;
  }
  .frame:has(> .frame__media > video):not(.frame--opening) > .frame__media {
    top: var(--card-gap); right: 0; left: 0; bottom: auto;
    height: var(--band-h, 56.25vw);
    background-color: transparent;
  }
  .frame:has(> .frame__media > video):not(.frame--opening) .frame__media video,
  .frame:has(> .frame__media > video):not(.frame--opening) .frame__media img {
    object-fit: cover;
    object-position: 50% 50%;
  }
  .frame:has(> .frame__media > video):not(.frame--opening) .frame__media::after {
    background: none;
  }
  .frame:has(> .frame__media > video):not(.frame--opening) .frame__inner {
    padding-top: calc(var(--card-gap) + var(--band-h, 56.25vw) + 1.6rem);
    padding-bottom: clamp(2.4rem, 7vh, 4rem);
  }
  .frame:has(> .frame__media > video):not(.frame--opening) .plate-cap.meta {
    position: static;
    padding: calc(var(--card-gap) + var(--band-h, 56.25vw) + 1rem)
             var(--gutter) clamp(2rem, 6vh, 3rem);
    text-shadow: none;
  }
}
 
@media (pointer: coarse) {
  .totop {
    background: rgba(6, 6, 8, 0.86);
    -webkit-backdrop-filter: none; backdrop-filter: none;
  }
  .deck__play {
    background: rgba(10, 10, 13, 0.8);
    -webkit-backdrop-filter: none; backdrop-filter: none;
  }
  .deck__play--none { background: rgba(10, 10, 13, 0.7); }
  .drop__list {
    background: rgba(10, 10, 14, 0.99);
    -webkit-backdrop-filter: none; backdrop-filter: none;
  }
}
 
@media (max-width: 46rem) {
  .topbar .nav { transition: opacity 0.18s var(--ease), visibility 0.18s var(--ease); }
}
 
@media (max-width: 46rem) and (orientation: portrait) {
  .frame--opening .frame__media .frame__vid {
    object-fit: cover;
    object-position: 50% 50%;
  }
}
 
@media (max-width: 46rem) {
  .frame--opening .opening__line { display: none; }

  .opening__cue {
    color: var(--bone); gap: 0.7rem;
    bottom: calc(clamp(2.4rem, 6.5vh, 3.4rem) + env(safe-area-inset-bottom));
  }
  .opening__cue span {
    font-size: 0.95rem; font-weight: 700; letter-spacing: 0.2em;
    text-shadow: 0 1px 18px rgba(6, 6, 8, 0.95), 0 0 3px rgba(6, 6, 8, 0.6);
  }
  .opening__cue svg { width: 15px; height: 27px; stroke-width: 1.8; }
   
  .opening__word { width: min(82vw, 785px); }
}
 
body:has(.frame--opening) #end.frame--endpage { background: #000; }
body:has(.frame--opening) #end.frame--endpage > .frame__media { display: none; }
 
@media (max-width: 46rem) {
  body:has(.frame--opening) .topbar.is-atop {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
  }
  body:has(.frame--opening) .frame--opening .frame__inner { padding-top: 0; }
}

.opening__cue--welcome {
  left: var(--gutter); right: var(--gutter); transform: none;
  justify-items: center; text-align: center;
}
.opening__cue--welcome span {
  font-size: 1.05rem; font-weight: 700; letter-spacing: 0.1em;
  color: #fff; text-align: center; white-space: nowrap;
  text-shadow: 0 1px 18px rgba(6, 6, 8, 0.95), 0 0 3px rgba(6, 6, 8, 0.6);
}
@media (max-width: 22rem) {
  .opening__cue--welcome span { font-size: 0.92rem; letter-spacing: 0.07em; }
}
 
@media (max-width: 46rem) and (orientation: portrait) {
  .frame--opening {
    min-height: 100vh;
    min-height: 100lvh;
    background: var(--ink, #060608);
    display: block;
  }
  body:has(.frame--opening) .frame--opening .hero__inner {
    min-height: 100vh;
    min-height: 100lvh;
    display: grid;
    grid-template-rows: 1fr auto auto 1.35fr;
    align-content: stretch;
    justify-items: center;
    text-align: center;
    gap: 0;
    padding: calc(var(--topbar-h) + env(safe-area-inset-top)) var(--gutter)
             calc(clamp(4.5rem, 13vh, 6.5rem) + env(safe-area-inset-bottom));
  }
  .frame--opening .opening__card {
    position: static; height: auto; width: 100%;
    display: block; grid-row: 2; align-self: end;
  }
  .frame--opening .opening__word {
    width: min(60vw, 560px);
    margin: 0 auto;
    filter: none;           
  }
  .frame--opening .opening__card::after {
    content: "";
    display: block;
    width: 46px; height: 1px;
    margin: clamp(1.7rem, 5.5vh, 2.6rem) auto 0;
    background: var(--bone-faint);
  }
  .frame--opening .opening__line {
    display: block; grid-row: 3; align-self: start;
    max-width: 14.5em;
    margin: clamp(1.6rem, 5vh, 2.4rem) auto 0;
    font-size: clamp(1.08rem, 0.98rem + 0.72vw, 1.32rem);
    line-height: 1.55;
    color: var(--bone);
    text-shadow: none;
  }
  .frame--opening .opening__line em { color: var(--bone-dim); }
   
  .frame--opening .opening__cue { display: grid; color: var(--bone-dim); }
  .frame--opening .opening__cue span {
    font-family: var(--sans);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    text-shadow: none;
  }
  .frame--opening .opening__cue svg {
    width: 11px; height: 18px; stroke-width: 1.2; opacity: 0.55;
  }
}
 
@media (max-width: 46rem) and (orientation: portrait) {
  #top.frame:not(.frame--opening) {
    min-height: calc(var(--topbar-h) + env(safe-area-inset-top));
  }
  #top.frame:not(.frame--opening) > .hero__inner { display: none; }
   
  #who > .frame__media {
    top: auto;
    bottom: 0;
  }
  #who .frame__inner {
    padding-top: clamp(1.6rem, 5vh, 2.6rem);
    padding-bottom: calc(var(--card-gap) + var(--band-h, 56.25vw) + clamp(1.6rem, 5vh, 2.6rem));
  }
  #who > .frame__label {
    position: static;
    padding: clamp(2.2rem, 7vh, 3.4rem) var(--gutter) 0;
  }
}
 
@media (max-width: 46rem) and (orientation: portrait) {
  :root {
    --bone:     #fff;
    --bone-dim: #fff;
  }
  .essay p,
  .person p:not(.person__name):not(.person__role),
  .who__text p:not(.who__name):not(.who__role),
  .slate p,
  .sz-yn__p,
  .sz-step__p, .sz-credit__p,
  .comring--plated .comring__p { color: #fff; }
   
  .field__opt, .field__fine, .upnext__lab, .upnext__r,
  .project__go, .project--soon .project__still span,
  .sz-reel__run,
  .sz-yn__item--is .sz-yn__tag, .sz-yn__item--isnt .sz-yn__tag,
  .reelwall__hint, .leadpic figcaption, .rail__count,
  .col__n, .holder__note, .sitefoot__mark,
  .deck__play--none em, .credit { color: #fff; }
   
  .field ::placeholder,
  .drop__btn .drop__placeholder,
  #end .drop__btn .drop__placeholder { color: rgba(255,255,255,0.55); }
}
 
[style*="--lqip"][style*="--lqip"] {
  background-image: var(--lqip);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #060608;
}

 
.cols__grid--craft {
  margin-top: clamp(2.2rem, 5.5vh, 3.4rem);
  gap: clamp(2rem, 4vw, 4.5rem);
}
.cols__grid--craft .col__h {
  font-size: clamp(1.1rem, 0.95rem + 0.45vw, 1.35rem);
}
.cols__grid--craft .col__p { font-size: 0.78rem; max-width: 34ch; }
 
.cols__grid--craft + .cols__grid--3 {
  margin-top: clamp(2.6rem, 6vh, 3.8rem);
}

 
.cols__grid--craft .col { justify-items: stretch; }
 
#end.frame--endpage--black { background-color: var(--ink); }
 
.sz-reels { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 62rem) {
  .sz-reels {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(1.6rem, 3vw, 2.8rem);
  }
  .sz-reel__meta { min-height: 3.2em; }
}
