:root {
  --cream: #faf8f4;
  --cream-deep: #f1ebdc;
  --ink: #1a1815;
  --ink-soft: #3a3833;
  --ink-mute: #837e74;
  --gold: #8a7b4f;
  --gold-soft: #b8ab87;
  --gold-deep: #6b5f3b;
  --rec: #c44b3f;
  --rule: #d9d2c1;
  --rule-soft: #e8e1ce;
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 0;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  overflow-x: hidden;
}

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

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

::selection {
  background: var(--gold);
  color: var(--cream);
}

.util-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  min-height: 46px;
  padding: 14px 28px;
  background: rgba(250, 248, 244, 0.85);
  border-bottom: 0.5px solid var(--rule-soft);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--ink-mute);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.util-bar .right {
  justify-self: end;
  text-align: right;
}

.util-bar nav {
  display: flex;
  gap: 22px;
  justify-self: center;
}

.util-bar nav a {
  position: relative;
  padding-bottom: 2px;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.25s ease;
}

.util-bar nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.util-bar nav a:hover {
  color: var(--gold);
}

.util-bar nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.util-bar .num {
  color: var(--gold);
  font-weight: 500;
}

.marquee {
  margin-top: 46px;
  overflow: hidden;
  padding: 14px 0;
  border-top: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
  background: var(--cream);
}

.marquee .track {
  display: flex;
  gap: 60px;
  width: max-content;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
}

.marquee .track span {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}

.marquee .dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gold);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

section {
  position: relative;
}

[id] {
  scroll-margin-top: 72px;
}

.section-anchor {
  display: block;
  height: 0;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  padding: clamp(28px, 4.5vh, 52px) max(28px, 4vw) clamp(44px, 6vh, 72px);
}

.hero-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.95fr);
  gap: max(28px, 4vw);
  align-items: stretch;
  min-height: clamp(560px, 72vh, 780px);
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  padding-top: clamp(4px, 2.2vh, 26px);
}

