:root {
  --ink: #15130f;
  --paper: #fffdf7;
  --cream: #fffffb;
  --mist: #f4eee3;
  --mint: #eee3d3;
  --court: #17130e;
  --clay: #9b8c76;
  --blue: #11130f;
  --muted: #7a6f61;
  --wall: #fffcf6;
  --panel: #eee5d8;
  --brass: #b79a62;
  --burgundy: #6f0d18;
  --line: rgba(26, 21, 15, 0.16);
  --white-line: rgba(255, 255, 255, 0.32);
  --heart-badge-shape: polygon(50% 94%, 43% 86%, 32% 77%, 21% 67%, 13% 56%, 8% 45%, 7% 33%, 12% 22%, 22% 15%, 34% 15%, 43% 21%, 50% 32%, 57% 21%, 66% 15%, 78% 15%, 88% 22%, 93% 33%, 92% 45%, 87% 56%, 79% 67%, 68% 77%, 57% 86%);
  --heart-badge-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath fill='black' d='M50 92C43 82 20 69 11 51C2 33 12 14 31 14C40 14 46 20 50 30C54 20 60 14 69 14C88 14 98 33 89 51C80 69 57 82 50 92Z'/%3E%3C/svg%3E");
  --heart-badge-surface:
    radial-gradient(ellipse at 31% 24%, rgba(255, 250, 244, 0.96) 0 8%, rgba(255, 203, 208, 0.48) 18%, rgba(255, 203, 208, 0) 38%),
    radial-gradient(ellipse at 63% 28%, rgba(255, 153, 173, 0.24) 0 13%, rgba(255, 153, 173, 0) 36%),
    radial-gradient(ellipse at 70% 78%, rgba(39, 0, 8, 0.38) 0 15%, rgba(39, 0, 8, 0) 44%),
    linear-gradient(145deg, #b92f45 0%, #8a1427 48%, #510611 100%);
  --heart-badge-shadow:
    inset 0 2px 5px rgba(255, 255, 251, 0.46),
    inset 7px 7px 15px rgba(255, 207, 214, 0.18),
    inset -8px -12px 18px rgba(36, 0, 7, 0.42);
  --serif: "Didot", "Bodoni 72", "Times New Roman", "Songti SC", "STSong", serif;
  --script: "Snell Roundhand", "Bickham Script Pro 3", "Bickham Script Pro", "Apple Chancery", "Zapfino", cursive;
  --sans: "Avenir Next", "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(183, 154, 98, 0.035) 1px, transparent 1px) 0 0 / 112px 100%,
    linear-gradient(180deg, rgba(255, 255, 251, 0.92), rgba(255, 252, 246, 0.66));
  pointer-events: none;
}

body[data-lang="zh"] .copy-en,
body[data-lang="en"] .copy-zh {
  display: none;
}

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

button {
  border: 0;
  color: inherit;
  font: inherit;
}

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

img {
  display: block;
  width: 100%;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  background: rgba(255, 250, 240, 0.28);
}

.scroll-progress span {
  display: block;
  width: 0%;
  height: 100%;
  background: var(--ink);
  transition: width 120ms linear;
}

.social-dock {
  position: fixed;
  top: calc(70px + env(safe-area-inset-top));
  left: calc(16px + env(safe-area-inset-left));
  z-index: 72;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2px;
  padding: 3px 6px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.1);
  box-shadow: none;
  opacity: 0.92;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.social-dock::before {
  content: none;
}

.social-link {
  position: relative;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0.9;
  transition: opacity 180ms ease, transform 180ms ease;
}

.social-link img {
  width: 21px;
  height: 21px;
  object-fit: contain;
  opacity: 0.96;
  filter: none;
}

.social-link:hover,
.social-link:focus-visible {
  opacity: 1;
  outline: none;
  transform: translateY(-1px);
}

.is-scrolled .social-dock {
  border-color: rgba(118, 73, 60, 0.12);
  background: rgba(255, 253, 248, 0.22);
  opacity: 0.86;
}

.site-header {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: calc(14px + env(safe-area-inset-top)) 16px 12px;
  color: var(--cream);
  mix-blend-mode: difference;
  transition: background-color 260ms ease, color 260ms ease, border-color 260ms ease;
}

.is-scrolled .site-header {
  color: var(--ink);
  mix-blend-mode: normal;
  background: rgba(255, 253, 250, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.wordmark {
  max-width: 52vw;
  font-family: var(--serif);
  font-size: 15px;
  line-height: 1.05;
  text-transform: none;
}

.lang-switch {
  display: grid;
  grid-template-columns: repeat(3, minmax(36px, 1fr));
  gap: 2px;
  padding: 2px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
}

.is-scrolled .lang-switch {
  border-color: var(--line);
}

.lang-switch button {
  min-height: 30px;
  padding: 0 9px;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-size: 11px;
  font-weight: 600;
}

.lang-switch button.active {
  background: rgba(255, 255, 255, 0.88);
  color: #151515;
}

.is-scrolled .lang-switch button.active {
  background: var(--ink);
  color: var(--cream);
}

.hero {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 96px 18px 28px;
  color: var(--cream);
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-image {
  height: 100%;
  object-fit: cover;
  object-position: 50% 36%;
  transform: scale(1.018);
  filter: grayscale(0.88) contrast(1.08) brightness(0.96);
}

.hero-shade {
  z-index: 1;
  background: rgba(10, 11, 9, 0.18);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  padding-bottom: 54px;
}

.hero-copy::before {
  content: "";
  display: block;
  width: 82px;
  height: 4px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--burgundy), rgba(111, 13, 24, 0));
}

.eyebrow,
.section-label,
.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 700;
}

.eyebrow,
.kicker {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  font-weight: 700;
}

.eyebrow {
  max-width: 310px;
  color: rgba(255, 250, 240, 0.82);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  margin-top: 18px;
  max-width: min(100%, 330px);
  font-family: var(--script);
  font-size: clamp(58px, 17vw, 68px);
  line-height: 0.96;
  text-transform: none;
}

h2 {
  font-family: var(--script);
  font-size: 48px;
  line-height: 1.08;
  text-wrap: balance;
}

h3 {
  font-size: 30px;
  line-height: 1.02;
}

.copy {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
}

.copy-en {
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
}

.copy-zh {
  font-family: "Songti SC", "STSong", "PingFang SC", serif;
  font-size: 12px;
  line-height: 1.85;
  color: var(--muted);
}

.literary-note {
  position: relative;
  max-width: 540px;
  margin: 24px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
}

.literary-note::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 58px;
  height: 3px;
  background: var(--burgundy);
}

.literary-note p {
  margin: 0;
}

.literary-note .quote-en {
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.22;
  color: var(--ink);
}

.quote-book {
  display: inline-block;
  margin-left: 4px;
  color: var(--clay);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.4;
  text-transform: uppercase;
  vertical-align: baseline;
}

.literary-note .quote-zh {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.7;
}

.literary-note cite {
  display: block;
  margin-top: 11px;
  color: var(--clay);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.literary-note-light {
  border-top-color: rgba(255, 253, 250, 0.34);
}

.literary-note-light::before {
  background: rgba(111, 13, 24, 0.92);
}

.literary-note-light .quote-en {
  color: var(--cream);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.24);
}

.literary-note-light .quote-book {
  color: rgba(255, 250, 240, 0.72);
}

