﻿/* =============================================
   Alabaster · 汉白玉 — Personal Site Styles
   ============================================= */

:root {
  --c-bg: #09080d;
  --c-text: #f5efe6;
  --c-dim: rgba(231, 221, 209, 0.72);
  --c-dim-soft: rgba(231, 221, 209, 0.5);
  --c-accent: #d7bea0;
  --c-accent-2: #aeb5ef;
  --c-pink: #c6a5b9;
  --glass: rgba(18, 17, 25, 0.7);
  --glass-border: rgba(245, 239, 230, 0.11);
  --surface-soft: rgba(23, 21, 31, 0.82);
  --surface-raised: rgba(30, 27, 39, 0.92);
  --radius: 24px;
  --font-en-display: "Cinzel", "Cormorant Garamond", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-en: "Cormorant Garamond", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --font-note: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --font-zh-spirit: "Ma Shan Zheng", "Noto Serif SC Web", "Noto Serif SC", "Source Han Serif SC", "Songti SC", serif;
  --font-zh-display: "Noto Serif SC Web", "Noto Serif SC", "Source Han Serif SC", "Songti SC", "STSong", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  --font-zh: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: rgba(215, 190, 160, 0.22) transparent; }
body {
  font-family: var(--font-zh);
  color: var(--c-text);
  background:
    radial-gradient(circle at top, rgba(174, 181, 239, 0.08), transparent 34%),
    linear-gradient(180deg, #0b0a10 0%, #09080d 100%);
  cursor: url('./assets/frieren-cursor-32.png') 4 4, auto;
  overflow-x: hidden;
  letter-spacing: 0.01em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 22%),
    radial-gradient(circle at 20% 20%, rgba(215, 190, 160, 0.05), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(174, 181, 239, 0.05), transparent 26%);
  opacity: 0.9;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 450;
  pointer-events: none;
  opacity: 0;
  transform: scale(1.012);
  background:
    radial-gradient(circle at 24% 26%, rgba(174, 181, 239, 0.11), transparent 28%),
    radial-gradient(circle at 78% 72%, rgba(215, 190, 160, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(8, 7, 12, 0.24), rgba(8, 7, 12, 0.8));
  backdrop-filter: blur(0) saturate(100%);
  transition:
    opacity 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

html.page-transition-pending body::after {
  opacity: 1;
  transform: scale(1);
  backdrop-filter: blur(12px) saturate(116%);
}

body.has-intro {
  overflow: hidden;
}

a, button, .link-card, .gallery-item {
  cursor: url('./assets/frieren-pointer-32.png') 4 4, pointer;
}

/* ---- Custom Cursor Ghost Trail ---- */
.custom-cursor {
  position: fixed;
  width: 24px;
  height: 24px;
  pointer-events: none;
  z-index: 9999;
  background: url('./assets/frieren-cursor-32.png') center/contain no-repeat;
  opacity: 0.3;
  filter: drop-shadow(0 0 4px rgba(215, 190, 160, 0.28));
  transition: transform 0.3s ease, opacity 0.25s ease, filter 0.3s ease;
}

.custom-cursor.hover {
  background-image: url('./assets/frieren-pointer-32.png');
  transform: scale(1.3);
  opacity: 0.55;
  filter: drop-shadow(0 0 8px rgba(198, 165, 185, 0.42));
}

/* ---- Intro Cinematic ---- */
.intro {
  position: fixed;
  inset: 0;
  z-index: 200;
  background:
    radial-gradient(circle at 50% 38%, rgba(174, 181, 239, 0.12), transparent 32%),
    radial-gradient(circle at 50% 68%, rgba(215, 190, 160, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(6, 5, 10, 0.98), rgba(4, 3, 8, 1));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.04), transparent 24%),
    linear-gradient(110deg, transparent 0%, rgba(245, 239, 230, 0.03) 46%, transparent 66%);
  opacity: 0.78;
  pointer-events: none;
}

.intro.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

#starfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.intro-text {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.22));
}

.intro-en {
  font-family: var(--font-zh-spirit);
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  letter-spacing: 0.12em;
  opacity: 0;
  animation: intro-word 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

.intro-name {
  font-family: var(--font-en-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  opacity: 0;
  animation: intro-word 1.16s cubic-bezier(0.22, 1, 0.36, 1) 0.46s forwards;
}

.intro-zh {
  font-family: var(--font-zh-spirit);
  font-size: clamp(1rem, 2vw, 1.6rem);
  color: var(--c-dim);
  letter-spacing: 0.08em;
  opacity: 0;
  animation: intro-word 1.05s cubic-bezier(0.22, 1, 0.36, 1) 0.88s forwards;
}

@keyframes intro-word {
  0%   { opacity: 0; transform: translateY(14px) scale(0.985); filter: blur(10px); }
  22%  { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  84%  { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  100% { opacity: 0; transform: translateY(-4px) scale(1.01); filter: blur(3px); }
}

/* ---- Intro Skip Button ---- */
.intro-skip {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 3;
  background: none;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.5);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 8px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  animation: skip-fade-in 0.8s ease 1.35s forwards;
}

.intro-skip:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
}

@keyframes skip-fade-in {
  to { opacity: 1; }
}

/* ---- Background Stack ---- */
.bg-stack {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.bg-img {
  position: absolute;
  inset: -30px;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
  will-change: opacity, transform;
}

.bg-img--active { opacity: 1; }

.bg-tint {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 12%, rgba(174, 181, 239, 0.13), transparent 48%),
    radial-gradient(ellipse at 82% 82%, rgba(215, 190, 160, 0.09), transparent 44%),
    linear-gradient(180deg, rgba(9, 8, 13, 0.28), rgba(9, 8, 13, 0.76));
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 94vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 22px;
  background: rgba(16, 15, 22, 0.68);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px) saturate(120%);
  border-radius: 999px;
  z-index: 50;
  opacity: 0;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  transition: opacity 0.8s ease, background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
}

.nav.visible { opacity: 1; }

.nav-brand {
  font-family: var(--font-en-display);
  font-size: 1rem;
  text-decoration: none;
  color: var(--c-text);
  letter-spacing: 0.12em;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 18px;
}

.nav-links a {
  text-decoration: none;
  color: var(--c-dim);
  font-size: 0.88rem;
  transition: color 0.25s ease, opacity 0.25s ease;
  position: relative;
}

.nav-links a:hover { color: #fff; opacity: 0.95; }

.nav-links a.active {
  color: #fff;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-accent), transparent);
  border-radius: 1px;
  box-shadow: 0 0 8px rgba(215, 190, 160, 0.28);
}

.nav.scrolled {
  background: rgba(14, 13, 20, 0.82);
  border-color: rgba(245, 239, 230, 0.14);
  backdrop-filter: blur(18px) saturate(130%);
}

/* ---- Stage (scrollable area) ---- */
.stage {
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.stage.visible { opacity: 1; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 108px 16px 76px;
  text-align: left;
}

.hero-shell {
  width: min(760px, calc(100vw - 32px));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
}

.hero-kicker {
  margin-bottom: 4px;
}

.hero-avatar {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(245, 239, 230, 0.52);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24), 0 0 0 8px rgba(245, 239, 230, 0.03);
  animation: avatar-glow 4s ease-in-out infinite;
  will-change: box-shadow;
  transition: transform 0.5s ease;
}

.hero-avatar:hover {
  transform: scale(1.08);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28), 0 0 0 10px rgba(215, 190, 160, 0.05);
}

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

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero-title-en {
  font-family: var(--font-en-display);
  order: 2;
  font-size: clamp(1.55rem, 3.2vw, 2.35rem);
  letter-spacing: 0.18em;
  font-weight: 700;
  color: rgba(245, 239, 230, 0.82);
}

.hero-title-zh {
  font-family: var(--font-zh-spirit);
  order: 1;
  font-size: clamp(3.15rem, 8.6vw, 6rem);
  color: var(--c-text);
  letter-spacing: 0.05em;
  line-height: 1.02;
  text-shadow: 0 18px 38px rgba(0, 0, 0, 0.28), 0 0 28px rgba(245, 239, 230, 0.12);
}

.hero-lead {
  max-width: 560px;
  color: rgba(245, 239, 230, 0.84);
  font-size: 1.02rem;
  line-height: 2;
}

.hero-typewriter {
  font-size: 0.98rem;
  color: var(--c-dim);
  min-height: 1.6em;
  border-right: 1px solid rgba(215, 190, 160, 0.6);
  padding-right: 6px;
  white-space: nowrap;
  overflow: hidden;
  animation: blink-caret 1.4s step-end infinite;
  font-family: var(--font-note);
  letter-spacing: 0.06em;
}

@keyframes blink-caret {
  50% { border-color: transparent; }
}

.hero-social {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 6px;
}

.hero-social a {
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,239,230,0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-social a:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(215, 190, 160, 0.26);
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
}

.hero-social a i {
  color: var(--c-accent);
}

.hero-social a span {
  display: none;
}

.hero-note-card {
  position: relative;
  overflow: hidden;
  padding: 30px 26px 28px 34px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(174, 181, 239, 0.03)),
    rgba(18, 17, 25, 0.84);
  border: 1px solid rgba(245, 239, 230, 0.11);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px) saturate(115%);
  text-align: left;
}

.hero-note-card::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  bottom: 22px;
  width: 1px;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.65), rgba(174, 181, 239, 0.24), transparent);
}

.hero-note-label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--c-accent);
  font-family: var(--font-zh-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.hero-note-card p {
  color: rgba(245, 239, 230, 0.8);
  line-height: 2;
  font-size: 0.9rem;
}

.hero-note-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hero-note-tags span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 239, 230, 0.09);
  color: rgba(245, 239, 230, 0.76);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

/* ---- Glass Panel ---- */
.glass-panel {
  position: relative;
  max-width: 680px;
  margin: 54px auto;
  padding: 40px 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(174, 181, 239, 0.015)),
    rgba(20, 18, 28, 0.66);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px) saturate(108%);
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.glass-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 239, 230, 0.18), transparent);
  border-radius: 1px;
}

.glass-panel:hover {
  border-color: rgba(215, 190, 160, 0.14);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}

.glass-panel h2 {
  font-family: var(--font-zh-display);
  margin-bottom: 16px;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
}

.glass-panel p {
  color: var(--c-dim);
  line-height: 2;
  font-size: 0.95rem;
}

/* ---- About Tags ---- */
.about-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 20px;
}

.tag {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 239, 230, 0.08);
  color: var(--c-dim);
  transition: all 0.3s ease;
}

.tag:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(215, 190, 160, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.tag:nth-child(3n+2) {
  color: var(--c-accent);
}

.tag:nth-child(3n+2):hover {
  border-color: rgba(215, 190, 160, 0.18);
}

.tag:nth-child(3n) {
  color: rgba(174, 181, 239, 0.9);
}

.tag:nth-child(3n):hover {
  border-color: rgba(174, 181, 239, 0.18);
}

/* ---- Gallery ---- */
.gallery {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 16px;
  text-align: center;
}

.gallery h2 {
  font-family: var(--font-en);
  margin-bottom: 24px;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}

.gallery-grid {
  columns: 3 260px;
  column-gap: 14px;
}

.gallery-item {
  break-inside: avoid;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 14px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ---- Link Cards ---- */
.link-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.link-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 22px 18px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(174, 181, 239, 0.02)),
    rgba(20, 18, 28, 0.72);
  border: 1px solid rgba(245,239,230,0.09);
  text-decoration: none;
  color: var(--c-text);
  transition: all 0.3s ease;
  text-align: left;
}

.link-card i {
  font-size: 1rem;
  color: var(--c-accent);
}

.link-card span {
  font-family: var(--font-zh-display);
  font-size: 1rem;
  color: var(--c-text);
  letter-spacing: 0.06em;
}

.link-card small {
  color: rgba(245, 239, 230, 0.62);
  font-size: 0.74rem;
  line-height: 1.75;
  text-align: left;
}

.link-card:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(174, 181, 239, 0.03)),
    rgba(23, 21, 31, 0.84);
  border-color: rgba(215, 190, 160, 0.16);
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.18);
}

.link-soon {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-pink);
  opacity: 0.7;
}

/* ---- Footer ---- */
.footer {
  width: min(920px, calc(100vw - 32px));
  margin: 86px auto 0;
  padding: 44px 18px 28px;
  position: relative;
  text-align: center;
  color: var(--c-dim);
  font-size: 0.8rem;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18%;
  right: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 239, 230, 0.22), transparent);
}

.footer > p:first-of-type {
  color: rgba(245, 239, 230, 0.78);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.footer > p:first-of-type i {
  opacity: 0.82;
}

/* ---- Floating Buttons ---- */
.bg-toggle,
.to-top {
  position: fixed;
  z-index: 55;
  width: 44px;
  height: 44px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: var(--glass);
  backdrop-filter: blur(12px);
  color: #fff;
  cursor: url('./assets/frieren-pointer-32.png') 4 4, pointer;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease, opacity 0.5s ease;
}

.bg-toggle { right: 18px; bottom: 76px; }
.to-top    { right: 18px; bottom: 22px; }

.bg-toggle.show,
.to-top.show {
  opacity: 1;
  pointer-events: auto;
}

.bg-toggle:hover,
.to-top:hover {
  background: rgba(255,255,255,0.15);
  transform: scale(1.1);
}

/* ---- Scroll Reveal (blur + slide) ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 0.9s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
}

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

/* ---- Hero Title Glow ---- */
.hero-title-en {
  text-shadow: 0 0 36px rgba(198, 165, 185, 0.22), 0 0 72px rgba(215, 190, 160, 0.1);
}

/* ---- Gallery Hover Overlay ---- */
.gallery-item::after {
  content: "\f065";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

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

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
  backdrop-filter: blur(8px);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  transform: scale(0.92);
  transition: transform 0.4s ease, opacity 0.2s ease;
}

.lightbox.open .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.3rem;
  display: grid;
  place-items: center;
  transition: all 0.25s ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

/* ---- Scroll Progress ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--c-accent), var(--c-pink));
  z-index: 100;
  transition: width 0.05s linear;
  pointer-events: none;
}

/* ---- Animations ---- */
@keyframes avatar-glow {
  0%, 100% { box-shadow: 0 0 30px rgba(100, 180, 255, 0.2), 0 0 60px rgba(100, 180, 255, 0.05); }
  50% { box-shadow: 0 0 45px rgba(100, 180, 255, 0.35), 0 0 80px rgba(160, 140, 255, 0.1); }
}

/* ---- Page Header (sub-pages) ---- */
.page-header {
  min-height: 45vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 80px 16px 20px;
}

.page-header--about {
  min-height: 52vh;
  padding-top: 112px;
}

.page-header-shell {
  width: min(820px, calc(100vw - 32px));
  position: relative;
  overflow: hidden;
  padding: 30px 30px 32px 38px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(174, 181, 239, 0.02)),
    rgba(18, 17, 25, 0.8);
  border: 1px solid rgba(245, 239, 230, 0.1);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px) saturate(112%);
  text-align: left;
}

.page-header-shell::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.72), rgba(174, 181, 239, 0.22), transparent);
}

.page-header-shell .section-kicker {
  margin-bottom: 12px;
}

.page-header-shell .page-title {
  align-items: flex-start;
}

.page-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.page-title-en {
  font-family: var(--font-en-display);
  order: 2;
  font-size: clamp(1.2rem, 2.8vw, 1.9rem);
  letter-spacing: 0.16em;
  font-weight: 700;
  color: rgba(245, 239, 230, 0.78);
}

.page-title-zh {
  font-family: var(--font-zh-spirit);
  order: 1;
  font-size: clamp(2.6rem, 5.8vw, 4.4rem);
  color: var(--c-text);
  letter-spacing: 0.06em;
  line-height: 1.06;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.22), 0 0 16px rgba(245, 239, 230, 0.08);
}

.page-subtitle {
  color: var(--c-dim);
  font-size: 0.94rem;
  max-width: 560px;
  line-height: 2;
}

.page-section {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition: opacity 0.9s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s ease;
}

/* ---- Section More Link ---- */
.section-more {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--c-accent);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}

.section-more:hover {
  color: #fff;
  transform: translateX(4px);
}

/* ---- Section Headings ---- */
.section-heading {
  font-family: var(--font-zh-display);
  font-size: 1.38rem;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--c-accent);
  font-family: var(--font-zh-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1;
}

.section-kicker::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 190, 160, 0.9), rgba(215, 190, 160, 0.08));
}

.section-heading-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  text-align: center;
}

.section-heading-group .section-heading {
  margin-bottom: 0;
}

.section-heading-group--left {
  align-items: flex-start;
  text-align: left;
}

.section-lead {
  max-width: 760px;
  color: var(--c-dim);
  font-size: 0.9rem;
  line-height: 1.95;
}

.about-preview-shell {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-preview-lead {
  color: rgba(245, 239, 230, 0.84);
  line-height: 2;
}

.about-preview-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-preview-points span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(245, 239, 230, 0.09);
  color: rgba(245, 239, 230, 0.74);
  font-size: 0.76rem;
}

/* ---- Project Cards ---- */
.project-intro-panel {
  max-width: 820px;
  text-align: left;
}

.project-intro-panel h2 {
  font-family: var(--font-zh-display);
  margin-bottom: 12px;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
}

.project-intro-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 660px;
}

.project-intro-copy p {
  text-align: left;
}

.project-overview {
  width: min(1080px, calc(100vw - 32px));
  margin: 0 auto 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.project-stat-card {
  padding: 24px 22px;
  text-align: left;
}

.project-stat-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--c-accent);
  font-family: var(--font-en);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-stat-value {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-en);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--c-text);
  text-shadow: 0 0 24px rgba(215, 190, 160, 0.12);
}

.project-stat-card p {
  color: var(--c-dim);
  line-height: 1.8;
  font-size: 0.84rem;
}

.project-intro-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: start;
}

.project-intro-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.project-intro-copy h2 {
  font-family: var(--font-en);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  letter-spacing: 0.08em;
}

.project-intro-lead {
  color: rgba(245, 239, 230, 0.88);
  font-size: 1rem;
  line-height: 2;
}

.project-intro-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(174, 181, 239, 0.03));
  border: 1px solid rgba(245,239,230,0.08);
}

.project-intro-side p {
  color: var(--c-dim);
  font-size: 0.86rem;
  line-height: 1.9;
}

.project-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: 28px 26px 24px 34px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
  text-align: left;
  background:
    radial-gradient(circle at top right, rgba(174, 181, 239, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid rgba(245,239,230,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.project-card::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.72), rgba(174, 181, 239, 0.22), transparent);
}

.project-card:hover {
  background:
    radial-gradient(circle at top right, rgba(215, 190, 160, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border-color: rgba(215, 190, 160, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0,0,0,0.16);
}

.project-card h3 {
  font-family: var(--font-zh-display);
  font-size: 1.22rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.project-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.project-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.project-card-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.project-name-alt {
  color: rgba(245, 239, 230, 0.62);
  font-size: 0.82rem;
  line-height: 1.6;
}

.project-date {
  font-family: var(--font-en);
  font-size: 0.74rem;
  color: var(--c-accent);
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.project-summary {
  color: var(--c-dim);
  font-size: 0.9rem;
  line-height: 1.9;
  max-width: 62ch;
}

.project-tag {
  font-family: var(--font-en);
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(215, 190, 160, 0.08);
  border: 1px solid rgba(215, 190, 160, 0.14);
  color: var(--c-accent);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.project-stack-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.project-stack-list li {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,239,230,0.08);
  color: rgba(245, 239, 230, 0.76);
  font-size: 0.76rem;
}

.project-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 4px;
}

.project-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(174, 181, 239, 0.08);
  border: 1px solid rgba(174, 181, 239, 0.14);
  font-size: 0.78rem;
  color: var(--c-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.project-links a:hover {
  color: #fff;
  transform: translateX(2px);
  background: rgba(174, 181, 239, 0.14);
}

.project-checklist {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}

.project-featured-panel,
.project-future-panel {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project-featured-panel {
  max-width: 900px;
  align-items: stretch;
}

.project-future-panel {
  max-width: 820px;
  align-items: stretch;
}

.project-featured-panel .section-heading,
.project-featured-panel .section-lead,
.project-future-panel .section-heading,
.project-future-panel .section-lead {
  text-align: left;
}

/* ---- About Full Page ---- */
.about-full {
  max-width: 860px;
}

.about-skill-panel,
.about-journey-panel,
.about-likes-panel,
.about-interests-panel {
  max-width: 860px;
}

.about-skill-panel .section-heading,
.about-journey-panel .section-heading,
.about-likes-panel .section-heading,
.about-interests-panel .section-heading,
#about .section-heading,
#links .section-heading {
  font-family: var(--font-zh-display);
  letter-spacing: 0.08em;
}

.about-profile-panel {
  overflow: hidden;
}

.about-profile-panel::before {
  content: "";
  position: absolute;
  inset: auto -50px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 181, 239, 0.12), transparent 70%);
  pointer-events: none;
}

.about-profile {
  display: flex;
  align-items: flex-start;
  gap: 36px;
  text-align: left;
}

.about-profile-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-width: 164px;
}

.about-profile .hero-avatar {
  flex-shrink: 0;
}

.about-profile-note {
  display: none;
}

.about-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.about-intro h2 {
  font-family: var(--font-zh-display);
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  margin-bottom: 0;
}

.about-name-zh {
  font-family: var(--font-zh-spirit);
  font-size: 1.06rem;
  color: var(--c-dim);
  margin-left: 6px;
  letter-spacing: 0.04em;
}

.about-name-en {
  display: none;
}

.about-identity {
  color: var(--c-accent);
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
  opacity: 0.85;
}

.about-intro p {
  color: var(--c-dim);
  line-height: 2.05;
  font-size: 0.94rem;
  max-width: 62ch;
}

/* ---- Skill Grid ---- */
.skill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
}

.skill-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 10px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(174, 181, 239, 0.02)),
    rgba(21, 19, 29, 0.68);
  border: 1px solid rgba(245,239,230,0.08);
  transition: all 0.3s ease;
}

.skill-card i {
  font-size: 1.5rem;
  color: var(--c-accent);
}

.skill-card span {
  font-size: 0.78rem;
  color: rgba(245, 239, 230, 0.76);
  letter-spacing: 0.04em;
}

.skill-card:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(174, 181, 239, 0.03)),
    rgba(24, 22, 33, 0.82);
  border-color: rgba(215, 190, 160, 0.16);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

/* ---- Timeline ---- */
.timeline {
  position: relative;
  padding-left: 34px;
  text-align: left;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--c-accent), var(--c-accent-2), transparent);
  border-radius: 999px;
}

.timeline-item {
  position: relative;
  margin-bottom: 28px;
}

.timeline-dot {
  position: absolute;
  left: -27px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--c-accent);
  border: 3px solid rgba(12, 11, 17, 0.92);
  box-shadow: 0 0 18px rgba(215, 190, 160, 0.24);
}

.timeline-content {
  padding: 18px 20px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(174, 181, 239, 0.015)),
    rgba(20, 18, 28, 0.62);
  border: 1px solid rgba(245, 239, 230, 0.08);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-content {
  transform: translateX(4px);
  border-color: rgba(215, 190, 160, 0.16);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.timeline-content h3 {
  font-family: var(--font-zh-display);
  font-size: 1.12rem;
  margin-bottom: 8px;
  color: var(--c-text);
  letter-spacing: 0.05em;
}

.timeline-content p {
  color: var(--c-dim);
  font-size: 0.88rem;
  line-height: 1.8;
}

/* ---- Friend Cards ---- */
.friend-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.friend-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s ease;
}

.friend-card:hover {
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.14);
}

.friend-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(174, 181, 239, 0.12);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.friend-avatar i {
  font-size: 1.2rem;
  color: var(--c-accent);
}

.friend-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.friend-info h3 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.friend-info p {
  font-size: 0.78rem;
  color: var(--c-dim);
}

/* ---- Friend Apply ---- */
.friend-apply p {
  color: var(--c-dim);
  font-size: 0.9rem;
  margin-bottom: 18px;
  line-height: 1.8;
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.friends-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 8px 0;
  max-width: 560px;
  margin: 0 auto;
}

.friends-empty-badge {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.16), transparent 55%),
    linear-gradient(180deg, rgba(174, 181, 239, 0.16), rgba(215, 190, 160, 0.1));
  border: 1px solid rgba(245,239,230,0.16);
  box-shadow: 0 0 30px rgba(174, 181, 239, 0.12);
}

.friends-empty-badge i {
  font-size: 1.5rem;
  color: var(--c-text);
}

.friends-empty-title {
  font-family: var(--font-zh-display);
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  letter-spacing: 0.06em;
}

.friends-empty-copy {
  max-width: 680px;
  color: var(--c-dim);
  line-height: 1.95;
  font-size: 0.92rem;
}

.friends-principles {
  margin-top: 4px;
}

.friends-section {
  max-width: 760px;
}

.apply-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 680px;
  margin: 0 auto;
}

.apply-item {
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.apply-item strong {
  display: block;
  font-size: 0.72rem;
  color: var(--c-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.apply-item span {
  font-size: 0.85rem;
  color: var(--c-dim);
}

.apply-item a {
  color: var(--c-text);
  text-decoration: none;
  border-bottom: 1px dashed rgba(215, 190, 160, 0.35);
}

.apply-item a:hover {
  color: var(--c-accent);
}

/* ---- 20260317h Visual Re-orchestration ---- */
.page-header--about {
  min-height: 48vh;
}

.page-header--projects,
.page-header--friends {
  min-height: 46vh;
  padding-top: 116px;
}

.page-header-shell {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(174, 181, 239, 0.02) 56%),
    rgba(15, 14, 22, 0.68);
  border-color: rgba(245, 239, 230, 0.12);
}

.page-header-shell::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -72px;
  bottom: -92px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 181, 239, 0.16), transparent 70%);
  opacity: 0.78;
  pointer-events: none;
}

.page-header-shell > * {
  position: relative;
  z-index: 1;
}

.page-header--about .page-header-shell {
  width: min(840px, calc(100vw - 32px));
}

.page-header--projects .page-header-shell {
  width: min(960px, calc(100vw - 32px));
  padding-right: 42px;
}

.page-header--projects .page-header-shell::after {
  left: -82px;
  right: auto;
  top: -72px;
  bottom: auto;
  background: radial-gradient(circle, rgba(215, 190, 160, 0.16), transparent 70%);
}

.page-header--friends .page-header-shell {
  width: min(780px, calc(100vw - 32px));
}

.page-header--friends .page-header-shell::after {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(198, 165, 185, 0.14), transparent 70%);
}

.page-header--about .page-title-zh,
.page-header--friends .page-title-zh {
  font-size: clamp(2.9rem, 6vw, 4.8rem);
}

.page-header--projects .page-title-zh {
  font-size: clamp(2.8rem, 5.8vw, 4.6rem);
}

.note-panel {
  max-width: 820px;
  padding: 46px 42px 44px;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.014) 58%),
    rgba(15, 14, 22, 0.58);
  border-color: rgba(245, 239, 230, 0.13);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
}

.note-panel::after {
  content: "";
  position: absolute;
  top: -36px;
  right: -36px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 181, 239, 0.18), transparent 70%);
  opacity: 0.72;
  pointer-events: none;
}

.note-panel .section-heading-group,
.garden-panel .section-heading-group {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.note-panel .section-heading {
  font-size: clamp(1.4rem, 2.6vw, 1.76rem);
  letter-spacing: 0.12em;
}

.note-panel .section-lead {
  max-width: 30rem;
  color: rgba(245, 239, 230, 0.62);
}

.about-preview-shell {
  position: relative;
  z-index: 1;
  max-width: 620px;
  gap: 18px;
}

.about-preview-lead {
  color: rgba(245, 239, 230, 0.86);
  font-size: 0.98rem;
  line-height: 2.12;
}

.about-preview-points {
  gap: 14px 22px;
}

.about-preview-points span {
  padding: 0 0 0 18px;
  border: none;
  background: none;
  color: rgba(245, 239, 230, 0.74);
  font-family: var(--font-zh-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  position: relative;
}

.about-preview-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(215, 190, 160, 0.9), rgba(215, 190, 160, 0.1));
}

.garden-panel {
  max-width: 930px;
  padding: 44px 42px 38px;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.014)),
    rgba(13, 12, 18, 0.44);
  border-color: rgba(245, 239, 230, 0.08);
}

.garden-panel::after {
  content: "";
  position: absolute;
  right: 18%;
  bottom: -90px;
  width: 280px;
  height: 180px;
  background: radial-gradient(circle, rgba(215, 190, 160, 0.12), transparent 68%);
  pointer-events: none;
}

.garden-panel .section-heading-group {
  margin-bottom: 28px;
}

.garden-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.garden-item {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(245, 239, 230, 0.08);
  text-decoration: none;
  color: var(--c-text);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.garden-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.garden-item::after {
  content: "↗";
  color: rgba(245, 239, 230, 0.3);
  font-family: var(--font-en);
  font-size: 1rem;
  transform: translateX(-8px);
  opacity: 0.5;
  transition: transform 0.35s ease, color 0.35s ease, opacity 0.35s ease;
}

.garden-item:hover {
  transform: translateX(8px);
  border-color: rgba(215, 190, 160, 0.18);
}

.garden-item:hover::after {
  color: var(--c-accent);
  transform: translateX(0);
  opacity: 1;
}

.garden-item:nth-child(2n) {
  padding-left: 18px;
}

.garden-item:nth-child(3n) {
  padding-left: 36px;
}

.garden-index {
  font-family: var(--font-en-display);
  font-size: 1.08rem;
  letter-spacing: 0.18em;
  color: rgba(245, 239, 230, 0.45);
}

.garden-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.garden-copy strong {
  font-family: var(--font-zh-display);
  font-size: 1.04rem;
  letter-spacing: 0.08em;
  color: var(--c-text);
}

.garden-copy small {
  color: rgba(245, 239, 230, 0.62);
  font-size: 0.84rem;
  line-height: 1.85;
}

.about-profile-panel {
  max-width: 940px;
  padding: 48px 42px 44px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(174, 181, 239, 0.02) 55%),
    rgba(15, 14, 22, 0.6);
}

.about-profile-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 239, 230, 0.22), transparent);
}

.about-profile-panel::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 181, 239, 0.14), transparent 70%);
  pointer-events: none;
}

.about-profile {
  display: grid;
  grid-template-columns: minmax(140px, 180px) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-profile-visual {
  align-items: center;
  min-width: 0;
}

.about-profile .hero-avatar {
  width: 154px;
  height: 154px;
}

.about-intro h2 {
  font-family: var(--font-en-display);
  font-size: clamp(2rem, 3.7vw, 2.9rem);
  letter-spacing: 0.08em;
}

.about-name-zh {
  display: inline-block;
  margin-left: 10px;
  color: rgba(245, 239, 230, 0.72);
  font-size: 1.16rem;
  transform: translateY(-2px);
}

.about-intro-lead {
  max-width: 50ch;
  color: rgba(245, 239, 230, 0.84);
  font-size: 0.98rem;
  line-height: 2.08;
}

.about-intro-echo {
  max-width: 54ch;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(245, 239, 230, 0.08);
  color: rgba(245, 239, 230, 0.64);
  font-size: 0.84rem;
  line-height: 2.05;
}

.about-skill-panel,
.about-journey-panel,
.about-likes-panel,
.about-interests-panel {
  text-align: left;
}

.about-skill-panel,
.about-likes-panel,
.about-journey-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(14, 13, 20, 0.46);
}

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

.craft-item {
  position: relative;
  overflow: hidden;
  padding: 22px 20px 20px 26px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(18, 17, 25, 0.52);
  border: 1px solid rgba(245, 239, 230, 0.08);
  text-align: left;
}

.craft-item::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.74), rgba(174, 181, 239, 0.16), transparent);
}

.craft-item h3 {
  margin-bottom: 8px;
  font-family: var(--font-zh-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.craft-item p {
  color: var(--c-dim);
  font-size: 0.86rem;
  line-height: 1.95;
}

.craft-item:nth-child(2) {
  transform: translateY(18px);
}

.craft-item:nth-child(3) {
  transform: translateX(18px);
}

.craft-item:nth-child(4) {
  transform: translateY(8px);
}

.about-journey-panel {
  max-width: 900px;
}

.timeline {
  max-width: 720px;
  padding-left: 40px;
}

.timeline::before {
  left: 12px;
  width: 1px;
}

.timeline-item:nth-child(2n) .timeline-content {
  margin-left: 18px;
}

.timeline-item:nth-child(3n) .timeline-content {
  margin-right: 14px;
}

.timeline-content {
  padding: 20px 22px 18px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(174, 181, 239, 0.018)),
    rgba(14, 13, 20, 0.54);
  border-color: rgba(245, 239, 230, 0.1);
}

.timeline-item:hover .timeline-content {
  transform: translateX(6px);
}

.about-likes-panel {
  max-width: 940px;
}

.affinity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.affinity-card {
  position: relative;
  overflow: hidden;
  padding: 24px 22px 22px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(17, 16, 24, 0.5);
  border: 1px solid rgba(245, 239, 230, 0.09);
  text-align: left;
}

.affinity-card::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -46px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 165, 185, 0.12), transparent 72%);
}

.affinity-card:nth-child(2) {
  margin-top: 20px;
}

