:root {
  --paper: #f4efe6;
  --paper-light: #fbf8f2;
  --paper-deep: #e6ddcf;
  --ink: #17211d;
  --muted: #6f746c;
  --pine: #173a32;
  --pine-soft: #31584d;
  --cinnabar: #a94732;
  --cinnabar-deep: #813323;
  --gold: #b68a4d;
  --line: rgba(23, 33, 29, .16);
  --serif: "Noto Serif SC", "Noto Serif CJK SC", "Source Han Serif SC", "Songti SC", SimSun, serif;
  --sans: Inter, "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  --page: min(1480px, calc(100vw - 96px));
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background-color: #f4eee4;
  background-image: radial-gradient(circle at 16% 20%, rgba(255,224,214,.22), transparent 30%), radial-gradient(circle at 84% 74%, rgba(207,229,214,.18), transparent 34%), repeating-linear-gradient(0deg, rgba(70,42,48,.018) 0 1px, transparent 1px 5px);
  font-family: var(--sans);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
  opacity: .16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}
body.is-loading { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
::selection { color: var(--paper-light); background: var(--cinnabar); }

.skip-link { position: fixed; left: 16px; top: 12px; z-index: 1000; padding: 8px 14px; color: #fff; background: var(--ink); opacity: 0; pointer-events: none; transform: translateY(-180%); }
.skip-link:focus-visible { opacity: 1; pointer-events: auto; transform: none; }

/* loading */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  color: var(--paper-light);
  background: var(--pine);
  overflow: hidden;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader::before {
  content: "";
  position: absolute;
  width: 56vw;
  aspect-ratio: 1;
  right: -15vw;
  top: -24vw;
  border: 1px solid rgba(244, 239, 230, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 8vw rgba(244, 239, 230, .025), 0 0 0 17vw rgba(244, 239, 230, .018);
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-paper { position: absolute; width: 38vw; height: 120vh; top: -10vh; background: rgba(244,239,230,.035); transform: rotate(12deg); border-left: 1px solid rgba(244,239,230,.08); }
.paper-one { left: -12vw; }
.paper-two { right: -16vw; transform: rotate(-14deg); }
.preloader-inner { width: min(620px, calc(100vw - 56px)); position: relative; z-index: 1; }
.preloader-seal { display: grid; place-items: center; width: 60px; height: 60px; border: 1px solid rgba(244,239,230,.7); border-radius: 50%; font: 32px var(--serif); }
.preloader-inner > p { margin: 28px 0 16px; font-size: 11px; letter-spacing: .28em; opacity: .72; }
.preloader h1 { margin: 0 0 42px; font: 400 clamp(36px, 5vw, 72px)/1.28 var(--serif); letter-spacing: .05em; }
.preloader-line { height: 1px; background: rgba(244,239,230,.22); overflow: hidden; }
.preloader-line span { display: block; width: 0; height: 100%; background: var(--gold); transition: width .15s linear; }
.preloader-meta { display: flex; justify-content: space-between; margin-top: 14px; font-size: 11px; letter-spacing: .12em; opacity: .68; }

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(42px, calc((100vw - 1480px) / 2));
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  background: rgba(244,239,230,.9);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand-mark { display: grid; place-items: center; width: 48px; height: 48px; color: #fff; background: var(--cinnabar); border-radius: 50%; font: 25px var(--serif); box-shadow: inset 0 0 0 5px rgba(255,255,255,.12); }
.brand-text { font: 17px/1.1 var(--serif); letter-spacing: .08em; }
.brand-text small { display: block; margin-top: 6px; font: 9px/1 var(--sans); letter-spacing: .26em; color: var(--muted); }
.site-nav { display: flex; align-items: stretch; gap: 34px; height: 100%; }
.site-nav a { position: relative; display: flex; align-items: center; font-size: 14px; letter-spacing: .08em; color: #5f625c; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 16px; height: 1px; background: var(--cinnabar); transition: right .35s var(--ease); }
.site-nav a:hover, .site-nav a.active { color: var(--ink); }
.site-nav a:hover::after, .site-nav a.active::after { right: 0; }
.menu-toggle { display: none; border: 0; background: transparent; }

/* common */
.section { width: var(--page); margin-inline: auto; padding: 140px 0; }
.section-heading { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 24px; margin-bottom: 72px; align-items: start; }
.section-index { margin: 12px 0 0; color: var(--cinnabar); font-size: 11px; font-weight: 700; letter-spacing: .2em; }
.section-heading h2 { margin: 0; font: 400 clamp(52px, 6vw, 90px)/1.08 var(--serif); letter-spacing: .03em; }
.split-heading { grid-template-columns: minmax(0, 1.5fr) minmax(320px, .7fr); }
.split-heading > div { display: grid; grid-template-columns: 220px 1fr; }
.split-heading > p { max-width: 540px; margin: 28px 0 0; color: var(--muted); font: 17px/2 var(--serif); }
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 30px; min-width: 176px; padding: 13px 18px; border: 1px solid var(--ink); font-size: 13px; letter-spacing: .08em; transition: .3s ease; }
.button.primary { color: #fff; background: var(--pine); border-color: var(--pine); }
.button.primary:hover { background: var(--cinnabar); border-color: var(--cinnabar); transform: translateY(-2px); }
.button.ghost:hover { color: #fff; background: var(--ink); }
.project-meta { margin: 0 0 12px; color: var(--gold); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.image-button { border: 0; padding: 0; background: transparent; cursor: zoom-in; }

/* hero */
.hero {
  position: relative;
  width: min(1640px, calc(100vw - 56px));
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  padding: 8vh 7vw 7vh;
  display: grid;
  grid-template-columns: 1.08fr .76fr;
  gap: 7vw;
  align-items: center;
  overflow: hidden;
  background: var(--paper-light);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(122deg, transparent 0 54%, rgba(23,58,50,.055) 54.1% 70%, transparent 70.1%); }
.hero::after { content: ""; position: absolute; width: 460px; height: 460px; right: 10vw; top: 7vh; border: 1px solid rgba(169,71,50,.16); border-radius: 50%; box-shadow: 0 0 0 90px rgba(169,71,50,.018), 0 0 0 180px rgba(169,71,50,.012); }
.hero-grain { position: absolute; inset: 0; opacity: .16; background: repeating-linear-gradient(90deg, transparent 0 32px, rgba(23,33,29,.035) 33px); }
.hero-copy { position: relative; z-index: 2; max-width: 760px; }
.eyebrow { margin: 0 0 26px; color: var(--cinnabar); font-size: 11px; font-weight: 700; letter-spacing: .24em; }
.hero h1 { margin: 0; font: 400 clamp(66px, 8.4vw, 132px)/.9 var(--serif); letter-spacing: .08em; }
.hero-role { margin: 30px 0 16px; font: 400 clamp(25px, 2.5vw, 40px)/1.5 var(--serif); }
.hero-role span { position: relative; display: inline-block; min-width: 4.2em; color: var(--cinnabar); text-align: center; }
.hero-role span::after { content: ""; position: absolute; left: 8%; right: 8%; bottom: 4px; height: 8px; background: rgba(182,138,77,.25); z-index: -1; }
.hero-intro { max-width: 660px; margin: 0; color: var(--muted); font: 16px/2 var(--serif); }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.hero-labels { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 34px; color: var(--muted); font-size: 11px; letter-spacing: .12em; }
.hero-labels span::before { content: "◆"; margin-right: 8px; color: var(--gold); font-size: 7px; }
.hero-portrait { position: relative; z-index: 2; width: min(450px, 32vw); margin: 0; justify-self: center; }
.portrait-frame { position: relative; aspect-ratio: .76; overflow: hidden; background: #fff; box-shadow: 20px 24px 0 var(--pine), -18px -18px 0 rgba(182,138,77,.18); }
.portrait-frame::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(23,33,29,.13); box-shadow: inset 0 0 0 10px rgba(251,248,242,.4); }
.portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.hero-portrait figcaption { display: grid; grid-template-columns: auto 1fr; gap: 18px; margin-top: 30px; align-items: start; }
.hero-portrait figcaption span { font: 28px var(--serif); letter-spacing: .2em; }
.hero-portrait figcaption small { padding-left: 18px; border-left: 1px solid var(--line); color: var(--muted); line-height: 1.8; }
.portrait-number { position: absolute; right: -32px; top: -60px; color: var(--cinnabar); font: 12px var(--sans); letter-spacing: .2em; writing-mode: vertical-rl; }
.hero-vertical { position: absolute; right: 24px; top: 50%; z-index: 2; transform: translateY(-50%); color: rgba(23,33,29,.42); font-size: 10px; letter-spacing: .32em; writing-mode: vertical-rl; }
.scroll-cue { position: absolute; z-index: 3; bottom: 24px; left: 7vw; display: flex; align-items: center; gap: 16px; color: var(--muted); font-size: 10px; letter-spacing: .14em; }
.scroll-cue span { color: var(--cinnabar); }

.stats-wrap { width: min(1640px, calc(100vw - 56px)); margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); color: #fff; background: var(--pine); }
.stat { min-height: 155px; padding: 34px 28px; border-right: 1px solid rgba(255,255,255,.13); }
.stat:last-child { border: 0; }
.stat strong { display: block; margin-bottom: 8px; color: #e6c18b; font: 42px/1 var(--serif); }
.stat span { color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.6; }

/* about */
.about-section { padding-bottom: 170px; }
.identity-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--ink); border-left: 1px solid var(--line); }
.identity-card { position: relative; min-height: 360px; padding: 48px 56px 44px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; transition: color .35s ease, background .35s ease; }
.identity-card::after { content: attr(data-word); position: absolute; right: -10px; bottom: -46px; font: 150px var(--serif); opacity: .035; }
.identity-card:hover { color: #fff; background: var(--pine); }
.identity-card:hover p, .identity-card:hover .identity-en { color: rgba(255,255,255,.72); }
.identity-no { position: absolute; right: 36px; top: 34px; color: var(--cinnabar); font: 18px var(--serif); }
.identity-en { margin: 0 0 34px; color: var(--gold); font-size: 10px; letter-spacing: .18em; }
.identity-card h3 { margin: 0 0 18px; font: 38px var(--serif); }
.identity-card > p:not(.identity-en) { max-width: 520px; margin: 0; color: var(--muted); font: 16px/2 var(--serif); transition: color .35s ease; }
.identity-card a { position: absolute; left: 56px; bottom: 34px; color: var(--cinnabar); font-size: 12px; letter-spacing: .08em; }
.identity-card:hover a { color: #e6c18b; }

/* timeline */
.paper-section { width: 100%; padding-inline: max(48px, calc((100vw - 1480px)/2)); color: #f7f1e7; background: var(--pine); }
.paper-section .section-index { color: #dfb06b; }
.timeline { max-width: 1180px; margin-left: auto; }
.timeline-item { display: grid; grid-template-columns: 210px 1fr; gap: 52px; padding: 52px 0; border-top: 1px solid rgba(255,255,255,.15); }
.timeline-item:last-child { border-bottom: 1px solid rgba(255,255,255,.15); }
.timeline-time { display: grid; grid-template-columns: 1fr auto 1fr; gap: 10px; align-items: center; height: max-content; color: rgba(255,255,255,.56); font-size: 11px; letter-spacing: .08em; }
.timeline-time i { width: 22px; height: 1px; background: #dfb06b; }
.timeline-body { display: grid; grid-template-columns: minmax(250px, .62fr) 1fr; column-gap: 50px; }
.role-tag { grid-column: 1; margin: 3px 0 8px; color: #dfb06b; font-size: 11px; letter-spacing: .16em; }
.timeline-body h3 { grid-column: 1; margin: 0; font: 28px/1.5 var(--serif); }
.timeline-body ul { grid-column: 2; grid-row: 1 / span 2; margin: 0; padding-left: 1.1em; color: rgba(255,255,255,.73); font-size: 14px; }
.timeline-body li { margin-bottom: 8px; }
.timeline-body strong { color: #f2ca91; font-weight: 600; }
.education-strip { margin-top: 92px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; background: var(--paper-light); color: var(--ink); }
.education-strip article { padding: 42px 56px; }
.education-strip article:last-child { text-align: right; }
.education-strip span { color: var(--cinnabar); font-size: 11px; letter-spacing: .12em; }
.education-strip h3 { margin: 10px 0 2px; font: 32px var(--serif); }
.education-strip p { margin: 0; color: var(--muted); }
.education-seal { display: grid; place-items: center; width: 70px; height: 70px; color: #fff; background: var(--cinnabar); border-radius: 50%; font: 19px/1.2 var(--serif); text-align: center; }

/* research */
.research-section { position: relative; }
.research-intro { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin: -28px 0 58px 220px; padding-bottom: 28px; border-bottom: 1px solid var(--ink); }
.research-intro p { max-width: 650px; margin: 0; color: var(--muted); font: 18px/2 var(--serif); }
.research-intro span { color: var(--cinnabar); font-size: 12px; letter-spacing: .12em; }
.paper-list { margin-left: 220px; }
.paper-item { position: relative; display: grid; grid-template-columns: 80px 1fr auto; gap: 28px; align-items: center; min-height: 164px; padding: 28px 22px; border-bottom: 1px solid var(--line); transition: .35s var(--ease); }
.paper-item:first-child { border-top: 1px solid var(--line); }
.paper-item:hover { padding-left: 34px; background: var(--paper-light); box-shadow: 0 18px 44px rgba(23,33,29,.055); }
.paper-no { color: var(--gold); font: 13px var(--sans); letter-spacing: .14em; }
.paper-item h3 { max-width: 950px; margin: 0 0 10px; font: 28px/1.55 var(--serif); }
.paper-item p { margin: 0; color: var(--muted); font-size: 13px; }
.status { min-width: 64px; padding: 4px 10px; color: var(--pine); border: 1px solid rgba(23,58,50,.35); border-radius: 20px; text-align: center; font-size: 11px; letter-spacing: .08em; }
.status.warm { color: var(--cinnabar); border-color: rgba(169,71,50,.35); }

/* projects */
.projects-section { width: 100%; padding-inline: max(48px, calc((100vw - 1480px)/2)); background: #ede5d9; }
.project-feature { display: grid; grid-template-columns: 1.06fr .88fr 180px; min-height: 650px; background: var(--paper-light); box-shadow: 0 26px 60px rgba(48,38,28,.09); }
.gradient-carousel { position: relative; min-width: 0; min-height: 650px; overflow: hidden; color: #fff; background: #122e27; perspective: 1800px; isolation: isolate; touch-action: pan-y; cursor: grab; }
.gradient-carousel:active { cursor: grabbing; }
.gradient-carousel:focus-visible { outline: 2px solid var(--gold); outline-offset: -2px; }
.gradient-bg { position: absolute; inset: -8%; z-index: -3; width: 116%; height: 116%; filter: blur(24px) saturate(1.08); transform: scale(1.04); }
.gradient-aura { position: absolute; inset: 0; z-index: -2; pointer-events: none; background: radial-gradient(circle at 50% 42%, transparent 0 30%, rgba(8,23,19,.13) 62%, rgba(5,17,14,.68) 100%), linear-gradient(180deg, rgba(255,255,255,.05), transparent 28%, rgba(6,20,16,.42)); }
.gradient-cards { position: absolute; inset: 0; z-index: 1; transform-style: preserve-3d; }
.gradient-card { position: absolute; top: 47%; left: 50%; width: min(68%, 470px); height: min(68%, 455px); margin: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.32); background: rgba(12,34,28,.44); box-shadow: 0 28px 60px rgba(3,15,12,.4); transform-style: preserve-3d; backface-visibility: hidden; transform-origin: 90% center; contain: layout paint; will-change: transform, opacity; transition: filter .28s ease, border-color .28s ease, box-shadow .28s ease; cursor: pointer; }
.gradient-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 60%, rgba(5,18,14,.52)); opacity: .58; }
.gradient-card img { width: 100%; height: 100%; object-fit: contain; background: rgba(11,31,26,.42); user-select: none; -webkit-user-drag: none; image-rendering: auto; }
.gradient-card.is-active { border-color: rgba(255,255,255,.76); box-shadow: 0 34px 80px rgba(3,15,12,.48), 0 0 0 1px rgba(230,193,139,.28); filter: saturate(1.02) contrast(1.01); }
.gradient-card:not(.is-active) { filter: saturate(.72) brightness(.78); }
.gradient-card-index { position: absolute; top: 13px; right: 14px; z-index: 2; display: grid; place-items: center; min-width: 36px; height: 24px; padding: 0 7px; color: #f4dfbd; border: 1px solid rgba(255,255,255,.34); background: rgba(10,29,24,.55); backdrop-filter: blur(8px); font-size: 9px; letter-spacing: .12em; }
.gradient-ui { position: absolute; z-index: 5; left: 26px; right: 26px; bottom: 24px; display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: end; pointer-events: none; }
.gradient-controls { display: flex; gap: 8px; pointer-events: auto; }
.gradient-controls button { width: 42px; height: 42px; padding: 0; border: 1px solid rgba(255,255,255,.48); color: #fff; background: rgba(11,34,28,.5); backdrop-filter: blur(10px); cursor: pointer; transition: background .25s ease, border-color .25s ease, transform .25s ease; }
.gradient-controls button:hover { border-color: #e6c18b; background: rgba(169,71,50,.72); transform: translateY(-2px); }
.gradient-status { align-self: center; justify-self: start; min-width: 170px; }
.gradient-status strong { display: block; color: #f0c98f; font: 20px/1 var(--serif); letter-spacing: .08em; }
.gradient-status span { display: block; margin-top: 7px; color: rgba(255,255,255,.68); font-size: 10px; letter-spacing: .14em; }
.gradient-hint { margin: 0; color: rgba(255,255,255,.52); font-size: 9px; letter-spacing: .16em; writing-mode: vertical-rl; }
.gradient-loader { position: absolute; z-index: 6; inset: 0; display: grid; place-content: center; justify-items: center; gap: 14px; color: rgba(255,255,255,.72); background: #173a32; transition: opacity .22s ease, visibility .22s ease; }
.gradient-loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.gradient-loader span { width: 72px; height: 1px; overflow: hidden; background: rgba(255,255,255,.18); }
.gradient-loader span::after { content: ""; display: block; width: 44%; height: 100%; background: #e6c18b; animation: gradient-loading 1.1s ease-in-out infinite alternate; }
.gradient-loader p { margin: 0; font-size: 10px; letter-spacing: .16em; }
.gradient-fallback { width: 100%; height: 100%; object-fit: contain; }
@keyframes gradient-loading { from { transform: translateX(-110%); } to { transform: translateX(225%); } }
.project-feature-copy { padding: 72px 58px 52px; }
.project-feature-copy h3 { margin: 0 0 26px; font: 38px/1.5 var(--serif); }
.project-feature-copy > p:not(.project-meta) { color: var(--muted); font: 16px/2 var(--serif); }
.project-feature-copy strong { color: var(--cinnabar); }
.project-measures { display: grid; grid-template-columns: repeat(3, 1fr); margin: 34px 0; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.project-measures span { font-size: 11px; color: var(--muted); }
.project-measures b { display: block; color: var(--pine); font: 30px var(--serif); }
.project-links { display: flex; flex-wrap: wrap; gap: 14px; }
.project-links a, .text-button { padding: 9px 14px; color: var(--cinnabar); border: 1px solid rgba(169,71,50,.35); background: transparent; font-size: 12px; cursor: pointer; }
.project-books { padding: 34px 24px; display: flex; flex-direction: column; gap: 20px; background: #e9e0d4; }
.project-books button { flex: 1; min-height: 0; overflow: hidden; box-shadow: 0 9px 22px rgba(27,23,17,.15); }
.project-books img { width: 100%; height: 100%; object-fit: cover; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 22px; }
.project-card { display: flex; flex-direction: column; min-height: 590px; background: var(--paper-light); }
.project-card-media { height: 330px; overflow: hidden; background: #d8cdbd; }
.project-card-media > img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.project-card:hover .project-card-media > img { transform: scale(1.025); }
.project-card-media.editing-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; }
.project-card-media.editing-preview img { width: 100%; height: 100%; object-fit: cover; }
.project-card-copy { padding: 36px 38px 42px; }
.project-card h3 { margin: 0 0 16px; font: 26px/1.55 var(--serif); }
.project-card p:not(.project-meta) { margin: 0; color: var(--muted); font-size: 14px; }
.project-card-text { color: #fff; background: var(--cinnabar-deep); justify-content: center; }
.project-card-text .project-meta { color: #e9c38e; }
.project-card-text p:not(.project-meta) { color: rgba(255,255,255,.74); }
.keyword-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0 0; padding: 0; list-style: none; }
.keyword-row li { padding: 4px 10px; border: 1px solid rgba(255,255,255,.25); font-size: 11px; }

/* works */
.works-section { width: 100%; padding-inline: max(48px, calc((100vw - 1480px)/2)); color: var(--paper-light); background: #102d27; }
.works-section .section-index { color: #d7a65f; }
.works-section .split-heading > p { color: rgba(255,255,255,.6); }
.work-tabs { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.25); border-bottom: 1px solid rgba(255,255,255,.25); }
.work-tabs button { position: relative; padding: 26px 20px; border: 0; border-right: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.56); background: transparent; cursor: pointer; text-align: left; font: 20px var(--serif); transition: .3s ease; }
.work-tabs button:last-child { border-right: 0; }
.work-tabs button span { margin-right: 20px; color: #d7a65f; font: 10px var(--sans); }
.work-tabs button::after { content: ""; position: absolute; left: 20px; right: calc(100% - 20px); bottom: -1px; height: 2px; background: #d7a65f; transition: right .35s var(--ease); }
.work-tabs button[aria-selected="true"] { color: #fff; background: rgba(255,255,255,.04); }
.work-tabs button[aria-selected="true"]::after { right: 20px; }
.work-panel { padding-top: 54px; }
.work-panel[hidden] { display: none; }
.work-summary { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 36px; border: 1px solid rgba(255,255,255,.16); }
.work-summary > div { display: flex; align-items: center; gap: 18px; min-height: 110px; padding: 20px 30px; border-right: 1px solid rgba(255,255,255,.16); }
.work-summary > div:last-child { border: 0; }
.work-summary span { color: #e5bd82; font: 38px var(--serif); }
.work-summary p { margin: 0; color: rgba(255,255,255,.56); font-size: 11px; line-height: 1.6; }
.news-feature-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 46px; }
.news-feature { display: grid; grid-template-columns: .86fr 1.14fr; min-height: 310px; background: var(--paper-light); color: var(--ink); }
.news-feature > button { min-width: 0; overflow: hidden; }
.news-feature img { width: 100%; height: 100%; object-fit: cover; }
.news-feature > div { padding: 36px; display: flex; flex-direction: column; align-items: flex-start; }
.news-feature p { margin: 0 0 16px; color: var(--cinnabar); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.news-feature h3 { margin: 0 0 14px; font: 26px/1.45 var(--serif); }
.news-feature span { color: var(--muted); font-size: 12px; }
.news-feature a { margin-top: auto; color: var(--cinnabar); font-size: 12px; }
.news-list { border-top: 1px solid rgba(255,255,255,.2); }
.news-row { display: grid; grid-template-columns: 52px 1fr 100px 28px; gap: 24px; align-items: center; min-height: 112px; padding: 18px 12px; border-bottom: 1px solid rgba(255,255,255,.16); transition: .28s ease; }
.news-row:hover { padding-left: 24px; background: rgba(255,255,255,.045); }
.news-row > span { color: #d7a65f; font-size: 10px; letter-spacing: .14em; }
.news-row h3 { margin: 0 0 4px; font: 20px/1.5 var(--serif); }
.news-row p { margin: 0; color: rgba(255,255,255,.46); font-size: 11px; }
.news-row b { color: #e8c999; font: 16px var(--serif); text-align: right; }
.news-row i { font-style: normal; color: rgba(255,255,255,.4); }
.news-row.english h3 { font-family: Georgia, serif; }

.essay-intro { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-bottom: 34px; }
.essay-intro > p { margin: 0; color: rgba(255,255,255,.62); }
.essay-intro > p span { margin-right: 10px; color: #e5bd82; font: 40px var(--serif); }
.essay-search label { display: block; color: #d7a65f; font-size: 9px; letter-spacing: .14em; }
.essay-search input { width: 260px; padding: 8px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.35); outline: 0; color: #fff; background: transparent; }
.essay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.15); }
.essay-card { position: relative; min-height: 360px; padding: 38px 34px 32px; background: #173a32; transition: .35s ease; }
.essay-card:hover { color: var(--ink); background: var(--paper-light); }
.essay-card.featured { background: var(--cinnabar-deep); }
.essay-card.featured:hover { background: #c8674e; color: #fff; }
.essay-card .essay-no { display: block; margin-bottom: 62px; color: #d7a65f; font-size: 10px; letter-spacing: .14em; }
.essay-card h3 { margin: 0 0 14px; font: 30px/1.35 var(--serif); }
.essay-card p { display: -webkit-box; margin: 0; overflow: hidden; color: rgba(255,255,255,.55); font: 13px/1.9 var(--serif); -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.essay-card:hover p { color: var(--muted); }
.essay-card.featured:hover p { color: rgba(255,255,255,.75); }
.essay-meta { position: absolute; left: 34px; right: 34px; bottom: 25px; display: flex; justify-content: space-between; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.5); font-size: 10px; }
.essay-card:hover .essay-meta { color: var(--muted); border-color: var(--line); }
.essay-card.featured:hover .essay-meta { color: rgba(255,255,255,.55); border-color: rgba(255,255,255,.18); }
.essay-award { position: absolute; right: 22px; top: 22px; max-width: 160px; color: #f0cd96; font-size: 9px; text-align: right; }
.essay-empty { grid-column: 1/-1; padding: 70px; text-align: center; color: rgba(255,255,255,.6); background: var(--pine); }

.newspaper-layout { display: grid; grid-template-columns: minmax(460px, .82fr) 1.18fr; gap: 50px; }
.publication-list { border-top: 1px solid rgba(255,255,255,.22); }
.publication-head { display: grid; grid-template-columns: 150px 1fr auto; gap: 24px; align-items: center; min-height: 100px; color: #e7c590; }
.publication-head h3 { margin: 0; color: #fff; font: 28px var(--serif); }
.publication-list > a, .publication-only { display: grid; grid-template-columns: 150px 1fr auto; gap: 24px; align-items: center; min-height: 72px; border-top: 1px solid rgba(255,255,255,.12); transition: .25s ease; }
.publication-list > a:hover { padding-left: 12px; background: rgba(255,255,255,.035); }
.publication-list span { color: rgba(255,255,255,.42); font-size: 10px; }
.publication-list h4 { margin: 0; font: 18px var(--serif); }
.publication-list i { color: #d7a65f; font-size: 10px; font-style: normal; }
.gallery-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 20px; }
.gallery-head p { margin: 0; font: 27px var(--serif); }
.gallery-head span { color: rgba(255,255,255,.44); font-size: 10px; }
.newspaper-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; max-height: 930px; padding-right: 8px; overflow-y: auto; scrollbar-color: #d7a65f rgba(255,255,255,.08); }
.gallery-button { position: relative; aspect-ratio: .75; overflow: hidden; border: 0; padding: 0; background: #e8dfd2; cursor: zoom-in; }
.gallery-button img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-button:hover img { transform: scale(1.035); }
.gallery-button span { position: absolute; right: 6px; bottom: 6px; padding: 2px 7px; color: #fff; background: rgba(16,45,39,.72); font-size: 9px; }

.editing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.editing-grid article { display: grid; grid-template-columns: 220px 1fr; grid-template-rows: auto auto 1fr auto; gap: 0 34px; min-height: 330px; padding: 30px; color: var(--ink); background: var(--paper-light); }
.editing-art { grid-row: 1 / span 4; width: 220px; height: 270px; }
.editing-art.text-art { display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; background: var(--cinnabar-deep); font-family: var(--serif); }
.editing-art.text-art span { font-size: 25px; }
.editing-art.text-art b { font-size: 58px; font-weight: 400; }
.editing-art.text-art small { opacity: .65; }
.editing-art.image-art { background: #ded3c5; overflow: hidden; }
.editing-art.image-art img { width: 100%; height: 100%; object-fit: cover; }
.editing-grid h3 { margin: 0 0 12px; font: 25px/1.45 var(--serif); }
.editing-grid article > p:not(.project-meta) { margin: 0; color: var(--muted); font-size: 13px; }
.editing-grid article > a { align-self: end; color: var(--cinnabar); font-size: 11px; }

/* honors */
.honors-section { padding-bottom: 170px; }
.honors-layout { display: grid; grid-template-columns: minmax(480px, 1fr) minmax(500px, .9fr); gap: 70px; align-items: start; }
.certificate-wall { position: sticky; top: 108px; height: calc(100vh - 135px); min-height: 700px; padding: 24px 24px 0; color: #fff; background: radial-gradient(circle at 50% 48%, #234c41 0, #173a32 38%, #0f2c25 100%); overflow: hidden; isolation: isolate; }
.certificate-head { position: relative; z-index: 1200; display: flex; justify-content: space-between; align-items: center; height: 42px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.16); }
.certificate-head span { font: 23px var(--serif); }
.certificate-head small { color: rgba(255,255,255,.48); font-size: 9px; letter-spacing: .12em; }
.certificate-scroll { position: relative; height: calc(100% - 42px); overflow: hidden; perspective: 1100px; transform-style: preserve-3d; touch-action: pan-y; cursor: ns-resize; }
.certificate-scroll::before { content: "VORTEX ARCHIVE"; position: absolute; z-index: -1; left: 50%; top: 50%; color: rgba(255,255,255,.035); font: 66px/1 Georgia, serif; letter-spacing: .18em; white-space: nowrap; transform: translate(-50%, -50%) rotate(90deg); }
.vortex-orbit { position: absolute; z-index: -2; left: 50%; top: 50%; width: 68%; height: 88%; border: 1px solid rgba(231,197,144,.16); border-radius: 50%; box-shadow: 0 0 70px rgba(230,193,139,.08), inset 0 0 70px rgba(230,193,139,.04); pointer-events: none; transform: translate(-50%, -50%); }
.vortex-core { position: absolute; z-index: -3; left: 50%; top: 50%; width: 22%; height: 70%; border-radius: 50%; pointer-events: none; background: radial-gradient(ellipse, rgba(230,193,139,.11), transparent 70%); filter: blur(12px); transform: translate(-50%, -50%); }
.certificate-scroll .vortex-certificate { position: absolute; left: 50%; top: 50%; width: min(38%, 190px); height: auto; aspect-ratio: var(--award-ratio, .74); margin: 0; overflow: hidden; border: 1px solid rgba(239,219,186,.48); background: #f1e9dc; box-shadow: 0 20px 45px rgba(1,12,9,.38); backface-visibility: hidden; transform-style: preserve-3d; transform-origin: center; will-change: transform, opacity; transition: border-color .22s ease, box-shadow .22s ease, filter .22s ease; }
.certificate-scroll .vortex-certificate img { width: 100%; height: 100%; object-fit: contain; background: #f1e9dc; transform: none !important; }
.certificate-scroll .vortex-certificate span { right: 7px; bottom: 7px; color: #fff; background: rgba(14,45,37,.76); }
.certificate-scroll .vortex-certificate.is-vortex-front { border-color: rgba(246,222,183,.94); box-shadow: 0 28px 62px rgba(1,12,9,.55), 0 0 0 1px rgba(230,193,139,.28); filter: saturate(1.02) contrast(1.01); }
.certificate-scroll .vortex-certificate:hover { border-color: #f0cf98; box-shadow: 0 30px 65px rgba(1,12,9,.62), 0 0 0 2px rgba(240,207,152,.28); }
.certificate-fade { position: absolute; z-index: 1100; inset: 66px 0 0; background: linear-gradient(180deg, #123028 0, transparent 13% 84%, #102d26 100%), linear-gradient(90deg, rgba(10,29,24,.58), transparent 16% 84%, rgba(10,29,24,.58)); pointer-events: none; }
.honor-groups section { border-top: 1px solid var(--ink); padding: 28px 0 44px; }
.honor-groups h3 { display: flex; align-items: baseline; justify-content: space-between; margin: 0 0 28px; }
.honor-groups h3 span { font: 34px var(--serif); }
.honor-groups h3 small { color: var(--cinnabar); font-size: 9px; letter-spacing: .16em; }
.honor-groups ol { margin: 0; padding: 0; list-style: none; counter-reset: honor; }
.honor-groups li { position: relative; padding: 17px 0 17px 48px; border-top: 1px solid var(--line); counter-increment: honor; }
.honor-groups li::before { content: "0" counter(honor); position: absolute; left: 0; top: 20px; color: var(--gold); font-size: 10px; }
.honor-groups b { display: block; font: 17px/1.55 var(--serif); }
.honor-groups em { display: block; margin-top: 4px; color: var(--muted); font-size: 11px; font-style: normal; }

/* method and contact */
.method-section { width: 100%; padding-inline: max(48px, calc((100vw - 1480px)/2)); background: var(--paper-light); }
.method-flow { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--line); }
.method-flow article { min-height: 250px; padding: 34px 32px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.method-flow span { color: var(--cinnabar); font-size: 10px; letter-spacing: .14em; }
.method-flow h3 { margin: 30px 0 14px; font: 30px var(--serif); }
.method-flow p { margin: 0; color: var(--muted); font-size: 13px; }
.skills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 40px; }
.skills span { padding: 7px 15px; border: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.contact-section { position: relative; min-height: 610px; padding: 115px max(48px, calc((100vw - 1480px)/2)); display: grid; grid-template-columns: 1.2fr 1fr; gap: 90px; align-items: center; overflow: hidden; color: #fff; background: var(--cinnabar-deep); }
.contact-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 78% 20%, rgba(242,202,145,.16), transparent 34%), linear-gradient(115deg, transparent 55%, rgba(255,255,255,.04) 55.2%); }
.contact-watermark { position: absolute; right: -2vw; bottom: -13vw; color: rgba(255,255,255,.045); font: 520px var(--serif); line-height: 1; }
.contact-copy, .contact-actions { position: relative; z-index: 1; }
.contact-section .section-index { color: #f0c884; }
.contact-copy h2 { margin: 20px 0 24px; font: 58px/1.3 var(--serif); }
.contact-copy > p:last-child { max-width: 560px; color: rgba(255,255,255,.62); }
.contact-actions { border-top: 1px solid rgba(255,255,255,.35); }
.contact-actions a { display: flex; justify-content: space-between; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.25); font-family: Georgia, var(--serif); transition: padding .25s ease; }
.contact-actions a:hover { padding-left: 12px; }
.site-footer { min-height: 85px; padding: 0 max(48px, calc((100vw - 1480px)/2)); display: flex; align-items: center; justify-content: space-between; color: rgba(255,255,255,.48); background: #0e2520; font-size: 10px; letter-spacing: .13em; }
.site-footer a { color: #e1b879; }

/* lightbox */
.lightbox, .lightbox.is-protected { position: fixed; inset: 20px; width: min(1080px, calc(100vw - 40px)); max-width: calc(100vw - 40px); max-height: calc(100dvh - 40px); margin: auto; padding: 24px; border: 0; color: #fff; background: #0e201c; overflow: auto; }
.lightbox::backdrop { background: rgba(7,16,13,.87); backdrop-filter: blur(8px); }
.lightbox img { max-width: 100%; max-height: calc(100vh - 130px); margin: auto; object-fit: contain; }
.lightbox p { margin: 16px 0 0; text-align: center; color: rgba(255,255,255,.65); font-size: 12px; }
.lightbox-close { position: fixed; right: 30px; top: 20px; z-index: 2; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #fff; background: rgba(14,32,28,.75); cursor: pointer; font-size: 28px; }
.lightbox.is-protected::after { content: "GUIYOUJI · PROJECT ARCHIVE"; position: absolute; left: 50%; top: 50%; z-index: 1; padding: 7px 12px; color: rgba(255,255,255,.32); border: 1px solid rgba(255,255,255,.18); background: rgba(16,34,29,.14); font: 10px/1 Inter, Arial, sans-serif; letter-spacing: .16em; transform: translate(-50%, -50%) rotate(-18deg); pointer-events: none; }
body.lightbox-open { overflow: hidden; }

@media (max-width: 1180px) {
  :root { --page: min(100% - 64px, 1100px); }
  .site-header { padding-inline: 32px; }
  .site-nav { gap: 21px; }
  .hero { grid-template-columns: 1fr .72fr; padding-inline: 6vw; }
  .hero-portrait { width: min(380px, 34vw); }
  .split-heading > div, .section-heading { grid-template-columns: 150px 1fr; }
  .research-intro, .paper-list { margin-left: 150px; }
  .project-feature { grid-template-columns: .9fr 1fr 145px; }
  .project-feature-copy { padding: 54px 40px 42px; }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid .project-card:last-child { grid-column: 1/-1; min-height: 360px; }
  .news-feature { grid-template-columns: .75fr 1.25fr; }
  .editing-grid article { grid-template-columns: 160px 1fr; }
  .editing-art { width: 160px; height: 230px; }
  .honors-layout { grid-template-columns: .9fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  :root { --page: calc(100% - 40px); }
  .site-header { height: 68px; padding-inline: 20px; }
  .brand-mark { width: 40px; height: 40px; font-size: 21px; }
  .menu-toggle { display: block; padding: 8px; cursor: pointer; }
  .site-nav { position: absolute; top: 68px; left: 0; right: 0; height: auto; padding: 12px 20px 20px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: rgba(244,239,230,.98); border-bottom: 1px solid var(--line); transform: translateY(-140%); opacity: 0; pointer-events: none; transition: .35s var(--ease); }
  .site-nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .site-nav a { justify-content: center; padding: 11px; font-size: 12px; }
  .site-nav a::after { bottom: 5px; }
  .hero { width: 100%; min-height: auto; padding: 80px 28px 72px; grid-template-columns: 1fr; gap: 64px; }
  .hero-copy { max-width: 650px; }
  .hero h1 { font-size: clamp(66px, 16vw, 104px); }
  .hero-portrait { width: min(420px, 74vw); }
  .hero-vertical { display: none; }
  .stats-wrap { width: 100%; grid-template-columns: repeat(2, 1fr); }
  .stat:last-child { grid-column: 1/-1; }
  .section { padding-block: 95px; }
  .section-heading, .split-heading { display: block; }
  .split-heading > div { display: block; }
  .section-index { margin: 0 0 16px; }
  .section-heading h2 { font-size: clamp(48px, 10vw, 76px); }
  .split-heading > p { margin-top: 30px; }
  .identity-grid { grid-template-columns: 1fr; }
  .paper-section, .projects-section, .works-section, .method-section { padding-inline: 24px; }
  .timeline { max-width: none; }
  .timeline-item { grid-template-columns: 1fr; gap: 18px; }
  .timeline-time { max-width: 220px; }
  .timeline-body { grid-template-columns: 1fr; }
  .timeline-body ul { grid-column: 1; grid-row: auto; margin-top: 20px; }
  .education-strip { grid-template-columns: 1fr; }
  .education-strip article:last-child { text-align: left; }
  .education-seal { margin: -10px 0 -10px 42px; }
  .research-intro, .paper-list { margin-left: 0; }
  .paper-item { grid-template-columns: 48px 1fr; }
  .paper-item .status { grid-column: 2; justify-self: start; }
  .project-feature { grid-template-columns: 1fr; }
  .gradient-carousel { min-height: 620px; }
  .gradient-card { width: min(64%, 500px); height: 68%; }
  .project-books { display: grid; grid-template-columns: 1fr 1fr; height: 320px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-grid .project-card:last-child { grid-column: auto; }
  .work-tabs { grid-template-columns: repeat(2, 1fr); }
  .work-tabs button:nth-child(2) { border-right: 0; }
  .work-tabs button:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.16); }
  .work-summary { grid-template-columns: 1fr; }
  .work-summary > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .news-feature-row { grid-template-columns: 1fr; }
  .essay-grid { grid-template-columns: repeat(2, 1fr); }
  .newspaper-layout { grid-template-columns: 1fr; }
  .newspaper-gallery { max-height: 680px; grid-template-columns: repeat(4, 1fr); }
  .editing-grid { grid-template-columns: 1fr; }
  .honors-layout { grid-template-columns: 1fr; }
  .certificate-wall { position: relative; top: auto; height: 720px; }
  .method-flow { grid-template-columns: repeat(2, 1fr); }
  .contact-section { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 600px) {
  :root { --page: calc(100% - 28px); }
  .preloader h1 { font-size: 34px; }
  .preloader-inner { width: calc(100vw - 44px); }
  .site-nav { grid-template-columns: repeat(3, 1fr); }
  .hero { padding: 62px 20px 64px; gap: 50px; }
  .hero h1 { font-size: 64px; }
  .hero-role { font-size: 22px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .hero-portrait { width: calc(100vw - 86px); }
  .hero-portrait figcaption { grid-template-columns: 1fr; }
  .hero-portrait figcaption small { padding-left: 0; border-left: 0; }
  .scroll-cue { display: none; }
  .stats-wrap { grid-template-columns: 1fr 1fr; }
  .stat { min-height: 126px; padding: 26px 20px; }
  .stat strong { font-size: 31px; }
  .identity-card { min-height: 340px; padding: 36px 28px; }
  .identity-card a { left: 28px; }
  .paper-section, .projects-section, .works-section, .method-section { padding-inline: 14px; }
  .timeline-body h3 { font-size: 24px; }
  .education-strip article { padding: 32px 28px; }
  .paper-item { grid-template-columns: 34px 1fr; gap: 12px; padding-inline: 5px; }
  .paper-item h3 { font-size: 21px; }
  .project-feature-copy { padding: 38px 26px; }
  .project-feature-copy h3 { font-size: 29px; }
  .gradient-carousel { min-height: 500px; }
  .gradient-card { top: 44%; width: 72%; height: 64%; transform-origin: center; }
  .gradient-ui { left: 14px; right: 14px; bottom: 16px; grid-template-columns: auto 1fr; }
  .gradient-status { justify-self: end; text-align: right; }
  .gradient-hint { display: none; }
  .gradient-controls button { width: 38px; height: 38px; }
  .project-measures { gap: 7px; }
  .project-measures b { font-size: 25px; }
  .project-books { height: 250px; padding: 18px; }
  .project-grid { gap: 14px; margin-top: 14px; }
  .project-card { min-height: auto; }
  .work-tabs button { padding: 20px 12px; font-size: 16px; }
  .work-tabs button span { margin-right: 8px; }
  .news-feature { grid-template-columns: 1fr; }
  .news-feature > button { height: 230px; }
  .news-row { grid-template-columns: 32px 1fr 26px; gap: 10px; }
  .news-row b { display: none; }
  .news-row h3 { font-size: 16px; }
  .essay-intro { align-items: stretch; flex-direction: column; }
  .essay-search input { width: 100%; }
  .essay-grid { grid-template-columns: 1fr; }
  .publication-head, .publication-list > a, .publication-only { grid-template-columns: 116px 1fr; gap: 12px; }
  .publication-head b, .publication-list i { display: none; }
  .newspaper-gallery { grid-template-columns: repeat(2, 1fr); }
  .editing-grid article { display: block; }
  .editing-art { width: 100%; height: 260px; margin-bottom: 28px; }
  .certificate-wall { height: 650px; padding-inline: 14px; }
  .certificate-head small { max-width: 150px; text-align: right; }
  .certificate-scroll .vortex-certificate { width: min(44%, 170px); }
  .method-flow { grid-template-columns: 1fr; }
  .contact-section { padding: 85px 24px; }
  .contact-copy h2 { font-size: 42px; }
  .site-footer { padding: 24px; gap: 16px; flex-wrap: wrap; }
}

/* The archive is treated as one moving editorial board, not a stack of heavy cards. */
.landing-intro { min-height: 4.1em; }
.landing-caret { display: inline-block; width: 1px; height: 1.05em; margin-left: 5px; vertical-align: -.18em; background: #9f2430; animation: landingCaret 900ms steps(1) infinite; }
@keyframes landingCaret { 50% { opacity: 0; } }
.landing-doodle-rail span { animation: doodleFloat 4.8s ease-in-out infinite; }
.landing-doodle-rail span:nth-child(2) { animation-delay: -.8s; }
.landing-doodle-rail span:nth-child(3) { animation-delay: -1.6s; }
.landing-doodle-rail span:nth-child(4) { animation-delay: -2.4s; }
.landing-doodle-rail span:nth-child(6) { animation-delay: -3.2s; }
.landing-doodle-rail span:nth-child(7) { animation-delay: -4s; }
.landing-doodle-rail span:nth-child(8) { animation-delay: -2s; }
.landing-doodle-rail span:nth-child(9) { animation-delay: -1.2s; }
.landing-doodle-rail b { animation: doodleLabel 5s ease-in-out infinite; }
@keyframes doodleFloat { 0%,100% { transform: translateY(0) rotate(-3deg); opacity: .52; } 50% { transform: translateY(-7px) rotate(3deg); opacity: .96; } }
@keyframes doodleLabel { 0%,100% { letter-spacing: .04em; opacity: .54; } 50% { letter-spacing: .17em; opacity: 1; } }
.landing-scroll { animation: scrollHint 1.8s ease-in-out infinite; }
@keyframes scrollHint { 0%,100% { transform: translateY(0); opacity: .65; } 50% { transform: translateY(5px); opacity: 1; } }
.desk-grid { max-width: 1120px; min-height: 640px; grid-template-columns: minmax(240px, 1fr) minmax(360px, 1.45fr) minmax(170px, .72fr); gap: 18px; padding: 92px 54px 54px; background: #191919; box-shadow: 0 18px 40px rgba(25,25,25,.18); }
.desk-grid::before { content: "MY WORKS / ARCHIVE"; position: absolute; top: 31px; left: 54px; color: rgba(255,255,255,.76); font: 700 11px/1 Inter, Arial, sans-serif; letter-spacing: .25em; }
.desk-grid::after { content: "赵莹 · SELECTED MATERIALS"; position: absolute; top: 31px; right: 54px; color: rgba(255,255,255,.36); font: 10px/1 Inter, Arial, sans-serif; letter-spacing: .13em; }
.desk-object { border: 1px solid rgba(34,34,34,.2); border-radius: 2px; box-shadow: 0 10px 25px rgba(33,33,33,.08); transform: rotate(0deg); animation: archiveFloat 8s ease-in-out infinite; }
.desk-object:nth-child(2) { animation-delay: -1.4s; }
.desk-object:nth-child(3) { animation-delay: -2.8s; }
.desk-object:nth-child(4) { animation-delay: -4.2s; }
.desk-object:nth-child(5) { animation-delay: -5.6s; }
.desk-object:nth-child(6) { animation-delay: -7s; }
.desk-object:nth-child(7) { animation-delay: -3.5s; }
.desk-object:nth-child(8) { animation-delay: -6.5s; }
.desk-object:hover, .desk-object:focus-visible { transform: translateY(-10px) rotate(0deg) scale(1.012) !important; box-shadow: 0 22px 38px rgba(33,33,33,.16); }
@keyframes archiveFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.desk-profile { background: rgba(255,255,255,.92); box-shadow: 0 10px 25px rgba(33,33,33,.08); }
.desk-profile::before { color: rgba(35,35,35,.38); }
.desk-profile h1 { color: #262626; }
.desk-newspaper { color: #272727; background: rgba(255,255,255,.96); border-left: 5px solid #9f2430; box-shadow: 0 10px 25px rgba(33,33,33,.08); }
.desk-news-head { color: #777; border-color: rgba(35,35,35,.16); }
.desk-news-head b { color: #9f2430; }
.desk-news-lead > span, .desk-news-footer { color: #9f2430; }
.desk-news-lead h2 { color: #262626; }
.desk-news-lead p, .desk-news-list { color: #6f6f6f; }
.desk-news-list, .desk-news-footer { border-color: rgba(35,35,35,.16); }
.desk-news-thumb { border: 1px solid rgba(35,35,35,.14); }
.desk-tag { border-radius: 999px; box-shadow: 0 8px 20px rgba(33,33,33,.1); }
.desk-tag-black { color: #fff; background: #252525; }
.desk-tag-yellow { color: #252525; background: #f0d476; }
.desk-book { background: #9f2430; box-shadow: 0 10px 25px rgba(33,33,33,.1); }
.desk-id-card { background: #edf0ed; box-shadow: 0 10px 25px rgba(33,33,33,.1); }
.desk-envelope { background: #fff; box-shadow: 0 10px 25px rgba(33,33,33,.1); }
.desk-paper-note { background: #f0d476; box-shadow: 0 10px 25px rgba(33,33,33,.1); }
.desk-topline { max-width: 1120px; margin: 72px auto 18px; padding-top: 14px; border-top: 1px solid rgba(35,35,35,.16); }
.desk-bottomline { max-width: 1120px; margin: 20px auto 0; padding-bottom: 18px; border-bottom: 1px solid rgba(35,35,35,.16); }
.desk-bottomline button { color: #9f2430; }

@media (prefers-reduced-motion: reduce) {
  .landing-doodle-rail span, .landing-doodle-rail b, .landing-scroll, .landing-caret, .desk-object { animation: none !important; }
}

/* Reference-inspired landing: a lighter personal homepage before the archive desk. */
.site-header { position: absolute; left: 0; right: 0; background: transparent; border-bottom-color: transparent; pointer-events: none; }
.site-header .brand { display: none; }
.site-header .site-nav { margin-inline: auto; pointer-events: auto; }
.site-header .site-nav a[data-desk-home], .site-header .site-nav a[data-desk-open="research"], .site-header .site-nav a[data-desk-open="experience"] { display: none; }
.site-header .menu-toggle { pointer-events: auto; }
.site-header .site-nav a { align-self: center; height: 36px; padding: 10px 16px; border: 1px solid transparent; border-radius: 999px; color: #343434; font-size: 13px; letter-spacing: .04em; }
.site-header .site-nav a::after { display: none; }
.site-header .site-nav a:hover, .site-header .site-nav a.active { border-color: rgba(35,35,35,.3); background: rgba(255,255,255,.74); color: #9f2430; }
.landing-nav { display: none; }
.desk-home {
  min-height: auto;
  padding: 0 max(18px, 4vw) 38px;
  overflow: visible;
  color: #252525;
  background: #f5f5f3;
  background-image: none;
}
.desk-home::before, .desk-home::after { display: none; }
.landing-home {
  position: relative;
  min-height: calc(100vh - 82px);
  margin-inline: calc(max(18px, 4vw) * -1);
  padding: 104px max(82px, 9vw) 44px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #f7f7f6;
  background-image: radial-gradient(circle at 50% 48%, rgba(255,255,255,.9), transparent 46%), repeating-linear-gradient(0deg, rgba(28,28,28,.018) 0 1px, transparent 1px 5px);
}
.landing-home::before, .landing-home::after { content: ""; position: absolute; pointer-events: none; }
.landing-home::before { inset: 17px 26px; border: 1px solid rgba(35,35,35,.12); }
.landing-home::after { width: 180px; height: 180px; right: 10%; bottom: -76px; border: 1px solid rgba(170,38,51,.18); border-radius: 50%; box-shadow: 0 0 0 24px rgba(170,38,51,.035), 0 0 0 48px rgba(170,38,51,.025); }
.landing-orb { position: fixed; z-index: 72; top: 18px; right: 42px; width: 52px; height: 52px; display: grid; place-items: center; color: #9f2430; border: 2px solid #9f2430; border-radius: 50%; background: rgba(247,247,246,.84); box-shadow: inset 0 0 0 5px rgba(159,36,48,.08), 0 4px 16px rgba(40,40,40,.1); font: 22px/1 Inter, Arial, sans-serif; cursor: pointer; animation: orbSpin 10s linear infinite; }
.landing-orb::before { content: ""; position: absolute; inset: -5px; border: 1px dashed rgba(159,36,48,.5); border-radius: 50%; }
.landing-orb span { transition: transform .25s ease; }
.landing-orb:hover, .landing-orb:focus-visible { background: #9f2430; color: #fff; outline: none; animation-play-state: paused; }
.landing-orb:hover span, .landing-orb:focus-visible span { transform: rotate(45deg); }
@keyframes orbSpin { to { transform: rotate(360deg); } }
.landing-nav { position: relative; z-index: 2; display: flex; justify-content: center; gap: 42px; }
.landing-nav button { min-height: 38px; padding: 7px 15px; color: #252525; border: 1px solid transparent; border-radius: 999px; background: transparent; font: 600 14px/1 Inter, Arial, sans-serif; letter-spacing: .04em; cursor: pointer; transition: .25s ease; }
.landing-nav button:first-child, .landing-nav button:hover, .landing-nav button:focus-visible { border-color: rgba(38,38,38,.38); background: rgba(255,255,255,.6); outline: none; }
.landing-main { position: relative; z-index: 1; width: min(1050px, 100%); margin: auto; display: grid; grid-template-columns: 330px minmax(0, 1fr); gap: clamp(52px, 8vw, 116px); align-items: center; }
.landing-portrait-wrap { position: relative; justify-self: center; width: 300px; }
.landing-portrait-wrap::before { content: ""; position: absolute; inset: 38px -12px -20px 20px; border: 3px solid #d88ca2; border-radius: 46% 54% 48% 52% / 52% 44% 56% 48%; transform: rotate(-6deg); }
.landing-portrait-frame { position: relative; z-index: 1; width: 290px; height: 340px; overflow: hidden; background: #ecebe8; border: 1px solid rgba(40,40,40,.25); border-radius: 48% 52% 44% 56% / 46% 44% 56% 54%; box-shadow: 12px 16px 0 rgba(28,28,28,.06); }
.landing-portrait-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: saturate(.9) contrast(1.03); }
.landing-paper-label { position: absolute; z-index: 3; top: 6px; left: 10px; padding: 7px 13px; color: #fff; background: #9f2430; font: 700 11px/1 Inter, Arial, sans-serif; letter-spacing: .12em; transform: rotate(-4deg); box-shadow: 3px 4px 0 rgba(0,0,0,.12); }
.landing-sticker { position: absolute; z-index: 3; right: -22px; bottom: 57px; width: 72px; height: 72px; display: grid; place-items: center; color: #252525; background: #f0d476; border: 1px solid rgba(40,40,40,.22); border-radius: 50%; text-align: center; font: 600 12px/1.35 var(--serif); transform: rotate(10deg); box-shadow: 4px 6px 0 rgba(0,0,0,.08); }
.landing-portrait-caption { position: relative; z-index: 2; margin: 15px 0 0 22px; color: #707070; font: 10px/1 Inter, Arial, sans-serif; letter-spacing: .12em; text-transform: uppercase; }
.landing-copy { max-width: 650px; }
.landing-kicker { margin: 0 0 20px; color: #9f2430; font: 700 11px/1 Inter, Arial, sans-serif; letter-spacing: .2em; }
.landing-copy h1 { margin: 0; color: #212121; font: 600 clamp(48px, 6.5vw, 92px)/1.05 Inter, Arial, sans-serif; letter-spacing: -.055em; }
.landing-copy h1 em { color: #9f2430; font-style: normal; }
.landing-meta { margin: 21px 0 0; color: #444; font: 500 15px/1.7 Inter, 'Noto Sans SC', sans-serif; letter-spacing: .04em; }
.landing-intro { max-width: 560px; margin: 22px 0 0; color: #777; font: 16px/2 var(--sans); }
.landing-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.landing-actions button { min-height: 42px; padding: 10px 17px; color: #252525; border: 1px solid rgba(35,35,35,.42); border-radius: 999px; background: rgba(255,255,255,.55); font: 500 12px/1 Inter, Arial, sans-serif; cursor: pointer; transition: .25s ease; }
.landing-actions button:first-child, .landing-actions button:hover, .landing-actions button:focus-visible { color: #fff; border-color: #9f2430; background: #9f2430; outline: none; }
.landing-actions span, .landing-bottom span { margin-left: 8px; font-size: 14px; }
.landing-bottom { position: relative; z-index: 2; width: min(1050px, 100%); margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 20px; }
.landing-bottom a { color: #232323; text-decoration: none; }
.landing-bottom > a:first-child { font: 700 22px/1 Inter, Arial, sans-serif; letter-spacing: -.03em; }
.landing-bottom > a:first-child span { color: #9f2430; }
.landing-scroll { justify-self: center; color: #777 !important; font: 10px/1 Inter, Arial, sans-serif; letter-spacing: .16em; text-transform: uppercase; }
.landing-note { justify-self: end; color: #999; font: 10px/1.6 var(--sans); text-align: right; }
.landing-doodle-rail { position: fixed; z-index: 71; top: 84px; bottom: 18px; width: 38px; display: grid; grid-template-rows: repeat(9, 1fr); place-items: center; color: rgba(30,30,30,.72); font: 27px/1 Georgia, serif; pointer-events: none; }
.landing-doodle-rail b { font: 13px/1 var(--sans); transform: rotate(-90deg); letter-spacing: .05em; }
.landing-doodle-left { left: 6px; }
.landing-doodle-right { right: 6px; }
.landing-doodle-right span:nth-child(2n), .landing-doodle-right b { transform: scaleX(-1); }
.desk-topline { margin-top: 44px; }

@media (max-width: 900px) {
  .landing-home { min-height: calc(100vh - 68px); margin-inline: -18px; padding: 92px 56px 34px; }
  .landing-main { grid-template-columns: 240px minmax(0, 1fr); gap: 46px; }
  .landing-portrait-wrap { width: 220px; }
  .landing-portrait-frame { width: 215px; height: 268px; }
  .landing-copy h1 { font-size: clamp(44px, 7vw, 72px); }
  .landing-intro { font-size: 14px; }
  .landing-note { display: none; }
  .landing-bottom { grid-template-columns: 1fr auto; }
}
@media (max-width: 600px) {
  .site-header { position: sticky; background: rgba(247,247,246,.92); }
  .brand { display: inline-flex; }
  .landing-orb { top: 9px; right: 66px; width: 42px; height: 42px; font-size: 18px; }
  .landing-home { min-height: calc(100vh - 68px); margin-inline: -14px; padding: 88px 26px 28px; }
  .landing-home::before { inset: 10px 12px; }
  .landing-doodle-rail { top: 72px; width: 19px; font-size: 17px; }
  .landing-doodle-rail b { font-size: 8px; }
  .landing-main { display: flex; flex-direction: column; gap: 30px; align-items: center; text-align: center; }
  .landing-portrait-wrap { width: 190px; }
  .landing-portrait-frame { width: 185px; height: 205px; }
  .landing-portrait-wrap::before { inset: 25px -8px -14px 14px; }
  .landing-sticker { right: -25px; bottom: 30px; width: 57px; height: 57px; font-size: 10px; }
  .landing-paper-label { top: -3px; left: 0; font-size: 9px; }
  .landing-portrait-caption { margin: 10px 0 0; font-size: 8px; }
  .landing-kicker { margin-bottom: 13px; font-size: 8px; letter-spacing: .13em; }
  .landing-copy h1 { font-size: clamp(39px, 12vw, 58px); letter-spacing: -.07em; }
  .landing-meta { margin-top: 14px; font-size: 12px; }
  .landing-intro { margin-top: 13px; font-size: 13px; line-height: 1.8; }
  .landing-actions { justify-content: center; margin-top: 20px; }
  .landing-bottom { width: 100%; grid-template-columns: 1fr; justify-items: center; gap: 20px; }
  .landing-bottom > a:first-child { font-size: 18px; }
  .landing-scroll { order: 3; }
  .desk-topline { margin-top: 28px; }
  .desk-grid { padding: 70px 14px 28px; }
  .desk-grid::before { top: 25px; left: 14px; font-size: 9px; }
  .desk-grid::after { top: 25px; right: 14px; font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .preloader { display: none; }
  body.is-loading { overflow: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* Video-style click portfolio: stamps, sections and expandable files replace the desk. */
.desk-topline, .desk-grid, .desk-bottomline { display: none !important; }
.video-sections { width: min(1120px, 100%); margin: 64px auto 82px; }
.video-section { position: relative; margin: 0 0 28px; padding: clamp(40px, 6vw, 82px) clamp(20px, 5vw, 68px); overflow: hidden; animation: sectionRise .8s both; }
.video-section:nth-child(2) { animation-delay: .12s; }
.video-section:nth-child(3) { animation-delay: .24s; }
@keyframes sectionRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.video-works { color: #f7f5ef; background: #181818; }
.video-experience { color: #222; background: #fff; border: 1px solid rgba(30,30,30,.12); }
.video-projects { color: #262323; background: #f0e0d4; }
.video-section-head { position: relative; z-index: 1; display: grid; grid-template-columns: 42px 1fr auto; align-items: end; gap: 16px; margin-bottom: 48px; }
.video-section-head > span { color: #ca5360; font: 700 12px/1 Inter, Arial, sans-serif; letter-spacing: .18em; }
.video-section-head p { margin: 0 0 9px; color: currentColor; opacity: .56; font: 10px/1 Inter, Arial, sans-serif; letter-spacing: .2em; }
.video-section-head h2 { margin: 0; font: 400 clamp(40px, 6vw, 78px)/.9 Georgia, 'Noto Serif SC', serif; letter-spacing: -.04em; }
.video-section-head small { color: currentColor; opacity: .55; font: 10px/1.5 var(--sans); text-align: right; }
.stamp-grid { display: grid; grid-template-columns: repeat(5, minmax(120px, 1fr)); gap: 18px; align-items: end; }
.stamp-card { position: relative; min-height: 216px; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; padding: 22px 18px 19px; color: #252525; border: 1px dashed rgba(30,30,30,.35); border-radius: 3px; text-align: left; box-shadow: 0 16px 22px rgba(0,0,0,.18); cursor: pointer; transition: transform .38s cubic-bezier(.2,.8,.2,1), box-shadow .38s ease; }
.stamp-card::before, .stamp-card::after { content: ""; position: absolute; left: 0; right: 0; height: 8px; background: radial-gradient(circle, #181818 0 3px, transparent 3.5px) 0 0 / 12px 8px repeat-x; }
.stamp-card::before { top: -4px; }.stamp-card::after { bottom: -4px; }
.stamp-card:nth-child(2), .stamp-card:nth-child(4) { transform: translateY(15px) rotate(1.5deg); }
.stamp-card:nth-child(3) { transform: translateY(-5px) rotate(-1.2deg); }
.stamp-card:nth-child(5) { transform: translateY(9px) rotate(2.2deg); }
.stamp-card:hover, .stamp-card:focus-visible { z-index: 2; transform: translateY(-12px) rotate(0deg) scale(1.035); box-shadow: 0 24px 34px rgba(0,0,0,.28); outline: none; }
.stamp-rose { background: #edbcc1; }.stamp-yellow { background: #f1d47b; }.stamp-blue { background: #b8d5df; }.stamp-pink { background: #e8b5c8; }.stamp-lilac { background: #d5c7e7; }
.stamp-no { color: rgba(35,35,35,.55); font: 700 10px/1 Inter, Arial, sans-serif; letter-spacing: .13em; }
.stamp-card strong { font: 400 24px/1.15 Georgia, 'Noto Serif SC', serif; }
.stamp-card small { color: rgba(35,35,35,.7); font: 10px/1.7 var(--sans); }
.stamp-card i { align-self: flex-end; color: #9f2430; font: 17px/1 Inter, Arial, sans-serif; font-style: normal; }
.video-section-link { display: block; margin: 42px 0 0 auto; padding: 0 0 6px; color: #f1d47b; border: 0; border-bottom: 1px solid rgba(241,212,123,.55); background: transparent; font: 11px/1 Inter, Arial, sans-serif; letter-spacing: .17em; cursor: pointer; }
.video-section-link span { margin-left: 9px; font-size: 16px; }
.experience-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 0 auto 52px; }
.experience-chips button { min-width: 180px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; padding: 15px 16px; color: #242424; border: 1px solid rgba(35,35,35,.23); border-radius: 999px; background: #fafafa; text-align: left; cursor: pointer; transition: .3s ease; }
.experience-chips button:hover, .experience-chips button:focus-visible { color: #fff; border-color: #9f2430; background: #9f2430; outline: none; transform: translateY(-4px); }
.experience-chips b { color: #9f2430; font: 700 9px/1 Inter, Arial, sans-serif; letter-spacing: .11em; }.experience-chips button:hover b { color: #fff; }
.experience-chips span { font: 12px/1.3 var(--sans); }.experience-chips i { font-style: normal; }
.experience-images { display: grid; grid-template-columns: 1.25fr 1fr 1fr; gap: 14px; }
.experience-images button { position: relative; min-height: 180px; padding: 0; overflow: hidden; border: 0; background: #eee; cursor: pointer; }
.experience-images img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.72); transition: transform .5s ease, filter .5s ease; }
.experience-images button:hover img, .experience-images button:focus-visible img { transform: scale(1.06); filter: saturate(1); }
.experience-images span { position: absolute; left: 14px; bottom: 12px; color: #fff; font: 10px/1 Inter, Arial, sans-serif; letter-spacing: .12em; text-shadow: 0 1px 5px rgba(0,0,0,.65); }
.project-papers { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; align-items: stretch; }
.project-papers > button { position: relative; min-height: 270px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 20px; overflow: hidden; color: #262323; border: 1px solid rgba(35,35,35,.18); background: rgba(255,255,255,.72); text-align: left; cursor: pointer; transition: transform .35s ease, box-shadow .35s ease; }
.project-papers > button:hover, .project-papers > button:focus-visible { transform: translateY(-8px) rotate(-1deg); box-shadow: 0 16px 25px rgba(59,42,34,.16); outline: none; }
.project-papers > button:first-child { padding: 0; background: #f8f5ed; }.project-papers > button:first-child img { width: 100%; height: 100%; object-fit: cover; }.project-papers > button:first-child span { position: absolute; left: 15px; bottom: 13px; color: #fff; font: 10px/1.6 Inter, Arial, sans-serif; text-shadow: 0 1px 5px rgba(0,0,0,.6); }
.project-papers strong { margin-top: auto; font: 27px/1.15 Georgia, 'Noto Serif SC', serif; }.project-papers small { margin-top: 10px; color: #706b65; font: 11px/1.6 var(--sans); }.project-papers i { margin-top: 17px; color: #9f2430; font: 10px/1 Inter, Arial, sans-serif; font-style: normal; letter-spacing: .12em; }.paper-icon { margin-bottom: auto; color: #9f2430; font: 34px/1 Georgia, serif; }
@media (max-width: 760px) {
  .video-sections { margin-top: 44px; }
  .video-section { padding: 36px 18px 44px; }
  .video-section-head { grid-template-columns: 28px 1fr; margin-bottom: 30px; }.video-section-head small { grid-column: 2; text-align: left; }.video-section-head h2 { font-size: 47px; }
  .stamp-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }.stamp-card { min-height: 180px; padding: 17px 14px; }.stamp-card:last-child { grid-column: 1 / -1; min-height: 150px; }.stamp-card strong { font-size: 21px; }
  .experience-chips { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 32px; }.experience-chips button { min-width: 0; padding: 13px 11px; grid-template-columns: 1fr auto; }.experience-chips b { grid-column: 1 / -1; }.experience-chips span { font-size: 11px; }.experience-images { grid-template-columns: 1fr 1fr; }.experience-images button:first-child { grid-column: 1 / -1; min-height: 190px; }
  .project-papers { grid-template-columns: 1fr; }.project-papers > button { min-height: 210px; }.project-papers > button:first-child { min-height: 300px; }
}

/* Literary archive desk */
.legacy-archive[hidden] { display: none; }
.desk-home { position: relative; min-height: calc(100vh - 82px); padding: 92px clamp(24px, 5vw, 84px) 26px; overflow: hidden; color: #282721; background: #ded7cb; background-image: radial-gradient(circle at 15% 18%, rgba(255,255,255,.7), transparent 28%), radial-gradient(circle at 86% 70%, rgba(119,95,67,.12), transparent 34%), repeating-linear-gradient(0deg, rgba(53,43,29,.04) 0 1px, transparent 1px 5px); }
.desk-home::before { content: ""; position: absolute; inset: 0; opacity: .42; pointer-events: none; background-image: radial-gradient(circle, rgba(59,49,36,.16) 0 1.4px, transparent 1.8px); background-size: 24px 24px; mask-image: linear-gradient(90deg, #000, transparent 13% 86%, #000); }
.desk-home::after { content: "EDITORIAL DESK / ZHAO YING"; position: absolute; right: -38px; bottom: 52px; color: rgba(35,32,26,.12); font: 72px/1 Georgia, serif; letter-spacing: .12em; transform: rotate(-90deg); pointer-events: none; }
.desk-topline, .desk-bottomline { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; color: rgba(43,39,31,.62); font: 10px/1.3 Inter, Arial, sans-serif; letter-spacing: .13em; text-transform: uppercase; }
.desk-topline { margin-bottom: 18px; }
.desk-bottomline { margin-top: 18px; }
.desk-bottomline button { border: 0; padding: 0; color: #a44531; background: transparent; font: inherit; letter-spacing: .13em; cursor: pointer; }
.desk-bottomline button b { margin-left: 8px; font-size: 15px; font-weight: 400; }
.desk-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(260px, 1.08fr) minmax(390px, 1.52fr) minmax(150px, .66fr); grid-template-rows: minmax(210px, 1fr) minmax(155px, .72fr) minmax(160px, .78fr); gap: 16px; min-height: min(720px, calc(100vh - 174px)); max-width: 1500px; margin: 0 auto; }
.desk-object { position: relative; border: 0; padding: 0; color: inherit; text-align: left; cursor: pointer; transform: rotate(var(--desk-rotate, 0deg)); transform-origin: 50% 16%; transition: transform .38s cubic-bezier(.2,.8,.2,1), box-shadow .38s ease, filter .38s ease; }
.desk-object:hover, .desk-object:focus-visible { z-index: 4; outline: none; transform: translateY(-8px) rotate(0deg) !important; filter: saturate(1.05); box-shadow: 0 24px 36px rgba(63,46,27,.2); }
.desk-object:focus-visible { outline: 2px solid #a44531; outline-offset: 5px; }
.desk-profile { grid-column: 1; grid-row: 1 / span 2; padding: 22px 23px 18px; background: #f7f2e8; box-shadow: 10px 14px 0 rgba(52,42,28,.08), 0 18px 30px rgba(70,50,26,.16); --desk-rotate: -1.2deg; }
.desk-profile::before { content: "ARCHIVE / 001"; position: absolute; right: 18px; top: 16px; color: rgba(52,49,40,.38); font-size: 8px; letter-spacing: .16em; }
.paperclip { position: absolute; left: 26px; top: -19px; width: 17px; height: 52px; border: 3px solid #77716a; border-bottom: 0; border-radius: 14px 14px 0 0; transform: rotate(-7deg); opacity: .8; }
.desk-profile-head, .desk-news-head { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(40,36,28,.24); color: rgba(46,42,34,.6); font: 9px Inter, Arial, sans-serif; letter-spacing: .13em; }
.desk-profile-head { padding-bottom: 12px; }
.desk-stamp { display: inline-grid; place-items: center; width: 38px; height: 38px; color: #f7f2e8; border-radius: 50%; background: #a44531; font: 12px Georgia, serif; letter-spacing: .04em; }
.desk-profile-body { display: grid; grid-template-columns: 1fr 116px; gap: 15px; align-items: end; padding: 24px 0 19px; }
.desk-kicker { margin: 0 0 5px; color: #a44531; font: 17px Georgia, serif; }
.desk-profile h1 { margin: 0; font: 36px/1.2 Georgia, 'Noto Serif SC', serif; letter-spacing: .02em; }
.desk-profile-body p:last-child { margin: 15px 0 0; color: #70675c; font-size: 11px; line-height: 1.8; }
.desk-profile-body img { width: 116px; height: 145px; object-fit: cover; object-position: center top; filter: grayscale(.14) contrast(.98); }
.desk-profile-footer { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 12px; padding: 13px 0 13px; border-top: 1px solid rgba(40,36,28,.16); border-bottom: 1px solid rgba(40,36,28,.16); color: #777064; font: 9px Inter, Arial, sans-serif; }
.desk-profile-footer span::before { content: "·"; margin-right: 6px; color: #a44531; }
.desk-open-note { margin-top: 15px; border: 0; padding: 0; color: #a44531; background: transparent; font: 10px Inter, Arial, sans-serif; letter-spacing: .12em; cursor: pointer; }
.desk-newspaper { grid-column: 2; grid-row: 1 / span 2; padding: 20px 24px 19px; color: #f3eee3; background: #2c2b27; box-shadow: -10px 15px 0 rgba(52,42,28,.1), 0 18px 30px rgba(70,50,26,.22); --desk-rotate: .65deg; }
.desk-news-head { color: rgba(249,242,227,.66); border-color: rgba(255,255,255,.24); }
.desk-news-head b { color: #e5be57; font: 12px Georgia, serif; letter-spacing: .09em; }
.desk-news-grid { display: grid; grid-template-columns: .92fr 1.08fr; grid-template-rows: 1fr auto; gap: 15px; min-height: 390px; padding: 20px 0 16px; }
.desk-news-lead { display: flex; flex-direction: column; justify-content: center; }
.desk-news-lead > span { color: #e5be57; font: 9px Inter, Arial, sans-serif; letter-spacing: .18em; }
.desk-news-lead h2 { margin: 13px 0 15px; font: 34px/1.25 Georgia, 'Noto Serif SC', serif; font-weight: 400; }
.desk-news-lead p { max-width: 200px; margin: 0; color: rgba(249,242,227,.62); font-size: 11px; line-height: 1.7; }
.desk-news-thumb { overflow: hidden; background: #eee7d9; }
.desk-news-thumb img { display: block; width: 100%; height: 100%; min-height: 245px; object-fit: cover; object-position: center; filter: saturate(.78) contrast(1.04); }
.desk-news-list { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 18px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(249,242,227,.78); font: 11px/1.35 Georgia, 'Noto Serif SC', serif; }
.desk-news-footer { display: flex; justify-content: space-between; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.2); color: #e5be57; font: 10px Inter, Arial, sans-serif; letter-spacing: .1em; }
.desk-tag { display: flex; flex-direction: column; justify-content: space-between; padding: 17px 18px; box-shadow: 8px 9px 0 rgba(59,46,28,.13), 0 10px 17px rgba(70,50,26,.14); }
.desk-tag span { font: 28px/1.05 Georgia, serif; letter-spacing: .04em; }
.desk-tag small { font: 9px Inter, Arial, sans-serif; letter-spacing: .12em; }
.desk-tag-black { grid-column: 3; grid-row: 1; color: #f6f1e7; background: #292825; --desk-rotate: 2deg; }
.desk-tag-black small { color: rgba(246,241,231,.6); }
.desk-tag-yellow { grid-column: 3; grid-row: 2; color: #2c2a24; background: #e5be57; --desk-rotate: -2.4deg; }
.desk-book { grid-column: 1; grid-row: 3; display: grid; place-items: center; overflow: hidden; background: #b14a39; box-shadow: 8px 10px 0 rgba(59,46,28,.1), 0 14px 25px rgba(70,50,26,.2); --desk-rotate: .7deg; }
.desk-book img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.9) contrast(1.02); }
.desk-book::after { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,42,48,.06), rgba(255,221,151,.18)); pointer-events: none; }
.book-label { position: absolute; left: 12px; bottom: 10px; z-index: 1; color: #fff; font: 9px/1.6 Inter, Arial, sans-serif; letter-spacing: .12em; text-shadow: 0 1px 4px rgba(0,0,0,.4); }
.desk-id-card { grid-column: 2; grid-row: 3; display: flex; flex-direction: column; justify-content: center; padding: 18px 22px 15px 58px; color: #1e2830; background: #dfe5e0; box-shadow: 8px 10px 0 rgba(59,46,28,.1), 0 14px 25px rgba(70,50,26,.16); --desk-rotate: -1.4deg; }
.desk-id-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 42px; background: #1b5364; }
.id-hole { position: absolute; top: 10px; left: 17px; z-index: 1; width: 9px; height: 9px; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; }
.id-red { color: #a44531; font: 9px Inter, Arial, sans-serif; letter-spacing: .2em; }
.desk-id-card strong { margin: 7px 0; font: 23px/1.1 Georgia, serif; font-weight: 400; }
.desk-id-card small { color: #6d787b; font: 8px/1.4 Inter, Arial, sans-serif; }
.desk-id-card i { margin-top: 10px; color: #1b5364; font: 9px Inter, Arial, sans-serif; font-style: normal; }
.desk-envelope { grid-column: 3; grid-row: 3; display: flex; flex-direction: column; justify-content: center; padding: 18px 17px; overflow: hidden; color: #203346; background: #eef0ea; box-shadow: 8px 10px 0 rgba(59,46,28,.11), 0 14px 25px rgba(70,50,26,.16); --desk-rotate: 1.8deg; }
.desk-envelope::before, .desk-envelope::after { content: ""; position: absolute; width: 120%; height: 1px; background: rgba(27,83,100,.34); transform-origin: center; }
.desk-envelope::before { transform: rotate(28deg); }
.desk-envelope::after { transform: rotate(-28deg); }
.envelope-mark { color: #1b5364; font: 9px Inter, Arial, sans-serif; letter-spacing: .18em; }
.desk-envelope strong { margin: 20px 0 5px; font: 22px Georgia, serif; font-weight: 400; }
.desk-envelope small { color: #637079; font: 9px/1.5 Inter, Arial, sans-serif; }
.desk-paper-note { position: absolute; right: 14%; bottom: -39px; z-index: 3; width: 210px; min-height: 117px; padding: 16px 17px; color: #3e392f; background: #e9d88b; box-shadow: 7px 9px 0 rgba(59,46,28,.12), 0 14px 20px rgba(70,50,26,.13); --desk-rotate: 3.4deg; }
.desk-paper-note::before { content: ""; position: absolute; top: -8px; left: 50%; width: 50px; height: 15px; background: rgba(153,119,66,.27); transform: translateX(-50%) rotate(-3deg); }
.desk-paper-note span { color: #9d452e; font: 8px Inter, Arial, sans-serif; letter-spacing: .14em; }
.desk-paper-note strong { display: block; margin: 11px 0 6px; font: 20px/1.15 Georgia, serif; font-weight: 400; }
.desk-paper-note small { color: #71664d; font: 9px/1.5 Inter, Arial, sans-serif; }
.desk-modal { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center; padding: 28px; }
.desk-modal[hidden] { display: none; }
.desk-modal-backdrop { position: absolute; inset: 0; background: rgba(27,24,19,.5); backdrop-filter: blur(8px); }
.desk-modal-panel { position: relative; z-index: 1; width: min(1060px, 100%); max-height: min(820px, 90vh); overflow: auto; padding: 42px clamp(24px, 5vw, 70px) 52px; color: #2b2a25; background: #f5f0e7; box-shadow: 0 34px 90px rgba(0,0,0,.35); }
.desk-modal-close { position: absolute; z-index: 2; top: 15px; right: 18px; width: 38px; height: 38px; border: 1px solid rgba(42,39,32,.28); border-radius: 50%; color: #2b2a25; background: transparent; font-size: 25px; font-weight: 300; cursor: pointer; }
.desk-modal-eyebrow { margin-bottom: 10px; color: #a44531; font: 10px Inter, Arial, sans-serif; letter-spacing: .16em; }
.desk-modal-panel h2 { margin: 0 0 26px; font: 46px/1.16 Georgia, 'Noto Serif SC', serif; font-weight: 400; }
.desk-about-grid, .desk-book-detail, .desk-detail-grid { display: grid; grid-template-columns: minmax(220px, .65fr) 1.35fr; gap: 38px; align-items: start; }
.desk-about-grid > img, .desk-book-detail > img { width: 100%; max-height: 420px; object-fit: cover; object-position: center top; }
.desk-modal p { color: #696156; font: 14px/2 Georgia, 'Noto Serif SC', serif; }
.desk-lead { margin-top: 0; color: #2b2a25 !important; font-size: 19px !important; line-height: 1.7 !important; }
.desk-stat-line { display: flex; align-items: baseline; gap: 9px; margin-top: 30px; padding-top: 19px; border-top: 1px solid rgba(42,39,32,.2); color: #776f64; font: 11px Inter, Arial, sans-serif; }
.desk-stat-line b { color: #a44531; font: 34px Georgia, serif; font-weight: 400; }
.desk-field-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.desk-field-grid button { min-height: 205px; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(42,39,32,.26); padding: 16px; color: #2b2a25; background: #ece5d8; text-align: left; cursor: pointer; transition: transform .25s ease, background .25s ease; }
.desk-field-grid button:hover, .desk-field-grid button:focus-visible { transform: translateY(-6px); color: #f5f0e7; background: #2d2b27; outline: none; }
.desk-field-grid span { color: #a44531; font: 10px Inter, Arial, sans-serif; letter-spacing: .12em; }
.desk-field-grid strong { font: 21px Georgia, serif; font-weight: 400; }
.desk-field-grid small { color: #756d60; font: 11px/1.55 Inter, Arial, sans-serif; }
.desk-field-grid button:hover small { color: rgba(245,240,231,.67); }
.desk-field-grid i { color: #a44531; font: 10px Inter, Arial, sans-serif; font-style: normal; }
.desk-works-heading { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 24px; }
.desk-works-heading h2 { margin-bottom: 6px; }
.desk-works-heading p { margin: 0; font-size: 12px; }
.desk-filters { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.desk-filters button { border: 1px solid rgba(42,39,32,.24); padding: 7px 10px; color: #696156; background: transparent; font: 10px Inter, Arial, sans-serif; cursor: pointer; }
.desk-filters button.is-active, .desk-filters button:hover { color: #f5f0e7; background: #a44531; border-color: #a44531; }
.desk-work-table { position: relative; border-top: 1px solid #2b2a25; }
.desk-work-row { display: grid; grid-template-columns: 70px 1.45fr 1fr 1fr; gap: 16px; align-items: center; width: 100%; min-height: 65px; border: 0; border-bottom: 1px solid rgba(42,39,32,.16); padding: 10px 0; color: #5f594f; background: transparent; text-align: left; font: 11px/1.45 Inter, Arial, sans-serif; }
.desk-work-row:not(.desk-work-head) { cursor: pointer; transition: padding .25s ease, color .25s ease, background .25s ease; }
.desk-work-row:not(.desk-work-head):hover, .desk-work-row:not(.desk-work-head):focus-visible { padding-left: 10px; color: #2b2a25; background: rgba(164,69,49,.07); outline: none; }
.desk-work-row strong { color: #2b2a25; font: 17px/1.35 Georgia, 'Noto Serif SC', serif; font-weight: 400; }
.desk-work-head { min-height: 40px; color: #a44531; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.desk-preview { position: fixed; z-index: 1200; right: 7vw; top: 15vh; width: 180px; padding: 7px; pointer-events: none; background: #f5f0e7; box-shadow: 0 20px 40px rgba(0,0,0,.22); }
.desk-preview img { display: block; width: 100%; height: 180px; object-fit: contain; background: #e9e0d1; }
.desk-preview span { display: block; padding: 8px 3px 3px; color: #6d6458; font: 10px/1.3 Georgia, serif; }
.desk-detail-media { min-height: 370px; background: #e8dfd2; }
.desk-detail-media .image-button { position: relative; display: block; width: 100%; height: 100%; min-height: 370px; border: 0; padding: 0; background: transparent; cursor: zoom-in; }
.desk-detail-media img { display: block; width: 100%; height: 100%; min-height: 370px; object-fit: contain; }
.desk-detail-media .image-button span { position: absolute; right: 12px; bottom: 12px; padding: 6px 9px; color: #f5f0e7; background: rgba(42,39,32,.78); font: 10px Inter, Arial, sans-serif; }
.desk-detail-placeholder { display: grid; place-items: center; height: 100%; min-height: 370px; color: #a44531; font: 12px Inter, Arial, sans-serif; }
.desk-detail-copy h2 { margin-bottom: 9px; font-size: 37px; }
.desk-detail-meta { margin: 0 0 20px !important; color: #a44531 !important; font: 11px Inter, Arial, sans-serif !important; }
.desk-detail-copy dl, .desk-book-detail dl, .desk-contact-letter dl { margin: 0 0 24px; border-top: 1px solid rgba(42,39,32,.18); }
.desk-detail-copy dl div, .desk-book-detail dl div, .desk-contact-letter dl div { display: grid; grid-template-columns: 90px 1fr; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(42,39,32,.14); }
.desk-detail-copy dt, .desk-book-detail dt, .desk-contact-letter dt { color: #a44531; font: 10px Inter, Arial, sans-serif; }
.desk-detail-copy dd, .desk-book-detail dd, .desk-contact-letter dd { margin: 0; color: #454037; font: 12px/1.5 Inter, Arial, sans-serif; }
.desk-detail-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.desk-detail-actions button, .desk-detail-link, .desk-download { border: 1px solid rgba(164,69,49,.48); padding: 9px 12px; color: #a44531; background: transparent; font: 10px Inter, Arial, sans-serif; text-decoration: none; cursor: pointer; }
.desk-detail-actions button:hover, .desk-detail-link:hover, .desk-download:hover { color: #f5f0e7; background: #a44531; }
.desk-muted { color: #9d9487 !important; font-size: 11px !important; }
.desk-experience-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 30px; }
.desk-experience-list article { padding: 18px 0 20px; border-top: 1px solid rgba(42,39,32,.2); }
.desk-experience-list span { color: #a44531; font: 10px Inter, Arial, sans-serif; letter-spacing: .12em; }
.desk-experience-list h3 { margin: 10px 0 8px; font: 20px Georgia, 'Noto Serif SC', serif; font-weight: 400; }
.desk-experience-list p { margin: 0; font-size: 12px; }
.desk-contact-letter { max-width: 620px; }
.desk-contact-letter > p { margin: 0 0 32px; color: #2b2a25; font-size: 20px; }
.desk-book-detail > img { max-height: 480px; object-fit: contain; background: #eee7d9; }
.desk-modal-open .desk-home { filter: blur(4px); transform: scale(.992); transition: filter .35s ease, transform .35s ease; }
.preloader { color: #2b2a25; background: #e6dfd4; transition: opacity .22s ease, visibility .22s ease; }
.preloader-inner { width: min(620px, calc(100vw - 48px)); }
.preloader-seal, .preloader-inner h1 { display: none; }
.preloader-inner > p { margin: 0 0 24px; color: #2b2a25; font: 500 15px Inter, Arial, sans-serif; letter-spacing: .36em; }
.preloader-inner::before { content: "ZHAO YING"; display: block; margin-bottom: 10px; color: #a44531; font: 13px Inter, Arial, sans-serif; letter-spacing: .4em; }
.preloader-meta { color: #6d6559; }
.preloader-line { background: rgba(43,42,37,.18); }
.preloader-line span { background: #a44531; }

@media (max-width: 900px) {
  .desk-home { min-height: auto; padding: 86px 18px 24px; }
  .desk-grid { grid-template-columns: 1fr 1.2fr; grid-template-rows: 290px 250px 190px 155px; min-height: 0; }
  .desk-profile { grid-column: 1; grid-row: 1 / span 2; }
  .desk-newspaper { grid-column: 2; grid-row: 1 / span 2; }
  .desk-tag-black { grid-column: 1; grid-row: 3; }
  .desk-tag-yellow { grid-column: 2; grid-row: 3; }
  .desk-book { grid-column: 1; grid-row: 4; }
  .desk-id-card { grid-column: 2; grid-row: 4; }
  .desk-envelope { position: absolute; right: 8px; bottom: -125px; width: 190px; height: 112px; }
  .desk-paper-note { right: 30%; bottom: -120px; }
  .desk-bottomline { margin-top: 140px; }
  .desk-field-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .desk-home { padding: 78px 14px 24px; overflow: visible; }
  .desk-home::after { right: -72px; bottom: 180px; font-size: 47px; }
  .desk-topline, .desk-bottomline { font-size: 8px; letter-spacing: .08em; }
  .desk-topline span:last-child, .desk-bottomline span:last-child { display: none; }
  .desk-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 405px 245px 170px 150px 150px 150px 120px; gap: 11px; }
  .desk-profile { grid-column: 1 / -1; grid-row: 1; padding: 17px 17px 14px; }
  .desk-profile-body { grid-template-columns: 1fr 96px; gap: 9px; padding: 17px 0 14px; }
  .desk-profile h1 { font-size: 30px; }
  .desk-profile-body img { width: 96px; height: 122px; }
  .desk-profile-footer { gap: 5px; }
  .desk-profile-footer span { font-size: 8px; }
  .desk-newspaper { grid-column: 1 / -1; grid-row: 2 / span 2; padding: 15px 16px; }
  .desk-news-grid { min-height: 360px; gap: 10px; padding: 12px 0 10px; }
  .desk-news-lead h2 { font-size: 26px; }
  .desk-news-thumb img { min-height: 180px; }
  .desk-news-list { gap: 6px; font-size: 9px; }
  .desk-tag-black { grid-column: 1; grid-row: 4; }
  .desk-tag-yellow { grid-column: 2; grid-row: 4; }
  .desk-book { grid-column: 1; grid-row: 5; display: grid; }
  .desk-id-card { grid-column: 2; grid-row: 5; display: flex; }
  .desk-envelope { grid-column: 1 / -1; grid-row: 6; position: relative; right: auto; bottom: auto; width: auto; height: auto; display: flex; }
  .desk-paper-note { position: relative; right: auto; bottom: auto; grid-column: 1 / -1; grid-row: 7; width: auto; min-height: 105px; }
  .desk-bottomline { margin-top: 22px; }
  .desk-modal { padding: 12px; }
  .desk-modal-panel { max-height: 92vh; padding: 34px 18px 28px; }
  .desk-modal-panel h2 { font-size: 34px; }
  .desk-about-grid, .desk-book-detail, .desk-detail-grid { grid-template-columns: 1fr; gap: 20px; }
  .desk-about-grid > img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center top;
  }
  .desk-field-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .desk-field-grid button { min-height: 145px; padding: 12px; }
  .desk-field-grid strong { font-size: 17px; }
  .desk-works-heading { display: block; }
  .desk-filters { justify-content: flex-start; margin-top: 16px; }
  .desk-work-head { display: none; }
  .desk-work-row { grid-template-columns: 47px 1fr; gap: 5px 12px; min-height: 78px; padding: 12px 0; }
  .desk-work-row span:nth-of-type(2), .desk-work-row span:nth-of-type(3) { grid-column: 2; color: #7e7467; font-size: 10px; }
  .desk-work-row strong { grid-column: 2; font-size: 16px; }
  .desk-work-row span:first-child { grid-row: 1 / span 3; align-self: start; color: #a44531; }
  .desk-preview { display: none !important; }
  .desk-detail-media, .desk-detail-media .image-button, .desk-detail-media img, .desk-detail-placeholder { min-height: 260px; }
  .desk-detail-copy h2 { font-size: 29px; }
  .desk-experience-list { grid-template-columns: 1fr; }
  .desk-contact-letter > p { font-size: 17px; }
}

/* Final layout override: no desk appears below the homepage; the video-style sections are the portfolio navigation. */
.desk-home { min-height: auto; padding: 0 max(18px, 4vw) 38px; overflow: visible; background-color: #f4eee4; background-image: radial-gradient(circle at 18% 18%, rgba(255,224,214,.22), transparent 28%), radial-gradient(circle at 85% 72%, rgba(207,229,214,.18), transparent 34%), repeating-linear-gradient(0deg, rgba(70,42,48,.018) 0 1px, transparent 1px 5px); }
.desk-home::before, .desk-home::after { display: none; }
.desk-topline, .desk-grid, .desk-bottomline { display: none !important; }
.site-footer { color: rgba(247,245,239,.58); background: #181818; }
.site-footer a { color: #f1d47b; }
@media (max-width: 600px) { .desk-home { padding: 0 14px 28px; } }
@media (prefers-reduced-motion: reduce) { .video-section, .stamp-card, .experience-chips button, .experience-images img, .project-papers > button { animation: none !important; transition: none !important; } }

/* Current interaction pass: one navigation, distinct experience files, and a live research image flow. */
.landing-nav { display: none !important; }
.video-experience { background: linear-gradient(135deg, #fff 0%, #fbfaf7 52%, #f1f4f1 100%); }
.video-experience::after { content: "FIELD NOTES / 16 FRAMES"; position: absolute; right: 26px; top: 24px; color: rgba(32,32,32,.25); font: 9px/1 Inter, Arial, sans-serif; letter-spacing: .17em; }
.research-flow { min-height: 560px; margin: 0 0 24px; border: 1px solid rgba(20,45,39,.18); box-shadow: 0 22px 44px rgba(20,45,39,.12); }
.research-flow .gradient-card { width: min(58%, 440px); height: min(72%, 420px); }
.research-flow .gradient-ui { left: 20px; right: 20px; bottom: 18px; }
.experience-images { margin-top: 18px; }
.experience-images button { box-shadow: 0 14px 24px rgba(28,34,31,.08); }
.desk-experience-intro { margin-bottom: 25px; }
.desk-experience-intro .desk-lead { margin-bottom: 18px; }
.experience-stat-line { display: grid; grid-template-columns: repeat(4, minmax(80px, 1fr)); gap: 8px 18px; align-items: end; margin-top: 0; }
.experience-stat-line b { font-size: 28px; }
.experience-stat-line span { align-self: center; line-height: 1.3; }
.desk-book-actions { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; }
.desk-copy-link { border: 1px solid rgba(164,69,49,.48); padding: 9px 12px; color: #a44531; background: transparent; font: 10px Inter, Arial, sans-serif; cursor: pointer; }
.desk-copy-link:hover, .desk-copy-link:focus-visible { color: #f5f0e7; background: #a44531; outline: none; }
@media (max-width: 760px) {
  .research-flow { min-height: 480px; }
  .research-flow .gradient-card { width: min(76%, 360px); height: min(67%, 320px); }
  .experience-stat-line { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
}

/* Editorial motion pass: the side ornaments travel like a continuous ribbon. */
.landing-doodle-rail { top: 82px; bottom: 0; width: 48px; display: block; overflow: hidden; color: rgba(30,30,30,.64); font-size: 24px; }
.landing-doodle-rail::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: linear-gradient(180deg, transparent, rgba(45,45,45,.25) 14%, rgba(45,45,45,.25) 86%, transparent); }
.landing-doodle-rail::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, #f7f7f6 0%, transparent 12%, transparent 88%, #f7f7f6 100%); opacity: .88; }
.doodle-stream { position: absolute; top: 0; left: 0; width: 100%; height: 200%; display: flex; flex-direction: column; align-items: center; justify-content: space-around; padding: 18px 0; animation: doodleFlow 24s linear infinite; will-change: transform; }
.doodle-stream span, .doodle-stream b { position: relative; z-index: 1; display: block; flex: 0 0 auto; margin: 0; animation: none !important; }
.doodle-stream b { color: rgba(42,42,42,.68); font: 11px/1 var(--sans); letter-spacing: .16em; text-transform: lowercase; transform: rotate(-90deg); }
.landing-doodle-right .doodle-stream { animation-direction: reverse; animation-duration: 28s; }
.landing-doodle-right .doodle-stream b { transform: rotate(90deg); }
@keyframes doodleFlow { from { transform: translate3d(0,0,0); } to { transform: translate3d(0,-50%,0); } }

/* Experience is a dark editorial chapter with one moving image field, not another card grid. */
.video-experience { color: #f3efe6; background: #153a32; border-color: rgba(255,255,255,.12); box-shadow: 0 26px 60px rgba(16,45,39,.13); }
.video-experience::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .22; background: repeating-linear-gradient(90deg, transparent 0 82px, rgba(255,255,255,.08) 83px, transparent 84px); }
.video-experience::after { color: rgba(245,237,222,.38); }
.video-experience .video-section-head > span { color: #e3b65f; }
.video-experience .video-section-head p, .video-experience .video-section-head small { color: rgba(245,237,222,.66); }
.experience-index { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; margin: 0 0 28px; border-top: 1px solid rgba(245,237,222,.28); border-bottom: 1px solid rgba(245,237,222,.28); }
.video-experience .experience-index button { min-width: 0; min-height: 145px; display: grid; grid-template-columns: 32px 1fr auto; grid-template-rows: auto auto 1fr; grid-template-areas: "no code arrow" "no title title" "no meta meta"; gap: 8px 9px; padding: 17px 16px; color: rgba(245,237,222,.78); border: 0; border-right: 1px solid rgba(245,237,222,.18); border-radius: 0; background: transparent; text-align: left; transform: none; transition: background .35s ease, color .35s ease, padding .35s ease; }
.video-experience .experience-index button:last-child { border-right: 0; }
.video-experience .experience-index button:hover, .video-experience .experience-index button:focus-visible { color: #152f29; background: #e4bb66; outline: none; transform: none; }
.experience-index-no { grid-area: no; color: #e4bb66; font: 11px/1 Inter, Arial, sans-serif; letter-spacing: .14em; }
.experience-index b { grid-area: code; align-self: start; color: #e4bb66; font: 700 9px/1 Inter, Arial, sans-serif; letter-spacing: .12em; }
.experience-index button:hover b, .experience-index button:focus-visible b, .experience-index button:hover .experience-index-no, .experience-index button:focus-visible .experience-index-no { color: #153a32; }
.experience-index strong { grid-area: title; align-self: start; font: 18px/1.2 Georgia, 'Noto Serif SC', serif; font-weight: 400; }
.experience-index small { grid-area: meta; align-self: end; color: rgba(245,237,222,.55); font: 10px/1.5 var(--sans); }
.experience-index button:hover small, .experience-index button:focus-visible small { color: rgba(21,47,41,.72); }
.experience-index i { grid-area: arrow; color: #e4bb66; font: 16px/1 Inter, Arial, sans-serif; font-style: normal; }
.experience-index button:hover i, .experience-index button:focus-visible i { color: #153a32; }
.video-experience .research-flow { position: relative; z-index: 1; margin-bottom: 0; border-color: rgba(245,237,222,.22); box-shadow: 0 25px 55px rgba(4,20,16,.3); }
.experience-caption { position: relative; z-index: 1; display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; margin-top: 16px; color: rgba(245,237,222,.58); font: 10px/1.6 Inter, Arial, sans-serif; letter-spacing: .08em; }
.experience-caption p { margin: 0; color: rgba(245,237,222,.67); font: 12px/1.6 var(--sans); letter-spacing: 0; }
.experience-caption i { color: #e4bb66; font-style: normal; font-size: 9px; letter-spacing: .14em; }

/* Projects become three different editorial instruments instead of three equal cards. */
.video-projects { background: #eadfd3; }
.project-constellation { grid-template-columns: 1.18fr .86fr .86fr; gap: 20px; align-items: stretch; }
.project-constellation > button { min-height: 330px; border: 1px solid rgba(38,34,30,.18); box-shadow: 0 17px 30px rgba(69,49,32,.1); transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease, background .35s ease; }
.project-constellation > button:hover, .project-constellation > button:focus-visible { transform: translateY(-10px); box-shadow: 0 28px 45px rgba(69,49,32,.17); outline: none; }
.publication-paper { min-height: 420px !important; background: #f8f4ec; }
.publication-paper img { object-fit: contain !important; padding: 25px 34px 64px; background: #f8f4ec; }
.publication-paper span { left: 21px !important; bottom: 17px !important; color: #7b6655 !important; text-shadow: none !important; font: 10px/1.6 Inter, Arial, sans-serif !important; letter-spacing: .08em; }
.publication-paper span b { color: #a74633; font-weight: 600; }
.writing-paper { color: #f5eee4 !important; background: #173b33 !important; }
.research-paper { color: #25231f !important; background: #f7f1e6 !important; }
.writing-paper::before, .research-paper::before { content: ""; position: absolute; inset: 16px; border: 1px solid currentColor; opacity: .18; pointer-events: none; }
.project-constellation .paper-index { margin: 0 auto auto 0; color: #e4bb66; font: 76px/.85 Georgia, serif; letter-spacing: -.08em; }
.research-paper .paper-index { color: #a74633; }
.project-constellation strong { margin-top: auto; font: 30px/1.12 Georgia, 'Noto Serif SC', serif; font-weight: 400; }
.project-constellation small { max-width: 200px; margin-top: 12px; color: inherit; opacity: .62; font: 11px/1.7 var(--sans); }
.project-constellation i { margin-top: 18px; color: #e4bb66; font: 10px/1 Inter, Arial, sans-serif; font-style: normal; letter-spacing: .12em; }
.research-paper i { color: #a74633; }
@media (max-width: 760px) {
  .landing-doodle-rail { width: 30px; }
  .doodle-stream { font-size: 19px; }
  .doodle-stream b { font-size: 9px; }
  .experience-index { grid-template-columns: 1fr 1fr; }
  .video-experience .experience-index button:nth-child(2) { border-right: 0; }
  .video-experience .experience-index button:nth-child(-n+2) { border-bottom: 1px solid rgba(245,237,222,.18); }
  .experience-caption { grid-template-columns: 1fr; gap: 7px; }
  .experience-caption i { display: none; }
  .project-constellation { grid-template-columns: 1fr 1fr; }
  .publication-paper { grid-column: 1 / -1; min-height: 360px !important; }
}

/* Latest art direction: cherry blossom portrait, tactile side streams, and a case-study-led project chapter. */
.landing-home {
  color: #33252e;
  background-color: #f4eee4;
  background-image: radial-gradient(circle at 22% 20%, rgba(255,224,214,.88), transparent 30%), radial-gradient(circle at 81% 72%, rgba(210,233,216,.66), transparent 33%), linear-gradient(125deg, rgba(255,255,255,.78), transparent 52%), repeating-linear-gradient(0deg, rgba(70,42,48,.025) 0 1px, transparent 1px 5px);
}
.landing-home::before { inset: 17px 26px; border-color: rgba(130,75,77,.22); }
.landing-home::after { border-color: rgba(175,92,92,.25); box-shadow: 0 0 0 24px rgba(175,92,92,.055), 0 0 0 48px rgba(175,92,92,.035); }
.landing-copy h1 {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  column-gap: clamp(6px, .07em, 9px);
  row-gap: .02em;
  color: #262126;
  font-family: Inter, "Noto Sans SC", "Microsoft YaHei", system-ui, sans-serif;
  font-weight: 780;
  line-height: 1.02;
  letter-spacing: normal;
  word-spacing: normal;
  text-align: left;
}
.landing-name-en {
  flex: 0 0 auto;
  white-space: nowrap;
  word-break: keep-all;
  overflow-wrap: normal;
  letter-spacing: -.025em;
  word-spacing: normal;
}
.landing-copy h1 em { flex: 0 0 auto; white-space: nowrap; word-break: keep-all; letter-spacing: -.02em; }
.landing-copy h1 em { display: inline; margin: 0; }
.landing-copy h1 em, .landing-kicker, .landing-paper-label { color: #a94d59; }
.landing-meta { color: #594b52; }
.landing-intro { min-height: 4.4em; color: #68585e; font-family: var(--serif); line-height: 1.85; }
.landing-portrait-wrap::before { border-color: #dd9b9b; }
.landing-portrait-frame { width: 306px; height: 378px; border-color: rgba(112,70,74,.26); border-radius: 44% 56% 48% 52% / 42% 45% 55% 58%; background: #f3ded4; box-shadow: 13px 17px 0 rgba(145,83,83,.08), 0 22px 44px rgba(79,45,47,.13); }
.landing-portrait-frame img { object-position: 51% 33%; filter: saturate(1.03) contrast(.98); }
.landing-portrait-caption { color: #876c70; }
.landing-sticker { color: #4b3036; background: #f0c969; }
.landing-personality { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.landing-personality span { display: inline-flex; align-items: center; min-height: 25px; padding: 5px 10px; border: 1px solid rgba(169,77,89,.34); border-radius: 999px; color: #78404a; background: rgba(255,255,255,.52); font: 10px/1 Inter, 'Noto Sans SC', sans-serif; letter-spacing: .07em; }
.landing-personality span:first-child { color: #fffaf3; border-color: #a94d59; background: #a94d59; font-weight: 700; }
.landing-actions button:first-child, .landing-actions button:hover, .landing-actions button:focus-visible { border-color: #a94d59; background: #a94d59; }
.landing-actions button { color: #5e414b; border-color: rgba(112,70,74,.36); background: rgba(255,255,255,.48); }
.landing-bottom > a:first-child span { color: #a94d59; }
.landing-mini-sticker { position: absolute; z-index: 2; display: block; pointer-events: none; opacity: .86; filter: drop-shadow(0 10px 16px rgba(72,44,42,.12)); mix-blend-mode: multiply; }
.landing-mini-sticker img { display: block; width: 100%; height: 100%; object-fit: contain; }
.sticker-blue { width: 62px; height: 95px; left: 17%; top: 21%; transform: rotate(-11deg); animation: stickerSway 7s ease-in-out infinite; }
.sticker-red { width: 76px; height: 76px; right: 17%; bottom: 19%; transform: rotate(10deg); animation: stickerSway 8s ease-in-out -2s infinite reverse; }
@keyframes stickerSway { 0%,100% { transform: translate3d(0,0,0) rotate(-11deg); } 50% { transform: translate3d(0,-7px,0) rotate(-6deg); } }
.landing-doodle-rail { width: 54px; color: rgba(116,63,71,.76); }
.landing-doodle-rail::before { background: linear-gradient(180deg, transparent, rgba(169,77,89,.33) 14%, rgba(169,77,89,.33) 86%, transparent); }
.landing-doodle-rail::after { background: linear-gradient(180deg, #fffaf3, transparent 12%, transparent 88%, #fffaf3); }
.doodle-stream span:nth-child(3n) { color: #b66b75; }
.doodle-stream span:nth-child(4n) { color: #5e7d82; }
.doodle-stream b { color: rgba(104,69,76,.76); }
.landing-doodle-right .doodle-stream b { letter-spacing: .08em; }

.video-projects { color: #2e2530; background: linear-gradient(135deg, #f2e3dd 0%, #f7efe6 56%, #e6ede6 100%); }
.video-projects::before { content: "CASE STUDIES / 03"; position: absolute; right: 30px; top: 27px; color: rgba(89,60,71,.34); font: 9px/1 Inter, Arial, sans-serif; letter-spacing: .18em; }
.project-studio { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.64fr) minmax(230px, .7fr); grid-template-areas: "case side" "ribbon side" "data side"; gap: 14px 18px; }
.project-case { grid-area: case; position: relative; min-height: 382px; display: grid; grid-template-columns: 1fr .78fr; grid-template-rows: auto 1fr auto; gap: 18px; padding: 26px 28px 23px; overflow: hidden; border: 1px solid rgba(82,51,60,.22); color: #2e2530; background: #fbf8f1; text-align: left; cursor: pointer; box-shadow: 0 18px 36px rgba(93,57,61,.12); transition: transform .55s cubic-bezier(.2,.8,.2,1), box-shadow .55s ease; }
.project-case:hover, .project-case:focus-visible { transform: translateY(-8px); box-shadow: 0 28px 48px rgba(93,57,61,.2); outline: none; }
.project-case-bg { position: absolute; inset: 0; pointer-events: none; opacity: .26; background-image: linear-gradient(90deg, rgba(250,247,238,.9), transparent 52%), url("assets/projects/guiyouji/geometric-pattern.png"); background-size: auto, 280px auto; background-position: left, right bottom; background-repeat: no-repeat, repeat-x; mix-blend-mode: multiply; }
.project-case-index, .project-case-copy, .project-case-art, .project-case-arrow { position: relative; z-index: 1; }
.project-case-index { grid-column: 1 / -1; color: #a14f5a; font: 10px/1 Inter, Arial, sans-serif; letter-spacing: .18em; }
.project-case-art { grid-column: 2; grid-row: 2; align-self: center; justify-self: end; width: min(100%, 280px); height: 205px; overflow: hidden; border: 1px solid rgba(76,55,53,.12); background: #f4eadf; transform: rotate(2deg); box-shadow: 9px 11px 0 rgba(88,59,56,.09); }
.project-case-art img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.project-case-copy { grid-column: 1; grid-row: 2; align-self: center; display: flex; flex-direction: column; gap: 9px; max-width: 390px; }
.project-case-copy strong { font: 400 clamp(38px, 5vw, 64px)/.95 Georgia, 'Noto Serif SC', serif; letter-spacing: -.05em; }
.project-case-copy em { color: #9d5360; font: 21px/1.35 Georgia, 'Noto Serif SC', serif; font-style: normal; }
.project-case-copy small { max-width: 300px; color: #75636a; font: 11px/1.7 var(--sans); }
.project-case-arrow { grid-column: 1 / -1; color: #a14f5a; font: 10px/1 Inter, Arial, sans-serif; letter-spacing: .13em; }
.project-product-ribbon { grid-area: ribbon; display: flex; gap: 10px; min-width: 0; padding: 11px 0 7px; overflow: hidden; border-top: 1px solid rgba(82,51,60,.2); border-bottom: 1px solid rgba(82,51,60,.2); mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent); }
.product-chip { flex: 0 0 108px; height: 76px; padding: 6px; overflow: hidden; border: 1px solid rgba(82,51,60,.18); background: rgba(255,255,255,.64); cursor: zoom-in; transition: transform .35s ease, background .35s ease; }
.product-chip:hover, .product-chip:focus-visible { transform: translateY(-5px) rotate(-2deg); background: #fff; outline: none; }
.product-chip img { display: block; width: 100%; height: 100%; object-fit: contain; }
.project-case-data { grid-area: data; display: grid; grid-template-columns: repeat(4, 1fr); border-bottom: 1px solid rgba(82,51,60,.2); }
.project-case-data span { display: flex; flex-direction: column; gap: 4px; padding: 12px 13px 13px 0; border-right: 1px solid rgba(82,51,60,.16); }
.project-case-data span:not(:first-child) { padding-left: 13px; }
.project-case-data span:last-child { border-right: 0; }
.project-case-data b { color: #a14f5a; font: 32px/.9 Georgia, serif; font-weight: 400; }
.project-case-data small { color: #786873; font: 10px/1.35 var(--sans); }
.project-side-stack { grid-area: side; display: grid; grid-template-rows: 1fr 1fr; gap: 14px; }
.project-side-card { position: relative; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; min-height: 190px; padding: 20px; overflow: hidden; border: 1px solid rgba(82,51,60,.2); color: #f8f0e9; background: #294a50; text-align: left; cursor: pointer; transition: transform .45s ease, box-shadow .45s ease; }
.project-side-card:hover, .project-side-card:focus-visible { transform: translateY(-7px); box-shadow: 0 20px 28px rgba(60,43,52,.17); outline: none; }
.project-side-card::before { content: ""; position: absolute; inset: 0; opacity: .18; background: url("assets/projects/guiyouji/cartoon-pattern.png") center / 240px auto; mix-blend-mode: screen; }
.project-side-card > * { position: relative; z-index: 1; }
.project-side-card span { color: #eecb7c; font: 9px/1 Inter, Arial, sans-serif; letter-spacing: .14em; }
.project-side-card strong { margin-top: auto; font: 30px/1.05 Georgia, 'Noto Serif SC', serif; font-weight: 400; }
.project-side-card small { margin-top: 12px; color: rgba(248,240,233,.7); font: 10px/1.5 var(--sans); }
.project-side-card i { margin-top: 18px; color: #eecb7c; font: 10px/1 Inter, Arial, sans-serif; font-style: normal; letter-spacing: .12em; }
.project-side-research { color: #2f2730; background: #f5e0cf; }
.project-side-research span, .project-side-research i { color: #a14f5a; }
.project-side-research small { color: #75636a; }

.video-honors { color: #f7f2e9; background: linear-gradient(135deg, #21333a 0%, #302838 68%, #4b3038 100%); }
.video-honors::before { content: "23+ / SMALL PROOFS"; position: absolute; right: 28px; top: 26px; color: rgba(247,242,233,.35); font: 9px/1 Inter, Arial, sans-serif; letter-spacing: .18em; }
.video-honors .video-section-head > span { color: #efc76e; }
.video-honors .video-section-head p, .video-honors .video-section-head small { color: rgba(247,242,233,.62); }
.honors-display { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1.42fr) minmax(260px, .72fr); gap: 28px; align-items: stretch; }
.honors-wall { position: relative; min-height: 350px; padding: 22px; overflow: hidden; background: #e6d4c4; box-shadow: 0 22px 40px rgba(8,21,25,.28); }
.honors-wall::before { content: "HONORS WALL"; position: absolute; z-index: 2; left: 20px; top: 15px; color: rgba(53,44,43,.55); font: 9px/1 Inter, Arial, sans-serif; letter-spacing: .2em; }
.honors-wall-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; height: 100%; padding-top: 24px; }
.honor-tile { position: relative; min-width: 0; padding: 5px; overflow: hidden; border: 0; background: #f9f3e9; box-shadow: 0 8px 15px rgba(57,41,35,.16); cursor: zoom-in; transition: transform .45s cubic-bezier(.2,.8,.2,1), z-index .45s ease; }
.honor-tile:nth-child(1) { transform: rotate(-2.2deg) translateY(7px); }.honor-tile:nth-child(2) { transform: rotate(1.2deg) translateY(-4px); }.honor-tile:nth-child(3) { transform: rotate(-1.4deg) translateY(10px); }.honor-tile:nth-child(4) { transform: rotate(1.5deg) translateY(-2px); }.honor-tile:nth-child(5) { transform: rotate(-1deg) translateY(8px); }.honor-tile:nth-child(6) { transform: rotate(2.4deg) translateY(-5px); }
.honor-tile:hover, .honor-tile:focus-visible { z-index: 3; transform: translateY(-8px) rotate(0deg) scale(1.04); outline: none; box-shadow: 0 16px 27px rgba(57,41,35,.25); }
.honor-tile img { display: block; width: 100%; height: 100%; object-fit: cover; filter: saturate(.82) contrast(1.02); }
.honors-wall-count { position: absolute; right: 18px; bottom: 15px; display: flex; flex-direction: column; align-items: flex-end; color: #4a3138; text-align: right; }
.honors-wall-count strong { font: 66px/.8 Georgia, serif; font-weight: 400; letter-spacing: -.08em; }.honors-wall-count strong span { color: #ae5c65; font-size: .52em; vertical-align: top; }.honors-wall-count small { margin-top: 8px; font: 9px/1 Inter, Arial, sans-serif; letter-spacing: .14em; }
.honors-summary { display: flex; flex-direction: column; justify-content: center; padding: 30px 25px; border: 1px solid rgba(247,242,233,.2); background: rgba(19,29,33,.22); }
.honors-summary-kicker { margin: 0 0 16px; color: #efc76e; font: 10px/1 Inter, Arial, sans-serif; letter-spacing: .18em; }.honors-summary h3 { margin: 0; font: 31px/1.18 Georgia, 'Noto Serif SC', serif; font-weight: 400; }.honors-summary > p:not(.honors-summary-kicker) { margin: 19px 0 0; color: rgba(247,242,233,.68); font: 13px/1.8 var(--sans); }
.honors-summary-list { display: grid; gap: 9px; margin: 25px 0 0; }.honors-summary-list span { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-top: 9px; border-top: 1px solid rgba(247,242,233,.18); }.honors-summary-list b { color: #efc76e; font: 15px Georgia, serif; font-weight: 400; }.honors-summary-list small { color: rgba(247,242,233,.54); font: 10px/1.4 var(--sans); }.honors-open { align-self: flex-start; margin-top: 26px; border: 1px solid rgba(239,199,110,.52); padding: 10px 13px; color: #efc76e; background: transparent; font: 10px/1 Inter, Arial, sans-serif; letter-spacing: .08em; cursor: pointer; }.honors-open:hover, .honors-open:focus-visible { color: #29333a; background: #efc76e; outline: none; }

.desk-project-detail { display: grid; grid-template-columns: minmax(280px, .88fr) 1.12fr; gap: 34px; align-items: start; }.desk-project-detail-visual > img { display: block; width: 100%; height: 245px; object-fit: cover; background: #eee4d6; }.desk-project-thumb-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 10px; }.desk-project-thumb-grid .image-button { min-width: 0; height: 82px; padding: 4px; overflow: hidden; border: 1px solid rgba(42,39,32,.18); background: #f4eadf; cursor: zoom-in; }.desk-project-thumb-grid img { display: block; width: 100%; height: 100%; object-fit: contain; }.desk-project-detail-copy .desk-lead { margin-bottom: 19px; }.project-detail-stats { flex-wrap: wrap; gap: 7px 9px; }.project-detail-stats b { font-size: 29px; }.project-detail-bp { margin: 22px 0 0; border-top: 1px solid rgba(42,39,32,.18); }.project-detail-bp div { display: grid; grid-template-columns: 75px 1fr; gap: 10px; padding: 11px 0; border-bottom: 1px solid rgba(42,39,32,.14); }.project-detail-bp dt { color: #a44531; font: 10px Inter, Arial, sans-serif; }.project-detail-bp dd { margin: 0; color: #454037; font: 12px/1.55 Inter, Arial, sans-serif; }
.desk-honors-detail { display: grid; grid-template-columns: 190px 1fr; gap: 34px; align-items: start; }.desk-honors-count { display: flex; flex-direction: column; align-items: flex-start; padding: 19px; color: #f5f0e7; background: #2d3338; }.desk-honors-count b { color: #efc76e; font: 86px/.85 Georgia, serif; font-weight: 400; letter-spacing: -.09em; }.desk-honors-count b span { font-size: .45em; vertical-align: top; }.desk-honors-count small { margin-top: 12px; font: 10px/1.4 Inter, Arial, sans-serif; letter-spacing: .1em; }.desk-honors-groups { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }.desk-honors-groups article { padding-top: 12px; border-top: 1px solid rgba(42,39,32,.22); }.desk-honors-groups span { color: #a44531; font: 9px/1 Inter, Arial, sans-serif; letter-spacing: .12em; }.desk-honors-groups h3 { margin: 10px 0 7px; font: 20px Georgia, 'Noto Serif SC', serif; font-weight: 400; }.desk-honors-groups p { margin: 0; font-size: 12px; }

@media (max-width: 760px) {
  .landing-mini-sticker { display: none; }
  .landing-portrait-frame { width: 205px; height: 270px; }
  .landing-personality { justify-content: center; margin-top: 14px; }.landing-personality span { font-size: 9px; }
  .project-studio { grid-template-columns: 1fr; grid-template-areas: "case" "ribbon" "data" "side"; }
  .project-case { min-height: 390px; grid-template-columns: 1fr .8fr; padding: 20px 18px; }.project-case-art { height: 165px; }.project-case-copy strong { font-size: 44px; }.project-case-copy em { font-size: 17px; }.project-case-data b { font-size: 25px; }.project-case-data span, .project-case-data span:not(:first-child) { padding-left: 7px; padding-right: 7px; }.project-case-data small { font-size: 9px; }
  .project-side-stack { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }.project-side-card { min-height: 180px; padding: 15px; }.project-side-card strong { font-size: 23px; }
  .honors-display { grid-template-columns: 1fr; }.honors-wall { min-height: 310px; }.honors-summary { padding: 25px 20px; }.honors-summary h3 { font-size: 27px; }
  .desk-project-detail, .desk-honors-detail { grid-template-columns: 1fr; gap: 22px; }.desk-honors-groups { grid-template-columns: 1fr; gap: 12px; }
}

/* Final polish: a dense, front-facing certificate wall; product proofs stay visible without losing ownership. */
.video-section {
  border: 1px solid rgba(70,52,56,.16);
  border-radius: 26px;
  box-shadow: 0 22px 52px rgba(76,55,53,.11);
  background-clip: padding-box;
}
.video-experience, .video-honors { border-color: rgba(247,242,233,.18); }
.video-works { background: linear-gradient(135deg, #332d35 0%, #4a3b46 58%, #70535e 100%), repeating-linear-gradient(0deg, rgba(255,255,255,.026) 0 1px, transparent 1px 5px); background-blend-mode: normal, soft-light; }
.video-experience { background: linear-gradient(135deg, #49645f 0%, #5f756e 55%, #77877c 100%), repeating-linear-gradient(0deg, rgba(255,255,255,.024) 0 1px, transparent 1px 5px); background-blend-mode: normal, soft-light; }
.video-projects { background: linear-gradient(135deg, #d8b9aa 0%, #e4cabe 54%, #c8b6ad 100%), repeating-linear-gradient(0deg, rgba(70,42,48,.024) 0 1px, transparent 1px 5px); background-blend-mode: normal, multiply; }
.video-honors { background: linear-gradient(135deg, #645b70 0%, #7c6e82 55%, #99879a 100%), repeating-linear-gradient(0deg, rgba(255,255,255,.024) 0 1px, transparent 1px 5px); background-blend-mode: normal, soft-light; }
.video-experience::after { content: "FIELD NOTES / 15 FRAMES"; }
.video-honors::before { content: "25 / SMALL PROOFS"; }

.landing-sticker-mark { font-size: 24px !important; line-height: 1 !important; }
.landing-petal { position: absolute; z-index: 3; display: grid; place-items: center; color: #b85d6b; font: 28px/1 Georgia, serif; pointer-events: none; filter: drop-shadow(0 8px 12px rgba(91,52,61,.12)); animation: petalDrift 7s ease-in-out infinite; }
.petal-one { left: 25%; top: 19%; color: #d2838d; }
.petal-two { right: 27%; top: 16%; color: #e1ad79; animation-delay: -2s; }
.petal-three { right: 22%; bottom: 26%; color: #7e9b92; animation-delay: -4s; }
.petal-four { left: 22%; bottom: 24%; color: #b85d6b; animation-delay: -5.5s; }
@keyframes petalDrift { 0%,100% { transform: translate3d(0,0,0) rotate(-8deg) scale(1); } 50% { transform: translate3d(5px,-8px,0) rotate(8deg) scale(1.08); } }
.sakura-rain { position: fixed; inset: 0; z-index: 6; overflow: hidden; pointer-events: none; opacity: .72; mix-blend-mode: multiply; }
.sakura-petal { position: absolute; left: var(--x); top: -12vh; width: var(--size); height: calc(var(--size) * .72); border-radius: 78% 18% 78% 18%; background: linear-gradient(135deg, rgba(255, 205, 215, .94), rgba(218, 126, 150, .48)); opacity: var(--opacity); filter: drop-shadow(0 4px 7px rgba(135, 72, 88, .1)); transform: rotate(24deg); animation: sakuraFall var(--duration) linear var(--delay) infinite; }
@keyframes sakuraFall { 0% { transform: translate3d(0, -9vh, 0) rotate(0deg); } 28% { transform: translate3d(calc(var(--sway) * -.45), 29vh, 0) rotate(95deg); } 58% { transform: translate3d(var(--sway), 63vh, 0) rotate(190deg); } 100% { transform: translate3d(calc(var(--sway) * -.7), 118vh, 0) rotate(330deg); } }
.doodle-stream b { display: none !important; }
.landing-doodle-rail { overflow: hidden; }
.landing-doodle-rail { background: transparent !important; }
.landing-doodle-rail::after { background: linear-gradient(180deg, transparent, rgba(255,250,243,.18) 50%, transparent) !important; }

.project-product-ribbon { overflow-x: auto; overflow-y: hidden; mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent); scrollbar-width: thin; scrollbar-color: rgba(82,51,60,.42) transparent; }
.product-chip, .desk-project-thumb-grid .image-button { position: relative; }
.product-chip::after, .desk-project-thumb-grid .image-button::after { content: "GUIYOUJI · PROJECT ARCHIVE"; position: absolute; right: 4px; bottom: 3px; z-index: 2; padding: 2px 4px; color: rgba(105,56,65,.64); background: rgba(255,249,239,.72); font: 7px/1 Inter, Arial, sans-serif; letter-spacing: .08em; transform: rotate(-7deg); pointer-events: none; }
.product-chip::before, .desk-project-thumb-grid .image-button::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .12; background: repeating-linear-gradient(-27deg, transparent 0 33px, rgba(126,74,81,.28) 34px 35px); mix-blend-mode: multiply; }
.desk-project-thumb-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); max-height: 330px; overflow-y: auto; padding-right: 3px; scrollbar-width: thin; }
.desk-project-thumb-grid .image-button { height: 74px; }
.project-side-research { color: #302a32; background: linear-gradient(135deg, #d9c4bf, #c7b3b7); }
.project-side-research::before { opacity: .12; background: repeating-linear-gradient(135deg, transparent 0 18px, rgba(79,58,64,.22) 19px 20px); mix-blend-mode: multiply; }
.project-side-research span, .project-side-research i { color: #774d5b; }
.project-side-research small { color: #66545a; }
.desk-leprosy-detail { display: grid; grid-template-columns: minmax(180px, .64fr) 1.36fr; gap: 30px; align-items: start; }
.leprosy-cover { min-height: 300px; display: flex; flex-direction: column; justify-content: flex-end; gap: 12px; padding: 25px; color: #f6f0e7; background: linear-gradient(145deg, #264b4e, #17352f); box-shadow: 12px 14px 0 rgba(42,67,62,.12); }
.leprosy-cover span { color: #e6ba76; font: 9px/1.4 Inter, Arial, sans-serif; letter-spacing: .14em; }
.leprosy-cover strong { font: 30px/1.15 Georgia, 'Noto Serif SC', serif; font-weight: 400; }
.leprosy-cover small { color: rgba(246,240,231,.72); font: 11px/1.5 var(--sans); }

.honors-wall { min-height: 530px; padding: 22px 18px 18px; }
.honors-wall-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); grid-auto-rows: minmax(78px, 1fr); height: auto; min-height: 470px; gap: 9px; padding-top: 25px; }
.honor-tile, .honor-tile:nth-child(n) { aspect-ratio: 1.42 / 1; transform: none !important; padding: 3px; border: 1px solid rgba(86,64,64,.14); }
.honor-tile img { object-fit: contain; background: #f8f2e8; filter: saturate(.88) contrast(1.02); }
.honor-tile:hover, .honor-tile:focus-visible { transform: translateY(-5px) scale(1.045) !important; }
.honors-wall-count { right: 13px; bottom: 11px; }
.honors-wall-count strong { font-size: 54px; }

@media (max-width: 980px) {
  .honors-wall-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .desk-project-thumb-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .landing-petal { display: none; }
  .sakura-rain { opacity: .58; }
  .project-product-ribbon { mask-image: none; }
  .desk-project-thumb-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); max-height: none; }
  .honors-wall { min-height: 430px; }
  .honors-wall-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); min-height: 380px; }
  .desk-leprosy-detail { grid-template-columns: 1fr; }
  .leprosy-cover { min-height: 190px; }
}

/* The doodle rails belong to the landing paper: keep their texture continuous
   with the page while leaving every ornament decorative and untouchable. */
.landing-doodle-rail {
  position: fixed;
  z-index: 35;
  top: 92px;
  bottom: 18px;
  left: 8px;
  right: auto;
  width: 32px;
  background-color: transparent !important;
  background-image: none !important;
  pointer-events: none;
  opacity: .66;
}
.landing-doodle-right { left: auto; right: 8px; }
.landing-doodle-rail::after {
  background: linear-gradient(180deg, transparent, rgba(255,250,243,.18) 50%, transparent) !important;
  opacity: .72;
}
.doodle-stream span:nth-child(n+9) { display: none; }
.doodle-stream span {
  color: rgba(116,63,71,.78);
  text-shadow: 1px 1px 0 rgba(255,255,255,.54);
  filter: drop-shadow(0 2px 2px rgba(92,54,61,.1));
}
.doodle-stream span:nth-child(3n) { color: #b66b75; transform: rotate(-8deg) scale(1.08); }
.doodle-stream span:nth-child(4n) { color: #5e7d82; transform: rotate(7deg) scale(.9); }
.doodle-stream span:nth-child(5n) { color: #d09b5d; transform: rotate(-4deg) scale(.82); }
.doodle-stream span:nth-child(7n) { font-size: 1.18em; }

@media (min-width: 861px) and (max-width: 1179px) {
  .landing-doodle-rail { width: 26px; opacity: .46; }
  .doodle-stream { height: 180%; padding: 30px 0; animation-duration: 60s; }
  .doodle-stream span:nth-child(n+7) { display: none; }
}
@media (min-width: 601px) and (max-width: 860px) {
  .landing-doodle-rail { width: 25px; opacity: .35; }
  .landing-doodle-left { left: 5px; }
  .landing-doodle-right { right: 5px; }
  .doodle-stream { height: 160%; padding: 30px 0; animation-duration: 90s; animation-play-state: paused; }
  .doodle-stream span:nth-child(n+5) { display: none; }
  .doodle-stream span { font-size: .82em; }
}
@media (max-width: 600px) {
  .landing-doodle-rail { display: none; }
  .landing-petal { display: grid; font-size: 20px; opacity: .56; }
}

/* Consolidated responsive contract: the middle widths keep hierarchy and reading order intact. */
@media (max-width: 1080px) {
  .video-sections { width: min(100%, 980px); }
  .stamp-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
  .video-section-head { grid-template-columns: 34px minmax(0, 1fr); align-items: start; }
  .video-section-head small { grid-column: 2; justify-self: start; margin-top: 10px; text-align: left; }
}

@media (max-width: 980px) {
  .video-experience .experience-index { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .video-experience .experience-index button:nth-child(2) { border-right: 0; }
  .video-experience .experience-index button:nth-child(-n+2) { border-bottom: 1px solid rgba(245,237,222,.18); }
}

@media (max-width: 860px) {
  .stamp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
  .stamp-card:last-child { grid-column: 1 / -1; width: min(270px, 100%); justify-self: center; }
  .video-section-head { margin-bottom: 34px; }
}

@media (min-width: 601px) and (max-width: 760px) {
  .video-section { padding: 42px 18px 48px; }
  .site-header .site-nav:not(.open) { pointer-events: none; }
  .site-header .site-nav.open { pointer-events: auto; }
  .landing-doodle-rail { left: 3px; right: auto; }
  .landing-doodle-right { left: auto; right: 3px; }
  .project-studio { grid-template-columns: 1fr; grid-template-areas: "case" "ribbon" "data" "side"; }
  .project-case { min-height: 390px; }
  .project-side-stack { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr; }
  .project-side-card { min-height: 180px; }
  .honors-display { grid-template-columns: 1fr; }
  .honors-wall { min-height: 430px; }
  .desk-project-detail, .desk-honors-detail { grid-template-columns: 1fr; gap: 22px; }
  .desk-honors-groups { grid-template-columns: 1fr; gap: 12px; }
}

@media (min-width: 601px) and (max-width: 860px) {
  .landing-doodle-rail { width: 25px; opacity: .35; }
  .doodle-stream { height: 160%; padding: 30px 0; animation-duration: 90s; animation-play-state: paused; }
  .doodle-stream span:nth-child(n+5) { display: none; }
  .landing-main { grid-template-columns: 230px minmax(0, 1fr); gap: 30px; }
  .landing-portrait-wrap { width: 230px; }
  .landing-portrait-frame { width: 230px; height: 288px; }
  .landing-copy { width: 100%; min-width: 0; }
  .landing-copy h1 { font-size: clamp(42px, 6vw, 60px); }
}

@media (max-width: 560px) {
  .landing-doodle-rail { display: none; }
  .landing-portrait-wrap { width: 190px; }
  .landing-portrait-frame { width: 185px; height: 235px; }
  .landing-copy { width: 100%; min-width: 0; }
  .landing-copy h1 {
    width: max-content;
    max-width: 100%;
    margin-inline: auto;
    justify-content: center;
    text-align: center;
    font-size: clamp(34px, 10.5vw, 46px);
    overflow-wrap: normal;
    column-gap: 6px;
  }
  .landing-bottom { margin-top: 28px; }
  .video-section { margin-bottom: 18px; padding: 36px 15px 42px; }
  .video-section-head { grid-template-columns: 28px minmax(0, 1fr); gap: 10px; margin-bottom: 30px; }
  .video-section-head h2 { font-size: clamp(38px, 14vw, 56px); }
  .video-section-head small { margin-top: 8px; font-size: 9px; }
  .stamp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .stamp-card, .stamp-card:nth-child(n) { min-height: 164px; padding: 16px 12px; transform: none; }
  .stamp-card:last-child { grid-column: auto; width: auto; justify-self: stretch; }
  .stamp-card strong { font-size: 18px; }
  .stamp-card small { font-size: 9px; line-height: 1.55; }
  .video-experience .experience-index { grid-template-columns: 1fr; }
  .video-experience .experience-index button,
  .video-experience .experience-index button:nth-child(2) { min-height: 112px; border-right: 0; border-bottom: 1px solid rgba(245,237,222,.18); }
  .video-experience .experience-index button:last-child { border-bottom: 0; }
  .research-flow { min-height: 410px; }
  .research-flow .gradient-card { width: min(82%, 330px); height: min(62%, 270px); }
  .project-case { min-height: 0; grid-template-columns: 1fr; grid-template-rows: auto auto auto auto; padding: 19px 16px 18px; }
  .project-case-copy { grid-column: 1; grid-row: 2; }
  .project-case-art { grid-column: 1; grid-row: 3; justify-self: stretch; width: 100%; height: 176px; transform: rotate(0deg); }
  .project-case-arrow { grid-column: 1; grid-row: 4; }
  .project-case-copy strong { font-size: 43px; }
  .project-case-copy em { font-size: 17px; }
  .project-case-data { grid-template-columns: repeat(2, 1fr); }
  .project-case-data span:nth-child(2) { border-right: 0; }
  .project-case-data span:nth-child(-n+2) { border-bottom: 1px solid rgba(82,51,60,.16); }
  .project-side-stack { grid-template-columns: 1fr; grid-template-rows: auto; }
  .project-side-card { min-height: 150px; }
  .experience-caption { display: block; }
  .experience-caption p { margin-top: 7px; }
  .honors-wall { min-height: 390px; }
  .honors-wall-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); min-height: 350px; }
}

@media (max-width: 420px) {
  .stamp-grid { grid-template-columns: 1fr; }
  .stamp-card:last-child { grid-column: auto; width: 100%; }
  .landing-personality { gap: 6px; }
  .landing-personality span { padding-inline: 8px; }
}

/* Keep arrow language and keyboard focus consistent across every interactive surface. */
.site-header, .site-header .menu-toggle { pointer-events: auto; }
:where(a, button, input):focus-visible { outline: 2px solid #a94d59 !important; outline-offset: 3px; }
.landing-actions button span, .landing-bottom a span, .video-section-link span,
.experience-index i, .project-case-arrow, .project-side-card i, .honors-open { font-family: var(--sans); }
.desk-modal-panel h2, .desk-detail-copy h2, .project-story h3, .desk-experience-list h3 { font-family: var(--serif); }
.project-story { display: grid; gap: 18px; margin-top: 24px; }
.project-story article { padding-top: 15px; border-top: 1px solid rgba(42,39,32,.18); }
.project-story article > span { color: #a44531; font: 9px/1 var(--sans); letter-spacing: .14em; }
.project-story h3 { margin: 9px 0 5px; color: #2b2a25; font: 22px/1.3 var(--serif); font-weight: 400; }
.project-story p { margin: 0 0 6px; }
.project-reflection { margin: 27px 0 0 !important; padding-top: 20px; border-top: 1px solid rgba(42,39,32,.2); }

@media (prefers-reduced-motion: reduce) {
  .landing-doodle-rail, .doodle-stream, .landing-caret, .landing-scroll, .landing-petal, .landing-mini-sticker,
  .sakura-petal, .video-section, .stamp-card, .experience-index button, .project-case, .project-side-card,
  .product-chip, .honor-tile, .gradient-loader span::after { animation: none !important; }
  *, *::before, *::after { transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