.literary-note-light .quote-zh,
.literary-note-light cite {
  color: rgba(255, 250, 240, 0.78);
}

.zh-subtitle {
  max-width: 520px;
  margin-top: 18px;
  padding-left: 14px;
  border-left: 2px solid rgba(111, 13, 24, 0.45);
  font-size: 12px;
  line-height: 1.75;
}

.hero .copy {
  max-width: 340px;
  margin-top: 18px;
  color: rgba(255, 250, 240, 0.92);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.22);
}

.hero .copy-en {
  font-size: 16px;
}

.hero .copy-zh {
  font-size: 12px;
  color: rgba(255, 250, 240, 0.82);
}

.hero .literary-note .quote-en {
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 23px);
  line-height: 1.22;
  color: var(--cream);
}

.hero-meta {
  position: absolute;
  z-index: 2;
  left: 50%;
  right: auto;
  bottom: 18px;
  display: flex;
  gap: clamp(4px, 1.2vw, 8px);
  flex-wrap: nowrap;
  justify-content: center;
  width: max-content;
  max-width: calc(100% - 24px);
  transform: translateX(-50%);
}

.hero-meta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 clamp(6px, 1.8vw, 10px);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.88);
  font-size: clamp(9px, 2.45vw, 11px);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hero-meta a.is-active,
.hero-meta a[aria-current="true"] {
  border-color: rgba(255, 250, 240, 0.36);
  background: rgba(111, 13, 24, 0.88);
  color: rgba(255, 245, 245, 0.96);
  box-shadow: 0 10px 24px rgba(42, 6, 10, 0.18);
}

.hero-meta a:hover,
.hero-meta a:focus-visible {
  border-color: rgba(255, 250, 240, 0.86);
  background: rgba(255, 255, 255, 0.14);
  outline: none;
  transform: translateY(-1px);
}

.hero-meta a.is-active:hover,
.hero-meta a.is-active:focus-visible,
.hero-meta a[aria-current="true"]:hover,
.hero-meta a[aria-current="true"]:focus-visible {
  border-color: rgba(255, 250, 240, 0.42);
  background: rgba(111, 13, 24, 0.9);
  color: rgba(255, 245, 245, 0.96);
}

.section-pad {
  padding: 72px 18px;
}

.section-label {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: end;
  justify-self: start;
  column-gap: 12px;
  row-gap: 8px;
  margin-bottom: 30px;
  color: var(--clay);
}

.section-label::after {
  content: "";
  display: block;
  grid-column: 1 / -1;
  width: min(100%, 150px);
  height: 4px;
  margin-top: 0;
  background: linear-gradient(90deg, var(--burgundy), rgba(123, 17, 28, 0.1));
}

.section-number {
  color: var(--burgundy);
  font-family: var(--serif);
  font-size: 46px;
  font-weight: 400;
  font-variant-numeric: lining-nums;
  letter-spacing: 0;
  line-height: 0.78;
}

.section-name {
  padding-bottom: 3px;
  color: var(--clay);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.kicker {
  color: var(--court);
  margin-bottom: 12px;
}

.manifesto {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.manifesto-grid {
  display: grid;
  gap: 34px;
  max-width: 1020px;
  margin: 0 auto;
}

.manifesto h2 {
  max-width: 640px;
}

.text-stack {
  display: grid;
  gap: 16px;
  max-width: 620px;
}

.private-room {
  overflow: hidden;
  background: var(--cream);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.private-room .section-label {
  color: var(--clay);
}

.private-room-grid {
  display: grid;
  gap: 34px;
  max-width: 1120px;
  margin: 0 auto;
}

.private-room-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  max-width: 620px;
}

.private-room-copy .kicker {
  color: var(--court);
}

.private-room-copy .copy-en {
  max-width: 520px;
}

.private-room-copy .copy-zh,
.private-room-copy .zh-subtitle {
  color: var(--muted);
  border-left-color: var(--line);
}

.letter-still {
  position: relative;
  width: min(100%, 620px);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #0d0d0b;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 24px 54px rgba(17, 19, 15, 0.13);
}

.letter-still::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 6px;
  pointer-events: none;
}

.letter-still-image {
  aspect-ratio: 2 / 3;
  height: auto;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.02);
}

.letter-copy-surface {
  position: absolute;
  top: 19%;
  left: 7.9%;
  z-index: 2;
  display: grid;
  gap: clamp(7px, 1.6vw, 14px);
  width: 56%;
  color: #1c1711;
  pointer-events: none;
}

.wax-mark {
  position: absolute;
  left: 93.3%;
  top: 50.3%;
  z-index: 2;
  display: grid;
  width: clamp(34px, 6.4vw, 64px);
  aspect-ratio: 1;
  place-items: center;
  transform: translate(-50%, -50%) rotate(-4deg);
  border-radius: 50%;
  border: 1px solid rgba(255, 236, 232, 0.22);
  background:
    radial-gradient(circle at 42% 34%, rgba(143, 34, 42, 0.94), rgba(89, 7, 18, 0.98) 64%, rgba(56, 3, 11, 0.98));
  box-shadow:
    inset 0 1px 2px rgba(255, 246, 242, 0.32),
    inset 0 -3px 5px rgba(40, 0, 8, 0.5),
    0 3px 8px rgba(30, 0, 6, 0.34);
  color: rgba(255, 250, 240, 0.86);
  font-family: var(--serif);
  font-size: clamp(8px, 1.34vw, 12px);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(42, 0, 7, 0.72);
  pointer-events: none;
}

.letter-header {
  display: grid;
  gap: clamp(4px, 1vw, 8px);
  padding-bottom: clamp(8px, 1.8vw, 14px);
  border-bottom: 1px solid rgba(111, 13, 24, 0.48);
}

.letter-header span {
  font-family: var(--sans);
  color: var(--clay);
  font-size: clamp(6px, 1.3vw, 10px);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.letter-copy-surface .letter-header strong {
  font-family: var(--script);
  font-size: clamp(25px, 6.8vw, 44px);
  font-weight: 400;
  line-height: 0.92;
}

.letter-manuscript,
.letter-translation {
  display: grid;
  gap: clamp(5px, 1.15vw, 11px);
}

body[data-lang="both"] .letter-translation {
  display: none;
}

.letter-manuscript p,
.letter-translation p {
  margin: 0;
}

.letter-manuscript {
  font-size: clamp(8px, 1.95vw, 11.6px);
  line-height: 1.58;
  color: #201c16;
}

.letter-translation {
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(8px, 1.58vw, 11px);
  line-height: 1.5;
  color: #201c16;
}

.editorial-split {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.feature-frame {
  position: relative;
  margin: 0;
  min-height: 540px;
  overflow: hidden;
  background: #e9f4f0;
}

.feature-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 253, 248, 0.62);
  border-radius: 260px 260px 8px 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.38);
  pointer-events: none;
}

.feature-frame img {
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.86) contrast(1.06);
}

.feature-frame figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  color: var(--cream);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.34);
}

.feature-frame figcaption span:first-child {
  font-family: var(--serif);
  font-size: 28px;
}

.feature-frame figcaption span:last-child {
  max-width: 168px;
  font-size: 12px;
  line-height: 1.6;
  text-align: right;
}

.split-copy {
  display: grid;
  gap: 16px;
  align-content: center;
}

.split-copy h2 {
  max-width: 520px;
}

.split-copy .copy {
  max-width: 600px;
}

.chapters {
  background: var(--paper);
}

