@charset "UTF-8";
:root {
  --ink: #101118;
  --small-text-scale: 1.1;
  --surface: #191b25;
  --text: #f2eff8;
  --muted: #aaa9bb;
  --accent: #c0afe8;
  --line: #ffffff1c;
  --glass: #21222dd9;
  --radius: 20px;
  --space: clamp(24px, 4.5vw, 80px);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --fast: 260ms;
  --slow: 560ms;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--ink);
  color-scheme: dark;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  font-size: calc(16px * var(--small-text-scale));
  overflow-wrap: break-word;
  background: radial-gradient(ellipse at 80% 8%, #51416720, transparent 35%), var(--ink);
}
body.modal-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button:focus-visible,
a:focus-visible {
  outline: 2px solid #e1d3ff;
  outline-offset: 6px;
}
main:focus {
  outline: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
picture {
  display: block;
}
[hidden] {
  display: none !important;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 400;
}
em {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  color: var(--accent);
}
.wrap {
  width: min(100% - var(--space) * 2, 1440px);
  margin-inline: auto;
}
.eyebrow {
  font-size: calc(10px * var(--small-text-scale));
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--muted);
}
.small-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin: 0 8px 1px 0;
  box-shadow: 0 0 15px #a997de66;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  padding: 15px 22px;
  color: #111;
  background: #eee6ff;
  transform: translateY(-200%);
  border-radius: 8px;
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 10;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
}
.monogram {
  font-size: 44px;
  letter-spacing: -0.13em;
  font-weight: 500;
  line-height: 1;
  padding-right: 3px;
}
.monogram > span {
  color: var(--accent);
}
.wordmark-name {
  font-size: calc(13px * var(--small-text-scale));
  letter-spacing: 0.015em;
}
.wordmark-name > span {
  display: block;
  color: var(--muted);
  font-size: calc(8px * var(--small-text-scale));
  letter-spacing: 0.22em;
  margin-top: 7px;
}
.glass-nav {
  display: flex;
  gap: 4px;
  padding: 5px;
  background: linear-gradient(130deg, #ffffff10, #ffffff04);
  border: 1px solid #ffffff20;
  border-top-color: #ffffff36;
  border-radius: 40px;
  box-shadow:
    0 8px 35px #0002,
    inset 0 1px #ffffff08;
  backdrop-filter: blur(14px);
}
.glass-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  min-height: 44px;
  border-radius: 30px;
  color: #dbd7e6;
  font-size: calc(12px * var(--small-text-scale));
  transition:
    color var(--fast),
    background var(--fast);
}
.glass-nav a:hover,
.glass-nav a:focus-visible {
  background: #ffffff0d;
  color: #fff;
}
.edition {
  font-size: calc(8px * var(--small-text-scale));
  line-height: 1.9;
  letter-spacing: 0.14em;
  text-align: right;
  color: var(--muted);
}
.edition > span {
  color: var(--text);
}
.hero {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 30px;
  padding-top: 22px;
  padding-bottom: 58px;
  min-height: min(810px, 87svh);
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding: 30px 0;
}
.hero h1 {
  font-size: clamp(56px, 6.15vw, 100px);
  line-height: 1.05;
  letter-spacing: -0.062em;
  margin: 29px 0 28px;
}
.hero h1 em {
  display: inline-block;
  letter-spacing: -0.065em;
}
.hero-intro {
  font-size: calc(14px * var(--small-text-scale));
  line-height: 1.85;
  max-width: 330px;
  color: var(--muted);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  min-height: 50px;
  padding: 15px 23px;
  border-radius: 30px;
  font-size: calc(12px * var(--small-text-scale));
  transition:
    background var(--fast),
    transform var(--fast);
}
.button-light {
  color: #201d2c;
  background: #ebe5f4;
}
.hero .button {
  margin-top: 30px;
}
.hero-footnote {
  margin-top: 66px;
  font-size: calc(8px * var(--small-text-scale));
  letter-spacing: 0.18em;
  line-height: 1.9;
  color: #9290a4;
  display: grid;
  gap: 3px;
}
.hero-art {
  position: relative;
  min-width: 0;
  border-radius: 150px 22px 22px 22px;
  overflow: hidden;
  background: #454145;
  isolation: isolate;
}
.hero-art::after {
  content: '';
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #15131dbd, transparent 28%, transparent 85%, #15131d44);
  box-shadow: inset 0 0 0 1px #ffffff17;
  border-radius: inherit;
}
.hero-art picture {
  aspect-ratio: 0.98;
}
.hero-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 20px 0 96px;
  background: #111;
  transition: transform 1000ms var(--ease);
}
.featured-label {
  position: absolute;
  z-index: 1;
  top: 30px;
  right: 28px;
  font-size: calc(8px * var(--small-text-scale));
  line-height: 1.7;
  letter-spacing: 0.18em;
  color: #fff;
  text-align: right;
  text-shadow: 0 1px 6px #000;
}
.featured-label > span {
  display: block;
  opacity: 0.75;
  margin-top: 5px;
}
.hero-art-caption {
  position: absolute;
  z-index: 1;
  bottom: 24px;
  left: 26px;
  right: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  border: 1px solid #ffffff29;
  border-radius: 14px;
  background: #17171ebf;
  backdrop-filter: blur(12px);
}
.hero-art-caption .eyebrow {
  font-size: calc(8px * var(--small-text-scale));
  color: #d6cee2;
}
.hero-art-caption strong {
  display: block;
  font-size: 20px;
  font-weight: 400;
  margin-top: 5px;
}
.round-arrow {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  border: 1px solid #ffffff33;
  font-size: 20px;
}
.discipline-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  border-block: 1px solid var(--line);
  color: #9996a9;
  font-size: calc(9px * var(--small-text-scale));
  letter-spacing: 0.18em;
}
.discipline-strip [aria-hidden] {
  font-size: 17px;
  color: var(--accent);
}
.work-section {
  padding-top: 114px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 55px;
}
.section-heading h2 {
  font-size: clamp(44px, 4.7vw, 72px);
  line-height: 1.15;
  letter-spacing: -0.05em;
  margin-top: 18px;
}
.section-heading sup {
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: calc(11px * var(--small-text-scale));
  letter-spacing: 0;
  vertical-align: top;
  color: var(--muted);
  margin: 10px 0 0 14px;
}
.section-heading > p {
  color: var(--muted);
  font-size: calc(12px * var(--small-text-scale));
  line-height: 1.8;
  padding-bottom: 8px;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 72px 38px;
  align-items: start;
}
.work-card {
  grid-column: span 5;
  min-width: 0;
  display: block;
}
.work-card:nth-child(4n + 1),
.work-card:nth-child(4n) {
  grid-column: span 7;
}
.work-card:nth-child(even) {
  margin-top: 90px;
}
.work-card:last-child {
  grid-column: span 8;
}
.card-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #23222b;
  isolation: isolate;
}
.card-image picture {
  aspect-ratio: 1.22;
}
.work-card:nth-child(4n + 1) .card-image picture,
.work-card:nth-child(4n) .card-image picture {
  aspect-ratio: 1.37;
}
.card-blue-archive .card-image picture {
  aspect-ratio: 1.7 !important;
}
.card-image picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform var(--slow) var(--ease),
    filter var(--slow);
}
.card-soldier img,
.card-ornamental-sculpture img {
  object-fit: contain;
}
.card-soldier .card-image {
  background: #3b393b;
}
.card-ornamental-sculpture .card-image {
  background: #111;
}
.card-knife img {
  object-position: 45% center;
}
.card-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 2px 0;
  gap: 20px;
}
.card-category {
  font-size: calc(9px * var(--small-text-scale));
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
.card-caption h3 {
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.025em;
  margin-top: 8px;
}
.card-number {
  font-size: calc(10px * var(--small-text-scale));
  color: var(--muted);
  align-self: flex-start;
  padding-top: 2px;
}
.card-arrow {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #171720cc;
  border: 1px solid #ffffff26;
  color: #f3edff;
}
.card-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  gap: 12px;
  padding: 18px;
  background: var(--glass);
  border: 1px solid #ffffff29;
  backdrop-filter: blur(12px);
  border-radius: 12px;
  font-size: calc(10px * var(--small-text-scale));
  line-height: 1.6;
}
.card-overlay > span:first-child {
  color: #d8d0e7;
}
.view-project {
  display: flex;
  justify-content: space-between;
  font-size: calc(12px * var(--small-text-scale));
}
@media (hover: hover) and (pointer: fine) {
  .card-overlay {
    opacity: 0;
    transform: translateY(10px);
    transition:
      opacity var(--fast),
      transform var(--fast);
  }
  .work-card:hover .card-overlay,
  .work-card:focus-visible .card-overlay {
    opacity: 1;
    transform: translateY(0);
  }
}
.about-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-top: 130px;
  padding-top: 80px;
  padding-bottom: 90px;
  border-top: 1px solid var(--line);
}
.about-portrait {
  max-width: 480px;
  margin-top: 24px;
}
.about-photo {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.about-photo img {
  display: block;
  width: 100%;
  height: auto;
}
.about-symbol {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  opacity: 0.9;
  font-size: clamp(128px, 16vw, 224px);
  text-align: center;
  font-weight: 500;
  letter-spacing: -0.16em;
  color: #2a2936;
  line-height: 1.2;
  display: block;
}
.about-symbol > span {
  color: #51465e;
}
.about-label,
.about-copy {
  position: relative;
  z-index: 1;
}
.about-copy h2 {
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1.18;
  margin: 0 0 30px;
}
.about-copy > p {
  font-size: calc(15px * var(--small-text-scale));
  line-height: 1.85;
  color: var(--muted);
  max-width: 550px;
  margin-bottom: 20px;
}
.toolbox {
  margin-top: 35px;
}
.toolbox h3 {
  font-size: calc(9px * var(--small-text-scale));
  letter-spacing: 0.15em;
  color: var(--muted);
}
.toolbox ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.toolbox li {
  padding: 10px 15px;
  font-size: calc(11px * var(--small-text-scale));
  color: #d7d1e4;
  border: 1px solid var(--line);
  border-radius: 30px;
}
.contact-section {
  position: relative;
  text-align: center;
  padding: 80px 20px 90px;
  border-block: 1px solid var(--line);
  background: radial-gradient(ellipse at center, #54406724, transparent 66%);
}
.contact-section h2 {
  font-size: clamp(48px, 6.3vw, 90px);
  line-height: 1.1;
  letter-spacing: -0.05em;
  margin: 24px 0 30px;
}
.contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 10px 0;
  font-size: clamp(17px, 2vw, 26px);
  min-height: 44px;
  border-bottom: 1px solid #766685;
}
.contact-link:hover {
  color: var(--accent);
}
.contact-section > p:last-child {
  color: var(--muted);
  font-size: calc(12px * var(--small-text-scale));
  margin-top: 20px;
}
.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 140px;
  padding-block: 35px;
}
.footer-name {
  font-size: calc(14px * var(--small-text-scale));
  line-height: 1.5;
}
.footer-name > span {
  display: block;
  font-size: calc(10px * var(--small-text-scale));
  color: var(--muted);
  margin-top: 8px;
}
.site-footer > p {
  font-size: calc(10px * var(--small-text-scale));
  color: var(--muted);
}
.back-top {
  font-size: calc(11px * var(--small-text-scale));
  display: flex;
  align-items: center;
  gap: 25px;
  min-height: 44px;
}
.project-heading {
  padding: 35px 0 65px;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  color: var(--muted);
  font-size: calc(12px * var(--small-text-scale));
  margin-bottom: 52px;
}
.breadcrumb:hover {
  color: var(--text);
}
.project-heading h1 {
  font-size: clamp(44px, 6.6vw, 96px);
  letter-spacing: -0.045em;
  line-height: 1.1;
  margin-top: 16px;
  max-width: 1000px;
}
.project-introduction {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  margin-top: 36px;
}
.project-introduction > p {
  font-size: calc(15px * var(--small-text-scale));
  color: var(--muted);
  line-height: 1.8;
  max-width: 500px;
}
.project-meta {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 25px;
}
.project-meta dt {
  font-size: calc(9px * var(--small-text-scale));
  color: #9693a7;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}
.project-meta dd {
  margin: 0;
  font-size: calc(12px * var(--small-text-scale));
  line-height: 1.8;
}
.software-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  min-width: 0;
}
.tool-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  max-width: 100%;
  line-height: 1.65;
  vertical-align: middle;
}
.tool-tag .tool-icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.tool-icon-light {
  background: #e7e5eb;
  border-radius: 3px;
  padding: 2px;
}
.tool-name {
  min-width: 0;
  overflow-wrap: anywhere;
}
.project-gallery {
  max-width: 1320px;
}
.artwork-figure {
  width: 90%;
  margin: 0 auto 50px;
}
.artwork-figure > a {
  display: block;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #1a1a20;
}
.artwork-figure picture img {
  width: 100%;
  height: auto;
}
.enlarge-hint {
  position: absolute;
  bottom: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 22px;
  background: #171720dd;
  border: 1px solid #ffffff29;
  border-radius: 30px;
  padding: 13px 18px;
  font-size: calc(11px * var(--small-text-scale));
}
.artwork-figure figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: calc(10px * var(--small-text-scale));
  line-height: 1.6;
  margin-top: 16px;
}
.next-project {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  padding-block: 65px;
  margin-top: 80px;
  border-block: 1px solid var(--line);
}
.next-project strong {
  display: block;
  font-size: clamp(30px, 4.3vw, 60px);
  font-weight: 400;
  margin-top: 18px;
  letter-spacing: -0.03em;
}
.next-project-arrow {
  font-size: 60px;
  color: var(--accent);
  transition: transform var(--fast);
}
.lightbox {
  position: fixed;
  inset: 0;
  width: min(1500px, 96vw);
  height: min(1100px, 94dvh);
  max-width: 96vw;
  max-height: 94dvh;
  margin: auto;
  border: 1px solid #ffffff25;
  border-radius: 16px;
  color: var(--text);
  background: #111218;
  padding: 0;
  overflow: hidden;
}
.lightbox::backdrop {
  background: #06070beb;
  backdrop-filter: blur(8px);
}
.lightbox-shell {
  height: 100%;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}
