@font-face {
  font-family: "FZLanTingYuanGBK";
  src: local("FZLanTingYuanGBK SemiBold"), local("FZLanTingYuanGBK-SemiBold"),
    local("FZLanTingYuanGBK--S10"), local("FZLanTingYuanS-DB1-GB"),
    url("./assets/fonts/FZLanTingYuanGBK.ae32c5836a4b.woff2") format("woff2"),
    url("./assets/fonts/FZLanTingYuanGBK.a38b5b8e0418.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-main: "FZLanTingYuanGBK", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    sans-serif;
  --bg: #faf9f6;
  --paper: #faf9f6;
  --ink: #2f2621;
  --muted: #6d6259;
  --line: #d4cec6;
  --line-dark: #8f8174;
  --accent: #2ba7ff;
  --accent-soft: #d8efff;
  --peach: #e8f5ff;
  --sand: #efe8db;
  --sky: #e6edf4;
  --mint: #e6efe6;
  --yellow: #f5edd2;
  --max-width: 1040px;
  --page-gutter: 72px;
  --page-gutter-mobile: 28px;
  --border-strong: 3px;
  --border-bolder: 4px;
  --nav-ink-default: #b8b8b8;
  --nav-ink-active: #ffffff;
  --click-effect-color: #b9372e;
  --folder-line: #bfa992;
  --folder-line-soft: rgba(191, 169, 146, 0.34);
  --folder-wash: rgba(255, 248, 239, 0.9);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #faf9f6;
  color: var(--ink);
  font-family: var(--font-main);
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

.site-loading {
  --loading-progress: 0%;
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  display: grid;
  place-items: center;
  padding: 32px;
  background: #f8f7f4;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.62s ease, visibility 0.62s ease, transform 0.62s ease;
}

.site-loading[hidden] {
  display: none;
}

.site-loading.is-hiding {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.015);
}

.site-loading-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(100%, 520px);
  padding: 0;
  background: transparent;
  animation: loading-card-breathe 2.8s ease-in-out infinite;
}

.site-loading-avatar {
  width: clamp(124px, 20vw, 163px);
  height: clamp(175px, 28vw, 230px);
  margin-bottom: clamp(34px, 6vw, 56px);
}

.site-loading-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-loading-text {
  position: relative;
  margin: 0 0 clamp(42px, 6vw, 54px);
  color: #676767;
  font-size: clamp(1.54rem, 4.5vw, 2.08rem);
  font-weight: 600;
  line-height: 1.18;
  text-align: center;
}

.site-loading-track {
  position: relative;
  overflow: hidden;
  width: min(100%, 474px);
  height: 25px;
  border: 0;
  border-radius: 999px;
  background: #c7c7c7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.site-loading-bar {
  position: relative;
  display: block;
  width: var(--loading-progress);
  height: 100%;
  border-radius: inherit;
  background: #c53630;
  box-shadow: none;
  transition: width 0.32s cubic-bezier(0.2, 0.78, 0.28, 1);
}

.click-effect-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 2147483647;
}

.click-effect-burst {
  position: fixed;
  left: 0;
  top: 0;
  width: 72px;
  height: 72px;
  margin: -36px 0 0 -36px;
  color: var(--click-effect-color);
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.68);
  animation: click-burst-pop 0.56s cubic-bezier(0.18, 0.82, 0.24, 1) forwards;
}

.click-effect-burst svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.click-effect-burst path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  opacity: 0.95;
}

.copy-toast {
  position: fixed;
  left: 50%;
  bottom: clamp(28px, 6vh, 64px);
  z-index: 2147483647;
  padding: 10px 18px;
  border: 2px solid rgba(185, 55, 46, 0.18);
  border-radius: 999px;
  background: rgba(250, 249, 246, 0.94);
  color: var(--click-effect-color);
  font-size: 0.95rem;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(79, 52, 38, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 12px, 0) scale(0.96);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.copy-toast.is-visible {
  opacity: 1;
  transform: translate3d(-50%, 0, 0) scale(1);
}

@keyframes click-burst-pop {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.68);
  }

  18% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(1.18);
  }
}

@keyframes loading-card-breathe {
  0%,
  100% {
    transform: translateY(0) rotate(-1.4deg);
  }

  50% {
    transform: translateY(-8px) rotate(0.7deg);
  }
}

@keyframes loading-bar-shine {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-loading,
  .site-loading-card,
  .site-loading-bar {
    animation: none;
    transition: none;
  }

  .click-effect-layer,
  .click-effect-burst {
    display: none !important;
  }

  .copy-toast {
    transition: none;
  }

  .about.rabbit-playing .about-rabbit-scene,
  .about.rabbit-playing .about-rabbit,
  .about.rabbit-playing .about-rabbit-dust {
    animation: none;
  }
}

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

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

.page-shell {
  position: relative;
}

.page-shell::before,
.page-shell::after,
main::before,
main::after,
.about::before,
.about::after {
  content: none !important;
  display: none !important;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(calc(100% - var(--page-gutter)), var(--max-width));
  margin: 16px auto 0;
  padding: 20px 0;
}

.topbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 150%;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, rgba(250, 249, 246, 1) 0%, rgba(250, 249, 246, 1) 50%, rgba(250, 249, 246, 0) 100%);
  pointer-events: none;
  z-index: -1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: #4f3426;
  border-color: #4f3426;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6.4px;
  flex-wrap: wrap;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 113px;
  height: 40px;
  gap: 4px;
  padding: 0 9px;
  color: var(--nav-ink-default);
  background: center / 100% 100% no-repeat url("./assets/nav/tab-default.9aac4df70151.svg");
  transition: color 0.22s ease, transform 0.22s ease, background-image 0.22s ease;
}