.chapter-intro {
  max-width: 760px;
  margin: 0 auto 34px;
}

.chapter-grid {
  display: grid;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

.chapter-card {
  display: grid;
  grid-template-columns: minmax(116px, 42%) 1fr;
  gap: 16px;
  align-items: stretch;
  min-height: 240px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  cursor: pointer;
}

.chapter-card img {
  height: 100%;
  min-height: 220px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.78) contrast(1.04);
  transition: transform 500ms ease, filter 500ms ease;
}

.chapter-card > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  padding: 8px 6px 8px 0;
}

.chapter-card span,
.collab-list span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(111, 13, 24, 0.62);
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}

.chapter-card .copy {
  line-height: 1.55;
}

.chapter-card .copy-en {
  font-size: 14px;
}

.chapter-card .copy-zh {
  font-size: 12px;
}

.lookbook {
  padding: 0 0 78px;
  overflow: hidden;
  background: var(--cream);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lookbook-copy {
  padding-bottom: 34px;
}

.lookbook .section-label {
  color: var(--clay);
}

.lookbook .kicker {
  color: var(--ink);
}

.lookbook h2 {
  max-width: 680px;
}

.archive-count {
  margin: 16px 0 0;
  color: var(--clay);
  font-family: "Manrope", "PingFang SC", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.album-system {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 64px) 28px;
}

.album-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(330px, 100%), 1fr));
  gap: clamp(14px, 1.8vw, 24px);
  margin-bottom: clamp(42px, 7vw, 86px);
}

.album-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 18px;
  row-gap: 16px;
  min-height: 0;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 15, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 251, 0.98), rgba(247, 241, 232, 0.86)),
    var(--cream);
  color: var(--ink);
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 14px 34px rgba(17, 19, 15, 0.07);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.album-card::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--burgundy);
  opacity: 0.82;
}

.album-card:hover {
  transform: translateY(-3px);
  border-color: rgba(111, 13, 24, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 20px 44px rgba(17, 19, 15, 0.1);
}

.album-card.is-active,
.album-card[aria-current="true"] {
  border-color: rgba(111, 13, 24, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 20px 50px rgba(111, 13, 24, 0.12);
}

.album-card.is-active .album-meta strong,
.album-card[aria-current="true"] .album-meta strong {
  color: var(--burgundy);
}

.album-number {
  display: grid;
  place-items: center;
  grid-row: 1 / span 2;
  align-self: start;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--burgundy);
  color: #fffdf7;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(111, 13, 24, 0.2);
}

.album-stack {
  display: grid;
  grid-template-columns: 1.2fr 0.86fr;
  grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px;
  height: clamp(190px, 18vw, 232px);
  min-height: 0;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(17, 19, 15, 0.14);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(238, 229, 216, 0.55)),
    var(--paper);
}

.album-stack img {
  position: relative;
  inset: auto;
  min-width: 0;
  min-height: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(17, 19, 15, 0.12);
  border-radius: 5px;
  box-shadow: none;
  filter: grayscale(0.36) contrast(1.02);
  transform: none;
  transition: transform 300ms ease, filter 300ms ease;
}

.album-stack img:nth-child(1) {
  grid-row: 1 / span 2;
  z-index: 3;
  transform: none;
}

.album-stack img:nth-child(2) {
  z-index: 2;
  transform: none;
}

.album-stack img:nth-child(3) {
  z-index: 1;
  transform: none;
}

.album-stack-portrait {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr);
}

.album-stack-portrait img,
.album-stack-portrait img:nth-child(1),
.album-stack-portrait img:nth-child(2),
.album-stack-portrait img:nth-child(3) {
  grid-row: auto;
  object-fit: cover;
}

.album-stack-portrait img:nth-child(1) {
  object-position: 50% 30%;
}

.album-stack-portrait img:nth-child(2) {
  object-position: 50% 35%;
}

.album-stack-portrait img:nth-child(3) {
  object-position: 48% 42%;
}

.album-card:hover .album-stack img {
  filter: grayscale(0.16) contrast(1.02);
  transform: scale(1.012);
}

.album-card:hover .album-stack img:nth-child(2) {
  transform: scale(1.012);
}

.album-card:hover .album-stack img:nth-child(3) {
  transform: scale(1.012);
}

.album-meta {
  display: grid;
  gap: 10px;
  padding-bottom: 18px;
}

.album-meta strong {
  display: block;
  min-width: 0;
  font-family: var(--script);
  max-width: min(100%, 280px);
  font-size: 48px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
  text-wrap: balance;
}

.album-meta em,
.album-meta small {
  display: block;
  min-width: 0;
  max-width: 100%;
  font-family: "Manrope", "PingFang SC", sans-serif;
  font-style: normal;
}

.album-meta em {
  color: var(--burgundy);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.album-meta small {
  color: var(--clay);
  font-size: 0.82rem;
  line-height: 1.6;
}

.album-archive {
  display: grid;
  gap: clamp(54px, 7vw, 96px);
}

.album-section {
  scroll-margin-top: 92px;
  padding-top: clamp(28px, 4vw, 42px);
  border-top: 1px solid rgba(17, 19, 15, 0.14);
}

.anchor-alias {
  position: relative;
  top: -92px;
  display: block;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

.album-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
  align-items: start;
  margin-bottom: clamp(20px, 3vw, 32px);
}

.album-heading > span {
  display: grid;
  place-items: center;
  width: clamp(54px, 6vw, 76px);
  height: clamp(54px, 6vw, 76px);
  border-radius: 50%;
  background: var(--burgundy);
  color: #fffdf7;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
  box-shadow: 0 14px 28px rgba(111, 13, 24, 0.2);
}

.album-heading h3 {
  max-width: 760px;
  margin: 0;
  font-family: var(--script);
  font-size: 52px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.06;
  text-wrap: balance;
}

.album-heading p:last-child {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--clay);
  font-size: 0.96rem;
  line-height: 1.7;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(180px, 100%), 1fr));
  gap: clamp(12px, 1.45vw, 20px);
}

.album-grid.compact {
  grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 300px));
}

.archive-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 15, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fffffb 0%, #f7f1e7 100%),
    var(--cream);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 26px rgba(17, 19, 15, 0.08);
  cursor: pointer;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.archive-card.wide {
  aspect-ratio: 4 / 5;
}

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

.archive-card::before,
.archive-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.archive-card::before {
  inset: 8px;
  z-index: 2;
  border: 1px solid rgba(17, 19, 15, 0.16);
  border-radius: 5px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.42);
}

.archive-card::after {
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 3;
  height: 2px;
  border-radius: 999px;
  background: var(--burgundy);
  opacity: 0.74;
}

.archive-card img {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  object-fit: cover;
  object-position: center;
  border-radius: 5px;
  filter: grayscale(0.42) contrast(1.03);
  transition: transform 500ms ease, filter 500ms ease;
}

.archive-card:hover {
  transform: translateY(-6px);
  border-color: rgba(111, 13, 24, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    0 22px 42px rgba(111, 13, 24, 0.14);
}

.archive-card:hover img,
.archive-card.is-selected img {
  transform: scale(1.035);
  filter: grayscale(0.16) contrast(1.02);
}

.rail-shell {
  position: relative;
  max-width: 100%;
}

.rail-controls {
  position: absolute;
  top: -52px;
  right: 18px;
  z-index: 6;
  display: flex;
  gap: 8px;
}

.rail-control {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(111, 13, 24, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 24%, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0) 36%),
    var(--burgundy);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 12px 24px rgba(111, 13, 24, 0.2);
  color: #fffdf7;
  cursor: pointer;
  transition: transform 220ms ease, opacity 220ms ease, box-shadow 220ms ease;
}