.affinity-card:nth-child(3) {
  margin-top: 44px;
}

.affinity-card h3 {
  margin-bottom: 10px;
  font-family: var(--font-zh-display);
  font-size: 1.02rem;
  letter-spacing: 0.08em;
}

.affinity-card p {
  max-width: 26ch;
  font-size: 0.88rem;
  line-height: 1.95;
}

.about-interests-panel {
  max-width: 760px;
  padding: 34px 32px 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.012)),
    rgba(15, 14, 20, 0.38);
}

.about-closing {
  max-width: 42rem;
  margin: 0 auto;
  color: rgba(245, 239, 230, 0.76);
  font-size: 0.95rem;
  line-height: 2.1;
  text-align: center;
}

.about-tags--quiet {
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

.about-tags--quiet .tag,
.friends-principles .tag,
.project-future-panel .tag {
  background: transparent;
  border-color: rgba(245, 239, 230, 0.12);
  color: rgba(245, 239, 230, 0.76);
}

.project-intro-panel {
  max-width: 960px;
  padding: 44px 40px 40px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(174, 181, 239, 0.018) 58%),
    rgba(15, 14, 22, 0.52);
}

.project-intro-panel::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 181, 239, 0.14), transparent 72%);
  pointer-events: none;
}

.project-intro-panel h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
  font-family: var(--font-zh-spirit);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
}

.project-intro-copy {
  position: relative;
  z-index: 1;
  max-width: 650px;
  gap: 14px;
}

.project-intro-copy p {
  color: rgba(245, 239, 230, 0.72);
  font-size: 0.92rem;
  line-height: 2.02;
}

.project-featured-panel {
  max-width: 1040px;
  padding: 42px 38px 40px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.018)),
    rgba(13, 12, 19, 0.48);
}

.project-future-panel {
  max-width: 860px;
  padding: 38px 34px 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.014)),
    rgba(14, 13, 20, 0.42);
}

.project-grid {
  counter-reset: project-archive;
  gap: 20px;
  margin-top: 6px;
}

.project-card {
  counter-increment: project-archive;
  width: min(100%, 780px);
  padding: 30px 28px 26px 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.016) 58%),
    rgba(15, 14, 21, 0.42);
  border-color: rgba(245, 239, 230, 0.11);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px) saturate(110%);
}

.project-card:nth-child(odd) {
  margin-right: auto;
}

.project-card:nth-child(even) {
  width: min(100%, 720px);
  margin-left: auto;
  padding: 30px 34px 26px 28px;
}

.project-card:nth-child(3n) {
  width: min(100%, 840px);
}

.project-card:nth-child(even)::before {
  left: auto;
  right: 16px;
  background: linear-gradient(180deg, rgba(174, 181, 239, 0.72), rgba(215, 190, 160, 0.2), transparent);
}

.project-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 181, 239, 0.14), transparent 72%);
  pointer-events: none;
}

.project-card:nth-child(even)::after {
  top: -56px;
  left: -42px;
  right: auto;
  bottom: auto;
  background: radial-gradient(circle, rgba(215, 190, 160, 0.12), transparent 72%);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.18);
}

.project-card h3 {
  font-size: 1.28rem;
  letter-spacing: 0.04em;
}

.project-card-top {
  align-items: baseline;
  position: relative;
  padding-right: 62px;
}

.project-card-top::after {
  content: counter(project-archive, decimal-leading-zero);
  position: absolute;
  right: 0;
  top: -2px;
  color: rgba(245, 239, 230, 0.18);
  font-family: var(--font-en-display);
  font-size: 1rem;
  letter-spacing: 0.14em;
}

.project-tag {
  padding: 0;
  background: none;
  border: none;
  color: rgba(215, 190, 160, 0.86);
  font-family: var(--font-en-display);
  font-size: 0.74rem;
  letter-spacing: 0.13em;
}

.project-date {
  color: rgba(245, 239, 230, 0.56);
  font-family: var(--font-note);
  font-size: 0.76rem;
}

.project-name-alt {
  color: rgba(245, 239, 230, 0.56);
  font-size: 0.8rem;
}

.project-summary {
  max-width: none;
  color: rgba(245, 239, 230, 0.74);
}

.project-stack-list li {
  background: transparent;
  border-color: rgba(245, 239, 230, 0.1);
  color: rgba(245, 239, 230, 0.72);
}

.project-links {
  padding-top: 8px;
}

.project-links a {
  background: transparent;
  border-color: rgba(174, 181, 239, 0.18);
  color: rgba(245, 239, 230, 0.82);
}

.project-links a:hover {
  background: rgba(174, 181, 239, 0.08);
  transform: translateX(4px);
}

.friends-section {
  max-width: 820px;
  padding: 44px 38px 40px;
  text-align: left;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(198, 165, 185, 0.018) 55%),
    rgba(14, 13, 20, 0.44);
}

.friends-empty-state {
  align-items: flex-start;
  text-align: left;
  gap: 14px;
  max-width: 520px;
}

.friends-empty-badge {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.friends-empty-title {
  font-family: var(--font-zh-spirit);
  font-size: clamp(2.1rem, 4.4vw, 3rem);
  line-height: 1.2;
}

.friends-empty-copy {
  max-width: 36ch;
}

.friends-principles {
  justify-content: flex-start;
  margin-top: 10px;
}

.friends-apply-panel {
  max-width: 860px;
  padding: 38px 34px 34px;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.016)),
    rgba(13, 12, 18, 0.48);
}

.friends-apply-panel .section-heading,
.friends-apply-panel .friend-apply p {
  text-align: left;
}

.friend-apply p {
  max-width: 40rem;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}

.apply-info {
  max-width: none;
  gap: 14px;
  margin-top: 18px;
}

.apply-item {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(17, 16, 24, 0.48);
  border-color: rgba(245, 239, 230, 0.09);
}

.apply-item strong {
  margin-bottom: 8px;
}

.hero {
  padding-bottom: 146px;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -46px;
  height: 260px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center bottom, rgba(9, 8, 13, 0.68) 0%, rgba(9, 8, 13, 0.36) 28%, rgba(9, 8, 13, 0.1) 58%, rgba(9, 8, 13, 0) 82%);
  filter: blur(16px);
  opacity: 0.92;
}

.hero-shell,
.scroll-hint {
  position: relative;
  z-index: 1;
}

.hero-shell {
  width: min(1040px, calc(100vw - 40px));
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  align-items: end;
  padding: 38px 38px 54px 58px;
  gap: 42px;
  text-align: left;
}

.hero-shell::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 16px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.78), rgba(174, 181, 239, 0.18), transparent);
}

.hero-shell::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 16px;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 239, 230, 0.4), rgba(245, 239, 230, 0.05));
}

.hero-main {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 540px;
}

.hero-main::before {
  content: "";
  position: absolute;
  inset: -20px -42px -24px -36px;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(11, 10, 16, 0.38), rgba(11, 10, 16, 0.14) 52%, rgba(11, 10, 16, 0) 82%),
    radial-gradient(circle at 20% 22%, rgba(174, 181, 239, 0.14), transparent 38%);
  pointer-events: none;
}

.hero-kicker {
  margin-bottom: 2px;
}

.hero-kicker.section-kicker {
  color: rgba(245, 239, 230, 0.72);
}

.hero-shell .hero-avatar,
.hero-shell .hero-title,
.hero-shell .hero-lead,
.hero-shell .time-greeting,
.hero-shell .hero-typewriter {
  position: relative;
  z-index: 1;
}

.hero-shell .hero-avatar {
  width: 106px;
  height: 106px;
  margin-left: 2px;
}

.hero-title {
  align-items: flex-start;
  gap: 6px;
}

.hero-title-zh {
  font-size: clamp(3.5rem, 8.8vw, 6.4rem);
}

.hero-title-en {
  font-size: clamp(1.4rem, 2.9vw, 2.2rem);
  letter-spacing: 0.24em;
}

.hero-lead {
  max-width: 31rem;
  margin-top: 2px;
  padding-left: 18px;
  color: rgba(245, 239, 230, 0.82);
  font-size: 0.98rem;
  line-height: 2.05;
  position: relative;
}

.hero-lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 190, 160, 0.92), rgba(215, 190, 160, 0.1));
}

.time-greeting {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(245, 239, 230, 0.68);
  letter-spacing: 0.12em;
  opacity: 1;
  margin-top: 10px;
}

.time-greeting::before {
  content: "";
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 190, 160, 0.92), rgba(215, 190, 160, 0.12));
}

.hero-typewriter {
  min-height: 2.8em;
  max-width: 29rem;
  padding: 0 0 0 18px;
  border: none;
  border-right: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: rgba(245, 239, 230, 0.62);
  font-size: 0.88rem;
  line-height: 1.95;
  animation: none;
  position: relative;
}

.hero-typewriter::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(174, 181, 239, 0.92), rgba(174, 181, 239, 0.08));
}

.hero-note-card--home {
  width: min(100%, 320px);
  margin-bottom: 12px;
  padding: 28px 24px 24px 32px;
  align-self: end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(12, 11, 18, 0.58);
  border-color: rgba(245, 239, 230, 0.09);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px) saturate(110%);
}

.hero-note-card--home::before {
  left: 16px;
  top: 18px;
  bottom: 18px;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.7), rgba(174, 181, 239, 0.2), transparent);
}

.hero-note-card--home::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(174, 181, 239, 0.16), transparent 72%);
  pointer-events: none;
}

.hero-note-card--home p,
.hero-note-card--home .hero-note-label,
.hero-note-card--home .hero-note-tags {
  position: relative;
  z-index: 1;
}

.hero-note-card--home p {
  color: rgba(245, 239, 230, 0.76);
  font-size: 0.88rem;
  line-height: 2;
}

.hero-note-card--home .hero-note-label {
  margin-bottom: 10px;
  color: rgba(245, 239, 230, 0.8);
}

.hero-note-card--home .hero-note-tags {
  gap: 8px;
}

.hero-note-card--home .hero-note-tags span {
  padding: 6px 11px;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(245, 239, 230, 0.08);
  color: rgba(245, 239, 230, 0.68);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
}

body[data-scene="home"] .bg-tint {
  background:
    radial-gradient(ellipse at 18% 12%, rgba(174, 181, 239, 0.13), transparent 48%),
    radial-gradient(ellipse at 82% 82%, rgba(215, 190, 160, 0.09), transparent 44%),
    linear-gradient(180deg, rgba(9, 8, 13, 0.28), rgba(9, 8, 13, 0.76));
}

body[data-scene="about"] .bg-tint {
  background:
    radial-gradient(ellipse at 20% 18%, rgba(245, 239, 230, 0.11), transparent 36%),
    radial-gradient(ellipse at 78% 14%, rgba(174, 181, 239, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(10, 9, 15, 0.22), rgba(9, 8, 13, 0.8));
}

body[data-scene="projects"] .bg-tint {
  background:
    radial-gradient(ellipse at 22% 10%, rgba(215, 190, 160, 0.12), transparent 38%),
    radial-gradient(ellipse at 82% 76%, rgba(174, 181, 239, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(12, 10, 14, 0.2), rgba(9, 8, 13, 0.82));
}

body[data-scene="friends"] .bg-tint {
  background:
    radial-gradient(ellipse at 22% 18%, rgba(198, 165, 185, 0.1), transparent 34%),
    radial-gradient(ellipse at 80% 80%, rgba(215, 190, 160, 0.09), transparent 38%),
    linear-gradient(180deg, rgba(10, 9, 15, 0.22), rgba(9, 8, 13, 0.78));
}

body[data-scene="gallery"] .bg-tint,
body[data-scene="default"] .bg-tint {
  background:
    radial-gradient(ellipse at 18% 12%, rgba(174, 181, 239, 0.13), transparent 48%),
    radial-gradient(ellipse at 82% 82%, rgba(215, 190, 160, 0.09), transparent 44%),
    linear-gradient(180deg, rgba(9, 8, 13, 0.28), rgba(9, 8, 13, 0.76));
}

.note-panel {
  margin-top: -86px;
  z-index: 3;
}

.garden-panel {
  margin-top: 26px;
  z-index: 2;
}

.page-header {
  padding-bottom: 72px;
}

.page-header + .page-section {
  position: relative;
  z-index: 2;
}

.page-header--about + .about-profile-panel {
  margin-top: -58px;
}

.page-header--projects + .project-intro-panel {
  margin-top: -54px;
}

.page-header--friends + .friends-section {
  margin-top: -48px;
}

.project-intro-panel,
.about-profile-panel,
.friends-section {
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.2);
}

.project-featured-panel,
.project-future-panel,
.about-skill-panel,
.about-journey-panel,
.about-likes-panel,
.about-interests-panel,
.friends-apply-panel {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.14);
}

.project-featured-panel {
  margin-top: 28px;
}

.about-skill-panel,
.friends-apply-panel {
  margin-top: 28px;
}

.about-journey-panel,
.about-likes-panel,
.about-interests-panel,
.project-future-panel {
  margin-top: 34px;
}

@media (max-width: 900px) {
  .craft-grid,
  .affinity-grid {
    grid-template-columns: 1fr;
  }

  .craft-item,
  .affinity-card,
  .project-card {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    transform: none;
  }

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

  .hero-shell {
    width: min(900px, calc(100vw - 32px));
    grid-template-columns: 1fr;
    padding-left: 28px;
    padding-right: 20px;
    gap: 24px;
  }

  .hero-main {
    max-width: 580px;
  }

  .hero-note-card--home {
    width: min(100%, 460px);
    margin-bottom: 0;
    justify-self: start;
    align-self: start;
  }

  .note-panel,
  .page-header--about + .about-profile-panel,
  .page-header--projects + .project-intro-panel,
  .page-header--friends + .friends-section {
    margin-top: -28px;
  }

  .garden-item:nth-child(2n),
  .garden-item:nth-child(3n),
  .timeline-item:nth-child(2n) .timeline-content,
  .timeline-item:nth-child(3n) .timeline-content,
  .affinity-card:nth-child(2),
  .affinity-card:nth-child(3) {
    margin: 0;
    padding-left: 0;
  }

  .project-card:nth-child(even)::before {
    left: 16px;
    right: auto;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-bottom: 114px;
  }

  .hero-shell {
    width: min(100%, 640px);
    display: flex;
    align-items: center;
    text-align: center;
    padding: 28px 18px 34px;
  }

  .hero-shell::before,
  .hero-shell::after {
    display: none;
  }

  .hero-title {
    align-items: center;
  }

  .hero-main {
    align-items: center;
  }

  .hero-main::before {
    inset: -14px -16px -18px;
  }

  .hero-lead,
  .time-greeting {
    justify-content: center;
  }

  .hero-typewriter {
    width: 100%;
    max-width: 100%;
  }

  .hero-lead,
  .hero-typewriter {
    padding-left: 0;
    text-align: center;
  }

  .hero-lead::before,
  .hero-typewriter::before {
    display: none;
  }

  .hero-note-card--home {
    width: min(100%, 640px);
    padding: 24px 20px 22px 26px;
  }

  .page-header {
    padding-bottom: 44px;
  }

  .note-panel,
  .garden-panel,
  .project-intro-panel,
  .project-featured-panel,
  .project-future-panel,
  .friends-section,
  .friends-apply-panel,
  .about-profile-panel,
  .about-skill-panel,
  .about-journey-panel,
  .about-likes-panel,
  .about-interests-panel {
    padding-left: 24px;
    padding-right: 24px;
  }

  .garden-item {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .garden-item::after {
    display: none;
  }

  .about-preview-points {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .about-profile .hero-avatar {
    width: 132px;
    height: 132px;
  }

  .note-panel,
  .page-header--about + .about-profile-panel,
  .page-header--projects + .project-intro-panel,
  .page-header--friends + .friends-section {
    margin-top: -18px;
  }
}

/* ---- Page Transition Overlay ---- */
.page-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background:
    radial-gradient(circle at 24% 26%, rgba(174, 181, 239, 0.11), transparent 28%),
    radial-gradient(circle at 78% 72%, rgba(215, 190, 160, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(8, 7, 12, 0.22), rgba(8, 7, 12, 0.76));
  opacity: 0;
  pointer-events: none;
  transform: scale(1.01);
  backdrop-filter: blur(0) saturate(100%);
  transition:
    opacity 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-transition-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(245, 239, 230, 0.045) 48%, transparent 68%);
  opacity: 0;
  transform: translateX(-10%) scaleX(1.04);
  transition: opacity 0.36s ease, transform 0.44s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-transition-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(8, 7, 12, 0), rgba(8, 7, 12, 0.28) 56%, rgba(8, 7, 12, 0.56) 100%);
  opacity: 0;
  transition: opacity 0.34s ease;
}

.page-transition-overlay.active {
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
  backdrop-filter: blur(12px) saturate(116%);
}

.page-transition-overlay.active::before,
.page-transition-overlay.active::after {
  opacity: 1;
}

.page-transition-overlay.leaving::before {
  transform: translateX(8%);
}

/* ---- Custom Scrollbar ---- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(215, 190, 160, 0.2);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(215, 190, 160, 0.4);
}

/* (Firefox scrollbar rules merged into html above) */

/* ---- Scroll Down Hint ---- */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.5;
  transform: translateY(0);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-hint span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-dim);
}

.scroll-hint i {
  font-size: 0.9rem;
  color: var(--c-accent);
  animation: chevron-bob 2.5s ease-in-out infinite;
}

.scroll-hint.is-hidden {
  opacity: 0;
  transform: translateY(10px);
}

@keyframes chevron-bob {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ---- Easter Egg Toast ---- */
.easter-egg-toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 14px 28px;
  background: rgba(20, 20, 40, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--c-accent);
  border-radius: 16px;
  color: var(--c-text);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 10000;
  box-shadow: 0 0 20px rgba(215, 190, 160, 0.12);
  pointer-events: none;
}

.easter-egg-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---- Time Greeting ---- */
.time-greeting {
  font-size: 0.82rem;
  color: rgba(245, 239, 230, 0.68);
  letter-spacing: 0.12em;
  opacity: 1;
  margin-top: 4px;
}

/* ---- Footer Stats ---- */
.footer-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 14px;
  margin: 14px auto 0;
  max-width: 760px;
  font-size: 0.71rem;
  color: var(--c-dim);
  opacity: 0.72;
  flex-wrap: wrap;
  letter-spacing: 0.04em;
  line-height: 1.9;
}

.footer-stat i {
  margin-right: 4px;
  color: var(--c-accent);
  opacity: 0.7;
}

.footer-stat {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
}

.footer-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-link:hover {
  color: var(--c-text);
  opacity: 1;
}

.footer-link:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.45);
  outline-offset: 4px;
  border-radius: 999px;
}

.footer-stat-sep {
  display: none;
}

.footer-stats:hover {
  opacity: 0.85;
}

@media (max-width: 680px) {
  .footer {
    margin-top: 72px;
    padding-top: 36px;
  }

  .footer-stats {
    flex-direction: column;
    gap: 4px;
  }
  .footer-stat-sep {
    display: none;
  }
}

/* ---- Stay Timer (in footer-stats) ---- */
.stay-time {
  color: var(--c-accent);
  opacity: 0.8;
}

/* ---- Mini Music Player ---- */
.music-btn {
  position: fixed;
  left: 18px;
  bottom: 22px;
  z-index: 56;
  width: 44px;
  height: 44px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  background: var(--glass);
  backdrop-filter: blur(12px);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: url('./assets/frieren-pointer-32.png') 4 4, pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.music-btn:hover {
  background: rgba(255,255,255,0.15);
  transform: scale(1.1);
}

.music-btn.playing i {
  animation: spin-disc 8s linear infinite;
}

@keyframes spin-disc {
  to { transform: rotate(360deg); }
}

.music-btn.playing {
  box-shadow: 0 0 16px rgba(174, 181, 239, 0.2);
  border-color: rgba(174, 181, 239, 0.28);
}

.music-panel {
  position: fixed;
  left: 18px;
  bottom: 76px;
  z-index: 56;
  width: 260px;
  padding: 18px 16px 14px;
  background: rgba(18, 17, 25, 0.84);
  backdrop-filter: blur(14px) saturate(110%);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.95);
  transition: opacity 0.35s ease, visibility 0.35s, transform 0.35s ease;
  pointer-events: none;
}

.music-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.music-track-name {
  font-size: 0.78rem;
  color: var(--c-text);
  text-align: center;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.03em;
}

.music-status {
  font-size: 0.62rem;
  color: var(--c-accent);
  text-align: center;
  min-height: 1.2em;
  margin: -4px 0 10px;
  letter-spacing: 0.04em;
  opacity: 0.82;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.music-status.is-dim {
  color: var(--c-dim);
  opacity: 0.7;
}

.music-time-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.music-time-cur,
.music-time-dur {
  font-size: 0.62rem;
  color: var(--c-dim);
  opacity: 0.7;
  min-width: 28px;
  font-variant-numeric: tabular-nums;
}

.music-time-dur { text-align: right; }

.music-track-idx {
  text-align: center;
  font-size: 0.6rem;
  color: var(--c-dim);
  opacity: 0.45;
  margin-top: 8px;
  letter-spacing: 0.08em;
}

.music-track-name--toggle {
  cursor: url('../assets/frieren-pointer-32.png') 4 4, pointer;
  transition: color 0.2s ease;
}

.music-track-name--toggle:hover {
  color: var(--c-accent);
}

.music-playlist-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 10px;
  padding: 6px 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--c-dim);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  cursor: url('../assets/frieren-pointer-32.png') 4 4, pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.music-playlist-toggle:hover,
.music-playlist-toggle.is-open {
  color: var(--c-text);
  background: rgba(174, 181, 239, 0.08);
  border-color: rgba(174, 181, 239, 0.18);
}

.music-playlist-toggle i {
  font-size: 0.55rem;
  opacity: 0.7;
}

.music-playlist {
  list-style: none;
  margin: 8px 0 0;
  padding: 4px;
  width: 100%;
  max-height: 168px;
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 12px;
  background: rgba(8, 8, 14, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  scrollbar-width: thin;
  scrollbar-color: rgba(174, 181, 239, 0.35) transparent;
  flex: none;
  display: block;
  box-sizing: border-box;
}

.music-playlist li {
  display: block;
  width: 100%;
  min-width: 0;
}

.music-playlist li + li {
  margin-top: 2px;
}

.music-playlist-item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
  padding: 7px 8px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--c-dim);
  text-align: left;
  cursor: url('../assets/frieren-pointer-32.png') 4 4, pointer;
  transition: background 0.2s ease, color 0.2s ease;
  box-sizing: border-box;
}

.music-playlist-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--c-text);
}

.music-playlist-item.is-active {
  background: rgba(174, 181, 239, 0.14);
  color: var(--c-accent);
}

.music-playlist-num {
  flex: 0 0 auto;
  width: 1.6em;
  font-size: 0.58rem;
  opacity: 0.55;
  font-variant-numeric: tabular-nums;
}

.music-playlist-title {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.music-panel.playlist-open {
  width: min(320px, calc(100vw - 24px));
}

.music-progress-wrap {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.music-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--c-accent), var(--c-pink));
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s linear;
}

.music-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.music-controls button {
  background: none;
  border: none;
  color: var(--c-dim);
  font-size: 0.85rem;
  cursor: url('./assets/frieren-pointer-32.png') 4 4, pointer;
  transition: color 0.2s ease, transform 0.2s ease;
  padding: 4px;
}

.music-controls button:hover {
  color: #fff;
  transform: scale(1.15);
}

.music-controls .music-play-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(174, 181, 239, 0.14);
  border: 1px solid rgba(174, 181, 239, 0.26);
  color: var(--c-accent);
  font-size: 0.9rem;
  display: grid;
  place-items: center;
}

.music-controls .music-play-btn:hover {
  background: rgba(174, 181, 239, 0.22);
}

.music-volume-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
}

.music-volume-wrap i {
  font-size: 0.7rem;
  color: var(--c-dim);
}

.music-volume {
  -webkit-appearance: none;
  appearance: none;
  width: 80px;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.music-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-accent);
  cursor: pointer;
}

.music-volume::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-accent);
  border: none;
  cursor: pointer;
}

/* ---- Likes Grid (About page) ---- */
.likes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.like-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 18px 10px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(174,181,239,0.02)),
    rgba(20, 18, 28, 0.72);
  border: 1px solid rgba(245,239,230,0.08);
  transition: all 0.3s ease;
}

.like-card:hover {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(174,181,239,0.03)),
    rgba(24, 22, 33, 0.82);
  border-color: rgba(215, 190, 160, 0.16);
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}

.like-card .like-emoji {
  font-size: 1.6rem;
}

.like-card span {
  font-size: 0.78rem;
  color: rgba(245, 239, 230, 0.76);
  text-align: center;
  line-height: 1.65;
}

@media (max-width: 680px) {
  .music-panel { width: 220px; left: 12px; }
  .project-intro-shell { grid-template-columns: 1fr; }
  .project-card-head { flex-direction: column; }
  .project-date { align-self: flex-start; }
  .likes-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-typewriter {
    white-space: normal;
    border-right: none;
    padding-right: 0;
    max-width: 18em;
    min-height: 3.2em;
    animation: none;
  }
  .hero-title { align-items: center; }
  .hero-social { justify-content: center; }
  .hero-social a { width: 44px; height: 44px; }
  .about-preview-points { gap: 8px; }
  .about-tags { justify-content: center; }
}

/* ---- Time-aware body tints ---- */
body[data-time="dawn"] { background: linear-gradient(180deg, #0f0e1a 0%, #1a120e 100%); }
body[data-time="dusk"] { background: linear-gradient(180deg, #110a18 0%, #0d0515 100%); }
body[data-time="afternoon"] { background: linear-gradient(180deg, #12100e 0%, #0f0d0a 100%); }

/* ---- Hamburger Button ---- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 2;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-text);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- Mobile ---- */
@media (max-width: 680px) {
  .nav-hamburger { display: flex; }

  .nav { padding: 10px 16px; flex-wrap: wrap; border-radius: 20px; }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 4px;
    padding-top: 10px;
    order: 3;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    font-size: 0.85rem;
    padding: 10px 12px;
    border-radius: 12px;
    transition: background 0.2s ease;
    white-space: nowrap;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255,255,255,0.06);
  }
  .hero-avatar { width: 100px; height: 100px; }
  .glass-panel { margin: 40px 16px; padding: 28px 20px; }
  .gallery { padding: 0 12px; }
  .gallery-grid { columns: 2 140px; }
  .hero-shell {
    width: min(100%, 640px);
    display: flex;
    align-items: center;
    text-align: center;
    padding: 28px 18px 34px;
  }
  .hero-shell::before,
  .hero-shell::after { display: none; }
  .hero-main { align-items: center; }
  .hero-main::before { inset: -14px -16px -18px; }
  .hero-note-card { width: min(100%, 640px); margin: 0 auto; }
  .hero-lead,
  .hero-typewriter { padding-left: 0; text-align: center; }
  .hero-lead::before,
  .hero-typewriter::before { display: none; }
  .about-profile { flex-direction: column; text-align: center; }
  .about-intro { align-items: center; text-align: center; }
  .apply-info { grid-template-columns: 1fr; }
  .friend-cards { grid-template-columns: 1fr; }
  .page-header { min-height: 35vh; }
  .page-header-shell { padding: 24px 20px 26px; }
  .page-header-shell { text-align: center; }
  .page-header-shell .page-title { align-items: center; }
  .page-subtitle { margin: 0 auto; }
  .section-heading-group--left { align-items: center; text-align: center; }
  .page-header-shell::before,
  .hero-note-card::before { display: none; }
  .hero-note-card { padding-left: 26px; }
}

/* Touch devices: hide custom cursor trail */
@media (hover: none), (pointer: coarse) {
  .custom-cursor { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  /* 只关掉大规模的背景动画，保留文字等关键过渡 */
  #particleCanvas,
  #starfield,
  .bg-img,
  .page-transition-overlay {
    animation: none !important;
    transition: none !important;
  }
}

/* ---- Projects Archive Reflow ---- */
.project-intro-panel {
  max-width: 920px;
  padding: 44px 42px 40px;
}

.project-intro-panel .project-intro-copy {
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-intro-panel .project-intro-copy p {
  position: relative;
  padding-left: 18px;
  color: rgba(245, 239, 230, 0.76);
}

.project-intro-panel .project-intro-copy p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.96em;
  width: 10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 190, 160, 0.9), rgba(215, 190, 160, 0.08));
}

.project-featured-panel--archive {
  max-width: 980px;
  padding: 44px 42px 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.01)),
    rgba(11, 10, 16, 0.34);
  border-color: rgba(245, 239, 230, 0.08);
}

.project-featured-panel--archive::after {
  content: "";
  position: absolute;
  right: -90px;
  top: -72px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 190, 160, 0.08), transparent 72%);
  pointer-events: none;
}

.project-archive {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}

.project-archive::before {
  content: "";
  position: absolute;
  left: 88px;
  top: 12px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(245, 239, 230, 0.2), rgba(174, 181, 239, 0.14), rgba(245, 239, 230, 0.04));
}

.project-entry {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 20px;
  padding: 4px 0 16px;
}

.project-entry:last-child {
  padding-bottom: 0;
}

.project-entry-axis {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 10px;
  text-align: left;
}

.project-entry-axis::after {
  content: "";
  position: absolute;
  left: 84px;
  top: 14px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(215, 190, 160, 0.92);
  box-shadow: 0 0 0 5px rgba(215, 190, 160, 0.08);
}

.project-entry-index {
  color: rgba(245, 239, 230, 0.34);
  font-family: var(--font-en-display);
  font-size: 1rem;
  letter-spacing: 0.14em;
}

.project-entry-date {
  color: rgba(245, 239, 230, 0.52);
  font-family: var(--font-note);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.project-entry-body {
  position: relative;
  padding: 22px 24px 20px 26px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014) 62%),
    rgba(15, 14, 20, 0.36);
  border: 1px solid rgba(245, 239, 230, 0.08);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
}

.project-entry-body::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 28px;
  width: 16px;
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 190, 160, 0.55), rgba(215, 190, 160, 0.08));
}

.project-entry:nth-child(odd) .project-entry-body {
  margin-right: 46px;
}

.project-entry:nth-child(even) .project-entry-body {
  margin-left: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.042), rgba(174, 181, 239, 0.022) 62%),
    rgba(14, 13, 19, 0.34);
}

.project-entry:nth-child(even) .project-entry-axis::after {
  background: rgba(174, 181, 239, 0.88);
  box-shadow: 0 0 0 5px rgba(174, 181, 239, 0.08);
}

.project-entry-meta {
  margin-bottom: 10px;
}

.project-entry-category {
  color: rgba(215, 190, 160, 0.84);
  font-family: var(--font-en-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.project-entry-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.project-entry-title-wrap h3 {
  font-size: 1.34rem;
  letter-spacing: 0.04em;
}

.project-entry .project-name-alt {
  margin-top: 6px;
  color: rgba(245, 239, 230, 0.54);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.project-entry .project-summary {
  max-width: 42rem;
  margin-top: 14px;
  color: rgba(245, 239, 230, 0.76);
  line-height: 1.96;
}

.project-stack-list--entry {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 16px;
}

.project-stack-list--entry li {
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(245, 239, 230, 0.08);
  color: rgba(245, 239, 230, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.project-entry .project-links {
  padding-top: 0;
  margin-top: 16px;
}

.project-entry .project-links a {
  background: transparent;
  border-color: rgba(174, 181, 239, 0.16);
  color: rgba(245, 239, 230, 0.82);
}

.project-entry .project-links a:hover {
  background: rgba(174, 181, 239, 0.07);
  transform: translateX(4px);
}

.project-future-panel--quiet {
  max-width: 780px;
  padding: 36px 34px 32px;
}

.project-future-note {
  max-width: 34rem;
}

.project-future-note p {
  color: rgba(245, 239, 230, 0.72);
  line-height: 1.94;
}

.project-future-note .section-more {
  margin-top: 14px;
}

@media (max-width: 900px) {
  .project-archive::before {
    left: 74px;
  }

  .project-entry {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
  }

  .project-entry-axis::after {
    left: 70px;
  }

  .project-entry:nth-child(odd) .project-entry-body,
  .project-entry:nth-child(even) .project-entry-body {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 640px) {
  .project-intro-panel,
  .project-featured-panel--archive,
  .project-future-panel--quiet {
    padding-left: 24px;
    padding-right: 24px;
  }

  .project-archive::before,
  .project-entry-axis::after,
  .project-entry-body::before {
    display: none;
  }

  .project-entry {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-bottom: 18px;
  }

  .project-entry-axis {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding-top: 0;
  }

  .project-entry-body {
    padding: 18px 18px 16px;
    border-radius: 20px;
  }

  .project-entry-title-wrap h3 {
    font-size: 1.18rem;
  }

  .project-entry .project-summary {
    margin-top: 12px;
  }
}

/* ---- Friends Quiet Reflow ---- */
.friends-section--quiet {
  max-width: 940px;
  padding: 44px 42px 40px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.038), rgba(198, 165, 185, 0.02) 58%),
    rgba(13, 12, 18, 0.4);
  border-color: rgba(245, 239, 230, 0.08);
}

.friends-quiet-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 300px);
  gap: 32px;
  align-items: center;
}

.friends-quiet-copy {
  max-width: 35rem;
}

.friends-quiet-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 239, 230, 0.56);
  font-family: var(--font-en-display);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.friends-quiet-kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 190, 160, 0.88), rgba(215, 190, 160, 0.08));
}

