:root {
  --ink: #0c1211;
  --ink-soft: #141c1a;
  --pine: #203a34;
  --paper: #f0eee7;
  --paper-soft: #c8c8bd;
  --accent: #ff6b3d;
  --accent-soft: #ff956d;
  --line: rgb(240 238 231 / 18%);
  --line-strong: rgb(240 238 231 / 34%);
  --page-pad: clamp(20px, 4vw, 72px);
  --max-width: 1500px;
  --header-height: 84px;
  --font-display: "Bahnschrift", "Microsoft YaHei UI", "PingFang SC", sans-serif;
  --font-body: "Microsoft YaHei UI", "PingFang SC", "Noto Sans CJK SC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
  scrollbar-color: var(--accent) var(--ink);
  scrollbar-width: thin;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-lightbox-open,
body.is-reader-open {
  overflow: hidden;
}

button,
input,
a {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

::selection {
  color: var(--ink);
  background: var(--accent);
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--ink);
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--ink);
  background: var(--pine);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: linear-gradient(145deg, #17231f, var(--ink) 48%, #151b1a);
}

.ambient__image,
.ambient__video,
.ambient__veil,
.ambient__noise {
  position: absolute;
  inset: 0;
}

.ambient__image {
  background-image: url("./assets/background.jpg");
  background-size: cover;
  background-position: 68% center;
  opacity: 0.76;
  transform: scale(1.03);
  transition:
    opacity 1.2s ease,
    transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.ambient__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

.ambient.has-video .ambient__video {
  opacity: 0.84;
}

.ambient.has-video .ambient__image {
  opacity: 0.14;
}

body.is-loaded .ambient__image {
  opacity: 0.88;
  transform: scale(1);
}

.ambient__veil {
  background:
    linear-gradient(90deg, rgb(8 12 11 / 68%) 0%, rgb(8 12 11 / 38%) 42%, rgb(8 12 11 / 10%) 72%, rgb(8 12 11 / 42%) 100%),
    linear-gradient(180deg, rgb(8 12 11 / 12%) 0%, rgb(8 12 11 / 8%) 52%, rgb(8 12 11 / 74%) 100%);
}

.ambient__noise {
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #0a0f0e;
  transition:
    opacity 700ms ease,
    visibility 0s linear 700ms;
}

.page-loader.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.page-loader__inner {
  width: min(340px, calc(100vw - 48px));
}

.page-loader__inner > span,
.page-loader__inner > small {
  display: block;
  color: rgb(240 238 231 / 54%);
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
}

.page-loader__inner > small {
  margin-top: 14px;
  letter-spacing: 0.08em;
}

.page-loader__line {
  height: 1px;
  margin-top: 16px;
  overflow: hidden;
  background: rgb(240 238 231 / 14%);
}

.page-loader__line i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: translateX(-100%);
  animation: loader-progress 900ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes loader-progress {
  to {
    transform: translateX(0);
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  gap: 24px;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding: 0 var(--page-pad);
  border-bottom: 1px solid transparent;
  transition:
    height 260ms ease,
    border-color 260ms ease,
    background-color 260ms ease,
    backdrop-filter 260ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  border-color: var(--line);
  background: rgb(10 15 14 / 78%);
  backdrop-filter: blur(18px);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}

.site-brand > span,
.footer__brand > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line-strong);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-brand div {
  display: grid;
  gap: 2px;
}

.site-brand strong {
  font-size: 0.82rem;
  font-weight: 650;
}

.site-brand small {
  color: rgb(240 238 231 / 44%);
  font-family: var(--font-display);
  font-size: 0.55rem;
  letter-spacing: 0.14em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 38px);
}

.primary-nav a {
  position: relative;
  padding: 31px 0;
  color: rgb(240 238 231 / 58%);
  font-size: 0.8rem;
  transition: color 200ms ease;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--paper);
}

.primary-nav a:hover::after,
.primary-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
  color: rgb(240 238 231 / 62%);
  font-size: 0.74rem;
  transition: color 200ms ease;
}

.header-email svg {
  width: 17px;
  height: 17px;
}

.header-email:hover {
  color: var(--accent);
}

.site-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgb(255 255 255 / 5%);
}

.site-menu-toggle i {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 200ms ease;
}

main,
.footer {
  position: relative;
  z-index: 1;
}

main > section[id] {
  scroll-margin-top: calc(var(--header-height) + 14px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.7fr);
  gap: clamp(48px, 7vw, 118px);
  align-items: center;
  min-height: 100svh;
  padding: calc(var(--header-height) + 50px) var(--page-pad) 70px;
}

.hero__index {
  position: absolute;
  top: 50%;
  left: 18px;
  display: grid;
  gap: 6px;
  color: rgb(240 238 231 / 28%);
  font-family: var(--font-display);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}

.hero__index strong {
  color: var(--accent);
  font-size: 0.62rem;
  font-weight: 600;
}

.hero__copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero__hello {
  margin: 0 0 22px;
  color: rgb(240 238 231 / 62%);
  font-size: clamp(0.88rem, 1.2vw, 1rem);
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8.4rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.035em;
}

.hero-title .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.7em) rotate(3deg);
  filter: blur(8px);
  animation: char-in 900ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes char-in {
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
    filter: blur(0);
  }
}

.hero__role {
  margin: 24px 0 0;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 1.6vw, 1.12rem);
  font-weight: 600;
  letter-spacing: 0.03em;
}

.hero__intro {
  max-width: 56ch;
  margin: 22px 0 0;
  color: rgb(240 238 231 / 70%);
  font-size: clamp(0.98rem, 1.45vw, 1.08rem);
  line-height: 1.95;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.action-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  color: var(--paper);
  font-size: 0.82rem;
  font-weight: 650;
  background: rgb(255 255 255 / 4%);
  transition:
    color 200ms ease,
    border-color 200ms ease,
    background-color 200ms ease,
    transform 200ms ease;
}

.action-link:hover {
  border-color: var(--accent);
  color: var(--paper);
  background: rgb(255 107 61 / 12%);
  transform: translateY(-2px);
}

.action-link svg {
  width: 17px;
  height: 17px;
}

.action-link .inner-content {
  display: inline-flex;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.action-link .border-gradient-bottom,
.action-link .border-gradient-top {
  background: radial-gradient(circle, #ffd166, transparent 10%);
  animation-duration: 5s;
}

.action-link--solid {
  border-color: var(--accent);
  color: #1b0b05;
  background: var(--accent);
}

.action-link--solid:hover {
  color: #1b0b05;
  background: var(--accent-soft);
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 720px;
  margin: 58px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero__facts div {
  min-width: 0;
  padding: 17px 20px;
  border-right: 1px solid var(--line);
}

.hero__facts div:first-child {
  padding-left: 0;
}

.hero__facts div:last-child {
  border-right: 0;
}

.hero__facts dt {
  margin-bottom: 7px;
  color: rgb(240 238 231 / 42%);
  font-size: 0.66rem;
}

.hero__facts dd {
  overflow: hidden;
  margin: 0;
  color: rgb(240 238 231 / 84%);
  font-size: 0.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero__visual {
  position: relative;
  justify-self: end;
  width: min(100%, 520px);
  will-change: transform;
}

.hero__visual-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line-strong);
  background: var(--pine);
}

.hero__visual-frame::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 1px solid rgb(255 255 255 / 8%);
  content: "";
  pointer-events: none;
}

.hero__visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.02);
  transform: scale(1.02);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__visual:hover img {
  transform: scale(1.055);
}

.hero__visual-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgb(8 12 11 / 62%) 100%);
}

.hero__profile {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px 10px 10px;
  background: rgb(9 14 13 / 72%);
  backdrop-filter: blur(12px);
}

.hero__avatar {
  position: relative;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--pine);
}

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

.hero__avatar span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1rem;
}

.hero__avatar:has(img[src]) span {
  opacity: 0;
}

.hero__profile div:last-child {
  display: grid;
  gap: 3px;
}

.hero__profile strong {
  font-size: 0.76rem;
}

.hero__profile small {
  color: rgb(240 238 231 / 48%);
  font-size: 0.62rem;
}

.hero__visual-note {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 12px 0 0;
  color: rgb(240 238 231 / 42%);
  font-size: 0.66rem;
}

.hero__visual-note strong {
  color: rgb(240 238 231 / 76%);
  font-weight: 600;
}

.hero__scroll {
  position: absolute;
  bottom: 28px;
  left: var(--page-pad);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgb(240 238 231 / 40%);
  font-size: 0.66rem;
}

.hero__scroll i {
  width: 1px;
  height: 32px;
  overflow: hidden;
  background: rgb(240 238 231 / 18%);
}