.rail-control::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translate(-60%, -50%) rotate(45deg);
}

.rail-control[data-rail-prev]::before {
  transform: translate(-38%, -50%) rotate(225deg);
}

.rail-control:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 16px 28px rgba(111, 13, 24, 0.24);
}

.rail-control:disabled {
  opacity: 0.34;
  cursor: default;
  transform: none;
}

.rail {
  display: flex;
  gap: 14px;
  overflow-x: scroll;
  overflow-y: hidden;
  padding: 0 18px 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  cursor: grab;
  user-select: none;
}

.rail.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.rail::-webkit-scrollbar {
  display: none;
}

.grouped-rail {
  align-items: start;
  gap: 20px;
  padding-bottom: 28px;
}

.card-state {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.lookbook-group {
  position: relative;
  flex: 0 0 min(84vw, 360px);
  scroll-snap-align: start;
  transition: flex-basis 520ms ease;
}

.card-state:checked + .lookbook-group,
.lookbook-group.is-open,
.lookbook-group[open] {
  flex-basis: min(1120px, calc(100vw - 36px));
}

.native-card-toggle {
  position: absolute;
  inset: 0;
  z-index: 40;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  appearance: none;
  background: transparent;
  color: inherit;
  font: inherit;
  list-style: none;
  border-radius: 190px 190px 10px 10px;
}

.native-card-toggle::-webkit-details-marker {
  display: none;
}

.native-card-toggle span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.card-state:checked + .lookbook-group .native-card-toggle,
.lookbook-group.is-open .native-card-toggle,
.lookbook-group[open] .native-card-toggle {
  display: none;
}

.fan-stack {
  position: relative;
  height: 390px;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 15, 0.14);
  border-radius: 190px 190px 10px 10px;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, rgba(255, 255, 251, 0.95), rgba(239, 232, 221, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 40px rgba(17, 19, 15, 0.1);
  cursor: pointer;
  transition:
    height 520ms ease,
    border-radius 520ms ease,
    box-shadow 520ms ease,
    background 520ms ease;
}

.fan-stack::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 16px;
  height: 2px;
  border-radius: 999px;
  background: rgba(111, 13, 24, 0.78);
  opacity: 0.46;
}

.fan-card {
  position: absolute;
  top: 24px;
  left: 50%;
  z-index: var(--z);
  width: min(68vw, 260px);
  height: 330px;
  max-width: none;
  transform: translateX(calc(-50% + var(--closed-x))) rotate(var(--closed-r));
  transform-origin: 50% 92%;
  pointer-events: none;
  will-change: transform;
  transition:
    transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 360ms ease,
    box-shadow 360ms ease;
}

.card-state:checked + .lookbook-group .fan-stack,
.lookbook-group.is-open .fan-stack,
.lookbook-group[open] .fan-stack {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 420px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 18px 18px 20px;
  border-radius: 68px 68px 10px 10px;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 36%),
    linear-gradient(180deg, rgba(255, 255, 251, 0.95), rgba(239, 232, 221, 0.6));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 22px 48px rgba(17, 19, 15, 0.1);
}

.card-state:checked + .lookbook-group .fan-stack::-webkit-scrollbar,
.lookbook-group.is-open .fan-stack::-webkit-scrollbar,
.lookbook-group[open] .fan-stack::-webkit-scrollbar {
  display: none;
}

.card-state:checked + .lookbook-group .fan-stack,
.lookbook-group.is-open .fan-stack,
.lookbook-group[open] .fan-stack {
  scrollbar-width: none;
}

.card-state:checked + .lookbook-group .fan-stack::after,
.lookbook-group.is-open .fan-stack::after,
.lookbook-group[open] .fan-stack::after {
  display: none;
}

.card-state:checked + .lookbook-group .fan-card,
.lookbook-group.is-open .fan-card,
.lookbook-group[open] .fan-card {
  position: relative;
  top: auto;
  left: auto;
  flex: 0 0 220px;
  width: 220px;
  height: 350px;
  opacity: 1;
  transform: translateY(var(--open-y, 0));
  pointer-events: auto;
}

.card-state:checked + .lookbook-group .fan-card:hover,
.lookbook-group.is-open .fan-card:hover,
.lookbook-group[open] .fan-card:hover {
  z-index: 10;
  transform: translateY(-8px);
}

.card-state:checked + .lookbook-group .fan-card img,
.lookbook-group.is-open .fan-card img,
.lookbook-group[open] .fan-card img {
  filter: grayscale(0.34) contrast(1.02);
}

.card-state:checked + .lookbook-group .fan-card:nth-child(2n),
.lookbook-group.is-open .fan-card:nth-child(2n),
.lookbook-group[open] .fan-card:nth-child(2n) {
  --open-y: 12px;
}

.card-state:checked + .lookbook-group .fan-card:nth-child(3n),
.lookbook-group.is-open .fan-card:nth-child(3n),
.lookbook-group[open] .fan-card:nth-child(3n) {
  --open-y: -10px;
}

.card-state:checked + .lookbook-group .fan-card:nth-child(4n),
.lookbook-group.is-open .fan-card:nth-child(4n),
.lookbook-group[open] .fan-card:nth-child(4n) {
  --open-y: 18px;
}

.card-state:not(:checked) + .lookbook-group:not(.is-open):not([open]) .fan-card:nth-child(n + 5) {
  opacity: 0;
}

.group-cover {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  align-items: center;
  width: 100%;
  margin-top: 16px;
  padding: 14px 16px 15px;
  border: 1px solid rgba(17, 19, 15, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 251, 0.92);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 12px 30px rgba(17, 19, 15, 0.06);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.group-cover span {
  display: grid;
  grid-row: 1 / span 2;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--burgundy);
  color: #fffdf7;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 20px rgba(111, 13, 24, 0.18);
}