.nav-link-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  object-fit: contain;
}

.nav-link-label {
  white-space: nowrap;
  line-height: 1;
}

.nav-link-about {
  width: 150px;
  background-image: url("./assets/nav/tab-wide-default.f9d540fe467d.svg");
}

.nav-link-home {
  padding-left: 5px;
  padding-right: 13px;
}

.nav-link-projects {
  margin-left: -2px;
  padding-left: 5px;
  padding-right: 13px;
  transform: translateX(6px);
}

.nav-link-about {
  margin-left: -5.8px;
  gap: 3px;
  padding-left: 0;
  padding-right: 12px;
}

.nav-link-about .nav-link-label {
  margin-left: -2px;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: var(--nav-ink-active);
  background-image: url("./assets/nav/tab-active.a7f29093f599.svg");
  transform: translateY(-1px);
}

.nav-link-projects:hover,
.nav-link-projects:focus-visible,
.nav-link-projects.active {
  transform: translate(6px, -1px);
}

.nav-link-about:hover,
.nav-link-about:focus-visible,
.nav-link-about.active {
  background-image: url("./assets/nav/tab-wide-active.76a4923daadc.svg");
}

.nav-link:hover .nav-link-icon,
.nav-link:focus-visible .nav-link-icon,
.nav-link.active .nav-link-icon {
  filter: brightness(0) invert(1);
}

.nav-link:focus-visible {
  outline: 3px dashed #b9372e;
  outline-offset: 4px;
}

.section {
  width: min(calc(100% - var(--page-gutter)), var(--max-width));
  margin: 0 auto;
  padding: 88px 0 36px;
  scroll-margin-top: 110px;
}

.hero {
  display: block;
  min-height: calc(100vh - 120px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: calc(100vh - 120px);
  padding-top: clamp(20px, 4vh, 44px);
}

.hero-layout {
  display: block;
  width: 100%;
}

.hero-intro {
  width: min(100%, 790px);
  margin: 0 auto;
}

.hero-welcome-stack {
  position: relative;
  width: 100%;
  padding-top: 279px;
}

.hero-welcome-frame {
  position: relative;
  width: 100%;
  transform: translateY(-10px) scale(1.125);
  transform-origin: top center;
}

.hero-emotion-switcher {
  position: absolute;
  top: 0;
  left: 50%;
  width: clamp(165px, 24.75vw, 224px);
  aspect-ratio: 163 / 230;
  transform: translateX(-50%);
  animation: hero-emotion-float 3.8s ease-in-out infinite;
  pointer-events: none;
}

.hero-emotion {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  animation: hero-emotion-cycle 9s steps(1, end) infinite;
}

.hero-emotion-1 {
  opacity: 1;
  animation-delay: 0s;
}

.hero-emotion-2 {
  animation-delay: -3s;
}

.hero-emotion-3 {
  animation-delay: -6s;
}

.hero-welcome-art {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}

.hero-pen-animation {
  position: absolute;
  right: 12%;
  bottom: -13%;
  width: min(75%, 540px);
  aspect-ratio: 720 / 300;
  border: 0;
  background: transparent;
  pointer-events: none;
}

.hero h1,
.section-head h2 {
  margin: 0;
  font-size: 64px;
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 600;
}

.projects-title-wrap {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
}

.projects-title-balance {
  position: absolute;
  left: clamp(-238px, -18vw, -176px);
  top: 50%;
  width: clamp(108px, 12vw, 162px);
  transform: translateY(-56%) rotate(-18deg);
  transform-origin: center center;
  pointer-events: none;
}

.projects-title-balance img {
  display: block;
  width: 100%;
  height: auto;
}

.projects {
  width: min(calc(100% - var(--page-gutter)), var(--max-width));
  max-width: var(--max-width);
  padding-top: 28px;
  padding-bottom: 20px;
  background: transparent;
  --projects-content-line-offset: 0px;
  --project-copy-mobile-max: 560px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.projects-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  align-items: center;
  column-gap: clamp(40px, 4.8vw, 92px);
  row-gap: clamp(256px, 14vw, 304px);
  padding: clamp(12px, 2vw, 24px) 0 clamp(48px, 4.5vw, 88px);
}

.project-panel {
  position: relative;
}

.project-panel-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(280px, 20vw, 440px);
  transition: transform 220ms ease;
}

.project-panel-cover:hover {
  transform: translateY(-4px);
}

.project-panel-cover::before,
.project-panel-cover::after {
  content: "";
  position: absolute;
  background: #e6dcd2;
  z-index: 0;
}

.project-action:focus-visible {
  outline: 3px solid rgba(185, 55, 46, 0.42);
  outline-offset: 6px;
}

.project-panel-cover img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 100%;
  line-height: 0;
  height: auto;
}

.project-panel-cover-qingyou {
  justify-content: flex-start;
  padding: 0;
}

.project-panel-cover-qingyou::before {
  display: none;
}

.project-panel-cover-qingyou img {
  width: min(90%, 793.8px);
  aspect-ratio: 882 / 867;
  object-fit: contain;
  transform: translate(var(--projects-content-line-offset), clamp(-34px, -2.2vw, -18px));
}

@media (min-width: 1500px) {
  .project-panel-cover-qingyou img {
    width: min(82%, 700px);
  }
}

@media (min-width: 1800px) {
  .project-panel-cover-qingyou img {
    width: min(74%, 600px);
  }
}

.project-panel-cover-emotion {
  justify-content: flex-end;
  padding: clamp(18px, 2vw, 30px) 0;
}