.friends-section--quiet .friends-empty-title {
  margin-top: 18px;
  font-size: clamp(2.2rem, 4.8vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.friends-section--quiet .friends-empty-copy {
  max-width: 33rem;
  margin-top: 14px;
  color: rgba(245, 239, 230, 0.76);
  line-height: 2;
}

.friends-empty-echo {
  max-width: 28rem;
  margin-top: 16px;
  padding-left: 18px;
  color: rgba(245, 239, 230, 0.6);
  font-size: 0.84rem;
  line-height: 1.92;
  position: relative;
}

.friends-empty-echo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.92em;
  width: 10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(198, 165, 185, 0.9), rgba(198, 165, 185, 0.08));
}

.friends-reserved-card {
  position: relative;
  padding: 26px 24px 22px 30px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(16, 15, 22, 0.5);
  border: 1px solid rgba(245, 239, 230, 0.08);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
}

.friends-reserved-card::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(198, 165, 185, 0.6), rgba(215, 190, 160, 0.12), transparent);
}

.friends-reserved-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -42px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 165, 185, 0.16), transparent 72%);
  pointer-events: none;
}

.friends-reserved-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(245, 239, 230, 0.78);
  font-family: var(--font-zh-display);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
}

.friends-reserved-lines {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.friends-reserved-lines span {
  position: relative;
  padding-left: 14px;
  color: rgba(245, 239, 230, 0.68);
  font-size: 0.82rem;
  line-height: 1.8;
}

.friends-reserved-lines span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 8px;
  height: 1px;
  background: linear-gradient(90deg, rgba(174, 181, 239, 0.9), rgba(174, 181, 239, 0.08));
}

.friends-manifest-panel {
  max-width: 920px;
  padding: 40px 38px 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    rgba(12, 11, 17, 0.36);
  border-color: rgba(245, 239, 230, 0.08);
}

.friends-manifest-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
}

.friends-manifest-quote {
  max-width: 35rem;
  margin: -6px 0 18px;
  color: rgba(245, 239, 230, 0.6);
  font-size: 0.84rem;
  line-height: 1.92;
}

.friends-site-card,
.friends-principle-card {
  position: relative;
  min-height: 100%;
  padding: 22px 22px 20px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(17, 16, 24, 0.44);
  border: 1px solid rgba(245, 239, 230, 0.08);
}

.friends-site-label {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(215, 190, 160, 0.84);
  font-family: var(--font-en-display);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
}

.friends-site-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.friends-site-meta div {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(245, 239, 230, 0.08);
}

.friends-site-meta div:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.friends-site-meta dt {
  margin-bottom: 6px;
  color: rgba(245, 239, 230, 0.5);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.friends-site-meta dd {
  color: rgba(245, 239, 230, 0.86);
  line-height: 1.8;
}

.friends-principle-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.friends-principle-list li {
  position: relative;
  padding-left: 16px;
  color: rgba(245, 239, 230, 0.76);
  line-height: 1.9;
}

.friends-principle-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.96em;
  width: 8px;
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 190, 160, 0.92), rgba(215, 190, 160, 0.08));
}

.friends-principle-note {
  margin-top: 16px;
  color: rgba(245, 239, 230, 0.58);
  line-height: 1.9;
}

.friends-principle-card .section-more {
  margin-top: 12px;
}

.friends-closing-note {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(245, 239, 230, 0.08);
  color: rgba(245, 239, 230, 0.56);
  font-size: 0.8rem;
  line-height: 1.88;
}

@media (max-width: 900px) {
  .friends-quiet-shell,
  .friends-manifest-grid {
    grid-template-columns: 1fr;
  }

  .friends-reserved-card {
    max-width: 420px;
  }

  .friends-closing-note {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 640px) {
  .friends-section--quiet,
  .friends-manifest-panel {
    padding-left: 24px;
    padding-right: 24px;
  }

  .friends-section--quiet .friends-empty-title {
    font-size: clamp(1.9rem, 8.5vw, 2.6rem);
  }

  .friends-reserved-card {
    padding: 22px 18px 18px 24px;
  }

  .friends-empty-echo {
    max-width: 100%;
    padding-left: 0;
    text-align: left;
  }

  .friends-empty-echo::before {
    display: none;
  }
}

/* ---- Mobile Polish ---- */
@media (max-width: 640px) {
  .nav {
    padding: 8px 14px;
    border-radius: 18px;
  }

  .nav-brand {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
  }

  .hero {
    min-height: 100svh;
    padding-top: 86px;
    padding-bottom: 78px;
    gap: 18px;
  }

  .hero-shell {
    gap: 18px;
    padding: 20px 16px 24px;
  }

  .hero-main::before {
    inset: -8px -10px -10px;
    background:
      linear-gradient(135deg, rgba(11, 10, 16, 0.28), rgba(11, 10, 16, 0.08) 54%, rgba(11, 10, 16, 0) 82%),
      radial-gradient(circle at 22% 24%, rgba(174, 181, 239, 0.08), transparent 38%);
  }

  .hero-shell .hero-avatar {
    width: 88px;
    height: 88px;
  }

  .hero-title-zh {
    font-size: clamp(2.7rem, 13vw, 3.5rem);
  }

  .hero-title-en {
    font-size: 1.04rem;
    letter-spacing: 0.18em;
  }

  .hero-lead {
    max-width: 19rem;
    font-size: 0.84rem;
    line-height: 1.82;
  }

  .time-greeting {
    margin-top: 4px;
    gap: 8px;
    font-size: 0.74rem;
  }

  .time-greeting::before {
    width: 12px;
  }

  .hero-typewriter {
    max-width: 19rem;
    min-height: auto;
    font-size: 0.78rem;
    line-height: 1.8;
  }

  .hero-note-card--home {
    padding: 18px 16px 16px 20px;
    border-radius: 18px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008)),
      rgba(12, 11, 18, 0.42);
  }

  .hero-note-card--home p {
    font-size: 0.8rem;
    line-height: 1.82;
  }

  .hero-note-card--home .hero-note-tags {
    gap: 6px;
  }

  .hero-note-card--home .hero-note-tags span {
    padding: 5px 9px;
    font-size: 0.68rem;
  }

  .scroll-hint {
    bottom: 14px;
    gap: 4px;
  }

  .page-header {
    min-height: 31vh;
    padding-top: 84px;
    padding-bottom: 18px;
  }

  .page-header-shell {
    padding: 18px 18px 20px 20px;
    border-radius: 22px;
  }

  .page-header-shell::before {
    left: 14px;
    top: 18px;
    bottom: 18px;
  }

  .page-header-shell .section-kicker {
    margin-bottom: 8px;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .page-title {
    gap: 6px;
  }

  .page-title-en {
    font-size: 0.94rem;
    letter-spacing: 0.14em;
  }

  .page-title-zh,
  .page-header--about .page-title-zh,
  .page-header--friends .page-title-zh,
  .page-header--projects .page-title-zh {
    font-size: clamp(2.14rem, 11vw, 3rem);
  }

  .page-subtitle {
    margin-top: 8px;
    font-size: 0.84rem;
    line-height: 1.8;
  }

  .section-heading {
    font-size: clamp(1.18rem, 5.2vw, 1.48rem);
  }

  .section-lead {
    font-size: 0.82rem;
    line-height: 1.78;
  }

  .note-panel,
  .garden-panel,
  .project-intro-panel,
  .project-featured-panel,
  .project-future-panel,
  .friends-section,
  .friends-apply-panel,
  .friends-manifest-panel,
  .about-profile-panel,
  .about-skill-panel,
  .about-journey-panel,
  .about-likes-panel,
  .about-interests-panel {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .about-profile .hero-avatar {
    width: 112px;
    height: 112px;
  }

  .about-intro h2 {
    font-size: 1.3rem;
  }

  .about-intro p,
  .about-intro-lead,
  .about-intro-echo,
  .timeline-content p {
    font-size: 0.8rem;
    line-height: 1.8;
  }

  .timeline-content {
    padding: 16px 16px 14px;
  }

  .project-intro-panel .project-intro-copy p {
    padding-left: 0;
  }

  .project-intro-panel .project-intro-copy p::before {
    display: none;
  }

  .project-entry-body {
    padding: 16px 16px 14px;
  }

  .project-entry .project-summary {
    font-size: 0.8rem;
    line-height: 1.84;
  }

  .project-stack-list--entry li {
    font-size: 0.68rem;
  }

  .friends-quiet-shell,
  .friends-manifest-grid {
    gap: 14px;
  }

  .friends-site-card,
  .friends-principle-card {
    padding: 18px 16px 16px;
  }

  .friends-site-meta dd,
  .friends-principle-list li,
  .friends-principle-note,
  .friends-reserved-lines span {
    font-size: 0.8rem;
    line-height: 1.8;
  }

  .footer {
    margin-top: 52px;
    padding: 24px 14px 22px;
  }

  .footer > p:first-of-type {
    font-size: 0.74rem;
    letter-spacing: 0.06em;
  }

  .footer-stats {
    font-size: 0.66rem;
    line-height: 1.7;
    gap: 2px;
  }
}

/* ---- Tail Pages Reflow ---- */
.page-header--gallery,
.page-header--privacy {
  padding-bottom: 62px;
}

.gallery-note-panel {
  max-width: 860px;
  margin-top: -46px;
  padding: 34px 34px 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.038), rgba(174, 181, 239, 0.018) 58%),
    rgba(14, 13, 20, 0.42);
  border-color: rgba(245, 239, 230, 0.08);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.16);
}

.gallery-note-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 24px;
  align-items: start;
}

.gallery-note-copy {
  display: grid;
  gap: 12px;
}

.gallery-note-echo {
  max-width: 34rem;
  padding-left: 18px;
  color: rgba(245, 239, 230, 0.6);
  font-size: 0.84rem;
  line-height: 1.94;
  position: relative;
}

.gallery-note-echo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.92em;
  width: 10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(174, 181, 239, 0.9), rgba(174, 181, 239, 0.08));
}

.gallery-ritual-card {
  position: relative;
  padding: 22px 18px 18px 24px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    rgba(12, 11, 18, 0.34);
  border: 1px solid rgba(245, 239, 230, 0.08);
}

.gallery-ritual-card::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.72), rgba(174, 181, 239, 0.16), transparent);
}

.gallery-ritual-label {
  display: inline-block;
  margin-bottom: 10px;
  padding-left: 10px;
  color: rgba(245, 239, 230, 0.78);
  font-family: var(--font-en-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-ritual-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 0 0 10px;
}

.gallery-ritual-list li {
  color: rgba(245, 239, 230, 0.66);
  font-size: 0.82rem;
  line-height: 1.88;
}

.gallery-note-panel::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -54px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 181, 239, 0.12), transparent 72%);
  pointer-events: none;
}

.gallery {
  margin-top: 24px;
}

.gallery-coda {
  max-width: 38rem;
  margin: 20px auto 0;
  color: rgba(245, 239, 230, 0.58);
  font-size: 0.82rem;
  line-height: 1.9;
  text-align: center;
}

.gallery-grid {
  columns: 4 220px;
  column-gap: 18px;
}

.gallery-item {
  margin-bottom: 18px;
  border-radius: 18px;
  border: 1px solid rgba(245, 239, 230, 0.08);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.gallery-item::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(9, 8, 13, 0), rgba(9, 8, 13, 0.28));
  opacity: 0.72;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
  opacity: 0.9;
}

.privacy-panel {
  max-width: 840px;
  padding: 34px 32px 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.012)),
    rgba(13, 12, 18, 0.42);
  border-color: rgba(245, 239, 230, 0.08);
}

.privacy-panel--intro {
  margin-top: -46px;
}

.privacy-panel--contact {
  max-width: 780px;
}

.privacy-text {
  max-width: 42rem;
}

.privacy-text p {
  color: rgba(245, 239, 230, 0.76);
  line-height: 2;
}

.privacy-text strong {
  color: rgba(245, 239, 230, 0.88);
}

.privacy-text a {
  color: var(--c-accent);
  text-decoration: none;
}

.privacy-text a:hover {
  color: var(--c-text);
}

@media (max-width: 900px) {
  .gallery-note-layout {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    columns: 3 180px;
  }
}

@media (max-width: 640px) {
  .page-header--gallery,
  .page-header--privacy {
    padding-bottom: 40px;
  }

  .gallery-note-panel,
  .privacy-panel {
    margin-top: -18px;
    padding: 24px 22px 22px;
  }

  .gallery-note-echo {
    max-width: 100%;
    padding-left: 0;
  }

  .gallery-note-echo::before {
    display: none;
  }

  .gallery {
    margin-top: 16px;
    padding: 0 14px;
  }

  .gallery-grid {
    columns: 2 150px;
    column-gap: 12px;
  }

  .gallery-item {
    margin-bottom: 12px;
    border-radius: 14px;
  }

  .gallery-coda {
    font-size: 0.78rem;
    line-height: 1.82;
  }

  .privacy-text p {
    font-size: 0.82rem;
    line-height: 1.82;
  }
}

/* ---- Global Rhythm Polish ---- */
.page-header-shell {
  width: min(860px, calc(100vw - 32px));
  padding: 32px 34px 34px 40px;
}

.page-subtitle {
  margin-top: 10px;
  max-width: 31rem;
  color: rgba(245, 239, 230, 0.68);
  line-height: 1.95;
}

.section-heading-group--left {
  gap: 10px;
}

.section-lead {
  max-width: 34rem;
  color: rgba(245, 239, 230, 0.62);
}

.footer {
  width: min(860px, calc(100vw - 32px));
  margin: 74px auto 0;
  padding: 36px 18px 28px;
}

.footer::before {
  left: 24%;
  right: 24%;
  background: linear-gradient(90deg, transparent, rgba(245, 239, 230, 0.18), transparent);
}

.footer > p:first-of-type {
  color: rgba(245, 239, 230, 0.72);
}

.footer-stats {
  max-width: 720px;
  margin-top: 12px;
}

@media (max-width: 640px) {
  .page-header-shell {
    padding: 24px 20px 26px;
  }

  .page-subtitle,
  .section-lead {
    max-width: 100%;
  }

  .footer {
    margin-top: 62px;
    padding-top: 30px;
  }
}

/* ---- Home & About Reflow ---- */
.hero-monologue {
  max-width: 34rem;
  margin-top: -2px;
  color: rgba(245, 239, 230, 0.78);
  font-family: var(--font-zh-spirit);
  font-size: 1.08rem;
  line-height: 1.8;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

.hero-archive {
  display: grid;
  gap: 10px;
  width: min(100%, 33rem);
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid rgba(245, 239, 230, 0.08);
  position: relative;
  z-index: 1;
}

.hero-archive-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.hero-archive-label {
  color: rgba(245, 239, 230, 0.54);
  font-family: var(--font-en-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-archive-item p {
  color: rgba(245, 239, 230, 0.64);
  font-size: 0.84rem;
  line-height: 1.9;
}

.hero-note-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.hero-note-list li {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(245, 239, 230, 0.06);
}

.hero-note-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.hero-note-list strong {
  color: rgba(245, 239, 230, 0.84);
  font-family: var(--font-zh-display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.hero-note-list span {
  color: rgba(245, 239, 230, 0.66);
  font-size: 0.82rem;
  line-height: 1.88;
}

.hero-note-tail {
  margin-top: 14px;
  color: rgba(245, 239, 230, 0.54);
  font-size: 0.76rem;
  line-height: 1.9;
  letter-spacing: 0.05em;
}

.about-preview-shell {
  display: grid;
  gap: 14px;
}

.about-preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
  gap: 26px;
  align-items: start;
}

.about-preview-marginalia {
  max-width: 30rem;
  padding-left: 18px;
  color: rgba(245, 239, 230, 0.58);
  font-size: 0.82rem;
  line-height: 1.92;
  position: relative;
}

.about-preview-marginalia::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(174, 181, 239, 0.92), rgba(174, 181, 239, 0.08));
}

.about-preview-side {
  position: relative;
  padding: 18px 18px 18px 22px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.01)),
    rgba(13, 12, 18, 0.36);
  border: 1px solid rgba(245, 239, 230, 0.08);
}

.about-preview-side::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.72), rgba(174, 181, 239, 0.16), transparent);
}

.about-preview-side-label {
  display: inline-block;
  margin-bottom: 8px;
  padding-left: 8px;
  color: rgba(245, 239, 230, 0.74);
  font-family: var(--font-en-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-preview-side p {
  padding-left: 8px;
  color: rgba(245, 239, 230, 0.64);
  font-size: 0.82rem;
  line-height: 1.92;
}

.page-header-echo {
  max-width: 34rem;
  margin-top: 12px;
  padding-left: 18px;
  color: rgba(245, 239, 230, 0.6);
  font-size: 0.84rem;
  line-height: 1.95;
  position: relative;
}

.page-header-echo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.92em;
  width: 10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 190, 160, 0.9), rgba(215, 190, 160, 0.08));
}

.about-profile {
  grid-template-columns: minmax(140px, 180px) minmax(0, 1fr) minmax(220px, 260px);
  gap: 34px;
}

.about-profile-note {
  position: relative;
  align-self: stretch;
  padding: 22px 20px 20px 24px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    rgba(12, 11, 18, 0.42);
  border: 1px solid rgba(245, 239, 230, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.about-profile-note::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.72), rgba(174, 181, 239, 0.16), transparent);
}

.about-profile-note-label {
  position: relative;
  display: inline-block;
  margin-bottom: 10px;
  padding-left: 10px;
  color: rgba(245, 239, 230, 0.76);
  font-family: var(--font-en-display);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-profile-note p,
.about-profile-note-list {
  position: relative;
  padding-left: 10px;
}

.about-profile-note p {
  color: rgba(245, 239, 230, 0.72);
  font-size: 0.84rem;
  line-height: 1.94;
}

.about-profile-note-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
}

.about-profile-note-list li {
  color: rgba(245, 239, 230, 0.6);
  font-size: 0.78rem;
  line-height: 1.88;
}

.about-journey-panel .section-heading-group {
  margin-bottom: 28px;
}

.journey-coda {
  max-width: 38rem;
  margin: 24px auto 0;
  color: rgba(245, 239, 230, 0.62);
  font-size: 0.84rem;
  line-height: 1.94;
  text-align: center;
}

.affinity-quote {
  max-width: 36rem;
  margin: -6px 0 18px;
  color: rgba(245, 239, 230, 0.6);
  font-size: 0.84rem;
  line-height: 1.92;
}

.about-closing {
  max-width: 46rem;
}

.about-closing-signature {
  margin-top: 12px;
  color: rgba(245, 239, 230, 0.58);
  font-size: 0.82rem;
  line-height: 1.88;
  text-align: center;
}

.garden-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 280px);
  gap: 26px;
  align-items: start;
}

.garden-aside {
  position: relative;
  padding: 22px 18px 18px 24px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    rgba(12, 11, 18, 0.38);
  border: 1px solid rgba(245, 239, 230, 0.08);
}

.garden-aside::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.7), rgba(174, 181, 239, 0.16), transparent);
}

.garden-aside-label {
  display: inline-block;
  margin-bottom: 10px;
  padding-left: 10px;
  color: rgba(245, 239, 230, 0.76);
  font-family: var(--font-en-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.garden-aside p {
  padding-left: 10px;
  color: rgba(245, 239, 230, 0.64);
  font-size: 0.82rem;
  line-height: 1.92;
}

.garden-aside p + p {
  margin-top: 10px;
}

/* ---- 20260318p Home Lower Flow ---- */
/* 说明：
   - 这一段仍然提供首页下半部的结构性基础规则
   - 不要直接整段删除；`route / foot / nth-child offsets / mobile dividers` 仍在使用
   - 当前首页最终效果依赖后续 20260318g / 20260318r 继续覆盖 */
.home-threshold-scene::before {
  display: none;
}

.home-threshold-scene,
.home-garden-scene {
  width: min(1020px, calc(100vw - 40px));
}

.home-threshold-scene {
  margin-top: -4px;
  padding-top: 42px;
  gap: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 250px);
}

.home-threshold-main,
.home-garden-main {
  padding-left: 20px;
}

.home-threshold-main {
  max-width: 42rem;
}

.home-threshold-main::before {
  top: 10px;
  bottom: 10px;
  background: linear-gradient(180deg, rgba(174, 181, 239, 0.78), rgba(215, 190, 160, 0.18), transparent);
}

.home-threshold-main::after {
  content: "";
  position: absolute;
  inset: -22px -26px -16px -20px;
  border-radius: 44px;
  background:
    radial-gradient(ellipse at 18% 24%, rgba(10, 9, 15, 0.66) 0%, rgba(10, 9, 15, 0.32) 28%, rgba(10, 9, 15, 0.1) 56%, rgba(10, 9, 15, 0) 82%);
  pointer-events: none;
  filter: blur(10px);
  opacity: 0.96;
}

.home-threshold-main > * {
  position: relative;
  z-index: 1;
}

.home-threshold-scene .section-heading-group {
  margin-bottom: 18px;
}

.home-threshold-story {
  display: grid;
  gap: 12px;
}

.home-threshold-lead {
  max-width: 38rem;
  font-size: 1rem;
  line-height: 2.05;
}

.home-threshold-echo {
  max-width: 30rem;
  margin-top: 0;
  color: rgba(245, 239, 230, 0.62);
}

.home-threshold-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px 28px;
  margin-top: 22px;
}

.home-threshold-points {
  gap: 10px 18px;
  margin-top: 0;
}

.home-threshold-points span {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
}

.home-threshold-main .section-more {
  margin-top: 0;
  white-space: nowrap;
}

.home-threshold-side {
  align-self: center;
  max-width: 14rem;
  padding-top: 18px;
}

.home-threshold-side::before {
  top: 18px;
  bottom: 16px;
}

.home-threshold-side-label {
  font-family: var(--font-zh-display);
  letter-spacing: 0.1em;
}

.home-garden-scene {
  margin-top: 88px;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 250px);
}

.home-garden-main {
  max-width: 44rem;
}

.home-garden-main::before {
  top: 10px;
  bottom: 12px;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.78), rgba(198, 165, 185, 0.18), transparent);
}

.home-garden-route {
  position: relative;
  margin-top: 20px;
  padding-left: 26px;
}

.home-garden-route::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.72), rgba(174, 181, 239, 0.18), transparent);
}

.home-garden-route::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 239, 230, 0.28), rgba(245, 239, 230, 0.02));
}

.home-garden-scene .garden-list {
  gap: 10px;
}

.home-garden-scene .garden-item {
  position: relative;
  grid-template-columns: 52px minmax(0, 1fr) 18px;
  gap: 16px;
  width: min(100%, 37rem);
  padding: 16px 18px 16px 18px;
  border-bottom: none;
  border-radius: 0 20px 20px 0;
  background:
    linear-gradient(90deg, rgba(10, 9, 15, 0.34), rgba(10, 9, 15, 0.12) 58%, rgba(10, 9, 15, 0) 100%);
}

.home-garden-scene .garden-item::before {
  content: "";
  position: absolute;
  left: -21px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: rgba(215, 190, 160, 0.92);
  box-shadow: 0 0 0 6px rgba(215, 190, 160, 0.06);
}

.home-garden-scene .garden-item::after {
  color: rgba(245, 239, 230, 0.36);
  transform: translateX(-4px);
}

.home-garden-scene .garden-item:nth-child(2n) {
  margin-left: 28px;
  padding-left: 18px;
}

.home-garden-scene .garden-item:nth-child(3n) {
  margin-left: 54px;
  padding-left: 18px;
}

.home-garden-scene .garden-item:hover {
  transform: translateX(8px);
}

.home-garden-scene .garden-copy {
  gap: 6px;
}

.home-garden-scene .garden-copy strong {
  font-size: 1.02rem;
}

.home-garden-scene .garden-copy small {
  max-width: 26rem;
  line-height: 1.86;
}

.garden-aside {
  align-self: end;
  max-width: 15rem;
  padding-top: 22px;
}

.garden-aside::before {
  top: 22px;
  bottom: 18px;
}

.garden-aside-label {
  font-family: var(--font-zh-display);
  letter-spacing: 0.1em;
}

@media (max-width: 900px) {
  .home-threshold-scene,
  .home-garden-scene {
    width: min(100%, calc(100vw - 32px));
    gap: 26px;
  }

  .home-threshold-main::after {
    inset: -22px -20px -18px -18px;
  }

  .home-threshold-side,
  .garden-aside {
    max-width: 30rem;
  }

  .home-garden-route {
    padding-left: 22px;
  }

  .home-garden-scene .garden-item,
  .home-garden-scene .garden-item:nth-child(2n),
  .home-garden-scene .garden-item:nth-child(3n) {
    width: 100%;
    margin-left: 0;
    padding-left: 18px;
  }
}

@media (max-width: 640px) {
  .home-threshold-scene {
    margin-top: 0;
    padding-top: 34px;
  }

  .home-threshold-main,
  .home-garden-main,
  .home-threshold-side,
  .garden-aside {
    padding-left: 16px;
  }

  .home-threshold-main::after {
    inset: -14px -10px -14px -10px;
    border-radius: 24px;
  }

  .home-threshold-main::before,
  .home-garden-main::before,
  .home-garden-route::before,
  .home-garden-route::after,
  .home-garden-scene .garden-item::before,
  .home-threshold-side::before,
  .garden-aside::before {
    display: none;
  }

  .home-threshold-main,
  .home-garden-main,
  .home-threshold-side,
  .garden-aside {
    padding-left: 0;
  }

  .home-threshold-story,
  .home-threshold-foot,
  .home-garden-route,
  .home-threshold-side,
  .garden-aside {
    padding-left: 0;
  }

  .home-threshold-foot {
    align-items: flex-start;
  }

  .home-threshold-points {
    width: 100%;
  }

  .home-garden-scene {
    margin-top: 64px;
  }

  .home-garden-scene .garden-item {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 14px 0 14px 0;
    border-radius: 0;
    background: none;
    border-top: 1px solid rgba(245, 239, 230, 0.08);
  }

  .home-garden-scene .garden-item:first-child {
    border-top: none;
  }
}

@media (max-width: 900px) {
  .hero-archive-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .about-profile {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-preview-layout,
  .garden-shell {
    grid-template-columns: 1fr;
  }

  .about-profile-note {
    max-width: 580px;
  }
}

@media (max-width: 640px) {
  .hero-monologue,
  .page-header-echo,
  .about-preview-marginalia {
    max-width: 100%;
    padding-left: 0;
    text-align: center;
  }

  .hero-monologue {
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .hero-archive {
    width: 100%;
    gap: 8px;
    text-align: center;
  }

  .about-preview-layout {
    gap: 18px;
  }

  .hero-archive-label {
    font-size: 0.74rem;
  }

  .hero-archive-item p {
    font-size: 0.78rem;
    line-height: 1.8;
  }

  .about-preview-marginalia::before,
  .page-header-echo::before {
    display: none;
  }

  .hero-note-list li,
  .about-preview-side,
  .about-preview-side p,
  .about-profile-note,
  .about-profile-note p,
  .about-profile-note-list,
  .garden-aside,
  .garden-aside p {
    text-align: left;
  }

  .about-preview-side,
  .about-profile-note {
    width: 100%;
    padding: 20px 18px 18px 22px;
  }

  .journey-coda,
  .affinity-quote,
  .about-closing-signature {
    font-size: 0.78rem;
    line-height: 1.82;
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro,
  .stage,
  .reveal,
  .page-section,
  body::after,
  .page-transition-overlay,
  .page-transition-overlay::before {
    transition: none !important;
    animation: none !important;
  }

  .intro {
    display: none !important;
  }
}

/* ---- 20260318b About Material Rework ---- */
.about-hero {
  min-height: 50vh;
  align-items: stretch;
  padding: 118px 20px 30px;
  text-align: left;
}

.about-hero-inner,
.about-profile-scene,
.about-method-scene,
.about-journey-scene,
.about-affinity-scene,
.about-closing-scene {
  width: min(980px, calc(100vw - 40px));
  margin-left: auto;
  margin-right: auto;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  gap: 34px;
  align-items: end;
}

.about-hero-main,
.about-profile-main {
  position: relative;
  padding-left: 18px;
}

.about-hero-main::before,
.about-profile-main::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.78), rgba(174, 181, 239, 0.2), transparent);
}

.about-hero-main::before {
  top: 8px;
  bottom: 12px;
}

.page-title--about-hero {
  align-items: flex-start;
  gap: 12px;
}

.about-hero-note {
  align-self: end;
  padding: 22px 22px 18px 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.014)),
    rgba(12, 11, 18, 0.42);
  border: 1px solid rgba(245, 239, 230, 0.08);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.about-hero-note-label,
.about-profile-seal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 239, 230, 0.72);
  font-family: var(--font-en-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-hero-note-label::before,
.about-profile-seal::before {
  content: "";
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 190, 160, 0.84), rgba(215, 190, 160, 0.12));
}

.about-hero-note p {
  margin-top: 12px;
  color: rgba(245, 239, 230, 0.7);
  font-size: 0.84rem;
  line-height: 1.9;
}

.about-hero-note-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.about-hero-note-list li {
  color: rgba(245, 239, 230, 0.58);
  font-size: 0.78rem;
  line-height: 1.8;
}

.about-hero + .about-profile-scene {
  margin-top: -12px;
}

.about-profile-scene {
  display: grid;
  grid-template-columns: minmax(130px, 170px) minmax(0, 1fr) minmax(230px, 280px);
  gap: 34px;
  align-items: start;
}

.about-profile-portrait {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 10px;
}

.about-profile-portrait .hero-avatar {
  width: 150px;
  height: 150px;
}

.about-profile-main::before {
  top: 8px;
  bottom: 12px;
}

.about-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}

.about-intro h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin: 0;
}

.about-name-en {
  font-family: var(--font-en-display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  letter-spacing: 0.1em;
}

.about-intro h2 .about-name-zh {
  font-family: var(--font-zh-spirit);
  font-size: clamp(2rem, 4.2vw, 3rem);
  color: rgba(245, 239, 230, 0.94);
  letter-spacing: 0.05em;
}

.about-intro-lead,
.about-intro-echo {
  max-width: 39rem;
  padding-left: 18px;
  position: relative;
}

.about-intro-lead::before,
.about-intro-echo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 10px;
  height: 1px;
}

.about-intro-lead::before {
  background: linear-gradient(90deg, rgba(215, 190, 160, 0.92), rgba(215, 190, 160, 0.08));
}

.about-intro-echo::before {
  background: linear-gradient(90deg, rgba(174, 181, 239, 0.92), rgba(174, 181, 239, 0.08));
}

.about-profile-note {
  display: block;
  align-self: start;
  padding: 22px 22px 20px 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.014)),
    rgba(12, 11, 18, 0.42);
  border: 1px solid rgba(245, 239, 230, 0.08);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.about-profile-note-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(245, 239, 230, 0.72);
  font-family: var(--font-en-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-profile-note-label::before {
  content: "";
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(174, 181, 239, 0.84), rgba(174, 181, 239, 0.12));
}

.about-profile-note p {
  color: rgba(245, 239, 230, 0.72);
  font-size: 0.84rem;
  line-height: 1.92;
}

.about-profile-note-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.about-profile-note-list li {
  color: rgba(245, 239, 230, 0.58);
  font-size: 0.78rem;
  line-height: 1.84;
}

.about-method-scene,
.about-journey-scene,
.about-affinity-scene,
.about-closing-scene {
  margin-top: 54px;
}

.about-method-scene {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 32px;
  align-items: start;
}

.about-method-scene .section-heading-group {
  margin: 0;
}

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

.about-method-scene .craft-item {
  min-height: 168px;
  padding: 20px 20px 18px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.036), rgba(174, 181, 239, 0.018)),
    rgba(13, 12, 18, 0.52);
  border: 1px solid rgba(245, 239, 230, 0.08);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  text-align: left;
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.about-method-scene .craft-item:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 190, 160, 0.16);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
}

.craft-item-index {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(245, 239, 230, 0.34);
  font-family: var(--font-en-display);
  font-size: 0.9rem;
  letter-spacing: 0.16em;
}

.about-method-scene .craft-item h3 {
  margin-bottom: 10px;
}

.about-method-scene .craft-item p {
  color: rgba(245, 239, 230, 0.72);
  line-height: 1.9;
}

.about-journey-scene {
  position: relative;
}

.about-journey-scene .section-heading-group {
  max-width: 36rem;
  margin-bottom: 26px;
}

.about-journey-scene .timeline {
  max-width: 100%;
  padding-left: 46px;
}

.about-journey-scene .timeline::before {
  left: 12px;
  width: 1px;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.78), rgba(174, 181, 239, 0.24), rgba(245, 239, 230, 0.04));
}

.about-journey-scene .timeline-item {
  margin-bottom: 20px;
}

.about-journey-scene .timeline-item:nth-child(2n) .timeline-content,
.about-journey-scene .timeline-item:nth-child(3n) .timeline-content {
  margin-left: 0;
  margin-right: 0;
}

.about-journey-scene .timeline-dot {
  left: -30px;
  top: 6px;
  width: 12px;
  height: 12px;
  border: 2px solid rgba(12, 11, 18, 0.94);
  box-shadow: 0 0 0 4px rgba(215, 190, 160, 0.06);
}