.group-cover strong {
  font-family: "Cormorant Garamond", "Songti SC", serif;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.group-cover em {
  color: var(--clay);
  font-family: "Manrope", "PingFang SC", sans-serif;
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-state:checked + .lookbook-group .group-cover,
.lookbook-group.is-open .group-cover,
.lookbook-group[open] .group-cover {
  border-color: rgba(111, 13, 24, 0.36);
  box-shadow: 0 14px 30px rgba(111, 13, 24, 0.08);
}

.group-cover:hover {
  transform: translateY(-2px);
}

.rail-item {
  position: relative;
  flex: 0 0 78vw;
  max-width: 380px;
  overflow: hidden;
  border: 1px solid rgba(17, 19, 15, 0.18);
  border-radius: 210px 210px 8px 8px;
  background:
    linear-gradient(180deg, #fffffb 0%, #f7f1e7 54%, #d9d0c3 100%),
    var(--cream);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -8px 18px rgba(54, 43, 31, 0.13),
    0 18px 38px rgba(17, 19, 15, 0.12);
  cursor: pointer;
  scroll-snap-align: start;
}

.rail-item::before,
.rail-item::after {
  content: "";
  position: absolute;
  border-radius: 190px 190px 5px 5px;
  pointer-events: none;
}

.rail-item::before {
  inset: 10px;
  z-index: 2;
  border: 1px solid rgba(17, 19, 15, 0.22);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.5);
}

.rail-item::after {
  left: 20px;
  right: 20px;
  bottom: 12px;
  z-index: 3;
  height: 3px;
  border-radius: 999px;
  background: rgba(111, 13, 24, 0.78);
  opacity: 0.54;
  transition: opacity 300ms ease;
}

.rail-item.wide {
  aspect-ratio: 3 / 4;
}

.rail-item.tall {
  aspect-ratio: 2 / 3;
}

.rail-item img {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  object-fit: cover;
  object-position: center;
  border-radius: 190px 190px 5px 5px;
  filter: grayscale(0.82) contrast(1.04);
  transition: transform 500ms ease, filter 500ms ease;
}

.rail-item.fan-card {
  position: absolute;
  top: 24px;
  left: 50%;
  z-index: var(--z);
  flex: none;
  width: min(68vw, 260px);
  height: 330px;
  max-width: none;
  scroll-snap-align: none;
  transform: translateX(calc(-50% + var(--closed-x))) rotate(var(--closed-r));
  transform-origin: 50% 92%;
  pointer-events: none;
}

.card-state:checked + .lookbook-group .rail-item.fan-card,
.lookbook-group.is-open .rail-item.fan-card,
.lookbook-group[open] .rail-item.fan-card {
  position: relative;
  top: auto;
  left: auto;
  flex: 0 0 220px;
  width: 220px;
  height: 350px;
  opacity: 1;
  transform: translateY(var(--open-y, 0));
  pointer-events: auto;
}

.rail-item.fan-card.is-selected {
  z-index: 30;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    inset 0 -8px 18px rgba(54, 43, 31, 0.13),
    0 24px 48px rgba(111, 13, 24, 0.22);
}

.rail-item:focus-visible,
.chapter-card:focus-visible,
.primary-cta:focus-visible,
.lang-switch button:focus-visible,
.motion-play:focus-visible,
.rail-control:focus-visible,
.group-cover:focus-visible,
.native-card-toggle:focus-visible,
.fan-stack:focus-visible,
.dialog-close:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}

.rail-item:hover img,
.chapter-card:hover img {
  transform: scale(1.035);
  filter: grayscale(0.18) contrast(1.02);
}

.rail-item:hover::after {
  opacity: 1;
}

.motion {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: #fffaf2;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.motion::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0) 30%),
    linear-gradient(115deg, rgba(255, 255, 255, 0) 0 48%, rgba(255, 255, 255, 0.48) 48% 52%, rgba(255, 255, 255, 0) 52%),
    repeating-linear-gradient(90deg, rgba(183, 154, 98, 0.045) 0 1px, transparent 1px 96px),
    linear-gradient(180deg, #fffffb 0%, #fffaf2 58%, #f3e8d7 100%),
    #fffaf2;
}

.motion::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 251, 0.82), rgba(255, 255, 251, 0) 36%),
    linear-gradient(180deg, rgba(255, 255, 251, 0.96) 0%, rgba(255, 255, 251, 0.54) 25%, rgba(255, 255, 251, 0.08) 58%, rgba(255, 252, 246, 0.66) 100%),
    repeating-linear-gradient(180deg, transparent 0 118px, rgba(183, 154, 98, 0.055) 118px 119px);
  pointer-events: none;
}

.motion .section-label {
  color: var(--clay);
}

.motion .section-name {
  color: var(--clay);
}

.motion .kicker {
  color: var(--brass);
}

.motion h2 {
  max-width: 720px;
  color: var(--ink);
}

.motion .zh-subtitle {
  color: var(--muted);
  border-left-color: rgba(111, 13, 24, 0.74);
}

.motion-head {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.motion-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
  max-width: 1080px;
  margin: 38px auto 0;
  padding: 26px 12px 34px;
  border: 1px solid rgba(183, 154, 98, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 251, 0.84), rgba(255, 250, 242, 0.54)),
    repeating-linear-gradient(90deg, rgba(183, 154, 98, 0.05) 0 1px, transparent 1px 128px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -20px 28px rgba(183, 154, 98, 0.08);
}

.motion-grid::before,
.motion-grid::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  pointer-events: none;
}

.motion-grid::before {
  top: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 154, 98, 0.5), transparent);
}

.motion-grid::after {
  bottom: 18px;
  height: 12px;
  border-top: 1px solid rgba(183, 154, 98, 0.2);
  border-bottom: 1px solid rgba(183, 154, 98, 0.16);
  background: rgba(255, 255, 251, 0.42);
}

.motion-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh - 92px);
  padding: 70px 14px 18px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.motion-card::before,
.motion-card::after {
  display: none;
}

.motion-frame {
  position: relative;
  width: min(100%, 390px);
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(183, 154, 98, 0.34);
  border-radius: 280px 280px 10px 10px;
  background:
    repeating-linear-gradient(180deg, rgba(183, 154, 98, 0.18) 0 1px, transparent 1px 15px) left 42px top 96px / 52px calc(100% - 134px) no-repeat,
    repeating-linear-gradient(180deg, rgba(183, 154, 98, 0.18) 0 1px, transparent 1px 15px) right 42px top 96px / 52px calc(100% - 134px) no-repeat,
    linear-gradient(90deg, rgba(255, 255, 251, 0.96) 0 70px, transparent 70px calc(100% - 70px), rgba(255, 255, 251, 0.96) calc(100% - 70px)),
    linear-gradient(180deg, #fffffb 0%, #fff8ee 58%, #e8ddca 100%),
    var(--cream);
  box-shadow:
    0 0 0 14px rgba(255, 255, 251, 0.92),
    0 0 0 15px rgba(183, 154, 98, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    inset 0 -12px 22px rgba(116, 92, 56, 0.16),
    0 18px 38px rgba(104, 82, 52, 0.2);
}

.motion-frame::before {
  content: "";
  position: absolute;
  inset: 20px;
  z-index: 1;
  border-radius: 246px 246px 7px 7px;
  background:
    repeating-linear-gradient(180deg, rgba(183, 154, 98, 0.18) 0 1px, transparent 1px 16px) left top / 42px 100% no-repeat,
    repeating-linear-gradient(180deg, rgba(183, 154, 98, 0.18) 0 1px, transparent 1px 16px) right top / 42px 100% no-repeat,
    linear-gradient(90deg, rgba(255, 255, 251, 0.92) 0 42px, transparent 42px calc(100% - 42px), rgba(255, 255, 251, 0.92) calc(100% - 42px));
  mix-blend-mode: screen;
  pointer-events: none;
}

.motion-frame::after {
  content: "";
  position: absolute;
  inset: 20px 44px 18px;
  z-index: 2;
  border: 1px solid rgba(21, 19, 15, 0.18);
  border-radius: 220px 220px 6px 6px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.52),
    0 0 0 1px rgba(183, 154, 98, 0.28);
  pointer-events: none;
}

.motion-frame video {
  display: block;
  position: absolute;
  inset: 20px 44px 18px;
  z-index: 0;
  width: calc(100% - 88px);
  height: calc(100% - 38px);
  object-fit: cover;
  border-radius: 220px 220px 6px 6px;
  filter: grayscale(0.08) contrast(1.03) saturate(0.96);
  cursor: pointer;
}

.motion-frame video::-webkit-media-controls,
.motion-frame video::-webkit-media-controls-enclosure,
.motion-frame video::-webkit-media-controls-panel,
.motion-frame video::-webkit-media-controls-overlay-play-button,
.motion-frame video::-webkit-media-controls-start-playback-button {
  display: none !important;
  opacity: 0 !important;
  -webkit-appearance: none;
}

.motion-play {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 5;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(255, 255, 251, 0.74);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 28%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0) 40%),
    rgba(255, 255, 251, 0.48);
  color: rgba(21, 19, 15, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.66),
    0 12px 28px rgba(21, 19, 15, 0.14);
  transform: translateX(-50%);
  transition: opacity 220ms ease, transform 220ms ease, background 220ms ease;
}