.project-panel-cover-emotion::before {
  display: none;
}

.project-panel-cover-emotion img {
  width: min(78%, 616px);
  max-width: 100%;
  margin-left: auto;
  transform: translateX(calc(var(--projects-content-line-offset) * -1));
}

@media (min-width: 861px) {
  .project-panel-cover-emotion img {
    width: min(78%, clamp(430px, 34.5vw, 520px));
  }
}

.project-panel-cover-xr {
  justify-content: flex-start;
  padding: clamp(18px, 2vw, 30px) 0;
  min-height: clamp(320px, 22vw, 500px);
}

.project-panel-cover-xr::before {
  display: none;
}

.project-panel-cover-xr::after {
  display: none;
}

.project-panel-cover-xr img {
  max-width: min(90%, 700px);
  transform: translateX(var(--projects-content-line-offset));
}

.project-panel-cover-work4 {
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
  padding: clamp(10px, 1.4vw, 20px) var(--projects-content-line-offset) clamp(10px, 1.4vw, 20px) 0;
  min-height: clamp(300px, 23vw, 460px);
}

.project-panel-cover-work4::before,
.project-panel-cover-work4::after {
  display: none;
}

.project-panel-cover-work4 img {
  width: min(110%, 946px);
  max-width: 100%;
  min-width: 0;
  height: auto;
  margin-left: auto;
}

@media (min-width: 861px) {
  .projects-showcase {
    align-items: stretch;
  }

  .project-panel-cover {
    --project-cover-visual-scale: 1.2;
    min-height: 0;
    height: 100%;
  }

  .project-panel-cover img {
    position: absolute;
    top: 50%;
    width: auto;
    height: calc(100% * var(--project-cover-visual-scale, 1));
    max-width: none;
    max-height: none;
    object-fit: contain;
  }

  .project-panel-cover-qingyou img,
  .project-panel-cover-xr img {
    left: 0;
    transform: translateY(var(--project-cover-y-translate, -50%));
  }

  .project-panel-cover-emotion img,
  .project-panel-cover-work4 img {
    right: 0;
    margin-left: 0;
    transform: translateY(var(--project-cover-y-translate, -50%));
  }

  .project-panel-cover-emotion {
    --project-cover-visual-scale: 1.6;
  }

  .project-panel-cover-qingyou {
    --project-cover-visual-scale: 2.024;
    --project-cover-y-translate: -54.44%;
  }

  .project-panel-cover-qingyou img {
    clip-path: inset(24.8% 0 15.9% 0);
  }
}

.project-panel-copy {
  color: var(--muted);
}

.project-panel-copy-qingyou,
.project-panel-copy-xr,
.project-panel-copy-emotion,
.project-panel-copy-work4 {
  display: flex;
  flex-direction: column;
  justify-self: stretch;
  width: 100%;
  max-width: none;
}

.project-panel-copy-qingyou,
.project-panel-copy-xr {
  align-items: flex-end;
  text-align: right;
}

.project-panel-copy-qingyou {
  padding-right: var(--projects-content-line-offset);
}

.project-panel-copy-qingyou h2,
.project-panel-copy-qingyou .project-subtitle,
.project-panel-copy-qingyou .project-description,
.project-panel-copy-qingyou .project-tags {
  width: 100%;
  max-width: 360px;
}

.project-panel-copy-qingyou .project-action {
  align-self: flex-end;
}

.project-panel-copy-xr {
  padding-right: var(--projects-content-line-offset);
}

.project-panel-copy-xr h2,
.project-panel-copy-xr .project-subtitle,
.project-panel-copy-xr .project-description,
.project-panel-copy-xr .project-tags {
  width: 100%;
  max-width: 360px;
}

.project-panel-copy-xr .project-action {
  align-self: flex-end;
}

.project-panel-copy-emotion,
.project-panel-copy-work4 {
  align-items: flex-start;
  padding-left: var(--projects-content-line-offset);
  text-align: left;
}

.project-panel-copy-emotion h2,
.project-panel-copy-emotion .project-subtitle,
.project-panel-copy-emotion .project-description,
.project-panel-copy-emotion .project-tags,
.project-panel-copy-work4 h2,
.project-panel-copy-work4 .project-subtitle,
.project-panel-copy-work4 .project-description,
.project-panel-copy-work4 .project-tags {
  width: 100%;
  max-width: 320px;
}

.project-panel-copy-emotion .project-action,
.project-panel-copy-work4 .project-action {
  align-self: flex-start;
}

.project-panel-copy h2 {
  margin: 0 0 17.6px;
  color: var(--ink);
  font-size: 3.036rem;
  font-weight: 800;
  line-height: 1;
}

.project-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 1.089rem;
  font-weight: 700;
  line-height: 1.35;
}

.project-description {
  margin: 27.5px 0 0;
  color: var(--muted);
  font-family: var(--font-main);
  font-size: 1.089rem;
  font-weight: 400;
  font-synthesis-weight: none;
  line-height: 1.65;
}

.project-action {
  display: inline-block;
  width: clamp(123.2px, 6.6vw, 145.2px);
  margin-top: 36.3px;
  text-decoration: none;
  line-height: 0;
  transition: transform 180ms ease;
}

.project-action-image {
  display: block;
  width: 100%;
  height: auto;
}

.project-action:hover {
  transform: translateY(-2px);
}

.hero-text,
.section-head p,
.about-intro p,
.hero-text {
  max-width: 560px;
  margin: 22px 0 0;
  font-size: 1.08rem;
}

.hero-tags,
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-tags > span,
.project-tags > span,
.tool-chip,
.panel-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border: var(--border-strong) solid var(--line);
  border-radius: 999px;
  background: var(--bg);
}