.about-journey-scene .timeline-content {
  padding: 18px 20px 16px 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(174, 181, 239, 0.018)),
    rgba(13, 12, 18, 0.54);
  border-color: rgba(245, 239, 230, 0.08);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.about-journey-scene .timeline-item:hover .timeline-content {
  transform: translateX(4px);
  border-color: rgba(215, 190, 160, 0.14);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
}

.journey-coda {
  max-width: 38rem;
  margin: 24px 0 0 46px;
  color: rgba(245, 239, 230, 0.62);
  font-size: 0.84rem;
  line-height: 1.94;
  text-align: left;
}

.about-affinity-scene .section-heading-group {
  max-width: 34rem;
  margin-bottom: 12px;
}

.about-affinity-scene .affinity-quote {
  max-width: 34rem;
  margin: 0 0 18px;
  color: rgba(245, 239, 230, 0.64);
  text-align: left;
}

.about-affinity-scene .affinity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.about-affinity-scene .affinity-card {
  min-height: 172px;
  padding: 20px 20px 18px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(174, 181, 239, 0.016)),
    rgba(13, 12, 18, 0.5);
  border: 1px solid rgba(245, 239, 230, 0.08);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  text-align: left;
}

.about-closing-scene {
  padding-top: 4px;
  text-align: center;
}

.about-closing-scene::before {
  content: "";
  display: block;
  width: min(100%, 180px);
  height: 1px;
  margin: 0 auto 18px;
  background: linear-gradient(90deg, transparent, rgba(245, 239, 230, 0.22), transparent);
}

.about-closing-scene .about-closing,
.about-closing-scene .about-closing-signature {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.about-closing-scene .about-tags {
  justify-content: center;
  margin-top: 18px;
}

@media (max-width: 900px) {
  .about-hero-inner,
  .about-profile-scene,
  .about-method-scene {
    grid-template-columns: 1fr;
  }

  .about-craft-grid,
  .about-affinity-scene .affinity-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-note,
  .about-profile-note {
    max-width: 560px;
  }

  .about-profile-portrait {
    align-items: flex-start;
  }

  .about-profile-portrait .hero-avatar {
    width: 132px;
    height: 132px;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding: 108px 14px 18px;
  }

  .about-hero-inner,
  .about-profile-scene,
  .about-method-scene,
  .about-journey-scene,
  .about-affinity-scene,
  .about-closing-scene {
    width: min(100%, calc(100vw - 28px));
  }

  .about-hero-main,
  .about-profile-main {
    padding-left: 14px;
  }

  .about-hero-note,
  .about-profile-note,
  .about-method-scene .craft-item,
  .about-affinity-scene .affinity-card {
    padding: 18px 18px 16px;
    border-radius: 20px;
  }

  .page-title--about-hero,
  .about-intro h2 {
    align-items: center;
  }

  .about-hero-main,
  .about-profile-portrait,
  .about-profile-main {
    text-align: center;
  }

  .about-profile-portrait {
    align-items: center;
  }

  .about-profile-portrait .hero-avatar {
    width: 118px;
    height: 118px;
  }

  .about-intro {
    align-items: stretch;
  }

  .about-intro-lead,
  .about-intro-echo,
  .journey-coda {
    padding-left: 0;
  }

  .about-intro-lead::before,
  .about-intro-echo::before {
    display: none;
  }

  .about-journey-scene .section-heading-group--left,
  .about-affinity-scene .section-heading-group--left,
  .about-method-scene .section-heading-group--left {
    align-items: flex-start;
    text-align: left;
  }

  .about-journey-scene .timeline {
    padding-left: 28px;
  }

  .about-journey-scene .timeline-dot {
    left: -24px;
  }

  .journey-coda {
    margin-left: 28px;
  }

  .about-affinity-scene .affinity-quote {
    text-align: left;
  }
}

/* ---- 20260317z Projects Material Trial ---- */
.project-hero {
  min-height: 50vh;
  align-items: stretch;
  padding: 118px 20px 28px;
  text-align: left;
}

.project-hero-inner,
.project-intro-scene,
.project-archive-scene,
.project-future-rail {
  width: min(980px, calc(100vw - 40px));
  margin-left: auto;
  margin-right: auto;
}

.project-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.project-hero-kicker {
  align-self: flex-start;
  margin-bottom: 0;
}

.project-hero-main {
  position: relative;
  max-width: 42rem;
  padding-left: 18px;
}

.project-hero-main::before,
.project-intro-main::before,
.project-future-rail-copy::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.76), rgba(174, 181, 239, 0.2), transparent);
}

.project-hero-main::before {
  top: 8px;
  bottom: 10px;
}

.page-title--project-hero {
  align-items: flex-start;
  gap: 12px;
}

.project-hero-subtitle {
  margin-top: 14px;
  max-width: 34rem;
}

.project-overview-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}

.project-overview-pill,
.project-overview-link {
  min-height: 78px;
  padding: 12px 16px 10px;
  border-radius: 20px;
  border: 1px solid rgba(245, 239, 230, 0.09);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

.project-overview-pill {
  min-width: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(174, 181, 239, 0.016)),
    rgba(15, 14, 21, 0.4);
}

.project-overview-pill strong {
  color: rgba(245, 239, 230, 0.9);
  font-family: var(--font-en-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.project-overview-pill em {
  color: rgba(245, 239, 230, 0.52);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.project-overview-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(245, 239, 230, 0.82);
  text-decoration: none;
  background: rgba(14, 13, 20, 0.28);
  transition: border-color 0.32s ease, transform 0.32s ease, background 0.32s ease;
}

.project-overview-link:hover {
  border-color: rgba(215, 190, 160, 0.22);
  background: rgba(174, 181, 239, 0.08);
  transform: translateY(-2px);
}

.project-intro-scene {
  margin-top: -18px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 30px;
  align-items: start;
}

.project-intro-main {
  position: relative;
  padding: 30px 0 10px 18px;
}

.project-intro-main::before {
  top: 6px;
  bottom: 12px;
}

.project-intro-main h2 {
  margin-bottom: 16px;
  font-family: var(--font-zh-display);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
}

.project-intro-copy {
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.project-intro-copy p {
  color: rgba(245, 239, 230, 0.8);
  line-height: 2;
}

.project-intro-note {
  align-self: start;
  padding: 20px 22px 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.015)),
    rgba(14, 13, 20, 0.42);
  border: 1px solid rgba(245, 239, 230, 0.08);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.project-intro-note-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(245, 239, 230, 0.68);
  font-family: var(--font-en-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-intro-note-label::before {
  content: "";
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 190, 160, 0.84), rgba(215, 190, 160, 0.12));
}

.project-intro-note p {
  color: rgba(245, 239, 230, 0.72);
  font-size: 0.84rem;
  line-height: 1.9;
}

.project-intro-note .section-more {
  margin-top: 14px;
}

.project-archive-scene {
  position: relative;
  margin-top: 48px;
}

.project-archive-scene::after {
  content: "";
  position: absolute;
  top: -80px;
  right: 8%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 181, 239, 0.08), transparent 70%);
  pointer-events: none;
}

.project-archive-scene .section-heading-group {
  max-width: 34rem;
}

.project-archive {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 26px;
}

.project-archive::before {
  content: "";
  position: absolute;
  left: 88px;
  top: 12px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(245, 239, 230, 0.2), rgba(174, 181, 239, 0.16), rgba(245, 239, 230, 0.04));
}

.project-entry {
  position: relative;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 20px;
  padding: 4px 0 16px;
}

.project-entry:last-child {
  padding-bottom: 0;
}

.project-entry-axis {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 10px;
  text-align: left;
}

.project-entry-axis::after {
  content: "";
  position: absolute;
  left: 84px;
  top: 14px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(215, 190, 160, 0.9);
  box-shadow: 0 0 0 5px rgba(215, 190, 160, 0.08);
}

.project-entry-index {
  color: rgba(245, 239, 230, 0.34);
  font-family: var(--font-en-display);
  font-size: 1rem;
  letter-spacing: 0.14em;
}

.project-entry-date {
  color: rgba(245, 239, 230, 0.54);
  font-family: var(--font-note);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.project-entry-body {
  position: relative;
  padding: 22px 24px 20px 26px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.036), rgba(255, 255, 255, 0.012) 48%),
    rgba(12, 11, 18, 0.56);
  border: 1px solid rgba(245, 239, 230, 0.08);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.project-entry-body::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 28px;
  width: 16px;
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 190, 160, 0.55), rgba(215, 190, 160, 0.08));
}

.project-entry-body::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.026), transparent 38%);
  pointer-events: none;
}

.project-entry:hover .project-entry-body {
  transform: translateY(-3px);
  border-color: rgba(215, 190, 160, 0.16);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.14);
}

.project-entry:nth-child(odd) .project-entry-body {
  margin-right: 42px;
}

.project-entry:nth-child(even) .project-entry-body {
  margin-left: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(174, 181, 239, 0.02) 52%),
    rgba(12, 11, 18, 0.54);
}

.project-entry:nth-child(even) .project-entry-axis::after {
  background: rgba(174, 181, 239, 0.88);
  box-shadow: 0 0 0 5px rgba(174, 181, 239, 0.08);
}

.project-entry-meta {
  margin-bottom: 10px;
}

.project-entry-category {
  color: rgba(215, 190, 160, 0.84);
  font-family: var(--font-en-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.project-entry-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.project-entry-title-wrap h3 {
  font-size: 1.34rem;
  letter-spacing: 0.04em;
}

.project-entry .project-name-alt {
  margin-top: 6px;
  color: rgba(245, 239, 230, 0.54);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.project-entry .project-summary {
  max-width: 42rem;
  margin-top: 14px;
  color: rgba(245, 239, 230, 0.78);
  line-height: 1.96;
}

.project-stack-list--entry {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 16px;
}

.project-stack-list--entry li {
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(245, 239, 230, 0.08);
  color: rgba(245, 239, 230, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.project-entry .project-links {
  padding-top: 0;
  margin-top: 16px;
}

.project-entry .project-links a {
  background: transparent;
  border-color: rgba(174, 181, 239, 0.16);
  color: rgba(245, 239, 230, 0.82);
}

.project-entry .project-links a:hover {
  background: rgba(174, 181, 239, 0.07);
  transform: translateX(4px);
}

.project-future-rail {
  margin-top: 60px;
}

.project-future-rail-copy {
  position: relative;
  max-width: 37rem;
  margin-left: auto;
  padding-left: 18px;
}

.project-future-rail-copy::before {
  top: 4px;
  bottom: 2px;
}

.project-future-rail-copy .section-heading {
  margin-bottom: 12px;
}

.project-future-rail-copy .section-lead {
  max-width: 30rem;
}

.project-future-rail-copy .section-more {
  margin-top: 14px;
}

@media (max-width: 900px) {
  .project-intro-scene {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: -6px;
  }

  .project-archive::before {
    left: 74px;
  }

  .project-entry {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
  }

  .project-entry-axis::after {
    left: 70px;
  }

  .project-entry:nth-child(odd) .project-entry-body,
  .project-entry:nth-child(even) .project-entry-body {
    margin-left: 0;
    margin-right: 0;
  }

  .project-future-rail-copy {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .project-hero {
    padding: 108px 14px 18px;
  }

  .project-hero-inner,
  .project-intro-scene,
  .project-archive-scene,
  .project-future-rail {
    width: min(100%, calc(100vw - 28px));
  }

  .project-hero-main,
  .project-intro-main,
  .project-future-rail-copy {
    padding-left: 14px;
  }

  .project-overview-rail {
    gap: 8px;
  }

  .project-overview-pill,
  .project-overview-link {
    width: 100%;
    min-height: auto;
    padding: 11px 14px 10px;
  }

  .project-intro-note {
    padding: 18px 18px 16px;
  }

  .project-archive-scene .section-heading-group--left {
    align-items: flex-start;
    text-align: left;
  }

  .project-archive {
    margin-top: 20px;
  }

  .project-archive::before,
  .project-entry-axis::after,
  .project-entry-body::before {
    display: none;
  }

  .project-entry {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-bottom: 18px;
  }

  .project-entry-axis {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding-top: 0;
  }

  .project-entry-body {
    padding: 18px 18px 16px;
    border-radius: 20px;
  }

  .project-entry-title-wrap h3 {
    font-size: 1.18rem;
  }

  .project-entry .project-summary {
    margin-top: 12px;
  }
}

/* ---- 20260318c Friends Material Rework ---- */
.friends-hero {
  min-height: 50vh;
  align-items: stretch;
  padding: 118px 20px 30px;
  text-align: left;
}

.friends-hero-inner,
.friends-waiting-scene,
.friends-principles-scene {
  width: min(980px, calc(100vw - 40px));
  margin-left: auto;
  margin-right: auto;
}

.friends-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  gap: 34px;
  align-items: end;
}

.friends-hero-main,
.friends-quiet-copy {
  position: relative;
  padding-left: 18px;
  text-align: left;
}

.friends-hero-main::before,
.friends-quiet-copy::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
}

.friends-hero-main::before {
  top: 8px;
  bottom: 12px;
  background: linear-gradient(180deg, rgba(198, 165, 185, 0.78), rgba(215, 190, 160, 0.18), transparent);
}

.page-title--friends-hero {
  align-items: flex-start;
  gap: 12px;
}

.friends-hero-note {
  align-self: end;
  padding: 22px 22px 18px 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.014)),
    rgba(12, 11, 18, 0.42);
  border: 1px solid rgba(245, 239, 230, 0.08);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.friends-hero-note-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 239, 230, 0.74);
  font-family: var(--font-en-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.friends-hero-note-label::before {
  content: "";
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(198, 165, 185, 0.88), rgba(198, 165, 185, 0.12));
}

.friends-hero-note p {
  margin-top: 12px;
  color: rgba(245, 239, 230, 0.7);
  font-size: 0.84rem;
  line-height: 1.9;
}

.friends-hero + .friends-waiting-scene {
  margin-top: -8px;
}

.friends-waiting-scene {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(250px, 0.82fr);
  gap: 38px;
  align-items: center;
}

.friends-waiting-scene::after {
  content: "";
  position: absolute;
  right: 2%;
  top: -48px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 165, 185, 0.09), transparent 72%);
  pointer-events: none;
}

.friends-quiet-copy {
  max-width: 38rem;
}

.friends-quiet-copy::before {
  top: 6px;
  bottom: 8px;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.72), rgba(174, 181, 239, 0.2), transparent);
}

.friends-quiet-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 239, 230, 0.56);
  font-family: var(--font-en-display);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.friends-quiet-kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 190, 160, 0.88), rgba(215, 190, 160, 0.08));
}

.friends-empty-title {
  margin-top: 18px;
  font-family: var(--font-zh-spirit);
  font-size: clamp(2.2rem, 4.9vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: 0.04em;
  text-align: left;
}

.friends-empty-copy {
  max-width: 34rem;
  margin-top: 14px;
  color: rgba(245, 239, 230, 0.78);
  line-height: 2;
  text-align: left;
}

.friends-empty-echo {
  max-width: 28rem;
  margin-top: 18px;
  padding-left: 18px;
  color: rgba(245, 239, 230, 0.6);
  font-size: 0.84rem;
  line-height: 1.92;
  position: relative;
  text-align: left;
}

.friends-empty-echo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.92em;
  width: 10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(198, 165, 185, 0.9), rgba(198, 165, 185, 0.08));
}

.friends-reserved-card {
  position: relative;
  justify-self: end;
  width: min(100%, 320px);
  padding: 26px 24px 22px 30px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(16, 15, 22, 0.5);
  border: 1px solid rgba(245, 239, 230, 0.08);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.friends-reserved-card::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(198, 165, 185, 0.62), rgba(215, 190, 160, 0.12), transparent);
}

.friends-reserved-card::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -42px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 165, 185, 0.16), transparent 72%);
  pointer-events: none;
}

.friends-reserved-label,
.friends-reserved-lines {
  position: relative;
  z-index: 1;
}

.friends-reserved-label {
  display: inline-block;
  margin-bottom: 12px;
  color: rgba(245, 239, 230, 0.8);
  font-family: var(--font-zh-display);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
}

.friends-reserved-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.friends-reserved-lines span {
  position: relative;
  padding-left: 14px;
  color: rgba(245, 239, 230, 0.68);
  font-size: 0.82rem;
  line-height: 1.8;
}

.friends-reserved-lines span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 8px;
  height: 1px;
  background: linear-gradient(90deg, rgba(174, 181, 239, 0.9), rgba(174, 181, 239, 0.08));
}

.friends-principles-scene {
  position: relative;
  margin-top: 56px;
}

.friends-principles-scene::after {
  content: "";
  position: absolute;
  top: -78px;
  right: 8%;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 181, 239, 0.08), transparent 72%);
  pointer-events: none;
}

.friends-principles-scene .section-heading-group {
  max-width: 34rem;
  margin-bottom: 0;
}

.friends-manifest-quote {
  max-width: 35rem;
  margin: 10px 0 20px;
  color: rgba(245, 239, 230, 0.6);
  font-size: 0.84rem;
  line-height: 1.92;
  text-align: left;
}

.friends-manifest-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
}

.friends-site-card,
.friends-principle-card {
  position: relative;
  min-height: 100%;
  padding: 22px 22px 20px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(17, 16, 24, 0.44);
  border: 1px solid rgba(245, 239, 230, 0.08);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.friends-site-card::after,
.friends-principle-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.024), transparent 42%);
  pointer-events: none;
}

.friends-site-card:hover,
.friends-principle-card:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 190, 160, 0.14);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
}

.friends-site-label {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(215, 190, 160, 0.84);
  font-family: var(--font-en-display);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
}

.friends-site-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.friends-site-meta div {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(245, 239, 230, 0.08);
}

.friends-site-meta div:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.friends-site-meta dt {
  margin-bottom: 6px;
  color: rgba(245, 239, 230, 0.5);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
}

.friends-site-meta dd {
  color: rgba(245, 239, 230, 0.86);
  line-height: 1.8;
}

.friends-principle-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.friends-principle-list li {
  position: relative;
  padding-left: 16px;
  color: rgba(245, 239, 230, 0.76);
  line-height: 1.9;
}

.friends-principle-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.96em;
  width: 8px;
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 190, 160, 0.92), rgba(215, 190, 160, 0.08));
}

.friends-principle-note {
  margin-top: 16px;
  color: rgba(245, 239, 230, 0.58);
  line-height: 1.9;
}

.friends-principle-card .section-more {
  margin-top: 12px;
}

.friends-closing-note {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(245, 239, 230, 0.08);
  color: rgba(245, 239, 230, 0.56);
  font-size: 0.8rem;
  line-height: 1.88;
}

@media (max-width: 900px) {
  .friends-hero-inner,
  .friends-waiting-scene,
  .friends-manifest-grid {
    grid-template-columns: 1fr;
  }

  .friends-hero-note,
  .friends-reserved-card {
    max-width: 520px;
    justify-self: start;
  }

  .friends-principles-scene::after,
  .friends-waiting-scene::after {
    right: 0;
  }

  .friends-closing-note {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 640px) {
  .friends-hero {
    padding: 108px 14px 18px;
  }

  .friends-hero-inner,
  .friends-waiting-scene,
  .friends-principles-scene {
    width: min(100%, calc(100vw - 28px));
  }

  .friends-hero-main,
  .friends-quiet-copy {
    padding-left: 14px;
  }

  .friends-hero-note,
  .friends-reserved-card,
  .friends-site-card,
  .friends-principle-card {
    padding: 18px 18px 16px;
    border-radius: 20px;
  }

  .page-title--friends-hero {
    align-items: center;
  }

  .friends-hero-main {
    text-align: center;
  }

  .friends-empty-title {
    margin-top: 14px;
    font-size: clamp(1.9rem, 8.5vw, 2.7rem);
  }

  .friends-empty-echo {
    max-width: 100%;
    padding-left: 0;
  }

  .friends-empty-echo::before,
  .friends-principles-scene::after,
  .friends-waiting-scene::after,
  .friends-reserved-card::after {
    display: none;
  }

  .friends-principles-scene .section-heading-group--left {
    align-items: flex-start;
    text-align: left;
  }
}

/* ---- 20260318d Gallery Material Rework ---- */
.gallery-hero {
  min-height: 50vh;
  align-items: stretch;
  padding: 118px 20px 28px;
  text-align: left;
}

.gallery-hero-inner,
.gallery-preface-scene,
.gallery-grid-scene {
  width: min(980px, calc(100vw - 40px));
  margin-left: auto;
  margin-right: auto;
}

.gallery-hero-inner,
.gallery-preface-scene {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 310px);
  gap: 34px;
  align-items: end;
}

.gallery-hero-main,
.gallery-preface-main {
  position: relative;
  padding-left: 18px;
  text-align: left;
}

.gallery-hero-main::before,
.gallery-preface-main::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
}

.gallery-hero-main::before {
  top: 8px;
  bottom: 12px;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.76), rgba(174, 181, 239, 0.2), transparent);
}

.page-title--gallery-hero {
  align-items: flex-start;
  gap: 12px;
}

.gallery-hero-note {
  align-self: end;
  padding: 22px 22px 18px 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.036), rgba(255, 255, 255, 0.014)),
    rgba(12, 11, 18, 0.42);
  border: 1px solid rgba(245, 239, 230, 0.08);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.gallery-hero-note-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 239, 230, 0.72);
  font-family: var(--font-en-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-hero-note-label::before {
  content: "";
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 190, 160, 0.88), rgba(215, 190, 160, 0.12));
}

.gallery-hero-note p {
  margin-top: 12px;
  color: rgba(245, 239, 230, 0.7);
  font-size: 0.84rem;
  line-height: 1.9;
}

.gallery-hero + .gallery-preface-scene {
  margin-top: -12px;
}

.gallery-preface-main {
  align-self: start;
  max-width: 38rem;
}

.gallery-preface-main::before {
  top: 4px;
  bottom: 8px;
  background: linear-gradient(180deg, rgba(174, 181, 239, 0.72), rgba(215, 190, 160, 0.18), transparent);
}

.gallery-note-copy {
  display: grid;
  gap: 12px;
}

.gallery-note-echo {
  max-width: 34rem;
  padding-left: 18px;
  color: rgba(245, 239, 230, 0.6);
  font-size: 0.84rem;
  line-height: 1.94;
  position: relative;
  text-align: left;
}

.gallery-note-echo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.92em;
  width: 10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(174, 181, 239, 0.9), rgba(174, 181, 239, 0.08));
}

.gallery-ritual-card {
  position: relative;
  align-self: start;
  padding: 22px 18px 18px 24px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    rgba(12, 11, 18, 0.34);
  border: 1px solid rgba(245, 239, 230, 0.08);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.1);
}

.gallery-ritual-card::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.72), rgba(174, 181, 239, 0.16), transparent);
}

.gallery-ritual-label {
  display: inline-block;
  margin-bottom: 10px;
  padding-left: 10px;
  color: rgba(245, 239, 230, 0.78);
  font-family: var(--font-en-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-ritual-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0 0 0 10px;
}

.gallery-ritual-list li {
  color: rgba(245, 239, 230, 0.66);
  font-size: 0.82rem;
  line-height: 1.88;
}

.gallery-grid-scene {
  position: relative;
  margin-top: 58px;
}

.gallery-grid-scene::after {
  content: "";
  position: absolute;
  top: -90px;
  right: 4%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 181, 239, 0.08), transparent 72%);
  pointer-events: none;
}

.gallery-grid-head {
  max-width: 34rem;
  text-align: left;
}

.gallery-grid-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 239, 230, 0.56);
  font-family: var(--font-en-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-grid-kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(198, 165, 185, 0.88), rgba(198, 165, 185, 0.08));
}

.gallery-grid-lead {
  margin-top: 10px;
  color: rgba(245, 239, 230, 0.62);
  line-height: 1.9;
}

.gallery-grid-wrap.gallery {
  position: relative;
  max-width: none;
  margin: 22px 0 0;
  padding: 20px 20px 12px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(10, 9, 15, 0.14), rgba(10, 9, 15, 0.28)),
    rgba(9, 8, 13, 0.08);
  border: 1px solid rgba(245, 239, 230, 0.05);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(8px) saturate(110%);
  overflow: hidden;
  text-align: left;
}

.gallery-grid-wrap.gallery::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 24%);
  pointer-events: none;
}

.gallery-grid-wrap.gallery::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -70px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 181, 239, 0.08), transparent 72%);
  pointer-events: none;
}

.gallery-grid {
  counter-reset: gallery;
  columns: 4 220px;
  column-gap: 18px;
}

.gallery-item {
  counter-increment: gallery;
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(245, 239, 230, 0.08);
  background: rgba(12, 11, 18, 0.3);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s ease;
}

.gallery-item::before {
  content: counter(gallery, decimal-leading-zero);
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(10, 9, 15, 0.48);
  border: 1px solid rgba(245, 239, 230, 0.1);
  color: rgba(245, 239, 230, 0.84);
  font-family: var(--font-en-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  backdrop-filter: blur(10px);
}

.gallery-item::after {
  content: "↗";
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(10, 9, 15, 0.44);
  border: 1px solid rgba(245, 239, 230, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
  backdrop-filter: blur(10px);
}

.gallery-item:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 190, 160, 0.16);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover::after {
  opacity: 1;
  transform: translateY(0);
  background: rgba(174, 181, 239, 0.2);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.94) contrast(1.02);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: saturate(1.02) brightness(1.04);
}

.gallery-coda {
  max-width: 38rem;
  margin: 22px auto 0;
  color: rgba(245, 239, 230, 0.58);
  font-size: 0.82rem;
  line-height: 1.9;
  text-align: center;
}

.lightbox {
  background:
    radial-gradient(circle at 20% 22%, rgba(174, 181, 239, 0.14), transparent 28%),
    radial-gradient(circle at 82% 76%, rgba(215, 190, 160, 0.12), transparent 30%),
    rgba(4, 4, 8, 0.92);
  backdrop-filter: blur(10px);
}

.lightbox-img {
  border-radius: 16px;
  border: 1px solid rgba(245, 239, 230, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.58);
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(245, 239, 230, 0.12);
  background: rgba(12, 11, 18, 0.28);
  color: rgba(245, 239, 230, 0.9);
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(174, 181, 239, 0.16);
}

@media (max-width: 900px) {
  .gallery-hero-inner,
  .gallery-preface-scene {
    grid-template-columns: 1fr;
  }

  .gallery-hero-note,
  .gallery-ritual-card {
    max-width: 520px;
  }

  .gallery-grid {
    columns: 3 180px;
  }
}

@media (max-width: 640px) {
  .gallery-hero {
    padding: 108px 14px 18px;
  }

  .gallery-hero-inner,
  .gallery-preface-scene,
  .gallery-grid-scene {
    width: min(100%, calc(100vw - 28px));
  }

  .gallery-hero-main,
  .gallery-preface-main {
    padding-left: 14px;
  }

  .gallery-hero-note,
  .gallery-ritual-card {
    padding: 18px 18px 16px;
    border-radius: 20px;
  }

  .page-title--gallery-hero {
    align-items: center;
  }

  .gallery-hero-main {
    text-align: center;
  }

  .gallery-note-echo {
    max-width: 100%;
    padding-left: 0;
  }

  .gallery-note-echo::before,
  .gallery-grid-scene::after {
    display: none;
  }

  .gallery-grid {
    columns: 2 148px;
    column-gap: 12px;
  }

  .gallery-grid-wrap.gallery {
    padding: 16px 14px 8px;
    border-radius: 22px;
  }

  .gallery-item {
    margin-bottom: 12px;
    border-radius: 16px;
  }

  .gallery-item::before,
  .gallery-item::after {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 0.68rem;
  }

  .gallery-coda {
    font-size: 0.78rem;
    line-height: 1.82;
  }
}

/* ---- 20260318f Privacy Material Rework ---- */
.privacy-hero {
  min-height: 48vh;
  align-items: stretch;
  padding: 118px 20px 28px;
  text-align: left;
}

.privacy-hero-inner,
.privacy-intro-scene,
.privacy-boundary-scene,
.privacy-contact-scene {
  width: min(980px, calc(100vw - 40px));
  margin-left: auto;
  margin-right: auto;
}

.privacy-hero-inner,
.privacy-intro-scene,
.privacy-contact-scene {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 310px);
  gap: 34px;
  align-items: end;
}

.privacy-hero-main,
.privacy-intro-main,
.privacy-contact-main {
  position: relative;
  padding-left: 18px;
  text-align: left;
}

.privacy-hero-main::before,
.privacy-intro-main::before,
.privacy-contact-main::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
}

.privacy-hero-main::before {
  top: 8px;
  bottom: 12px;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.76), rgba(174, 181, 239, 0.2), transparent);
}

.page-title--privacy-hero {
  align-items: flex-start;
  gap: 12px;
}

.privacy-note-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 239, 230, 0.72);
  font-family: var(--font-en-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.privacy-note-label::before {
  content: "";
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(174, 181, 239, 0.88), rgba(174, 181, 239, 0.12));
}

.privacy-hero-note,
.privacy-intro-note,
.privacy-contact-note {
  align-self: start;
  padding: 22px 22px 18px 24px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.014)),
    rgba(12, 11, 18, 0.42);
  border: 1px solid rgba(245, 239, 230, 0.08);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.privacy-hero-note p,
.privacy-contact-note p {
  margin-top: 12px;
  color: rgba(245, 239, 230, 0.7);
  font-size: 0.84rem;
  line-height: 1.9;
}

.privacy-hero + .privacy-intro-scene {
  margin-top: -8px;
}

.privacy-intro-main::before,
.privacy-contact-main::before {
  top: 6px;
  bottom: 8px;
  background: linear-gradient(180deg, rgba(174, 181, 239, 0.7), rgba(215, 190, 160, 0.16), transparent);
}

.privacy-text {
  max-width: 42rem;
}

.privacy-text p {
  color: rgba(245, 239, 230, 0.76);
  line-height: 2;
}

.privacy-text strong {
  color: rgba(245, 239, 230, 0.88);
}

.privacy-text a {
  color: var(--c-accent);
  text-decoration: none;
}

.privacy-text a:hover {
  color: var(--c-text);
}

.privacy-note-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.privacy-note-list li {
  position: relative;
  padding-left: 14px;
  color: rgba(245, 239, 230, 0.66);
  font-size: 0.82rem;
  line-height: 1.86;
}

.privacy-note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.92em;
  width: 8px;
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 190, 160, 0.9), rgba(215, 190, 160, 0.08));
}

.privacy-boundary-scene {
  position: relative;
  margin-top: 56px;
}

.privacy-boundary-scene::after {
  content: "";
  position: absolute;
  top: -82px;
  right: 8%;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 181, 239, 0.08), transparent 72%);
  pointer-events: none;
}

.privacy-boundary-scene .section-heading-group {
  max-width: 34rem;
}

.privacy-boundary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.privacy-card {
  position: relative;
  min-height: 100%;
  padding: 22px 22px 20px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(17, 16, 24, 0.44);
  border: 1px solid rgba(245, 239, 230, 0.08);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
}

.privacy-card h3 {
  margin-bottom: 14px;
  color: rgba(245, 239, 230, 0.9);
  font-family: var(--font-zh-display);
  font-size: 1.06rem;
  letter-spacing: 0.05em;
}

.privacy-contact-scene {
  margin-top: 56px;
  align-items: start;
}

.privacy-contact-note .section-more {
  margin-top: 10px;
}

@media (max-width: 900px) {
  .privacy-hero-inner,
  .privacy-intro-scene,
  .privacy-contact-scene,
  .privacy-boundary-grid {
    grid-template-columns: 1fr;
  }

  .privacy-hero-note,
  .privacy-intro-note,
  .privacy-contact-note {
    max-width: 520px;
  }
}

@media (max-width: 640px) {
  .privacy-hero {
    padding: 108px 14px 18px;
  }

  .privacy-hero-inner,
  .privacy-intro-scene,
  .privacy-boundary-scene,
  .privacy-contact-scene {
    width: min(100%, calc(100vw - 28px));
  }

  .privacy-hero-main,
  .privacy-intro-main,
  .privacy-contact-main {
    padding-left: 14px;
  }

  .privacy-hero-note,
  .privacy-intro-note,
  .privacy-contact-note,
  .privacy-card {
    padding: 18px 18px 16px;
    border-radius: 20px;
  }

  .page-title--privacy-hero {
    align-items: center;
  }

  .privacy-hero-main {
    text-align: center;
  }

  .privacy-boundary-scene::after {
    display: none;
  }
}

/* ---- 20260318g Home Conductor Rework ---- */
body[data-scene="home"] .bg-tint {
  background:
    radial-gradient(ellipse at 18% 18%, rgba(245, 239, 230, 0.1), transparent 34%),
    radial-gradient(ellipse at 74% 68%, rgba(174, 181, 239, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(8, 7, 12, 0.14), rgba(8, 7, 12, 0.74));
}

.hero {
  padding-top: 124px;
  padding-bottom: 92px;
  align-items: stretch;
  overflow: clip;
}

.hero::after {
  bottom: -18px;
  height: 120px;
  background:
    radial-gradient(ellipse at center bottom, rgba(8, 7, 12, 0.22) 0%, rgba(8, 7, 12, 0.08) 42%, rgba(8, 7, 12, 0) 78%);
  filter: blur(22px);
  opacity: 0.26;
}

.hero-shell {
  width: min(1080px, calc(100vw - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 284px);
  gap: clamp(44px, 6vw, 82px);
  align-items: end;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  text-align: left;
}

.hero-shell::before,
.hero-shell::after {
  display: none;
}

.hero-main {
  max-width: 39rem;
  padding-left: 18px;
  gap: 0;
}

.hero-main::before {
  inset: auto;
  left: 0;
  top: 8px;
  bottom: 10px;
  width: 1px;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.78), rgba(174, 181, 239, 0.18), transparent);
}

