@import url("https://fonts.googleapis.com/css2?family=Google+Sans+Flex:wght@100..900&family=Noto+Serif+JP:wght@200;300;400;600;700&family=Noto+Serif+SC:wght@400;600;700&display=swap");

:root {
  --ink: #121212;
  --muted: #5d6167;
  --paper: #f7f5ef;
  --line: rgba(18, 18, 18, 0.14);
  --white: #ffffff;
  --charcoal: #232629;
  --red: #e54835;
  --teal: #0f766e;
  --yellow: #f0c644;
  --blue: #111827;
  --radius: 8px;
  --shadow: 0 26px 70px rgba(18, 18, 18, 0.14);
  --font-sans: "Google Sans Flex", "Google Sans", "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  --font-cn-serif: "Source Han Serif SC", "Source Han Serif CN", "Noto Serif SC", "Songti SC", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Google Sans Flex", "Google Sans", "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

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

.site-header {
  width: 100%;
  min-height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 24px 48px;
  position: relative;
  z-index: 20;
}

.brand {
  font-weight: 800;
  font-size: 1.05rem;
}

.primary-nav,
.site-switcher {
  display: flex;
  align-items: center;
  gap: 24px;
}

.primary-nav a,
.site-switcher a,
.button,
.text-link,
.site-footer a {
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.primary-nav a {
  color: rgba(18, 18, 18, 0.68);
  font-size: 0.92rem;
  font-weight: 700;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--ink);
  outline: none;
}

.site-switcher {
  gap: 8px;
  padding: 5px;
  border: 1px solid rgba(18, 18, 18, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  transition: background-color 2100ms cubic-bezier(0.58, 0, 0.18, 1), border-color 2100ms cubic-bezier(0.58, 0, 0.18, 1);
}

.site-switcher a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 32px;
  min-width: 68px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(18, 18, 18, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  transition: background-color 2100ms cubic-bezier(0.58, 0, 0.18, 1), color 1800ms ease-in-out, border-color 2100ms cubic-bezier(0.58, 0, 0.18, 1), transform 180ms ease;
}

.site-switcher a:hover,
.site-switcher a:focus-visible,
.site-switcher a[aria-current="page"] {
  background: var(--ink);
  color: var(--white);
  outline: none;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 800;
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary,
.button.dark {
  background: var(--ink);
  color: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-weight: 800;
}

.image-placeholder {
  background:
    linear-gradient(135deg, rgba(18, 18, 18, 0.045) 25%, transparent 25%) 0 0 / 20px 20px,
    linear-gradient(135deg, transparent 75%, rgba(18, 18, 18, 0.045) 75%) 0 0 / 20px 20px,
    #eef0f0;
  border: 1px solid rgba(18, 18, 18, 0.13);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 92px;
  padding: 28px 48px;
  background: var(--charcoal);
  color: var(--white);
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  font-weight: 800;
}

/* YUKANE studio */
.site-studio {
  background: var(--paper);
}

.studio-header {
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
}

.studio-hero {
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: stretch;
  position: relative;
  background: var(--paper);
}

.studio-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 48px 150px 8vw;
}

.studio-copy h1 {
  max-width: 760px;
  margin: 0 0 24px;
  font-family: var(--font-sans);
  font-size: 4.25rem;
  line-height: 1.08;
  font-weight: 720;
  letter-spacing: 0;
}

.studio-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.85;
}

.studio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.studio-visual {
  flex: 1.18;
  min-width: 420px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: var(--blue);
  position: relative;
  overflow: hidden;
}

.studio-image {
  width: 100%;
  min-height: 100%;
  border-width: 0 0 0 1px;
  background-color: #f2f4f3;
}

.studio-cards {
  position: absolute;
  left: 8vw;
  right: 8vw;
  bottom: 34px;
  display: flex;
  gap: 18px;
  z-index: 5;
}

.studio-cards article {
  flex: 1;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.studio-cards span {
  color: #0a8f7a;
  font-size: 0.78rem;
  font-weight: 800;
}

.studio-cards h2 {
  margin: 10px 0 8px;
  font-size: 1.05rem;
}

.studio-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.studio-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 36px;
  padding: 72px 8vw;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.studio-bottom h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 2.7rem;
  line-height: 1.1;
  font-weight: 650;
  letter-spacing: 0;
}

/* Editorial poster homepage */
.site-studio {
  background: #fffefb;
  height: 100vh;
  overflow: hidden;
  transition: background-color 2800ms ease-in-out, color 2400ms ease-in-out;
}

.site-studio.gsap-motion {
  transition: none;
}

.preloader,
.split-overlay,
.tags-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.preloader,
.split-overlay {
  background: #050508;
  color: #fffefb;
}

.preloader {
  z-index: 92;
}

.split-overlay {
  z-index: 91;
}

.tags-overlay {
  z-index: 93;
}

.studio-page-shell {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  clip-path: polygon(0 48%, 0 48%, 0 52%, 0 52%);
  z-index: 94;
  background: #fffefb;
  will-change: clip-path;
}

.site-studio:not(.is-daybreak) .studio-page-shell {
  background: #050508;
}

.intro-title,
.outro-title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  margin: 0;
  text-align: center;
  transform: translate(calc(-50% + var(--loader-title-x, 0px)), -50%);
  will-change: transform;
}

.intro-title h1,
.outro-title h1 {
  display: inline-block;
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: none;
  will-change: transform;
}

.outro-title {
  top: 50%;
  left: 50%;
  --loader-title-x: 0px;
}

.outro-title h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