.project-tags > span {
  font-size: 17.71px;
}

.projects .project-tags {
  gap: 12px;
  margin-top: 15.4px;
}

.projects .project-tags > span {
  padding: 7.7px 15.4px;
}

.project-panel-copy-qingyou .project-tags,
.project-panel-copy-xr .project-tags {
  justify-content: flex-end;
}

.project-panel-copy-emotion .project-tags {
  justify-content: flex-start;
}

.project-panel-copy-work4 .project-tags {
  justify-content: flex-start;
}

.projects .project-tags > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 19px;
  border: 0;
  border-radius: 999px;
  background: #f0e9e2;
  color: #70636a;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  box-sizing: border-box;
}

.scribble {
  position: absolute;
  pointer-events: none;
}

.scribble-heart {
  top: -16px;
  right: 22px;
  width: 34px;
  height: 30px;
  border: var(--border-strong) solid var(--accent);
  border-radius: 60% 60% 50% 50%;
  border-bottom-color: transparent;
  border-left-color: transparent;
  transform: rotate(16deg);
}

.scribble-heart::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  right: -8px;
  top: 10px;
  border-right: var(--border-strong) solid var(--accent);
  border-bottom: var(--border-strong) solid var(--accent);
  transform: rotate(36deg);
}

.scribble-star {
  left: -10px;
  bottom: 22px;
  width: 28px;
  height: 28px;
}

.scribble-star::before,
.scribble-star::after {
  content: "";
  position: absolute;
  inset: 0;
  border: var(--border-strong) solid var(--accent);
  border-radius: 999px;
}

.scribble-star::before {
  transform: rotate(45deg) scale(0.28, 1);
}

.scribble-star::after {
  transform: rotate(0deg) scale(0.28, 1);
}

.note {
  position: absolute;
  padding: 10px 14px;
  max-width: 180px;
  border: var(--border-strong) solid var(--line);
  border-radius: 18px;
  color: var(--muted);
  background: var(--bg);
  line-height: 1.45;
}

.note-left {
  top: 126px;
  left: calc(50% - 246px);
  transform: rotate(-8deg);
}

.note-right {
  right: calc(50% - 250px);
  bottom: 38px;
  transform: rotate(8deg);
}

.section-head {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-head p {
  margin-top: 16px;
  font-size: 1.02rem;
}

.about-intro {
  display: flex;
  align-items: start;
  gap: 18px;
  margin-bottom: 30px;
}

.about {
  position: relative;
}

.about-rabbit-scene {
  --about-rabbit-shift-x: clamp(44px, 4vw, 68px);
  position: absolute;
  top: 54px;
  right: calc(50% - 50vw - var(--about-rabbit-shift-x));
  width: clamp(350px, 23vw, 470px);
  aspect-ratio: 335 / 310;
  max-width: none;
  pointer-events: none;
  transform-origin: 72% 87%;
}

.about-rabbit {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  user-select: none;
  transform-origin: 70% 86%;
}

.about-rabbit-dust {
  position: absolute;
  right: 31%;
  bottom: -4%;
  width: 12px;
  height: 12px;
  border: 3px solid #cacac9;
  border-radius: 50%;
  opacity: 0;
}

.about-rabbit-dust-2 {
  right: 22%;
  bottom: -1%;
  width: 8px;
  height: 8px;
}

.about.rabbit-playing .about-rabbit-scene {
  animation: about-rabbit-hop 1.34s cubic-bezier(0.22, 0.74, 0.24, 1) both;
}

.about.rabbit-playing .about-rabbit {
  animation: about-rabbit-body 1.34s linear both;
}

.about.rabbit-playing .about-rabbit-dust-1 {
  animation: about-rabbit-dust-left 0.45s 0.92s ease-out both;
}

.about.rabbit-playing .about-rabbit-dust-2 {
  animation: about-rabbit-dust-right 0.42s 0.96s ease-out both;
}

@keyframes about-rabbit-hop {
  0% {
    transform: translate3d(470px, 84px, 0) rotate(5deg);
  }
  12% {
    transform: translate3d(430px, 98px, 0) rotate(7deg);
  }
  24% {
    transform: translate3d(350px, 16px, 0) rotate(-4deg);
  }
  51% {
    transform: translate3d(124px, -116px, 0) rotate(-9deg);
  }
  72% {
    transform: translate3d(12px, -28px, 0) rotate(2deg);
  }
  79% {
    transform: translate3d(0, 8px, 0) rotate(0deg);
  }
  88% {
    transform: translate3d(0, -14px, 0) rotate(-1deg);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes about-rabbit-body {
  0%,
  8% {
    transform: scale(0.96, 1.04);
  }
  12% {
    transform: scale(1.08, 0.88);
  }
  25% {
    transform: scale(0.92, 1.08);
  }
  58% {
    transform: scale(1.02, 0.98);
  }
  78% {
    transform: scale(1.1, 0.86);
  }
  89% {
    transform: scale(0.97, 1.04);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes about-rabbit-dust-left {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.45);
  }
  25% {
    opacity: 0.62;
  }
  100% {
    opacity: 0;
    transform: translate3d(-54px, -22px, 0) scale(1.4);
  }
}

@keyframes about-rabbit-dust-right {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.45);
  }
  25% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translate3d(38px, -18px, 0) scale(1.25);
  }
}