.hero-signature {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: end;
  margin-top: 12px;
}

.hero-shell .hero-avatar {
  width: 86px;
  height: 86px;
  margin: 0 0 4px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2), 0 0 0 6px rgba(245, 239, 230, 0.03);
}

.hero-avatar:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24), 0 0 0 8px rgba(215, 190, 160, 0.04);
}

.hero-title {
  align-items: flex-start;
  gap: 8px;
  margin: 0;
}

.hero-title-zh {
  font-size: clamp(3.9rem, 8.2vw, 6.1rem);
  line-height: 0.98;
}

.hero-title-en {
  font-size: clamp(1.18rem, 2.5vw, 1.86rem);
  letter-spacing: 0.22em;
}

.hero-lead {
  max-width: 31rem;
  margin: 0;
  padding-left: 0;
  color: rgba(245, 239, 230, 0.84);
  font-size: 1rem;
  line-height: 2;
}

.hero-lead::before,
.hero-typewriter::before {
  display: none;
}

.hero-copy-stack,
.hero-breath,
.hero-archive-frame {
  width: min(100%, 34rem);
}

.hero-copy-stack {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.hero-monologue {
  max-width: 29rem;
  margin: 0;
  padding-left: 18px;
  color: rgba(245, 239, 230, 0.58);
  font-family: var(--font-note);
  font-size: 0.84rem;
  line-height: 1.88;
  position: relative;
}

.hero-monologue::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.94em;
  width: 10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(174, 181, 239, 0.84), rgba(174, 181, 239, 0.08));
}

.time-greeting {
  margin-top: 0;
  color: rgba(245, 239, 230, 0.66);
}

.hero-breath {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.hero-typewriter {
  min-height: 2.9em;
  max-width: 28rem;
  margin: 0;
  padding-left: 0;
  color: rgba(245, 239, 230, 0.58);
}

.hero-archive-frame {
  margin-top: 18px;
}

.hero-archive {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.hero-archive-item {
  grid-template-columns: 1fr;
  gap: 6px;
  padding: 14px 16px 13px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    rgba(12, 11, 18, 0.28);
  border: 1px solid rgba(245, 239, 230, 0.08);
}

.hero-archive-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.hero-archive-item p {
  color: rgba(245, 239, 230, 0.66);
  font-size: 0.82rem;
  line-height: 1.86;
}

.hero-note-card--home {
  width: min(100%, 288px);
  margin-bottom: 34px;
  padding: 22px 20px 18px 24px;
  align-self: end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(12, 11, 18, 0.46);
  border-color: rgba(245, 239, 230, 0.08);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(12px) saturate(108%);
}

.hero-note-card--home::before {
  left: 14px;
  top: 16px;
  bottom: 16px;
}

.hero-note-card--home::after {
  width: 130px;
  height: 130px;
  right: -30px;
  bottom: -30px;
}

.hero-note-list li {
  gap: 4px;
  padding-bottom: 10px;
}

.hero-note-list span {
  color: rgba(245, 239, 230, 0.66);
  font-size: 0.8rem;
  line-height: 1.82;
}

.hero-note-tail {
  margin-top: 12px;
  color: rgba(245, 239, 230, 0.58);
  font-size: 0.8rem;
  line-height: 1.84;
}

.scroll-hint {
  bottom: 26px;
  opacity: 0.62;
}

.scroll-hint span {
  letter-spacing: 0.14em;
}

.home-threshold-scene,
.home-garden-scene {
  width: min(980px, calc(100vw - 40px));
  position: relative;
  z-index: 1;
}

.home-threshold-scene {
  margin: -22px auto 0;
  padding-top: 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 270px);
  gap: 30px;
  align-items: start;
}

.home-threshold-scene::before {
  content: "";
  position: absolute;
  left: -20px;
  right: -20px;
  top: 0;
  height: 184px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center top, rgba(245, 239, 230, 0.04), rgba(18, 16, 24, 0.12) 34%, rgba(8, 7, 12, 0.02) 58%, rgba(8, 7, 12, 0) 78%);
  filter: blur(6px);
}

.home-threshold-main,
.home-garden-main {
  position: relative;
  padding-left: 18px;
  text-align: left;
}

.home-threshold-main::before,
.home-garden-main::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 8px;
  width: 1px;
}

.home-threshold-main::before {
  background: linear-gradient(180deg, rgba(174, 181, 239, 0.74), rgba(215, 190, 160, 0.14), transparent);
}

.home-garden-main::before {
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.74), rgba(198, 165, 185, 0.16), transparent);
}

.home-threshold-scene .section-heading-group,
.home-garden-scene .section-heading-group {
  max-width: 34rem;
  margin-bottom: 14px;
}

.home-threshold-lead {
  max-width: 36rem;
  color: rgba(245, 239, 230, 0.82);
  line-height: 2;
}

.home-threshold-echo {
  margin-top: 10px;
  padding-left: 18px;
  color: rgba(245, 239, 230, 0.58);
  font-size: 0.84rem;
  line-height: 1.92;
  position: relative;
}

.home-threshold-echo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.92em;
  width: 10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(174, 181, 239, 0.9), rgba(174, 181, 239, 0.08));
}

.home-threshold-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 16px;
}

.home-threshold-points span {
  position: relative;
  padding-left: 16px;
  color: rgba(245, 239, 230, 0.72);
  font-family: var(--font-zh-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.home-threshold-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(215, 190, 160, 0.9), rgba(215, 190, 160, 0.08));
}

.home-threshold-main .section-more {
  margin-top: 16px;
}

.home-threshold-side,
.garden-aside {
  position: relative;
  padding: 20px 18px 18px 22px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    rgba(12, 11, 18, 0.34);
  border: 1px solid rgba(245, 239, 230, 0.08);
}

.home-threshold-side::before,
.garden-aside::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 18px;
  bottom: 18px;
  width: 1px;
}

.home-threshold-side::before {
  background: linear-gradient(180deg, rgba(174, 181, 239, 0.72), rgba(215, 190, 160, 0.14), transparent);
}

.garden-aside::before {
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.7), rgba(174, 181, 239, 0.16), transparent);
}

.home-threshold-side-label,
.garden-aside-label {
  display: inline-block;
  margin-bottom: 8px;
  padding-left: 8px;
  color: rgba(245, 239, 230, 0.74);
  font-family: var(--font-en-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-threshold-side p,
.garden-aside p {
  padding-left: 8px;
  color: rgba(245, 239, 230, 0.64);
  font-size: 0.82rem;
  line-height: 1.9;
}

.home-garden-scene {
  margin: 74px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 280px);
  gap: 30px;
  align-items: start;
}

.hero [data-hero-step] {
  transition:
    opacity 0.92s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.98s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.72s ease;
  transition-delay: var(--hero-delay, 0ms);
}

.hero.hero-prep [data-hero-step] {
  opacity: 0;
  filter: blur(10px);
}

.hero.hero-prep .hero-kicker,
.hero.hero-prep .hero-copy-stack,
.hero.hero-prep .hero-breath,
.hero.hero-prep .hero-archive-frame,
.hero.hero-prep .scroll-hint {
  transform: translateY(24px);
}

.hero.hero-prep .hero-signature {
  transform: translateY(28px) scale(0.988);
}

.hero.hero-prep .hero-note-card--home {
  transform: translate(18px, 18px);
}

.hero.hero-prep.hero-awake [data-hero-step] {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.garden-list {
  gap: 0;
}

.home-garden-scene .garden-item {
  grid-template-columns: 56px minmax(0, 1fr) 18px;
  gap: 16px;
  padding: 14px 0;
}

.home-garden-scene .garden-item:nth-child(2n),
.home-garden-scene .garden-item:nth-child(3n) {
  padding-left: 0;
}

.home-garden-scene .garden-item:hover {
  transform: translateX(4px);
}

/* ---- 20260318h Motion Tuning ---- */
.garden-item,
.garden-item::after,
.project-entry-body,
.gallery-item,
.gallery-item::after,
.gallery-item img,
.friends-site-card,
.friends-principle-card,
.about-journey-scene .timeline-content {
  transition-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

.garden-item:hover {
  transform: translateX(4px);
}

.home-garden-scene .garden-item:hover {
  transform: translateX(2px);
}

.project-entry:hover .project-entry-body {
  transform: translateY(-2px);
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.gallery-item:hover img {
  transform: scale(1.025);
  filter: saturate(1) brightness(1.02);
}

.friends-site-card:hover,
.friends-principle-card:hover {
  transform: translateY(-2px);
}

.about-journey-scene .timeline-item:hover .timeline-content {
  transform: translateX(3px);
}

.home-garden-scene .garden-index {
  font-size: 0.94rem;
  letter-spacing: 0.14em;
}

.home-garden-scene .garden-copy strong {
  font-size: 1rem;
}

.home-garden-scene .garden-copy small {
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .hero-shell,
  .home-threshold-scene,
  .home-garden-scene {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-note-card--home,
  .home-threshold-side,
  .garden-aside {
    max-width: 520px;
    justify-self: start;
  }

  .hero-archive {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 98px;
    padding-bottom: 80px;
  }

  .hero-shell,
  .home-threshold-scene,
  .home-garden-scene {
    width: min(100%, calc(100vw - 28px));
  }

  .hero-main,
  .home-threshold-main,
  .home-garden-main {
    padding-left: 14px;
  }

  .hero-main::before,
  .home-threshold-main::before,
  .home-garden-main::before,
  .home-threshold-echo::before {
    display: none;
  }

  .hero-main {
    align-items: center;
    text-align: center;
    padding-left: 0;
  }

  .hero-signature {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 12px;
  }

  .hero-title,
  .page-title--privacy-hero,
  .page-title--gallery-hero,
  .page-title--friends-hero,
  .page-title--about-hero,
  .page-title--project-hero {
    align-items: center;
  }

  .hero-shell .hero-avatar {
    width: 94px;
    height: 94px;
  }

  .hero-lead,
  .hero-monologue,
  .hero-typewriter {
    max-width: 100%;
    text-align: center;
  }

  .hero-copy-stack,
  .hero-breath,
  .hero-archive-frame {
    width: 100%;
  }

  .hero-copy-stack,
  .hero-breath {
    justify-items: center;
  }

  .hero-monologue {
    padding-left: 0;
  }

  .hero-monologue::before {
    display: none;
  }

  .hero-note-card--home,
  .home-threshold-side,
  .garden-aside,
  .hero-archive-item {
    padding: 18px 18px 16px;
    border-radius: 18px;
  }

  .home-threshold-scene .section-heading-group--left,
  .home-garden-scene .section-heading-group--left {
    align-items: flex-start;
    text-align: left;
  }

  .home-threshold-scene {
    margin-top: -10px;
    padding-top: 56px;
  }

  .home-threshold-lead,
  .home-threshold-echo {
    max-width: 100%;
    padding-left: 0;
    text-align: left;
  }

  .home-threshold-points {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .home-garden-scene .garden-item {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .home-garden-scene .garden-item::after {
    display: none;
  }

  .scroll-hint {
    bottom: 8px;
  }
}

/* ---- 20260318i Visual Retune ---- */
.intro::before {
  opacity: 0.56;
}

.intro-text {
  gap: 12px;
  padding: 26px 30px;
  animation: intro-breathe 2.4s ease-in-out both;
}

@keyframes intro-word {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.988);
    filter: blur(12px);
  }
  30% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes intro-breathe {
  0% {
    transform: translateY(6px) scale(0.994);
    opacity: 0;
  }
  28%,
  72% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-2px) scale(1.005);
    opacity: 1;
  }
}

.page-transition-overlay {
  transform: scale(1.008);
  transition:
    opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.46s cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 0.46s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-transition-overlay::before {
  transition: opacity 0.42s ease, transform 0.52s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-transition-overlay::after {
  transition: opacity 0.4s ease;
}

.page-transition-overlay.active {
  backdrop-filter: blur(10px) saturate(112%);
}

/* ---- 20260318j Home Note + Aside De-card Pass ---- */
.hero-note-card--home,
.about-hero-note,
.project-intro-note,
.friends-hero-note,
.friends-reserved-card {
  box-shadow: none;
  backdrop-filter: none;
}

.hero-note-card--home {
  width: min(100%, 280px);
  margin-bottom: 18px;
  padding: 8px 0 12px 28px;
  align-self: end;
  overflow: visible;
  background: none;
  border: none;
  border-radius: 0;
}

.hero-note-card--home::before {
  left: 0;
  top: 8px;
  bottom: 12px;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.78), rgba(174, 181, 239, 0.18), transparent);
}

.hero-note-card--home::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 88px;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 239, 230, 0.34), rgba(245, 239, 230, 0.02));
}

.hero-note-card--home .hero-note-label,
.hero-note-card--home .hero-note-list,
.hero-note-card--home .hero-note-tail {
  position: relative;
  z-index: 1;
  padding-left: 12px;
}

.hero-note-card--home .hero-note-label {
  margin-bottom: 14px;
  color: rgba(245, 239, 230, 0.8);
  font-family: var(--font-zh-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.hero-note-list {
  display: grid;
  gap: 12px;
}

.hero-note-list li {
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(245, 239, 230, 0.08);
}

.hero-note-list li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.hero-note-list strong {
  display: block;
  color: rgba(245, 239, 230, 0.86);
  font-family: var(--font-zh-display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.hero-note-list span {
  color: rgba(245, 239, 230, 0.62);
  font-size: 0.82rem;
  line-height: 1.9;
}

.hero-note-tail {
  margin-top: 14px;
  color: rgba(245, 239, 230, 0.52);
  font-size: 0.8rem;
  line-height: 1.88;
}

.home-threshold-side,
.garden-aside {
  padding: 6px 0 8px 18px;
  border-radius: 0;
  background: none;
  border: none;
}

.home-threshold-side::before,
.garden-aside::before {
  left: 0;
  top: 12px;
  bottom: 12px;
}

.home-threshold-side::after,
.garden-aside::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 72px;
  height: 1px;
}

.home-threshold-side::after {
  background: linear-gradient(90deg, rgba(174, 181, 239, 0.34), rgba(174, 181, 239, 0.02));
}

.garden-aside::after {
  background: linear-gradient(90deg, rgba(215, 190, 160, 0.34), rgba(215, 190, 160, 0.02));
}

.home-threshold-side-label,
.garden-aside-label,
.home-threshold-side p,
.garden-aside p {
  padding-left: 12px;
}

.home-threshold-side-label,
.garden-aside-label {
  margin-bottom: 10px;
}

.garden-aside p + p {
  margin-top: 10px;
}

.about-hero-note {
  align-self: end;
  max-width: 18.5rem;
  padding: 10px 0 14px 24px;
  background: none;
  border: none;
  border-radius: 0;
  position: relative;
}

.about-hero-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 14px;
  width: 1px;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.78), rgba(174, 181, 239, 0.2), transparent);
}

.about-hero-note::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 239, 230, 0.34), rgba(245, 239, 230, 0.02));
}

.about-hero-note-label,
.about-hero-note p,
.about-hero-note-list {
  padding-left: 12px;
}

.about-hero-note p {
  margin-top: 14px;
}

.about-hero-note-list {
  gap: 10px;
}

.about-hero-note-list li {
  position: relative;
  padding-left: 14px;
  color: rgba(245, 239, 230, 0.56);
}

.about-hero-note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9em;
  width: 8px;
  height: 1px;
  background: linear-gradient(90deg, rgba(174, 181, 239, 0.88), rgba(174, 181, 239, 0.08));
}

.about-profile-scene {
  max-width: 980px;
  margin-inline: auto;
  grid-template-columns: minmax(130px, 170px) minmax(0, 1fr);
  gap: 40px;
}

.about-profile-note {
  grid-column: 2;
  justify-self: start;
  max-width: 320px;
  margin-top: 4px;
  padding: 10px 0 12px 22px;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.about-profile-note::before {
  left: 0;
  top: 8px;
  bottom: 10px;
}

.project-intro-note {
  align-self: start;
  padding: 10px 0 14px 24px;
  background: none;
  border: none;
  border-radius: 0;
  position: relative;
}

.project-intro-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.82), rgba(174, 181, 239, 0.18), transparent);
}

.project-intro-note::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 96px;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 239, 230, 0.34), rgba(245, 239, 230, 0.02));
}

.project-intro-note-label,
.project-intro-note p,
.project-intro-note .section-more {
  padding-left: 12px;
}

.project-entry-body {
  padding: 20px 22px 18px 24px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.008) 46%),
    rgba(10, 10, 15, 0.38);
  border-color: rgba(245, 239, 230, 0.06);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.project-entry-body::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 34%);
}

.project-entry:hover .project-entry-body {
  transform: translateX(4px);
  border-color: rgba(215, 190, 160, 0.12);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
}

.project-entry:nth-child(odd) .project-entry-body {
  margin-right: 24px;
}

.project-entry:nth-child(even) .project-entry-body {
  margin-left: 12px;
}

.project-entry .project-summary {
  color: rgba(245, 239, 230, 0.72);
}

.friends-hero-note,
.friends-reserved-card {
  background: none;
  border: none;
  border-radius: 0;
  position: relative;
}

.friends-hero-note {
  align-self: end;
  padding: 10px 0 14px 24px;
}

.friends-hero-note::before,
.friends-reserved-card::before {
  left: 0;
}

.friends-hero-note::after,
.friends-reserved-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
}

.friends-hero-note::after {
  width: 92px;
  background: linear-gradient(90deg, rgba(198, 165, 185, 0.36), rgba(198, 165, 185, 0.02));
}

.friends-hero-note-label,
.friends-hero-note p {
  padding-left: 12px;
}

.friends-reserved-card {
  width: min(100%, 300px);
  padding: 12px 0 14px 24px;
  overflow: visible;
}

.friends-reserved-card::before {
  top: 10px;
  bottom: 12px;
  background: linear-gradient(180deg, rgba(198, 165, 185, 0.72), rgba(215, 190, 160, 0.16), transparent);
}

.friends-reserved-card::after {
  width: 88px;
  background: linear-gradient(90deg, rgba(245, 239, 230, 0.32), rgba(245, 239, 230, 0.02));
}

.friends-reserved-label,
.friends-reserved-lines {
  padding-left: 12px;
}

.friends-site-card,
.friends-principle-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.006)),
    rgba(14, 13, 20, 0.28);
  border-color: rgba(245, 239, 230, 0.07);
  box-shadow: none;
}

.friends-site-card:hover,
.friends-principle-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .about-profile-scene {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-profile-note {
    grid-column: auto;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-note-card--home,
  .home-threshold-side,
  .garden-aside,
  .about-hero-note,
  .project-intro-note,
  .friends-hero-note,
  .friends-reserved-card,
  .about-profile-note {
    padding: 10px 0 12px 16px;
    border-radius: 0;
  }

  .hero-note-card--home .hero-note-label,
  .hero-note-card--home .hero-note-list,
  .hero-note-card--home .hero-note-tail,
  .home-threshold-side-label,
  .garden-aside-label,
  .home-threshold-side p,
  .garden-aside p,
  .about-hero-note-label,
  .about-hero-note p,
  .about-hero-note-list,
  .project-intro-note-label,
  .project-intro-note p,
  .project-intro-note .section-more,
  .friends-hero-note-label,
  .friends-hero-note p,
  .friends-reserved-label,
  .friends-reserved-lines {
    padding-left: 10px;
  }

  .project-entry:nth-child(odd) .project-entry-body,
  .project-entry:nth-child(even) .project-entry-body {
    margin-left: 0;
    margin-right: 0;
  }
}

.about-method-scene .craft-grid {
  gap: 18px 22px;
}

.about-method-scene .craft-item {
  overflow: visible;
  padding: 18px 0 14px 24px;
  border-radius: 0;
  background: none;
  border: none;
}

.about-method-scene .craft-item::before {
  left: 0;
  top: 8px;
  bottom: 10px;
}

.about-method-scene .craft-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 239, 230, 0.32), rgba(245, 239, 230, 0.02));
}

.about-method-scene .craft-item:nth-child(2),
.about-method-scene .craft-item:nth-child(3),
.about-method-scene .craft-item:nth-child(4) {
  transform: none;
}

.about-method-scene .craft-item-index,
.about-method-scene .craft-item h3,
.about-method-scene .craft-item p {
  padding-left: 12px;
}

.about-method-scene .craft-item p {
  color: rgba(245, 239, 230, 0.66);
}

.about-affinity-scene .affinity-grid {
  gap: 20px;
}

.about-affinity-scene .affinity-card {
  overflow: visible;
  padding: 16px 0 12px 22px;
  border-radius: 0;
  background: none;
  border: none;
}

.about-affinity-scene .affinity-card::after {
  display: none;
}

.about-affinity-scene .affinity-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 10px;
  width: 1px;
}

.about-affinity-scene .affinity-card:nth-child(1)::before {
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.78), rgba(215, 190, 160, 0.08), transparent);
}

.about-affinity-scene .affinity-card:nth-child(2)::before {
  background: linear-gradient(180deg, rgba(174, 181, 239, 0.76), rgba(174, 181, 239, 0.08), transparent);
}

.about-affinity-scene .affinity-card:nth-child(3)::before {
  background: linear-gradient(180deg, rgba(198, 165, 185, 0.76), rgba(198, 165, 185, 0.08), transparent);
}

.about-affinity-scene .affinity-card h3,
.about-affinity-scene .affinity-card p {
  padding-left: 12px;
}

.about-affinity-scene .affinity-card p {
  max-width: 30ch;
  color: rgba(245, 239, 230, 0.68);
}

.about-affinity-scene .affinity-card:nth-child(2),
.about-affinity-scene .affinity-card:nth-child(3) {
  margin-top: 0;
}

@media (max-width: 640px) {
  .about-method-scene .craft-item,
  .about-affinity-scene .affinity-card {
    padding: 14px 0 10px 16px;
  }

  .about-method-scene .craft-item-index,
  .about-method-scene .craft-item h3,
  .about-method-scene .craft-item p,
  .about-affinity-scene .affinity-card h3,
  .about-affinity-scene .affinity-card p {
    padding-left: 10px;
  }
}

/* ---- 20260318j Projects / Gallery / Privacy Character Pass ---- */
.project-archive {
  gap: 28px;
  margin-top: 30px;
}

.project-archive::before {
  left: 92px;
  top: 18px;
  bottom: 26px;
  background: linear-gradient(180deg, rgba(245, 239, 230, 0.16), rgba(174, 181, 239, 0.1), transparent);
}

.project-entry {
  gap: 24px;
  padding: 6px 0 20px;
}

.project-entry-index {
  font-size: 0.92rem;
  letter-spacing: 0.18em;
}

.project-entry-date {
  color: rgba(245, 239, 230, 0.46);
}

.project-entry-body {
  padding: 16px 12px 18px 26px;
  border: none;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(9, 8, 13, 0.38), rgba(9, 8, 13, 0.1) 54%, transparent 100%);
  box-shadow: none;
  overflow: visible;
}

.project-entry-body::before {
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 1px;
  height: auto;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.8), rgba(215, 190, 160, 0.1), transparent);
}

.project-entry:nth-child(even) .project-entry-body::before {
  background: linear-gradient(180deg, rgba(174, 181, 239, 0.8), rgba(174, 181, 239, 0.1), transparent);
}

.project-entry-body::after {
  inset: auto auto auto 0;
  top: 0;
  width: 92px;
  height: 1px;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(245, 239, 230, 0.28), rgba(245, 239, 230, 0.02));
}

.project-entry:hover .project-entry-body {
  transform: translateX(6px);
  border-color: transparent;
  box-shadow: none;
}

.project-entry:nth-child(odd) .project-entry-body {
  margin-right: 12px;
}

.project-entry:nth-child(even) .project-entry-body {
  margin-left: 8px;
  background: linear-gradient(90deg, rgba(9, 8, 13, 0.36), rgba(24, 24, 39, 0.08) 60%, transparent 100%);
}

.project-entry-category {
  color: rgba(215, 190, 160, 0.78);
  font-size: 0.68rem;
}

.project-entry .project-name-alt {
  color: rgba(245, 239, 230, 0.46);
}

.project-entry .project-summary {
  max-width: 39rem;
  color: rgba(245, 239, 230, 0.68);
}

.project-stack-list--entry {
  gap: 6px 12px;
}

.project-stack-list--entry li {
  padding: 0;
  border: none;
  background: none;
  color: rgba(245, 239, 230, 0.46);
  font-size: 0.71rem;
}

.project-stack-list--entry li::before {
  content: "·";
  margin-right: 6px;
  color: rgba(245, 239, 230, 0.24);
}

.project-entry .project-links a {
  padding: 0;
  border: none;
  border-bottom: 1px solid rgba(174, 181, 239, 0.28);
  border-radius: 0;
  background: none;
  color: rgba(245, 239, 230, 0.82);
}

.project-entry .project-links a:hover {
  background: none;
  transform: translateX(6px);
  border-color: rgba(215, 190, 160, 0.34);
}

.project-future-rail {
  margin-top: 72px;
}

.project-future-rail-copy {
  max-width: 33rem;
  padding-left: 22px;
}

.project-future-rail-copy::before {
  top: 8px;
  bottom: 10px;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.76), rgba(174, 181, 239, 0.16), transparent);
}

.project-future-rail-copy .section-lead {
  color: rgba(245, 239, 230, 0.62);
}

.gallery-hero-note,
.gallery-ritual-card {
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
}

.gallery-hero-note {
  align-self: end;
  padding: 10px 0 14px 24px;
  position: relative;
}

.gallery-hero-note::before,
.gallery-ritual-card::before {
  content: "";
  position: absolute;
  left: 0;
  width: 1px;
}

.gallery-hero-note::before {
  top: 10px;
  bottom: 12px;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.8), rgba(174, 181, 239, 0.18), transparent);
}

.gallery-hero-note::after,
.gallery-ritual-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
}

.gallery-hero-note::after {
  width: 84px;
  background: linear-gradient(90deg, rgba(245, 239, 230, 0.32), rgba(245, 239, 230, 0.02));
}

.gallery-hero-note-label,
.gallery-hero-note p {
  padding-left: 12px;
}

.gallery-hero-note-label,
.gallery-ritual-label,
.gallery-grid-kicker,
.privacy-note-label {
  font-family: var(--font-zh-display);
  letter-spacing: 0.08em;
  text-transform: none;
}

.gallery-hero-note-label {
  color: rgba(245, 239, 230, 0.82);
}

.gallery-hero-note-label::before,
.privacy-note-label::before {
  display: none;
}

.gallery-ritual-card {
  align-self: start;
  padding: 10px 0 12px 24px;
  overflow: visible;
}

.gallery-ritual-card::before {
  top: 8px;
  bottom: 10px;
  background: linear-gradient(180deg, rgba(198, 165, 185, 0.76), rgba(215, 190, 160, 0.16), transparent);
}

.gallery-ritual-card::after {
  width: 72px;
  background: linear-gradient(90deg, rgba(245, 239, 230, 0.28), rgba(245, 239, 230, 0.02));
}

.gallery-ritual-label,
.gallery-ritual-list {
  padding-left: 12px;
}

.gallery-ritual-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(245, 239, 230, 0.8);
}

.gallery-ritual-list {
  gap: 8px;
}

.gallery-ritual-list li {
  position: relative;
  padding-left: 14px;
}

.gallery-ritual-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.92em;
  width: 7px;
  height: 1px;
  background: linear-gradient(90deg, rgba(198, 165, 185, 0.88), rgba(198, 165, 185, 0.08));
}

.gallery-grid-kicker {
  color: rgba(245, 239, 230, 0.72);
}

.gallery-grid-kicker::before {
  background: linear-gradient(90deg, rgba(198, 165, 185, 0.72), rgba(198, 165, 185, 0.06));
}

.gallery-grid-wrap.gallery {
  margin-top: 26px;
  padding: 14px 4px 0;
  border-radius: 0;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}

.gallery-grid-wrap.gallery::before {
  inset: auto auto auto 0;
  top: 0;
  width: 120px;
  height: 1px;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(245, 239, 230, 0.26), rgba(245, 239, 230, 0.02));
}

.gallery-grid-wrap.gallery::after {
  right: auto;
  left: 12%;
  top: 18%;
  width: 58%;
  height: 72%;
  border-radius: 36px;
  background: radial-gradient(ellipse at center, rgba(8, 7, 12, 0.18), transparent 72%);
  filter: blur(18px);
}

.gallery-grid {
  columns: 4 210px;
  column-gap: 22px;
}

.gallery-item {
  margin-bottom: 22px;
  padding: 10px 10px 34px;
  border-radius: 8px 8px 18px 18px;
  border: 1px solid rgba(245, 239, 230, 0.14);
  background: linear-gradient(180deg, rgba(252, 249, 243, 0.96), rgba(232, 227, 217, 0.82));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  overflow: visible;
}

.gallery-item::before {
  top: auto;
  left: 12px;
  bottom: 10px;
  min-width: 0;
  height: auto;
  padding: 0;
  border: none;
  background: none;
  color: rgba(27, 24, 20, 0.46);
  font-family: var(--font-note);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  backdrop-filter: none;
}

.gallery-item::after {
  content: "↗";
  right: 12px;
  bottom: 8px;
  width: auto;
  height: auto;
  border: none;
  border-radius: 0;
  background: none;
  color: rgba(27, 24, 20, 0.52);
  font-size: 0.84rem;
  opacity: 0.72;
  transform: translateY(0);
  backdrop-filter: none;
}

.gallery-item img {
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  filter: saturate(0.96) contrast(1.03);
}

.gallery-item:hover {
  transform: translateY(-8px) rotate(0deg);
  border-color: rgba(215, 190, 160, 0.38);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover::after {
  opacity: 1;
  color: rgba(99, 84, 118, 0.76);
  background: none;
}

.gallery-item:hover img {
  transform: scale(1.02);
  filter: saturate(1) brightness(1.02);
}

.gallery-item:nth-child(6n + 2) {
  transform: rotate(-1.15deg);
}

.gallery-item:nth-child(6n + 3) {
  transform: rotate(0.85deg);
}

.gallery-item:nth-child(6n + 5) {
  transform: rotate(-0.65deg);
}

.gallery-item:nth-child(6n + 6) {
  transform: rotate(1deg);
}

.gallery-coda {
  margin-top: 12px;
  color: rgba(245, 239, 230, 0.54);
  font-size: 0.78rem;
}

.privacy-note-label {
  color: rgba(245, 239, 230, 0.8);
}

.privacy-hero-note,
.privacy-intro-note,
.privacy-contact-note {
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  position: relative;
  padding: 10px 10px 14px 24px;
}

.privacy-hero-note::before,
.privacy-intro-note::before,
.privacy-contact-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 12px;
  width: 1px;
}

.privacy-hero-note::before {
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.78), rgba(174, 181, 239, 0.18), transparent);
}

.privacy-intro-note::before {
  background: linear-gradient(180deg, rgba(174, 181, 239, 0.78), rgba(174, 181, 239, 0.1), transparent);
}

.privacy-contact-note::before {
  background: linear-gradient(180deg, rgba(198, 165, 185, 0.76), rgba(215, 190, 160, 0.14), transparent);
}

.privacy-hero-note::after,
.privacy-intro-note::after,
.privacy-contact-note::after,
.privacy-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 1px;
}

.privacy-hero-note::after,
.privacy-intro-note::after,
.privacy-contact-note::after {
  width: 92px;
  background: linear-gradient(90deg, rgba(245, 239, 230, 0.3), rgba(245, 239, 230, 0.02));
}

.privacy-hero-note p,
.privacy-intro-note p,
.privacy-contact-note p,
.privacy-note-list,
.privacy-contact-note .section-more {
  padding-left: 12px;
}

.privacy-note-list {
  gap: 8px;
  margin-top: 12px;
}

.privacy-note-list li {
  color: rgba(245, 239, 230, 0.62);
}

.privacy-text {
  max-width: 40rem;
}

.privacy-text p {
  color: rgba(245, 239, 230, 0.72);
  line-height: 1.92;
}

.privacy-boundary-grid {
  gap: 26px;
  margin-top: 28px;
}

.privacy-card {
  min-height: auto;
  padding: 12px 12px 16px 24px;
  border: none;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(9, 8, 13, 0.28), rgba(9, 8, 13, 0.06) 60%, transparent 100%);
  box-shadow: none;
}

.privacy-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.76), rgba(215, 190, 160, 0.08), transparent);
}

.privacy-card:nth-child(2)::before {
  background: linear-gradient(180deg, rgba(174, 181, 239, 0.76), rgba(174, 181, 239, 0.08), transparent);
}

.privacy-card:nth-child(2) {
  margin-top: 26px;
}

.privacy-card::after {
  width: 78px;
  background: linear-gradient(90deg, rgba(245, 239, 230, 0.26), rgba(245, 239, 230, 0.02));
}