.motion-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid currentColor;
}

.motion-frame.is-playing .motion-play {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) scale(0.92);
}

.motion-frame.is-playing:hover .motion-play,
.motion-frame.is-paused .motion-play {
  opacity: 0.9;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
}

.motion-frame.is-playing .motion-play::before {
  width: 15px;
  height: 18px;
  margin-left: 0;
  border: 0;
  background: linear-gradient(90deg, currentColor 0 5px, transparent 5px 10px, currentColor 10px 15px);
}

.motion-meta {
  display: grid;
  gap: 10px;
  width: min(100%, 390px);
  margin: 0 auto;
  padding: 28px 8px 4px;
}

.motion-meta span {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(111, 13, 24, 0.62);
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
  box-shadow: none;
}

.motion-meta h3 {
  color: var(--ink);
}

.motion-meta .copy-en {
  color: rgba(21, 19, 15, 0.78);
}

.motion-meta .copy-zh {
  color: var(--muted);
}

.collab {
  background: var(--cream);
}

.collab-head {
  max-width: 760px;
  margin: 0 auto 34px;
  display: grid;
  gap: 14px;
}

.collab-list {
  display: grid;
  gap: 1px;
  max-width: 920px;
  margin: 0 auto 34px;
  border: 1px solid rgba(111, 13, 24, 0.32);
  background: rgba(111, 13, 24, 0.32);
}

.collab-list div {
  display: grid;
  gap: 8px;
  padding: 22px;
  background: var(--cream);
}

.collab-list strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
}

.collab-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.brand-inline-archive {
  width: min(100%, 1120px);
  margin: clamp(38px, 6vw, 82px) auto 0;
  display: grid;
  gap: clamp(42px, 7vw, 92px);
}

.brand-inline-section {
  padding-top: clamp(28px, 4vw, 52px);
  border-top: 1px solid rgba(21, 19, 15, 0.12);
}

.brand-inline-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.brand-inline-section .album-heading {
  margin-bottom: clamp(18px, 3vw, 30px);
}

.brand-inline-section .album-heading h3 {
  max-width: 620px;
  font-size: 48px;
  line-height: 1.06;
}

.primary-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 920px);
  min-height: 62px;
  margin: 0 auto;
  padding: 0 22px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, var(--burgundy) 0 12px, var(--ink) 12px),
    var(--ink);
  color: var(--cream);
  cursor: pointer;
  border: 0;
  font: inherit;
  text-decoration: none;
}

.primary-cta strong {
  font-family: var(--serif);
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 400;
  line-height: 1;
}

.primary-cta span {
  color: var(--cream);
  font-size: 12px;
  line-height: 1.4;
  text-align: right;
}

.brand-body {
  background:
    linear-gradient(90deg, rgba(183, 154, 98, 0.035) 1px, transparent 1px) 0 0 / 112px 100%,
    linear-gradient(180deg, #fffffb 0%, #fffaf0 46%, #fffffb 100%);
}

.brand-body .site-header {
  color: var(--ink);
  mix-blend-mode: normal;
  background: rgba(255, 253, 250, 0.92);
  border-bottom: 1px solid rgba(26, 21, 15, 0.1);
  backdrop-filter: blur(16px);
}

.brand-body .scroll-progress span {
  background: var(--burgundy);
}

.brand-body .lang-switch button {
  border-color: rgba(26, 21, 15, 0.18);
  background: rgba(255, 255, 251, 0.62);
  color: var(--ink);
}

.brand-body .lang-switch button.active {
  background: var(--ink);
  color: var(--cream);
}

.brand-page {
  overflow: hidden;
}

.brand-hero {
  position: relative;
  padding-top: calc(112px + env(safe-area-inset-top));
}

.brand-hero::before,
.brand-cdn-note::before {
  content: "";
  position: absolute;
  pointer-events: none;
  border: 1px solid rgba(183, 154, 98, 0.28);
}

.brand-hero::before {
  inset: 96px 18px auto;
  height: 260px;
  border-bottom: 0;
  border-radius: 160px 160px 0 0;
  opacity: 0.62;
}

.brand-return {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-return::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--burgundy);
}

.brand-return span {
  color: var(--clay);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: none;
}

.brand-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
  width: min(100%, 1240px);
  margin: 0 auto;
}

.brand-hero-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.brand-hero-copy h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--script);
  font-size: clamp(54px, 15vw, 122px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
}

.brand-hero-copy .copy {
  max-width: 680px;
}

.brand-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.brand-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(111, 13, 24, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 251, 0.72);
  color: var(--ink);
  font-size: 12px;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(26, 21, 15, 0.04);
}

.brand-nav a:first-child {
  border-color: rgba(111, 13, 24, 0.62);
  background: var(--burgundy);
  color: var(--cream);
}

.brand-hero-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(26, 21, 15, 0.12);
  border-radius: 150px 150px 8px 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 251, 0.95), rgba(239, 229, 216, 0.72)),
    var(--cream);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 251, 0.66), 0 24px 58px rgba(26, 21, 15, 0.08);
}

.brand-hero-preview a {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  border: 1px solid rgba(26, 21, 15, 0.12);
  border-radius: 80px 80px 6px 6px;
  background: var(--mist);
}

.brand-hero-preview a:first-child {
  grid-row: span 2;
  min-height: 430px;
}

.brand-hero-preview img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.02);
  transition: filter 360ms ease, transform 520ms ease;
}

.brand-hero-preview a:hover img {
  filter: grayscale(0.02) contrast(1.02);
  transform: scale(1.035);
}

.brand-case {
  position: relative;
  border-top: 1px solid rgba(26, 21, 15, 0.1);
  background:
    radial-gradient(circle at 12% 0%, rgba(111, 13, 24, 0.055), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 251, 0.98), rgba(255, 253, 246, 0.96));
}

.brand-case-cream {
  background:
    radial-gradient(circle at 86% 8%, rgba(183, 154, 98, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(248, 241, 229, 0.92), rgba(255, 255, 251, 0.98));
}

.brand-case-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  width: min(100%, 1180px);
  margin: 0 auto 34px;
}

.brand-case-number {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 251, 0.55);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 251, 0.32), transparent 32%),
    var(--burgundy);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(111, 13, 24, 0.18);
}

.brand-case-head h2,
.brand-cdn-note h2 {
  max-width: 840px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 8vw, 84px);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0;
}

.brand-case-head .copy {
  max-width: 720px;
}

.brand-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  width: min(100%, 1240px);
  margin: 0 auto;
}

.brand-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border: 1px solid rgba(26, 21, 15, 0.12);
  border-radius: 96px 96px 8px 8px;
  background: var(--cream);
  box-shadow: 0 18px 42px rgba(26, 21, 15, 0.08);
  isolation: isolate;
}