.intro-title .char,
.outro-title .char,
.tag .word {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.intro-title .char span,
.outro-title .char span,
.tag .word {
  position: relative;
  display: inline-block;
  transform: translateY(-100%);
  will-change: transform;
}

.intro-title .first-char {
  transform-origin: left top;
}

.tag {
  position: absolute;
  width: max-content;
  color: rgba(255, 254, 251, 0.38);
  overflow: hidden;
}

.tag p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
}

.tag-1 {
  top: 15%;
  left: 12%;
}

.tag-2 {
  bottom: 16%;
  left: 24%;
}

.tag-3 {
  bottom: 28%;
  right: 13%;
}

.studio-header {
  background: #fffefb;
  border-bottom: 0;
  justify-content: flex-end;
  opacity: 0;
  animation: studioContentReveal 900ms ease 1450ms forwards;
  transition: background-color 2100ms cubic-bezier(0.58, 0, 0.18, 1), color 1800ms ease-in-out;
}

.studio-poster {
  position: relative;
  height: calc(100vh - 88px);
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(8, minmax(0, 1fr));
  gap: 18px 34px;
  padding: 46px 6vw 42px;
  overflow: hidden;
  background: #fffefb;
  background-color: #fffefb;
  transition: background-color 2100ms cubic-bezier(0.58, 0, 0.18, 1), color 1800ms ease-in-out;
}

.studio-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(18, 18, 18, 0.026) 0 1px, transparent 1px 118px);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  animation: studioContentReveal 900ms ease 1250ms forwards;
}

.split-transition {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
  opacity: 0;
  overflow: hidden;
  contain: paint;
  will-change: opacity;
}

.split-transition__layer,
.split-transition__slice,
.split-transition__title {
  position: absolute;
  display: block;
  pointer-events: none;
}

.split-transition__layer {
  inset: 0;
  overflow: hidden;
  background: #050508;
  color: #fffefb;
  will-change: transform, clip-path;
}

.split-transition__layer-top {
  z-index: 2;
}

.split-transition__layer-bottom {
  z-index: 1;
}

.split-transition__slice {
  left: -4vw;
  right: -4vw;
  top: 50%;
  height: clamp(30px, 4.2vh, 48px);
  z-index: 3;
  overflow: hidden;
  background: #fffefb;
  transform: translateY(-50%) scaleX(0);
  transform-origin: center;
  box-shadow:
    0 -1px 0 rgba(255, 254, 246, 0.08),
    0 1px 0 rgba(255, 254, 246, 0.08);
  will-change: transform, opacity;
}

.split-transition__slice::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, rgba(18, 18, 18, 0.026) 0 1px, transparent 1px 118px);
  opacity: 0.88;
}

.split-transition__title {
  margin: 0;
  color: #fffefb;
  text-shadow: 0 0 11px rgba(255, 254, 246, 0.18);
  will-change: transform, opacity;
}

.studio-poster > :not(.studio-vertical-title) {
  opacity: 0;
  animation: studioContentReveal 900ms ease 1450ms forwards;
}

.gsap-motion .studio-header,
.gsap-motion .studio-poster::before,
.gsap-motion .studio-poster > :not(.studio-vertical-title) {
  opacity: 1;
  animation: none;
}

.gsap-motion .studio-header,
.gsap-motion .studio-poster,
.gsap-motion .site-switcher,
.gsap-motion .site-switcher a {
  transition: transform 180ms ease;
}

.site-studio:not(.is-daybreak) {
  --constellation-rest: rgba(255, 254, 246, 0.48);
  --constellation-soft: rgba(255, 254, 246, 0.26);
  --constellation-node-rest: rgba(255, 254, 246, 0.72);
  --constellation-node-soft: rgba(255, 254, 246, 0.22);
  --constellation-glow: rgba(255, 254, 246, 0.34);
  --lit-text-color: rgba(255, 254, 246, 0.98);
  --lit-note-color: rgba(255, 254, 246, 0.84);
  --lit-accent-color: rgba(255, 254, 246, 0.96);
  background: #050508;
  color: #fffefb;
}

.site-studio:not(.is-daybreak) .studio-header,
.site-studio:not(.is-daybreak) .studio-poster {
  background-color: #050508;
}

.site-studio:not(.is-daybreak) .studio-poster::before {
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.032) 0 1px, transparent 1px 118px);
}

.site-studio:not(.is-daybreak) .site-switcher {
  border-color: rgba(255, 254, 246, 0.2);
  background: rgba(255, 254, 246, 0.04);
}

.site-studio:not(.is-daybreak) .site-switcher a {
  color: rgba(255, 254, 246, 0.8);
}

.site-studio:not(.is-daybreak) .site-switcher a[aria-current="page"] {
  background: rgba(255, 254, 246, 0.9);
  color: #050508;
}

.site-studio:not(.is-daybreak) :is(.studio-caption, .studio-poster-copy p, .studio-fragment, .studio-fragment-b p, .poem-fragment, .poem-original, .poem-note, .poem-translation, .studio-poster-meta) {
  color: rgba(255, 254, 246, 0.78);
}

.site-studio:not(.is-daybreak) .studio-vertical-title:is(h1) {
  color: rgba(255, 254, 246, 0.96);
}

.site-studio:not(.is-daybreak) .studio-vertical-title .title-reveal-char::before,
.site-studio:not(.is-daybreak) .studio-vertical-title .title-reveal-char::after {
  color: rgba(255, 254, 246, 0.92);
}

.site-studio:not(.is-daybreak) .text-reveal-char {
  color: rgba(255, 254, 246, 0.92);
  text-shadow: 0 0 11px rgba(255, 254, 246, 0.18);
}