.privacy-card h3,
.privacy-card .privacy-text {
  padding-left: 12px;
}

.privacy-card h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.privacy-contact-scene {
  margin-top: 68px;
}

.privacy-contact-note .section-more {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .gallery-grid {
    columns: 3 172px;
  }

  .project-entry {
    gap: 18px;
  }

  .privacy-card:nth-child(2) {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .project-entry {
    gap: 10px;
    padding-bottom: 22px;
  }

  .project-entry-body {
    padding: 14px 0 14px 18px;
  }

  .project-entry-body::before {
    display: block;
    top: 8px;
    bottom: 8px;
  }

  .project-entry-body::after {
    width: 72px;
  }

  .gallery-hero-note,
  .gallery-ritual-card,
  .privacy-hero-note,
  .privacy-intro-note,
  .privacy-contact-note,
  .privacy-card {
    padding: 10px 0 12px 16px;
    border-radius: 0;
  }

  .gallery-hero-note-label,
  .gallery-hero-note p,
  .gallery-ritual-label,
  .gallery-ritual-list,
  .privacy-hero-note p,
  .privacy-intro-note p,
  .privacy-contact-note p,
  .privacy-note-list,
  .privacy-contact-note .section-more,
  .privacy-card h3,
  .privacy-card .privacy-text {
    padding-left: 10px;
  }

  .gallery-grid {
    columns: 2 148px;
    column-gap: 14px;
  }

  .gallery-grid-wrap.gallery {
    padding-top: 10px;
  }

  .gallery-item {
    margin-bottom: 16px;
    padding: 8px 8px 26px;
    border-radius: 8px 8px 14px 14px;
    transform: none;
  }

  .gallery-item::before {
    left: 10px;
    bottom: 7px;
    font-size: 0.66rem;
  }

  .gallery-item::after {
    right: 10px;
    bottom: 6px;
    font-size: 0.78rem;
  }
}

/* ---- 20260318l Projects Archive Pass ---- */
.project-overview-rail {
  width: min(100%, 400px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  align-self: end;
  justify-self: end;
}

.project-overview-pill,
.project-overview-link {
  min-height: auto;
  padding: 8px 0 10px 18px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: none;
  position: relative;
}

.project-overview-pill::before,
.project-overview-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 10px;
  width: 1px;
}

.project-overview-pill::after,
.project-overview-link::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 68px;
  height: 1px;
}

.project-overview-pill:nth-child(1)::before {
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.8), rgba(215, 190, 160, 0.08), transparent);
}

.project-overview-pill:nth-child(2)::before {
  background: linear-gradient(180deg, rgba(174, 181, 239, 0.8), rgba(174, 181, 239, 0.08), transparent);
}

.project-overview-link::before {
  background: linear-gradient(180deg, rgba(198, 165, 185, 0.78), rgba(198, 165, 185, 0.08), transparent);
}

.project-overview-pill::after,
.project-overview-link::after {
  background: linear-gradient(90deg, rgba(245, 239, 230, 0.28), rgba(245, 239, 230, 0.02));
}

.project-overview-pill strong,
.project-overview-pill em,
.project-overview-link {
  padding-left: 10px;
}

.project-overview-pill {
  gap: 6px;
}

.project-overview-pill strong {
  font-size: 0.92rem;
  letter-spacing: 0.12em;
}

.project-overview-pill em {
  color: rgba(245, 239, 230, 0.44);
  font-size: 0.68rem;
}

.project-overview-link {
  grid-column: 1 / -1;
  color: rgba(245, 239, 230, 0.7);
  transition: color 0.3s ease, transform 0.3s ease;
}

.project-overview-link:hover {
  background: none;
  border-color: transparent;
  color: rgba(245, 239, 230, 0.92);
  transform: translateX(4px);
}

.project-intro-copy {
  max-width: 36rem;
}

.project-entry {
  gap: 26px;
}

.project-entry-axis {
  padding-top: 12px;
}

.project-entry-body {
  width: min(100%, 760px);
  justify-self: start;
  display: block;
  padding-right: 18px;
}

.project-entry:nth-child(2n) .project-entry-body {
  width: min(100%, 690px);
}

.project-entry:nth-child(3n) .project-entry-body {
  width: min(100%, 720px);
}

.project-entry:nth-child(4n) .project-entry-body {
  width: min(100%, 640px);
}

.project-entry:nth-child(odd) .project-entry-body {
  margin-right: 0;
}

.project-entry:nth-child(even) .project-entry-body {
  margin-left: 0;
}

.project-entry-meta {
  margin-bottom: 8px;
}

.project-entry-head {
  max-width: 32rem;
}

.project-entry-title-wrap h3 {
  font-size: 1.4rem;
}

.project-entry .project-summary {
  max-width: 33rem;
  margin-top: 12px;
  line-height: 1.9;
}

.project-stack-list--entry,
.project-entry .project-links {
  max-width: 33rem;
}

.project-entry .project-links {
  margin-top: 14px;
}

.project-entry .project-links a {
  font-size: 0.76rem;
}

.project-future-rail-copy {
  max-width: 30rem;
}

@media (max-width: 900px) {
  .project-overview-rail {
    width: min(100%, 520px);
    justify-self: start;
  }

  .project-entry-body,
  .project-entry:nth-child(2n) .project-entry-body,
  .project-entry:nth-child(3n) .project-entry-body,
  .project-entry:nth-child(4n) .project-entry-body {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .project-overview-rail {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .project-overview-link {
    grid-column: auto;
  }

  .project-overview-pill,
  .project-overview-link {
    padding: 8px 0 10px 14px;
  }

  .project-overview-pill strong,
  .project-overview-pill em,
  .project-overview-link {
    padding-left: 8px;
  }

  .project-entry-head,
  .project-entry .project-summary,
  .project-stack-list--entry,
  .project-entry .project-links {
    max-width: 100%;
  }

  .project-entry-body {
    padding-right: 0;
  }
}

/* ---- 20260318o Projects Micro Pass ---- */
.project-overview-rail {
  width: min(100%, 420px);
  gap: 16px 20px;
}

.project-overview-pill strong {
  font-size: 0.96rem;
}

.project-overview-pill em,
.project-overview-link {
  line-height: 1.72;
}

.project-intro-note p,
.project-entry .project-summary {
  color: rgba(245, 239, 230, 0.72);
}

.project-stack-list--entry li {
  color: rgba(245, 239, 230, 0.5);
}

@media (max-width: 640px) {
  .project-entry {
    gap: 12px;
  }

  .project-entry-body {
    padding-bottom: 16px;
  }
}

/* ---- 20260318q Friends Micro Pass ---- */
.friends-manifest-grid {
  gap: 22px;
  align-items: start;
}

.friends-site-card,
.friends-principle-card {
  padding: 16px 0 14px 24px;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  overflow: visible;
}

.friends-site-card::before,
.friends-principle-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 10px;
  width: 1px;
}

.friends-site-card::before {
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.72), rgba(215, 190, 160, 0.08), transparent);
}

.friends-principle-card::before {
  background: linear-gradient(180deg, rgba(174, 181, 239, 0.72), rgba(174, 181, 239, 0.08), transparent);
}

.friends-site-card::after,
.friends-principle-card::after {
  inset: auto auto auto 0;
  top: 0;
  width: 84px;
  height: 1px;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(245, 239, 230, 0.28), rgba(245, 239, 230, 0.02));
}

.friends-site-card:hover,
.friends-principle-card:hover {
  transform: translateX(4px);
  border-color: transparent;
  box-shadow: none;
}

.friends-site-label,
.friends-site-meta,
.friends-principle-list,
.friends-principle-note,
.friends-principle-card .section-more {
  padding-left: 12px;
}

.friends-site-label {
  margin-bottom: 12px;
  color: rgba(245, 239, 230, 0.66);
}

.friends-site-meta {
  gap: 10px;
}

.friends-site-meta div {
  padding-bottom: 10px;
  border-bottom-color: rgba(245, 239, 230, 0.05);
}

.friends-principle-list li {
  color: rgba(245, 239, 230, 0.72);
}

.friends-principle-note {
  margin-top: 14px;
  color: rgba(245, 239, 230, 0.54);
}

.friends-closing-note {
  margin-top: 22px;
  padding-top: 18px;
  color: rgba(245, 239, 230, 0.52);
}

@media (max-width: 640px) {
  .friends-site-card,
  .friends-principle-card {
    padding: 14px 0 12px 16px;
    border-radius: 0;
  }

  .friends-site-label,
  .friends-site-meta,
  .friends-principle-list,
  .friends-principle-note,
  .friends-principle-card .section-more {
    padding-left: 10px;
  }
}

body[data-scene="blog"] .bg-tint {
  background:
    radial-gradient(ellipse at 18% 16%, rgba(245, 239, 230, 0.12), transparent 34%),
    radial-gradient(ellipse at 74% 18%, rgba(174, 181, 239, 0.11), transparent 36%),
    radial-gradient(ellipse at 80% 82%, rgba(215, 190, 160, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(8, 7, 12, 0.2), rgba(8, 7, 12, 0.82));
}

.blog-hero,
.blog-intro-scene,
.blog-archive-scene {
  width: min(1080px, calc(100vw - 40px));
  margin-inline: auto;
}

.blog-hero {
  padding-top: 126px;
  padding-bottom: 58px;
}

.blog-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
  gap: 38px;
  align-items: end;
}

.page-title--blog-hero {
  align-items: flex-start;
}

.blog-hero-subtitle {
  max-width: 34rem;
}

.blog-overview-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  align-self: stretch;
  padding-top: 30px;
}

.blog-overview-pill,
.blog-overview-link {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 0 14px 16px;
  min-height: 84px;
  text-decoration: none;
}

.blog-overview-pill::before,
.blog-overview-link::before {
  content: "";
  position: absolute;
  inset: 0 auto 8px 0;
  width: 1px;
}

.blog-overview-pill::after,
.blog-overview-link::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 76px;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 239, 230, 0.28), rgba(245, 239, 230, 0.02));
}

.blog-overview-pill:nth-child(1)::before {
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.82), rgba(215, 190, 160, 0.08), transparent);
}

.blog-overview-pill:nth-child(2)::before {
  background: linear-gradient(180deg, rgba(174, 181, 239, 0.82), rgba(174, 181, 239, 0.08), transparent);
}

.blog-overview-pill:nth-child(3)::before {
  background: linear-gradient(180deg, rgba(160, 198, 185, 0.82), rgba(160, 198, 185, 0.08), transparent);
}

.blog-overview-link::before {
  background: linear-gradient(180deg, rgba(198, 165, 185, 0.82), rgba(198, 165, 185, 0.08), transparent);
}

.blog-overview-pill strong,
.blog-overview-pill em,
.blog-overview-link {
  padding-left: 10px;
}

.blog-overview-pill strong {
  font-size: 0.96rem;
  letter-spacing: 0.12em;
}

.blog-overview-pill em {
  color: rgba(245, 239, 230, 0.46);
  font-size: 0.68rem;
  font-style: normal;
}

.blog-overview-link {
  grid-column: 1 / -1;
  justify-content: flex-end;
  color: rgba(245, 239, 230, 0.7);
  letter-spacing: 0.04em;
  transition: color 0.3s ease, transform 0.3s ease;
}

.blog-overview-link:hover {
  color: rgba(245, 239, 230, 0.92);
  transform: translateX(4px);
}

.blog-intro-scene {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 300px);
  gap: 34px;
  padding: 0 0 34px;
}

.blog-intro-main h2 {
  font-family: var(--font-zh-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.blog-intro-copy {
  max-width: 37rem;
}

.blog-intro-copy p {
  color: rgba(245, 239, 230, 0.8);
  line-height: 1.95;
  margin-top: 14px;
}

.blog-intro-note {
  align-self: end;
  padding: 24px 0 8px 18px;
  border-left: 1px solid rgba(245, 239, 230, 0.16);
}

.blog-intro-note-label {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  font-family: var(--font-note);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.46);
}

.blog-intro-note p {
  color: rgba(245, 239, 230, 0.68);
  line-height: 1.9;
  margin-top: 10px;
}

.blog-archive-scene {
  padding-bottom: 56px;
}

.blog-search {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.blog-search-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.58);
}

.blog-search-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(8, 10, 18, 0.42);
  backdrop-filter: blur(10px);
}

.blog-search-field i {
  color: #f4a7c5;
  opacity: 0.85;
}

.blog-search-input {
  flex: 1;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  outline: none;
}

.blog-search-input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.blog-search-hint {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.62);
}

.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.blog-filter-chip {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.blog-filter-chip.is-active,
.blog-filter-chip:hover {
  border-color: rgba(244, 167, 197, 0.42);
  background: rgba(244, 167, 197, 0.12);
}

.blog-comments {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-comments-title {
  margin: 0 0 16px;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* ---- 20260709c Blog reading redesign ---- */
.blog-card-list {
  gap: 28px;
}

.blog-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(215, 190, 160, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    rgba(10, 12, 18, 0.62);
  box-shadow: 0 24px 56px rgba(4, 5, 10, 0.22);
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(215, 190, 160, 0.28);
  box-shadow: 0 28px 64px rgba(4, 5, 10, 0.28);
}

.blog-card-cover {
  display: block;
  overflow: hidden;
  background: rgba(8, 10, 14, 0.88);
}

.blog-card-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: center 22%;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-card-cover img {
  transform: scale(1.02);
}

.blog-card-body {
  display: grid;
  gap: 14px;
  padding: 22px 24px 24px;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: rgba(245, 239, 230, 0.52);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.blog-card-meta time {
  font-family: var(--font-en);
  color: rgba(245, 239, 230, 0.68);
}

.blog-card-meta-sep {
  opacity: 0.45;
}

.blog-card-pin {
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(198, 165, 185, 0.24);
  color: rgba(245, 239, 230, 0.72);
}

.blog-card-title {
  margin: 0;
  font-family: var(--font-zh-display);
  font-size: clamp(1.34rem, 2.1vw, 1.72rem);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: 0.03em;
}

.blog-card-title a {
  color: rgba(245, 239, 230, 0.96);
  text-decoration: none;
  transition: color 0.28s ease;
}

.blog-card-title a:hover {
  color: rgba(215, 190, 160, 0.98);
}

.blog-card-excerpt {
  margin: 0;
  max-width: 42rem;
  color: rgba(245, 239, 230, 0.72);
  font-size: 0.98rem;
  line-height: 1.88;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.blog-card .blog-tag-list {
  margin-top: 0;
}

.blog-card-foot {
  display: flex;
  justify-content: flex-end;
  padding-top: 4px;
}

.blog-card-read {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  color: rgba(215, 190, 160, 0.92);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card-read:hover {
  color: rgba(245, 239, 230, 0.96);
}

.blog-card-read-arrow {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card-read:hover .blog-card-read-arrow {
  transform: translateX(5px);
}

.blog-card-meta-chars {
  color: rgba(245, 239, 230, 0.5);
  font-variant-numeric: tabular-nums;
}

.blog-article {
  width: min(760px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 118px 0 48px;
}

.blog-article-header {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.blog-article-back {
  width: fit-content;
  color: rgba(245, 239, 230, 0.58);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color 0.28s ease;
}

.blog-article-back:hover {
  color: rgba(245, 239, 230, 0.92);
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: rgba(245, 239, 230, 0.56);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.blog-article-meta time {
  font-family: var(--font-en);
  color: rgba(245, 239, 230, 0.72);
}

.blog-article-meta-sep {
  opacity: 0.42;
}

.blog-article-title {
  margin: 0;
  font-family: var(--font-zh-display);
  font-size: clamp(1.9rem, 4vw, 2.65rem);
  font-weight: 500;
  line-height: 1.34;
  letter-spacing: 0.03em;
  color: rgba(245, 239, 230, 0.98);
}

.blog-article-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-article-cover {
  margin: 0 0 32px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(215, 190, 160, 0.12);
  background: rgba(8, 10, 14, 0.72);
  box-shadow: 0 22px 48px rgba(4, 5, 10, 0.24);
}

.blog-article-cover img {
  display: block;
  width: 100%;
  max-height: min(56vh, 520px);
  object-fit: contain;
  object-position: center center;
}

.blog-article-sheet {
  position: relative;
  padding: 0 0 12px;
}

.blog-article-body {
  color: rgba(245, 239, 230, 0.88);
  font-size: clamp(1.02rem, 0.98rem + 0.16vw, 1.1rem);
  line-height: 2;
  letter-spacing: 0.02em;
}

.blog-article-body > :first-child {
  margin-top: 0;
}

.blog-article-body--textual > p:first-of-type,
.blog-article-body--rich > p:first-of-type,
.blog-article-body--structured > p:first-of-type {
  margin-top: 0;
  color: rgba(245, 239, 230, 0.96);
  font-size: clamp(1.08rem, 1rem + 0.22vw, 1.18rem);
  line-height: 1.96;
}

.blog-article-body p + p {
  margin-top: 1.15em;
  text-indent: 2em;
}

.blog-article-body p:first-of-type {
  text-indent: 0;
}

.blog-article-body h2,
.blog-article-body h3,
.blog-article-body h4 {
  margin-top: 2em;
  margin-bottom: 0.65em;
  font-family: var(--font-zh-display);
  font-weight: 500;
  line-height: 1.45;
  color: rgba(245, 239, 230, 0.95);
}

.blog-article-body blockquote {
  margin: 1.4em 0;
  padding: 14px 18px 14px 20px;
  border-left: 3px solid rgba(215, 190, 160, 0.5);
  border-radius: 0 16px 16px 0;
  background: rgba(215, 190, 160, 0.06);
  color: rgba(245, 239, 230, 0.78);
}

.blog-article-body .blog-media-figure {
  margin: 1.8em 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.blog-article-body .blog-media-figure img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(4, 5, 10, 0.28);
}

.blog-article-nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(245, 239, 230, 0.1);
}

.blog-article-nav-link {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(245, 239, 230, 0.08);
  background: rgba(255, 255, 255, 0.025);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.28s ease, background 0.28s ease, transform 0.28s ease;
}

.blog-article-nav-link:hover {
  border-color: rgba(215, 190, 160, 0.24);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.blog-article-nav-link--prev {
  justify-items: start;
}

.blog-article-nav-link--next {
  justify-items: end;
  text-align: right;
}

.blog-article-nav-link--hub {
  align-self: center;
  justify-self: center;
  padding: 10px 16px;
  color: rgba(215, 190, 160, 0.9);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.blog-article-nav-link--empty {
  visibility: hidden;
}

.blog-article-nav-label {
  color: rgba(215, 190, 160, 0.66);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.blog-article-nav-link strong {
  font-weight: 500;
  line-height: 1.55;
  color: rgba(245, 239, 230, 0.92);
}

.blog-article-footer {
  margin-top: 28px;
  padding-top: 18px;
}

.blog-article-signoff {
  margin: 0;
  color: rgba(215, 190, 160, 0.62);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-align: center;
}

@media (max-width: 720px) {
  .blog-article {
    width: min(100vw - 28px, 100%);
    padding-top: 104px;
  }

  .blog-card-cover img {
    aspect-ratio: 16 / 10;
  }

  .blog-card-body {
    padding: 18px 18px 20px;
  }

  .blog-article-nav {
    grid-template-columns: 1fr;
  }

  .blog-article-nav-link--empty {
    display: none;
  }

  .blog-article-nav-link--next {
    text-align: left;
    justify-items: start;
  }
}

/* ---- 20260709d Blog polish ---- */
.blog-hero-subtitle {
  max-width: 28rem;
  color: rgba(245, 239, 230, 0.68);
}

.blog-card--lead {
  border-color: rgba(215, 190, 160, 0.22);
}

.blog-card--lead .blog-card-title {
  font-size: clamp(1.48rem, 2.4vw, 1.88rem);
}

.blog-card-cover {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  max-height: 360px;
  padding: 12px 12px 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(215, 190, 160, 0.08), transparent 42%),
    rgba(6, 8, 12, 0.92);
}

.blog-card-cover img {
  width: auto;
  max-width: 100%;
  max-height: 340px;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center center;
  border-radius: 14px;
}

.blog-card-cover::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48px;
  background: linear-gradient(180deg, transparent, rgba(10, 12, 18, 0.88));
  pointer-events: none;
}

.blog-card-body {
  gap: 12px;
  padding: 20px 22px 22px;
}

.blog-card-excerpt {
  font-size: 0.94rem;
  line-height: 1.82;
  -webkit-line-clamp: 2;
  color: rgba(245, 239, 230, 0.66);
}

.blog-card-foot {
  justify-content: flex-start;
  padding-top: 2px;
}

.blog-article {
  width: min(720px, calc(100vw - 36px));
}

.blog-article-header {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(245, 239, 230, 0.08);
}

.blog-article-cover {
  margin: 0 0 28px;
  padding: 16px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 12%, rgba(215, 190, 160, 0.1), transparent 48%),
    rgba(6, 8, 12, 0.78);
}

.blog-article-cover img {
  max-height: min(62vh, 560px);
  margin: 0 auto;
  border-radius: 12px;
}

.blog-article-sheet {
  padding: 28px 30px 32px;
  border-radius: 24px;
  border: 1px solid rgba(245, 239, 230, 0.07);
  background:
    linear-gradient(180deg, rgba(14, 16, 22, 0.82), rgba(10, 12, 18, 0.76));
  box-shadow: 0 24px 64px rgba(4, 5, 10, 0.28);
  backdrop-filter: blur(10px);
}

.blog-article-body {
  font-size: 1.06rem;
  line-height: 2.05;
  letter-spacing: 0.025em;
}

.blog-article-body--textual > p:first-of-type,
.blog-article-body--rich > p:first-of-type,
.blog-article-body--structured > p:first-of-type {
  font-size: 1.12rem;
  line-height: 2;
  color: rgba(245, 239, 230, 0.98);
}

.blog-article-body p + p {
  margin-top: 1.05em;
}

.blog-article-body p.blog-article-lead {
  text-indent: 0;
  margin-bottom: 0.35em;
  padding: 0 0 0 18px;
  border-left: 2px solid rgba(215, 190, 160, 0.45);
  font-size: 1.14rem;
  line-height: 2.02;
  color: rgba(245, 239, 230, 0.98);
}

.blog-article-body p.blog-article-lead + p {
  text-indent: 0;
  margin-top: 1.25em;
}

.blog-article-nav {
  margin-top: 32px;
  padding-top: 22px;
}

.blog-article-signoff {
  opacity: 0.72;
}

@media (max-width: 720px) {
  .blog-article-sheet {
    padding: 22px 18px 26px;
  }

  .blog-card-cover {
    min-height: 160px;
    max-height: 280px;
    padding: 10px 10px 0;
  }

  .blog-card-cover img {
    max-height: 260px;
  }
}

/* ---- 20260709f Blog reading typography (65ch / 1.75–1.8 rhythm) ---- */
.blog-hero {
  padding-bottom: 28px;
}

.blog-hero-inner {
  gap: 18px;
}

.page-title--blog-hero .page-title-zh {
  letter-spacing: 0.06em;
}

.blog-archive-scene {
  width: min(680px, calc(100vw - 36px));
  margin-inline: auto;
}

.blog-archive-scene .section-heading-group {
  margin-bottom: 22px;
}

.blog-archive-scene .section-heading {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  letter-spacing: 0.12em;
}

.blog-archive-scene .section-lead {
  margin-top: 8px;
  font-size: 0.92rem;
  color: rgba(245, 239, 230, 0.58);
}

.blog-card-list {
  counter-reset: blog-card;
  gap: 32px;
}

.blog-card {
  counter-increment: blog-card;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(4, 5, 10, 0.18);
}

.blog-card-body {
  position: relative;
}

.blog-card-body::before {
  content: counter(blog-card, decimal-leading-zero);
  position: absolute;
  top: 0;
  right: 0;
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: rgba(245, 239, 230, 0.22);
}

.blog-card-read {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(215, 190, 160, 0.28);
}

.blog-card-read:hover {
  transform: none;
  border-bottom-color: rgba(245, 239, 230, 0.5);
}

.blog-article {
  width: min(42rem, calc(100vw - 32px));
  padding-top: 112px;
  padding-bottom: 56px;
}

.blog-article-title {
  font-size: clamp(1.75rem, 3.6vw, 2.35rem);
  line-height: 1.38;
  text-wrap: balance;
}

.blog-article-cover {
  margin-bottom: 24px;
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
}

.blog-article-cover img {
  width: 100%;
  max-height: min(58vh, 480px);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(4, 5, 10, 0.35);
}

.blog-article-sheet {
  padding: 32px 34px 36px;
  border-radius: 20px;
  border: 1px solid rgba(245, 239, 230, 0.06);
  background:
    linear-gradient(165deg, rgba(16, 18, 26, 0.88) 0%, rgba(10, 12, 18, 0.82) 100%);
  box-shadow:
    0 1px 0 rgba(245, 239, 230, 0.04) inset,
    0 28px 70px rgba(4, 5, 10, 0.32);
}

.blog-article-body {
  max-width: 38em;
  margin-inline: auto;
  font-family: var(--font-zh);
  font-size: clamp(1.0625rem, 1rem + 0.15vw, 1.125rem);
  line-height: 1.78;
  letter-spacing: 0.03em;
  color: rgba(245, 239, 230, 0.9);
  hanging-punctuation: allow-end;
}

.blog-article-body p + p {
  margin-top: 1.25em;
  text-indent: 2em;
}

.blog-article-body p.blog-article-lead {
  font-family: var(--font-zh-display);
  font-size: clamp(1.125rem, 1.05rem + 0.2vw, 1.2rem);
  line-height: 1.82;
  padding-left: 16px;
  border-left-width: 3px;
  margin-bottom: 0.5em;
}

.blog-article-body h2 {
  margin-top: 2.25em;
  padding-top: 0.25em;
  font-size: clamp(1.28rem, 1.15rem + 0.35vw, 1.48rem);
}

.blog-article-body h2 + p,
.blog-article-body h3 + p,
.blog-article-body h4 + p {
  text-indent: 0;
}

.blog-article-body .blog-media-figure {
  max-width: none;
  margin: 2em -8px;
}

.blog-article-body .blog-media-figure img {
  border-radius: 14px;
}

.blog-article-nav {
  max-width: 38em;
  margin-inline: auto;
}

.blog-article-footer {
  max-width: 38em;
  margin-inline: auto;
}

@media (max-width: 720px) {
  .blog-archive-scene {
    width: min(100vw - 24px, 100%);
  }

  .blog-article-sheet {
    padding: 24px 18px 28px;
  }

  .blog-card-body::before {
    display: none;
  }

  .blog-card-cover img {
    aspect-ratio: auto;
  }
}

/* ---- 20260709g Blog editorial polish ---- */
.blog-hero--compact {
  padding-top: 118px;
  padding-bottom: 22px;
}

.blog-hero--compact .blog-hero-inner {
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
}

.blog-archive-scene--compact {
  margin-top: -6px;
}

.blog-archive-scene--compact .section-heading {
  font-size: clamp(1.08rem, 1.9vw, 1.28rem);
}

.blog-card-list--sparse {
  gap: 26px;
}

.blog-card-list--sparse .blog-card-body::before {
  display: none;
}

@media (min-width: 680px) {
  .blog-card--lead.blog-card--has-cover {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: stretch;
  }

  .blog-card--lead .blog-card-cover {
    min-height: 100%;
    max-height: none;
    padding: 14px;
    border-right: 1px solid rgba(245, 239, 230, 0.06);
  }

  .blog-card--lead .blog-card-body {
    align-content: center;
    padding: 26px 28px 28px;
  }
}

.blog-card--lead {
  border-color: rgba(215, 190, 160, 0.24);
  background:
    radial-gradient(circle at 10% 0%, rgba(215, 190, 160, 0.09), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(10, 12, 18, 0.68);
}

.blog-card:not(.blog-card--has-cover) {
  border-left: 3px solid rgba(215, 190, 160, 0.32);
}

.blog-card-meta time {
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(245, 239, 230, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.blog-card-cover img {
  aspect-ratio: auto;
  object-fit: contain;
}

.blog-card:hover .blog-card-cover img {
  transform: none;
}

.blog-article-title::after {
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  margin-top: 16px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(215, 190, 160, 0.72), rgba(215, 190, 160, 0));
}

.blog-article-meta time,
.blog-article-meta > span:not(.blog-article-meta-sep) {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(245, 239, 230, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.blog-article-chips .blog-post-chip {
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245, 239, 230, 0.1);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.blog-article-chips .blog-post-chip--category {
  border-color: rgba(215, 190, 160, 0.22);
  color: rgba(215, 190, 160, 0.92);
}

.blog-article-back {
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245, 239, 230, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.blog-article-back:hover {
  border-color: rgba(215, 190, 160, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

@media (max-width: 720px) {
  .blog-card-cover img {
    aspect-ratio: auto !important;
  }

  .blog-card--lead.blog-card--has-cover {
    grid-template-columns: 1fr;
  }
}

/* ---- 20260709h Blog silk + ornament ---- */
.blog-hero {
  position: relative;
  isolation: isolate;
}

.blog-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: min(420px, 72vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(215, 190, 160, 0.08) 18%,
    rgba(215, 190, 160, 0.42) 50%,
    rgba(174, 181, 239, 0.28) 72%,
    transparent
  );
  pointer-events: none;
}

.blog-hero-main .page-title-zh {
  text-shadow: 0 0 40px rgba(215, 190, 160, 0.12);
}

.blog-scene-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(680px, calc(100vw - 36px));
  margin: -8px auto 26px;
  opacity: 0.85;
}

.blog-scene-divider-line {
  flex: 1;
  max-width: 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 239, 230, 0.22), transparent);
}

.blog-scene-divider-gem {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 35%, rgba(245, 239, 230, 0.95), rgba(215, 190, 160, 0.45));
  box-shadow: 0 0 18px rgba(215, 190, 160, 0.35);
  animation: blog-gem-pulse 4.8s ease-in-out infinite;
}

@keyframes blog-gem-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

.blog-archive-scene .section-heading-group--left {
  position: relative;
  padding-left: 16px;
}

.blog-archive-scene .section-heading-group--left::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.45em;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(
    180deg,
    rgba(215, 190, 160, 0.75),
    rgba(174, 181, 239, 0.35) 55%,
    transparent
  );
}

.blog-feed-strip {
  margin: 0 0 22px;
}

.blog-feed-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(245, 239, 230, 0.08);
  background:
    linear-gradient(135deg, rgba(215, 190, 160, 0.06), rgba(174, 181, 239, 0.04)),
    rgba(8, 10, 16, 0.52);
  box-shadow:
    0 1px 0 rgba(245, 239, 230, 0.04) inset,
    0 16px 40px rgba(4, 5, 10, 0.18);
  backdrop-filter: blur(12px);
}

.blog-feed-strip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(215, 190, 160, 0.22);
  color: rgba(215, 190, 160, 0.92);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.82rem;
}

.blog-feed-strip-copy {
  flex: 1 1 220px;
  margin: 0;
  color: rgba(245, 239, 230, 0.62);
  font-size: 0.86rem;
  line-height: 1.72;
  letter-spacing: 0.02em;
}

.blog-feed-strip-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(215, 190, 160, 0.24);
  color: rgba(245, 239, 230, 0.9);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  transition:
    border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.blog-feed-strip-link:hover {
  border-color: rgba(215, 190, 160, 0.42);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(4, 5, 10, 0.22);
}

.blog-card {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}

.blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 8%, rgba(215, 190, 160, 0.14), transparent 42%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.blog-card:hover::after {
  opacity: 1;
}

.blog-card-list .blog-card.reveal.in-view:nth-child(1) {
  transition-delay: 0.04s;
}

.blog-card-list .blog-card.reveal.in-view:nth-child(2) {
  transition-delay: 0.12s;
}

.blog-card-list .blog-card.reveal.in-view:nth-child(3) {
  transition-delay: 0.2s;
}

.blog-card-list .blog-card.reveal.in-view:nth-child(4) {
  transition-delay: 0.28s;
}

.blog-card.is-hidden {
  display: none;
}

.blog-card-read span,
.blog-card-read-arrow {
  display: inline-block;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card-read:hover span,
.blog-card-read:hover .blog-card-read-arrow {
  transform: translateX(5px);
}

.blog-article-sheet {
  position: relative;
  overflow: hidden;
}

.blog-article-sheet::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(215, 190, 160, 0.07), transparent 68%);
  pointer-events: none;
}

.blog-article-rss {
  color: rgba(215, 190, 160, 0.78);
  text-decoration: none;
  border-bottom: 1px solid rgba(215, 190, 160, 0.22);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.blog-article-rss:hover {
  color: rgba(245, 239, 230, 0.92);
  border-bottom-color: rgba(245, 239, 230, 0.42);
}

.scroll-progress {
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(174, 181, 239, 0.85),
    rgba(215, 190, 160, 0.95),
    rgba(244, 167, 197, 0.85)
  );
  box-shadow: 0 0 16px rgba(215, 190, 160, 0.35);
}

@media (max-width: 720px) {
  .blog-feed-strip-inner {
    padding: 12px 14px;
  }

  .blog-feed-strip-link {
    width: 100%;
    justify-content: center;
  }
}

/* ---- 20260709i Blog spirit layer (miniload / voidm mood) ---- */
.blog-feed-strip {
  display: none !important;
}

.blog-page .blog-hero,
.blog-article-page .blog-article {
  overflow: clip;
}

.blog-atmosphere,
.blog-article-aura {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.blog-atmosphere-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(42px);
  opacity: 0.55;
  transition: transform 0.2s ease-out;
  animation: blog-orb-drift 14s ease-in-out infinite;
}

.blog-atmosphere-orb--warm {
  top: 8%;
  left: 6%;
  width: 220px;
  height: 220px;
  background: rgba(215, 190, 160, 0.16);
}

.blog-atmosphere-orb--cool {
  top: 18%;
  right: 4%;
  width: 260px;
  height: 260px;
  background: rgba(174, 181, 239, 0.14);
  animation-delay: -4s;
}

.blog-atmosphere-orb--rose {
  bottom: 12%;
  left: 42%;
  width: 180px;
  height: 180px;
  background: rgba(198, 165, 185, 0.12);
  animation-delay: -8s;
}

@keyframes blog-orb-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(12px, -16px, 0) scale(1.06);
  }
}

.blog-atmosphere-glyph,
.blog-article-glyph {
  position: absolute;
  font-family: var(--font-zh-spirit);
  line-height: 1;
  color: rgba(245, 239, 230, 0.045);
  user-select: none;
}

.blog-atmosphere-glyph {
  top: -18px;
  right: clamp(0px, 4vw, 36px);
  font-size: clamp(7rem, 16vw, 11rem);
  transform: rotate(-8deg);
}

.blog-atmosphere-thread {
  position: absolute;
  left: 12%;
  top: 28%;
  width: 1px;
  height: 42%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(215, 190, 160, 0.22) 35%,
    rgba(174, 181, 239, 0.18) 70%,
    transparent
  );
  opacity: 0.7;
}

.blog-hero-inner {
  position: relative;
  z-index: 1;
}

.blog-hero-kicker {
  margin-bottom: 14px;
}

.blog-hero--compact .blog-hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(190px, 240px);
  gap: 28px;
  align-items: end;
}

.blog-hero-whisper {
  position: relative;
  align-self: stretch;
  padding: 20px 0 10px 18px;
  border-left: 1px solid rgba(245, 239, 230, 0.14);
}

.blog-hero-whisper::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(215, 190, 160, 0.75), rgba(174, 181, 239, 0.2), transparent);
}

.blog-hero-whisper-label {
  display: inline-flex;
  margin-bottom: 10px;
  font-family: var(--font-note);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.42);
}