.lightbox-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  border-bottom: 1px solid var(--line);
  gap: 15px;
}
.lightbox-bar h2 {
  font-size: calc(12px * var(--small-text-scale));
  color: var(--muted);
}
.lightbox-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lightbox button,
.lightbox-original {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid #ffffff28;
  border-radius: 24px;
  background: #252530;
  padding: 10px 16px;
  font-size: calc(12px * var(--small-text-scale));
}
.lightbox button:focus-visible,
.lightbox-original:focus-visible {
  outline-offset: 2px;
}
.lightbox-stage {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 14px 64px;
}
.lightbox-stage img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
.viewer-prev,
.viewer-next {
  position: absolute;
  top: calc(50% - 22px);
  z-index: 1;
}
.viewer-prev {
  left: 10px;
}
.viewer-next {
  right: 10px;
}
.lightbox-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 16px 22px;
  font-size: calc(12px * var(--small-text-scale));
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.not-found {
  min-height: 70vh;
  padding-block: 90px;
}
.not-found h1 {
  font-size: clamp(48px, 7vw, 100px);
  line-height: 1.05;
  margin-block: 20px;
  letter-spacing: -0.04em;
}
.not-found > p {
  color: var(--muted);
}
.not-found .button {
  margin-top: 30px;
}
@media (max-width: 1100px) {
  .edition {
    display: none;
  }
  .hero {
    gap: 18px;
    min-height: auto;
    padding-top: 35px;
  }
  .hero h1 {
    font-size: clamp(48px, 6.3vw, 68px);
  }
  .hero-footnote {
    margin-top: 38px;
  }
  .hero-art {
    border-top-left-radius: 100px;
  }
  .hero-art picture {
    aspect-ratio: 0.8;
  }
  .hero-art-caption {
    left: 15px;
    right: 15px;
    bottom: 15px;
    padding: 14px;
  }
  .hero-art-caption strong {
    font-size: 17px;
  }
  .work-grid {
    gap: 55px 25px;
  }
  .work-card:nth-child(even) {
    margin-top: 60px;
  }
  .project-introduction {
    gap: 35px;
  }
  .project-meta {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
@media (max-width: 760px) {
  :root {
    --space: 24px;
    --radius: 15px;
  }
  .site-header {
    min-height: 96px;
    gap: 18px;
  }
  .wordmark-name {
    display: none;
  }
  .glass-nav a {
    padding-inline: 16px;
    font-size: calc(11px * var(--small-text-scale));
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 10px;
    padding-bottom: 36px;
  }
  .hero-copy {
    padding: 15px 0 0;
  }
  .hero h1 {
    font-size: clamp(53px, 10vw, 78px);
    margin-block: 22px;
  }
  .hero-intro {
    max-width: 410px;
    font-size: calc(13px * var(--small-text-scale));
  }
  .hero .button {
    margin-top: 24px;
  }
  .hero-footnote {
    display: none;
  }
  .hero-art {
    border-top-left-radius: 100px;
  }
  .hero-art picture {
    aspect-ratio: 1.05;
  }
  .featured-label {
    top: 20px;
    right: 20px;
  }
  .hero-art-caption {
    bottom: 16px;
    left: 16px;
    right: 16px;
  }
  .discipline-strip {
    flex-wrap: wrap;
    justify-content: center;
    font-size: calc(8px * var(--small-text-scale));
    column-gap: 14px;
    row-gap: 14px;
    padding-block: 22px;
    line-height: 1.6;
  }
  .discipline-strip > span:last-child,
  .discipline-strip > span:nth-last-child(2) {
    display: none;
  }
  .work-section {
    padding-top: 65px;
  }
  .section-heading {
    margin-bottom: 34px;
  }
  .section-heading > p {
    display: none;
  }
  .section-heading h2 {
    font-size: 46px;
    margin-top: 13px;
  }
  .work-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 22px;
  }
  .work-card,
  .work-card:nth-child(4n + 1),
  .work-card:nth-child(4n),
  .work-card:last-child {
    grid-column: span 1;
  }
  .work-card:nth-child(even) {
    margin-top: 35px;
  }
  .card-caption {
    padding-top: 16px;
    gap: 12px;
  }
  .card-caption h3 {
    font-size: 21px;
  }
  .card-category {
    font-size: calc(8px * var(--small-text-scale));
  }
  .card-overlay {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 12px;
  }
  .card-overlay > span:first-child {
    display: none;
  }
  .card-arrow {
    display: none;
  }
  .about-section {
    margin-top: 75px;
    padding-block: 55px;
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .about-portrait {
    margin-top: 88px;
    margin-inline: auto;
  }
  .about-copy h2 {
    font-size: 40px;
  }
  .about-copy > p {
    font-size: calc(14px * var(--small-text-scale));
  }
  .contact-section {
    padding-block: 60px;
  }
  .site-footer {
    flex-wrap: wrap;
    padding-block: 30px;
    row-gap: 28px;
  }
  .site-footer > p {
    order: 3;
    width: 100%;
  }
  .project-heading {
    padding-block: 10px 38px;
  }
  .breadcrumb {
    margin-bottom: 28px;
    font-size: calc(11px * var(--small-text-scale));
  }
  .project-heading h1 {
    font-size: clamp(42px, 8vw, 70px);
  }
  .project-introduction {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 25px;
  }
  .project-introduction > p {
    font-size: calc(14px * var(--small-text-scale));
  }
  .project-meta {
    grid-template-columns: 1fr 1.5fr;
    gap: 20px;
  }
  .project-meta dt {
    margin-bottom: 8px;
  }
  .project-meta dd {
    font-size: calc(11px * var(--small-text-scale));
  }
  .artwork-figure {
    margin-bottom: 30px;
  }
  .artwork-figure figcaption {
    font-size: calc(9px * var(--small-text-scale));
  }
  .artwork-figure figcaption > span:last-child {
    display: none;
  }
  .enlarge-hint {
    font-size: calc(9px * var(--small-text-scale));
    padding: 10px 13px;
    right: 12px;
    bottom: 12px;
  }
  .next-project {
    padding-block: 42px;
    margin-top: 55px;
  }
  .next-project-arrow {
    font-size: 42px;
  }
  .lightbox {
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
  }
  .lightbox-stage {
    padding: 8px;
  }
  .lightbox-stage button {
    top: auto;
    bottom: 12px;
    background: #252530ee;
  }
  .lightbox-footer {
    padding: 17px;
    font-size: calc(11px * var(--small-text-scale));
  }
}
@media (max-width: 540px) {
  .work-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .work-card:nth-child(even) {
    margin-top: 0;
  }
  .card-image picture,
  .work-card:nth-child(4n + 1) .card-image picture,
  .work-card:nth-child(4n) .card-image picture {
    aspect-ratio: 1.22;
  }
  .card-overlay {
    left: auto;
    min-width: 128px;
  }
  .card-caption h3 {
    font-size: 23px;
  }
  .card-category {
    font-size: calc(9px * var(--small-text-scale));
  }
  .card-number {
    padding-top: 4px;
  }
}
@media (max-width: 360px) {
  :root {
    --space: 18px;
  }
  .glass-nav a {
    padding-inline: 12px;
  }
  .glass-nav a > span {
    display: none;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero-art-caption strong {
    font-size: calc(15px * var(--small-text-scale));
  }
  .round-arrow {
    width: 32px;
    height: 32px;
  }
  .discipline-strip {
    letter-spacing: 0.08em;
    column-gap: 9px;
  }
  .contact-section {
    padding-inline: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Blog: a journal within the portfolio's existing visual language. */
.glass-nav a[aria-current='page'] {
  color: var(--text);
  background: #ffffff10;
}
.home-blog {
  padding-block: 75px 100px;
  border-top: 1px solid var(--line);
}
.blog-all {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  min-height: 44px;
  font-size: calc(12px * var(--small-text-scale));
  color: var(--text);
}
.blog-all:hover {
  color: var(--accent);
}
.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.blog-preview-grid .blog-card:nth-child(2) {
  margin-top: 30px;
}
.blog-card {
  display: block;
  min-width: 0;
  align-self: start;
}
.blog-card-image {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #191b25;
}
.blog-card-image picture,
.blog-card-image img {
  display: block;
  width: 100%;
  height: auto;
}
.blog-card-image img {
  transition: filter 500ms var(--ease);
}
.blog-card-arrow {
  position: absolute;
  right: 16px;
  top: 16px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #101118e6;
  color: var(--text);
  border: 1px solid #ffffff26;
  transition: transform var(--fast);
}
.blog-card-copy {
  padding-top: 24px;
}
.blog-card-label {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}
.blog-card-label .eyebrow {
  font-size: calc(9px * var(--small-text-scale));
  color: var(--accent);
  margin: 0;
}
.blog-number {
  font-size: calc(10px * var(--small-text-scale));
  color: var(--muted);
}
.blog-card h2,
.blog-card h3 {
  margin: 12px 0;
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.22;
  letter-spacing: -0.035em;
  font-weight: 400;
  transition: color var(--fast);
}
.blog-card:hover h2,
.blog-card:hover h3 {
  color: var(--accent);
}
.blog-card-summary {
  margin: 0;
  max-width: 48ch;
  font-size: calc(14px * var(--small-text-scale));
  line-height: 1.8;
  color: var(--muted);
}
.blog-preview-grid .blog-card-summary {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-read {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 20px;
  color: var(--text);
  font-size: calc(11px * var(--small-text-scale));
}
.blog-heading {
  padding-block: 15px 65px;
}
.blog-heading .breadcrumb {
  margin-bottom: 48px;
}
.blog-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}
.blog-title-row h1 {
  margin: 15px 0 0;
  font-size: clamp(50px, 6.8vw, 104px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1.05;
}
.blog-title-row > p {
  color: var(--muted);
  font-size: calc(14px * var(--small-text-scale));
  line-height: 1.8;
  margin: 0 0 6px;
  flex-shrink: 0;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 70px 45px;
}
.blog-grid > .blog-card {
  grid-column: span 6;
}
.blog-grid > .blog-card:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  align-items: center;
  gap: 55px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.blog-grid > .blog-card:first-child .blog-card-copy {
  padding-top: 0;
}
.blog-grid > .blog-card:first-child h2 {
  font-size: clamp(30px, 3.8vw, 52px);
}
.blog-grid > .blog-card:nth-child(3) {
  margin-top: 65px;
}
.blog-grid > .blog-card:nth-child(4) {
  grid-column: span 7;
}
.blog-grid > .blog-card:nth-child(5) {
  grid-column: span 5;
  margin-top: 90px;
}
.blog-index-end {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 85px;
  padding-block: 35px 55px;
  border-top: 1px solid var(--line);
}
.article-heading {
  max-width: 1040px;
  padding-block: 15px 45px;
}
.article-heading .breadcrumb {
  margin-bottom: 42px;
}
.article-heading h1 {
  max-width: 1000px;
  margin: 18px 0 26px;
  font-size: clamp(42px, 5.5vw, 78px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.045em;
  text-wrap: balance;
}
.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: calc(11px * var(--small-text-scale));
  line-height: 1.8;
  margin: 0;
}
.article-body {
  max-width: 1040px;
}
.article-body > p {
  max-width: 720px;
  margin: 0 auto 30px;
  font-size: 18px;
  line-height: 1.95;
  color: #d1ccd9;
  white-space: pre-line;
}
.article-image {
  margin: 44px 0 52px;
}
.article-image:first-child {
  margin-top: 0;
}
.article-image > a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #191b25;
}
.article-image picture,
.article-image img {
  display: block;
  width: 100%;
  height: auto;
}
.article-image figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-top: 14px;
  font-size: calc(10px * var(--small-text-scale));
  line-height: 1.7;
  color: var(--muted);
}
.article-end {
  max-width: 1040px;
  margin-top: 80px;
  padding-block: 38px 65px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}
.article-end > .blog-all {
  flex-shrink: 0;
}
.article-next {
  max-width: 520px;
  text-align: right;
}
.article-next .eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
}
.article-next strong {
  font-size: clamp(21px, 2.8vw, 32px);
  font-weight: 400;
  line-height: 1.25;
}
.article-next:hover strong {
  color: var(--accent);
}
@media (max-width: 1000px) {
  .blog-preview-grid {
    gap: 20px;
  }
  .blog-title-row {
    display: block;
  }
  .blog-title-row > p {
    margin-top: 25px;
  }
  .blog-grid {
    gap: 50px 28px;
  }
  .blog-grid > .blog-card:first-child {
    gap: 30px;
  }
}
@media (max-width: 760px) {
  .home-blog {
    padding-block: 50px 65px;
  }
  .home-blog .section-heading {
    flex-wrap: wrap;
    align-items: start;
    gap: 16px;
  }
  .home-blog .section-heading h2 {
    font-size: 42px;
  }
  .blog-heading {
    padding-block: 10px 45px;
  }
  .blog-heading .breadcrumb {
    margin-bottom: 30px;
  }
  .blog-title-row h1 {
    font-size: clamp(46px, 9vw, 65px);
  }
  .blog-grid {
    display: block;
  }
  .blog-grid > .blog-card,
  .blog-grid > .blog-card:first-child {
    display: block;
    padding: 0;
    margin: 0 0 48px;
    border: 0;
  }
  .blog-grid > .blog-card:first-child .blog-card-copy {
    padding-top: 24px;
  }
  .blog-grid > .blog-card:first-child h2 {
    font-size: 30px;
  }
  .blog-index-end {
    margin-top: 55px;
  }
  .article-heading {
    padding-block: 10px 32px;
  }
  .article-body > p {
    font-size: calc(15px * var(--small-text-scale));
    line-height: 1.9;
    margin-bottom: 25px;
  }
  .article-image {
    margin-block: 32px 38px;
  }
  .article-image .enlarge-hint {
    font-size: calc(9px * var(--small-text-scale));
  }
  .article-end {
    margin-top: 50px;
    padding-block: 28px 45px;
    gap: 25px;
  }
  .article-next {
    max-width: 65%;
  }
}
@media (max-width: 640px) {
  .blog-preview-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .blog-preview-grid .blog-card:nth-child(2) {
    margin-top: 0;
  }
}
@media (max-width: 540px) {
  .site-header {
    gap: 10px;
  }
  .glass-nav {
    gap: 0;
    padding: 4px;
  }
  .glass-nav a {
    min-width: 44px;
    padding-inline: 8px;
    gap: 6px;
  }
}

/* Keep language switching reachable at the viewport corner while browsing. */
.header-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.language-switch {
  position: fixed;
  right: calc(20px + env(safe-area-inset-right, 0px));
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  z-index: 20;
  box-shadow: 0 6px 24px #0006;
  backdrop-filter: blur(14px);
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid #ffffff25;
  border-radius: 50%;
  background: var(--glass);
  color: var(--accent);
  font-size: calc(12px * var(--small-text-scale));
  transition:
    color var(--fast),
    background var(--fast);
}
html:lang(zh) {
  font-family: 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
}
:lang(zh) h1,
:lang(zh) h2,
:lang(zh) h3,
:lang(zh) .hero h1 em {
  letter-spacing: 0;
  line-height: 1.3;
}
:lang(zh) em {
  font-family: 'Songti SC', 'Noto Serif CJK SC', SimSun, serif;
  font-style: normal;
}
:lang(zh) .eyebrow {
  letter-spacing: 0.12em;
}
:lang(zh) .article-body > p {
  line-height: 2;
}
@media (max-width: 640px) {
  .header-controls {
    gap: 6px;
  }
  .glass-nav {
    gap: 0;
    padding: 4px;
  }
  .glass-nav a {
    min-width: 44px;
    padding-inline: 8px;
    gap: 6px;
  }
  .language-switch {
    min-width: 44px;
    min-height: 44px;
    padding-inline: 8px;
  }
}
@media (max-width: 420px) {
  .site-header {
    flex-wrap: wrap;
    gap: 12px;
    padding-block: 20px;
  }
  .header-controls {
    flex: 1 0 100%;
    justify-content: space-between;
  }
  .glass-nav {
    flex: 1;
  }
  .glass-nav a {
    flex: 1;
    padding-inline: 5px;
    gap: 4px;
  }
  .glass-nav a:last-child > span {
    display: none;
  }
  :lang(zh) .hero h1 {
    font-size: clamp(46px, 12vw, 62px);
  }
  :lang(zh) .section-heading h2,
  :lang(zh) .about-copy h2 {
    font-size: 38px;
  }
}

/* Liquid glass: local surfaces, stable blur, and composited highlight layers. */
:root {
  --glass-base: #1d1c29e6;
  --glass-fill: linear-gradient(135deg, #bfa7ed12, #a393cc04 48%, #090a1229);
  --glass-edge: #d6c5ff29;
  --glass-shadow:
    inset 0 1px 0 #f0e8ff16, inset 0 -1px 0 #06071166, inset 1px 0 0 #d2beff08, 0 5px 16px #05060c24;
  --press: 150ms;
  --release: cubic-bezier(0.2, 0.8, 0.3, 1.15);
}

:is(.glass-nav, .hero-art-caption, .card-overlay, .enlarge-hint) {
  background: var(--glass-fill), var(--glass-base);
  border-color: var(--glass-edge);
  box-shadow: var(--glass-shadow);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.button,
.glass-nav a,
.language-switch,
.lightbox button,
.lightbox-original,
.round-arrow,
.card-arrow,
.blog-card-arrow,
.next-project-arrow {
  isolation: isolate;
  overflow: hidden;
  background: var(--glass-fill), var(--glass-base);
  color: var(--text);
  border-color: var(--glass-edge);
  box-shadow: var(--glass-shadow);
  transition:
    transform var(--fast) var(--release),
    color var(--fast) var(--ease),
    border-color var(--fast) var(--ease),
    box-shadow var(--fast) var(--ease);
}
:is(.button, .glass-nav a, .lightbox-original, .round-arrow, .next-project-arrow),
.lightbox button:not(.viewer-prev, .viewer-next) {
  position: relative;
}
:is(.button, .language-switch, .enlarge-hint, .round-arrow, .card-arrow, .blog-card-arrow) {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}
.glass-nav a {
  background: transparent;
  box-shadow: none;
}
.glass-nav a[aria-current='page'] {
  background: #c0afe810;
  box-shadow: inset 0 1px 0 #eee4ff0c;
}
.button {
  /* Inset strokes preserve the CTA's original dimensions. */
  box-shadow:
    inset 0 0 0 1px #d7bfff38,
    var(--glass-shadow);
  background: linear-gradient(125deg, #b79bd522, #67517812 65%, #10111924), #272231e8;
}
.language-switch {
  color: #d5c7ed;
  box-shadow:
    var(--glass-shadow),
    0 8px 22px #05060c38;
}
.next-project-arrow {
  border-radius: 50%;
}

/* The sheen stays behind the text and never intercepts a click. */
:is(
  .button,
  .glass-nav a,
  .language-switch,
  .lightbox button,
  .lightbox-original,
  .round-arrow,
  .card-arrow,
  .blog-card-arrow,
  .next-project-arrow
)::after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 12%,
    #e4d6ff14 42%,
    #d4c0fc08 56%,
    transparent 78%
  );
  opacity: 0;
  transform: translateX(-22%) scaleX(0.86);
  transition:
    opacity var(--fast) var(--ease),
    transform 520ms var(--ease);
}

:is(.button, .glass-nav a, .language-switch, .lightbox button, .lightbox-original):focus-visible {
  color: #fff;
  border-color: #e0ceff70;
  outline: 2px solid #e1d3ff;
}
:is(
    .button,
    .glass-nav a,
    .language-switch,
    .lightbox button,
    .lightbox-original
  ):focus-visible::after {
  opacity: 0.65;
  transform: none;
}
:is(
  .contact-link,
  .back-top,
  .breadcrumb,
  .blog-all,
  .article-next strong,
  .card-caption h3,
  .blog-card h2,
  .blog-card h3
) {
  transition: color var(--fast) var(--ease);
}
:is(.hero-art img, .card-image picture img, .blog-card-image img) {
  transition: transform 650ms var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .button:hover,
  .glass-nav a:hover,
  .language-switch:hover,
  .lightbox button:hover,
  .lightbox-original:hover {
    color: #fff;
    border-color: #dfccff52;
    transform: translateY(-1px);
    box-shadow:
      inset 0 1px 0 #f2e6ff28,
      inset 0 -1px 0 #09091366,
      0 7px 20px #05060c30;
  }
  .button:hover {
    box-shadow:
      inset 0 0 0 1px #decbff57,
      inset 0 1px 0 #f2e6ff22,
      0 7px 20px #05060c30;
  }
  :is(.button, .glass-nav a, .language-switch, .lightbox button, .lightbox-original):hover::after,
  :is(.hero-art, .work-card, .blog-card, .next-project):is(:hover, :focus-visible)
    :is(.round-arrow, .card-arrow, .blog-card-arrow, .next-project-arrow)::after {
    opacity: 1;
    transform: translateX(14%) scaleX(1);
  }
  :is(.hero-art, .work-card, .blog-card, .next-project):is(:hover, :focus-visible)
    :is(.round-arrow, .card-arrow, .blog-card-arrow, .next-project-arrow) {
    border-color: #dfccff52;
    transform: translate(1px, -1px);
  }
  :is(.hero-art, .work-card, .blog-card):hover :is(picture img) {
    transform: scale(1.012);
  }
  :is(.work-card, .blog-card):is(:hover, :focus-visible) :is(h2, h3) {
    color: #d0bee9;
  }
}

/* Held press and release use the same native link/button behavior on touch. */
:is(.button, .glass-nav a, .language-switch, .lightbox button, .lightbox-original):active {
  animation: none;
  transform: translateY(0) scale(0.98);
  transition-duration: var(--press);
  transition-timing-function: var(--ease);
  box-shadow:
    inset 0 0 0 1px #d7bfff40,
    inset 0 2px 5px #08091255;
}
:is(.hero-art, .work-card, .blog-card, .next-project):active
  :is(.round-arrow, .card-arrow, .blog-card-arrow, .next-project-arrow) {
  transform: scale(0.97);
  transition-duration: var(--press);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  :root {
    --glass-base: #211f2c;
  }
  .button {
    background-color: #292333;
  }
}

/* Entrance is progressive: artwork and all content are visible before JS runs.
   Card roots never move, keeping bilingual reading anchors stable. */
@media (prefers-reduced-motion: no-preference) {
  .has-entrance :is(.wordmark, .header-controls, .edition) {
    animation: arrive 460ms var(--ease) backwards;
  }
  .has-entrance
    :is(
      .hero-copy > .eyebrow,
      .project-heading > .eyebrow,
      .blog-heading > .eyebrow,
      .article-heading > .eyebrow,
      .not-found > .eyebrow
    ) {
    animation: entrance 520ms var(--ease) 40ms backwards;
  }
  .has-entrance
    :is(.hero h1, .project-heading h1, .blog-title-row h1, .article-heading h1, .not-found h1) {
    animation: entrance 560ms var(--ease) 75ms backwards;
  }
  .has-entrance :is(.hero-intro, .project-introduction, .blog-title-row > p, .article-byline) {
    animation: entrance 560ms var(--ease) 110ms backwards;
  }
  .has-entrance .hero-footnote {
    animation: arrive 560ms var(--ease) 160ms backwards;
  }
  .has-entrance .hero-art-caption {
    animation: arrive 560ms var(--ease) 120ms backwards;
  }
  .is-entering {
    animation: arrive 560ms var(--ease) var(--arrival-delay, 0ms) backwards;
  }
  .is-entering:nth-child(3n + 2) {
    --arrival-delay: 35ms;
  }
  .is-entering:nth-child(3n) {
    --arrival-delay: 70ms;
  }
  .is-entering :is(.card-image, .blog-card-image) {
    animation: entrance 560ms var(--ease) var(--arrival-delay, 0ms) backwards;
  }
  .is-entering:focus-within,
  .is-entering:focus-within :is(.card-image, .blog-card-image) {
    animation: none;
  }
}
@keyframes entrance {
  from {
    opacity: 0.55;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes arrive {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  :is(
    .button,
    .glass-nav a,
    .language-switch,
    .lightbox button,
    .lightbox-original,
    .round-arrow,
    .card-arrow,
    .blog-card-arrow,
    .next-project-arrow,
    .hero-art img,
    .card-image picture img,
    .blog-card-image img
  ) {
    transform: none !important;
  }
  :is(
    .button,
    .glass-nav a,
    .language-switch,
    .lightbox button,
    .lightbox-original,
    .round-arrow,
    .card-arrow,
    .blog-card-arrow,
    .next-project-arrow
  )::after {
    transform: none !important;
    opacity: 0 !important;
  }
}