.hero__scroll i::after {
  display: block;
  width: 100%;
  height: 45%;
  background: var(--accent);
  content: "";
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0% {
    transform: translateY(-110%);
  }
  100% {
    transform: translateY(240%);
  }
}

.featured,
.journal,
.stills,
.film,
.about {
  padding: clamp(100px, 11vw, 168px) var(--page-pad);
}

.featured {
  background: rgb(240 238 231 / 97%);
  color: var(--ink);
}

.section-line {
  display: flex;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto 54px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgb(12 18 17 / 18%);
  color: rgb(12 18 17 / 46%);
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}

.featured__article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(260px, 0.46fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: end;
  max-width: var(--max-width);
  margin: 0 auto;
}

.featured__meta {
  display: grid;
  gap: 10px;
  align-self: start;
  color: rgb(12 18 17 / 48%);
  font-size: 0.7rem;
}

.featured__meta time {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.78rem;
}

.featured__copy h2 {
  max-width: 12em;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.6rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.featured__copy > p {
  max-width: 45ch;
  margin: 28px 0 0;
  color: rgb(12 18 17 / 62%);
  font-size: 1rem;
  line-height: 1.9;
}

.featured__read {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid rgb(12 18 17 / 36%);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 650;
}

.featured__read:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.featured__preview {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  padding: 0;
  border: 0;
  color: var(--paper);
  background: #cdcbc3;
  cursor: pointer;
}

.featured__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.featured__preview:hover img {
  transform: scale(1.055);
}

.featured__preview span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 10px;
  color: var(--paper);
  background: rgb(12 18 17 / 72%);
  font-size: 0.66rem;
  backdrop-filter: blur(8px);
}

.velocity-strip {
  overflow: hidden;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgb(12 18 17 / 78%);
  backdrop-filter: blur(10px);
}

.velocity-strip__track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 34px;
  animation: marquee 24s linear infinite;
}

.velocity-strip__track span {
  color: rgb(240 238 231 / 72%);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 600;
  white-space: nowrap;
}

.velocity-strip__track i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

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

.journal {
  background: var(--ink);
}

.journal__heading,
.stills__heading,
.film__copy,
.about__statement {
  max-width: var(--max-width);
  margin-right: auto;
  margin-left: auto;
}

.journal__heading,
.stills__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 62px;
}

.section-kicker,
.film__copy > span,
.about__statement > span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.journal__heading h2,
.stills__heading h2,
.film__copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6vw, 5rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.journal__heading > p,
.stills__heading > p,
.film__copy > p {
  max-width: 34rem;
  margin: 0 0 6px;
  color: rgb(240 238 231 / 54%);
  font-size: 0.86rem;
  line-height: 1.8;
}

.article-index {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.article-hover-preview {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 45;
  width: 210px;
  height: 268px;
  overflow: hidden;
  border: 1px solid rgb(240 238 231 / 28%);
  opacity: 0;
  background: var(--pine);
  box-shadow: 0 24px 70px rgb(0 0 0 / 34%);
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0) scale(0.88);
  transition:
    opacity 220ms ease,
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.article-hover-preview.is-visible {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.article-hover-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.article-hover-preview span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-row {
  --pointer-x: 50%;
  --pointer-y: 50%;
  position: relative;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) minmax(170px, 0.3fr) 48px;
  gap: clamp(20px, 4vw, 64px);
  align-items: center;
  width: 100%;
  min-height: 138px;
  padding: 30px 0;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.article-row::before {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(
    420px circle at var(--pointer-x) var(--pointer-y),
    rgb(255 107 61 / 14%),
    transparent 62%
  );
  content: "";
  pointer-events: none;
  transition: opacity 240ms ease;
}

.article-row:hover::before,
.article-row:focus-visible::before {
  opacity: 1;
}

.article-row time {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.article-row__title {
  position: relative;
  z-index: 1;
}

.article-row__title h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.article-row:hover h3 {
  transform: translateX(10px);
}

.article-row__title p {
  max-width: 68ch;
  margin: 0;
  color: rgb(240 238 231 / 52%);
  font-size: 0.84rem;
  line-height: 1.75;
}

.article-row__tag {
  color: rgb(240 238 231 / 38%);
  font-size: 0.68rem;
}

.article-row__arrow {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  transition:
    color 200ms ease,
    border-color 200ms ease,
    background-color 200ms ease;
}

.article-row:hover .article-row__arrow {
  border-color: var(--accent);
  color: var(--ink);
  background: var(--accent);
}

.article-row__arrow svg {
  width: 18px;
  height: 18px;
}

.stills {
  background: #121a18;
}

.depth-carousel-host {
  max-width: var(--max-width);
  min-height: 500px;
  margin: 0 auto 46px;
}

.photo-grid--archive {
  display: none;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 26px);
  max-width: var(--max-width);
  margin: 0 auto;
}

.photo {
  grid-column: span 4;
  margin: 0;
  visibility: visible;
  opacity: 1;
  transform: none;
}

.photo--wide {
  grid-column: span 7;
}

.photo--standard {
  grid-column: span 5;
}

.photo--tall {
  grid-column: span 5;
}

.photo__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  background: #1b2623;
}

.photo--wide .photo__frame {
  aspect-ratio: 16 / 10;
}

.photo--tall .photo__frame {
  aspect-ratio: 4 / 5;
}

.photo__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 500ms ease,
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.photo.has-image .photo__frame img {
  opacity: 1;
}

.photo:hover .photo__frame img {
  transform: scale(1.055);
}

.photo__frame button {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.photo__empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgb(240 238 231 / 22%);
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
}

.photo figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 2px 0;
}

.photo figcaption span {
  color: rgb(240 238 231 / 36%);
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}

.photo figcaption p {
  margin: 0;
  color: rgb(240 238 231 / 74%);
  font-size: 0.78rem;
  text-align: right;
}

.film {
  background: var(--ink);
}

.film__copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 58px;
}

.film__copy > span {
  grid-column: 1 / -1;
  margin-bottom: -16px;
}

.video-stage {
  position: relative;
  max-width: var(--max-width);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% 22%, rgb(255 107 61 / 16%), transparent 30%),
    linear-gradient(135deg, #1d312d, #0c1211 66%);
}

.intro-video {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
}

.video-stage.has-video .video-stage__fallback {
  display: none;
}

.video-stage__fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  justify-items: center;
}

.video-stage__fallback button {
  display: grid;
  justify-items: center;
  gap: 14px;
  border: 0;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 2rem);
}

.video-stage__fallback button span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgb(255 255 255 / 6%);
  backdrop-filter: blur(10px);
  transition:
    color 200ms ease,
    background-color 200ms ease,
    transform 200ms ease;
}

.video-stage__fallback button:hover span {
  color: var(--ink);
  background: var(--accent);
  transform: scale(1.06);
}

.video-stage__fallback svg {
  width: 25px;
  height: 25px;
}

.video-stage__fallback p {
  margin: 18px 0 0;
  color: rgb(240 238 231 / 42%);
  font-size: 0.72rem;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 0.65fr);
  gap: clamp(50px, 8vw, 130px);
  border-top: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}

.about__statement {
  align-self: start;
}

.about__statement .section-kicker {
  color: #b83c1c;
}

.about__statement blockquote {
  max-width: 12em;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.about__statement > p {
  max-width: 56ch;
  margin: 34px 0 0;
  color: rgb(12 18 17 / 62%);
  font-size: 0.92rem;
  line-height: 1.9;
}

.about__details {
  display: grid;
  align-content: start;
  gap: 44px;
}

.about__facts {
  margin: 0;
  border-top: 1px solid rgb(12 18 17 / 16%);
}

.about__facts div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgb(12 18 17 / 16%);
}

.about__facts dt {
  color: rgb(12 18 17 / 42%);
  font-size: 0.7rem;
}

.about__facts dd {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 600;
}

.timeline {
  border-top: 1px solid rgb(12 18 17 / 16%);
}

.timeline__item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgb(12 18 17 / 16%);
}

.timeline__item time {
  color: #b83c1c;
  font-family: var(--font-display);
  font-size: 0.66rem;
}

.timeline__item h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.timeline__item p {
  margin: 0;
  color: rgb(12 18 17 / 58%);
  font-size: 0.76rem;
  line-height: 1.7;
}

.music-dock {
  position: fixed;
  right: var(--page-pad);
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 60;
  display: grid;
  grid-template-columns: 48px minmax(0, 220px) 32px;
  gap: 12px;
  align-items: center;
  padding: 9px 12px 9px 9px;
  border: 1px solid var(--line);
  color: var(--paper);
  background: rgb(9 14 13 / 86%);
  box-shadow: 0 18px 50px rgb(0 0 0 / 28%);
  backdrop-filter: blur(18px);
}