.routine-app-cloud {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.about-index {
  display: none;
}

.placeholder-row,
.placeholder-grid {
  display: grid;
  gap: 16px;
}

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

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

.memory-shot {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 18px;
  border: var(--border-strong) solid var(--line);
  border-radius: 24px;
  color: var(--line-dark);
  background: var(--bg);
  transform: rotate(calc(var(--angle, 0) * 1deg));
}

.polaroid-shot {
  align-content: center;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: 0 10px 22px rgba(47, 38, 33, 0.12);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.polaroid-shot:hover {
  box-shadow: 0 22px 42px rgba(47, 38, 33, 0.2);
}

.polaroid-shot img {
  width: 100%;
  height: auto;
  border-radius: inherit;
}

.about-stack {
  display: grid;
  gap: 92px;
}

.about-card {
  display: grid;
  justify-items: start;
  padding: 0;
  border: none;
  background: transparent;
}

.about-gallery {
  display: grid;
  gap: 30px;
}

.about-gallery-kitchen {
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
}

.about-gallery-minimalism {
  width: 100%;
  gap: 28px;
}

.about-gallery-minimalism-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
}

.minimalism-item {
  display: block;
  width: auto;
  max-width: none;
  height: auto;
  flex: 0 0 auto;
  transform-origin: center center;
  transition: transform 0.28s ease, filter 0.28s ease;
  will-change: transform;
}

.about-gallery-minimalism-row:nth-child(1) .minimalism-item:nth-child(1) {
  width: 456px;
}

.about-gallery-minimalism-row:nth-child(1) .minimalism-item:nth-child(2) {
  width: 462px;
  margin-left: 20px;
}

.about-gallery-minimalism-row:nth-child(2) .minimalism-item:nth-child(1) {
  width: 341px;
  margin-left: 84px;
}

.about-gallery-minimalism-row:nth-child(2) .minimalism-item:nth-child(2) {
  width: 469px;
  margin-left: 60px;
  margin-top: 18px;
}

.minimalism-item:hover {
  filter: drop-shadow(0 10px 18px rgba(79, 52, 38, 0.12));
}

.about-gallery-minimalism-row:nth-child(1) .minimalism-item:nth-child(1):hover {
  transform: translateY(-6px) rotate(-2deg);
}

.about-gallery-minimalism-row:nth-child(1) .minimalism-item:nth-child(2):hover {
  transform: translateY(-6px) rotate(2deg);
}

.about-gallery-minimalism-row:nth-child(2) .minimalism-item:nth-child(1):hover {
  transform: translateY(-6px) rotate(-1.5deg);
}

.about-gallery-minimalism-row:nth-child(2) .minimalism-item:nth-child(2):hover {
  transform: translateY(-6px) rotate(1.5deg);
}


@media (hover: none) {
  .minimalism-item:hover {
    transform: none;
    filter: none;
  }
}

@media (max-width: 900px) {
  .about-rabbit-scene {
    --about-rabbit-shift-x: clamp(24px, 5vw, 42px);
    top: 54px;
    width: clamp(230px, 38vw, 340px);
    opacity: 0.72;
  }

  .about-gallery-minimalism-row {
    flex-wrap: wrap;
  }

  .minimalism-item {
    max-width: 100%;
  }
}

.self-life-minimalism-figure {
  width: min(100%, 1110px);
  margin: 0;
}

.self-life-minimalism-image {
  display: block;
  width: 100%;
  height: auto;
}

.about-gallery-routine {
  position: relative;
  grid-template-columns: minmax(0, 1fr) 266px;
  width: 100%;
  max-width: none;
  align-items: stretch;
  justify-items: start;
  column-gap: 28px;
  row-gap: 24px;
  padding: 34px 0 18px;
}

.kitchen-1 {
  --angle: -3;
}

.kitchen-2 {
  --angle: 4;
}

.routine-1 {
  --angle: -2;
}

.routine-2 {
  --angle: 3;
}

.routine-3 {
  --angle: -3;
}

.routine-4 {
  --angle: 2;
}

.routine-calendar-frame {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  justify-items: center;
  align-content: start;
  row-gap: 14px;
  width: 100%;
  max-width: none;
  justify-self: start;
  margin: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
}

.routine-scatter-icon {
  position: absolute;
  display: block;
  width: clamp(54px, 4.8vw, 70px);
  height: auto;
  pointer-events: auto;
  z-index: 2;
  filter: drop-shadow(0 14px 20px rgba(47, 38, 33, 0.14));
  transform-origin: center center;
  transition: transform 0.26s ease;
}

.routine-scatter-icon-1 {
  top: 18px;
  left: -92px;
  transform: rotate(-18deg);
}

.routine-scatter-icon-2 {
  top: 118px;
  left: -34px;
  transform: rotate(9deg);
}

.routine-scatter-icon-3 {
  top: -18px;
  right: -26px;
  transform: rotate(16deg);
}

.routine-scatter-icon-4 {
  top: 64px;
  right: -112px;
  transform: rotate(-7deg);
}

.routine-calendar-frame > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(47, 38, 33, 0.08);
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.routine-scroll-shot {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  justify-items: center;
  align-content: start;
  row-gap: 14px;
  width: min(100%, 266px);
  height: 100%;
  justify-self: end;
  margin: 0 0 0 auto;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
}

.routine-scroll-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-align: center;
}

.routine-scroll-hint-icon {
  width: auto;
  height: 1em;
  flex: 0 0 auto;
  display: block;
}