.site-studio.is-daybreak {
  --constellation-rest: rgba(18, 18, 18, 0.34);
  --constellation-soft: rgba(18, 18, 18, 0.24);
  --constellation-node-rest: rgba(18, 18, 18, 0.36);
  --constellation-node-soft: rgba(18, 18, 18, 0.32);
  --constellation-glow: rgba(18, 18, 18, 0.08);
  --lit-text-color: rgba(18, 18, 18, 0.96);
  --lit-note-color: rgba(18, 18, 18, 0.84);
  --lit-accent-color: rgba(18, 18, 18, 0.62);
  background: #fffefb;
  color: var(--ink);
}

@keyframes studioContentReveal {
  to {
    opacity: 1;
  }
}

.text-reveal-char {
  display: inline-block;
  overflow: hidden;
  opacity: 0;
  transform: translateY(0.42em);
  animation: textRevealChar 680ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  transition: color 2400ms ease-in-out, text-shadow 1800ms ease-in-out;
  will-change: opacity, transform;
}

.reveal-char-inner {
  display: inline-block;
  will-change: transform;
}

.gsap-motion .text-reveal-char {
  opacity: 0;
  transform: translateY(0.42em);
  animation: none;
}

.studio-vertical-title .title-reveal-char {
  position: relative;
  transform: translateY(0.28em);
  clip-path: inset(0 0 100% 0);
  text-shadow: 0 0 0 rgba(18, 18, 18, 0);
  animation-name: titleRevealChar;
  animation-duration: 900ms;
  animation-timing-function: steps(2, end);
  will-change: opacity, transform, clip-path;
}

.gsap-motion .studio-vertical-title .title-reveal-char {
  clip-path: inset(0 0 100% 0);
  animation: none;
}

.gsap-motion .studio-vertical-title .title-reveal-char::before,
.gsap-motion .studio-vertical-title .title-reveal-char::after {
  opacity: 0;
}