.blog-hero-whisper p {
  margin: 0;
  font-family: var(--font-zh-display);
  font-size: 0.92rem;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: rgba(245, 239, 230, 0.62);
}

.blog-scene-divider--constellation {
  position: relative;
  gap: 0;
  min-height: 28px;
}

.blog-scene-divider--constellation .blog-scene-divider-line {
  max-width: min(520px, 72vw);
}

.blog-star {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(245, 239, 230, 0.85);
  box-shadow: 0 0 12px rgba(215, 190, 160, 0.55);
  animation: blog-star-twinkle 5s ease-in-out infinite;
}

.blog-star--a {
  left: calc(50% - 88px);
  top: 10px;
}

.blog-star--b {
  left: calc(50% - 18px);
  top: 4px;
  animation-delay: -1.6s;
}

.blog-star--c {
  left: calc(50% + 62px);
  top: 12px;
  animation-delay: -3.1s;
}

@keyframes blog-star-twinkle {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

.blog-card-list--sparse {
  position: relative;
  padding-left: 22px;
}

.blog-card-list--sparse::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(215, 190, 160, 0.35) 18%,
    rgba(174, 181, 239, 0.28) 55%,
    rgba(198, 165, 185, 0.2) 82%,
    transparent
  );
}

.blog-card-list--sparse .blog-card::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 36px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid rgba(215, 190, 160, 0.45);
  background: radial-gradient(circle at 35% 35%, rgba(245, 239, 230, 0.95), rgba(10, 12, 18, 0.92));
  box-shadow: 0 0 14px rgba(215, 190, 160, 0.35);
  z-index: 2;
}

.blog-card {
  --card-lift: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: perspective(920px) translateY(var(--card-lift)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
}

.blog-card:hover {
  --card-lift: -5px;
  transform: perspective(920px) translateY(var(--card-lift)) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.blog-card-body {
  position: relative;
  z-index: 1;
}

.blog-card-body::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid transparent;
  border-image: linear-gradient(
      135deg,
      rgba(215, 190, 160, 0.22),
      transparent 42%,
      transparent 58%,
      rgba(174, 181, 239, 0.18)
    )
    1;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.blog-card:hover .blog-card-body::after {
  opacity: 1;
}

.blog-card--lead {
  animation: blog-lead-glow 7s ease-in-out infinite;
}

@keyframes blog-lead-glow {
  0%,
  100% {
    box-shadow:
      0 24px 56px rgba(4, 5, 10, 0.24),
      0 0 0 1px rgba(215, 190, 160, 0.1);
  }
  50% {
    box-shadow:
      0 30px 70px rgba(4, 5, 10, 0.3),
      0 0 36px rgba(215, 190, 160, 0.08),
      0 0 0 1px rgba(215, 190, 160, 0.18);
  }
}

.blog-card-title a {
  color: rgba(245, 239, 230, 0.96);
  background: linear-gradient(120deg, rgba(245, 239, 230, 0.98), rgba(215, 190, 160, 0.9));
  background-clip: text;
  -webkit-background-clip: text;
  transition: filter 0.35s ease;
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .blog-card-title a {
    color: transparent;
  }
}

.blog-card-title a:hover {
  filter: brightness(1.08);
  color: transparent;
}

.blog-article {
  position: relative;
}

.blog-article-aura .blog-atmosphere-orb--warm {
  top: 6%;
  left: -4%;
  width: 240px;
  height: 240px;
}

.blog-article-aura .blog-atmosphere-orb--cool {
  top: 14%;
  right: -6%;
  width: 280px;
  height: 280px;
}

.blog-article-glyph {
  top: 72px;
  right: max(-12px, calc(50% - 420px));
  font-size: clamp(6rem, 14vw, 9rem);
  opacity: 0.55;
}

.blog-article-header,
.blog-article-cover,
.blog-article-sheet {
  position: relative;
  z-index: 1;
}

.blog-article-title {
  text-shadow: 0 0 48px rgba(215, 190, 160, 0.1);
}

.blog-article-sheet {
  border: 1px solid rgba(245, 239, 230, 0.07);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 38%),
    linear-gradient(165deg, rgba(16, 18, 26, 0.9) 0%, rgba(10, 12, 18, 0.84) 100%);
}

.blog-article-body p.blog-article-lead {
  font-family: var(--font-zh-spirit);
  letter-spacing: 0.05em;
}

@media (max-width: 720px) {
  .blog-hero--compact .blog-hero-inner {
    grid-template-columns: 1fr;
  }

  .blog-hero-whisper {
    padding-top: 8px;
    border-left: 0;
    padding-left: 0;
  }

  .blog-hero-whisper::before {
    display: none;
  }

  .blog-atmosphere-glyph {
    right: -8px;
    top: -8px;
    font-size: 5.5rem;
  }

  .blog-card-list--sparse {
    padding-left: 0;
  }

  .blog-card-list--sparse::before,
  .blog-card-list--sparse .blog-card::before {
    display: none;
  }

  .blog-card {
    transform: none;
  }

  .blog-card:hover {
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-atmosphere-orb,
  .blog-star,
  .blog-card--lead {
    animation: none;
  }

  .blog-card {
    transform: none !important;
  }
}

/* ---- 20260710a Blog magazine shell (fills side gutters) ---- */
.blog-shell {
  display: grid;
  grid-template-columns: minmax(64px, 108px) minmax(0, 1fr) minmax(168px, 248px);
  gap: clamp(18px, 2.8vw, 44px);
  width: min(1320px, calc(100vw - 28px));
  margin: 0 auto;
  padding: 108px 0 36px;
  align-items: start;
}

.blog-shell-main {
  min-width: 0;
}

.blog-rail {
  position: sticky;
  top: 108px;
  align-self: start;
}

.blog-rail--left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 48px 0 24px;
  border-right: 1px solid rgba(245, 239, 230, 0.07);
}

.blog-rail-vertical {
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  color: rgba(245, 239, 230, 0.28);
}

.blog-rail-glyphs {
  font-family: var(--font-zh-spirit);
  font-size: clamp(1.8rem, 2.4vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: 0.18em;
  color: rgba(215, 190, 160, 0.22);
}

.blog-rail-spine {
  flex: 1;
  width: 1px;
  min-height: 120px;
  background: linear-gradient(
    180deg,
    rgba(215, 190, 160, 0.45),
    rgba(174, 181, 239, 0.22) 45%,
    transparent
  );
}

.blog-rail--right {
  display: grid;
  gap: 16px;
}

.blog-rail-panel {
  padding: 16px 0 14px 16px;
  border-left: 1px solid rgba(245, 239, 230, 0.1);
}

.blog-rail-panel-label {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-note);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.38);
}

.blog-rail-index {
  display: grid;
  gap: 10px;
}

.blog-rail-index-link {
  display: grid;
  gap: 4px;
  padding: 8px 0 8px 12px;
  border-left: 2px solid transparent;
  color: inherit;
  text-decoration: none;
  transition:
    border-color 0.3s ease,
    transform 0.3s ease,
    opacity 0.3s ease;
}

.blog-rail-index-link time {
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(245, 239, 230, 0.46);
}

.blog-rail-index-link strong {
  font-family: var(--font-zh-display);
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(245, 239, 230, 0.82);
}

.blog-rail-index-link:hover,
.blog-rail-index-link.is-active {
  border-left-color: rgba(215, 190, 160, 0.72);
  transform: translateX(3px);
}

.blog-rail-index-link.is-active strong {
  color: rgba(245, 239, 230, 0.96);
}

.blog-rail-panel--whisper p {
  margin: 0;
  font-family: var(--font-zh-display);
  font-size: 0.9rem;
  line-height: 1.82;
  color: rgba(245, 239, 230, 0.58);
}

.blog-rail-panel--meta p {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-en);
}

.blog-rail-panel--meta strong {
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  color: rgba(215, 190, 160, 0.92);
}

.blog-rail-panel--meta span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: rgba(245, 239, 230, 0.46);
}

.blog-rail-empty {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(245, 239, 230, 0.46);
}

.blog-hero,
.blog-intro-scene,
.blog-archive-scene {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.blog-hero {
  position: relative;
  overflow: clip;
  padding-top: 0;
  padding-bottom: 32px;
}

.blog-hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
  gap: clamp(24px, 3vw, 42px);
}

.blog-hero--compact .blog-hero-inner {
  grid-template-columns: 1fr;
}

.blog-archive-scene {
  padding-bottom: 48px;
}

.blog-archive-scene .section-heading {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
}

.blog-shell--article {
  padding-bottom: 48px;
}

.blog-shell--article .blog-article {
  width: 100%;
  max-width: none;
  padding: 0;
}

.blog-shell--article .blog-article-header {
  margin-bottom: 26px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(245, 239, 230, 0.08);
}

.blog-shell--article .blog-article-title {
  font-size: clamp(1.85rem, 3.2vw, 2.75rem);
  max-width: 16ch;
}

.blog-shell--article .blog-article-sheet {
  max-width: none;
}

.blog-shell--article .blog-article-body {
  max-width: 40em;
  margin-inline: auto;
}

@media (max-width: 1080px) {
  .blog-shell {
    grid-template-columns: minmax(52px, 72px) minmax(0, 1fr);
    width: min(100vw - 20px, 100%);
  }

  .blog-rail--right {
    display: none;
  }
}

@media (max-width: 720px) {
  .blog-shell {
    grid-template-columns: 1fr;
    padding-top: 96px;
  }

  .blog-rail--left {
    display: none;
  }

  

  

  
}

/* ---- 20260710b Article prose (column + typography; paper sheet in 20260713b) ---- */
.blog-shell--article .blog-article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  max-width: 44rem;
}

.blog-shell--article .blog-article-header,
.blog-shell--article .blog-article-cover,
.blog-shell--article .blog-article-sheet,
.blog-shell--article .blog-article-nav,
.blog-shell--article .blog-article-footer {
  width: 100%;
  max-width: 44rem;
}

.blog-shell--article .blog-article-title {
  max-width: none;
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  line-height: 1.38;
  letter-spacing: 0.02em;
}

.blog-shell--article .blog-article-title::after {
  width: 40px;
  margin-top: 14px;
}

.blog-shell--article .blog-article-cover {
  margin-bottom: 28px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.blog-shell--article .blog-article-cover img {
  width: 100%;
  max-height: min(52vh, 420px);
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(4, 5, 10, 0.32);
}

.blog-shell--article .blog-article-body {
  max-width: none;
  margin: 0;
  font-family: var(--font-zh-display);
  font-size: 1.0625rem;
  line-height: 1.88;
  letter-spacing: 0.04em;
  color: rgba(245, 239, 230, 0.9);
  text-align: justify;
  text-justify: inter-ideograph;
}

.blog-shell--article .blog-article-body p {
  margin: 0;
  text-indent: 0;
}

.blog-shell--article .blog-article-body p + p {
  margin-top: 1.28em;
  text-indent: 0;
}

.blog-shell--article .blog-article-body p.blog-article-lead {
  font-family: var(--font-zh-display);
  font-size: 1.125rem;
  line-height: 1.92;
  font-weight: 500;
  color: rgba(245, 239, 230, 0.96);
  padding: 0 0 0.15em 16px;
  margin-bottom: 0.15em;
  border-left: 3px solid rgba(215, 190, 160, 0.55);
  text-indent: 0;
}

.blog-shell--article .blog-article-body p.blog-article-lead + p {
  margin-top: 1.35em;
}

.blog-shell--article .blog-article-body h2,
.blog-shell--article .blog-article-body h3 {
  margin-top: 2em;
  font-family: var(--font-zh-display);
  font-weight: 500;
}

.blog-shell--article .blog-article-body .blog-media-figure {
  margin: 1.75em 0;
}

.blog-shell--article .blog-article-body .blog-media-figure img {
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(4, 5, 10, 0.28);
}

.blog-shell--article .blog-article-nav {
  max-width: none;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 239, 230, 0.1);
}

.blog-shell--article .blog-article-footer {
  max-width: none;
  margin-top: 20px;
}

.blog-shell--article .blog-article-signoff {
  text-align: left;
  opacity: 0.65;
}

@media (max-width: 720px) {
  .blog-shell--article .blog-article,
  .blog-shell--article .blog-article-header,
  .blog-shell--article .blog-article-cover,
  .blog-shell--article .blog-article-sheet {
    max-width: 100%;
  }

  .blog-shell--article .blog-article-body {
    font-size: 1.02rem;
    line-height: 1.82;
    text-align: left;
  }
}

/* ---- 20260710c Card epigraph + feed layout (3+ posts) ---- */
.blog-card-list--feed {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.5vw, 28px);
}

