@font-face {
  font-family: "Pacifico";
  src: url("../fonts/pacifico-400-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --blue: #1714e8;
  --blue-deep: #100ec4;
  --paper: #f3f0e7;
  --paper-bright: #fbfaf5;
  --ink: #11110f;
  --muted: #74736c;
  --signal: #ff5c35;
  --line-light: rgba(255, 255, 255, 0.28);
  --line-dark: rgba(17, 17, 15, 0.2);
  --ease-fluid: cubic-bezier(.16, 1, .3, 1);
  --site-header-height: clamp(138px, 8.4vw, 156px);
  --display: "Times New Roman", "Songti SC", "STSong", "SimSun", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: auto;
  background: var(--blue);
}

html.lenis,
html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: clip; }
.lenis.lenis-smooth iframe { pointer-events: none; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body > .site-header,
body > main,
body > .site-footer {
  filter: brightness(1.05);
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img, svg { display: block; max-width: 100%; }

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

::selection { color: var(--paper-bright); background: var(--signal); }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--paper-bright);
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  width: 100%;
  min-height: var(--site-header-height);
  padding: 0;
  color: var(--paper-bright);
  border-bottom: 1px solid var(--line-light);
  font-family: var(--display);
  font-size: clamp(12.8px, .95vw, 18px);
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: background .25s ease, min-height .25s ease, color .25s ease;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  padding-top: clamp(34px, 2.05vw, 40px);
}
.site-nav > a { flex: 0 0 auto; text-align: center; }
.site-header a { position: relative; width: max-content; }
.site-header a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.site-header a:hover::after,
.site-header a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.site-header .site-nav__link.is-current::after { transform: scaleX(1); }

.page-home.admin-bar .site-header { top: 32px; }