.hero-name {
  margin: 0;
  color: #2a2a2a;
  font-family: var(--serif);
  font-size: clamp(4.2rem, 8.6vw, 9.6rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.9;
  white-space: nowrap;
}

.hero-name__line {
  display: inline;
}

.hero-name__line--accent {
  padding-left: 0.16em;
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.hero-portrait {
  position: relative;
  justify-self: end;
  width: min(100%, 620px);
  max-width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border-radius: 5px;
  background: var(--cream-deep);
}

.hero-portrait picture,
.hero-portrait img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-portrait img {
  object-fit: cover;
}

.hero-portrait figcaption {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 9px;
  background: rgba(26, 24, 21, 0.62);
  color: #fff;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.index .kicker,
.section-head .num,
.currently .kicker {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.index {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: max(2vw, 32px);
  margin: 12vh 0;
  padding: 6vh max(28px, 4vw);
  border-top: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
}

.index ol {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.index li {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 20px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 0.5px dotted var(--rule);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 1.1;
  transition: color 0.3s ease;
}

.index li:last-child {
  border-bottom: 0;
}

.index li .num,
.index li .pages {
  color: var(--ink-mute);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
}

.index li .num {
  font-size: 12px;
}

.index li a {
  display: inline-block;
  color: inherit;
  font-style: italic;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease, padding 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.index li:hover,
.index li:hover a {
  color: var(--gold);
}

.index li:hover a {
  padding-left: 16px;
}

.hero .hero-index {
  grid-template-columns: 1fr;
  gap: 22px;
  width: min(100%, 760px);
  margin: clamp(42px, 7vh, 86px) 0 0;
  padding: 28px 0 0;
  border-top: 0.5px solid var(--rule);
  border-bottom: 0;
  content-visibility: visible;
  contain-intrinsic-size: none;
}

.hero .hero-index li {
  font-size: clamp(24px, 3vw, 38px);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: max(2vw, 32px);
  margin-bottom: 6vh;
  padding: 0 max(28px, 4vw);
}

.section-head h2 {
  max-width: 18ch;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-wrap: balance;
}

.section-head h2 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.manifesto {
  padding: 2vh max(28px, 4vw) 12vh;
}

.manifesto .section-head {
  padding: 0;
}

.manifesto-body,
.practice .grid,
.currently .grid,
.reel-index .preamble {
  display: grid;
  grid-template-columns: 1fr 4fr;
  gap: max(2vw, 32px);
}

.manifesto-body {
  grid-template-columns: minmax(140px, 1fr) minmax(420px, 2.2fr) minmax(260px, 1.45fr);
  align-items: stretch;
}

.manifesto-body .left {
  padding-top: 12px;
  color: var(--ink-mute);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.manifesto-body .row {
  display: block;
  margin-bottom: 4px;
}

.manifesto-body .k {
  color: var(--gold);
}

.manifesto-body .copy {
  max-width: 38ch;
}

.manifesto-body .lede {
  margin: 0 0 28px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  text-wrap: pretty;
}

.manifesto-body .copy.manifesto-wide {
  max-width: min(76ch, 100%);
}

.dropcap {
  float: left;
  padding: 8px 14px 0 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 6em;
  font-style: italic;
  font-weight: 500;
  line-height: 0.78;
}

.manifesto-body p.body {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.5;
}

.manifesto-body em {
  color: var(--gold);
  font-style: italic;
}

.manifesto-visual {
  align-self: stretch;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream-deep);
}

.manifesto-visual picture,
.manifesto-visual img {
  display: block;
  width: 100%;
  height: 100%;
}

.manifesto-visual img {
  object-fit: cover;
}

.reel-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 4px;
  background: var(--ink);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 24px 60px -20px rgba(0, 0, 0, 0.35);
  contain: layout paint style;
  isolation: isolate;
  transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1), box-shadow 0.6s ease;
}

.reel-media,
.media-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.reel-media {
  z-index: 1;
  object-fit: cover;
}

.media-fallback {
  display: grid;
  place-items: center;
  z-index: 0;
  background:
    radial-gradient(circle at 30% 18%, rgba(184, 171, 135, 0.38), transparent 28%),
    linear-gradient(155deg, rgba(250, 248, 244, 0.1), transparent 34%),
    linear-gradient(25deg, var(--ink), #28231a);
  color: rgba(250, 248, 244, 0.5);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.media-fallback span {
  padding: 6px 10px;
  border: 0.5px solid rgba(250, 248, 244, 0.16);
  border-radius: 999px;
}

.veil-top,
.veil-bot {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 2;
  height: 38%;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.veil-top {
  top: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
}

.veil-bot {
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}

.tag-row {
  position: absolute;
  top: 14px;
  right: 14px;
  left: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--cream);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: opacity 0.25s ease;
}

.reel-label,
.reel-time,
.reel-aspect {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 5px 10px;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
}

.rec-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rec);
  box-shadow: 0 0 0 3px rgba(196, 75, 63, 0.18);
}

.reel-frame[data-inview="true"] .rec-dot {
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.25);
  }
}

.reel-time {
  font-variant-numeric: tabular-nums;
}

.play {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  transition: opacity 0.25s ease;
}

.play .ring {
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(250, 248, 244, 0.92);
  box-shadow: 0 0 0 0 rgba(250, 248, 244, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.play svg {
  width: 28px;
  height: 28px;
  transform: translateX(2px);
}

.play path {
  fill: var(--ink);
}

.sound-toggle {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0.5px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(26, 24, 21, 0.66);
  color: var(--cream);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.sound-toggle:hover,
.sound-toggle:focus-visible {
  background: rgba(26, 24, 21, 0.86);
}

.sound-toggle svg {
  width: 18px;
  height: 18px;
}

.sound-toggle path {
  fill: none;
  stroke: currentcolor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reel-frame:hover .sound-toggle,
.reel-frame:focus-within .sound-toggle,
.reel-frame[data-state="playing"] .sound-toggle {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reel-frame[data-sound="off"] .sound-icon--on,
.reel-frame[data-sound="on"] .sound-icon--off {
  display: none;
}

.caption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 48px;
  color: var(--cream);
  transition: opacity 0.25s ease;
}

.caption .title {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.15;
}

.caption .sub {
  color: rgba(250, 248, 244, 0.72);
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scrub {
  position: absolute;
  right: 14px;
  bottom: 64px;
  left: 14px;
  z-index: 3;
  height: 2px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.18);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.scrub span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold-soft);
}

.reel-frame[data-state="playing"] .veil-top,
.reel-frame[data-state="playing"] .veil-bot,
.reel-frame[data-state="playing"] .tag-row,
.reel-frame[data-state="playing"] .play,
.reel-frame[data-state="playing"] .caption {
  opacity: 0;
  pointer-events: none;
}

.reel-frame[data-state="playing"] .scrub {
  bottom: 0;
  right: 0;
  left: 0;
  height: 3px;
  opacity: 1;
  border-radius: 0;
}

.work {
  padding: 12vh 0;
  border-top: 0.5px solid var(--rule);
  border-bottom: 0.5px solid var(--rule);
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 60%, var(--cream) 100%);
}

.features {
  display: flex;
  flex-direction: column;
  gap: 18vh;
  padding: 0 max(28px, 4vw);
}

.feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, min(34vw, 430px)) minmax(0, 1fr);
  gap: max(4vw, 48px);
  align-items: center;
}

.feature.flip {
  grid-template-columns: minmax(0, 1fr) minmax(300px, min(34vw, 430px));
}

.feature.flip .reel-host {
  grid-column: 2;
  grid-row: 1;
}

.feature.flip .feat-copy {
  grid-column: 1;
  grid-row: 1;
}

.reel-host {
  width: min(100%, calc(72vh * 9 / 16));
  max-width: 430px;
}

.feature.flip .reel-host {
  justify-self: end;
}

.feature .reel-frame {
  width: 100%;
}

.feat-copy {
  display: flex;
  max-width: 56ch;
  flex-direction: column;
  gap: 22px;
}

.feat-copy .kicker {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.feat-copy .kicker::before {
  width: 22px;
  height: 1px;
  background: var(--gold);
  content: "";
}

.feat-copy h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 0.96;
  text-wrap: balance;
}

.feat-copy h3 em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

.feat-copy .dek {
  max-width: 36ch;
  margin: 0;
  color: var(--ink-mute);
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  font-style: italic;
  line-height: 1.4;
}

.feat-copy p.body {
  max-width: 48ch;
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tags li {
  padding: 6px 12px;
  border: 0.5px solid var(--rule);
  border-radius: 999px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.feat-copy .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: baseline;
  padding-top: 16px;
  border-top: 0.5px solid var(--rule);
  color: var(--ink-mute);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feat-copy .meta .k {
  color: var(--gold);
}

.feat-copy .meta .sep {
  color: var(--rule);
}

.reel-index {
  position: relative;
  height: calc(100vh + var(--reel-scroll-distance, 1200px));
  min-height: 100vh;
  overflow: clip;
  padding: 0;
  background: var(--ink);
  color: var(--cream);
}

.reel-pin {
  --reel-pin-y: clamp(24px, 6vh, 72px);

  position: sticky;
  top: 0;
  display: flex;
  min-height: 100svh;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: var(--reel-pin-y) 0 max(18px, calc(var(--reel-pin-y) * 0.75));
}

.reel-index .section-head {
  margin-bottom: clamp(18px, 3vh, 38px);
}

.reel-index .section-head .num,
.reel-index .section-head h2 em {
  color: var(--gold-soft);
}

.reel-index .section-head h2 {
  color: var(--cream);
}

.reel-index .preamble {
  align-items: end;
  margin-bottom: clamp(22px, 4vh, 52px);
  padding: 0 max(28px, 4vw);
}

.reel-index .copy {
  max-width: 38ch;
  margin: 0;
  color: var(--cream);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 28px);
  font-style: italic;
  line-height: 1.35;
  opacity: 0.85;
}

.reel-index .copy em {
  color: var(--gold-soft);
}

.scroll-hint {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-self: end;
  color: var(--gold-soft);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.scroll-hint .arrow {
  display: inline-block;
  animation: nudge 2.4s ease-in-out infinite;
}

@keyframes nudge {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(6px);
  }
}

.reel-track {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0 max(28px, 4vw);
  padding: 0 0 28px;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  touch-action: pan-x;
  -webkit-overflow-scrolling: touch;
}

.reel-track::-webkit-scrollbar {
  display: none;
}

.tile {
  display: flex;
  width: clamp(150px, min(22vw, calc((100svh - 330px) * 0.5625)), 260px);
  flex: 0 0 auto;
  flex-direction: column;
  gap: 14px;
}

.tile .reel-frame {
  width: 100%;
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.tile-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 2px;
  color: rgba(232, 225, 206, 0.7);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fade-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  width: 80px;
  background: linear-gradient(270deg, var(--ink), rgba(26, 24, 21, 0));
  pointer-events: none;
}

.practice {
  padding: 14vh max(28px, 4vw);
}

.practice .section-head {
  padding: 0;
}

.disciplines {
  margin: 0;
  padding: 0;
  border-top: 0.5px solid var(--rule);
  list-style: none;
}

.disciplines li {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 24px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 0.5px solid var(--rule);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  transition: padding 0.4s cubic-bezier(0.7, 0, 0.3, 1), color 0.3s ease;
}

.disciplines li:hover {
  padding-left: 14px;
  color: var(--gold);
}

.disciplines .num {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.disciplines .name {
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.1;
}

.disciplines .name em {
  margin-left: 8px;
  color: var(--ink-mute);
  font-style: italic;
  font-weight: 400;
}

.tools-cell {
  max-width: 38ch;
  color: var(--ink-mute);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-align: right;
  text-transform: uppercase;
}

.spec-sheet {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 8vh;
  padding: 28px;
  border: 0.5px solid var(--rule);
  border-radius: 2px;
  background: var(--cream-deep);
}

.spec-sheet .cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-sheet .k,
.currently .info-grid .k {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.spec-sheet .v {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.3;
}

.spec-sheet .v em {
  color: var(--ink-mute);
  font-style: italic;
}

.currently {
  padding: 16vh max(28px, 4vw) 14vh;
  border-top: 0.5px solid var(--rule);
  background: var(--cream);
}

.currently h2 {
  max-width: 18ch;
  margin: 0 0 6vh;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 92px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  text-wrap: balance;
}

.currently h2 em {
  color: var(--gold);
  font-style: normal;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px 40px;
  padding-top: 32px;
  border-top: 0.5px solid var(--rule);
}

.info-grid .k {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
}

.info-grid .v {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.3;
}

.info-grid a {
  border-bottom: 0.5px solid var(--gold-soft);
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.info-grid a:hover {
  border-color: var(--ink);
  color: var(--gold);
}

.write {
  display: inline-flex;
  gap: 16px;
  align-items: center;
  margin-top: 8vh;
  padding: 22px 32px 22px 40px;
  border: 0.5px solid var(--rule);
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 48px);
  font-style: italic;
  text-decoration: none;
  transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}

.write .arrow {
  display: inline-block;
  color: var(--gold);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.write:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--cream);
}

.write:hover .arrow {
  color: var(--gold-soft);
  transform: translateX(8px);
}

.colophon {
  padding: 8vh max(28px, 4vw) 5vh;
  border-top: 0.5px solid var(--rule);
  background: var(--cream);
  color: var(--ink-mute);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.colophon .row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 40px;
  align-items: baseline;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 0.5px solid var(--rule);
}

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

.colophon .row-center {
  justify-content: center;
  text-align: center;
}

.colophon .k {
  color: var(--gold);
}

.big-name {
  overflow: hidden;
  padding: 4vh 0 2vh;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(80px, 18vw, 280px);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.9;
  text-align: center;
  text-transform: none;
  white-space: nowrap;
}

.big-name .accent {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.1s cubic-bezier(0.6, 0, 0.2, 1), transform 1.1s cubic-bezier(0.6, 0, 0.2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal-delay-3 {
  transition-delay: 0.36s;
}

@media (hover: hover) and (pointer: fine) {
  .reel-frame:hover {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1), 0 36px 80px -22px rgba(0, 0, 0, 0.45);
    transform: translateY(-6px);
    will-change: transform;
  }

  .reel-frame:hover .play .ring {
    box-shadow: 0 0 0 14px rgba(250, 248, 244, 0.12);
    transform: scale(1.08);
  }

  .tile:hover .reel-frame {
    transform: translateY(-6px) scale(1.02);
  }
}

@media (max-height: 760px) and (min-width: 769px) {
  .reel-pin {
    --reel-pin-y: clamp(18px, 4vh, 34px);

    justify-content: start;
  }

  .reel-index .section-head {
    margin-bottom: 16px;
  }

  .reel-index .section-head h2 {
    font-size: clamp(34px, 4vw, 56px);
  }

  .reel-index .preamble {
    margin-bottom: 18px;
  }

  .reel-index .copy {
    font-size: clamp(16px, 1.6vw, 22px);
    line-height: 1.25;
  }

  .scroll-hint {
    font-size: 9px;
  }

  .reel-track {
    padding-bottom: 12px;
  }

  .tile {
    gap: 10px;
  }

  .tile-caption {
    font-size: 9px;
  }
}

@media (max-width: 880px) {
  .util-bar {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px 16px;
    font-size: 9.5px;
  }

  .util-bar nav {
    display: none;
  }

  .marquee {
    margin-top: 40px;
  }

  .hero-stage,
  .index,
  .section-head,
  .manifesto-body,
  .feature,
  .practice .grid,
  .currently .grid,
  .reel-index .preamble {
    grid-template-columns: 1fr;
  }

  .feature.flip {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    gap: 40px;
    min-height: 0;
  }

  .hero-left {
    order: 2;
  }

  .hero-portrait {
    order: 1;
    width: min(100%, 460px);
    height: auto;
  }

  .hero-name {
    font-size: clamp(3.4rem, 15vw, 6rem);
  }

  .hero-name__line--accent {
    padding-left: 0.12em;
  }

  .index,
  .section-head,
  .manifesto-body,
  .practice .grid,
  .currently .grid,
  .reel-index .preamble {
    gap: 16px;
  }

  .manifesto-body .copy.manifesto-wide {
    max-width: 38ch;
  }

  .manifesto-visual {
    min-height: 420px;
  }

  .feature .reel-host {
    grid-column: 1;
    grid-row: 1;
    width: min(100%, 380px);
    max-width: 380px;
    justify-self: start;
  }

  .feature.flip .reel-host {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  .feature .feat-copy,
  .feature.flip .feat-copy {
    grid-column: 1;
    grid-row: 2;
  }

  .disciplines li {
    grid-template-columns: 40px 1fr;
  }

  .tools-cell {
    grid-column: 1 / -1;
    padding-top: 6px;
    padding-left: 64px;
    text-align: left;
  }

  .play .ring {
    width: 72px;
    height: 72px;
  }

  .reel-index {
    height: auto;
    overflow: hidden;
    padding: 14vh 0;
  }

  .reel-pin {
    position: relative;
    min-height: 0;
    padding: 0;
  }
}

@media (max-width: 560px) {
  .hero,
  .manifesto,
  .practice,
  .currently,
  .features,
  .index,
  .section-head,
  .reel-index .preamble,
  .reel-track,
  .colophon {
    padding-right: 20px;
    padding-left: 20px;
  }

  .index li {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }

  .index li .pages {
    grid-column: 2;
  }

  .reel-track {
    margin-right: 20px;
    margin-left: 20px;
    padding-right: 0;
    padding-left: 0;
  }

  .hero {
    padding-top: 8vh;
  }

  .hero .hero-index {
    padding-right: 0;
    padding-left: 0;
  }

  .write {
    width: 100%;
    justify-content: center;
    padding: 20px 24px;
  }

  .big-name {
    white-space: normal;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