.blog-card-list--feed .blog-card--lead.blog-card--has-cover {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.blog-card-list--feed .blog-card:not(.blog-card--lead) {
  max-width: min(100%, 52rem);
}

@media (max-width: 720px) {
  .blog-card-list--feed .blog-card--lead.blog-card--has-cover {
    grid-template-columns: 1fr;
  }
}

/* ---- 20260711b Lead opener + reading flow ---- */
.blog-shell--article .blog-article-body p.blog-article-lead {
  max-width: 34em;
  font-family: var(--font-zh-display);
  font-size: 1.08rem;
  line-height: 1.9;
  font-weight: 500;
  color: rgba(245, 239, 230, 0.94);
  padding: 2px 0 4px 14px;
  margin: 0 0 0.2em;
  border-left: 2px solid rgba(215, 190, 160, 0.4);
  text-indent: 0;
}

.blog-shell--article .blog-article-body p.blog-article-lead + p {
  margin-top: 1.32em;
}

.blog-card {
  cursor: pointer;
}

.blog-card-excerpt {
  max-width: 38rem;
  color: rgba(245, 239, 230, 0.68);
  font-size: 0.96rem;
  line-height: 1.86;
  -webkit-line-clamp: 2;
}

.blog-card--lead .blog-card-excerpt {
  -webkit-line-clamp: 3;
}

/* ---- 20260712a Blog motion polish (SuperOPC-inspired, lightweight) ---- */
.blog-shell .reveal,
.blog-shell--article .reveal {
  filter: none;
  transform: translateY(14px);
  transition:
    opacity 0.72s ease,
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-shell .reveal.in-view,
.blog-shell--article .reveal.in-view {
  filter: none;
  transform: translateY(0);
}

.blog-shell--article .blog-article-header.reveal.in-view .blog-article-title {
  animation: blog-title-enter 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
}

@keyframes blog-title-enter {
  from {
    opacity: 0.72;
    transform: scale(0.985) translateY(6px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.blog-card {
  --card-lift: 0px;
  transform: translateY(var(--card-lift));
  transform-style: flat;
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s ease,
    box-shadow 0.38s ease;
}

.blog-card:hover {
  --card-lift: -2px;
  transform: translateY(var(--card-lift));
}

.blog-card-cover img {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card:hover .blog-card-cover img {
  transform: scale(1.02);
}

.blog-card--lead .blog-card-cover img {
  animation: blog-cover-drift 14s ease-in-out infinite;
}

.blog-card--lead:hover .blog-card-cover img {
  animation: none;
}

@keyframes blog-cover-drift {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.012);
  }
}

.blog-card--lead {
  animation: blog-lead-glow 9s ease-in-out infinite;
}

.blog-card-meta {
  color: rgba(245, 239, 230, 0.42);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
}

.blog-card-meta time {
  color: rgba(245, 239, 230, 0.56);
}

.blog-card-new {
  padding: 2px 7px;
  border-radius: 999px;
  border: 1px solid rgba(215, 190, 160, 0.34);
  background: rgba(215, 190, 160, 0.08);
  color: rgba(215, 190, 160, 0.92);
  font-family: var(--font-en);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.blog-card-list--feed {
  gap: clamp(24px, 3vw, 34px);
}

.blog-shell--article .blog-article-body p.blog-article-lead {
  position: relative;
  border-left: none;
  padding-left: 16px;
}

.blog-shell--article .blog-article-body p.blog-article-lead::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 4px;
  width: 2px;
  background: rgba(215, 190, 160, 0.42);
  transform: scaleY(0);
  transform-origin: top center;
  animation: blog-lead-draw 0.78s cubic-bezier(0.22, 1, 0.36, 1) 0.18s forwards;
}

@keyframes blog-lead-draw {
  to {
    transform: scaleY(1);
  }
}

.blog-rail-panel--whisper {
  opacity: 0.68;
}

.blog-rail-panel--whisper p {
  font-size: 0.84rem;
  line-height: 1.76;
  color: rgba(245, 239, 230, 0.44);
}

.blog-rail-panel-label {
  color: rgba(245, 239, 230, 0.3);
}

.blog-rail-index-link.is-active {
  opacity: 1;
}

.blog-rail-index-link:not(.is-active) {
  opacity: 0.72;
}

@media (prefers-reduced-motion: reduce) {
  .blog-shell .reveal,
  .blog-shell--article .reveal {
    transform: none;
    transition: opacity 0.2s ease;
  }

  .blog-shell--article .blog-article-header.reveal.in-view .blog-article-title,
  .blog-shell--article .blog-article-body.reveal.in-view p,
  .blog-card--lead .blog-card-cover img,
  .blog-card--lead,
  .blog-shell--article .blog-article-body p.blog-article-lead::before {
    animation: none !important;
  }

  .blog-shell--article .blog-article-body p.blog-article-lead::before {
    transform: scaleY(1);
  }

  .blog-shell--article .blog-article-body.reveal.in-view p {
    opacity: 1;
    transform: none;
  }

  .blog-card,
  .blog-card:hover {
    transform: none;
  }

  .blog-card:hover .blog-card-cover img {
    transform: none;
  }
}

/* ---- 20260712b Punctuation-safe reading + stronger motion ---- */
.blog-card:hover {
  --card-lift: -3px;
  box-shadow:
    0 26px 56px rgba(4, 5, 10, 0.28),
    0 0 0 1px rgba(215, 190, 160, 0.14);
}

.blog-card:hover .blog-card-cover img {
  transform: scale(1.028);
}

.blog-card--lead .blog-card-title {
  font-size: clamp(1.42rem, 2.2vw, 1.82rem);
}

.blog-card-new {
  letter-spacing: 0.18em;
}

.blog-shell--article .blog-article-body.reveal.in-view p {
  animation: blog-para-enter 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.blog-shell--article .blog-article-body.reveal.in-view p:nth-child(1) {
  animation-delay: 0.06s;
}

.blog-shell--article .blog-article-body.reveal.in-view p:nth-child(2) {
  animation-delay: 0.14s;
}

.blog-shell--article .blog-article-body.reveal.in-view p:nth-child(3) {
  animation-delay: 0.22s;
}

.blog-shell--article .blog-article-body.reveal.in-view p:nth-child(4) {
  animation-delay: 0.3s;
}

.blog-shell--article .blog-article-body.reveal.in-view p:nth-child(n + 5) {
  animation-delay: 0.36s;
}

@keyframes blog-para-enter {
  from {
    opacity: 0.55;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-shell--article .blog-article-body p.blog-article-lead::before {
  background: rgba(215, 190, 160, 0.58);
  width: 3px;
}

.blog-rail-index-link.is-active {
  border-left-color: rgba(215, 190, 160, 0.92);
  transform: translateX(4px);
}

.blog-rail-index-link.is-active time {
  color: rgba(215, 190, 160, 0.78);
}

/* ---- 20260713a Editorial round 1: material, hierarchy, breathing ---- */
.blog-page .bg-img,
.blog-article-page .bg-img {
  opacity: 0.44;
  filter: saturate(0.86) brightness(0.92);
}

.blog-page .bg-tint,
.blog-article-page .bg-tint {
  background: linear-gradient(
    180deg,
    rgba(8, 10, 16, 0.52) 0%,
    rgba(8, 10, 16, 0.72) 42%,
    rgba(8, 10, 16, 0.88) 100%
  );
}

.blog-shell {
  padding-top: 92px;
}

.blog-hero--compact {
  padding-top: 88px;
  padding-bottom: 10px;
}

.blog-hero--compact .blog-hero-main {
  gap: 6px;
}

.blog-hero-subtitle {
  max-width: 28rem;
  color: rgba(245, 239, 230, 0.54);
  font-size: 0.92rem;
  line-height: 1.72;
}

.blog-archive-scene--compact {
  margin-top: 2px;
}

.blog-archive-scene--compact .section-heading {
  font-size: clamp(1.02rem, 1.7vw, 1.22rem);
  font-weight: 500;
  letter-spacing: 0.06em;
}

.blog-archive-scene--compact .section-lead {
  color: rgba(245, 239, 230, 0.44);
  font-size: 0.88rem;
}

.blog-card {
  border-color: rgba(245, 239, 230, 0.08);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.01)),
    rgba(12, 14, 20, 0.36);
  box-shadow:
    0 16px 40px rgba(4, 5, 10, 0.16),
    inset 0 1px 0 rgba(245, 239, 230, 0.035);
}

.blog-card::after {
  opacity: 0;
}

.blog-card:hover::after {
  opacity: 0.45;
}

.blog-card:hover .blog-card-body::after {
  opacity: 0;
}

.blog-card--lead {
  animation: none;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(215, 190, 160, 0.016)),
    rgba(14, 16, 22, 0.4);
  border-color: rgba(215, 190, 160, 0.11);
}

.blog-card-meta {
  color: rgba(245, 239, 230, 0.34);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.blog-card-meta time {
  color: rgba(245, 239, 230, 0.46);
}

.blog-card-title {
  font-size: clamp(1.26rem, 1.95vw, 1.56rem);
}

.blog-card--lead .blog-card-title {
  font-size: clamp(1.5rem, 2.35vw, 1.95rem);
  letter-spacing: 0.04em;
}

.blog-card-excerpt {
  color: rgba(245, 239, 230, 0.54);
  font-size: 0.9rem;
  line-height: 1.8;
}

.blog-card--lead .blog-card-excerpt {
  color: rgba(245, 239, 230, 0.62);
}

.blog-card .blog-tag {
  opacity: 0.72;
  border-color: rgba(245, 239, 230, 0.1);
  background: rgba(255, 255, 255, 0.02);
}

.blog-card-read {
  color: rgba(215, 190, 160, 0.68);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.blog-page .blog-rail-panel--whisper {
  display: none;
}

.blog-rail-panel--meta {
  opacity: 0.5;
  padding-top: 6px;
}

.blog-rail-panel--meta p {
  font-size: 0.82rem;
}

.blog-rail--left {
  border-right-color: rgba(245, 239, 230, 0.035);
}

.blog-rail-glyphs {
  color: rgba(215, 190, 160, 0.14);
}

.blog-rail-vertical {
  color: rgba(245, 239, 230, 0.22);
}

.blog-shell--article .blog-rail-panel--whisper {
  display: block;
  opacity: 0.42;
}

.blog-shell--article .blog-article-sheet {
  padding-top: 4px;
}

.blog-shell--article .blog-article-header {
  border-bottom-color: rgba(245, 239, 230, 0.05);
  margin-bottom: 22px;
  padding-bottom: 18px;
}

.blog-shell--article .blog-article-body p.blog-article-lead,
.blog-shell--article .blog-article-body p.blog-article-lead + p {
  text-indent: 0;
}

.blog-shell--article .blog-article-cover {
  border-color: rgba(245, 239, 230, 0.08);
  box-shadow: 0 18px 42px rgba(4, 5, 10, 0.2);
}

@media (max-width: 720px) {
  .blog-shell {
    padding-top: 84px;
  }

  .blog-hero--compact {
    padding-top: 80px;
  }

  

  

  
}

/* ---- 20260713b Reading channel + blog hop + paper sheet ---- */
.blog-page .blog-rail-panel--meta {
  display: none;
}

.blog-card-cover {
  position: relative;
}

.blog-card-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 10, 16, 0.04) 0%, rgba(8, 10, 16, 0.38) 100%);
  pointer-events: none;
  opacity: 0.72;
  transition: opacity 0.45s ease;
}

.blog-card:hover .blog-card-cover::after {
  opacity: 0.55;
}

html.page-transition-pending.blog-hop .page-transition-overlay {
  background: rgba(6, 8, 14, 0.42);
  backdrop-filter: blur(2px);
}

html.page-transition-pending.blog-hop .page-transition-overlay::before {
  opacity: 0.35;
}

html.blog-article-reveal .blog-article-title {
  animation: blog-title-enter 0.88s cubic-bezier(0.22, 1, 0.36, 1) 0.04s both;
}

html.blog-article-reveal .blog-article-cover.reveal {
  animation: blog-cover-enter 0.92s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

@keyframes blog-cover-enter {
  from {
    opacity: 0.72;
    transform: translateY(10px) scale(0.992);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.blog-shell--article .blog-article-sheet {
  padding: 28px clamp(18px, 3vw, 34px) 34px;
  border-radius: 22px;
  border: 1px solid rgba(245, 239, 230, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.004) 42%, transparent),
    rgba(10, 12, 18, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(245, 239, 230, 0.045),
    0 18px 48px rgba(4, 5, 10, 0.14);
}

.blog-shell--article .blog-article-body {
  max-width: 40em;
  line-height: 1.82;
  letter-spacing: 0.028em;
}

.blog-shell--article .blog-article-body p + p {
  margin-top: 1.18em;
}

.blog-shell--article .blog-article-body p.blog-article-lead {
  max-width: 36em;
  margin-bottom: 0.35em;
  color: rgba(245, 239, 230, 0.96);
}

.blog-shell--article .blog-article-body p.blog-article-lead + p {
  margin-top: 1.28em;
}

.blog-rail-panel--whisper p {
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  html.blog-article-reveal .blog-article-title,
  html.blog-article-reveal .blog-article-cover.reveal {
    animation: none !important;
  }
}

/* ---- 20260713c Blog dek + article TOC ---- */
.blog-reading-anchor {
  display: block;
  height: 0;
  margin: 0;
  padding: 0;
  scroll-margin-top: 96px;
}

.blog-shell--article .blog-article-body h2[id],
.blog-shell--article .blog-article-body h3[id],
.blog-shell--article .blog-article-body h4[id] {
  scroll-margin-top: 96px;
}

.blog-rail-panel--toc {
  padding-bottom: 10px;
}

.blog-toc {
  display: grid;
  gap: 6px;
}

.blog-toc-link {
  display: block;
  padding: 5px 0 5px 12px;
  border-left: 2px solid transparent;
  font-family: var(--font-zh);
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(245, 239, 230, 0.58);
  text-decoration: none;
  transition:
    border-color 0.3s ease,
    color 0.3s ease,
    opacity 0.3s ease;
}

.blog-toc-link--h3 {
  padding-left: 22px;
  font-size: 0.76rem;
  color: rgba(245, 239, 230, 0.46);
}

.blog-toc-link:hover,
.blog-toc-link.is-active {
  border-left-color: rgba(215, 190, 160, 0.42);
  color: rgba(245, 239, 230, 0.9);
}

.blog-shell--article .blog-rail-panel--toc + .blog-rail-panel {
  padding-top: 8px;
  opacity: 0.72;
}

.blog-shell--article .blog-rail-panel--toc + .blog-rail-panel .blog-rail-index-link:not(.is-active) {
  opacity: 0.62;
}

.blog-card-excerpt {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.blog-card--lead .blog-card-excerpt {
  -webkit-line-clamp: 2;
}

/* ---- 20260318r Home Localized Veil ---- */
/* 说明：
   - 这一段是首页下半部目前最后生效的“局部雾幕”层
   - 它只负责最终气氛与局部承托，不单独承担完整结构
   - 如果后续继续清理首页 CSS，优先围绕“显式重建最终状态”处理，避免直接删前序块 */
.home-afterglow {
  position: relative;
  width: 100%;
  margin-top: -10px;
  padding-top: 34px;
  padding-bottom: 22px;
  overflow: clip;
  isolation: isolate;
}

.home-afterglow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -72px;
  width: min(92vw, 1200px);
  height: 220px;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(16, 14, 24, 0.26) 0%, rgba(16, 14, 24, 0.12) 40%, rgba(16, 14, 24, 0) 74%);
  filter: blur(30px);
  z-index: 0;
}

.home-afterglow::after {
  content: "";
  position: absolute;
  left: 18%;
  top: 106px;
  width: min(44vw, 460px);
  height: 320px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(10, 9, 15, 0.28) 0%, rgba(10, 9, 15, 0.14) 44%, rgba(10, 9, 15, 0.02) 68%, rgba(10, 9, 15, 0) 82%);
  filter: blur(44px);
  z-index: 0;
}

.home-afterglow > * {
  position: relative;
  z-index: 1;
}

.home-threshold-scene {
  margin: 0 auto 0;
  padding-top: 0;
  gap: 44px;
}

.home-threshold-main::after {
  display: block;
  inset: -26px -30px -18px -24px;
  border-radius: 48px;
  background:
    radial-gradient(ellipse at 18% 22%, rgba(10, 9, 15, 0.44) 0%, rgba(10, 9, 15, 0.22) 34%, rgba(10, 9, 15, 0.04) 60%, rgba(10, 9, 15, 0) 82%),
    radial-gradient(ellipse at 56% 58%, rgba(18, 16, 27, 0.12) 0%, rgba(18, 16, 27, 0) 72%);
  filter: blur(16px);
  opacity: 0.98;
}

.home-threshold-main {
  max-width: 40rem;
}

.home-threshold-story {
  max-width: 36rem;
}

.home-threshold-lead {
  color: rgba(245, 239, 230, 0.84);
}

.home-threshold-echo {
  color: rgba(245, 239, 230, 0.56);
}

.home-garden-scene {
  margin-top: 78px;
}

.home-garden-main {
  max-width: 44rem;
}

.home-garden-main::after {
  content: "";
  position: absolute;
  inset: -18px -24px -22px -18px;
  border-radius: 40px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 24% 28%, rgba(10, 9, 15, 0.34) 0%, rgba(10, 9, 15, 0.16) 36%, rgba(10, 9, 15, 0.04) 58%, rgba(10, 9, 15, 0) 80%);
  filter: blur(18px);
  opacity: 0.94;
}

.home-garden-main > * {
  position: relative;
  z-index: 1;
}

.home-garden-scene .garden-item {
  background:
    linear-gradient(90deg, rgba(10, 9, 15, 0.28), rgba(10, 9, 15, 0.12) 54%, rgba(10, 9, 15, 0.04) 78%, rgba(10, 9, 15, 0) 100%);
}

.home-garden-scene .garden-item:hover {
  background:
    linear-gradient(90deg, rgba(10, 9, 15, 0.38), rgba(10, 9, 15, 0.16) 54%, rgba(10, 9, 15, 0.05) 78%, rgba(10, 9, 15, 0) 100%);
}

.home-threshold-side,
.garden-aside {
  background:
    linear-gradient(180deg, rgba(14, 13, 21, 0.22), rgba(14, 13, 21, 0.08) 66%, rgba(14, 13, 21, 0.03));
  border-color: rgba(245, 239, 230, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(6px);
}

.home-afterglow .footer {
  margin-top: 82px;
  padding-top: 18px;
}

@media (max-width: 900px) {
  .home-afterglow {
    margin-top: -6px;
    padding-top: 28px;
  }

  .home-afterglow::before {
    top: -46px;
    width: 96vw;
    height: 164px;
    filter: blur(22px);
  }

  .home-afterglow::after {
    left: 50%;
    top: 92px;
    width: 84vw;
    height: 240px;
    transform: translateX(-50%);
    filter: blur(32px);
  }

  .home-threshold-scene,
  .home-garden-scene {
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .home-afterglow {
    margin-top: 0;
    padding-top: 22px;
    padding-bottom: 12px;
  }

  .home-afterglow::before {
    top: -18px;
    width: 96vw;
    height: 96px;
    filter: blur(14px);
  }

  .home-afterglow::after {
    top: 74px;
    left: 50%;
    width: 90vw;
    height: 190px;
    transform: translateX(-50%);
    filter: blur(24px);
  }

  .home-threshold-main::after,
  .home-garden-main::after {
    inset: -14px -10px -14px -10px;
    border-radius: 28px;
    filter: blur(14px);
  }

  .home-threshold-scene,
  .home-garden-scene {
    margin-top: 0;
  }

  .home-garden-scene {
    margin-top: 54px;
  }

  .home-afterglow .footer {
    margin-top: 60px;
  }
}

/* ---- 20260711f Inline video: native controls + chrome tuck ---- */
.blog-article-body .blog-media-figure--video {
  cursor: default;
  overflow: visible;
  position: relative;
  isolation: isolate;
}

.blog-article-body .blog-media-figure--embed {
  margin: 1.35rem 0 1.55rem;
  padding: 0;
  border: none;
  background: transparent;
  position: relative;
}

.blog-article-body .blog-embed-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(8, 8, 14, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.blog-article-body .blog-embed-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #000;
}

.blog-article-body .blog-media-figure--embed figcaption {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(245, 239, 230, 0.58);
  letter-spacing: 0.02em;
}

.blog-article-body .blog-media-figure--embed figcaption a {
  color: rgba(174, 181, 239, 0.92);
  text-decoration: none;
  border-bottom: 1px solid rgba(174, 181, 239, 0.28);
}

.blog-article-body .blog-media-figure--embed figcaption a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.45);
}

.blog-article-body .blog-media-figure--video::after {
  content: "视频";
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(245, 239, 230, 0.14);
  background: rgba(8, 10, 16, 0.72);
  color: rgba(245, 239, 230, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  pointer-events: none;
}

.blog-article-body .blog-media-figure--video video.blog-media-video {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(calc(72vh - 56px), 680px);
  border-radius: 14px;
  background: rgba(8, 10, 16, 0.4);
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

body.blog-article-page--media-heavy .bg-img {
  opacity: 0.38;
  filter: saturate(0.82) brightness(0.86);
}

body.blog-article-page--media-heavy .bg-tint {
  background: linear-gradient(
    180deg,
    rgba(8, 10, 16, 0.62) 0%,
    rgba(8, 10, 16, 0.82) 48%,
    rgba(8, 10, 16, 0.92) 100%
  );
}

body.blog-article-page--media-heavy #particleCanvas {
  opacity: 0.42;
  transition: opacity 0.35s ease;
}

body.blog-article-page--video-playing #particleCanvas {
  opacity: 0.12;
}

body.blog-article-page--video-ui .music-btn,
body.blog-article-page--video-ui .music-panel,
body.blog-article-page--video-ui .bg-toggle,
body.blog-article-page--video-ui .to-top {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(16px, 0, 0) scale(0.94);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

html.blog-video-ui-active .custom-cursor {
  opacity: 0 !important;
  visibility: hidden;
}

body.blog-article-page--has-inline-video .blog-media-figure--video {
  z-index: 24;
  margin-bottom: 1.1em;
  padding-bottom: 10px;
}

body.blog-article-page--has-inline-video .blog-media-figure--video video.blog-media-video {
  cursor: default;
}

body.blog-article-page--has-inline-video:not(.blog-article-page--video-ui) .music-btn {
  left: auto;
  right: 18px;
}

/* ---- 20260711g Blog list mosaic + archive rail ---- */
.blog-card-list--mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  align-items: start;
}

.blog-card-list--mosaic .blog-card--lead {
  grid-column: 1 / -1;
}

.blog-card-list--mosaic .blog-card--lead.blog-card--has-cover {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.blog-card-list--compact,
.blog-card--compact {
  border-radius: 18px;
}

.blog-card--compact .blog-card-body {
  padding: 16px 18px 18px;
}

.blog-card--compact .blog-card-title {
  font-size: clamp(1.02rem, 1.45vw, 1.18rem);
}

.blog-card--compact .blog-card-excerpt {
  -webkit-line-clamp: 2;
  font-size: 0.86rem;
  line-height: 1.72;
}

.blog-card--compact .blog-card-cover img {
  max-height: 180px;
  object-fit: cover;
}

.blog-card-list--feed-archive {
  gap: clamp(18px, 2.2vw, 26px);
}

.blog-card-list--feed-archive .blog-card:not(.blog-card--lead) {
  max-width: none;
}

.blog-card-list--feed-archive .blog-card--lead {
  margin-bottom: 6px;
}

.blog-archive-year {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 8px 0 2px;
  padding-top: 8px;
}

.blog-archive-year-label {
  font-family: var(--font-en);
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  color: rgba(215, 190, 160, 0.72);
}

.blog-archive-year-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(215, 190, 160, 0.34), transparent 88%);
}

.blog-rail-index--scroll {
  max-height: min(68vh, 520px);
  overflow: auto;
  padding-right: 4px;
  scrollbar-width: thin;
}

.blog-rail-index--scroll::-webkit-scrollbar {
  width: 4px;
}

.blog-rail-index--scroll::-webkit-scrollbar-thumb {
  background: rgba(245, 239, 230, 0.18);
  border-radius: 999px;
}

.blog-rail-index-year {
  display: block;
  margin: 10px 0 2px;
  padding-left: 12px;
  font-family: var(--font-en);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: rgba(215, 190, 160, 0.58);
}

.blog-rail-index-more {
  margin: 8px 0 0;
  padding-left: 12px;
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(245, 239, 230, 0.42);
}

.blog-rail--right .blog-rail-panel:first-child {
  position: sticky;
  top: 96px;
}

.blog-card-cover--video {
  contain: layout style;
  background: rgba(8, 10, 16, 0.55);
  min-height: clamp(180px, 28vw, 260px);
}

.blog-card-cover--video img.blog-cover-poster {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 340px;
  min-height: clamp(160px, 24vw, 240px);
  margin: 0 auto;
  object-fit: contain;
  object-position: center center;
  border-radius: 14px;
}

.blog-card-cover--video::before {
  content: "视频";
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 1;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(245, 239, 230, 0.14);
  background: rgba(8, 10, 16, 0.72);
  color: rgba(245, 239, 230, 0.72);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  pointer-events: none;
}

@media (max-width: 1080px) {
  .blog-card-list--mosaic {
    grid-template-columns: 1fr;
  }

  .blog-rail--right .blog-rail-panel:first-child {
    position: static;
  }
}

@media (max-width: 720px) {
  .blog-card-list--mosaic .blog-card--lead.blog-card--has-cover {
    grid-template-columns: 1fr;
  }

  body.blog-article-page--has-inline-video:not(.blog-article-page--video-ui) .music-btn {
    left: 18px;
    right: auto;
  }
}

/* ---- 20260711h Video silent hint + list feed compact + hero tighten ---- */
body.blog-article-page--has-inline-video .music-btn,
body.blog-article-page--has-inline-video .music-panel {
  display: none !important;
}

body.blog-article-page--has-inline-video .bg-toggle {
  bottom: 78px;
}

body.blog-article-page--has-inline-video .to-top {
  bottom: 132px;
}

.blog-article-body .blog-media-figure--no-audio::after {
  content: "无声视频";
}

.blog-article-body .blog-media-figure--no-audio video.blog-media-video::-webkit-media-controls-volume-slider,
.blog-article-body .blog-media-figure--no-audio video.blog-media-video::-webkit-media-controls-mute-button {
  opacity: 0.35;
  pointer-events: none;
}

.blog-card-list--feed-compact {
  gap: clamp(14px, 2vw, 22px);
}

.blog-card-list--feed-compact .blog-card--lead.blog-card--has-cover {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.blog-card-list--feed-compact .blog-card--secondary.blog-card--has-cover {
  display: grid;
  grid-template-columns: minmax(108px, 0.34fr) minmax(0, 0.66fr);
  gap: 0;
  align-items: stretch;
}

.blog-card-list--feed-compact .blog-card--secondary .blog-card-cover {
  min-height: 0;
  border-right: 1px solid rgba(245, 239, 230, 0.06);
  border-bottom: 0;
}

.blog-card-list--feed-compact .blog-card--secondary .blog-card-cover img {
  height: 100%;
  min-height: 108px;
  max-height: 148px;
  object-fit: cover;
}

.blog-card-list--feed-compact .blog-card--secondary .blog-card-body {
  padding: 14px 16px 16px;
}

.blog-card-list--feed-compact .blog-card--secondary .blog-card-title {
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.blog-card-list--feed-compact .blog-card--secondary .blog-card-excerpt {
  -webkit-line-clamp: 2;
  font-size: 0.84rem;
  line-height: 1.68;
}

.blog-card-list--feed-compact .blog-card--secondary .blog-card-foot,
.blog-card-list--feed-compact .blog-card--secondary .blog-tag-list {
  display: none;
}

.blog-hero--compact {
  padding-bottom: 18px;
}

.blog-archive-scene--compact {
  padding-top: 4px;
}

.blog-archive-scene--compact .section-heading-group {
  margin-bottom: 14px;
}

@media (max-width: 720px) {
  .blog-card-list--feed-compact .blog-card--lead.blog-card--has-cover,
  .blog-card-list--feed-compact .blog-card--secondary.blog-card--has-cover {
    grid-template-columns: 1fr;
  }

  .blog-card-list--feed-compact .blog-card--secondary .blog-card-cover img {
    min-height: 168px;
    max-height: 220px;
  }

  .blog-overview-rail {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    width: 100%;
    padding-top: 6px;
  }

  .blog-overview-pill,
  .blog-overview-link {
    min-height: 0;
    padding: 6px 0 8px 12px;
    flex: 1 1 calc(50% - 8px);
  }

  .blog-overview-link {
    flex-basis: 100%;
    padding-bottom: 4px;
  }

  .blog-hero--compact {
    padding-top: 72px;
    padding-bottom: 12px;
  }

  .blog-archive-scene--compact {
    padding-top: 0;
  }
}

/* JS pagination hook — layout inherits from feed/mosaic/archive variant */
.blog-card-list--paginated {
  /* intentionally empty */
}


/* ---- 20260711i List scale polish: mosaic orphan, archive compact, pagination ---- */
.blog-card-list--mosaic .blog-card--secondary.blog-card--row-span {
  grid-column: 1 / -1;
}

.blog-card-list--feed-archive-compact .blog-card--secondary.blog-card--has-cover {
  display: grid;
  grid-template-columns: minmax(108px, 0.32fr) minmax(0, 0.68fr);
  gap: 0;
  align-items: stretch;
}

.blog-card-list--feed-archive-compact .blog-card--secondary .blog-card-cover {
  min-height: 0;
  border-right: 1px solid rgba(245, 239, 230, 0.06);
  border-bottom: 0;
}

.blog-card-list--feed-archive-compact .blog-card--secondary .blog-card-cover img {
  height: 100%;
  min-height: 104px;
  max-height: 136px;
  object-fit: cover;
}

.blog-card-list--feed-archive-compact .blog-card--secondary .blog-card-body {
  padding: 14px 16px 16px;
}

.blog-card-list--feed-archive-compact .blog-card--secondary .blog-card-title {
  font-size: clamp(1rem, 1.35vw, 1.12rem);
}

.blog-card-list--feed-archive-compact .blog-card--secondary .blog-card-excerpt {
  -webkit-line-clamp: 2;
  font-size: 0.84rem;
  line-height: 1.68;
}

.blog-card-list--feed-archive-compact .blog-card--secondary .blog-card-foot,
.blog-card-list--feed-archive-compact .blog-card--secondary .blog-tag-list {
  display: none;
}

.blog-archive-year.is-hidden {
  display: none;
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: clamp(18px, 2.4vw, 28px);
  padding-top: 8px;
}

.blog-pagination[hidden] {
  display: none !important;
}

.blog-pagination-pages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-pagination-btn {
  min-width: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(245, 239, 230, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(245, 239, 230, 0.78);
  font-family: var(--font-en);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.blog-pagination-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(215, 190, 160, 0.28);
  color: rgba(245, 239, 230, 0.92);
}

.blog-pagination-btn.is-active {
  border-color: rgba(215, 190, 160, 0.42);
  background: rgba(215, 190, 160, 0.1);
  color: rgba(245, 239, 230, 0.96);
}

.blog-pagination-btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.blog-pagination-meta {
  flex: 1 1 100%;
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(245, 239, 230, 0.44);
}

@media (max-width: 720px) {
  .blog-card-list--feed-archive-compact .blog-card--secondary.blog-card--has-cover {
    grid-template-columns: 1fr;
  }

  .blog-card-list--feed-archive-compact .blog-card--secondary .blog-card-cover img {
    min-height: 156px;
    max-height: 200px;
  }

  .blog-pagination {
    justify-content: center;
  }

  .blog-pagination-meta {
    text-align: center;
  }
}

/* ---- 20260711j Gap + prose canon (refactor phase 1) ---- */
/* applied 2026-07-10T14:14:53Z; backup: output/blog-css-backups/blog-authority.pre-phase1-20260710-221453.css */

/* Phase 1 gap patch — reading spine meter (from blog-layout.css, missing in live monolith) */
.blog-rail-spine--meter {
  position: relative;
  overflow: hidden;
}

.blog-rail-spine-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(215, 190, 160, 0.78),
    rgba(174, 181, 239, 0.42) 72%,
    rgba(174, 181, 239, 0.08)
  );
  transition: height 0.14s ease-out;
}

@media (max-width: 960px) {
  .blog-rail-spine--meter {
    display: none;
  }
}

/* Phase 1 gap patch — lightbox + read-next (from blog-shell.css) */
.blog-figure-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(6, 8, 14, 0.88);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.blog-figure-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.blog-figure-lightbox img {
  max-width: min(960px, 92vw);
  max-height: 88vh;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.blog-figure-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(245, 239, 230, 0.18);
  border-radius: 999px;
  background: rgba(12, 14, 22, 0.72);
  color: rgba(245, 239, 230, 0.92);
  cursor: pointer;
}

.blog-read-next {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 90;
  transform: translate(-50%, 120%);
  opacity: 0;
  transition:
    transform 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.32s ease;
  pointer-events: none;
}

.blog-read-next.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.blog-read-next a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(245, 239, 230, 0.14);
  background: rgba(12, 14, 22, 0.82);
  color: rgba(245, 239, 230, 0.92);
  text-decoration: none;
  font-size: 0.92rem;
  backdrop-filter: blur(8px);
}

.blog-read-next a:hover {
  border-color: rgba(215, 190, 160, 0.42);
}

@media (max-width: 720px) {
  .blog-read-next {
    bottom: 18px;
    width: min(92vw, 420px);
  }

  .blog-read-next a {
    width: 100%;
    justify-content: center;
  }
}

/* Phase 1 gap patch — article body prose elements (from blog-shell.css) */
.blog-shell--article .blog-article-body h2,
.blog-shell--article .blog-article-body h3,
.blog-shell--article .blog-article-body h4 {
  margin-top: 2em;
  margin-bottom: 0.65em;
  font-family: var(--font-zh-display);
  font-weight: 500;
  line-height: 1.45;
  color: rgba(245, 239, 230, 0.95);
}

.blog-shell--article .blog-article-body h2 {
  font-size: clamp(1.42rem, 2vw, 1.72rem);
}

.blog-shell--article .blog-article-body h3 {
  font-size: clamp(1.18rem, 1.6vw, 1.38rem);
}

.blog-shell--article .blog-article-body p,
.blog-shell--article .blog-article-body ul,
.blog-shell--article .blog-article-body ol,
.blog-shell--article .blog-article-body blockquote,
.blog-shell--article .blog-article-body pre,
.blog-shell--article .blog-article-body table {
  margin-top: 1em;
}

.blog-shell--article .blog-article-body ul,
.blog-shell--article .blog-article-body ol {
  padding-left: 1.4em;
}

.blog-shell--article .blog-article-body li + li {
  margin-top: 0.45em;
}

.blog-shell--article .blog-article-body a {
  color: rgba(215, 190, 160, 0.96);
  text-decoration: underline;
  text-decoration-color: rgba(215, 190, 160, 0.34);
  text-underline-offset: 4px;
}

.blog-shell--article .blog-article-body a:hover {
  color: rgba(245, 239, 230, 0.95);
}

.blog-shell--article .blog-article-body strong {
  color: rgba(245, 239, 230, 0.94);
}

.blog-shell--article .blog-article-body em {
  font-style: italic;
}

.blog-shell--article .blog-article-body u {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.blog-shell--article .blog-article-body img:not(.blog-media-figure img),
.blog-shell--article .blog-article-body video:not(.blog-media-figure video) {
  display: block;
  max-width: min(100%, 760px);
  height: auto;
  margin: 1.4em auto;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.blog-shell--article .blog-article-body code {
  padding: 0.16em 0.42em;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--font-note);
  font-size: 0.92em;
}

.blog-shell--article .blog-article-body pre {
  overflow: auto;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(11, 12, 18, 0.72);
  border: 1px solid rgba(245, 239, 230, 0.08);
}

.blog-shell--article .blog-article-body pre code {
  padding: 0;
  background: transparent;
}

.blog-shell--article .blog-article-body hr {
  border: 0;
  border-top: 1px solid rgba(245, 239, 230, 0.1);
  margin: 2em 0;
}

.blog-shell--article .blog-article-body table {
  width: 100%;
  border-collapse: collapse;
}

.blog-shell--article .blog-article-body th,
.blog-shell--article .blog-article-body td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(245, 239, 230, 0.08);
  text-align: left;
}

.blog-shell--article .blog-article-body [id] {
  scroll-margin-top: 96px;
}

.blog-article-body .blog-media-figure {
  cursor: zoom-in;
}

/* Phase 1 gap patch — list micro-styles (from blog-layout.css / blog-shell.css) */
.blog-card-excerpt--curated {
  color: rgba(245, 239, 230, 0.72);
  letter-spacing: 0.04em;
}

/* ---- 20260711q Blog table, sync badge, and sticker polish ---- */

.blog-shell--article .blog-article-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
  line-height: 1.65;
  text-align: left;
}

.blog-shell--article .blog-article-body .blog-table-wrap {
  margin: 1.35em 0 1.6em;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 16px;
  border: 1px solid rgba(245, 239, 230, 0.1);
  background: rgba(8, 10, 16, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.blog-shell--article .blog-article-body .blog-table-wrap table {
  margin-top: 0;
  min-width: 520px;
}

.blog-shell--article .blog-article-body .blog-stats-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(18, 20, 28, 0.96);
  color: rgba(245, 239, 230, 0.92);
  font-family: var(--font-zh-display);
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(215, 190, 160, 0.22);
}

.blog-shell--article .blog-article-body th,
.blog-shell--article .blog-article-body td {
  padding: 11px 14px;
  border-bottom: 1px solid rgba(245, 239, 230, 0.08);
  border-right: 1px solid rgba(245, 239, 230, 0.05);
  text-align: left;
  vertical-align: top;
  text-align-last: left;
}

.blog-shell--article .blog-article-body th:last-child,
.blog-shell--article .blog-article-body td:last-child {
  border-right: 0;
}

.blog-shell--article .blog-article-body tbody tr:last-child td,
.blog-shell--article .blog-article-body tbody tr:last-child th {
  border-bottom: 0;
}

.blog-shell--article .blog-article-body th p,
.blog-shell--article .blog-article-body td p {
  margin: 0;
  text-indent: 0;
  text-align: inherit;
}

.blog-shell--article .blog-article-body td:nth-child(2) {
  width: 6.5rem;
  white-space: nowrap;
  font-family: var(--font-en);
  color: rgba(215, 190, 160, 0.88);
}

.blog-shell--article .blog-article-body td code {
  font-size: 0.88em;
}

.blog-shell--article .blog-article-body .blog-media-figure--sticker {
  display: block;
  width: fit-content;
  max-width: min(100%, 220px);
  margin: 1.15em auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  cursor: default;
}

.blog-shell--article .blog-article-body .blog-media-figure--sticker img.blog-media-animated {
  display: block;
  width: auto;
  max-width: min(100%, 220px);
  max-height: 220px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(4, 5, 10, 0.22);
  object-fit: contain;
}

.blog-shell--article .blog-article-body .blog-media-figure--sticker + p,
.blog-shell--article .blog-article-body p + .blog-media-figure--sticker {
  margin-top: 0.85em;
}

.blog-article-chips .blog-post-chip--sync {
  border-color: rgba(132, 176, 220, 0.28);
  background: rgba(88, 132, 196, 0.12);
  color: rgba(196, 220, 245, 0.94);
}

.blog-card-meta .blog-card-sync {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 9px;
  margin-left: 2px;
  border-radius: 999px;
  border: 1px solid rgba(132, 176, 220, 0.24);
  background: linear-gradient(180deg, rgba(88, 132, 196, 0.16), rgba(88, 132, 196, 0.08));
  color: rgba(196, 220, 245, 0.94);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.blog-card-meta .blog-card-sync::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(132, 196, 255, 0.92);
  box-shadow: 0 0 10px rgba(132, 196, 255, 0.45);
}

.blog-card-meta .blog-card-sync--compact {
  padding: 1px 7px;
  font-size: 0.68rem;
}

.blog-card .blog-tag {
  opacity: 0.88;
  border-color: rgba(215, 190, 160, 0.18);
  background: rgba(215, 190, 160, 0.06);
  color: rgba(215, 190, 160, 0.9);
}

/* ---- 20260711k Refactor phase 2: drop unused duo/spread-note + retire legacy CSS files ---- */
/* applied 2026-07-10T14:19:22Z; backup: output/blog-css-backups/blog-authority.pre-phase2-20260710-221922.css */

/* ---- 20260711l Refactor phase 3: prune legacy hooks and flat-sheet overrides ---- */
/* applied 2026-07-10T14:27:14Z; backup: output/blog-css-backups/blog-authority.pre-phase3-20260710-222714.css */
/* decision: keep 20260713b paper sheet; drop 20260710b flat-sheet reset (no visual change) */

/* ---- Article: Tianyi blue editorial blocks ---- */
.blog-article-body .blog-yearline {
  list-style: none;
  margin: 1.5em 0 2.1em;
  padding: 0.35em 0 0.35em 0.15em;
  border-left: 1px solid rgba(102, 204, 255, 0.22);
}

.blog-article-body .blog-yearline-item {
  display: grid;
  grid-template-columns: 5.8em minmax(0, 1fr);
  gap: 0.75rem 1.05rem;
  padding: 0 0 1.45em 1.25em;
  position: relative;
}

.blog-article-body .blog-yearline-item:last-child {
  padding-bottom: 0.15em;
}

.blog-article-body .blog-yearline-item::before {
  content: "";
  position: absolute;
  left: -4.5px;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(102, 204, 255, 0.95);
  box-shadow:
    0 0 0 3px rgba(102, 204, 255, 0.12),
    0 0 18px rgba(102, 204, 255, 0.28);
}

.blog-article-body .blog-yearline-year {
  font-family: var(--font-en, "IBM Plex Sans", sans-serif);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: rgba(102, 204, 255, 0.92);
  padding-top: 0.2em;
  font-variant-numeric: tabular-nums;
}

.blog-article-body .blog-yearline-body strong {
  display: block;
  margin-bottom: 0.4em;
  font-weight: 500;
  color: rgba(245, 239, 230, 0.97);
}

.blog-article-body .blog-yearline-body p {
  margin: 0;
  text-indent: 0;
  color: rgba(220, 214, 204, 0.82);
  font-size: 0.95em;
  line-height: 1.78;
}

.blog-article-body .blog-creator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 1.35em 0 1.7em;
}

.blog-article-body .blog-creator-card {
  position: relative;
  overflow: hidden;
  padding: 1.15rem 1.1rem 1.15rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(155deg, rgba(102, 204, 255, 0.08), transparent 40%),
    rgba(12, 14, 22, 0.48);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.blog-article-body .blog-creator-card:hover {
  border-color: rgba(102, 204, 255, 0.28);
  transform: translateY(-2px);
}

.blog-article-body .blog-creator-index {
  display: block;
  margin-bottom: 0.55em;
  font-family: var(--font-en, "IBM Plex Sans", sans-serif);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: rgba(102, 204, 255, 0.55);
}

.blog-article-body .blog-creator-name {
  display: block;
  font-family: var(--font-zh-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(245, 239, 230, 0.97);
  letter-spacing: 0.02em;
}

.blog-article-body .blog-creator-works {
  margin: 0.5em 0 0.55em;
  text-indent: 0;
  font-size: 0.86em;
  color: rgba(102, 204, 255, 0.9);
  line-height: 1.55;
}

.blog-article-body .blog-creator-note {
  margin: 0;
  text-indent: 0;
  font-size: 0.9em;
  color: rgba(210, 204, 194, 0.78);
  line-height: 1.68;
}

.blog-article-body .blog-homophone {
  position: relative;
  overflow: hidden;
  margin: 0.15em 0 1.9em;
  padding: 1.55rem 1.35rem 1.4rem;
  border-radius: 22px;
  border: 1px solid rgba(102, 204, 255, 0.24);
  background:
    radial-gradient(90% 120% at 12% -10%, rgba(102, 204, 255, 0.22), transparent 55%),
    radial-gradient(70% 90% at 100% 0%, rgba(174, 181, 239, 0.14), transparent 48%),
    linear-gradient(180deg, rgba(14, 18, 30, 0.72), rgba(8, 10, 18, 0.55));
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.blog-article-body .blog-homophone::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% 20%;
  height: 70%;
  background: radial-gradient(closest-side, rgba(102, 204, 255, 0.12), transparent 70%);
  pointer-events: none;
}

.blog-article-body .blog-homophone-kicker {
  display: inline-block;
  margin-bottom: 0.85em;
  padding: 0.22em 0.7em;
  border-radius: 999px;
  border: 1px solid rgba(102, 204, 255, 0.22);
  background: rgba(102, 204, 255, 0.08);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: rgba(174, 214, 255, 0.88);
}

.blog-article-body .blog-homophone-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  position: relative;
  z-index: 1;
}

.blog-article-body .blog-homophone-main,
.blog-article-body .blog-homophone-sub {
  display: inline-block;
  font-family: var(--font-zh-display);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.15;
}

.blog-article-body .blog-homophone-main {
  font-size: clamp(2rem, 4.4vw, 2.7rem);
  color: rgba(245, 239, 230, 0.98);
  text-shadow: 0 0 28px rgba(102, 204, 255, 0.18);
}

.blog-article-body .blog-homophone-eq {
  display: inline-block;
  margin: 0 0.15rem;
  font-size: 1.05rem;
  color: rgba(102, 204, 255, 0.62);
  vertical-align: 0.4em;
}

.blog-article-body .blog-homophone-sub {
  font-size: clamp(1.12rem, 2.1vw, 1.38rem);
  color: rgba(132, 214, 255, 0.95);
}

.blog-article-body .blog-homophone-rule {
  display: block;
  width: min(12rem, 46%);
  height: 1px;
  margin: 1.05em auto 0;
  background: linear-gradient(90deg, transparent, rgba(102, 204, 255, 0.55), transparent);
}

.blog-article-body .blog-pullquote {
  position: relative;
  margin: 1.75em 0 1.85em;
  padding: 0.85em 0.2em 0.85em 1.15em;
  border: none;
  border-left: 2px solid rgba(102, 204, 255, 0.58);
  background: linear-gradient(90deg, rgba(102, 204, 255, 0.07), transparent 68%);
  font-family: var(--font-zh-display);
  font-size: clamp(1.1rem, 1.7vw, 1.32rem);
  line-height: 1.72;
  color: rgba(245, 239, 230, 0.94);
}

.blog-article-body .blog-listen-shelf {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.25em 0 1.35em;
}

.blog-article-body .blog-listen-card {
  position: relative;
  padding: 1.05rem 1.05rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 14, 22, 0.42);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.blog-article-body .blog-listen-card:hover {
  transform: translateY(-2px);
}

.blog-article-body .blog-listen-card--now {
  border-color: rgba(102, 204, 255, 0.3);
  background:
    linear-gradient(165deg, rgba(102, 204, 255, 0.14), transparent 58%),
    rgba(12, 14, 22, 0.52);
}

.blog-article-body .blog-listen-card--butterfly {
  border-color: rgba(186, 170, 255, 0.28);
  background:
    linear-gradient(165deg, rgba(186, 170, 255, 0.14), transparent 58%),
    rgba(12, 14, 22, 0.52);
}

.blog-article-body .blog-listen-kicker {
  display: block;
  margin-bottom: 0.45em;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(102, 204, 255, 0.8);
}

.blog-article-body .blog-listen-card--butterfly .blog-listen-kicker {
  color: rgba(198, 186, 255, 0.88);
}

.blog-article-body .blog-listen-card strong {
  display: block;
  font-family: var(--font-zh-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: rgba(245, 239, 230, 0.97);
}

.blog-article-body .blog-listen-card p {
  margin: 0.5em 0 0;
  text-indent: 0;
  font-size: 0.86em;
  line-height: 1.62;
  color: rgba(210, 204, 194, 0.76);
}

.blog-article-body .blog-mood-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 0 0 2em;
}

.blog-article-body .blog-mood-pane {
  position: relative;
  overflow: hidden;
  min-height: 7.5rem;
  padding: 1.15rem 1.15rem 1.2rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(145deg, rgba(102, 204, 255, 0.08), transparent 55%),
    rgba(255, 255, 255, 0.03);
}

.blog-article-body .blog-mood-pane--alt {
  background:
    linear-gradient(150deg, rgba(186, 170, 255, 0.12), transparent 58%),
    rgba(255, 255, 255, 0.03);
}

.blog-article-body .blog-mood-glyph {
  position: absolute;
  right: 0.35rem;
  bottom: -0.25rem;
  font-family: var(--font-zh-display);
  font-size: 4.2rem;
  line-height: 1;
  color: rgba(102, 204, 255, 0.08);
  pointer-events: none;
  user-select: none;
}

.blog-article-body .blog-mood-pane--alt .blog-mood-glyph {
  color: rgba(186, 170, 255, 0.1);
}

.blog-article-body .blog-mood-label {
  display: inline-block;
  margin-bottom: 0.5em;
  font-family: var(--font-zh-display);
  font-size: 0.98rem;
  letter-spacing: 0.14em;
  color: rgba(132, 214, 255, 0.95);
}

.blog-article-body .blog-mood-pane--alt .blog-mood-label {
  color: rgba(198, 186, 255, 0.95);
}

.blog-article-body .blog-mood-pane p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 16em;
  text-indent: 0;
  font-size: 0.92em;
  line-height: 1.72;
  color: rgba(220, 214, 204, 0.84);
}

/* Section rhythm for structured Tianyi-style posts */
.blog-shell--article .blog-article-body h2[id="timeline"],
.blog-shell--article .blog-article-body h2[id="listen"],
.blog-shell--article .blog-article-body h2[id="creators"],
.blog-shell--article .blog-article-body h2[id="beijing"] {
  position: relative;
  padding-bottom: 0.45em;
}

.blog-shell--article .blog-article-body h2[id="timeline"]::after,
.blog-shell--article .blog-article-body h2[id="listen"]::after,
.blog-shell--article .blog-article-body h2[id="creators"]::after,
.blog-shell--article .blog-article-body h2[id="beijing"]::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.4rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, rgba(102, 204, 255, 0.85), transparent);
}

.blog-article-body .blog-media-figure--embed + .blog-media-figure--embed {
  margin-top: 1.75rem;
}

.blog-article-body .blog-media-figure--embed .blog-embed-frame {
  border-color: rgba(102, 204, 255, 0.14);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(102, 204, 255, 0.04);
}

@media (max-width: 720px) {
  .blog-article-body .blog-yearline-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .blog-article-body .blog-creator-grid,
  .blog-article-body .blog-listen-shelf,
  .blog-article-body .blog-mood-duo {
    grid-template-columns: 1fr;
  }

  .blog-article-body .blog-homophone {
    padding: 1.25rem 1rem 1.15rem;
    border-radius: 18px;
  }

  .blog-article-body .blog-homophone-main {
    font-size: clamp(1.7rem, 8vw, 2.1rem);
  }

  .blog-article-body .blog-homophone-eq {
    width: 100%;
    margin: 0.2rem 0;
  }

  .blog-article-body .blog-mood-pane {
    min-height: 0;
  }

  .blog-article-body .blog-creator-card:hover,
  .blog-article-body .blog-listen-card:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .blog-article-body .blog-creator-card,
  .blog-article-body .blog-listen-card {
    transition: none;
  }

  .blog-article-body .blog-creator-card:hover,
  .blog-article-body .blog-listen-card:hover {
    transform: none;
  }
}