.brand-lockup {
  display: grid;
  justify-items: center;
  padding: 0;
  font-family: var(--display);
  font-size: clamp(25px, 1.95vw, 38px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: .03em;
  transform: none;
}
.nav-menu { display: none; }
.mobile-nav[hidden] { display: none; }

@media (min-width: 1051px) {
  .page-home .hero-art.hero-art-image {
    margin-top: var(--site-header-height);
  }
}

.section-projects .site-header,
.section-notes .site-header,
.section-about .site-header,
.page-section:not(.section-travel) .site-header,
.page-404 .site-header {
  position: relative;
  color: var(--ink);
  background: var(--paper);
  border-bottom-color: var(--line-dark);
}

.section-travel:not(.page-home) .site-header {
  position: relative;
  color: var(--paper-bright);
  background: var(--ink);
  border-bottom-color: rgba(255,255,255,.18);
}

.hero {
  --pointer-x: 0;
  --pointer-y: 0;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(430px, .88fr);
  min-height: min(900px, 100vh);
  overflow: hidden;
  color: var(--paper-bright);
  background: var(--blue);
  border-bottom: 1px solid var(--line-light);
}

.hero::before {
  display: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 145px clamp(32px, 5vw, 84px) 118px clamp(28px, 5vw, 82px);
  border-right: 0;
}

.eyebrow {
  margin: 0 0 25px;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero .eyebrow { font-size: 12px; }
.hero .eyebrow span { padding: 0 8px; color: var(--signal); }

.hero h1,
.section-heading h2,
.page-intro h1,
.article-header h1,
.not-found h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(48px, 6vw, 104px);
  line-height: .86;
  letter-spacing: -.055em;
}
.hero h1 span { display: block; }
.hero h1 span:nth-child(2) { color: transparent; -webkit-text-stroke: 1px var(--paper-bright); }

.hero-cn {
  margin: clamp(32px, 5vh, 62px) 0 0;
  font-family: var(--display);
  font-size: clamp(17px, 1.45vw, 24px);
  line-height: 1.55;
  letter-spacing: .08em;
}

.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 34px; }
.hero-rotating-field {
  display: grid;
  grid-template-columns: minmax(120px, 155px) minmax(300px, 1fr);
  align-items: stretch;
  gap: 12px;
  width: min(100%, 650px);
  margin-top: 34px;
  padding: 7px;
  border: 1px solid rgba(255,255,255,.52);
}
.hero-rotating-field__label {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: rgba(255,255,255,.82);
  font-family: var(--mono);
  font-size: clamp(13px, 1.06vw, 18px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: .075em;
  text-align: center;
  white-space: normal;
}
.text-rotate {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 68px;
  place-items: center;
  overflow: hidden;
  padding: 9px 16px 8px;
  color: var(--blue);
  background: var(--paper-bright);
}
.text-rotate-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  border: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.text-rotate-stage {
  display: grid;
  width: 100%;
  align-content: center;
  gap: 5px;
}
.text-rotate-stage__line {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.text-rotate-stage__english {
  font-family: var(--mono);
  font-size: clamp(11px, .88vw, 15px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: .075em;
}
.text-rotate-stage__chinese {
  font-family: var(--display);
  font-size: clamp(13px, 1vw, 17px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: .08em;
}
.text-rotate-word { display: inline-flex; overflow: hidden; padding: 2px 0; }
.text-rotate-element { display: inline-block; }
.text-rotate-space { width: .55em; white-space: pre; }
.text-rotate-element.is-entering {
  animation: text-rotate-enter .54s cubic-bezier(.22, 1, .36, 1) both;
  animation-delay: var(--rotate-delay, 0ms);
}
.text-rotate-element.is-exiting {
  animation: text-rotate-exit .36s cubic-bezier(.55, 0, 1, .45) both;
  animation-delay: var(--rotate-delay, 0ms);
}
@keyframes text-rotate-enter {
  from { opacity: 0; transform: translate3d(0, 110%, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes text-rotate-exit {
  from { opacity: 1; transform: translate3d(0, 0, 0); }
  to { opacity: 0; transform: translate3d(0, -125%, 0); }
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 178px;
  padding: 13px 15px;
  border: 1px solid currentColor;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: color .2s ease, background .2s ease;
}
.button b { font-size: 16px; font-weight: 400; }
.button-light:hover { color: var(--blue); background: var(--paper-bright); }
.text-link {
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255,255,255,.6);
  font-size: 12px;
}
.text-link span { display: inline-block; margin-left: 8px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }

.hero-art {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 650px;
  place-items: center;
  overflow: hidden;
  padding: 112px 20px 90px;
}
.hero-art::after {
  position: absolute;
  width: min(38vw, 520px);
  aspect-ratio: 1;
  content: "";
  opacity: .9;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(255,255,255,.018), 0 0 0 74px rgba(255,255,255,.018);
}
.hero-art svg {
  width: min(48vw, 720px);
  overflow: visible;
  transform: translate(calc(var(--pointer-x) * -10px), calc(var(--pointer-y) * -10px));
  transition: transform .3s ease-out;
}

.hero-art.hero-art-image {
  min-height: 650px;
  padding: 0;
  isolation: isolate;
  background: var(--blue);
}

.hero-art.hero-art-image::after {
  z-index: 1;
  inset: 0;
  width: auto;
  aspect-ratio: auto;
  opacity: 1;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hero-art__image {
  position: absolute;
  z-index: 0;
  inset: -1.5%;
  width: 103%;
  height: 103%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 48%;
  filter: grayscale(1) contrast(1.65);
  mix-blend-mode: screen;
  transform: translate(calc(var(--pointer-x) * -9px), calc(var(--pointer-y) * -9px)) scale(1.015);
  transition: transform .45s var(--ease-fluid);
}

.hero-art-image .art-label {
  padding-top: 5px;
  padding-bottom: 5px;
  background: rgba(10,8,190,.36);
  text-shadow: 0 1px 8px rgba(0,0,90,.75);
  backdrop-filter: blur(3px);
}
.hero-art line,
.hero-art ellipse,
.hero-art circle,
.hero-art path { fill: none; stroke: currentColor; vector-effect: non-scaling-stroke; }
.art-grid { opacity: .09; }
.art-rays { opacity: .17; }
.orbit { opacity: .55; }
.orbit-a { stroke-width: .8; }
.orbit-b { stroke-dasharray: 3 5; }
.art-core { stroke-width: 1.2; }
.art-route { stroke: var(--signal) !important; stroke-width: 1.7; stroke-dasharray: 8 7; }
.art-points circle { fill: var(--signal); stroke: var(--blue); stroke-width: 5; }
.art-label {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 3px;
  padding-left: 10px;
  border-left: 2px solid var(--signal);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .12em;
}
.art-label b { font-size: 11px; }
.art-label-top { top: 19%; right: 7%; }
.art-label-bottom { right: 12%; bottom: 15%; }

.hero-readout {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: auto auto;
  gap: 2px 35px;
  width: min(44%, 650px);
  padding: 18px clamp(20px, 3vw, 50px);
  border-top: 1px solid var(--line-light);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .12em;
}
.hero-readout span:nth-child(odd) { color: rgba(255,255,255,.56); }

.index-section { padding: clamp(82px, 10vw, 155px) clamp(24px, 5vw, 82px); }
.projects-section, .notes-section { background: var(--paper); }
.section-heading { display: grid; margin-bottom: clamp(55px, 7vw, 100px); }
.section-heading h2 {
  font-size: clamp(50px, 7.5vw, 118px);
  line-height: .83;
  letter-spacing: -.055em;
}
.section-heading > p:last-child {
  width: min(100%, 390px);
  margin: 36px 0 0 auto;
  color: var(--muted);
  font-size: 14px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}
.project-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 360px;
  padding: clamp(26px, 3vw, 46px);
  overflow: hidden;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transition: color .3s ease, background .3s ease;
}
.project-card::before {
  position: absolute;
  inset: auto -20% -70% 30%;
  height: 100%;
  content: "";
  opacity: .12;
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 35px transparent, 0 0 0 36px currentColor, 0 0 0 74px transparent, 0 0 0 75px currentColor;
  transition: transform .5s ease;
}
.project-card:hover { color: var(--paper-bright); background: var(--blue); }
.project-card:hover::before { transform: translate(-8%, -8%) rotate(12deg); }
.project-number { font-family: var(--display); font-size: 28px; }
.project-status { font-family: var(--mono); font-size: 9px; letter-spacing: .12em; }
.project-status span { display: inline-block; width: 6px; height: 6px; margin-right: 7px; background: var(--signal); border-radius: 50%; }
.project-card h3 {
  grid-column: 1 / -1;
  align-self: end;
  max-width: 80%;
  margin: 55px 0 15px;
  font-family: var(--display);
  font-size: clamp(27px, 3vw, 48px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.025em;
}
.project-card p { grid-column: 1 / -1; max-width: 540px; margin: 0 0 28px; color: currentColor; opacity: .68; }
.tag-row { display: flex; flex-wrap: wrap; align-self: end; gap: 7px; }
.tag-row span { padding: 4px 7px; border: 1px solid currentColor; font-family: var(--mono); font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.card-arrow { position: absolute; right: 35px; bottom: 28px; font-size: 28px; transition: transform .25s ease; }
.project-card:hover .card-arrow { transform: translate(5px, -5px); }

.manifesto-section {
  color: var(--ink);
  background: var(--paper);
}
.manifesto-section__label {
  margin: 0 0 clamp(28px, 3vw, 52px);
}
.index-section-label {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: .12em;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: clamp(18px, 2.2vw, 38px);
}
.manifesto-card { min-width: 0; margin: 0; }
.manifesto-art {
  --parallax-y: 0px;
  position: relative;
  width: 100%;
  aspect-ratio: 6 / 5;
  overflow: hidden;
  background: var(--blue);
  border: 1px solid var(--ink);
  isolation: isolate;
}
.manifesto-art::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mix-blend-mode: screen;
}
.manifesto-art__layer {
  position: absolute;
  z-index: 1;
  inset: 0;
  transform: translate3d(0, var(--parallax-y), 0) scale(1.24);
  transform-origin: center;
  will-change: transform;
}
.manifesto-art__layer img,
.manifesto-art__placeholder {
  width: 100%;
  height: 100%;
}
.manifesto-art__layer img {
  display: block;
  max-width: none;
  object-fit: cover;
}
.manifesto-art__placeholder {
  position: relative;
  display: grid;
  align-content: space-between;
  padding: clamp(24px, 2.5vw, 44px) 11%;
  overflow: hidden;
  color: var(--paper-bright);
  background:
    radial-gradient(circle at 78% 30%, rgba(255,92,53,.96) 0 8%, transparent 8.2%),
    linear-gradient(152deg, #2f2fe8 0 45%, #0b0b15 45.2% 68%, #e9dfc4 68.2% 100%);
}
.manifesto-card:nth-child(2) .manifesto-art__placeholder {
  background:
    radial-gradient(circle at 30% 67%, rgba(255,92,53,.9) 0 7%, transparent 7.2%),
    linear-gradient(165deg, #0b0b15 0 32%, #efeadc 32.2% 55%, #2f2fe8 55.2% 100%);
}
.manifesto-card:nth-child(3) .manifesto-art__placeholder {
  background:
    radial-gradient(circle at 70% 24%, #efe9d9 0 8%, transparent 8.2%),
    linear-gradient(145deg, #ff5c35 0 34%, #2f2fe8 34.2% 68%, #0b0b15 68.2% 100%);
}
.manifesto-art__placeholder::before {
  position: absolute;
  right: 10%;
  bottom: -42%;
  width: 46%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  box-shadow:
    0 0 0 55px transparent,
    0 0 0 56px rgba(255,255,255,.38),
    0 0 0 110px transparent,
    0 0 0 111px rgba(255,255,255,.2);
}
.manifesto-art__placeholder span,
.manifesto-art__placeholder small {
  position: relative;
  z-index: 1;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .16em;
}
.manifesto-art__placeholder span::before { margin-right: 8px; color: var(--signal); content: "●"; }
.manifesto-art__placeholder b {
  position: relative;
  z-index: 1;
  align-self: center;
  font-family: var(--display);
  font-size: clamp(34px, 3.8vw, 66px);
  font-weight: 300;
  line-height: .78;
  letter-spacing: -.055em;
}
.manifesto-art__placeholder small { justify-self: end; align-self: end; }
.manifesto-copy {
  display: grid;
  align-content: start;
  padding-top: clamp(22px, 2vw, 34px);
}
.manifesto-copy .eyebrow {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .08em;
}
.manifesto-copy blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(28px, 2.7vw, 48px);
  font-weight: 300;
  line-height: .98;
  letter-spacing: -.025em;
}
.manifesto-copy cite {
  display: block;
  width: 100%;
  margin-top: 14px;
  font-family: var(--mono);
  font-size: 10px;
  font-style: normal;
  letter-spacing: .11em;
  text-align: right;
  text-transform: uppercase;
}
.manifesto-copy > p:not(.eyebrow) {
  min-height: 3.4em;
  margin: 20px 0 22px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: .015em;
  white-space: pre-line;
}

.section-more {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 32px;
  padding: 15px 0;
  border-bottom: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.section-more b { font-size: 18px; font-weight: 400; transition: transform .2s ease; }
.section-more:hover b { transform: translateX(8px); }

.travel-section,
.section-travel:not(.page-home) main { color: var(--paper-bright); background: var(--ink); }
.section-heading-split { grid-template-columns: 1fr minmax(260px, 35%); align-items: end; }
.section-heading-split > p:last-child {
  justify-self: end;
  width: 100%;
  margin: 0 0 7px;
  color: rgba(255,255,255,.55);
  font-family: var(--display);
  text-align: right;
}
.travel-photo-stack-shell {
  width: min(100%, 1540px);
  margin: 0 auto;
}
.travel-photo-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  perspective: 1000px;
  isolation: isolate;
}
.travel-photo-card {
  --stack-depth: 0;
  --stack-z: 1;
  --stack-shift-x: calc(var(--stack-depth) * 7px);
  --stack-shift-y: calc(var(--stack-depth) * 5px);
  --stack-rotation: 0deg;
  --stack-scale: calc(1 - (var(--stack-depth) * .025));
  --drag-x: 0px;
  --drag-y: 0px;
  --drag-rotate: 0deg;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: absolute;
  inset: 0;
  z-index: var(--stack-z);
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  color: var(--paper-bright);
  background: #08080d;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: clamp(14px, 1.15vw, 20px);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
  cursor: grab;
  touch-action: pan-y;
  transform:
    translate3d(
      calc(var(--stack-shift-x) + var(--drag-x)),
      calc(var(--stack-shift-y) + var(--drag-y)),
      0
    )
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y))
    rotateZ(calc(var(--stack-rotation) + var(--drag-rotate)))
    scale(var(--stack-scale));
  transform-origin: 90% 90%;
  transition:
    transform .72s var(--ease-fluid),
    opacity .45s ease,
    box-shadow .45s ease;
  will-change: transform;
}
.travel-photo-card:nth-child(4n + 1) { --stack-rotation: -1.2deg; }
.travel-photo-card:nth-child(4n + 2) { --stack-rotation: 1.6deg; }
.travel-photo-card:nth-child(4n + 3) { --stack-rotation: -.5deg; }
.travel-photo-card:nth-child(4n + 4) { --stack-rotation: 2.1deg; }
.travel-photo-card:not(.is-top) { pointer-events: none; }
.travel-photo-card.is-dragging {
  z-index: 60;
  cursor: grabbing;
  box-shadow: 0 34px 95px rgba(0,0,0,.35);
  transition: none;
}
.travel-photo-card img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.travel-photo-card figcaption {
  --photo-caption-pad: clamp(20px, 2.3vw, 38px);
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
  padding: 0;
  pointer-events: none;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .13em;
  text-shadow: 0 1px 12px rgba(0,0,0,.8);
  text-transform: uppercase;
}
.travel-photo-card figcaption > span {
  position: absolute;
  bottom: var(--photo-caption-pad);
  left: var(--photo-caption-pad);
  color: rgba(255,255,255,.64);
}
.travel-photo-card figcaption b { color: var(--signal); font-weight: 400; }
.travel-photo-card figcaption a {
  position: absolute;
  top: var(--photo-caption-pad);
  right: var(--photo-caption-pad);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100% - (var(--photo-caption-pad) * 2));
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255,255,255,.7);
  pointer-events: auto;
  font-family: "Pacifico", "Segoe Script", "Brush Script MT", cursive;
  font-size: 27px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.35;
  letter-spacing: .005em;
  text-transform: none;
}
.travel-photo-card figcaption a span { font-size: .75em; }
.travel-photo-stack-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.travel-photo-stack-controls p { margin: 0; color: rgba(255,255,255,.52); }
.travel-photo-stack-controls button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.65);
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}
.travel-photo-stack-controls button:disabled { cursor: default; opacity: .35; }
.travel-photo-stack-controls button span { font-size: 16px; transition: transform .2s ease; }
.travel-photo-stack-controls button:hover:not(:disabled) span { transform: translateX(6px); }
.travel-photo-stack-empty {
  display: grid;
  width: min(100%, 1540px);
  aspect-ratio: 21 / 9;
  margin: 0 auto;
  padding: clamp(25px, 4vw, 64px);
  align-content: center;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.34);
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 54px 54px;
  text-align: center;
}
.travel-photo-stack-empty span,
.travel-photo-stack-empty small {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.travel-photo-stack-empty span { color: var(--signal); }
.travel-photo-stack-empty p {
  margin: 18px 0 13px;
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 60px);
  line-height: 1;
}
.travel-photo-stack-empty small { color: rgba(255,255,255,.46); }
.travel-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: rgba(255,255,255,.24); }
.travel-card { min-width: 0; background: var(--ink); }
.travel-visual {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  color: var(--paper-bright);
  background:
    radial-gradient(circle at 70% 26%, rgba(255,92,53,.95) 0 8%, transparent 8.2%),
    linear-gradient(155deg, #302fe8 0 44%, #0c0c17 44.2% 67%, #e9dfc4 67.2% 100%);
  isolation: isolate;
}
.travel-card:nth-child(3n + 2) .travel-visual { background: linear-gradient(160deg, #eee8d8 0 38%, #1816d9 38.2% 62%, #080810 62.2%); }
.travel-card:nth-child(3n + 3) .travel-visual { background: radial-gradient(circle at 28% 24%, #f2eee2 0 7%, transparent 7.2%), linear-gradient(145deg, #ff5c35 0 33%, #1714e8 33.2% 62%, #12110e 62.2%); }
.travel-visual::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: .25;
  background-image: linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 32px 32px;
}
.visual-horizon { position: absolute; right: -20%; bottom: 24%; left: -20%; height: 1px; background: currentColor; transform: rotate(-8deg); }
.visual-sun { position: absolute; top: 14%; right: 13%; width: 22%; aspect-ratio: 1; border: 1px solid currentColor; border-radius: 50%; }
.visual-path { position: absolute; bottom: -7%; left: 36%; width: 27%; height: 66%; border: 1px solid currentColor; border-radius: 50% 50% 0 0; transform: perspective(130px) rotateX(43deg); }
.travel-visual b { position: absolute; top: 17px; left: 17px; font-family: var(--mono); font-size: 8px; letter-spacing: .13em; }
.travel-visual b::before { margin-right: 7px; content: "●"; color: var(--signal); }
.travel-visual span { transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.travel-visual:hover .visual-sun { transform: translate(-14px, 12px); }
.travel-visual:hover .visual-path { transform: perspective(130px) rotateX(43deg) translateY(-14px); }
.travel-card-copy { padding: 22px 20px 30px; border-top: 1px solid rgba(255,255,255,.18); }
.travel-card-copy p { display: flex; justify-content: space-between; margin: 0; color: rgba(255,255,255,.45); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; text-transform: uppercase; }
.travel-card-copy h3 { margin: 22px 0 15px; font-family: var(--display); font-size: clamp(24px, 2.3vw, 37px); font-weight: 400; line-height: 1; }
.travel-card-copy small { color: rgba(255,255,255,.5); font-family: var(--mono); font-size: 8px; letter-spacing: .1em; }
.section-more-dark { border-bottom-color: rgba(255,255,255,.6); }

.notes-list { border-top: 1px solid var(--ink); }
.note-row { display: grid; grid-template-columns: 120px 1fr 240px 30px; align-items: center; gap: 20px; min-height: 87px; border-bottom: 1px solid var(--ink); transition: padding .2s ease, color .2s ease, background .2s ease; }
.note-row:hover { padding: 0 15px; color: var(--paper-bright); background: var(--blue); }
.note-row time, .note-row small { font-family: var(--mono); font-size: 9px; letter-spacing: .1em; }
.note-row span { font-family: var(--display); font-size: clamp(18px, 2vw, 28px); }
.note-row small { color: var(--muted); }
.note-row:hover small { color: rgba(255,255,255,.55); }

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .4fr);
  align-items: end;
  min-height: 290px;
  padding: clamp(26px, 2.3vw, 36px) clamp(24px, 5vw, 82px) clamp(30px, 3vw, 42px);
  border-bottom: 1px solid currentColor;
}
.page-intro .eyebrow { grid-column: 1 / -1; }
.page-intro h1 { max-width: 900px; font-size: clamp(58px, 9vw, 145px); line-height: .79; letter-spacing: -.06em; }
.page-intro > p:last-child { max-width: 400px; margin: 0 0 10px auto; color: var(--muted); }
.page-intro-light > p:last-child { color: rgba(255,255,255,.55); }
[data-split-title].is-split {
  overflow: visible;
}
.split-title-char {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, .34em, 0);
  transition:
    opacity .62s ease-out calc(var(--split-index) * 45ms),
    transform .78s var(--ease-fluid) calc(var(--split-index) * 45ms);
  will-change: transform, opacity;
}
[data-split-title].is-split-visible .split-title-char {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.project-grid-archive, .travel-archive, .archive-list { margin: 0 clamp(24px, 5vw, 82px) clamp(80px, 10vw, 150px); }
.project-grid-archive { margin-top: clamp(60px, 7vw, 100px); }
.travel-archive { padding-top: clamp(36px, 4vw, 58px); }
.travel-archive .travel-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.travel-archive .travel-card-copy { padding: 18px 16px 24px; }
.travel-archive .travel-card-copy h3 {
  margin: 16px 0 12px;
  font-size: clamp(20px, 1.65vw, 28px);
}

.travel-circular-archive {
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: clamp(18px, 2.8vw, 42px);
  padding-bottom: clamp(44px, 3.6vw, 68px);
}
.circular-gallery {
  position: relative;
  width: 100%;
  height: clamp(500px, 31vw, 620px);
  margin-right: 0;
  margin-left: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  cursor: grab;
  outline: none;
  touch-action: pan-y;
  user-select: none;
}
.circular-gallery:focus-visible {
  outline: 1px solid rgba(255,255,255,.85);
  outline-offset: -12px;
}
.circular-gallery.is-dragging { cursor: grabbing; }
.circular-gallery__stage {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 68px);
  height: 100%;
  overflow-x: auto;
  padding: 30px clamp(24px, 6vw, 110px) 78px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.circular-gallery__stage::-webkit-scrollbar { display: none; }
.circular-gallery.is-single .circular-gallery__stage { justify-content: center; }
.circular-gallery__item {
  flex: 0 0 clamp(245px, 17vw, 340px);
  margin: 0;
  scroll-snap-align: center;
}
.circular-gallery.is-circular-ready .circular-gallery__stage {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  padding: 0;
  scroll-snap-type: none;
}
.circular-gallery.is-circular-ready .circular-gallery__item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(245px, 17vw, 340px);
  margin: 0;
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}
.circular-gallery__link {
  display: block;
  outline: none;
}
.circular-gallery__media {
  position: relative;
  width: 100%;
  aspect-ratio: 7 / 9;
  overflow: hidden;
  background: #08080d;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 12px;
  box-shadow: 0 20px 52px rgba(0,0,0,.24);
  transition: border-color .25s ease, box-shadow .35s ease, filter .35s ease;
}
.circular-gallery__item.is-center .circular-gallery__media,
.circular-gallery__link:focus-visible .circular-gallery__media {
  border-color: rgba(255,255,255,.88);
  box-shadow: 0 26px 68px rgba(0,0,0,.36);
}
.circular-gallery__media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}
.circular-gallery__placeholder {
  position: absolute;
  inset: 0;
  overflow: hidden;
  color: var(--paper-bright);
  background:
    radial-gradient(circle at 70% 26%, rgba(255,92,53,.95) 0 8%, transparent 8.2%),
    linear-gradient(155deg, #302fe8 0 44%, #0c0c17 44.2% 67%, #e9dfc4 67.2% 100%);
  isolation: isolate;
}
.circular-gallery__item:nth-child(3n + 2) .circular-gallery__placeholder {
  background: linear-gradient(160deg, #eee8d8 0 38%, #1816d9 38.2% 62%, #080810 62.2%);
}
.circular-gallery__item:nth-child(3n + 3) .circular-gallery__placeholder {
  background:
    radial-gradient(circle at 28% 24%, #f2eee2 0 7%, transparent 7.2%),
    linear-gradient(145deg, #ff5c35 0 33%, #1714e8 33.2% 62%, #12110e 62.2%);
}
.circular-gallery__placeholder::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 32px 32px;
}
.circular-gallery__placeholder b {
  position: absolute;
  top: 18px;
  left: 18px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .13em;
}
.circular-gallery__placeholder b::before { margin-right: 7px; content: "●"; color: var(--signal); }
.circular-gallery__caption { padding: 18px 6px 0; color: var(--paper-bright); text-align: center; }
.circular-gallery__caption h2 {
  margin: 0;
  overflow: hidden;
  font-family: var(--display);
  font-size: clamp(22px, 1.45vw, 30px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.025em;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.circular-gallery__hud {
  position: absolute;
  z-index: 80;
  right: clamp(24px, 5vw, 82px);
  bottom: 20px;
  left: clamp(24px, 5vw, 82px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  pointer-events: none;
  color: rgba(255,255,255,.5);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.circular-gallery__hud p { margin: 0; }
.circular-gallery__hud b { color: var(--signal); font-size: 11px; font-weight: 400; }
.circular-gallery__hud span:last-child { justify-self: end; }
.circular-gallery__empty { margin: auto; color: rgba(255,255,255,.5); }

.archive-list { border-top: 1px solid var(--ink); }
.archive-row { display: grid; grid-template-columns: 120px 1fr 110px 30px; align-items: center; gap: 20px; min-height: 95px; border-bottom: 1px solid var(--ink); }
.archive-row time { font-family: var(--mono); font-size: 9px; }
.section-notes .archive-row time {
  font-size: clamp(13px, .9vw, 16px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .04em;
}
.archive-row > span { display: grid; gap: 3px; }
.archive-row b { font-family: var(--display); font-size: clamp(23px, 3vw, 42px); font-weight: 400; line-height: 1.05; }
.archive-row small { max-width: 550px; color: var(--muted); font-size: 11px; }
.archive-row em { font-family: var(--mono); font-size: 8px; font-style: normal; letter-spacing: .1em; }
.archive-row strong { font-size: 21px; font-weight: 400; }
.empty-state { padding: 70px 0; color: var(--muted); }
.about-prose { min-height: 420px; }

.article-shell { padding-bottom: 100px; }
.article-header {
  position: relative;
  display: grid;
  min-height: 480px;
  padding: clamp(75px, 9vw, 135px) clamp(24px, 9vw, 150px) clamp(55px, 6vw, 90px);
  border-bottom: 1px solid currentColor;
}
.section-travel .article-header {
  --album-return-size: 56px;
  --album-return-title-gap: clamp(22px, 2vw, 30px);
  grid-template-areas: "primary copy";
  grid-template-columns: minmax(0, .78fr) minmax(320px, 1fr);
  column-gap: clamp(60px, 8vw, 150px);
  align-items: start;
  min-height: 0;
  padding: clamp(26px, 2.4vw, 38px) clamp(24px, 5vw, 82px) clamp(32px, 3vw, 44px);
}
.album-header-primary {
  grid-area: primary;
  display: grid;
  justify-items: center;
  width: fit-content;
  max-width: 100%;
}
.section-travel .article-summary {
  width: fit-content;
  justify-self: center;
}
.album-header-copy {
  grid-area: copy;
  align-self: start;
  max-width: 720px;
  margin-top: calc(var(--album-return-size) + var(--album-return-title-gap));
  transform: translateY(-.4em);
  color: rgba(255,255,255,.78);
  font-family: var(--sans);
  font-size: clamp(15px, 1.1vw, 20px);
  line-height: 1.8;
}
.album-header-copy > :first-child { margin-top: 0; }
.album-header-copy > :last-child { margin-bottom: 0; }
.album-header-copy h2,
.album-header-copy h3 {
  margin: 1.4em 0 .6em;
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.15;
}
@media (min-width: 1101px) {
  .section-travel .article-header {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0;
    padding-right: 0;
    padding-left: 0;
  }
  .section-travel .album-header-primary { justify-self: center; }
  .section-travel .album-header-copy {
    width: fit-content;
    max-width: min(calc(100% - 48px), 720px);
    justify-self: center;
    text-align: left;
  }
}
.section-notes.page-single .article-header {
  align-content: center;
  min-height: 290px;
  gap: clamp(18px, 2vw, 28px);
  padding: clamp(26px, 2.3vw, 36px) clamp(24px, 5vw, 82px) clamp(30px, 3vw, 42px);
}
.section-notes.page-single .article-summary { margin-top: 0; }
.article-return-top {
  --return-button-size: var(--album-return-size, 56px);
  --return-arrow-left: 23.5px;
  position: relative;
  z-index: 2;
  display: inline-block;
  width: clamp(220px, 16vw, 260px);
  height: var(--return-button-size);
  margin: 0 0 var(--album-return-title-gap);
  padding: 0;
  overflow: visible;
  color: inherit;
  background: transparent;
  border: 0;
  outline: none;
  cursor: pointer;
  vertical-align: middle;
}
.article-return-top .circle {
  position: relative;
  display: block;
  width: var(--return-button-size);
  height: var(--return-button-size);
  margin: 0;
  background: var(--paper-bright);
  border-radius: 999px;
  transition: width .45s cubic-bezier(.65, 0, .076, 1);
}
.article-return-top .circle .icon {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: var(--ink);
  transition: transform .45s cubic-bezier(.65, 0, .076, 1);
}
.article-return-top .circle .icon.arrow {
  left: var(--return-arrow-left);
  width: 1.125rem;
  height: .125rem;
  background: none;
}
.article-return-top .circle .icon.arrow::before {
  position: absolute;
  top: -.29rem;
  left: .0625rem;
  width: .625rem;
  height: .625rem;
  content: "";
  border-bottom: .125rem solid var(--ink);
  border-left: .125rem solid var(--ink);
  transform: rotate(45deg);
}
.article-return-top .button-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 2.15rem;
  padding: 0 .8rem;
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: .06em;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  transition: color .45s cubic-bezier(.65, 0, .076, 1);
}
.article-return-top:hover .circle,
.article-return-top:focus-visible .circle { width: 100%; }
.article-return-top:hover .circle .icon.arrow,
.article-return-top:focus-visible .circle .icon.arrow {
  background: var(--ink);
  transform: none;
}
.article-return-top:hover .button-text,
.article-return-top:focus-visible .button-text { color: var(--ink); }
.article-header h1 { max-width: 1100px; font-size: clamp(55px, 8vw, 128px); line-height: .82; letter-spacing: -.055em; }
.article-summary { max-width: 650px; margin: 38px 0 0; color: var(--muted); }
.article-summary > :first-child { margin-top: 0; }
.article-summary > :last-child { margin-bottom: 0; }
.section-travel .article-summary {
  margin-top: clamp(32px, 3vw, 44px);
  color: rgba(255,255,255,.58);
  font-size: clamp(18px, 1.2vw, 22px);
  line-height: 1.5;
}
.article-meta { display: flex; flex-wrap: wrap; gap: 12px 35px; margin-top: 38px; font-family: var(--mono); font-size: 9px; letter-spacing: .1em; }

.photo-stage {
  position: relative;
  display: grid;
  width: min(calc(100% - 48px), 1280px);
  aspect-ratio: 16 / 8;
  margin: clamp(50px, 7vw, 100px) auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.35);
  background:
    radial-gradient(circle at 67% 34%, var(--signal) 0 7%, transparent 7.2%),
    linear-gradient(155deg, var(--blue) 0 48%, #1a1920 48.2% 70%, #e9dfc4 70.2%);
}
.photo-stage::after { position: absolute; inset: 20px; content: ""; border: 1px solid rgba(255,255,255,.3); }
.photo-stage-mark { position: relative; z-index: 2; display: grid; justify-items: center; gap: 5px; padding: 18px; color: var(--paper-bright); background: rgba(0,0,0,.7); font-family: var(--mono); font-size: 9px; letter-spacing: .13em; }
.photo-stage-mark b { font-family: var(--sans); font-size: 12px; }

.prose, .article-back {
  width: min(calc(100% - 48px), 790px);
  margin-right: auto;
  margin-left: auto;
}
.prose { padding: clamp(55px, 7vw, 95px) 0; font-size: 17px; line-height: 1.9; }
.prose h2, .prose h3 { margin: 2.2em 0 .8em; font-family: var(--display); font-weight: 400; line-height: 1.15; }
.prose h2 { font-size: clamp(32px, 4vw, 52px); }
.prose h3 { font-size: 28px; }
.prose p, .prose ul, .prose ol { margin: 1.2em 0; }
.prose a { color: var(--blue); border-bottom: 1px solid currentColor; }
.section-travel .prose a { color: #8c8aff; }
.prose code { padding: .12em .35em; background: rgba(127,127,127,.12); font-family: var(--mono); font-size: .88em; }
.prose pre { padding: 20px; overflow-x: auto; color: #f5f3ea; background: #17171c; }
.prose pre code { padding: 0; background: transparent; }
.prose blockquote { margin: 2em 0; padding-left: 25px; border-left: 2px solid var(--signal); font-family: var(--display); font-size: 1.25em; }

.article-back { padding-top: 30px; border-top: 1px solid rgba(127,127,127,.35); font-family: var(--mono); font-size: 10px; letter-spacing: .1em; }

.article-featured-image,
.album-gallery {
  width: min(calc(100% - 48px), 1440px);
  margin-right: auto;
  margin-left: auto;
}
.article-featured-image { margin-top: clamp(48px, 6vw, 90px); }
.article-featured-image img { width: 100%; height: auto; border-radius: 16px; }
.album-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
  padding: clamp(52px, 6vw, 92px) 0;
}
.album-gallery__item { min-width: 0; margin: 0; }
.album-gallery__item--lead { grid-column: 1 / -1; }
.album-gallery__media {
  position: relative;
  overflow: hidden;
  background: #090908;
  border-radius: clamp(12px, 1.1vw, 18px);
}
.album-gallery__item a { display: block; cursor: zoom-in; }
.album-gallery__item img {
  width: 100%;
  height: auto;
  min-height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-fluid);
}
.album-gallery__item:not(.album-gallery__item--lead) img { aspect-ratio: 4 / 3; }
.album-gallery__item a:hover img { transform: scale(1.018); }
.album-gallery__item figcaption {
  padding: 10px 4px 0;
  color: rgba(255,255,255,.56);
  font-family: var(--display);
  font-size: 13px;
}

.album-photo-stats {
  position: absolute;
  z-index: 3;
  right: clamp(10px, 1.2vw, 18px);
  bottom: clamp(10px, 1.2vw, 18px);
  display: flex;
  align-items: center;
  gap: 7px;
  pointer-events: auto;
}
.album-photo-stat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 36px;
  gap: 7px;
  padding: 7px 11px;
  color: #fff;
  background: rgba(8,8,8,.7);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  box-shadow: 0 5px 20px rgba(0,0,0,.2);
  backdrop-filter: blur(10px);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
button.album-photo-stat {
  appearance: none;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
button.album-photo-stat:hover,
button.album-photo-stat:focus-visible { border-color: rgba(255,255,255,.5); outline: none; transform: translateY(-1px); }
button.album-photo-stat.is-liked { color: #fff; background: rgba(23,20,232,.88); border-color: rgba(255,255,255,.42); }
button.album-photo-stat:disabled { cursor: progress; opacity: 1; }

body.album-lightbox-open { overflow: hidden; }
.album-lightbox {
  position: fixed;
  z-index: 100000;
  inset: 0;
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: clamp(50px, 5vw, 76px) clamp(18px, 4vw, 64px);
  overflow: hidden;
  color: var(--paper-bright);
  background: rgba(7,7,6,.8);
  border: 0;
  backdrop-filter: blur(10px);
}
.album-lightbox[open] { display: flex; align-items: center; justify-content: center; }
.album-lightbox::backdrop { background: transparent; }
.album-lightbox__stage {
  display: flex;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.album-lightbox__stage img {
  width: auto;
  max-width: 90%;
  height: auto;
  max-height: 90%;
  object-fit: contain;
  border-radius: clamp(10px, 1vw, 16px);
  box-shadow: 0 28px 90px rgba(0,0,0,.48);
  pointer-events: auto;
}
.album-lightbox__close {
  position: fixed;
  z-index: 1;
  top: max(18px, env(safe-area-inset-top));
  right: max(18px, env(safe-area-inset-right));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  min-height: 44px;
  gap: 12px;
  padding: 8px 16px;
  color: var(--ink);
  background: var(--paper-bright);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
}
.album-lightbox__close span:last-child { font-family: var(--sans); font-size: 23px; font-weight: 400; line-height: 1; }
.album-lightbox__close:hover,
.album-lightbox__close:focus-visible { color: var(--paper-bright); background: var(--blue); outline: 2px solid var(--paper-bright); outline-offset: 3px; }

.comments {
  width: min(calc(100% - 48px), 1440px);
  margin-right: auto;
  margin-left: auto;
  padding: clamp(38px, 4vw, 58px) 0 clamp(50px, 6vw, 82px);
  color: var(--paper-bright);
  border-top: 1px solid rgba(255,255,255,.24);
}
.album-comments__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 16px 32px;
  padding-bottom: clamp(12px, 1.4vw, 20px);
}
.album-comments__header h2 {
  max-width: 920px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.035em;
}
.album-comments__header > p:last-child { margin: 0 0 .35em; color: rgba(255,255,255,.52); font-family: var(--mono); font-size: 10px; letter-spacing: .12em; }
.album-comments__layout {
  --album-comment-panel-height: 162px;
  --album-comment-panel-offset: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 5vw, 76px);
  padding-top: clamp(20px, 2vw, 30px);
}
.album-comments__feed {
  min-width: 0;
  padding-top: var(--album-comment-panel-offset);
}
.album-comments__composer {
  align-self: start;
  min-width: 0;
  position: sticky;
  top: 28px;
  transform: translateY(calc(var(--album-comment-panel-offset) - 59px));
}
.admin-bar .album-comments__composer { top: 60px; }
.album-comments__empty {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  width: 100%;
  height: var(--album-comment-panel-height);
  min-height: var(--album-comment-panel-height);
  gap: 24px;
  padding: 30px;
  color: rgba(255,255,255,.58);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
}
.album-comments__empty span { color: rgba(255,255,255,.18); font-family: var(--display); font-size: 72px; line-height: 1; }
.album-comments__empty p { max-width: 380px; margin: 0; }
.album-comments__closed { padding: 24px; color: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; }

.comment-list { display: grid; gap: 16px; margin: 0; padding: 0; list-style: none; }
.comment-list .comment-card > article {
  min-width: 0;
  min-height: var(--album-comment-panel-height);
  padding: clamp(20px, 2vw, 28px);
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
}
.comment-list .children { display: grid; gap: 14px; margin: 14px 0 0 clamp(16px, 3vw, 42px); padding: 0; list-style: none; }
.comment-card__meta { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 18px; }
.comment-card__meta strong { font-family: var(--display); font-size: 18px; font-weight: 700; }
.comment-card__meta time { color: rgba(255,255,255,.45); font-family: var(--mono); font-size: 9px; letter-spacing: .08em; }
.comment-card__meta a:hover,
.comment-card__meta a:focus-visible { color: #8c8aff; }
.comment-card__content { min-width: 0; margin-top: 14px; color: rgba(255,255,255,.82); overflow-wrap: anywhere; font-size: 15px; line-height: 1.75; }
.comment-card--optimistic > article { border-color: rgba(140,138,255,.38); }
.comment-card--pending > article { border-color: rgba(140,138,255,.24); }
.comment-card--optimistic .comment-card__content p,
.comment-card--pending .comment-card__content p { white-space: pre-wrap; }
.comment-card__submit-state { margin-left: auto; color: #8c8aff; font-family: var(--sans); font-size: 11px; letter-spacing: .02em; }
.comment-card__content > :first-child { margin-top: 0; }
.comment-card__content > :last-child { margin-bottom: 0; }
.comment-awaiting-moderation { margin: 14px 0 0; color: #8c8aff; font-size: 12px; }
.comments .nav-links { display: flex; justify-content: space-between; gap: 20px; margin-top: 24px; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; }

.comment-reply-title { margin: 0 0 12px; font-family: var(--display); font-size: clamp(28px, 3vw, 42px); font-weight: 400; line-height: 1; }
.comment-reply-title small { margin-left: 10px; font-family: var(--sans); font-size: 12px; }
.comment-notes,
.logged-in-as { margin: 0 0 18px; color: rgba(255,255,255,.5); font-size: 12px; line-height: 1.6; }
.logged-in-as a { color: #8c8aff; }
.comment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}
.comment-form > p { margin: 0; }
.comment-form .comment-notes,
.comment-form .logged-in-as,
.comment-form .comment-form-cookies-consent,
.comment-form .comment-composer__box { grid-column: 1 / -1; }
.comment-form-field label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255,255,255,.72);
  font-family: var(--display);
  font-size: 14px;
}
.comment-form-field small { display: block; margin-top: 5px; color: rgba(255,255,255,.35); font-size: 10px; }
.comment-form input:not([type="submit"]):not([type="checkbox"]) {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  color: #fff;
  background: #080808;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 10px;
  outline: none;
}
.comment-form input:focus-visible { border-color: rgba(140,138,255,.75); box-shadow: 0 0 0 3px rgba(23,20,232,.2); }
.comment-form-cookies-consent { display: flex; align-items: flex-start; gap: 8px; color: rgba(255,255,255,.48); font-size: 11px; }
.comment-form-cookies-consent input { flex: 0 0 auto; margin-top: .3em; accent-color: var(--blue); }
.comment-form-cookies-consent label { margin: 0; }
.comment-composer__box {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: var(--album-comment-panel-height);
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.comment-composer__box:focus-within { border-color: rgba(140,138,255,.7); box-shadow: 0 0 0 3px rgba(23,20,232,.16); }
.comment-composer__body { flex: 1 1 auto; min-height: 0; max-height: 250px; overflow-y: auto; }
.comment-composer__textarea {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  padding: 16px;
  resize: none;
  color: #fff;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.65;
}
.comment-composer__textarea::placeholder { color: rgba(255,255,255,.42); }
.comment-composer__toolbar {
  display: flex;
  flex: 0 0 52px;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  gap: 16px;
  padding: 10px 11px 10px 16px;
}
.comment-composer__toolbar > span { color: rgba(255,255,255,.34); font-size: 10px; }
.comment-composer__send {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: #716eff;
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  margin-left: auto;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.comment-composer__send:hover,
.comment-composer__send:focus-visible { color: #fff; background: var(--blue); outline: none; transform: translateY(-1px); }
.comment-form .required-field-message { display: none; }
.comment-form .form-submit { margin: 0; }
.comment-form .comment-form-url { display: none; }
.comment-form .must-log-in { grid-column: 1 / -1; color: rgba(255,255,255,.65); }
.comment-form .must-log-in a { color: #8c8aff; }
.comment-form .comment-notes span,
.comment-form-field label span { color: var(--signal); }
.comment-respond:target { scroll-margin-top: 30px; }
.comment-respond .comment-form > .comment-composer__box:last-child { margin-top: 2px; }
.comment-respond .comment-form > input[type="hidden"] { display: none; }
.comment-form .submit { font-family: var(--sans); }
.comment-form .comment-composer__send svg { width: 24px; height: 24px; }
.comment-form .comment-composer__send:disabled { cursor: wait; opacity: .6; }
.comment-submit-feedback { margin: 9px 0 0; color: rgba(255,255,255,.55); font-size: 11px; line-height: 1.5; }
.comment-submit-feedback:empty { display: none; }
.comment-submit-feedback[data-state="error"] { color: #ff8b79; }
.comment-form input:-webkit-autofill,
.comment-form input:-webkit-autofill:hover,
.comment-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff;
  box-shadow: 0 0 0 1000px #080808 inset;
}

.prose .alignwide { width: min(1100px, 90vw); max-width: none; margin-left: 50%; transform: translateX(-50%); }
.prose .alignfull { width: 100vw; max-width: none; margin-left: 50%; transform: translateX(-50%); }
.prose img { height: auto; border-radius: 12px; }

.not-found { display: grid; min-height: calc(100vh - 84px); place-content: center; padding: 40px; text-align: center; color: var(--paper-bright); background: var(--blue); }
.not-found h1 { font-size: clamp(90px, 20vw, 260px); line-height: .75; }
.not-found p { margin: 40px 0; }
.not-found .button { margin: auto; }

.site-footer:not(.site-footer-scene) {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  min-height: 255px;
  padding: 55px clamp(24px, 5vw, 82px) 35px;
  color: var(--paper-bright);
  background: var(--blue);
  border-top: 1px solid rgba(255,255,255,.24);
}
.footer-mark {
  font-family: "Blackadder ITC", "Old English Text MT", "Edwardian Script ITC", "Lucida Calligraphy", cursive;
  font-size: clamp(66px, 7.8vw, 122px);
  font-weight: 400;
  line-height: .62;
  letter-spacing: -.035em;
}
.site-footer:not(.site-footer-scene) .footer-meta {
  display: grid;
  grid-column: 2;
  justify-items: end;
  gap: 6px;
  font-family: var(--mono);
  font-size: clamp(12px, 1.05vw, 16px);
  line-height: 1.3;
  letter-spacing: .1em;
  text-align: right;
}

.page-home main {
  position: relative;
  z-index: 2;
  padding-bottom: 130svh;
}

.page-home { background: var(--blue); }

.wordmark-transition {
  --wordmark-cut: clamp(22px, 1.65vw, 32px);
  position: relative;
  display: grid;
  height: clamp(315px, 25vw, 470px);
  align-items: end;
  overflow: visible;
  color: var(--blue);
  background: var(--paper);
  border-top: 1px solid var(--line-dark);
  container-type: inline-size;
}

.wordmark-transition__clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.wordmark-transition__text {
  position: absolute;
  z-index: 1;
  bottom: calc(-1 * var(--wordmark-cut));
  left: 50%;
  width: max-content;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(180px, 24.3cqw, 460px);
  font-weight: 300;
  line-height: .8;
  letter-spacing: .03em;
  white-space: nowrap;
  text-transform: uppercase;
  transform: translateX(-50%) translateY(8px) scaleX(.65);
  transform-origin: center bottom;
}

.wordmark-transition__signature {
  position: absolute;
  z-index: 4;
  top: calc(100% + clamp(42px, 4.2vw, 70px));
  right: clamp(24px, 5vw, 82px);
  left: clamp(24px, 5vw, 82px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  color: var(--paper-bright);
  background: transparent;
  pointer-events: none;
}

.wordmark-transition__signature-mark {
  font-family: "Blackadder ITC", "Old English Text MT", "Edwardian Script ITC", "Lucida Calligraphy", cursive;
  font-size: clamp(72px, 7.4vw, 120px);
  font-weight: 400;
  line-height: .68;
  letter-spacing: -.035em;
}

.wordmark-transition__signature-meta {
  display: grid;
  justify-items: end;
  gap: 4px;
  font-family: var(--mono);
  font-size: clamp(14px, 1.3vw, 20px);
  line-height: 1.3;
  letter-spacing: .1em;
  text-align: right;
}

.wordmark-transition__signature-meta a {
  color: inherit;
  pointer-events: auto;
}

.site-footer-scene {
  --footer-progress: 1;
  --footer-image-progress: 0;
  --footer-copy-opacity: 1;
  --footer-copy-shift: 0px;
  --footer-portrait-shift: 0px;
  position: fixed;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  color: var(--paper-bright);
  background: var(--blue);
  border: 0;
  opacity: var(--footer-progress);
  pointer-events: none;
  will-change: opacity;
}

.site-footer-scene.is-active { pointer-events: auto; }

.footer-scene__portrait {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(100vw, 233.333svh);
  aspect-ratio: 21 / 9;
  overflow: hidden;
  isolation: isolate;
  background: var(--blue);
  transform: translate(-50%, calc(-50% + var(--footer-portrait-shift)));
  will-change: transform;
}

.footer-scene__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 0;
  filter: hue-rotate(9deg) saturate(.83);
  transition: opacity .14s linear;
}

.footer-scene__portrait img.is-loaded { opacity: var(--footer-image-progress); }
.footer-scene__portrait noscript img { opacity: 1; }

.footer-scene__copy {
  position: absolute;
  z-index: 3;
  top: clamp(48px, 7.3vh, 86px);
  left: 50%;
  display: grid;
  width: min(calc(100% - 48px), 760px);
  justify-items: center;
  text-align: center;
  opacity: var(--footer-copy-opacity);
  transform: translate(-50%, var(--footer-copy-shift));
  will-change: opacity, transform;
}

.footer-scene__copy .eyebrow { margin-bottom: 16px; }

.footer-scene__copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(50px, 5.7vw, 92px);
  font-weight: 300;
  line-height: .82;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.footer-scene__copy > p:not(.eyebrow) {
  margin: 20px 0 0;
  font-family: var(--display);
  font-size: clamp(14px, 1.15vw, 18px);
  letter-spacing: .08em;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  transition:
    opacity .9s ease-out var(--reveal-delay, 0ms),
    transform 1.15s var(--ease-fluid) var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  :root { --site-header-height: 112px; }
  .article-return-top { --return-button-size: 42px; --return-arrow-left: 16.5px; top: auto; width: 220px; }
  .site-header { grid-template-columns: 1fr auto 1fr; align-items: center; padding-right: clamp(22px, 4.5vw, 48px); padding-left: clamp(22px, 4.5vw, 48px); }
  .site-nav { display: block; grid-column: 2; width: auto; padding-top: 0; }
  .site-nav__link { display: none; }
  .brand-lockup { transform: none; }
  .nav-menu {
    display: flex;
    grid-column: 3;
    justify-self: end;
    gap: 10px;
    padding: 5px 0;
    color: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: var(--display);
    font-size: clamp(12.8px, .932vw, 21.6px);
    font-weight: 800;
    letter-spacing: .03em;
  }
  .mobile-nav {
    position: fixed;
    z-index: 25;
    inset: var(--site-header-height) 0 0;
    display: grid;
    align-content: center;
    gap: 0;
    padding: 30px;
    color: var(--paper-bright);
    background: var(--blue);
  }
  .mobile-nav a { width: 100%; padding: 17px 0; border-bottom: 1px solid var(--line-light); font-family: var(--display); font-size: 31px; letter-spacing: -.02em; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero::before { display: none; }
  .hero-copy { min-height: 740px; padding-top: 145px; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .hero-art { min-height: 650px; }
  .hero-art svg { width: min(88vw, 720px); }
  .hero-art::after { width: min(66vw, 520px); }
  .hero-readout { width: 100%; }
  .section-heading-split, .page-intro { grid-template-columns: 1fr; }
  .section-heading-split > p:last-child, .page-intro > p:last-child { margin: 40px 0 0; }
  .section-travel .article-header {
    --album-return-size: 42px;
    grid-template-areas:
      "primary"
      "copy";
    grid-template-columns: 1fr;
    row-gap: 0;
  }
  .album-header-copy { max-width: 650px; margin-top: 28px; transform: none; }
  .album-comments__layout { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
  .manifesto-grid { gap: 16px; }
  .manifesto-copy blockquote { font-size: clamp(25px, 3.2vw, 36px); }
  .travel-photo-stack,
  .travel-photo-stack-empty { aspect-ratio: 16 / 9; }
  .circular-gallery { height: 580px; }
  .circular-gallery__item,
  .circular-gallery.is-circular-ready .circular-gallery__item { width: min(31vw, 320px); flex-basis: min(31vw, 320px); }
  .travel-archive .travel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .note-row { grid-template-columns: 100px 1fr 30px; }
  .note-row small { display: none; }
}

@media (max-width: 720px) {
  :root { --site-header-height: 90px; }
  .article-return-top { top: auto; width: 210px; }
  .site-header { min-height: var(--site-header-height); padding: 0 19px; }
  .brand-lockup { font-size: 21px; }
  .mobile-nav { inset: var(--site-header-height) 0 0; }
  .hero-copy { min-height: 640px; padding: 120px 22px 75px; }
  .hero h1 { font-size: clamp(43px, 13.8vw, 70px); }
  .hero-cn { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-rotating-field {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    width: 100%;
  }
  .hero-rotating-field__label { grid-column: 1; min-height: 32px; padding: 3px 0 0; }
  .text-rotate { min-height: 82px; place-items: center start; padding: 10px 14px; }
  .text-rotate-stage__line { justify-content: flex-start; text-align: left; }
  .text-rotate-stage__english { font-size: 11px; }
  .text-rotate-stage__chinese { font-size: 14px; }
  .hero-art { min-height: 470px; padding: 60px 0 90px; }
  .hero-art.hero-art-image { min-height: 520px; padding: 0; }
  .hero-art__image { object-position: 50% 48%; }
  .hero-art svg { width: 115vw; max-width: none; }
  .art-label-top { top: 12%; }
  .hero-readout { grid-template-columns: 1fr 1fr; gap: 3px 15px; padding: 14px 20px; }
  .index-section { padding-right: 20px; padding-left: 20px; }
  .section-heading h2 { font-size: clamp(49px, 15vw, 78px); }
  .section-heading > p:last-child { margin-left: 0; }
  .manifesto-section { padding-top: 72px; padding-bottom: 64px; }
  .index-section-label { font-size: 16px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 72px; }
  .manifesto-art { aspect-ratio: 6 / 5; }
  .manifesto-art__layer { transform: translate3d(0, var(--parallax-y), 0) scale(1.22); }
  .manifesto-art__placeholder { padding: 38px 12%; }
  .manifesto-art__placeholder b { font-size: clamp(44px, 13vw, 52px); }
  .manifesto-copy { padding-top: 24px; }
  .manifesto-copy .eyebrow { margin-bottom: 17px; }
  .manifesto-copy blockquote {
    max-width: calc(100% - 20px);
    font-size: clamp(36px, 10.4vw, 46px);
    line-height: 1.02;
    letter-spacing: -.02em;
    word-break: break-all;
  }
  .manifesto-copy > p:not(.eyebrow) { min-height: 0; margin: 18px 0 20px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 320px; }
  .project-card h3 { max-width: 88%; }
  .travel-photo-card { border-radius: 12px; }
  .travel-photo-card figcaption { --photo-caption-pad: 18px; }
  .travel-photo-card figcaption > span { display: none; }
  .travel-photo-card figcaption a {
    gap: 8px;
    max-width: 100%;
    font-size: clamp(14px, 4vw, 18px);
  }
  .travel-photo-stack-controls { margin-top: 20px; }
  .travel-photo-stack-empty { min-height: 230px; aspect-ratio: auto; }
  .travel-photo-stack-empty small { max-width: 250px; }
  .travel-circular-archive { padding-top: 10px; padding-bottom: 36px; }
  .circular-gallery { height: 510px; }
  .circular-gallery__item,
  .circular-gallery.is-circular-ready .circular-gallery__item { width: min(70vw, 270px); flex-basis: min(70vw, 270px); }
  .circular-gallery__caption { padding-top: 14px; }
  .circular-gallery__caption h2 { font-size: 25px; }
  .circular-gallery__hud { right: 20px; bottom: 12px; left: 20px; }
  .circular-gallery__hud > span:first-child { display: none; }
  .circular-gallery__hud { grid-template-columns: auto 1fr; }
  .circular-gallery__hud p { order: -1; }
  .travel-grid { grid-template-columns: 1fr; }
  .travel-archive .travel-grid { grid-template-columns: 1fr; }
  .travel-visual { aspect-ratio: 5 / 4; }
  .note-row { grid-template-columns: 82px 1fr 18px; gap: 12px; min-height: 78px; }
  .note-row span { font-size: 19px; line-height: 1.15; }
  .page-intro { min-height: 280px; padding: 28px 20px 34px; }
  .page-intro h1 { font-size: clamp(54px, 19vw, 86px); }
  .project-grid-archive, .travel-archive, .archive-list { margin-right: 20px; margin-left: 20px; }
  .archive-row { grid-template-columns: 70px 1fr 20px; gap: 10px; }
  .section-notes .archive-row { grid-template-columns: 88px 1fr 20px; }
  .section-notes .archive-row time { font-size: 12px; }
  .archive-row em, .archive-row small { display: none; }
  .article-header { min-height: 410px; }
  .section-notes.page-single .article-header {
    min-height: 280px;
    padding: 28px 20px 34px;
  }
  .article-header h1 { font-size: clamp(48px, 16vw, 78px); }
  .photo-stage { width: calc(100% - 40px); aspect-ratio: 4 / 5; }
  .prose, .article-back { width: calc(100% - 40px); }
  .article-featured-image, .album-gallery { width: calc(100% - 40px); }
  .album-gallery { grid-template-columns: 1fr; gap: 24px; padding: 42px 0; }
  .album-gallery__item--lead { grid-column: auto; }
  .album-photo-stats { right: 10px; bottom: 10px; }
  .album-photo-stat { min-width: 48px; min-height: 33px; padding: 6px 9px; font-size: 12px; }
  .comments { width: calc(100% - 40px); padding-top: 32px; }
  .album-comments__header { grid-template-columns: 1fr; }
  .album-comments__header > p:last-child { margin: 0; }
  .album-comments__layout { grid-template-columns: 1fr; gap: 28px; padding-top: 20px; }
  .album-comments__feed { padding-top: 0; }
  .album-comments__composer { position: static; order: -1; transform: none; }
  .comment-form { grid-template-columns: 1fr; }
  .comment-form .comment-form-author,
  .comment-form .comment-form-email { grid-column: 1 / -1; }
  .comment-list .children { margin-left: 14px; }
  .comment-composer__toolbar { gap: 10px; padding-left: 14px; }
  .comment-composer__toolbar > span { min-width: 0; }
  .album-comments__empty { min-height: var(--album-comment-panel-height); padding: 22px; }
  .album-comments__empty span { font-size: 54px; }
  .site-footer:not(.site-footer-scene) {
    grid-template-columns: 1fr auto;
    gap: 22px;
    min-height: 240px;
  }
  .footer-mark { font-size: clamp(52px, 18vw, 76px); }
  .site-footer:not(.site-footer-scene) .footer-meta { grid-column: 2; }

  .page-home main { padding-bottom: 130svh; }
  .wordmark-transition { --wordmark-cut: 14px; height: 220px; }
  .wordmark-transition__text {
    font-size: clamp(112px, 31cqw, 180px);
    transform: translateX(-50%) translateY(5px) scaleX(.65);
  }
  .site-footer-scene { min-height: 560px; }
  .footer-scene__copy { top: 48px; }
  .footer-scene__copy h2 { font-size: clamp(43px, 12.3vw, 62px); }
  .footer-scene__copy > p:not(.eyebrow) { width: min(100%, 310px); margin-top: 15px; font-size: 13px; }
  .wordmark-transition__signature {
    top: calc(100% + 34px);
    right: 20px;
    left: 20px;
    gap: 18px;
  }
  .wordmark-transition__signature-mark { font-size: clamp(52px, 16vw, 76px); }
  .wordmark-transition__signature-meta { max-width: 180px; font-size: 12px; }
  .footer-scene__portrait {
    top: 50%;
    left: 50%;
    width: min(100vw, 233.333svh);
    aspect-ratio: 21 / 9;
  }
  .footer-scene__portrait img { object-position: 50% 50%; }
}

@media (max-width: 782px) {
  .page-home.admin-bar .site-header { top: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .split-title-char { opacity: 1; transform: none; }
  .manifesto-art__layer { transform: none; }
}