.brand-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 251, 0.72);
  border-radius: 88px 88px 6px 6px;
  pointer-events: none;
}

.brand-card::after {
  content: attr(data-title);
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-left: 4px solid var(--burgundy);
  background: rgba(255, 255, 251, 0.84);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.05;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 260ms ease, transform 260ms ease;
  backdrop-filter: blur(12px);
}

.brand-card img {
  height: 100%;
  object-fit: cover;
  transition: filter 360ms ease, transform 520ms ease;
}

.brand-gallery-quiet .brand-card img,
.brand-card:nth-child(4n) img {
  filter: grayscale(0.12) contrast(1.02);
}

.brand-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.brand-card:hover img {
  filter: grayscale(0) contrast(1.02);
  transform: scale(1.028);
}

.brand-card-large {
  min-height: 520px;
}

.brand-card-wide {
  min-height: 380px;
  border-radius: 8px;
}

.brand-card-wide::before {
  border-radius: 6px;
}

.brand-cdn-note {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 24%, rgba(111, 13, 24, 0.075), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 251, 0.98), rgba(244, 238, 227, 0.92));
}

.brand-cdn-note::before {
  inset: 60px 18px;
  border-radius: 170px 170px 8px 8px;
}

.brand-cdn-note > div {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(100%, 780px);
}

.brand-cdn-note .copy {
  max-width: 660px;
}

.closing {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 40px 18px calc(34px + env(safe-area-inset-bottom));
  color: var(--cream);
}

.closing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 16, 12, 0.28);
}

.closing img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  filter: grayscale(0.78) contrast(1.04);
}

.closing-copy {
  position: relative;
  z-index: 1;
  max-width: 640px;
  display: grid;
  gap: 14px;
}

.closing-copy::before {
  content: "";
  width: 86px;
  height: 4px;
  background: var(--burgundy);
}

.closing .kicker {
  color: rgba(255, 250, 240, 0.76);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  padding: 22px 18px calc(22px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 250, 240, 0.12);
  background: #0b0c0a;
  color: rgba(255, 250, 240, 0.58);
  font-family: "Manrope", "PingFang SC", sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
  line-height: 1.7;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.beian-link {
  color: rgba(255, 250, 240, 0.78);
  text-decoration: underline;
  text-decoration-color: rgba(255, 250, 240, 0.22);
  text-underline-offset: 4px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.beian-link:hover,
.beian-link:focus-visible {
  color: var(--cream);
  outline: none;
  text-decoration-color: rgba(255, 250, 240, 0.72);
}

.image-dialog,
.collab-dialog {
  width: min(92vw, 760px);
  max-height: 86dvh;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--ink);
  color: var(--cream);
}

.image-dialog[open],
.collab-dialog[open] {
  position: fixed;
  inset: 50% auto auto 50%;
  z-index: 1000;
  transform: translate(-50%, -50%);
}

body.dialog-fallback-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(7, 8, 7, 0.68);
}

.image-dialog::backdrop,
.collab-dialog::backdrop {
  background: rgba(7, 8, 7, 0.68);
}

.image-dialog img {
  max-height: 68dvh;
  object-fit: contain;
  background: #070807;
}

.image-dialog > div,
.collab-dialog {
  padding: 20px;
}

.dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.88);
  color: #111;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.dialog-title {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 26px;
}

.dialog-caption {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: 14px;
  line-height: 1.65;
}

.collab-dialog {
  display: none;
  padding: 28px 22px 22px;
}

.collab-dialog[open] {
  display: block;
}

.collab-dialog h2 {
  margin-bottom: 22px;
}

.modal-grid {
  display: grid;
  gap: 12px;
}

.modal-grid p {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: rgba(255, 250, 240, 0.76);
  line-height: 1.65;
}

.modal-grid strong {
  color: var(--cream);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 759px) {
  .hero-image {
    transform: none;
  }

  .album-section,
  .collab {
    scroll-margin-top: 132px;
  }
}

@media (max-width: 360px) {
  .social-dock {
    top: calc(58px + env(safe-area-inset-top));
    left: calc(10px + env(safe-area-inset-left));
    gap: 1px;
    padding: 2px 5px;
  }

  .social-link {
    width: 28px;
    height: 28px;
  }

  .social-link img {
    width: 19px;
    height: 19px;
  }

  .album-card {
    column-gap: 14px;
    padding: 14px;
  }

  .album-meta strong {
    font-size: 40px;
  }

  .album-meta em {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 34px;
  }

  .chapter-card {
    grid-template-columns: 1fr;
  }

  .section-number {
    font-size: 40px;
  }

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

  .rail-controls {
    top: -46px;
    right: 18px;
  }

  .rail-control {
    width: 38px;
    height: 38px;
  }
}