.studio-vertical-title .title-reveal-char::before {
  content: attr(data-char);
  position: absolute;
  inset: 0;
  color: rgba(18, 18, 18, 0.92);
  clip-path: polygon(0 0, 100% 0, 100% 43%, 0 58%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(0);
  animation: titleShardFlashA 620ms steps(2, end) var(--reveal-delay, 0ms) forwards;
}

.studio-vertical-title .title-reveal-char::after {
  content: attr(data-char);
  position: absolute;
  inset: 0;
  color: rgba(18, 18, 18, 0.92);
  clip-path: polygon(0 42%, 100% 30%, 100% 100%, 0 100%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(0);
  animation: titleShardFlashB 620ms steps(2, end) var(--reveal-delay, 0ms) forwards;
}

@keyframes textRevealChar {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes titleRevealChar {
  0% {
    opacity: 0;
    transform: translateY(0.28em);
    clip-path: inset(0 0 100% 0);
    text-shadow: 0 0 0 rgba(18, 18, 18, 0);
  }

  12% {
    opacity: 0.96;
    transform: translate(-0.05em, 0.2em);
    clip-path: inset(0 0 58% 0);
    text-shadow: -0.08em 0 rgba(18, 18, 18, 0.18);
  }

  19% {
    opacity: 0.08;
    transform: translate(0.06em, 0.16em);
    clip-path: inset(34% 0 40% 0);
  }

  31% {
    opacity: 1;
    transform: translate(-0.03em, 0.08em);
    clip-path: inset(0 0 18% 0);
    text-shadow: 0.06em 0 rgba(18, 18, 18, 0.14);
  }

  48% {
    opacity: 1;
    transform: translateY(-0.03em);
    clip-path: inset(0 0 0 0);
    text-shadow: 0 0 0 rgba(18, 18, 18, 0);
  }

  68% {
    transform: translateY(0.02em);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    text-shadow: 0 0 0 rgba(18, 18, 18, 0);
  }
}

@keyframes titleShardFlashA {
  0%,
  7% {
    opacity: 0;
    transform: translate(0, 0);
  }

  12% {
    opacity: 0.9;
    transform: translate(-0.16em, -0.07em);
  }

  21% {
    opacity: 0;
    transform: translate(0.12em, 0.03em);
  }

  30% {
    opacity: 0.62;
    transform: translate(0.09em, -0.02em);
  }

  44%,
  to {
    opacity: 0;
    transform: translate(0, 0);
  }
}

@keyframes titleShardFlashB {
  0%,
  10% {
    opacity: 0;
    transform: translate(0, 0);
  }

  15% {
    opacity: 0.76;
    transform: translate(0.14em, 0.08em);
  }

  25% {
    opacity: 0;
    transform: translate(-0.08em, -0.02em);
  }

  35% {
    opacity: 0.58;
    transform: translate(-0.11em, 0.05em);
  }

  48%,
  to {
    opacity: 0;
    transform: translate(0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .studio-header,
  .studio-poster::before,
  .studio-poster > :not(.studio-vertical-title),
  .studio-vertical-title,
  .text-reveal-char {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .studio-vertical-title .title-reveal-char {
    clip-path: none;
  }

  .studio-vertical-title .title-reveal-char::before,
  .studio-vertical-title .title-reveal-char::after {
    display: none;
  }

  .constellation-ready .studio-constellation line,
  .constellation-ready .studio-constellation circle,
  .constellation-lit-text,
  .constellation-lit-text::after {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }

}

.studio-poster-copy {
  grid-column: 1 / 4;
  grid-row: 1 / 4;
  align-self: start;
  padding: 0;
  display: block;
  transform: translateY(-30px);
  z-index: 2;
}

.studio-caption {
  margin: 0 0 16px;
  color: rgba(18, 18, 18, 0.72);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.7;
}

.studio-poster-copy p:not(.eyebrow):not(.studio-caption) {
  max-width: 34ch;
  margin: 0;
  color: rgba(18, 18, 18, 0.86);
  font-family: var(--font-serif);
  font-size: 0.88rem;
  line-height: 2.08;
}

.studio-vertical-title {
  grid-column: 6 / 10;
  grid-row: 2 / 5;
  align-self: center;
  justify-self: start;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--font-sans);
  font-size: clamp(3rem, 5.4vw, 5.9rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0;
  color: rgba(18, 18, 18, 0.92);
  transition: color 2400ms ease-in-out;
  z-index: 2;
}

.studio-title-word {
  display: block;
  opacity: 0;
  white-space: nowrap;
  letter-spacing: 0;
}

.studio-title-word[data-text-reveal-ready="true"] {
  opacity: 1;
}

.studio-title-yukane {
  font-size: 1em;
}

.studio-title-studio {
  font-size: 0.82em;
  font-weight: 520;
  transform: translateX(46%);
}

.studio-fragment {
  color: var(--ink);
  font-family: var(--font-serif);
  z-index: 2;
}

.studio-fragment-a {
  grid-column: 4 / 6;
  grid-row: 1 / 8;
  align-self: center;
  justify-self: center;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 18px;
  transform: translateY(-8px);
}

.studio-fragment-a h2 {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  margin: 0;
  font-size: 1.66rem;
  line-height: 1.55;
  font-weight: 300;
  letter-spacing: 0;
  transform: translateY(-26px);
}

.studio-fragment-a p:not(.studio-caption) {
  margin: 0;
  font-size: 0.92rem;
  line-height: 2.05;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 8px;
}

.fragment-line {
  display: block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
}

.fragment-line-right {
  transform: translateY(12px);
}

.fragment-line-left {
  transform: translateY(44px);
}

.studio-fragment-b {
  grid-column: 6 / 12;
  grid-row: 6 / 8;
  align-self: center;
  transform: translateX(32px);
  z-index: 2;
}

.studio-fragment-b p {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.45;
  font-weight: 200;
  white-space: nowrap;
}

.poem-fragment {
  color: rgba(18, 18, 18, 0.72);
  line-height: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-18px);
  z-index: 2;
}

.poem-fragment p {
  margin: 0;
}

.poem-original {
  font-family: var(--font-cn-serif);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.72;
  color: rgba(18, 18, 18, 0.66);
}

.poem-note {
  font-family: var(--font-cn-serif);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.68;
  color: rgba(18, 18, 18, 0.58);
}

.poem-translation {
  font-family: var(--font-serif);
  font-size: 0.68rem;
  line-height: 1.58;
  color: rgba(18, 18, 18, 0.36);
}

.poem-fragment-a {
  grid-column: 1 / 4;
  grid-row: 5 / 6;
}

.poem-fragment-b {
  grid-column: 7 / 11;
  grid-row: 5 / 6;
  align-self: start;
  justify-self: start;
  margin-top: 6px;
  margin-left: 28px;
}

.poem-fragment-c {
  grid-column: 10 / 13;
  grid-row: 2 / 3;
  align-self: start;
  margin-left: 12px;
}

.poem-fragment-d {
  grid-column: 6 / 10;
  grid-row: 8 / 9;
  align-self: start;
  margin-top: -4px;
}

.poem-fragment-e {
  grid-column: 10 / 13;
  grid-row: 4 / 5;
  align-self: start;
  margin-top: 10px;
}

.studio-constellation {
  grid-column: 1 / 13;
  grid-row: 1 / 9;
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: visible;
  pointer-events: none;
  opacity: 1;
  z-index: 0;
  transition: opacity 1500ms ease-in-out, filter 1500ms ease-in-out;
}

.constellation-ready .studio-constellation {
  z-index: 1;
}

.site-studio.is-daybreak .studio-constellation {
  opacity: 0.42;
  filter: none;
  z-index: 1;
}

.studio-constellation path,
.studio-constellation line {
  stroke: var(--constellation-soft, rgba(18, 18, 18, 0.22));
  stroke-width: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  transition: opacity 1500ms ease-in-out, stroke 1500ms ease-in-out, stroke-width 1500ms ease-in-out, filter 1500ms ease-in-out;
}

.studio-constellation .constellation-guide {
  display: none;
}

.studio-constellation circle {
  r: 4px;
  fill: var(--constellation-node-soft, rgba(18, 18, 18, 0.32));
  stroke: #fffefb;
  stroke-width: 5;
  transition: fill 2600ms ease-in-out, opacity 2600ms ease-in-out, stroke 1800ms ease-in-out, stroke-width 1800ms ease-in-out;
}

.site-studio:not(.is-daybreak) .studio-constellation circle {
  stroke: #050508;
}

.studio-constellation .constellation-head circle {
  opacity: 0;
  stroke: transparent;
}

.studio-constellation .constellation-head-glow {
  r: 5.8px;
  fill: rgba(255, 254, 246, 0.16);
  filter: drop-shadow(0 0 7px rgba(255, 254, 246, 0.28));
}

.studio-constellation .constellation-head-core {
  r: 1.8px;
  fill: rgba(255, 254, 246, 0.96);
  filter: drop-shadow(0 0 4px rgba(255, 254, 246, 0.5));
}

.constellation-ready .studio-constellation .constellation-route,
.constellation-ready .studio-constellation line {
  opacity: 0;
  stroke: var(--constellation-soft, rgba(18, 18, 18, 0.08));
  stroke-width: 1.15;
  animation:
    constellationLineDraw 1220ms cubic-bezier(0.62, 0, 0.18, 1) var(--line-delay, 2050ms) forwards,
    constellationLineBreathe 4600ms ease-in-out var(--line-breathe-delay, 3100ms) infinite;
}

.gsap-motion.constellation-ready .studio-constellation .constellation-route,
.gsap-motion.constellation-ready .studio-constellation line {
  animation: none;
  opacity: 0;
  stroke-dasharray: none;
  stroke-dashoffset: 0;
}

.constellation-ready .studio-constellation .constellation-nodes circle {
  r: 3px;
  opacity: 0;
  fill: var(--constellation-node-soft, rgba(18, 18, 18, 0.18));
  stroke: transparent;
  stroke-width: 0;
  filter: drop-shadow(0 0 0 var(--constellation-glow, rgba(255, 254, 246, 0)));
  transform: scale(0.42);
  transform-box: fill-box;
  transform-origin: center;
  animation:
    constellationNodeIgnite 620ms cubic-bezier(0.22, 1, 0.36, 1) var(--node-delay, 1620ms) forwards,
    constellationNodeBreathe 4300ms ease-in-out var(--node-breathe-delay, 2920ms) infinite;
}

.gsap-motion.constellation-ready .studio-constellation .constellation-nodes circle {
  animation: none;
  opacity: 0;
  transform: none;
}

.gsap-motion.constellation-ready .studio-constellation .constellation-head circle {
  animation: none;
  opacity: 0;
}

.site-studio.is-daybreak.constellation-ready .studio-constellation .constellation-route,
.site-studio.is-daybreak.constellation-ready .studio-constellation line {
  animation: none;
  opacity: 1;
  stroke: rgba(18, 18, 18, 0.22);
  stroke-width: 1;
  stroke-dashoffset: 0;
  filter: none;
}

.site-studio.is-daybreak.constellation-ready .studio-constellation .constellation-nodes circle {
  animation: none;
  opacity: 1;
  fill: rgba(18, 18, 18, 0.3);
  stroke: transparent;
  stroke-width: 0;
  filter: none;
  transform: scale(1);
}

.site-studio.is-daybreak.constellation-ready:not(.gsap-motion) .studio-constellation .constellation-head circle {
  opacity: 0;
  visibility: hidden;
}

.site-studio.is-daybreak .studio-constellation .constellation-head-glow {
  fill: rgba(18, 18, 18, 0.14);
  filter: drop-shadow(0 0 5px rgba(18, 18, 18, 0.12));
}

.site-studio.is-daybreak .studio-constellation .constellation-head-core {
  fill: rgba(18, 18, 18, 0.74);
  filter: drop-shadow(0 0 3px rgba(18, 18, 18, 0.16));
}

.constellation-lit-text {
  position: relative;
  opacity: 0.62;
  transition: opacity 900ms ease, color 2200ms ease-in-out, filter 900ms ease, text-shadow 900ms ease;
  animation: constellationTextGlow 1800ms ease var(--lit-delay, 3200ms) both;
}

.constellation-lit-text::after {
  content: "";
  display: block;
  width: min(100%, 34rem);
  height: 1px;
  margin: 0.18em 0 -0.18em;
  background: linear-gradient(90deg, transparent, rgba(255, 254, 246, 0.44), rgba(255, 254, 246, 0.13), transparent);
  opacity: 0;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  animation: constellationTextGlint 920ms cubic-bezier(0.62, 0, 0.18, 1) var(--lit-delay, 3200ms) both;
}

.gsap-motion .constellation-lit-text,
.gsap-motion .constellation-lit-text::after {
  animation: none;
}

.constellation-lit-text :is(p, h2, span),
.constellation-lit-text:is(p, h2, span) {
  transition: color 2200ms ease-in-out, opacity 900ms ease, filter 900ms ease, text-shadow 900ms ease;
}

.constellation-lit-text.is-constellation-lit,
.constellation-lit-text.is-constellation-lit :is(p, h2, span),
.constellation-lit-text.is-constellation-lit:is(p, h2, span) {
  opacity: 1;
  color: var(--lit-text-color, rgba(18, 18, 18, 0.96));
  filter: brightness(1.08);
  text-shadow:
    0 0 9px rgba(255, 254, 246, 0.32),
    0 0 1px rgba(255, 254, 246, 0.72);
}

.constellation-lit-text.is-constellation-lit .poem-original,
.constellation-lit-text.is-constellation-lit.poem-original {
  color: var(--lit-text-color, rgba(18, 18, 18, 0.96));
}

.constellation-lit-text.is-constellation-lit .poem-note,
.constellation-lit-text.is-constellation-lit.poem-note {
  color: var(--lit-note-color, rgba(18, 18, 18, 0.84));
}

.constellation-lit-text.is-constellation-lit .poem-translation,
.constellation-lit-text.is-constellation-lit.poem-translation {
  color: var(--lit-accent-color, rgba(18, 18, 18, 0.62));
}

.site-studio.is-daybreak .constellation-lit-text,
.site-studio.is-daybreak .constellation-lit-text :is(p, h2, span),
.site-studio.is-daybreak .constellation-lit-text:is(p, h2, span) {
  opacity: 1;
  filter: none;
  text-shadow: none;
}

@keyframes constellationLineDraw {
  0% {
    opacity: 0;
    stroke-dashoffset: 1;
    filter: drop-shadow(0 0 0 rgba(255, 254, 246, 0));
  }

  10% {
    opacity: 1;
  }

  46% {
    stroke: rgba(255, 254, 246, 0.9);
    stroke-width: 2.4;
    filter: drop-shadow(0 0 5px rgba(255, 254, 246, 0.36));
  }

  72% {
    stroke: rgba(255, 254, 246, 0.68);
    stroke-width: 1.8;
    filter: drop-shadow(0 0 3px rgba(255, 254, 246, 0.2));
  }

  to {
    opacity: 1;
    stroke: var(--constellation-rest, rgba(18, 18, 18, 0.34));
    stroke-width: 1.15;
    stroke-dashoffset: 0;
    filter: drop-shadow(0 0 2px rgba(18, 18, 18, 0.1));
  }
}

@keyframes constellationLineBreathe {
  0%,
  100% {
    stroke: var(--constellation-soft, rgba(18, 18, 18, 0.24));
  }

  48% {
    stroke: var(--constellation-rest, rgba(18, 18, 18, 0.34));
  }
}

@keyframes constellationNodeIgnite {
  0% {
    opacity: 0;
    fill: rgba(18, 18, 18, 0.12);
    filter: drop-shadow(0 0 0 rgba(255, 254, 246, 0));
    transform: scale(0.42);
  }

  42% {
    opacity: 1;
    fill: rgba(255, 254, 246, 0.98);
    filter: drop-shadow(0 0 4px var(--constellation-glow, rgba(255, 254, 246, 0.34)));
    transform: scale(1.04);
  }

  to {
    opacity: 1;
    fill: var(--constellation-node-rest, rgba(18, 18, 18, 0.36));
    filter: drop-shadow(0 0 2px rgba(18, 18, 18, 0.1));
    transform: scale(1);
  }
}

@keyframes constellationNodeBreathe {
  0%,
  100% {
    fill: var(--constellation-node-soft, rgba(18, 18, 18, 0.32));
    filter: drop-shadow(0 0 1px rgba(18, 18, 18, 0.06));
  }

  50% {
    fill: var(--constellation-node-rest, rgba(18, 18, 18, 0.36));
    filter: drop-shadow(0 0 3px var(--constellation-glow, rgba(255, 254, 246, 0.24)));
  }
}

@keyframes constellationTextGlow {
  0%,
  100% {
    filter: none;
    text-shadow: 0 0 0 rgba(255, 254, 246, 0);
  }

  38% {
    filter: brightness(1.08);
    text-shadow:
      0 0 8px rgba(255, 254, 246, 0.3),
      0 0 1px rgba(255, 254, 246, 0.68);
  }
}

@keyframes constellationTextGlint {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }

  28% {
    opacity: 0.8;
  }

  72% {
    opacity: 0.22;
    transform: scaleX(1);
  }

  to {
    opacity: 0;
    transform: scaleX(1);
  }
}

.studio-poster-meta {
  grid-column: 1 / 4;
  grid-row: 8 / 9;
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: rgba(18, 18, 18, 0.62);
  font-size: 0.68rem;
  font-weight: 760;
  z-index: 2;
}

.studio-poster-meta p {
  max-width: 34ch;
  margin: 0;
}

.studio-poster-meta a {
  display: inline-flex;
  width: fit-content;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.poster-nav {
  display: flex;
  gap: 14px;
}

.studio-poster .studio-cards {
  grid-column: 6 / 12;
  grid-row: 7 / 9;
  position: static;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 30px;
  z-index: 3;
}

.studio-poster .studio-cards article {
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.studio-poster .studio-cards article:nth-child(2) {
  margin-top: 38px;
}

.studio-poster .studio-cards article:nth-child(3) {
  margin-top: 12px;
}

.studio-poster .studio-cards span {
  color: rgba(18, 18, 18, 0.4);
  font-family: var(--font-sans);
}

.studio-poster .studio-cards h2 {
  margin: 8px 0 10px;
  font-size: 1.18rem;
  line-height: 1.35;
  font-weight: 700;
}

.studio-poster .studio-cards p {
  color: rgba(18, 18, 18, 0.7);
  font-size: 0.86rem;
  line-height: 1.9;
}

/* About */
.site-photo {
  background: var(--yellow);
  color: var(--ink);
}

.photo-header {
  position: fixed;
  top: 0;
  left: 0;
}

.photo-header .site-switcher {
  background: rgba(255, 255, 255, 0.62);
}

.photo-stage {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.photo-left {
  flex: 1.12;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 48px 88px 10vw;
  position: relative;
  z-index: 3;
}

.photo-left .eyebrow {
  color: rgba(18, 18, 18, 0.62);
}

.photo-left h1 {
  margin: 0 0 26px;
  font-family: var(--font-sans);
  font-size: clamp(3.5rem, 5.8vw, 4.8rem);
  line-height: 1.04;
  font-weight: 780;
  letter-spacing: 0;
  color: var(--ink);
}

.photo-left p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 0 18px;
  font-size: 0.98rem;
  line-height: 1.9;
  color: rgba(18, 18, 18, 0.74);
}

.photo-right {
  flex: 1;
  height: 100vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.circle-image {
  width: 128vh;
  height: 128vh;
  border-radius: 50%;
  position: relative;
  right: -34vh;
  box-shadow: 0 30px 80px rgba(18, 18, 18, 0.22);
  background-color: #f5f6f1;
}

.photo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 48px;
  background: var(--yellow);
  border-top: 1px solid rgba(18, 18, 18, 0.16);
}

.photo-strip article {
  flex: 1 1 250px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--ink);
}

.photo-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius);
  background-color: #f4f3ec;
}

.photo-strip h2 {
  margin: 0;
  font-size: 1rem;
}

.photo-strip p {
  max-width: 32ch;
  margin: 0;
  color: rgba(18, 18, 18, 0.68);
  font-size: 0.9rem;
  line-height: 1.65;
}

.photo-footer {
  background: var(--yellow);
  color: var(--ink);
  border-top: 1px solid rgba(18, 18, 18, 0.18);
}

.photo-footer p {
  color: rgba(18, 18, 18, 0.68);
}

/* Art & Design Archive */
.site-archive {
  background: #fafafa;
}

.archive-shell {
  min-height: 100vh;
  display: flex;
}

.archive-rail {
  flex: 0 0 150px;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 44px 24px;
  border-right: 1px solid var(--line);
  background: var(--white);
}

.archive-rail a {
  position: sticky;
  top: 44px;
  writing-mode: vertical-rl;
  font-family: var(--font-sans);
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0;
}

.archive-page {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.archive-header {
  border-bottom: 1px solid var(--line);
  background: rgba(250, 250, 250, 0.9);
}

.archive-main {
  flex: 1;
  padding: 70px 48px 100px;
}

.archive-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-bottom: 64px;
}

.archive-intro h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: 3.75rem;
  line-height: 1.05;
  font-weight: 680;
  letter-spacing: 0;
}

.archive-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 80px 42px;
}

.archive-item {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.archive-one {
  width: 56%;
}

.archive-two {
  width: 34%;
  margin-top: 98px;
}

.archive-three {
  width: 46%;
  margin-left: 12%;
}

.archive-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
}

.archive-image.tall {
  aspect-ratio: 3 / 4;
}

.archive-image.wide {
  aspect-ratio: 16 / 9;
}

.archive-item p {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
}

.archive-item h2 {
  margin: 0 0 10px;
  font-family: var(--font-sans);
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 680;
  letter-spacing: 0;
}

.archive-item span {
  color: var(--muted);
  line-height: 1.7;
}

.archive-footer {
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.archive-footer p {
  color: var(--muted);
}

@media (max-width: 1120px) {
  .site-header {
    flex-wrap: wrap;
    padding: 22px 32px;
  }

  .studio-copy h1,
  .photo-left h1 {
    font-size: 3.7rem;
  }

  .studio-visual {
    min-width: 340px;
  }

  .studio-cards {
    left: 32px;
    right: 32px;
  }

  .studio-vertical-title {
    font-size: 4.2rem;
  }

  .studio-fragment-b p {
    font-size: 1.9rem;
  }

  .archive-rail {
    flex-basis: 112px;
  }

  .archive-intro h1 {
    font-size: 3rem;
  }
}

@media (max-width: 860px) {
  .studio-hero,
  .photo-stage,
  .archive-shell,
  .archive-intro,
  .studio-bottom,
  .site-footer {
    flex-direction: column;
  }

  .site-header {
    align-items: flex-start;
  }

  .primary-nav,
  .site-switcher {
    flex-wrap: wrap;
  }

  .studio-copy {
    padding: 56px 28px 36px;
  }

  .studio-poster {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 34px;
    padding: 46px 28px 58px;
  }

  .studio-poster-copy,
  .studio-vertical-title,
  .studio-fragment-a,
  .studio-fragment-b,
  .studio-constellation,
  .studio-poster .studio-visual,
  .studio-poster .studio-cards {
    grid-column: 1;
    grid-row: auto;
  }

  .studio-vertical-title {
    justify-self: start;
    writing-mode: horizontal-tb;
    font-size: 3.6rem;
    line-height: 1.08;
  }

  .studio-fragment-b p {
    font-size: 1.6rem;
  }

  .studio-constellation {
    min-height: 180px;
  }

  .studio-poster .studio-visual {
    min-height: 0;
  }

  .studio-poster .studio-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .studio-poster .studio-cards article:nth-child(2),
  .studio-poster .studio-cards article:nth-child(3) {
    margin-top: 0;
  }

  .studio-visual {
    min-width: 0;
    min-height: 420px;
  }

  .studio-cards {
    position: static;
    flex-direction: column;
    padding: 24px 28px 40px;
    background: var(--blue);
  }

  .studio-bottom {
    align-items: flex-start;
    padding: 56px 28px;
  }

  .photo-header {
    position: relative;
  }

  .photo-left {
    padding: 42px 28px 34px;
  }

  .photo-right {
    width: 100%;
    height: 420px;
  }

  .circle-image {
    width: 520px;
    height: 520px;
    right: -130px;
  }

  .photo-strip {
    padding: 28px;
  }

  .archive-rail {
    flex: none;
    min-height: 0;
    align-items: center;
    justify-content: flex-start;
    padding: 22px 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .archive-rail a {
    position: static;
    writing-mode: horizontal-tb;
    font-size: 1.5rem;
  }

  .archive-main {
    padding: 52px 28px 70px;
  }

  .archive-intro {
    align-items: flex-start;
  }

  .archive-one,
  .archive-two,
  .archive-three {
    width: 100%;
    margin: 0;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .primary-nav {
    gap: 16px;
  }

  .site-switcher {
    width: 100%;
  }

  .site-switcher a {
    flex: 1;
    min-width: 0;
  }

  .studio-copy h1,
  .photo-left h1 {
    font-size: 2.55rem;
  }

  .studio-vertical-title {
    font-size: 2.8rem;
  }

  .studio-fragment-a h2 {
    font-size: 1.55rem;
  }

  .studio-fragment-b p {
    font-size: 1.28rem;
  }

  .studio-bottom h2,
  .archive-intro h1 {
    font-size: 2.25rem;
  }

  .circle-image {
    width: 420px;
    height: 420px;
    right: -165px;
  }
}

@media (max-width: 760px) {
  html {
    overflow-x: hidden;
  }

  .site-studio {
    height: auto;
    min-height: 100svh;
    overflow-x: hidden;
    overflow-y: auto;
    transition-duration: 900ms;
  }

  .preloader,
  .split-overlay,
  .tags-overlay {
    height: 100svh;
  }

  .intro-title h1,
  .outro-title h1 {
    font-size: clamp(2.85rem, 15vw, 4.55rem);
    line-height: 0.95;
  }

  .tag p {
    font-size: 0.64rem;
  }

  .tag-1 {
    top: 18%;
    left: 8%;
  }

  .tag-2 {
    bottom: 18%;
    left: 10%;
  }

  .tag-3 {
    right: 8%;
    bottom: 31%;
  }

  .studio-page-shell {
    height: 100svh;
    min-height: 100svh;
    overflow: hidden;
    clip-path: polygon(0 49.45%, 0 49.45%, 0 50.55%, 0 50.55%);
  }

  .site-studio.intro-complete .studio-page-shell {
    height: auto;
    min-height: 100svh;
  }

  .studio-header {
    min-height: 64px;
    align-items: center;
    justify-content: flex-end;
    padding: 14px 16px 8px;
    transition-duration: 900ms;
  }

  .site-switcher {
    width: auto;
    margin-left: auto;
    padding: 4px;
  }

  .site-switcher a {
    min-width: 64px;
    min-height: 30px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .studio-poster {
    height: auto;
    min-height: calc(100svh - 64px);
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
    padding: 18px 18px 30px;
    overflow: visible;
    counter-reset: mobile-poem;
    transition-duration: 900ms;
  }

  .studio-poster::before {
    background: repeating-linear-gradient(90deg, rgba(18, 18, 18, 0.028) 0 1px, transparent 1px 72px);
  }

  .site-studio:not(.is-daybreak) .studio-poster::before {
    background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.034) 0 1px, transparent 1px 72px);
  }

  .studio-poster-copy,
  .studio-vertical-title,
  .studio-fragment-a,
  .studio-fragment-b,
  .poem-fragment,
  .studio-poster-meta {
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
    max-width: 100%;
    margin: 0;
    transform: none;
  }

  .studio-poster-copy {
    max-width: 31ch;
    padding-top: 2px;
  }

  .studio-caption {
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.65;
    white-space: nowrap;
  }

  .studio-poster-copy p:not(.eyebrow):not(.studio-caption) {
    max-width: 32ch;
    font-size: 0.74rem;
    line-height: 1.86;
  }

  .studio-vertical-title {
    width: min-content;
    justify-self: start;
    font-size: clamp(3.2rem, 17vw, 4.8rem);
    line-height: 0.9;
    padding-top: 2px;
  }

  .studio-title-studio {
    transform: translateX(24%);
  }

  .studio-fragment-a {
    min-height: 168px;
    justify-self: end;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
    padding-right: 2px;
    margin-top: -12px;
  }

  .studio-fragment-a h2 {
    font-size: 1.08rem;
    line-height: 1.55;
    transform: translateY(-6px);
  }

  .studio-fragment-a p:not(.studio-caption) {
    gap: 5px;
    font-size: 0.63rem;
    line-height: 1.85;
  }

  .fragment-line-right {
    transform: translateY(6px);
  }

  .fragment-line-left {
    transform: translateY(24px);
  }

  .studio-fragment-b {
    margin-top: -2px;
  }

  .studio-fragment-b p {
    max-width: 100%;
    font-size: clamp(0.74rem, 3.1vw, 0.82rem);
    line-height: 1.72;
    white-space: normal;
  }

  .poem-fragment {
    counter-increment: mobile-poem;
    display: grid;
    grid-template-columns: 2.1rem minmax(0, 1fr);
    column-gap: 10px;
    row-gap: 5px;
    padding: 10px 0 12px 10px;
    border-top: 0;
    border-left: 1px solid rgba(18, 18, 18, 0.1);
    line-height: normal;
    overflow-wrap: normal;
  }

  .poem-fragment::before {
    content: counter(mobile-poem, decimal-leading-zero);
    grid-column: 1;
    grid-row: 1 / span 3;
    align-self: start;
    color: rgba(18, 18, 18, 0.28);
    font-family: var(--font-sans);
    font-size: 0.58rem;
    font-weight: 760;
    line-height: 1;
    letter-spacing: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
  }

  .poem-fragment p {
    grid-column: 2;
  }

  .site-studio:not(.is-daybreak) .poem-fragment {
    border-left-color: rgba(255, 254, 246, 0.14);
  }

  .site-studio:not(.is-daybreak) .poem-fragment::before {
    color: rgba(255, 254, 246, 0.22);
  }

  .poem-original {
    font-size: 0.82rem;
    line-height: 1.62;
  }

  .poem-note {
    font-size: 0.74rem;
    line-height: 1.58;
  }

  .poem-translation {
    font-size: 0.62rem;
    line-height: 1.54;
  }

  .mobile-motion .poem-fragment {
    opacity: 0;
    transform: translateY(10px);
  }

  .studio-constellation {
    position: absolute;
    inset: 90px -46vw auto -32vw;
    width: 166vw;
    height: 58svh;
    min-height: 430px;
    transform: rotate(-4deg);
    opacity: 0.24;
  }

  .studio-constellation * {
    filter: none !important;
  }

  .site-studio.is-daybreak .studio-constellation {
    opacity: 0.2;
  }

  .text-reveal-char,
  .constellation-lit-text,
  .constellation-lit-text :is(p, h2, span),
  .constellation-lit-text:is(p, h2, span),
  .studio-constellation path,
  .studio-constellation line,
  .studio-constellation circle {
    transition-duration: 900ms;
    text-shadow: none;
  }

  .studio-constellation path,
  .studio-constellation line {
    stroke-width: 0.85;
  }

  .site-studio.is-daybreak.constellation-ready .studio-constellation .constellation-route,
  .site-studio.is-daybreak.constellation-ready .studio-constellation line {
    stroke-width: 0.72;
  }

  .studio-poster-meta {
    padding-top: 2px;
    font-size: 0.58rem;
  }

  .studio-poster-meta p {
    max-width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