.music-dock.is-collapsed {
  grid-template-columns: 48px minmax(0, 160px) 32px;
}

.music-dock.is-collapsed .music-dock__timeline,
.music-dock.is-collapsed .music-dock__title small {
  display: none;
}

.music-dock__toggle {
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  place-items: center;
  border: 0;
  color: #1b0b05;
  background: var(--accent);
  cursor: pointer;
}

.music-dock__toggle:disabled {
  color: rgb(240 238 231 / 36%);
  background: rgb(255 255 255 / 10%);
}

.music-dock__icon {
  width: 18px;
  height: 18px;
}

.music-dock__icon--pause,
.music-dock.is-playing .music-dock__icon--play {
  display: none;
}

.music-dock.is-playing .music-dock__icon--pause {
  display: block;
}

.music-dock__body {
  min-width: 0;
}

.music-dock__title {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 8px;
}

.music-dock__title > span {
  color: var(--accent);
  font-size: 0.58rem;
}

.music-dock__title strong {
  overflow: hidden;
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.music-dock__title small {
  grid-column: 2;
  overflow: hidden;
  color: rgb(240 238 231 / 42%);
  font-size: 0.62rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.music-dock__timeline {
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  gap: 6px;
  align-items: center;
  margin-top: 6px;
  color: rgb(240 238 231 / 36%);
  font-family: var(--font-display);
  font-size: 0.54rem;
}

.music-dock__timeline input {
  width: 100%;
  height: 2px;
  margin: 0;
  appearance: none;
  background: rgb(240 238 231 / 18%);
}

.music-dock__timeline input::-webkit-slider-thumb {
  width: 8px;
  height: 8px;
  appearance: none;
  border-radius: 50%;
  background: var(--accent);
}

.music-dock__controls {
  display: grid;
  grid-template-columns: 30px 30px minmax(72px, 1fr);
  gap: 7px;
  align-items: center;
  margin-top: 7px;
}

.music-dock__controls button {
  display: grid;
  width: 30px;
  height: 30px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  color: rgb(240 238 231 / 72%);
  background: transparent;
  cursor: pointer;
}

.music-dock__controls button:hover {
  border-color: var(--accent);
  color: var(--ink);
  background: var(--accent);
}

.music-dock__controls svg {
  width: 14px;
  height: 14px;
}

.music-dock__controls label {
  display: flex;
  align-items: center;
  min-width: 0;
}

.music-dock__controls input {
  width: 100%;
  height: 2px;
  margin: 0;
  appearance: none;
  background: rgb(240 238 231 / 18%);
}

.music-dock__controls input::-webkit-slider-thumb {
  width: 8px;
  height: 8px;
  appearance: none;
  border-radius: 50%;
  background: var(--accent);
}

.music-dock.is-collapsed .music-dock__controls {
  display: none;
}

.music-dock__collapse {
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: rgb(240 238 231 / 54%);
  background: transparent;
  cursor: pointer;
}

.music-dock__collapse svg {
  width: 15px;
  height: 15px;
  transition: transform 200ms ease;
}

.music-dock.is-collapsed .music-dock__collapse svg {
  transform: rotate(180deg);
}

.footer {
  padding: 56px var(--page-pad) 34px;
  border-top: 1px solid var(--line);
  background: #090e0d;
}

.footer__top,
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__top {
  padding-bottom: 34px;
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer__brand strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.footer__top > p {
  max-width: 42ch;
  margin: 0;
  color: rgb(240 238 231 / 46%);
  font-size: 0.76rem;
  line-height: 1.7;
  text-align: right;
}

.footer__bottom {
  flex-direction: column;
  justify-content: center;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: rgb(240 238 231 / 34%);
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.footer__bottom > p {
  order: 2;
  margin: 0;
}

.footer__bottom > div {
  order: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__bottom a:hover {
  color: var(--accent);
}

.footer-admin-link {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgb(240 238 231 / 18%);
}

.article-reader {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  justify-items: end;
  visibility: hidden;
  opacity: 0;
  background: rgb(5 8 7 / 70%);
  backdrop-filter: blur(12px);
  transition:
    opacity 350ms ease,
    visibility 0s linear 350ms;
}

.article-reader.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.article-reader__panel {
  width: min(100%, 780px);
  height: 100%;
  overflow-y: auto;
  padding: clamp(28px, 5vw, 64px);
  border-left: 1px solid var(--line);
  background: #111816;
  transform: translateX(50px);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.article-reader.is-open .article-reader__panel {
  transform: translateX(0);
}

.article-reader__header {
  display: grid;
  grid-template-columns: 1fr auto 46px;
  gap: 18px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.article-reader__header > span {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.64rem;
  letter-spacing: 0.16em;
}

.article-reader__header time {
  color: rgb(240 238 231 / 44%);
  font-size: 0.7rem;
}

.article-reader__header button {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
}

.article-reader__header button:hover {
  color: var(--ink);
  background: var(--accent);
}

.article-reader__header svg {
  width: 18px;
  height: 18px;
}

.article-reader__content {
  padding-top: clamp(42px, 7vw, 82px);
}

.article-reader__content h2 {
  max-width: 13em;
  margin: 0 0 26px;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.article-reader__lead {
  max-width: 60ch;
  margin: 0 0 42px;
  color: rgb(240 238 231 / 68%);
  font-size: 1rem;
  line-height: 1.9;
}

.article-reader__body {
  max-width: 68ch;
  color: rgb(240 238 231 / 62%);
  font-size: 0.92rem;
  line-height: 2;
}

.article-reader__body p {
  margin: 0 0 1.6em;
}

.article-reader__media {
  margin: 0 0 36px;
}

.article-reader__media img {
  width: 100%;
  max-height: 68vh;
  border: 1px solid var(--line);
  object-fit: contain;
  background: #0b110f;
  cursor: zoom-in;
}

.article-reader__media img:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) 80px;
  gap: 20px;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  background: rgb(4 7 6 / 94%);
  backdrop-filter: blur(16px);
  transition:
    opacity 320ms ease,
    visibility 0s linear 320ms;
}

.lightbox.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.lightbox__stage {
  display: grid;
  height: min(86vh, 960px);
  justify-items: center;
}

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

.lightbox__caption {
  display: grid;
  grid-template-columns: 120px auto 1fr;
  gap: 22px;
  align-items: baseline;
  width: min(100%, 1100px);
  padding-top: 16px;
}

.lightbox__caption span,
.lightbox__caption p {
  margin: 0;
  color: rgb(240 238 231 / 42%);
  font-size: 0.66rem;
}

.lightbox__caption h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
}

.lightbox__nav,
.lightbox__close {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--paper);
  background: transparent;
  cursor: pointer;
}

.lightbox__nav {
  width: 58px;
  height: 58px;
  justify-self: center;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
}

.lightbox__nav svg,
.lightbox__close svg {
  width: 20px;
  height: 20px;
}

.lightbox__nav:hover,
.lightbox__close:hover {
  color: var(--ink);
  background: var(--accent);
}

.lightbox__nav:disabled {
  cursor: default;
  opacity: 0.28;
}

.lightbox__nav:disabled:hover {
  color: var(--paper);
  background: transparent;
}

.reveal-up {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity 760ms ease,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-text {
  clip-path: inset(0);
  opacity: 1;
  transform: none;
}

.reveal-text.is-visible {
  animation: text-rise 950ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes text-rise {
  from {
    clip-path: inset(0 0 105% 0);
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    clip-path: inset(0);
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .site-menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: var(--page-pad);
    left: var(--page-pad);
    display: grid;
    gap: 0;
    padding: 10px 22px;
    border: 1px solid var(--line);
    visibility: hidden;
    opacity: 0;
    background: rgb(9 14 13 / 96%);
    backdrop-filter: blur(18px);
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 0s linear 180ms;
  }

  .primary-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .primary-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav a:last-child {
    border-bottom: 0;
  }

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

  .header-email {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
  }

  .featured__article {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .featured__preview {
    grid-column: 2;
    max-width: 460px;
  }

  .photo,
  .photo--wide,
  .photo--standard,
  .photo--tall {
    grid-column: span 6;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .music-dock {
    right: 20px;
    bottom: max(16px, env(safe-area-inset-bottom));
    width: min(360px, calc(100vw - 40px));
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 20px;
    --header-height: 72px;
  }

  .ambient__image {
    background-position: 62% center;
    opacity: 0.72;
  }

  .ambient__veil {
    background:
      linear-gradient(180deg, rgb(8 12 11 / 20%) 0%, rgb(8 12 11 / 38%) 38%, rgb(8 12 11 / 82%) 100%),
      linear-gradient(90deg, rgb(8 12 11 / 44%), rgb(8 12 11 / 12%));
  }

  .site-brand small,
  .hero__index,
  .hero__scroll {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 46px;
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 96px;
  }

  .hero-title {
    font-size: clamp(3.6rem, 18vw, 5.4rem);
  }

  .hero__role {
    margin-top: 18px;
  }

  .hero__intro {
    font-size: 0.94rem;
    line-height: 1.8;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .action-link {
    width: 100%;
  }

  .hero__facts {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .hero__facts div,
  .hero__facts div:first-child {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero__facts div:last-child {
    border-bottom: 0;
  }

  .hero__visual {
    order: -1;
    width: 100%;
  }

  .hero__visual-frame {
    aspect-ratio: 4 / 3;
  }

  .featured,
  .journal,
  .stills,
  .film,
  .about {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .featured__article {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .featured__meta {
    grid-template-columns: 1fr auto;
  }

  .featured__copy h2 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }

  .featured__preview {
    grid-column: auto;
    width: 100%;
    max-width: none;
  }

  .journal__heading,
  .stills__heading,
  .film__copy {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 42px;
  }

  .film__copy > span {
    margin-bottom: -10px;
  }

  .journal__heading h2,
  .stills__heading h2,
  .film__copy h2 {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .article-row {
    grid-template-columns: 1fr 42px;
    gap: 18px;
    min-height: 0;
    padding: 24px 0;
  }

  .article-row time,
  .article-row__tag {
    grid-column: 1 / -1;
  }

  .article-row time {
    margin-bottom: -8px;
  }

  .article-row__title h3 {
    font-size: 1.45rem;
  }

  .article-row__title p {
    font-size: 0.78rem;
  }

  .article-row__arrow {
    width: 42px;
    height: 42px;
    align-self: start;
  }

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

  .photo,
  .photo--wide,
  .photo--standard,
  .photo--tall {
    grid-column: auto;
  }

  .photo--tall .photo__frame {
    aspect-ratio: 4 / 3;
  }

  .video-stage {
    aspect-ratio: 4 / 5;
  }

  .about {
    gap: 54px;
  }

  .about__statement blockquote {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .about__facts div,
  .timeline__item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .music-dock {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    width: auto;
    grid-template-columns: 44px minmax(0, 1fr) 32px;
    padding: 8px 10px 8px 8px;
  }

  .music-dock.is-collapsed {
    grid-template-columns: 44px minmax(0, 1fr) 32px;
  }

  .music-dock__toggle {
    width: 44px;
    height: 44px;
  }

  .music-dock__title {
    grid-template-columns: 1fr;
  }

  .music-dock__title > span {
    display: none;
  }

  .music-dock__title strong,
  .music-dock__title small {
    grid-column: 1;
  }

  .article-reader__panel {
    width: 100%;
    border-left: 0;
  }

  .lightbox {
    grid-template-columns: 1fr;
    padding: 72px 14px 86px;
  }

  .lightbox__nav {
    position: absolute;
    bottom: 20px;
  }

  .lightbox__nav--prev {
    left: 24px;
  }

  .lightbox__nav--next {
    right: 24px;
  }

  .lightbox__stage {
    height: auto;
    max-height: 76vh;
  }

  .lightbox__caption {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-top: 14px;
  }

  .article-hover-preview {
    display: none;
  }

  .footer__top,
  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer__top > p {
    text-align: left;
  }
}

:root {
  --warm-canvas: #e9e0cf;
  --warm-canvas-deep: #d4c4aa;
  --warm-surface: #fbf6ec;
  --warm-surface-strong: #dfd0b8;
  --warm-text: #322920;
  --warm-muted: #6d6153;
  --warm-faint: rgb(63 50 37 / 62%);
  --warm-line: rgb(76 58 40 / 18%);
  --warm-line-strong: rgb(76 58 40 / 35%);
  --accent: #ad5834;
  --accent-soft: #c9835e;
}

html {
  background: var(--warm-canvas);
  scrollbar-color: var(--accent) var(--warm-canvas);
}

body {
  color: var(--warm-text);
  background: transparent;
}

::-webkit-scrollbar-track {
  background: var(--warm-canvas);
}

::-webkit-scrollbar-thumb {
  border-color: var(--warm-canvas);
  background: var(--accent);
}

.ambient {
  z-index: 0;
  background:
    radial-gradient(circle at 82% 10%, rgb(252 248 238 / 94%), transparent 36%),
    linear-gradient(145deg, #f2eadc, var(--warm-canvas-deep) 52%, #f5eee3);
}

.ambient__image {
  opacity: 0.92;
  background-position: center;
  filter: saturate(0.92) sepia(0.1) brightness(1.03);
  transform: translate3d(0, calc(-1 * var(--ambient-shift, 0px)), 0) scale(1.035);
}

.ambient__veil {
  background:
    linear-gradient(
      90deg,
      rgb(247 241 229 / 90%) 0%,
      rgb(247 242 232 / 72%) 42%,
      rgb(251 247 239 / 34%) 72%,
      rgb(238 226 207 / 78%) 100%
    ),
    linear-gradient(
      180deg,
      rgb(251 247 238 / 26%) 0%,
      rgb(249 244 235 / 20%) 52%,
      rgb(224 210 188 / 84%) 100%
    );
}

.ambient__noise {
  opacity: 0.035;
  mix-blend-mode: multiply;
}

body.is-loaded .ambient__image {
  opacity: 0.95;
  transform: translate3d(0, calc(-1 * var(--ambient-shift, 0px)), 0) scale(1.01);
}

.ambient.has-video .ambient__video {
  opacity: 0.76;
  filter: sepia(0.08) saturate(0.9) brightness(1.04);
}

.ambient.has-video .ambient__image {
  opacity: 0.18;
}

.page-loader {
  color: var(--warm-surface);
  background: #35291f;
}

.site-header {
  color: var(--warm-text);
}

.site-header.is-scrolled {
  border-color: transparent;
  background: rgb(255 247 222 / 16%);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.site-brand > span,
.footer__brand > span {
  border-color: var(--warm-line-strong);
}

.site-brand > span.brand-mark,
.footer__brand > span.brand-mark {
  position: relative;
  display: block;
  width: 46px;
  height: 46px;
  overflow: hidden;
  border: 1px solid rgb(173 88 52 / 34%);
  border-radius: 15px 15px 15px 5px;
  color: var(--warm-text);
  background:
    linear-gradient(145deg, rgb(255 255 255 / 72%), transparent 45%),
    linear-gradient(145deg, #f7f1e7, #d9c6a9);
  box-shadow:
    0 12px 28px rgb(83 57 34 / 14%),
    inset 0 0 0 1px rgb(255 255 255 / 42%);
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.site-brand > span.brand-mark::before,
.footer__brand > span.brand-mark::before {
  position: absolute;
  top: -19px;
  right: -16px;
  width: 46px;
  height: 46px;
  border: 1px solid rgb(173 88 52 / 28%);
  border-radius: 50%;
  content: "";
}

.brand-mark i {
  position: absolute;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.brand-mark i:first-child {
  top: 8px;
  left: 9px;
  font-size: 1rem;
}

.brand-mark i:last-child {
  right: 8px;
  bottom: 7px;
  color: var(--accent);
  font-size: 0.72rem;
}

.site-brand:hover .brand-mark,
.footer__brand:hover .brand-mark {
  border-color: var(--accent);
  box-shadow:
    0 16px 34px rgb(83 57 34 / 18%),
    inset 0 0 0 1px rgb(255 255 255 / 52%);
  transform: rotate(-3deg) translateY(-2px);
}

.site-brand small,
.primary-nav a,
.header-email {
  color: var(--warm-faint);
}

.primary-nav a {
  text-shadow: 0 1px 10px rgb(255 250 240 / 72%);
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--warm-text);
}

.primary-nav a::after {
  background: var(--accent);
}

.header-email:hover,
.footer__bottom a:hover {
  color: var(--accent);
}

.site-menu-toggle {
  border-color: var(--warm-line);
  background: transparent;
}

.primary-nav {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 1100px) {
  .primary-nav {
    border-color: rgb(76 58 40 / 12%);
    background: rgb(255 247 222 / 22%);
    box-shadow: 0 18px 46px rgb(95 58 28 / 7%);
    backdrop-filter: blur(24px);
    clip-path: inset(0 0 100% 0 round 14px);
    transition:
      opacity 220ms ease,
      transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
      clip-path 320ms cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0s linear 320ms;
  }

  .primary-nav.is-open {
    clip-path: inset(0 0 0 0 round 14px);
    transition-delay: 0s;
  }
}

.hero,
.featured,
.journal,
.stills,
.film,
.about {
  --paper: var(--warm-text);
  --paper-soft: var(--warm-muted);
  --ink: var(--warm-surface);
  --pine: #c99e55;
  --line: var(--warm-line);
  --line-strong: var(--warm-line-strong);
  --accent: #b95f2d;
  --accent-soft: #dc9158;
  color: var(--warm-text);
}

.hero__hello,
.hero__intro,
.hero__facts dt,
.hero__visual-note,
.hero__scroll,
.hero__index {
  color: var(--warm-muted);
}

.hero__facts {
  border-color: var(--warm-line);
}

.hero__facts div {
  border-color: var(--warm-line);
}

.hero__facts dd,
.hero__visual-note strong {
  color: var(--warm-text);
}

.hero__role {
  color: var(--accent);
}

.hero__visual-frame {
  border-color: var(--warm-line-strong);
  background: #cdb48d;
  box-shadow: 0 24px 64px rgb(105 65 28 / 18%);
}

.hero__visual-frame::before {
  border-color: rgb(255 255 255 / 44%);
}

.hero__profile {
  color: #fff8e7;
  background: rgb(60 39 24 / 78%);
  box-shadow: 0 14px 34px rgb(56 33 18 / 18%);
}

.hero__profile small {
  color: rgb(255 248 231 / 68%);
}

.hero__avatar span {
  color: #fff8e7;
}

.hero__scroll i {
  background: var(--warm-line);
}

.action-link {
  border-color: var(--warm-line-strong);
  color: var(--warm-text);
  background: rgb(250 245 236 / 58%);
  box-shadow: 0 10px 26px rgb(96 59 29 / 8%);
}

.action-link:hover {
  border-color: var(--accent);
  color: var(--warm-text);
  background: rgb(173 88 52 / 12%);
}

.action-link--solid {
  border-color: var(--accent);
  color: #fff8e7;
  background: var(--accent);
}

.action-link--solid:hover {
  color: #fff8e7;
  background: var(--accent-soft);
}

.featured {
  background: rgb(251 247 238 / 94%);
}

.section-line,
.featured__meta {
  color: var(--warm-muted);
  border-color: var(--warm-line);
}

.featured__copy > p,
.journal__heading > p,
.stills__heading > p,
.film__copy > p,
.article-row__title p,
.article-row__tag,
.photo figcaption span,
.photo figcaption p {
  color: var(--warm-muted);
}

.featured__read {
  border-color: var(--warm-line-strong);
  color: var(--warm-text);
}

.featured__preview {
  background: #e1c683;
  box-shadow: 0 22px 56px rgb(98 61 28 / 16%);
}

.featured__preview span {
  color: #fff8e7;
  background: rgb(58 37 22 / 74%);
}

.velocity-strip {
  border-color: var(--warm-line);
  background: rgb(255 248 222 / 72%);
  box-shadow: 0 14px 40px rgb(101 63 29 / 8%);
}

.velocity-strip__track span {
  color: rgb(63 45 30 / 68%);
}

.journal {
  background: rgb(242 235 223 / 92%);
}

.stills {
  background: #e6dcc9;
}

.article-index,
.article-row {
  border-color: var(--warm-line);
}

.article-row::before {
  background: radial-gradient(
    420px circle at var(--pointer-x) var(--pointer-y),
    rgb(189 100 47 / 15%),
    transparent 62%
  );
}

.article-row__arrow {
  border-color: var(--warm-line-strong);
}

.article-row__title h3 {
  color: rgb(50 41 32 / 66%);
  transition:
    color 360ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.article-row:hover .article-row__title h3,
.article-row:focus-visible .article-row__title h3 {
  color: var(--warm-text);
}

.section-kicker {
  position: relative;
  width: fit-content;
}

.section-kicker::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.is-visible .section-kicker::after,
.about__statement.reveal-up.is-visible .section-kicker::after {
  transform: scaleX(1);
}

.depth-carousel__card {
  border-color: var(--warm-line-strong);
  box-shadow:
    0 30px 60px -20px rgb(77 47 22 / 30%),
    0 8px 20px -10px rgb(77 47 22 / 24%);
}

.depth-carousel__arrow {
  border-color: var(--warm-line-strong);
  color: #fff8e7;
  background: rgb(60 39 24 / 64%);
}

.depth-carousel__dots {
  background: rgb(60 39 24 / 50%);
}

.photo__frame {
  border-color: var(--warm-line);
  background: #d3ad61;
}

.film {
  background: rgb(251 247 238 / 92%);
}

.video-stage {
  border-color: var(--warm-line-strong);
  background:
    radial-gradient(circle at 80% 22%, rgb(222 149 93 / 24%), transparent 32%),
    linear-gradient(135deg, #5b3d27, #2c1d13 68%);
  box-shadow: 0 26px 70px rgb(93 57 28 / 18%);
}

.video-stage__fallback button {
  color: #fff8e7;
}

.video-stage__fallback p {
  color: rgb(255 248 231 / 58%);
}

.about {
  border-color: var(--warm-line);
  background: #e5d8c2;
}

.about__statement > p,
.about__facts dt,
.timeline__item p {
  color: rgb(63 45 30 / 66%);
}

.about__facts,
.about__facts div,
.timeline,
.timeline__item {
  border-color: var(--warm-line);
}

.music-dock {
  border-color: var(--warm-line-strong);
  color: var(--warm-text);
  background: rgb(251 247 238 / 92%);
  box-shadow: 0 20px 54px rgb(87 53 25 / 18%);
}

.music-dock__title small,
.music-dock__timeline,
.music-dock__controls button,
.music-dock__collapse {
  color: var(--warm-muted);
}

.music-dock__timeline input,
.music-dock__controls input {
  background: var(--warm-line);
}

.music-dock__toggle {
  color: #fff8e7;
}

.music-dock__controls button:hover {
  color: #fff8e7;
  background: var(--accent);
}

.footer {
  border-color: rgb(255 248 231 / 12%);
  color: var(--warm-surface);
  background: #3d291b;
}

.footer__top > p,
.footer__bottom {
  color: rgb(255 248 231 / 56%);
}

.footer-admin-link {
  background: rgb(255 248 231 / 22%);
}

.article-reader {
  background: rgb(44 28 17 / 62%);
}

.article-reader__panel {
  border-color: rgb(255 248 231 / 12%);
  color: var(--warm-surface);
  background: #3b281b;
}

.article-reader__lead {
  color: rgb(255 248 231 / 72%);
}

.article-reader__body {
  color: rgb(255 248 231 / 66%);
}

.lightbox {
  background: rgb(35 22 14 / 95%);
}

.lightbox__nav,
.lightbox__close {
  color: #fff8e7;
}

.reveal-up {
  opacity: 0;
  filter: blur(9px);
  transform: translate3d(0, 42px, 0);
  transition:
    opacity 720ms ease,
    transform 920ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 760ms ease,
    clip-path 920ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  clip-path: inset(0 0 16% 0);
}

.reveal-up.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
  clip-path: inset(0);
}

.text-motion {
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 580ms ease,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 620ms ease;
  transition-delay: var(--text-delay, 0ms);
  will-change: opacity, transform, filter;
}

.text-motion.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.pointer-glow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 360px;
  height: 360px;
  margin: -180px 0 0 -180px;
  border-radius: 50%;
  opacity: 0.68;
  background: radial-gradient(
    circle,
    rgb(255 255 255 / 46%) 0%,
    rgb(255 193 108 / 18%) 34%,
    transparent 70%
  );
  mix-blend-mode: soft-light;
  pointer-events: none;
  will-change: transform;
}

.pointer-glow.is-active {
  opacity: 0.84;
}

.action-link,
.primary-nav a,
.featured__read,
.footer__bottom a,
.music-dock button {
  position: relative;
  transform: translate3d(
    var(--magnetic-x, 0px),
    var(--magnetic-y, 0px),
    0
  );
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.action-link:hover {
  transform: translate3d(
    var(--magnetic-x, 0px),
    calc(var(--magnetic-y, 0px) - 2px),
    0
  );
}

.action-link,
.featured__read,
.music-dock button,
.footer__bottom a {
  isolation: isolate;
  overflow: hidden;
}

.interaction-ripple {
  position: absolute;
  z-index: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.24;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: interaction-ripple 620ms cubic-bezier(0.16, 1, 0.3, 1)
    forwards;
}

@keyframes interaction-ripple {
  60% {
    opacity: 0.14;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(12);
  }
}

.hero__visual-frame,
.featured__preview,
.video-stage,
.about__facts {
  transform: perspective(1100px) rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg)) scale(var(--tilt-scale, 1));
  transform-style: preserve-3d;
  transition:
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 280ms ease;
  will-change: transform;
}

.journal__heading h2,
.stills__heading h2,
.film__copy h2,
.about__statement blockquote {
  position: relative;
}

.journal__heading h2::after,
.stills__heading h2::after,
.film__copy h2::after,
.about__statement blockquote::after {
  position: absolute;
  right: 0;
  bottom: -12px;
  left: 0;
  height: 1px;
  background: var(--warm-line-strong);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-text.is-visible::after {
  transform: scaleX(1);
}

.brand-mark::after {
  position: absolute;
  inset: -4px;
  border-radius: 17px 17px 17px 7px;
  padding: 2px;
  background: conic-gradient(
    var(--accent) var(--page-progress, 0deg),
    rgb(173 88 52 / 12%) 0
  );
  content: "";
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.site-header.is-scrolled .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 13px 13px 13px 5px;
}

.site-header.is-scrolled .brand-mark i {
  transform: scale(0.88);
  transform-origin: center;
}

.primary-nav a {
  transition:
    color 220ms ease,
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.primary-nav a:not(.is-active) {
  opacity: 0.58;
  transform: scale(0.94);
}

.primary-nav a:hover,
.primary-nav a.is-active {
  opacity: 1;
  transform: scale(1.03);
}

.ambient::after {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background: var(--section-tint, transparent);
  content: "";
  mix-blend-mode: soft-light;
  pointer-events: none;
  transition: background-color 900ms ease, opacity 900ms ease;
}

html[data-active-section="home"] {
  --section-tint: #d7b579;
}

html[data-active-section="journal"] {
  --section-tint: #c9a88a;
}

html[data-active-section="stills"] {
  --section-tint: #aeb39b;
}

html[data-active-section="film"] {
  --section-tint: #b08a72;
}

html[data-active-section="about"] {
  --section-tint: #c7b89d;
}

.media-develop {
  opacity: 0.52;
  filter: blur(12px) grayscale(0.34) saturate(0.6);
  transform: scale(1.035);
  transition:
    opacity 900ms ease,
    filter 1100ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1200ms cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 950ms cubic-bezier(0.16, 1, 0.3, 1);
  clip-path: inset(10% 8% 10% 8% round 4px);
}

.media-develop.is-developed {
  opacity: 1;
  filter: blur(0) grayscale(0) saturate(1);
  transform: scale(1);
  clip-path: inset(0 round 0);
}

.scroll-ink-char {
  color: rgb(109 97 83 / 34%);
  transition: color 180ms ease, text-shadow 220ms ease;
}

.scroll-ink-char.is-lit {
  color: var(--warm-text);
  text-shadow: 0 0 22px rgb(173 88 52 / 7%);
}

.music-bars {
  display: flex;
  height: 15px;
  align-items: end;
  gap: 3px;
  margin-top: 7px;
  opacity: 0.72;
}

.music-bars i {
  display: block;
  width: 3px;
  height: 15px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleY(0.2);
  transform-origin: bottom;
  transition: transform 110ms linear;
}

.music-bars.is-fallback i {
  animation: music-bar-fallback 680ms ease-in-out infinite alternate;
}

.music-bars.is-fallback i:nth-child(2) {
  animation-delay: -180ms;
}

.music-bars.is-fallback i:nth-child(3) {
  animation-delay: -360ms;
}

.music-bars.is-fallback i:nth-child(4) {
  animation-delay: -120ms;
}

.music-bars.is-fallback i:nth-child(5) {
  animation-delay: -300ms;
}

@keyframes music-bar-fallback {
  to {
    transform: scaleY(1);
  }
}

.site-header .brand-mark,
.site-header .brand-mark i,
.header-email svg,
.featured__read span,
.article-row__arrow svg,
.music-dock__controls svg,
.music-dock__collapse svg,
.video-stage__fallback svg,
.lightbox__nav svg,
.lightbox__close svg {
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    color 180ms ease,
    opacity 180ms ease;
}

.header-email:hover svg,
.featured__read:hover span {
  transform: translateX(5px);
}

.article-row:hover .article-row__arrow svg {
  transform: translateX(3px);
}

.music-dock__next:hover svg,
.music-dock__controls button:hover svg {
  transform: scale(1.12);
}

.music-dock__controls button:active svg {
  transform: scale(0.82);
}

.video-stage__fallback button:hover svg {
  transform: scale(0.82);
}

.music-dock__collapse:hover svg {
  transform: translateY(2px);
}

.music-dock.is-collapsed .music-dock__collapse:hover svg {
  transform: translateY(-2px);
}

.lightbox__nav:hover svg,
.lightbox__close:hover svg {
  transform: rotate(4deg) scale(1.06);
}

.photo-filters {
  display: flex;
  max-width: var(--max-width);
  flex-wrap: wrap;
  gap: 9px;
  margin: -28px auto 28px;
}

.photo-filter {
  min-height: 36px;
  padding: 0 15px;
  border: 1px solid var(--warm-line);
  border-radius: 999px;
  color: var(--warm-muted);
  background: rgb(251 247 238 / 46%);
  cursor: pointer;
  font-size: 0.72rem;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-filter:hover,
.photo-filter.is-active {
  border-color: var(--accent);
  color: #fff8e7;
  background: var(--accent);
  transform: translateY(-2px);
}

.lightbox.is-wide .lightbox__stage {
  width: min(92vw, 1500px);
  height: min(72vh, 760px);
}

.lightbox.is-tall .lightbox__stage {
  width: min(72vw, 760px);
  height: min(86vh, 960px);
}

.lightbox.is-full .lightbox__stage {
  width: 96vw;
  height: 92vh;
}

.lightbox.is-open .lightbox__stage img {
  animation: lightbox-image-in 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes lightbox-image-in {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

.primary-nav {
  transform-origin: top center;
}

.primary-nav.is-open {
  clip-path: inset(0 0 0 0 round 12px);
}

.section-rail {
  position: fixed;
  top: 50%;
  left: 22px;
  z-index: 55;
  display: grid;
  gap: 13px;
  transform: translateY(-50%);
}

.section-rail a {
  display: grid;
  grid-template-columns: 22px 34px auto;
  gap: 8px;
  align-items: center;
  color: rgb(50 41 32 / 38%);
  font-family: var(--font-display);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  transition:
    color 220ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.section-rail i {
  display: block;
  width: 34px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0.4);
  transform-origin: left;
  transition:
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 220ms ease;
}

.section-rail b {
  overflow: hidden;
  width: 0;
  opacity: 0;
  font-weight: 600;
  white-space: nowrap;
  transition:
    width 260ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 220ms ease;
}

.section-rail a:hover,
.section-rail a.is-active {
  color: var(--accent);
  transform: translateX(5px);
}

.section-rail a:hover i,
.section-rail a.is-active i {
  background: var(--accent);
  transform: scaleX(1);
}

.section-rail a:hover b,
.section-rail a.is-active b {
  width: 4.5em;
  opacity: 1;
}

.journal__heading h2,
.stills__heading h2,
.film__copy h2,
.about__statement blockquote {
  transform: translate3d(0, var(--heading-shift, 0px), 0)
    scale(var(--heading-scale, 1));
  transform-origin: left bottom;
  transition: transform 120ms linear;
}

.depth-carousel__card.is-focus {
  border-color: var(--accent);
  box-shadow:
    0 34px 74px -22px rgb(77 47 22 / 42%),
    0 0 0 1px rgb(173 88 52 / 18%),
    0 18px 48px rgb(173 88 52 / 16%);
}

.hero__visual-frame::after,
.featured__preview::after,
.depth-carousel__card::after {
  position: absolute;
  inset: -20% -55%;
  z-index: 2;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgb(255 255 255 / 48%) 50%,
    transparent 70%
  );
  content: "";
  pointer-events: none;
  transform: translateX(-135%) rotate(7deg);
  transition: transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__visual-frame:hover::after,
.featured__preview:hover::after,
.depth-carousel__card:hover::after {
  transform: translateX(135%) rotate(7deg);
}

.action-link:hover,
.featured__read:hover {
  box-shadow: 0 16px 34px rgb(83 57 34 / 16%);
}

.featured__read:hover {
  border-color: transparent;
  color: #fff8e7;
  background: var(--accent);
}

.page-loader::before {
  content: "";
}

.page-loader::before {
  position: absolute;
  inset: -40% -70%;
  background: linear-gradient(
    110deg,
    transparent 36%,
    rgb(255 255 255 / 12%) 50%,
    transparent 64%
  );
  pointer-events: none;
  animation: loader-sheen 1.6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.page-loader__inner > span {
  animation: loader-word 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.page-loader__inner > small {
  animation: loader-word 900ms 140ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes loader-sheen {
  to {
    transform: translateX(70%);
  }
}

@keyframes loader-word {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

body.is-section-switching .ambient::after {
  animation: section-breathe 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes section-breathe {
  0% {
    opacity: 0.18;
  }
  45% {
    opacity: 0.38;
  }
  100% {
    opacity: 0.18;
  }
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 120;
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff8e7;
  background: var(--accent);
  transform: translate(-50%, -180%);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.skip-link:focus {
  transform: translate(-50%, 0);
}

.hero {
  grid-template-columns: minmax(0, 1.16fr) minmax(320px, 0.54fr);
  gap: clamp(52px, 8vw, 150px);
  min-height: max(100svh, 760px);
  align-items: center;
  padding-top: calc(var(--header-height) + 72px);
  padding-bottom: 96px;
}

.hero__copy {
  max-width: 930px;
}

.hero-title {
  max-width: 8.6em;
  font-family: "Iowan Old Style", "Baskerville", "Songti SC", "STSong",
    "SimSun", serif;
  font-size: clamp(4.8rem, 11.5vw, 10.5rem);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero__intro {
  max-width: 62ch;
  line-height: 2.05;
  text-wrap: pretty;
}

.hero__visual {
  padding: 9px;
  border: 1px solid rgb(76 58 40 / 14%);
  border-radius: 28px;
  background: rgb(251 247 238 / 38%);
  box-shadow:
    0 28px 80px rgb(83 57 34 / 14%),
    inset 0 0 0 1px rgb(255 255 255 / 42%);
}

.hero__visual-frame {
  border-radius: 20px;
}

.hero__visual-frame::before {
  border-radius: inherit;
}

.hero__profile {
  right: 20px;
  bottom: 20px;
  left: 20px;
  border: 1px solid rgb(255 248 231 / 12%);
  border-radius: 14px;
}

.hero__visual-note {
  padding: 0 8px;
}

.featured,
.journal,
.stills,
.film,
.about {
  padding-top: clamp(124px, 12vw, 196px);
  padding-bottom: clamp(132px, 13vw, 210px);
}

.featured__article {
  grid-template-columns: 118px minmax(0, 1fr) minmax(300px, 0.48fr);
  gap: clamp(34px, 5.5vw, 94px);
}

.featured__copy h2 {
  max-width: 10em;
  font-family: "Iowan Old Style", "Baskerville", "Songti SC", "STSong",
    "SimSun", serif;
  font-size: clamp(3.2rem, 7.8vw, 7rem);
  line-height: 0.98;
  text-wrap: balance;
}

.featured__preview {
  border-radius: 22px;
  box-shadow:
    0 24px 68px rgb(98 61 28 / 18%),
    inset 0 0 0 1px rgb(255 255 255 / 28%);
}

.article-row {
  min-height: 154px;
  padding-top: 38px;
  padding-bottom: 38px;
  grid-template-columns: 92px minmax(0, 1fr) minmax(150px, 0.25fr) 52px;
}

.article-row__title h3 {
  font-family: "Iowan Old Style", "Baskerville", "Songti SC", "STSong",
    "SimSun", serif;
  font-size: clamp(1.8rem, 3.3vw, 3rem);
  text-wrap: balance;
}

.depth-carousel-host {
  min-height: 620px;
}

.about__statement {
  position: sticky;
  top: calc(var(--header-height) + 38px);
  align-self: start;
}

.about__statement blockquote {
  text-wrap: balance;
}

.about__details {
  padding-top: 16px;
}

.footer {
  padding-top: 72px;
  padding-bottom: 46px;
}

.footer__brand strong {
  font-family: "Iowan Old Style", "Baskerville", "Songti SC", "STSong",
    "SimSun", serif;
  font-size: 1.55rem;
}

.footer__top,
.footer__bottom {
  max-width: 1180px;
}

.featured__meta time,
.article-row time,
.timeline__item time,
.lightbox__caption span,
.lightbox__caption p {
  font-variant-numeric: tabular-nums;
}

img {
  content-visibility: auto;
}

.hero {
  position: relative;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  top: 18%;
  left: -0.08em;
  z-index: 0;
  color: transparent;
  content: "LIU";
  font-family: "Iowan Old Style", "Baskerville", Georgia, serif;
  font-size: clamp(10rem, 30vw, 28rem);
  font-weight: 700;
  line-height: 0.72;
  letter-spacing: -0.08em;
  opacity: 0.16;
  pointer-events: none;
  -webkit-text-stroke: 1px rgb(173 88 52 / 42%);
}

.hero__copy,
.hero__visual {
  position: relative;
  z-index: 2;
}

.hero__visual {
  justify-self: end;
  transform: translateY(32px);
}

.featured,
.journal,
.stills,
.film,
.about {
  position: relative;
  isolation: isolate;
}

.featured::before,
.journal::before,
.stills::before,
.film::before,
.about::before {
  position: absolute;
  top: 38px;
  right: var(--page-pad);
  z-index: 0;
  color: rgb(50 41 32 / 8%);
  content: attr(data-index);
  font-family: "Iowan Old Style", "Baskerville", Georgia, serif;
  font-size: clamp(5rem, 13vw, 12rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
  pointer-events: none;
}

.featured {
  z-index: 1;
  background: linear-gradient(135deg, #f7edda, #ede0c7);
}

.journal {
  z-index: 2;
  margin-top: -48px;
  border-radius: 48px 48px 0 0;
  background: linear-gradient(145deg, #e5d7c0, #d8c6aa);
  box-shadow: 0 -20px 60px rgb(83 57 34 / 9%);
}

.stills {
  z-index: 3;
  margin-top: -48px;
  border-radius: 48px 48px 0 0;
  background: linear-gradient(145deg, #d8c7ad, #c9b394);
  box-shadow: 0 -20px 60px rgb(83 57 34 / 10%);
}

.film {
  z-index: 4;
  margin-top: -48px;
  border-radius: 48px 48px 0 0;
  background: linear-gradient(145deg, #eee1cb, #deceb3);
  box-shadow: 0 -20px 60px rgb(83 57 34 / 9%);
}

.about {
  z-index: 5;
  margin-top: -48px;
  border-radius: 48px 48px 0 0;
  background:
    radial-gradient(circle at 82% 12%, rgb(255 255 255 / 34%), transparent 26%),
    linear-gradient(145deg, #dcc9aa, #cdb895);
  box-shadow: 0 -20px 60px rgb(83 57 34 / 10%);
}

.video-stage {
  padding: 8px;
  border-radius: 26px;
  background: rgb(255 248 235 / 24%);
  box-shadow:
    0 30px 90px rgb(83 57 34 / 20%),
    inset 0 0 0 1px rgb(255 255 255 / 20%);
}

.video-stage video {
  border-radius: 18px;
}

.timeline__item {
  position: relative;
  padding-left: 24px;
}

.timeline__item::before {
  position: absolute;
  top: 24px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgb(173 88 52 / 10%);
  content: "";
}

.article-reader__panel {
  position: relative;
  color: #322920;
  background: #f7ecd6;
  box-shadow: -30px 0 100px rgb(38 24 14 / 28%);
}

.article-reader__panel::before {
  position: sticky;
  top: 0;
  z-index: 3;
  display: block;
  width: var(--reader-progress, 0%);
  height: 3px;
  background: var(--accent);
  content: "";
  transition: width 100ms linear;
}

.article-reader__header {
  border-color: rgb(76 58 40 / 16%);
}

.article-reader__lead {
  color: rgb(50 41 32 / 70%);
}

.article-reader__body {
  color: rgb(50 41 32 / 66%);
}

.article-reader__media img {
  border-color: rgb(76 58 40 / 16%);
  background: #e4d6be;
}

.music-dock {
  border-color: rgb(76 58 40 / 16%);
  border-radius: 22px;
  box-shadow:
    0 22px 60px rgb(83 57 34 / 16%),
    inset 0 0 0 1px rgb(255 255 255 / 34%);
}

.footer {
  position: relative;
  overflow: hidden;
  border-radius: 36px 36px 0 0;
}

.footer::before {
  position: absolute;
  right: -0.08em;
  bottom: -0.2em;
  color: transparent;
  content: "LQ";
  font-family: "Iowan Old Style", "Baskerville", Georgia, serif;
  font-size: clamp(8rem, 24vw, 22rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.08em;
  opacity: 0.08;
  pointer-events: none;
  -webkit-text-stroke: 1px rgb(255 248 231 / 40%);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(290px, 0.62fr);
  }

  .featured__article {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .featured__preview {
    grid-column: 2;
  }

  .about__statement {
    position: static;
  }

  .hero__visual {
    transform: translateY(12px);
  }
}

@media (max-width: 760px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(var(--header-height) + 46px);
  }

  .hero-title {
    font-size: clamp(3.6rem, 19vw, 5.8rem);
  }

  .hero__visual {
    width: 100%;
    border-radius: 22px;
    transform: none;
  }

  .hero::before {
    top: 24%;
    font-size: 44vw;
  }

  .featured,
  .journal,
  .stills,
  .film,
  .about {
    padding-top: 92px;
    padding-bottom: 104px;
  }

  .journal,
  .stills,
  .film,
  .about {
    margin-top: -24px;
    border-radius: 24px 24px 0 0;
  }

  .featured__article {
    grid-template-columns: 1fr;
  }

  .featured__preview {
    grid-column: auto;
    border-radius: 18px;
  }

  .featured__copy h2 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .article-row {
    grid-template-columns: 1fr 44px;
    min-height: 0;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .article-row time,
  .article-row__title,
  .article-row__tag {
    grid-column: 1;
  }

  .article-row__arrow {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .depth-carousel-host {
    min-height: 450px;
  }
}

/* Full index redesign: kinetic archive spread */
.site-header {
  top: 16px;
  right: auto;
  left: 50%;
  width: min(1180px, calc(100% - 38px));
  height: 68px;
  padding: 0 18px;
  border: 1px solid rgb(76 58 40 / 13%);
  border-radius: 999px;
  background: rgb(251 247 238 / 52%);
  box-shadow: 0 18px 54px rgb(83 57 34 / 10%);
  backdrop-filter: blur(24px);
  transform: translateX(-50%);
}

.site-header.is-scrolled {
  top: 10px;
  width: min(1080px, calc(100% - 30px));
  height: 58px;
  background: rgb(251 247 238 / 42%);
  box-shadow: 0 14px 42px rgb(83 57 34 / 9%);
}

.site-brand > span.brand-mark,
.footer__brand > span.brand-mark {
  border-radius: 50%;
}

.brand-mark::after {
  border-radius: 50%;
}

.primary-nav a {
  padding: 24px 0;
}

.hero {
  display: block;
  min-height: 100svh;
  padding: 132px var(--page-pad) 72px;
  overflow: hidden;
}

.hero__copy {
  position: relative;
  z-index: 3;
  width: min(62vw, 960px);
  padding-top: clamp(40px, 8vh, 96px);
}

.hero-title {
  max-width: 9.5em;
  font-size: clamp(5.4rem, 13.2vw, 12rem);
  line-height: 0.82;
}

.hero__intro {
  max-width: 52ch;
}

.hero__facts {
  max-width: 760px;
  margin-top: 46px;
  background: rgb(255 250 239 / 26%);
}

.hero__visual {
  position: absolute;
  top: 120px;
  right: var(--page-pad);
  bottom: 58px;
  width: min(38vw, 620px);
  padding: 10px;
  transform: none;
}

.hero__visual-frame {
  height: calc(100% - 78px);
  aspect-ratio: auto;
  border-radius: 4px;
}

.hero__profile {
  right: 24px;
  bottom: 88px;
  left: 24px;
  border-radius: 4px;
}

.hero__visual-note {
  padding: 0 10px;
}

.hero__scroll {
  left: 50%;
  transform: translateX(-50%);
}

.hero::before {
  top: 34%;
  left: -0.04em;
  font-size: clamp(14rem, 37vw, 36rem);
  opacity: 0.12;
}

.featured,
.journal,
.stills,
.film,
.about {
  margin-top: 0;
  border-radius: 0;
  padding-right: max(var(--page-pad), calc((100vw - var(--max-width)) / 2));
  padding-left: max(var(--page-pad), calc((100vw - var(--max-width)) / 2));
}

.featured {
  background:
    linear-gradient(90deg, rgb(173 88 52 / 7%) 1px, transparent 1px) 0 0 / 9vw
      100%,
    #f4ead6;
}

.featured__article {
  grid-template-columns: 96px minmax(0, 0.78fr) minmax(420px, 1.22fr);
  align-items: center;
}

.featured__preview {
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  transform: rotate(-1.2deg);
}

.journal {
  background: #d7c5a7;
}

.article-index {
  border-top: 0;
}

.article-row {
  grid-template-columns: 80px minmax(0, 1fr) 110px 56px;
  padding: 44px 0;
  border-bottom-color: rgb(76 58 40 / 22%);
}

.article-row:hover {
  padding-left: 24px;
  padding-right: 24px;
  background: rgb(255 250 239 / 18%);
}

.article-row__title h3 {
  font-size: clamp(2rem, 4.4vw, 4.4rem);
}

.stills {
  background:
    radial-gradient(circle at 85% 18%, rgb(255 255 255 / 22%), transparent 28%),
    #c7b497;
}

.photo-filters {
  margin-top: -44px;
}

.depth-carousel-host {
  min-height: 700px;
}

.depth-carousel__card {
  border-radius: 4px !important;
}

.film {
  color: #f7ecd6;
  background:
    radial-gradient(circle at 18% 20%, rgb(173 88 52 / 20%), transparent 26%),
    #38291f;
}

.film .section-kicker,
.film__copy > span {
  color: #df9a6d;
}

.film__copy h2,
.film__copy > p {
  color: #f7ecd6;
}

.video-stage {
  padding: 12px;
  border-color: rgb(247 236 214 / 16%);
  background: rgb(255 255 255 / 5%);
  box-shadow: 0 42px 110px rgb(0 0 0 / 34%);
}

.about {
  background: #e9dcc5;
}

.about__statement blockquote {
  font-size: clamp(3rem, 7vw, 7rem);
}

.about__facts div,
.timeline__item {
  padding-top: 24px;
  padding-bottom: 24px;
}

.music-dock {
  right: 50%;
  bottom: 18px;
  width: auto;
  min-width: 320px;
  max-width: calc(100vw - 36px);
  transform: translateX(50%);
}

.footer {
  border-radius: 0;
  background: #2f2118;
}

.footer__top,
.footer__bottom {
  max-width: 1100px;
}

@media (max-width: 1100px) {
  .site-header {
    width: calc(100% - 28px);
  }

  .hero__copy {
    width: 68vw;
  }

  .hero__visual {
    width: 36vw;
  }

  .featured__article {
    grid-template-columns: 80px minmax(0, 1fr);
  }

  .featured__preview {
    grid-column: 2;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-header.is-scrolled {
    top: 8px;
    width: calc(100% - 16px);
    height: 58px;
    padding: 0 11px;
  }

  .hero {
    display: grid;
    padding-top: 96px;
    padding-bottom: 62px;
  }

  .hero__copy {
    width: 100%;
    padding-top: 0;
  }

  .hero-title {
    font-size: clamp(3.8rem, 20vw, 6.2rem);
  }

  .hero__visual {
    position: relative;
    inset: auto;
    width: 100%;
    padding: 7px;
  }

  .hero__visual-frame {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .hero__profile {
    bottom: 18px;
  }

  .featured,
  .journal,
  .stills,
  .film,
  .about {
    margin-top: 0;
    border-radius: 0;
  }

  .article-row {
    grid-template-columns: 1fr 42px;
    padding-right: 0;
    padding-left: 0;
  }

  .article-row:hover {
    padding-right: 0;
    padding-left: 0;
  }

  .photo-filters {
    margin-top: -20px;
  }

  .depth-carousel-host {
    min-height: 470px;
  }

  .music-dock {
    right: 16px;
    left: 16px;
    width: auto;
    min-width: 0;
    transform: none;
  }
}

@media (pointer: coarse), (max-width: 900px) {
  .pointer-glow {
    display: none;
  }

  .action-link:active,
  .featured__read:active,
  .music-dock button:active,
  .footer__bottom a:active {
    transform: scale(0.97);
  }

  .section-rail {
    display: none;
  }
}

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

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

  .hero-title .char,
  .reveal-up,
  .text-motion {
    opacity: 1;
    transform: none;
    filter: none;
    clip-path: none;
  }

  .pointer-glow {
    display: none;
  }

  .action-link,
  .primary-nav a,
  .featured__read,
  .footer__bottom a,
  .music-dock button {
    transform: none;
  }

  .interaction-ripple {
    display: none;
  }
}