.routine-scroll-window {
  position: relative;
  height: 100%;
  min-height: 0;
  overflow-y: auto;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  box-shadow: 0 10px 22px rgba(47, 38, 33, 0.08);
  scrollbar-width: thin;
  scrollbar-color: rgba(47, 38, 33, 0.34) transparent;
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.routine-scroll-window::-webkit-scrollbar {
  width: 10px;
}

.routine-scroll-window::-webkit-scrollbar-thumb {
  border: 2px solid #fff;
  border-radius: 999px;
  background: rgba(47, 38, 33, 0.28);
}

.routine-scroll-window img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (hover: hover) {
  .routine-calendar-frame:hover > img,
  .routine-scroll-shot:hover .routine-scroll-window {
    transform: translateY(-6px);
    box-shadow: 0 24px 44px rgba(47, 38, 33, 0.18);
  }

  .routine-scatter-icon-1:hover {
    transform: translate(-4px, -8px) rotate(-16deg);
  }

  .routine-scatter-icon-2:hover {
    transform: translate(5px, -7px) rotate(14deg);
  }

  .routine-scatter-icon-3:hover {
    transform: translate(8px, -5px) rotate(18deg);
  }

  .routine-scatter-icon-4:hover {
    transform: translate(-4px, -7px) rotate(-13deg);
  }

}

@media (max-width: 900px) {
  .about-gallery-routine {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 28px 18px 12px;
  }

  .routine-calendar-frame {
    width: 100%;
  }

  .routine-scatter-icon-1 {
    top: 14px;
    left: -56px;
  }

  .routine-scatter-icon-2 {
    top: 102px;
    left: -12px;
  }

  .routine-scatter-icon-3 {
    top: -10px;
    right: -12px;
  }

  .routine-scatter-icon-4 {
    top: 62px;
    right: -58px;
  }

  .routine-scroll-shot {
    width: min(100%, 320px);
    justify-self: start;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .about-gallery-routine {
    padding: 54px 12px 10px;
  }

  .routine-scatter-icon {
    width: 44px;
  }

  .routine-scatter-icon-1 {
    top: -36px;
    left: 4px;
  }

  .routine-scatter-icon-2 {
    top: 98px;
    left: 28px;
    bottom: auto;
  }

  .routine-scatter-icon-3 {
    top: -42px;
    right: 18px;
  }

  .routine-scatter-icon-4 {
    top: 68px;
    right: -6px;
    bottom: auto;
  }

}

.acknowledgements {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  column-gap: clamp(42px, 6vw, 108px);
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  min-height: calc(100vh - 120px);
  padding: clamp(40px, 5vh, 72px) 0;
}

.acknowledgements-aside {
  position: relative;
  min-height: clamp(660px, 72vh, 800px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.acknowledgements-aside-art {
  position: relative;
  isolation: isolate;
  width: min(100%, 720px);
  min-height: 760px;
  margin-left: 0;
}

.acknowledgements-body {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 18px;
  width: 100%;
}

.acknowledgements-title {
  position: absolute;
  z-index: 1;
  display: inline-block;
  top: 232px;
  left: 7px;
  margin: 0;
  transform: rotate(-8deg);
  color: #9b9b9b;
  font-family: "Comic Sans MS", "Marker Felt", "Bradley Hand", cursive;
  font-size: 9.65rem;
  line-height: 0.9;
  letter-spacing: 0.01em;
  pointer-events: none;
  white-space: nowrap;
}

.acknowledgement-doodle {
  position: absolute;
  z-index: 0;
  display: block;
  object-fit: contain;
  pointer-events: none;
}

.acknowledgement-wx-copy {
  position: absolute;
  z-index: 2;
  display: block;
  left: 154px;
  bottom: 138px;
  width: 228px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform-origin: center;
  transform: rotate(-1deg);
  filter: drop-shadow(0 14px 22px rgba(79, 52, 38, 0.14));
  transition: transform 0.24s ease, filter 0.24s ease;
}

.acknowledgement-wx-copy img {
  display: block;
  width: 100%;
  height: auto;
}

.acknowledgement-wx-copy:focus-visible {
  transform: translate(-2px, -3px) rotate(-1deg) scale(1.04);
  filter: drop-shadow(0 16px 24px rgba(79, 52, 38, 0.2));
}

.acknowledgement-wx-copy:focus-visible {
  outline: 3px solid rgba(185, 55, 46, 0.28);
  outline-offset: 6px;
  border-radius: 28px;
}

.acknowledgement-doodle-left {
  top: 82px;
  right: -128px;
  left: auto;
  width: 164px;
  height: 164px;
  transform: rotate(8deg);
  opacity: 0.82;
}

.acknowledgement-doodle-right {
  position: relative;
  justify-self: end;
  top: auto;
  left: auto;
  width: 142px;
  height: 142px;
  margin-top: -4px;
  margin-right: clamp(4px, 3.6vw, 58px);
  transform: rotate(7deg);
  opacity: 0.78;
}

.acknowledgement-line {
  margin: 0;
  font-size: clamp(1rem, 1.55vw, 1.12rem);
  line-height: 1.9;
  color: #8f8174;
}

.acknowledgement-line {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  width: fit-content;
  max-width: min(100%, 720px);
  transform-origin: center center;
  text-align: center;
}

.acknowledgement-line > span:first-child {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.acknowledgement-line > span:last-child {
  color: inherit;
  font-weight: inherit;
}

.acknowledgement-line-1 {
  transform: rotate(-2deg) translateX(10px);
}

.acknowledgement-line-2 {
  transform: rotate(1.6deg) translateX(34px);
}

.acknowledgement-line-3 {
  transform: rotate(-1.3deg) translateX(4px);
}

.acknowledgement-line-4 {
  transform: rotate(1.8deg) translateX(22px);
}

.acknowledgement-line-5 {
  transform: rotate(-2.1deg) translateX(4px);
  margin-top: 10px;
}

.acknowledgement-line-6 {
  transform: rotate(1.9deg) translateX(44px);
}

.acknowledgement-line-7 {
  transform: rotate(-2.2deg) translateX(18px);
}

.acknowledgement-line-8 {
  transform: rotate(-1.3deg) translateX(16px);
  margin-top: 6px;
}

.acknowledgement-logo {
  flex: 0 0 auto;
  width: 53px;
  height: 53px;
  object-fit: contain;
  filter: drop-shadow(0 7px 14px rgba(79, 52, 38, 0.14));
  transition: transform 0.24s ease, filter 0.24s ease;
}

.acknowledgement-avatar {
  flex: 0 0 auto;
  width: 53px;
  height: 53px;
  border-radius: 999px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 10px 18px rgba(79, 52, 38, 0.2);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.acknowledgement-name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.acknowledgement-line:hover .acknowledgement-logo {
  filter: drop-shadow(0 10px 16px rgba(79, 52, 38, 0.2));
}

.acknowledgement-line:hover .acknowledgement-logo,
.acknowledgement-line:hover .acknowledgement-avatar {
  transform: translate(-2px, -2px) scale(1.15);
}

.acknowledgement-line:hover .acknowledgement-avatar {
  box-shadow: 0 10px 18px rgba(79, 52, 38, 0.18);
}

.app-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 4px 0 18px;
}

.app-logo {
  position: relative;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border: var(--border-strong) solid var(--line);
  border-radius: 22px;
  background: var(--bg);
}

.calendar-logo .top {
  position: absolute;
  top: 10px;
  color: var(--accent);
  font-size: 0.82rem;
}

.calendar-logo .bottom {
  margin-top: 16px;
  font-size: 2rem;
  font-weight: 600;
}

.wallet-card {
  width: 34px;
  height: 24px;
  border: var(--border-strong) solid var(--accent);
  border-radius: 8px;
}

.ledger-text {
  margin-top: 4px;
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.float-card {
  animation: float 5.8s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes hero-pass-sway {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-2.2deg);
  }
  50% {
    transform: rotate(0.9deg);
  }
  75% {
    transform: rotate(2.2deg);
  }
}

@keyframes hero-emotion-float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes hero-emotion-cycle {
  0%,
  33.333% {
    opacity: 1;
  }

  33.334%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 1120px) {
  .acknowledgements {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
    column-gap: clamp(28px, 4vw, 56px);
  }

  .acknowledgements-aside {
    min-height: 640px;
  }

  .acknowledgements-aside-art {
    min-height: 640px;
    width: min(100%, 620px);
  }

  .acknowledgements-title {
    top: 200px;
    left: 5px;
    font-size: 7.5rem;
  }

  .acknowledgement-doodle-left {
    left: auto;
    right: -82px;
    top: 72px;
    width: 126px;
    height: 126px;
  }

  .acknowledgement-doodle-right {
    width: 126px;
    height: 126px;
    margin-right: clamp(0px, 2.4vw, 32px);
  }

  .acknowledgement-wx-copy {
    left: 111px;
    bottom: 122px;
    width: 194px;
  }

  .acknowledgements-body {
    justify-self: stretch;
    justify-items: center;
    width: 100%;
    gap: 18px;
  }

  .acknowledgement-line {
    font-size: 0.98rem;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 860px) {
  .projects {
    width: 100%;
  }

  .projects-showcase {
    grid-template-columns: 1fr;
    gap: 64px;
    padding: 42px var(--page-gutter-mobile) 82px;
  }

  .project-panel-copy-emotion {
    order: 4;
  }

  .project-panel-cover-emotion {
    order: 3;
  }

  .project-panel-copy-work4 {
    order: 8;
  }

  .project-panel-cover-work4 {
    order: 7;
  }

  .project-panel {
    width: 100%;
  }

  .project-panel-cover {
    min-height: auto;
  }

  .project-panel-cover-qingyou,
  .project-panel-cover-emotion,
  .project-panel-cover-xr,
  .project-panel-cover-work4 {
    justify-self: center;
    width: 100%;
  }

  .project-panel-cover-qingyou {
    padding: 0;
  }

  .project-panel-cover-qingyou::before {
    display: none;
  }

  .project-panel-cover-emotion {
    padding: 6px 0 10px;
    justify-content: flex-end;
  }

  .project-panel-cover-emotion::before {
    display: none;
  }

  .project-panel-cover-xr {
    max-width: var(--project-copy-mobile-max);
    padding: 8px 0 10px;
    min-height: clamp(260px, 64vw, 360px);
  }

  .project-panel-cover-xr::before {
    display: none;
  }

  .project-panel-cover-xr::after {
    display: none;
  }

  .project-panel-cover-work4 {
    justify-content: flex-end;
    overflow: visible;
    padding: 4px 0 10px;
    min-height: clamp(220px, 52vw, 340px);
  }

  .project-panel-cover-work4::before,
  .project-panel-cover-work4::after {
    display: none;
  }

  .project-panel-cover-work4 img {
    width: min(88%, 680px);
    min-width: 0;
    max-width: 100%;
  }

  .project-panel-copy-qingyou,
  .project-panel-copy-emotion,
  .project-panel-copy-xr,
  .project-panel-copy-work4 {
    max-width: var(--project-copy-mobile-max);
    justify-self: center;
    width: 100%;
    text-align: left;
  }

  .project-panel-copy h2 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  .project-subtitle {
    font-size: clamp(1rem, 4.4vw, 1.24rem);
  }

  .project-description {
    margin-top: 20px;
    font-size: clamp(1rem, 4.4vw, 1.24rem);
  }

  .project-action {
    margin-top: 32px;
  }

  .project-panel-copy-qingyou .project-tags,
  .project-panel-copy-emotion .project-tags,
  .project-panel-copy-xr .project-tags,
  .project-panel-copy-work4 .project-tags {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .acknowledgements {
    grid-template-columns: 1fr;
    min-height: auto;
    align-items: start;
    row-gap: 40px;
    padding: 20px 0 36px;
  }

  .acknowledgements-aside {
    min-height: 520px;
    justify-self: center;
    width: 100%;
    justify-content: center;
  }

  .acknowledgements-aside-art {
    width: min(100%, 380px);
    min-height: 520px;
  }

  .acknowledgements-title {
    top: 150px;
    left: 3px;
    transform: rotate(-6deg);
    font-size: 5.7rem;
  }

  .acknowledgement-wx-copy {
    left: 81px;
    bottom: 100px;
    width: 152px;
    transform: rotate(-1deg);
  }

  .acknowledgement-wx-copy:focus-visible {
    transform: translate(-2px, -3px) rotate(-1deg) scale(1.04);
  }

  .acknowledgements-body {
    justify-self: stretch;
    width: 100%;
    padding-top: 0;
    gap: 18px;
  }

  .acknowledgement-line,
  .acknowledgement-line-1,
  .acknowledgement-line-2,
  .acknowledgement-line-3,
  .acknowledgement-line-4,
  .acknowledgement-line-5,
  .acknowledgement-line-6,
  .acknowledgement-line-7,
  .acknowledgement-line-8 {
    transform: none;
  }

  .acknowledgement-line {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    font-size: 1rem;
  }

  .acknowledgement-doodle-left {
    top: 46px;
    right: -10px;
    left: auto;
    width: 104px;
    height: 104px;
  }

  .acknowledgement-doodle-right {
    width: 106px;
    height: 106px;
    margin-top: -2px;
    margin-right: 24px;
  }

  .topbar,
  .about-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1,
  .section-head h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .projects-title-balance {
    left: clamp(-136px, -28vw, -96px);
    width: clamp(78px, 21vw, 128px);
    transform: translateY(-52%) rotate(-16deg);
  }

  .hero-layout {
    text-align: center;
  }

  .hero-intro {
    max-width: 640px;
    width: 100%;
  }

  .hero-welcome-stack {
    padding-top: 246px;
  }

  .two-up,
  .four-up,
  .about-gallery-kitchen {
    grid-template-columns: 1fr;
  }

  .about-gallery-routine .memory-shot {
    grid-column: auto;
    margin-top: 0;
    min-height: 220px;
  }

  .routine-calendar-frame,
  .routine-scroll-shot {
    width: 100%;
    margin-left: 0;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
  }

  .note-left,
  .note-right {
    left: auto;
    right: auto;
  }
}

@media (max-height: 860px) and (min-width: 701px) {
  .acknowledgements {
    min-height: calc(100vh - 104px);
    padding: 28px 0;
  }
}

@media (max-width: 560px) {
  .about-rabbit-scene {
    --about-rabbit-shift-x: 22px;
    top: 50px;
    width: 210px;
    opacity: 0.46;
  }

  .about-gallery-routine {
    grid-template-columns: 1fr;
  }

  .routine-calendar-frame,
  .routine-scroll-shot {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .section,
  .topbar {
    width: min(calc(100% - var(--page-gutter-mobile)), var(--max-width));
  }

  .projects {
    width: 100%;
  }

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

  .nav {
    gap: 4px 1.6px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

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

  .nav-link {
    width: 113px;
    height: 40px;
    gap: 3px;
    padding: 0 9px;
    font-size: 0.82rem;
  }

  .nav-link-about {
    margin-left: -1.45px;
    padding-left: 1px;
    padding-right: 11px;
  }

  .nav-link-about .nav-link-label {
    margin-left: -1px;
  }

  .nav-link-projects {
    margin-left: -1px;
    padding-left: 7px;
    padding-right: 11px;
    transform: translateX(6px);
  }

  .nav-link-projects:hover,
  .nav-link-projects:focus-visible,
  .nav-link-projects.active {
    transform: translate(6px, -1px);
  }

  .routine-scroll-shot {
    padding: 0;
    border-radius: 20px;
  }

  .routine-scroll-window {
    max-height: 360px;
    padding: 0;
    border-radius: 20px;
  }

  .nav-link-about {
    width: 136px;
  }

  .nav-link-icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .section {
    padding-top: 72px;
  }

  .hero {
    min-height: unset;
  }

  .hero-copy {
    padding-top: 12px;
  }

  .note {
    position: static;
    max-width: none;
    margin-top: 12px;
    transform: none;
  }

  .hero-welcome-art {
    width: min(100%, 420px);
    margin: 0 auto;
  }

  .hero-welcome-stack {
    padding-top: 198px;
  }

  .hero-emotion-switcher {
    width: min(181px, 44vw);
  }

  .about-intro h3 {
    font-size: 1.95rem;
  }

  .about-stack {
    gap: 72px;
  }

  .acknowledgements {
    width: 100%;
    max-width: none;
    margin-left: 0;
    gap: 10px;
    min-height: auto;
    padding: 56px 0 40px;
  }

  .acknowledgements-body {
    justify-self: stretch;
    justify-items: center;
    width: 100%;
    gap: 18px;
  }

  .acknowledgement-line {
    font-size: 0.98rem;
    justify-content: center;
    text-align: center;
  }

  .acknowledgement-logo {
    width: 45px;
    height: 45px;
  }

  .acknowledgement-avatar {
    width: 45px;
    height: 45px;
  }
}