@media (min-width: 760px) {
  .site-header {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero {
    min-height: 92vh;
    padding: 120px 42px 40px;
  }

  .hero-copy {
    padding-bottom: 70px;
  }

  h1 {
    max-width: 560px;
    font-size: 118px;
  }

  h2 {
    font-size: 56px;
  }

  .copy {
    font-size: 16px;
  }

  .copy-en {
    font-size: 17px;
  }

  .copy-zh {
    font-size: 12px;
  }

  .literary-note .quote-en {
    font-size: 23px;
  }

  .zh-subtitle {
    font-size: 12px;
  }

  .hero .copy {
    max-width: 520px;
  }

  .chapter-card .copy-en {
    font-size: 15px;
  }

  .chapter-card .copy-zh {
    font-size: 12px;
  }

  .album-meta strong {
    font-size: 50px;
  }

  .album-heading h3 {
    max-width: 800px;
    font-size: 66px;
    line-height: 1.04;
  }

  .brand-inline-section .album-heading h3 {
    max-width: 660px;
    font-size: 56px;
  }

  .section-pad {
    padding: 104px 42px;
  }

  .section-number {
    font-size: 64px;
  }

  .section-name {
    padding-bottom: 6px;
  }

  .manifesto-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }

  .private-room-grid {
    grid-template-columns: minmax(0, 0.74fr) minmax(420px, 0.86fr);
    align-items: center;
  }

  .editorial-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
    min-height: 720px;
  }

  .feature-frame,
  .feature-frame img {
    min-height: 720px;
  }

  .feature-frame figcaption {
    left: 28px;
    right: 28px;
    bottom: 28px;
  }

  .feature-frame figcaption span:first-child {
    font-size: 42px;
  }

  .chapter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rail-controls {
    right: 42px;
  }

  .rail {
    padding-left: 42px;
    padding-right: 42px;
  }

  .card-state:checked + .lookbook-group,
  .lookbook-group.is-open,
  .lookbook-group[open] {
    flex-basis: min(1220px, calc(100vw - 84px));
  }

  .fan-stack {
    height: 520px;
    border-radius: 230px 230px 10px 10px;
  }

  .rail-item.fan-card {
    top: 26px;
    width: 248px;
    height: 430px;
  }

  .card-state:checked + .lookbook-group .fan-stack,
  .lookbook-group.is-open .fan-stack,
  .lookbook-group[open] .fan-stack {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 520px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 22px 18px 24px;
    border-radius: 84px 84px 10px 10px;
  }

  .card-state:checked + .lookbook-group .fan-stack::after,
  .lookbook-group.is-open .fan-stack::after,
  .lookbook-group[open] .fan-stack::after {
    display: none;
  }

  .card-state:checked + .lookbook-group .rail-item.fan-card,
  .lookbook-group.is-open .rail-item.fan-card,
  .lookbook-group[open] .rail-item.fan-card {
    position: relative;
    top: auto;
    left: auto;
    flex: 0 0 152px;
    z-index: 1;
    width: 152px;
    height: 410px;
    opacity: 1;
    transform: translateY(var(--open-y, 0));
    pointer-events: auto;
  }

  .card-state:checked + .lookbook-group .fan-card:hover,
  .lookbook-group.is-open .fan-card:hover,
  .lookbook-group[open] .fan-card:hover,
  .card-state:checked + .lookbook-group .rail-item.fan-card.is-selected,
  .lookbook-group.is-open .rail-item.fan-card.is-selected,
  .lookbook-group[open] .rail-item.fan-card.is-selected {
    z-index: 30;
    transform: translateY(calc(var(--open-y, 0px) - 12px));
  }

  .rail-item {
    flex-basis: 330px;
  }

  .motion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .motion-card {
    min-height: auto;
    padding: 74px 18px 20px;
  }

  .motion-frame {
    width: min(100%, 420px);
    margin: 0 auto;
  }

  .motion-meta {
    width: min(100%, 420px);
    margin: 0 auto;
    padding: 22px 20px 24px;
  }

  .motion-card:nth-child(2) {
    margin-top: 74px;
  }

  .collab-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-hero::before {
    left: 42px;
    right: 42px;
    height: 320px;
    border-radius: 210px 210px 0 0;
  }

  .brand-return {
    margin-left: calc((100% - min(100%, 1240px)) / 2);
  }

  .brand-hero-preview {
    gap: 14px;
    padding: 14px;
    border-radius: 190px 190px 8px 8px;
  }

  .brand-hero-preview a {
    min-height: 250px;
    border-radius: 110px 110px 6px 6px;
  }

  .brand-hero-preview a:first-child {
    min-height: 510px;
  }

  .brand-case-head {
    gap: 24px;
    margin-bottom: 46px;
  }

  .brand-case-number {
    width: 70px;
    height: 70px;
    font-size: 30px;
  }

  .brand-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .brand-card {
    min-height: 380px;
  }

  .brand-card-large {
    grid-row: span 2;
    min-height: 776px;
  }

  .brand-card-wide {
    grid-column: span 2;
    min-height: 430px;
  }

  .brand-cdn-note::before {
    left: 42px;
    right: 42px;
  }

  .closing {
    padding-left: 42px;
    padding-right: 42px;
  }

  .modal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1120px) {
  h1 {
    font-size: 136px;
  }

  .album-meta strong {
    font-size: 52px;
  }

  .album-heading h3 {
    font-size: 72px;
  }

  .brand-inline-section .album-heading h3 {
    font-size: 60px;
  }

  .hero-image {
    object-position: 56% 36%;
  }

  .private-room-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(520px, 0.94fr);
  }

  .chapter-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .chapter-card {
    grid-template-columns: 1fr;
    grid-template-rows: 330px auto;
    align-content: start;
    min-height: 540px;
  }

  .chapter-card img {
    height: 330px;
  }

  .fan-stack,
  .card-state:checked + .lookbook-group .fan-stack,
  .lookbook-group.is-open .fan-stack,
  .lookbook-group[open] .fan-stack {
    height: 540px;
  }

  .rail-item.fan-card {
    top: 28px;
    width: 270px;
    height: 450px;
  }

  .card-state:checked + .lookbook-group .rail-item.fan-card,
  .lookbook-group.is-open .rail-item.fan-card,
  .lookbook-group[open] .rail-item.fan-card {
    top: auto;
    flex-basis: 154px;
    width: 154px;
    height: 420px;
  }

  .brand-hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1fr);
    align-items: center;
  }

  .brand-hero-copy h1 {
    font-size: 126px;
  }

  .brand-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .brand-card-large {
    grid-column: span 2;
  }

  .brand-card-wide {
    grid-column: span 2;
  }
}

.lookbook .rail-controls,
.lookbook .card-state,
.lookbook .native-card-toggle {
  display: none !important;
}

.lookbook .grouped-rail {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 34px;
  overflow: visible;
  padding: 0 clamp(18px, 4vw, 64px) 24px;
  scroll-snap-type: none;
  scrollbar-width: auto;
  cursor: default;
  user-select: auto;
  touch-action: auto;
}

.lookbook .lookbook-group {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  flex: none;
  scroll-snap-align: none;
}

.lookbook .fan-stack,
.lookbook .lookbook-group.is-open .fan-stack,
.lookbook .lookbook-group[open] .fan-stack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
  align-items: start;
  gap: clamp(10px, 1.2vw, 16px);
  height: auto;
  min-height: 370px;
  overflow: visible;
  padding: clamp(16px, 2vw, 24px);
  border-radius: clamp(56px, 7vw, 96px) clamp(56px, 7vw, 96px) 10px 10px;
  scrollbar-width: none;
  cursor: default;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 38%),
    linear-gradient(180deg, rgba(255, 255, 251, 0.98), rgba(239, 232, 221, 0.64));
}

.lookbook .fan-stack::-webkit-scrollbar {
  display: none;
}

.lookbook .fan-stack::after {
  display: none;
}

.lookbook .fan-card,
.lookbook .rail-item.fan-card,
.lookbook .lookbook-group.is-open .rail-item.fan-card,
.lookbook .lookbook-group[open] .rail-item.fan-card {
  position: relative;
  top: auto;
  left: auto;
  z-index: 1;
  flex: none;
  width: 100%;
  height: clamp(320px, 34vw, 440px);
  opacity: 1 !important;
  transform: translateY(var(--open-y, 0));
  pointer-events: auto !important;
  scroll-snap-align: start;
}

.lookbook .fan-card:hover,
.lookbook .rail-item.fan-card.is-selected {
  z-index: 30;
  transform: translateY(calc(var(--open-y, 0px) - 10px));
}

.lookbook .fan-card img {
  filter: grayscale(0.34) contrast(1.02);
}

.lookbook .fan-card:nth-child(2n) {
  --open-y: 12px;
}

.lookbook .fan-card:nth-child(3n) {
  --open-y: -10px;
}

.lookbook .fan-card:nth-child(4n) {
  --open-y: 18px;
}

.lookbook .group-cover {
  cursor: default;
  pointer-events: none;
  border-color: rgba(111, 13, 24, 0.3);
  box-shadow: 0 14px 30px rgba(111, 13, 24, 0.08);
}

.album-number,
.album-heading > span,
.chapter-card span,
.collab-list span,
.group-cover span,
.motion-meta span,
.brand-case-number,
.rail-control {
  padding-top: 1px;
  border: 0;
  border-radius: 0;
  clip-path: var(--heart-badge-shape);
  -webkit-mask-image: var(--heart-badge-mask);
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-image: var(--heart-badge-mask);
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 100% 100%;
  background: var(--heart-badge-surface);
  color: var(--cream);
  box-shadow: var(--heart-badge-shadow);
  filter:
    drop-shadow(0 12px 16px rgba(111, 13, 24, 0.24))
    drop-shadow(0 2px 0 rgba(255, 255, 251, 0.24));
  text-shadow: 0 1px 2px rgba(35, 0, 8, 0.72);
}

.album-heading > span,
.brand-case-number,
.motion-meta span {
  padding-top: 2px;
}

.rail-control {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

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