:root {
  --paper: #f4f1ec;
  --mint: #eee9f6;
  --mint-strong: #e4dcef;
  --paper-warm: #f8efe7;
  --ink: #1f211f;
  --muted: #6f746f;
  --line: rgba(31, 33, 31, 0.16);
  --rose: #c98793;
  --coral: #d96c5f;
  --moss: #6f866b;
  --blue: #85a8b8;
  --lilac: #b6adce;
  --yellow: #d9c66c;
  --shadow: 0 10px 24px rgba(28, 31, 30, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: auto;
}

body {
  width: 100%;
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background: #f4f1ec;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Inter", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

main {
  width: 100%;
}

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

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

.site-grain {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.19;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 6px 6px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 22px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  backdrop-filter: none;
  color: #fff;
  font-size: 16px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  justify-self: start;
}

.brand span:first-child {
  color: #fff;
  font-size: 18px;
}

.brand span:last-child {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 28px);
  color: #fff;
  white-space: nowrap;
}

.nav-links a {
  display: grid;
  gap: 3px;
  color: #fff;
  font-size: 16px;
  text-align: center;
}

.nav-links small {
  color: rgba(255, 255, 255, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 9px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.nav-links a,
.header-contact,
.hero-contact a,
.scroll-cue {
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover,
.header-contact:hover,
.hero-contact a:hover,
.scroll-cue:hover {
  color: var(--coral);
}

.hero {
  --hero-stripe-top: 72px;
  position: relative;
  display: grid;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 16% 72%, rgba(255, 241, 213, 0.24) 0 1px, transparent 1.8px),
    radial-gradient(circle at 74% 88%, rgba(95, 60, 35, 0.18) 0 1px, transparent 1.8px),
    linear-gradient(180deg, #39aa76 0 48%, #b97843 48% 100%);
  background-size: 7px 7px, 9px 9px, auto;
  touch-action: pan-y;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 46%;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 22%, rgba(251, 194, 218, 0.9) 0 10px, transparent 11px),
    radial-gradient(circle at 42% 38%, rgba(219, 237, 238, 0.85) 0 14px, transparent 15px),
    radial-gradient(circle at 76% 18%, rgba(251, 194, 218, 0.75) 0 9px, transparent 10px),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0 2px, transparent 2px 32px),
    #39aa76;
  opacity: 0.92;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-linear-gradient(
      90deg,
      #ef6c25 0 32px,
      #f4b5cc 32px 64px,
      #d9e9eb 64px 96px,
      #39aa76 96px 128px,
      #4e392f 128px 160px,
      #d9e9eb 160px 192px
    ) center var(--hero-stripe-top) / 100% clamp(28px, 3.6vw, 46px) no-repeat,
    repeating-linear-gradient(
      90deg,
      #ef6c25 0 32px,
      #f4b5cc 32px 64px,
      #d9e9eb 64px 96px,
      #39aa76 96px 128px,
      #4e392f 128px 160px,
      #d9e9eb 160px 192px
    ) bottom / 100% clamp(28px, 3.6vw, 46px) no-repeat;
  pointer-events: none;
}

.float-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  touch-action: pan-y;
}

.floating-work {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--size, 78px);
  aspect-ratio: var(--ratio, 0.78);
  border: 0;
  border-radius: 12px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  opacity: 1;
  pointer-events: auto;
  transform-origin: 50% 50%;
  transition:
    width 420ms ease,
    opacity 240ms ease,
    filter 240ms ease,
    box-shadow 240ms ease;
  will-change: transform;
}

.floating-work img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
  filter: drop-shadow(0 14px 18px rgba(54, 32, 18, 0.2));
}

.floating-work:hover,
.floating-work.is-active {
  --opacity: 1;
  z-index: 8;
  filter: saturate(1.08) contrast(1.02);
  box-shadow: none;
}

.float-field.is-organized .floating-work {
  --opacity: 1;
  box-shadow: none;
}

.float-field .floating-work--spotlight,
.float-field.is-organized .floating-work--spotlight {
  --opacity: 1;
  min-width: 130px;
}

.floating-work--research,
.floating-work--product,
.floating-work--textile {
  min-width: 90px;
}

.floating-work--graphic,
.floating-work--about {
  min-width: 76px;
}

.floating-work--graphic-1 {
  min-width: clamp(230px, 22vw, 305px);
  aspect-ratio: 0.72;
}

.floating-work--textile-3 {
  min-width: clamp(92px, 11vw, 172px);
}

.floating-work--textile-5 {
  min-width: clamp(115px, 12vw, 175px);
  aspect-ratio: 1.02;
}

.floating-work--about-3 {
  min-width: clamp(150px, 18vw, 260px);
}

.floating-work--about-4 {
  min-width: clamp(60px, 7vw, 96px);
}

.hero-copy {
  position: relative;
  z-index: 10;
  display: grid;
  place-items: center;
  width: min(460px, 78vw);
  padding: 18px 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: center;
  cursor: default;
}

.hero-copy::before {
  content: none;
}

.hero h1 {
  margin: 0;
  color: #5f3322;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.55);
}

.hero-role-cn,
.hero-role-en {
  margin: 8px 0 0;
  color: rgba(95, 51, 34, 0.82);
  font-size: clamp(13px, 1.25vw, 17px);
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-role-en {
  margin-top: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(9px, 0.95vw, 12px);
  font-style: italic;
}

.contact-envelope-section {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 130px 20px 70px;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.74) 0 2px, transparent 2.4px),
    linear-gradient(180deg, #39aa76 0 32%, #b97843 32% 100%);
  background-size: 18px 18px, auto;
}

.envelope-stage {
  position: relative;
  width: min(540px, 84vw);
  height: min(480px, 74vw);
  outline: none;
  cursor: pointer;
  perspective: 1000px;
}

.envelope-shell {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  height: 58%;
}

.envelope-back,
.envelope-pocket {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(76, 81, 65, 0.24);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 26 26'%3E%3Cpath fill='%23fff' d='m13 2.8 2.35 6.3 6.7.28-5.25 4.17 1.8 6.46L13 16.3 7.4 20l1.8-6.45-5.25-4.17 6.7-.28L13 2.8Z'/%3E%3C/svg%3E"),
    #c6d87b;
  background-size: 26px 26px;
  box-shadow: 0 24px 70px rgba(73, 43, 25, 0.22);
}

.envelope-pocket {
  z-index: 3;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 26 26'%3E%3Cpath fill='%23fff' d='m13 2.8 2.35 6.3 6.7.28-5.25 4.17 1.8 6.46L13 16.3 7.4 20l1.8-6.45-5.25-4.17 6.7-.28L13 2.8Z'/%3E%3C/svg%3E"),
    #c6d87b;
  background-size: 26px 26px;
  clip-path: polygon(0 0, 50% 58%, 100% 0, 100% 100%, 0 100%);
}

.envelope-flap-large {
  position: absolute;
  inset: 0 0 auto;
  z-index: 4;
  height: 62%;
  border: 1px solid rgba(76, 81, 65, 0.22);
  background: #b46f36;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform-origin: top;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), z-index 0s 350ms;
}

.envelope-letter {
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: 8%;
  z-index: 2;
  min-height: 66%;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid rgba(76, 81, 65, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), transparent 42%),
    #ffd1e0;
  box-shadow: 0 18px 50px rgba(73, 43, 25, 0.16);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), z-index 0s 350ms;
}

.envelope-stage.is-open .envelope-flap-large,
.envelope-stage:hover .envelope-flap-large,
.envelope-stage:focus-visible .envelope-flap-large {
  z-index: 1;
  transform: rotateX(178deg);
}

.envelope-stage.is-open .envelope-letter,
.envelope-stage:hover .envelope-letter,
.envelope-stage:focus-visible .envelope-letter {
  z-index: 6;
  transform: translateY(-48%);
}

.envelope-letter h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 300;
}

.envelope-letter h2 span {
  display: block;
  margin-top: 7px;
  color: rgba(31, 33, 31, 0.52);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.38em;
  font-style: italic;
  font-weight: 400;
}

.envelope-letter > p:not(.letter-kicker) {
  margin: 0;
  color: rgba(31, 33, 31, 0.68);
  line-height: 1.8;
}

.letter-intro-en {
  display: block;
  margin-top: 7px;
  color: rgba(31, 33, 31, 0.48);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82em;
  font-style: italic;
  line-height: 1.45;
}

.envelope-hint {
  margin: 0;
  align-self: start;
  color: rgba(31, 33, 31, 0.48);
  font-family: Georgia, serif;
  font-size: 15px;
  font-style: italic;
}

.work-section {
  display: none;
  position: relative;
  min-height: 100svh;
  padding: clamp(86px, 12vw, 156px) clamp(20px, 5vw, 72px);
  background-color: #f4f1ec !important;
  background-image: radial-gradient(circle, rgba(31, 33, 31, 0.12) 0 0.8px, transparent 1.15px) !important;
  background-size: 6px 6px !important;
}

.work-section.is-active {
  display: block;
}

body.detail-view .hero,
body.detail-view .contact-envelope-section {
  display: none;
}

body.detail-view .site-header {
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

body.detail-view {
  height: auto;
  min-height: 100%;
  overflow-y: auto;
  touch-action: pan-y;
}

body.detail-view main,
body.detail-view .work-section.is-active {
  height: auto;
  overflow: visible;
}

.back-home {
  display: grid;
  gap: 3px;
  width: fit-content;
  max-width: 1180px;
  margin: 0 auto 42px;
  border-bottom: 1px solid rgba(31, 33, 31, 0.32);
  color: rgba(31, 33, 31, 0.58);
  font-size: 13px;
}

.back-home small {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  font-style: italic;
}

.work-section:nth-of-type(3) {
  background: rgba(238, 244, 242, 0.72);
}

.work-section:nth-of-type(4) {
  background: rgba(249, 239, 232, 0.66);
}

.work-section:nth-of-type(5) {
  background: rgba(235, 240, 246, 0.72);
}

#content-analysis,
#article-toy-content-consumer,
#article-innovation-demand {
  background-color: #f4e8f5 !important;
  background-image: none !important;
  background-size: auto !important;
}

#product-dev,
#product-diy,
#textile-design,
#graphic-design {
  background:
    radial-gradient(circle, rgba(255, 122, 187, 0.8) 0 4px, transparent 4.8px) 18px 22px / 132px 118px repeat,
    radial-gradient(circle, rgba(255, 182, 211, 0.76) 0 8px, transparent 8.8px) 88px 42px / 260px 236px repeat,
    radial-gradient(circle, rgba(255, 255, 248, 0.9) 0 5px, transparent 5.8px) 52px 64px / 182px 166px repeat,
    radial-gradient(circle, rgba(57, 60, 68, 0.86) 0 5px, transparent 5.8px) 104px 18px / 218px 198px repeat,
    radial-gradient(circle, rgba(189, 26, 91, 0.82) 0 5px, transparent 5.8px) 24px 86px / 242px 214px repeat,
    radial-gradient(circle, rgba(205, 165, 118, 0.58) 0 6px, transparent 6.8px) 76px 102px / 226px 208px repeat,
    repeating-linear-gradient(90deg, rgba(39, 64, 25, 0.16) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(90deg, transparent 0 20px, rgba(24, 45, 18, 0.08) 21px 22px, transparent 23px 42px),
    repeating-linear-gradient(0deg, transparent 0 24px, rgba(255, 255, 255, 0.06) 25px 26px, transparent 27px 48px),
    linear-gradient(135deg, #a7cc6f 0%, #8fbc55 48%, #b2d477 100%) !important;
  background-attachment: scroll !important;
  background-size:
    132px 118px,
    260px 236px,
    182px 166px,
    218px 198px,
    242px 214px,
    226px 208px,
    7px 100%,
    100% 8px,
    42px 100%,
    100% 48px,
    auto !important;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(120px, 0.34fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 62px);
  max-width: 1180px;
  margin: 0 auto clamp(28px, 6vw, 72px);
  align-items: end;
}

.section-heading p {
  margin: 0 0 10px;
  color: rgba(31, 33, 31, 0.54);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(38px, 7vw, 96px);
  font-weight: 300;
  line-height: 0.98;
}

.editorial-grid,
.split-story,
.about-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1fr) minmax(220px, 0.72fr);
  gap: clamp(18px, 3vw, 42px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: center;
}

.product-module-list {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(31, 33, 31, 0.12);
}

.product-module {
  display: grid;
  grid-template-columns: 70px minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 78px);
  align-items: center;
  padding: clamp(46px, 8vw, 96px) 0;
  border-bottom: 1px solid rgba(31, 33, 31, 0.12);
}

.product-module:nth-child(even) figure {
  order: 3;
}

.product-module-index,
.product-module-label {
  margin: 0;
  color: rgba(31, 33, 31, 0.52);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
}

.product-module-index {
  align-self: start;
  font-size: 18px;
  font-style: normal;
}

.product-module figure {
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-module figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-module h3 {
  margin: 14px 0 24px;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.15;
}

.product-module div > p:not(.product-module-label) {
  max-width: 660px;
  margin: 0;
  color: rgba(31, 33, 31, 0.7);
  font-size: clamp(16px, 1.8vw, 21px);
  line-height: 1.8;
}

.product-module:first-child figure {
  background: rgba(255, 255, 255, 0.42);
}

.product-module:first-child figure img {
  object-fit: contain;
}

.product-module-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 5px 14px;
  align-items: center;
  width: min(100%, 420px);
  margin-top: 30px;
  padding: 14px 0;
  border-top: 1px solid rgba(31, 33, 31, 0.22);
  border-bottom: 1px solid rgba(31, 33, 31, 0.22);
}

.product-module-cta span {
  font-size: 14px;
}

.product-module-cta small {
  grid-column: 1 / 3;
  color: rgba(31, 33, 31, 0.48);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  font-style: italic;
}

.product-module-cta b {
  grid-column: 3;
  grid-row: 1 / 3;
  font-size: 24px;
  font-weight: 300;
  transition: transform 220ms ease;
}

.product-module-cta:hover b,
.product-module-cta:focus-visible b {
  transform: translateX(7px);
}

.section-heading--bilingual h2 {
  display: grid;
  gap: 12px;
}

.section-heading--bilingual h2 small {
  color: rgba(31, 33, 31, 0.48);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(13px, 1.5vw, 18px);
  font-style: italic;
  font-weight: 400;
}

.diy-research,
.diy-project-list {
  max-width: 1280px;
  margin: 0 auto;
}

.diy-research {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.8fr);
  gap: clamp(32px, 6vw, 92px);
  padding: clamp(48px, 7vw, 88px) 0;
  border-top: 1px solid rgba(31, 33, 31, 0.14);
  border-bottom: 1px solid rgba(31, 33, 31, 0.14);
}

.diy-research-heading p,
.diy-project header p {
  margin: 0 0 12px;
  color: rgba(31, 33, 31, 0.52);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
}

.diy-research-heading h3 {
  margin: 0 0 12px;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.16;
}

.diy-research-heading small,
.diy-project header small {
  color: rgba(31, 33, 31, 0.48);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
}

.diy-document-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(31, 33, 31, 0.14);
  border-left: 1px solid rgba(31, 33, 31, 0.14);
}

.diy-document-grid article {
  position: relative;
  min-height: 190px;
  padding: 22px;
  border-right: 1px solid rgba(31, 33, 31, 0.14);
  border-bottom: 1px solid rgba(31, 33, 31, 0.14);
}

.diy-document-grid article::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 42px;
  height: 54px;
  border: 1px solid rgba(31, 33, 31, 0.22);
  background:
    linear-gradient(rgba(31, 33, 31, 0.14), rgba(31, 33, 31, 0.14)) 8px 12px / 24px 1px no-repeat,
    linear-gradient(rgba(31, 33, 31, 0.14), rgba(31, 33, 31, 0.14)) 8px 20px / 18px 1px no-repeat,
    rgba(255, 255, 255, 0.26);
}

.diy-document-grid article > span {
  color: rgba(31, 33, 31, 0.4);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  font-style: italic;
}

.diy-document-grid h4 {
  margin: 34px 0 4px;
  font-family: "Songti SC", "STSong", serif;
  font-size: 23px;
  font-weight: 400;
}

.diy-document-grid p {
  margin: 0 0 28px;
  color: rgba(31, 33, 31, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  font-style: italic;
}

.diy-document-grid small {
  display: block;
  max-width: calc(100% - 64px);
  color: rgba(31, 33, 31, 0.42);
  font-size: 10px;
  line-height: 1.5;
}

.diy-project {
  display: grid;
  grid-template-columns: minmax(190px, 0.48fr) minmax(0, 1.7fr);
  gap: clamp(30px, 6vw, 92px);
  padding: clamp(64px, 10vw, 132px) 0;
  border-bottom: 1px solid rgba(31, 33, 31, 0.14);
}

.diy-project header {
  position: sticky;
  top: 112px;
  align-self: start;
}

.diy-project header h3 {
  margin: 0 0 12px;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.16;
}

.diy-project-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 28px);
  align-items: start;
}

.diy-project-gallery figure {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.45);
}

.diy-project-gallery figure.diy-wide {
  grid-column: 1 / -1;
}

.diy-project-gallery img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.feature-image,
.image-pair figure,
.portrait-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-image img,
.image-pair img,
.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-image {
  aspect-ratio: 0.82;
}

.feature-image.tall {
  aspect-ratio: 0.72;
}

.section-copy {
  display: grid;
  gap: 28px;
}

.section-copy p,
.about-copy > p {
  margin: 0;
  color: rgba(31, 33, 31, 0.78);
  font-size: clamp(17px, 2.2vw, 27px);
  font-weight: 300;
  line-height: 1.7;
}

.signal-list,
.life-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.signal-list span,
.life-grid span {
  border: 1px solid rgba(31, 33, 31, 0.18);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.28);
  color: rgba(31, 33, 31, 0.66);
  font-size: 13px;
}

.analysis-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: 0 auto;
  border: 1px solid var(--line);
  background: var(--line);
}

.analysis-board article {
  min-height: 310px;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.2)),
    var(--paper);
}

.analysis-board article:nth-child(1) {
  background-color: rgba(220, 231, 227, 0.84);
}

.analysis-board article:nth-child(2) {
  background-color: rgba(240, 218, 221, 0.78);
}

.analysis-board article:nth-child(3) {
  background-color: rgba(231, 224, 190, 0.78);
}

.analysis-board span {
  color: rgba(31, 33, 31, 0.54);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
}

.analysis-board h3 {
  margin: 80px 0 18px;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
}

.analysis-board p {
  margin: 0;
  color: rgba(31, 33, 31, 0.72);
  font-size: 16px;
  line-height: 1.75;
}

.split-story {
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1.22fr);
}

.image-pair {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(14px, 2vw, 24px);
  align-items: end;
}

.image-pair figure:first-child {
  aspect-ratio: 0.76;
  transform: translateY(34px);
}

.image-pair figure:last-child {
  aspect-ratio: 0.88;
}

.poster-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  max-width: 1240px;
  margin: 0 auto;
}

.poster-wall .poster-featured {
  margin-bottom: clamp(16px, 2vw, 28px);
}

.poster-wall .poster-centered {
  grid-column: 1 / -1;
  width: calc((100% - clamp(16px, 2vw, 28px)) / 2);
  justify-self: center;
}

.poster-wall figure {
  margin: 0;
  overflow: hidden;
}

.poster-wall img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 10px 28px rgba(31, 33, 31, 0.1);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.poster-wall img:hover {
  transform: scale(1.012);
  box-shadow: 0 20px 54px rgba(31, 33, 31, 0.18);
}

.graphic-catalog {
  display: flex;
  flex-direction: column;
  max-width: 1280px;
  margin: clamp(90px, 14vw, 190px) auto 0;
  padding-top: clamp(34px, 5vw, 64px);
  border-top: 1px solid rgba(31, 33, 31, 0.14);
}

.graphic-catalog-heading {
  order: 0;
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 100px);
  align-items: baseline;
  margin-bottom: clamp(42px, 7vw, 92px);
}

.graphic-catalog-heading p,
.graphic-catalog-heading h3 {
  margin: 0;
  font-weight: 400;
}

.graphic-catalog-heading p {
  color: rgba(31, 33, 31, 0.54);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
}

.graphic-catalog-heading h3 {
  padding: 4px 10px;
  background: #fff;
  color: #9e0083;
  font-family: "Songti SC", "STSong", serif;
  font-size: 35px;
}

.graphic-catalog-gallery {
  max-width: none;
}

.graphic-vi-project--fire {
  order: 1;
}

.graphic-vi-project--fire .complete-image-gallery figure,
.graphic-vi-project--fire .complete-image-gallery img {
  background: #fff;
}

.graphic-vi-project--spring {
  order: 2;
  margin-top: clamp(100px, 15vw, 210px);
  padding-top: clamp(42px, 6vw, 76px);
  border-top: 1px solid rgba(31, 33, 31, 0.14);
}

.graphic-vi-project--spring .complete-image-gallery figure:nth-child(11),
.graphic-vi-project--spring .complete-image-gallery figure:nth-child(11) img {
  background: #fff;
}

.graphic-vi-project h4 {
  width: fit-content;
  max-width: 1280px;
  margin: 0 auto clamp(34px, 6vw, 74px);
  padding: 2px 8px 3px;
  background: #fff;
  font-family: "Songti SC", "STSong", serif;
  font-size: 25px;
  font-weight: 400;
}

#graphic-design > .section-heading h2 {
  padding: 4px 10px;
  background: #fff;
  color: #9e0683;
  font-size: 35px;
}

.about-layout {
  grid-template-columns: minmax(300px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(50px, 8vw, 130px);
  max-width: 1320px;
  align-items: start;
}

.about-photo-carousel {
  position: sticky;
  top: 132px;
  min-width: 0;
  padding-top: clamp(20px, 4vw, 56px);
}

.about-photo-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(82%, 390px);
  gap: 16px;
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  cursor: grab;
}

.about-photo-track::-webkit-scrollbar {
  display: none;
}

.about-photo-track.is-dragging {
  scroll-snap-type: none;
  cursor: grabbing;
  user-select: none;
}

.about-photo-track .portrait-frame {
  width: 100%;
  aspect-ratio: 0.75;
  border-radius: 0;
  box-shadow: none;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.about-photo-track .portrait-frame img {
  object-position: center;
}

.about-photo-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(31, 33, 31, 0.12);
}

.about-photo-buttons {
  display: flex;
  gap: 4px;
}

.about-photo-buttons button {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 0;
  background: transparent;
  color: rgba(31, 33, 31, 0.72);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  transition: color 180ms ease, transform 180ms ease;
}

.about-photo-buttons button:hover,
.about-photo-buttons button:focus-visible {
  color: var(--coral);
  transform: translateX(-2px);
}

.about-photo-buttons button:last-child:hover,
.about-photo-buttons button:last-child:focus-visible {
  transform: translateX(2px);
}

.about-photo-buttons button:disabled {
  opacity: 0.25;
  cursor: default;
  transform: none;
}

.about-photo-count {
  margin: 0;
  color: rgba(31, 33, 31, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
}

.about-copy {
  display: grid;
  align-content: start;
  gap: 34px;
  padding-top: 50px;
}

.about-copy > p {
  max-width: 820px;
  font-size: clamp(17px, 1.8vw, 23px);
  line-height: 1.9;
}

.life-grid {
  max-width: 560px;
}

.about-credentials {
  display: grid;
  max-width: 820px;
  border-top: 1px solid rgba(31, 33, 31, 0.14);
}

.about-credentials section {
  display: grid;
  grid-template-columns: minmax(120px, 0.32fr) minmax(0, 1fr);
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(31, 33, 31, 0.12);
}

.about-credentials section > p {
  margin: 0;
  color: rgba(31, 33, 31, 0.52);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.about-credentials section:nth-child(1) > p,
.about-credentials section:nth-child(3) > p {
  font-weight: 600;
}

.about-credentials section:nth-child(2) {
  font-weight: 600;
}

.about-credentials .about-ai-tools > p {
  color: #9e0083;
}

.about-credentials section > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  color: rgba(31, 33, 31, 0.74);
  font-size: 14px;
  line-height: 1.7;
}

.about-credentials .about-ai-tools > div {
  display: grid;
  gap: 14px;
}

.about-ai-tools article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
}

.about-ai-tools strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
}

.contact-block {
  display: grid;
  gap: 10px;
  color: rgba(31, 33, 31, 0.72);
  font-size: 15px;
}

.contact-block p {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 16px;
}

.contact-block a {
  width: fit-content;
  border-bottom: 1px solid currentColor;
}

.letter-kicker {
  margin: 0 0 20px;
  font-family: "Snell Roundhand", "Apple Chancery", cursive;
  font-size: 22px;
}

.letter-links {
  display: grid;
  gap: 7px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(63, 48, 56, 0.18);
  color: rgba(63, 48, 56, 0.74);
  font-size: 14px;
}

.letter-links a {
  border-bottom: 1px solid currentColor;
}

.contact-indent {
  padding-left: 66px;
}

.textile-list {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(31, 33, 31, 0.1);
}

.textile-item {
  display: grid;
  grid-template-columns: 90px minmax(220px, 0.78fr) minmax(320px, 1.5fr) minmax(120px, auto);
  gap: clamp(20px, 4vw, 60px);
  align-items: center;
  padding: clamp(44px, 7vw, 86px) 0;
  border-bottom: 1px solid rgba(31, 33, 31, 0.1);
}

.textile-year {
  align-self: start;
  margin: 0;
  color: rgba(31, 33, 31, 0.7);
  font-family: Georgia, serif;
  font-size: 18px;
}

.textile-item img {
  width: 100%;
  max-height: 340px;
  object-fit: cover;
}

.textile-copy h3 {
  margin: 0 0 24px;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(27px, 4vw, 48px);
  font-weight: 400;
}

.textile-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(31, 33, 31, 0.74);
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.8;
}

.textile-arrow {
  display: inline-flex;
  align-self: start;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: rgba(31, 33, 31, 0.62);
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease;
}

.textile-arrow b {
  color: var(--ink);
  font-size: 34px;
  font-weight: 200;
}

.textile-arrow:hover,
.textile-arrow:focus-visible {
  transform: translateX(6px);
}

.collection-heading {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(220px, 0.55fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 78px);
  max-width: 1280px;
  margin: 0 auto clamp(44px, 8vw, 100px);
  padding-bottom: clamp(34px, 5vw, 64px);
  align-items: end;
  border-bottom: 1px solid rgba(31, 33, 31, 0.1);
}

.collection-heading > p {
  margin: 0 0 10px;
  color: rgba(31, 33, 31, 0.54);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
}

.collection-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(72px, 12vw, 172px);
  font-weight: 300;
  line-height: 0.78;
}

.collection-heading h3 {
  margin: 0 0 20px;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 400;
}

.collection-heading div p {
  max-width: 620px;
  margin: 0;
  color: rgba(31, 33, 31, 0.7);
  font-size: clamp(15px, 1.6vw, 20px);
  line-height: 1.8;
}

.collection-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 28px);
  max-width: 1280px;
  margin: 0 auto;
}

.collection-gallery figure {
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.collection-gallery figure:nth-child(1) {
  grid-column: span 7;
  aspect-ratio: 1.36;
}

.collection-gallery figure:nth-child(2) {
  grid-column: span 5;
  aspect-ratio: 0.96;
}

.collection-gallery figure:nth-child(3),
.collection-gallery figure:nth-child(4) {
  grid-column: span 6;
  aspect-ratio: 1.16;
}

.collection-gallery figure:nth-child(5) {
  grid-column: span 4;
  aspect-ratio: 0.84;
}

.collection-gallery figure:nth-child(6) {
  grid-column: span 8;
  aspect-ratio: 1.45;
}

.collection-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.collection-gallery figure:hover img {
  transform: scale(1.025);
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  max-width: 1280px;
  margin: calc(clamp(44px, 8vw, 100px) * -0.55) auto clamp(64px, 9vw, 116px);
  color: rgba(31, 33, 31, 0.58);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
}

.case-tags span {
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(31, 33, 31, 0.14);
}

.case-study {
  max-width: 1280px;
  margin: 0 auto;
}

.case-chapter {
  padding: clamp(48px, 8vw, 112px) 0;
  border-top: 1px solid rgba(31, 33, 31, 0.12);
}

.case-chapter:last-child {
  padding-bottom: 0;
}

.case-chapter-header {
  display: grid;
  grid-template-columns: minmax(60px, 0.22fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 96px);
  margin-bottom: clamp(34px, 6vw, 72px);
}

.case-chapter-header > span {
  color: rgba(31, 33, 31, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
}

.case-chapter-header div {
  display: block;
}

.case-chapter-header h3 {
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.25;
}

.case-chapter-header p {
  max-width: 660px;
  margin: 4px 0 0;
  color: rgba(31, 33, 31, 0.68);
  font-size: clamp(15px, 1.55vw, 19px);
  line-height: 1.9;
}

.case-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
}

.case-image {
  min-width: 0;
  margin: 0;
}

.case-image--full {
  grid-column: 1 / -1;
}

.case-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 920px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.38);
}

.case-image figcaption {
  margin-top: 12px;
  color: rgba(31, 33, 31, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
}

.case-image-grid--identity {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
}

.case-image-grid--identity .case-image--logo {
  padding-top: clamp(34px, 7vw, 100px);
}

.case-image-grid--prototype img {
  aspect-ratio: 1.34;
  object-fit: cover;
}

.case-image-grid--catalog {
  gap: clamp(24px, 4vw, 54px) clamp(18px, 3vw, 38px);
}

.case-image-grid--catalog img {
  border: 1px solid rgba(31, 33, 31, 0.08);
}

.complete-image-gallery {
  max-width: 1280px;
  margin: 0 auto;
}

.complete-image-gallery--mixed {
  columns: 2;
  column-gap: clamp(18px, 3vw, 40px);
}

.complete-image-gallery--catalog {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 40px);
}

.complete-image-gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.complete-image-gallery--mixed figure {
  break-inside: avoid;
  margin-bottom: clamp(18px, 3vw, 40px);
}

.complete-image-gallery img {
  display: block;
  width: 100%;
  height: auto;
  background: rgba(255, 255, 255, 0.34);
}

.complete-image-gallery--catalog img {
  border: 1px solid rgba(31, 33, 31, 0.08);
}

.collection-subtitle {
  max-width: 1280px;
  margin: clamp(72px, 10vw, 130px) auto clamp(28px, 4vw, 48px);
  padding-top: clamp(24px, 4vw, 48px);
  border-top: 1px solid rgba(31, 33, 31, 0.12);
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(25px, 4vw, 44px);
  font-weight: 400;
}

.journal-list {
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid rgba(31, 33, 31, 0.12);
}

.journal-list article {
  display: grid;
  grid-template-columns: minmax(110px, 0.25fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 100px);
  padding: clamp(34px, 6vw, 72px) 0;
  border-bottom: 1px solid rgba(31, 33, 31, 0.12);
}

.journal-list time {
  color: rgba(31, 33, 31, 0.56);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
}

.journal-list h3 {
  margin: 0 0 18px;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 400;
}

.journal-list p {
  max-width: 760px;
  margin: 0;
  color: rgba(31, 33, 31, 0.7);
  font-size: clamp(15px, 1.7vw, 20px);
  line-height: 1.8;
}

.product-module figure.product-module-gallery {
  display: grid;
  gap: 14px;
  aspect-ratio: auto;
  overflow: visible;
}

.product-module-gallery img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.34);
}

.poster-orbit {
  position: relative;
  height: clamp(520px, 62vw, 760px);
  max-width: 1280px;
  margin: 0 auto clamp(70px, 10vw, 130px);
  overflow: hidden;
  touch-action: pan-y;
  border-top: 1px solid rgba(31, 33, 31, 0.1);
  border-bottom: 1px solid rgba(31, 33, 31, 0.1);
}

.poster-orbit figure {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(116px, 15vw, 210px);
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 14px 34px rgba(31, 33, 31, 0.14);
  pointer-events: none;
  will-change: transform;
}

.poster-orbit img {
  width: 100%;
  aspect-ratio: 0.74;
  object-fit: cover;
}

.poster-orbit figure.is-landscape {
  width: clamp(148px, 19vw, 260px);
}

.poster-orbit figure.is-landscape img {
  aspect-ratio: 1.78;
}

.poster-orbit figure.is-square img {
  aspect-ratio: 1;
}

.poster-orbit-copy {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: grid;
  place-content: center;
  pointer-events: none;
  text-align: center;
}

.poster-orbit-copy span {
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(34px, 6vw, 76px);
  font-weight: 300;
}

.poster-orbit-copy small {
  color: rgba(31, 33, 31, 0.48);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
}

.bilingual-section-title {
  display: grid;
  gap: 8px;
  font-size: clamp(34px, 5vw, 66px) !important;
}

.bilingual-section-title small,
.collection-title-en {
  display: block;
  color: rgba(31, 33, 31, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(11px, 1.2vw, 15px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
}

.about-copy > p {
  display: grid;
  gap: 13px;
}

.about-copy > p > span {
  font-size: clamp(15px, 1.45vw, 20px);
}

.about-copy-en {
  display: block;
  color: rgba(31, 33, 31, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(12px, 1.15vw, 14px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.75;
}

#about {
  position: relative;
  overflow: hidden;
  background-color: #83cfe7 !important;
  background-image: none !important;
}

#about::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: 0;
  background:
    linear-gradient(rgba(209, 240, 250, 0.14), rgba(79, 165, 202, 0.1)),
    url("assets/backgrounds/water-ripple.png") center / cover no-repeat;
  opacity: 0.68;
  filter: saturate(0.9) brightness(1.08);
  transform: scale(1.04);
  animation: water-ripple-drift 18s ease-in-out infinite alternate;
  pointer-events: none;
  will-change: transform, background-position;
}

#about::after {
  content: "";
  position: absolute;
  right: -12vw;
  bottom: 8vw;
  z-index: 0;
  width: clamp(260px, 38vw, 560px);
  height: clamp(160px, 22vw, 320px);
  border-radius: 22px;
  background:
    repeating-linear-gradient(90deg, #ef3f35 0 34px, #ef3f35 34px 68px, #f7f4e8 68px 102px, #f7f4e8 102px 136px),
    #ef3f35;
  opacity: 0.9;
  transform: rotate(7deg);
  box-shadow: 0 18px 40px rgba(39, 73, 102, 0.18);
  pointer-events: none;
}

#about > .back-home,
#about > .section-heading,
#about .about-layout,
#about .about-hobby-painting {
  position: relative;
  z-index: 2;
}

#about > .section-heading {
  max-width: 1180px;
  margin: 0 auto clamp(26px, 4vw, 48px);
  padding: clamp(18px, 2.4vw, 28px) clamp(22px, 4vw, 44px);
  border: 1px solid rgba(30, 77, 119, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.62)),
    rgba(255, 252, 244, 0.86);
  box-shadow:
    0 16px 36px rgba(28, 78, 120, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  transform: rotate(-0.7deg);
}

#about > .section-heading p {
  color: rgba(25, 74, 118, 0.62);
}

#about .bilingual-section-title > span {
  color: #174e82;
  font-size: 35px;
  line-height: 1.05;
}

#about .bilingual-section-title small {
  color: rgba(31, 72, 111, 0.58);
}

.about-camera-decor {
  position: absolute;
  top: clamp(156px, 18vw, 250px);
  right: clamp(20px, 5vw, 86px);
  z-index: 3;
  width: clamp(190px, 27vw, 390px);
  pointer-events: none;
  filter: drop-shadow(0 18px 24px rgba(35, 64, 92, 0.22));
  transform: rotate(5deg);
}

.about-edge-decor {
  position: absolute;
  z-index: 3;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 12px 16px rgba(28, 64, 96, 0.18));
  opacity: 1;
}

.about-edge-decor--pin {
  top: clamp(150px, 14vw, 220px);
  left: max(-18px, calc(50% - 770px));
  width: clamp(150px, 14vw, 220px);
  transform: rotate(-9deg);
}

.about-edge-decor--stars {
  top: clamp(135px, 13vw, 205px);
  right: max(12px, calc(50% - 750px));
  width: clamp(110px, 10vw, 155px);
  transform: rotate(12deg);
}

.about-edge-decor--glasses {
  top: clamp(300px, 27vw, 360px);
  left: max(-24px, calc(50% - 780px));
  width: clamp(150px, 15vw, 225px);
  transform: rotate(-7deg);
}

.about-edge-decor--card {
  top: clamp(260px, 24vw, 335px);
  right: max(-54px, calc(50% - 815px));
  width: clamp(210px, 21vw, 320px);
  transform: rotate(7deg);
}

#about .about-layout {
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 84px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 42px);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.18));
  box-shadow: 0 22px 60px rgba(24, 78, 125, 0.16);
}

.about-left-column {
  display: grid;
  align-content: start;
  gap: clamp(26px, 4vw, 48px);
  min-width: 0;
}

#about .about-photo-carousel {
  position: relative;
  top: 0;
  padding: clamp(14px, 2vw, 24px);
  border-radius: 24px;
  background: #fffaf0;
  box-shadow: 0 18px 34px rgba(39, 73, 102, 0.2);
  transform: rotate(-1.4deg);
}

#about .about-photo-track {
  grid-auto-columns: min(84%, 360px);
  gap: 14px;
}

#about .about-photo-track .portrait-frame {
  overflow: hidden;
  aspect-ratio: 0.78;
  border: 10px solid #fffaf0;
  border-radius: 18px;
  background: #fffaf0;
  box-shadow: 0 12px 28px rgba(27, 62, 91, 0.2);
}

#about .about-photo-controls {
  border-top: 0;
}

#about .about-copy {
  gap: 22px;
  padding: clamp(22px, 3vw, 38px);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 18px 40px rgba(38, 74, 105, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.74);
  transform: rotate(0.7deg);
}

#about .about-copy > p {
  max-width: none;
  margin: 0;
  padding: 18px 20px;
  border-radius: 18px;
  background: #fffaf0;
  box-shadow: inset 0 -1px 0 rgba(28, 74, 111, 0.08);
}

#about .about-copy > p:nth-of-type(2) {
  background: #ef3f35;
}

#about .about-copy > p:nth-of-type(2) > span {
  color: #17110e;
}

#about .about-copy > p:nth-of-type(2) .about-copy-en {
  color: rgba(23, 17, 14, 0.66);
}

#about .about-copy > p > span {
  color: #254b68;
  font-size: clamp(14px, 1.12vw, 17px);
  line-height: 1.78;
}

#about .about-copy-en {
  color: rgba(37, 75, 104, 0.62);
  font-size: clamp(11px, 0.9vw, 13px);
  line-height: 1.62;
}

#about .life-grid {
  max-width: none;
}

#about .life-grid span {
  border-color: rgba(23, 78, 130, 0.24);
  background: #eef8ff;
  color: #174e82;
}

#about .about-credentials {
  width: 100%;
  max-width: none;
  padding: 18px 22px;
  border-radius: 18px;
  background: #20252d;
  color: #f8fbff;
  box-shadow: 0 14px 26px rgba(31, 37, 45, 0.18);
  transform: rotate(-0.5deg);
}

#about .about-left-column .about-credentials section {
  grid-template-columns: minmax(90px, 0.3fr) minmax(0, 1fr);
  gap: 16px;
}

#about .about-credentials section {
  border-color: rgba(255, 255, 255, 0.14);
}

#about .about-credentials section > p {
  color: #9fd6ff;
  font-weight: 600;
}

#about .about-credentials section > div,
#about .about-credentials span,
#about .about-ai-tools strong {
  color: #f8fbff;
}

#about .about-ai-tools > p {
  color: #f6aacd;
}

#about .contact-block {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.9);
  box-shadow: inset 0 0 0 1px rgba(30, 77, 119, 0.12);
}

#about .contact-block p {
  color: #174e82;
}

#about .about-hobby-painting {
  max-width: 1180px;
  margin: clamp(60px, 9vw, 120px) auto 0;
  padding: clamp(22px, 3vw, 38px);
  border: 0;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 20px 48px rgba(28, 78, 120, 0.14);
}

#about .about-hobby-heading h3 span {
  color: #174e82;
}

#about .painting-browser {
  max-width: none;
  grid-template-columns: minmax(190px, 0.48fr) minmax(260px, 0.75fr);
  gap: clamp(20px, 4vw, 56px);
}

#about .painting-stage img {
  height: min(34vw, 360px);
}

#about .bilingual-section-title > span {
  color: #8a5798;
  font-family: Arial, sans-serif;
  font-size: 35px;
}

#about .bilingual-section-title > small {
  font-size: clamp(20px, 2vw, 25px);
}

#about .about-copy > p > span {
  color: #9c5ea1;
  font-size: clamp(16px, 1.35vw, 19px);
}

#about > .back-home {
  font-size: 18px;
}

#about > .back-home > span {
  font-size: 17px;
}

.textile-item {
  grid-template-columns: minmax(110px, 0.28fr) minmax(300px, 0.95fr) minmax(300px, 1.15fr) minmax(120px, auto);
}

.textile-year {
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1;
}

.textile-item img {
  max-height: 420px;
  object-fit: contain;
}

.textile-copy h3 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3vw, 38px);
}

.textile-copy small {
  display: block;
  margin-bottom: 20px;
  color: rgba(31, 33, 31, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
}

.collection-heading h3 {
  margin-bottom: 8px;
}

.collection-title-en {
  margin-top: 6px;
}

.collection-gallery-single {
  grid-template-columns: 1fr;
  max-width: 1440px;
}

.collection-subtitle {
  display: flex;
  align-items: baseline;
  gap: clamp(12px, 2vw, 26px);
}

.collection-subtitle small {
  color: rgba(31, 33, 31, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(11px, 1.2vw, 15px);
  font-style: italic;
  font-weight: 400;
}

.complete-image-gallery figcaption {
  display: grid;
  gap: 3px;
  padding: 10px 2px 2px;
  color: rgba(31, 33, 31, 0.72);
  font-size: 14px;
}

.complete-image-gallery figcaption small {
  color: rgba(31, 33, 31, 0.46);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  font-style: italic;
}

.textile-project--smiley .prototype-finale {
  column-span: all;
  width: 100%;
  margin-top: clamp(46px, 8vw, 100px);
  padding-top: clamp(26px, 4vw, 48px);
  border-top: 1px solid rgba(31, 33, 31, 0.14);
}

.textile-project--smiley .prototype-finale img {
  max-height: 820px;
  object-fit: contain;
}

.journal-list h3 a {
  display: inline-block;
  transition: color 180ms ease, transform 180ms ease;
}

.journal-list h3 a:hover,
.journal-list h3 a:focus-visible {
  color: var(--coral);
  transform: translateX(5px);
}

.journal-entry article {
  max-width: 900px;
  margin: 0 auto;
}

.journal-entry time {
  color: rgba(31, 33, 31, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
}

.journal-entry h2 {
  max-width: 780px;
  margin: 30px 0 48px;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 400;
  line-height: 1.18;
}

.journal-entry p {
  max-width: 760px;
  margin: 0 0 24px;
  color: rgba(31, 33, 31, 0.72);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.95;
}

.journal-entry .journal-entry-lead {
  margin-bottom: 42px;
  color: rgba(31, 33, 31, 0.9);
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(21px, 2.7vw, 34px);
  line-height: 1.7;
}

.project-data,
.project-facts {
  display: grid;
  margin: 28px 0 0;
  border-top: 1px solid rgba(31, 33, 31, 0.14);
}

.project-data > div,
.project-facts > div {
  display: grid;
  grid-template-columns: minmax(90px, 0.38fr) minmax(0, 1fr);
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(31, 33, 31, 0.1);
}

.project-data dt,
.project-facts dt,
.project-data dd,
.project-facts dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.55;
}

.project-data dt,
.project-facts dt {
  color: rgba(31, 33, 31, 0.48);
}

.project-data dd,
.project-facts dd {
  color: rgba(31, 33, 31, 0.76);
}

.diy-project header .project-summary {
  margin: 24px 0 0;
  color: rgba(31, 33, 31, 0.7);
  font-size: 14px;
  line-height: 1.85;
}

.blog-index {
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid rgba(31, 33, 31, 0.14);
}

.research-intro {
  max-width: 900px;
  margin: 0 auto clamp(48px, 7vw, 82px);
  padding: clamp(24px, 4vw, 38px) clamp(22px, 4vw, 42px);
  border-left: 1px solid var(--coral);
  background: rgba(255, 255, 255, 0.26);
  color: rgba(31, 33, 31, 0.74);
  font-family: "Songti SC", "STSong", serif;
  font-size: 15px;
  line-height: 1.5;
}

.research-intro p {
  margin: 0;
}

.research-intro-en {
  margin-top: 10px !important;
  color: rgba(31, 33, 31, 0.55);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
  line-height: 1.55;
}

#content-analysis .section-heading h2 {
  font-size: clamp(36px, 4vw, 50px);
}

#content-analysis .blog-index h3,
#content-analysis .blog-index-copy > p {
  line-height: 1.5;
}

.blog-index article {
  display: grid;
  grid-template-columns: minmax(140px, 0.28fr) minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 74px);
  align-items: start;
  padding: clamp(42px, 7vw, 84px) 0;
  border-bottom: 1px solid rgba(31, 33, 31, 0.14);
}

.blog-index-number,
.blog-index-arrow {
  margin: 6px 0 0;
  color: rgba(31, 33, 31, 0.52);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
}

.blog-index-arrow {
  font-size: 18px;
}

.blog-index h3 {
  margin: 0 0 20px;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(28px, 3vw, 35px);
  font-weight: 400;
  line-height: 1.32;
}

.blog-index h3 a,
.blog-index-arrow {
  transition: color 180ms ease, transform 180ms ease;
}

.blog-index h3 a:hover,
.blog-index h3 a:focus-visible,
.blog-index-arrow:hover,
.blog-index-arrow:focus-visible {
  color: var(--coral);
}

.blog-index-arrow:hover,
.blog-index-arrow:focus-visible {
  transform: translateX(5px);
}

.blog-index-copy > p {
  max-width: 720px;
  margin: 0;
  color: rgba(31, 33, 31, 0.68);
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.85;
}

.blog-index-meta {
  min-width: 0;
}

.blog-index-meta figure {
  width: 138px;
  margin: 0 0 16px;
  overflow: hidden;
  border: 1px solid rgba(31, 33, 31, 0.1);
  background: rgba(255, 255, 255, 0.3);
}

.blog-index-meta img {
  width: 100%;
  aspect-ratio: 1.25;
  object-fit: cover;
}

.blog-index-meta .blog-index-number {
  margin: 0;
}

.blog-entry article {
  width: calc(100% - 400px);
  max-width: 1100px;
  margin: 0 auto;
}

.blog-entry header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(31, 33, 31, 0.16);
}

.blog-entry header > p:first-child,
.blog-entry footer {
  color: rgba(31, 33, 31, 0.48);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
}

.blog-entry h2 {
  margin: 18px 0 0;
  border-color: #1507da;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(28px, 2.4vw, 35px);
  font-weight: 400;
  line-height: 1.25;
}

.blog-entry .blog-deck {
  max-width: 700px;
  margin: 0;
  color: rgba(31, 33, 31, 0.78);
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(20px, 2.5vw, 29px);
  line-height: 1.7;
}

.blog-entry article > p,
.blog-entry blockquote {
  margin: 0 0 28px;
  color: rgba(31, 33, 31, 0.76);
  font-size: clamp(10px, 0.68vw, 12px);
  line-height: 2;
}

.blog-entry h3 {
  margin: clamp(58px, 8vw, 88px) 0 28px;
  font-family: "Songti SC", "STSong", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

#article-toy-content-consumer article > h3:nth-of-type(1) {
  margin-top: 50px;
  margin-bottom: 20px;
  color: #9e0083;
  font-size: 20px;
  line-height: 30px;
}

#article-toy-content-consumer article > p {
  margin-bottom: 2px;
  font-size: 15px;
}

#article-toy-content-consumer article > p:nth-of-type(1),
#article-toy-content-consumer article > p:nth-of-type(2),
#article-toy-content-consumer article > p:nth-of-type(3),
#article-toy-content-consumer article > p:nth-of-type(4),
#article-toy-content-consumer article > p:nth-of-type(8) {
  text-indent: 2em;
}

#article-toy-content-consumer article > p:nth-of-type(5),
#article-toy-content-consumer article > p:nth-of-type(6),
#article-toy-content-consumer article > p:nth-of-type(7),
#article-toy-content-consumer article > p:nth-of-type(9) {
  color: #525252;
}

#article-toy-content-consumer article > h3:nth-of-type(2) {
  border-color: #9e0a83;
  color: #9e0083;
  font-size: 20px;
}

#article-toy-content-consumer article > h3:nth-of-type(3) {
  color: #9e0083;
  font-size: 20px;
}

#article-innovation-demand header {
  height: 110px;
}

#article-innovation-demand h2 {
  height: auto;
  margin: 10px 0;
  font-size: 35px;
  line-height: 30px;
}

#article-innovation-demand article > p {
  font-size: 15px;
}

#article-innovation-demand article > p:nth-of-type(1) {
  margin-bottom: 3px;
  text-indent: 2em;
}

#article-innovation-demand article > p:nth-of-type(2) {
  text-indent: 2em;
}

#article-innovation-demand .article-indent {
  text-indent: 2em;
}

#article-innovation-demand .article-conclusion {
  display: block;
  margin-top: 10px;
  text-indent: 2em;
}

#article-innovation-demand .article-break {
  display: block;
  margin-top: 10px;
  text-indent: 2em;
}

#article-innovation-demand article > p:nth-of-type(3) {
  margin-bottom: 2px;
  font-size: 15px;
}

#article-innovation-demand article > p:nth-of-type(4),
#article-innovation-demand article > p:nth-of-type(5),
#article-innovation-demand article > p:nth-of-type(8),
#article-innovation-demand article > p:nth-of-type(9),
#article-innovation-demand article > p:nth-of-type(14),
#article-innovation-demand article > p:nth-of-type(16) {
  margin-bottom: 2px;
}

#article-innovation-demand article > p:nth-of-type(6) {
  margin-bottom: 5px;
}

#article-innovation-demand article > p:nth-of-type(8) {
  padding-bottom: 2px;
}

#article-innovation-demand article > p:nth-of-type(10),
#article-innovation-demand article > p:nth-of-type(11),
#article-innovation-demand article > p:nth-of-type(12),
#article-innovation-demand article > p:nth-of-type(13) {
  margin-bottom: 10px;
}

.blog-entry .article-emphasis {
  font-weight: 500;
}

#article-toy-content-consumer .article-case-emphasis {
  color: #000;
}

#article-toy-content-consumer .article-end-marker {
  margin-bottom: 30px;
}

#article-toy-content-consumer .article-development-intro {
  color: #525252;
}

.blog-entry blockquote {
  margin: 48px 0;
  padding: 26px 30px;
  border-left: 2px solid var(--coral);
  background: rgba(255, 255, 255, 0.28);
  color: rgba(31, 33, 31, 0.88);
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(19px, 2.2vw, 27px);
  line-height: 1.75;
}

.blog-entry .blog-path {
  margin: 38px 0;
  padding: 24px;
  border-top: 1px solid rgba(31, 33, 31, 0.14);
  border-bottom: 1px solid rgba(31, 33, 31, 0.14);
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
}

.blog-entry .blog-path span {
  padding: 0 10px;
  color: var(--coral);
}

.blog-entry footer {
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid rgba(31, 33, 31, 0.14);
  line-height: 1.8;
}

.blog-entry footer p {
  margin: 0 0 8px;
}

.word-figure {
  margin: clamp(38px, 6vw, 68px) 0;
}

.word-figure img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(31, 33, 31, 0.08);
  background: rgba(255, 255, 255, 0.32);
}

.word-figure-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 24px);
  margin: clamp(38px, 6vw, 68px) 0;
}

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

.word-figure-group--three .word-figure:first-child {
  grid-column: 1 / -1;
}

.word-figure-group .word-figure {
  margin: 0;
}

#textile-design .textile-list {
  max-width: 1380px;
}

#textile-design .textile-item {
  grid-template-columns: 48px minmax(300px, 0.95fr) minmax(270px, 0.8fr) minmax(210px, 0.55fr);
  gap: clamp(22px, 3.5vw, 56px);
  align-items: start;
}

.textile-index {
  margin: 4px 0 0;
  color: rgba(31, 33, 31, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
}

.textile-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}

#textile-design .textile-preview img {
  width: 100%;
  height: 230px;
  max-height: none;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.3);
}

.textile-preview--single {
  grid-template-columns: 1fr;
}

.textile-note {
  min-height: 170px;
  padding: 18px;
  border: 1px solid rgba(31, 33, 31, 0.14);
  background: rgba(255, 255, 255, 0.22);
}

.textile-note span {
  color: rgba(31, 33, 31, 0.46);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  font-style: italic;
}

.textile-note p {
  margin: 48px 0 0;
  color: rgba(31, 33, 31, 0.56);
  font-size: 13px;
  line-height: 1.75;
}

.textile-project {
  padding: clamp(70px, 10vw, 140px) 0;
  border-top: 1px solid rgba(31, 33, 31, 0.14);
}

.textile-project:first-of-type {
  margin-top: clamp(30px, 5vw, 68px);
}

.textile-project .collection-heading {
  margin-bottom: clamp(28px, 4vw, 52px);
}

.textile-project .collection-heading h2 {
  color: rgba(31, 33, 31, 0.34);
  font-size: clamp(62px, 9vw, 124px);
}

.collection-note {
  display: grid;
  grid-template-columns: minmax(170px, 0.3fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 72px);
  max-width: 1280px;
  margin: 0 auto clamp(42px, 7vw, 88px);
  padding: 22px 0;
  border-top: 1px solid rgba(31, 33, 31, 0.12);
  border-bottom: 1px solid rgba(31, 33, 31, 0.12);
}

.collection-note > span {
  color: rgba(31, 33, 31, 0.46);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-style: italic;
}

.collection-note p {
  max-width: 760px;
  margin: 0;
  padding: 8px 10px;
  color: #050505;
  background: #ffb8b8;
  font-size: 16px;
  line-height: 1.85;
}

.collection-note-stack {
  max-width: 1280px;
  margin: 0 auto clamp(42px, 7vw, 88px);
}

.collection-note-stack .collection-note {
  margin-bottom: 0;
  border-bottom: 0;
}

.collection-note-stack .collection-note:last-child {
  border-bottom: 1px solid rgba(31, 33, 31, 0.12);
}

.textile-project--backpacks .collection-gallery,
.textile-project--backpacks .complete-image-gallery {
  margin-bottom: clamp(32px, 6vw, 76px);
}

#textile-design .collection-gallery,
#textile-design .complete-image-gallery {
  width: min(1460px, 100%);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

#textile-design .complete-image-gallery--catalog {
  gap: clamp(16px, 2.4vw, 34px);
}

#textile-design .collection-gallery figure,
#textile-design .complete-image-gallery figure {
  position: relative;
}

#textile-design .collection-gallery img,
#textile-design .complete-image-gallery img {
  image-rendering: auto;
}

#textile-design > .section-heading h2 {
  color: #bc1587;
  font-size: clamp(28px, 3vw, 35px);
}

#textile-design .collection-heading h3 {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  height: auto;
  margin-bottom: 3px;
  padding: 2px 8px 3px;
  color: #9e0083;
  background: #fff;
  font-size: 25px;
  line-height: 35px;
}

#textile-design .collection-title-en {
  color: #fff;
}

.textile-project--smiley .collection-heading {
  max-width: none;
  margin: 0 25px 5px;
}

.textile-project--smiley .collection-note p {
  max-width: none;
  padding: 8px 10px;
  background: #ffb8b8;
  font-size: 16px;
  line-height: 1.85;
  text-indent: 2em;
}

.about-hobby-painting {
  max-width: 900px;
  margin: clamp(80px, 12vw, 170px) auto 0;
  padding-top: clamp(48px, 7vw, 88px);
  border-top: 1px solid rgba(31, 33, 31, 0.16);
}

.about-hobby-heading {
  margin-bottom: clamp(28px, 5vw, 60px);
}

.about-hobby-heading > p {
  margin: 0 0 12px;
  color: rgba(31, 33, 31, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
}

.about-hobby-heading h3 {
  display: grid;
  gap: 5px;
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 400;
}

#about > .section-heading {
  max-width: none;
  min-height: 80px;
  margin-right: 80px;
  margin-bottom: 8px;
  margin-left: 80px;
}

#about-painting-title > span {
  font-size: 35px;
}

.about-hobby-heading h3 small {
  color: rgba(31, 33, 31, 0.48);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
}

.poster-wall {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.poster-wall figure:nth-child(-n + 2) {
  grid-column: span 3;
}

.poster-wall figure:nth-child(n + 3) {
  grid-column: span 2;
}

.poster-wall .poster-featured {
  margin-bottom: 0;
}

.painting-browser {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(260px, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  max-width: 900px;
  margin: 0 auto;
  padding-top: clamp(34px, 5vw, 62px);
  border-top: 1px solid rgba(31, 33, 31, 0.14);
}

.painting-browser .painting-stage {
  grid-column: 1;
  grid-row: 1;
}

.painting-browser .painting-titles {
  grid-column: 2;
  grid-row: 1;
}

.painting-titles {
  display: grid;
  align-content: start;
}

.painting-titles button {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid rgba(31, 33, 31, 0.14);
  background: transparent;
  color: rgba(31, 33, 31, 0.45);
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, padding-left 180ms ease;
}

.painting-titles button::before {
  content: "→";
  position: absolute;
  opacity: 0;
}

.painting-titles button:hover,
.painting-titles button:focus-visible,
.painting-titles button.is-active {
  padding-left: 28px;
  color: var(--ink);
}

.painting-titles button:hover::before,
.painting-titles button:focus-visible::before,
.painting-titles button.is-active::before {
  margin-left: -28px;
  opacity: 1;
}

.painting-titles span {
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(18px, 2vw, 26px);
}

.painting-titles small {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  font-style: italic;
}

.painting-stage {
  margin: 0;
  min-height: 0;
}

.painting-stage img {
  width: 100%;
  height: min(42vw, 460px);
  object-fit: contain;
  transition: opacity 160ms ease, transform 300ms ease;
}

.painting-stage img.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.poster-orbit {
  height: clamp(350px, 42vw, 500px);
  max-width: 1040px;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.poster-orbit figure {
  width: clamp(86px, 10vw, 146px);
}

@media (max-width: 980px) {
  .about-edge-decor {
    opacity: 1;
  }

  .about-edge-decor--pin,
  .about-edge-decor--glasses {
    width: 126px;
  }

  .about-edge-decor--card {
    width: 176px;
  }

  .hero {
    --hero-stripe-top: 132px;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .nav-links {
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .editorial-grid,
  .split-story,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-layout {
    gap: 42px;
  }

  .about-photo-carousel {
    position: relative;
    top: auto;
    padding-top: 0;
  }

  .about-photo-track {
    grid-auto-columns: min(72%, 420px);
  }

  .about-copy {
    padding-top: 0;
  }

  .graphic-catalog-heading {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .blog-entry article {
    width: 100%;
  }

  .product-module {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 20px;
  }

  .product-module figure,
  .product-module:nth-child(even) figure {
    grid-column: 2;
    order: initial;
  }

  .product-module > div {
    grid-column: 2;
  }

  .editorial-grid .section-copy {
    order: -1;
  }

  .feature-image,
  .feature-image.tall {
    aspect-ratio: 1.05;
  }

  .analysis-board {
    grid-template-columns: 1fr;
  }

  .analysis-board article {
    min-height: 230px;
  }

  .analysis-board h3 {
    margin-top: 54px;
  }

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

  .poster-orbit {
    height: clamp(350px, 48vw, 430px);
    margin-bottom: 52px;
  }

  .textile-item {
    grid-template-columns: minmax(86px, 0.22fr) minmax(230px, 0.9fr) minmax(260px, 1fr) minmax(90px, auto);
  }

  #textile-design .textile-item {
    grid-template-columns: 40px minmax(280px, 1fr) minmax(240px, 0.82fr);
  }

  #textile-design .textile-note {
    grid-column: 2 / -1;
    min-height: 120px;
  }

  .painting-browser {
    grid-template-columns: 1fr;
  }

  .painting-browser .painting-stage,
  .painting-browser .painting-titles {
    grid-column: 1;
    grid-row: auto;
  }

  .painting-stage {
    min-height: 0;
  }
}

@media (max-width: 820px) and (min-width: 761px) {
  .product-project-gallery .product-image--paired {
    height: 450px;
  }
}

@media (max-width: 700px) {
  body {
    background-attachment: scroll;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 14px 14px 10px;
    font-size: 14px;
  }

  .brand {
    gap: 0;
  }

  .brand span:last-child {
    font-size: 22px;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 24px;
    width: 100%;
    overflow-x: auto;
    padding: 0 2px 5px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

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

  .nav-links a {
    flex: 0 0 auto;
    min-width: max-content;
    font-size: 15px;
    line-height: 1.1;
  }

  .nav-links small {
    font-size: 10px;
  }

  #about > .section-heading {
    min-height: 0;
    margin-right: 0;
    margin-left: 0;
  }

  .brand span:first-child {
    display: none;
  }

  .hero {
    --hero-stripe-top: 118px;
    min-height: 100svh;
    padding-top: 104px;
  }

  .float-field {
    inset: 0;
  }

  .hero-copy::before {
    inset: -22px -28px;
  }

  .float-field .floating-work--spotlight,
  .float-field.is-organized .floating-work--spotlight {
    min-width: 72px;
  }

  .floating-work--research,
  .floating-work--product,
  .floating-work--textile {
    min-width: 44px;
  }

  .floating-work--graphic,
  .floating-work--about {
    min-width: 42px;
  }

  .floating-work--graphic-1,
  .floating-work--textile-3,
  .floating-work--textile-5,
  .floating-work--about-3,
  .floating-work--about-4 {
    min-width: 64px;
  }

  .about-edge-decor {
    opacity: 1;
  }

  .about-edge-decor--pin,
  .about-edge-decor--stars {
    top: 150px;
  }

  .about-edge-decor--glasses {
    top: 310px;
  }

  .about-edge-decor--card {
    top: 280px;
    width: 142px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-copy {
    z-index: 80;
    width: min(300px, 78vw);
    transform: translateY(14px);
  }

  .hero-copy::after {
    content: "";
    position: absolute;
    inset: -8px 8px;
    z-index: -1;
    background: radial-gradient(ellipse at center, rgba(185, 120, 67, 0.72) 0 54%, transparent 76%);
    filter: blur(10px);
  }

  .hero-role-cn {
    font-size: 13px;
  }

  .hero-role-en {
    font-size: 9px;
  }

  .work-section {
    padding: 124px 18px 78px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  .section-copy p,
  .about-copy > p {
    font-size: 17px;
  }

  .image-pair {
    grid-template-columns: 1fr 1fr;
  }

  .image-pair figure:first-child {
    transform: translateY(16px);
  }

  .poster-wall {
    grid-template-columns: 1fr;
  }

  .poster-wall figure:nth-child(n) {
    grid-column: 1;
  }

  .collection-note {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .poster-wall .poster-centered {
    width: 100%;
  }

  .poster-wall img:hover {
    transform: none;
  }

  .contact-envelope-section {
    display: block;
    min-height: auto;
    padding: 128px 16px 58px;
    overflow: hidden;
  }

  .envelope-stage {
    width: 100%;
    height: auto;
    cursor: default;
    perspective: none;
  }

  .envelope-shell,
  .envelope-back,
  .envelope-pocket,
  .envelope-flap-large {
    display: none;
  }

  .envelope-letter {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 1;
    width: 100%;
    min-height: 0;
    padding: 24px 20px;
    border-radius: 0;
    box-shadow: 0 18px 42px rgba(73, 43, 25, 0.18);
    transform: none !important;
    transition: none;
  }

  .envelope-stage.is-open .envelope-letter,
  .envelope-stage:hover .envelope-letter,
  .envelope-stage:focus-visible .envelope-letter {
    transform: none !important;
  }

  .letter-kicker {
    margin-bottom: 12px;
    font-size: 19px;
    line-height: 1.2;
  }

  .envelope-letter h2 {
    margin-bottom: 16px;
    font-size: 34px;
    line-height: 1.15;
  }

  .envelope-letter > p:not(.letter-kicker) {
    font-size: 16px;
    line-height: 1.75;
  }

  .letter-intro-en {
    font-size: 0.9em;
    line-height: 1.55;
  }

  .letter-links {
    gap: 9px;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.45;
  }

  .letter-links span,
  .letter-links a {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .contact-indent {
    padding-left: 0;
  }

  .envelope-hint {
    display: none;
  }

  .textile-item {
    grid-template-columns: 1fr 36px;
    gap: 18px;
  }

  #textile-design .textile-item {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  #textile-design .textile-index {
    grid-column: 1;
    grid-row: 1;
  }

  #textile-design .textile-preview,
  #textile-design .textile-copy,
  #textile-design .textile-note {
    grid-column: 2;
  }

  #textile-design .textile-preview {
    grid-row: 1;
    grid-template-columns: 1fr;
  }

  #textile-design .textile-copy {
    grid-row: 2;
  }

  #textile-design .textile-note {
    grid-row: 3;
  }

  #textile-design .textile-preview img {
    height: auto;
    max-height: 360px;
  }

  .blog-index article {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .blog-index-meta {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 16px;
    align-items: end;
  }

  .blog-index-meta figure {
    width: 112px;
    margin: 0;
  }

  .word-figure-group,
  .word-figure-group--three {
    grid-template-columns: 1fr;
  }

  .blog-index-arrow {
    justify-self: start;
  }

  .blog-entry blockquote {
    margin: 38px 0;
    padding: 22px 20px;
  }

  .blog-entry article > p,
  .blog-entry blockquote {
    font-size: 14px;
  }

  #article-innovation-demand header {
    height: auto;
  }

  #article-innovation-demand h2 {
    font-size: 28px;
    line-height: 1.25;
  }

  .blog-entry .blog-path span {
    padding: 0 3px;
  }

  .painting-stage img {
    height: auto;
    max-height: 72svh;
  }

  .textile-year,
  .textile-item img,
  .textile-copy {
    grid-column: 1;
  }

  .textile-year {
    grid-row: 1;
  }

  .textile-item img {
    grid-row: 2;
  }

  .textile-copy {
    grid-row: 3;
  }

  .textile-arrow {
    grid-column: 2;
    grid-row: 1;
    width: auto;
  }

  .textile-arrow span {
    display: none;
  }

  .collection-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .collection-heading h2 {
    font-size: clamp(70px, 26vw, 112px);
  }

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

  .collection-gallery figure:nth-child(n) {
    grid-column: span 1;
    aspect-ratio: 0.9;
  }

  .collection-gallery figure:nth-child(1),
  .collection-gallery figure:nth-child(6) {
    grid-column: span 2;
    aspect-ratio: 1.4;
  }

  .case-tags {
    gap: 8px 14px;
    margin-top: -18px;
    margin-bottom: 52px;
  }

  .case-chapter-header,
  .case-chapter-header div,
  .case-image-grid,
  .case-image-grid--identity {
    grid-template-columns: 1fr;
  }

  .case-chapter-header {
    gap: 14px;
  }

  .case-chapter-header div {
    gap: 16px;
  }

  .case-image--full {
    grid-column: 1;
  }

  .case-image-grid--identity .case-image--logo {
    padding-top: 0;
  }

  .case-image-grid--prototype img {
    aspect-ratio: auto;
    object-fit: contain;
  }

  .about-photo-track {
    grid-auto-columns: 86%;
  }

  .about-credentials section {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .complete-image-gallery--mixed {
    columns: 1;
  }

  .complete-image-gallery--catalog {
    grid-template-columns: 1fr;
  }

  .journal-list article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .poster-orbit {
    height: 320px;
    margin-bottom: 42px;
  }

  .poster-orbit figure {
    width: clamp(88px, 28vw, 126px);
  }

  .poster-orbit-copy span {
    font-size: 34px;
  }

  .collection-subtitle {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .collection-gallery-single {
    grid-template-columns: 1fr;
  }

  .textile-project--smiley .prototype-finale {
    column-span: none;
  }
}

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

/* Product development archive */
.product-archive {
  display: grid;
  gap: clamp(100px, 14vw, 190px);
  max-width: 1280px;
  margin: clamp(70px, 10vw, 130px) auto 0;
}

.product-line-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto 72px;
}

.product-line-intro article {
  padding: 30px 32px 34px;
  border-top: 1px solid rgba(31, 33, 31, 0.2);
  border-bottom: 1px solid rgba(31, 33, 31, 0.2);
  background: rgba(255, 255, 255, 0.5);
}

.product-line-intro article > p:first-child {
  margin: 0 0 20px;
  color: rgba(31, 33, 31, 0.52);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
}

.product-line-intro h3 {
  margin: 0 0 18px;
  color: #9e0083;
  font-size: 25px;
  font-weight: 500;
  line-height: 38px;
}

.product-line-intro article > p:last-child {
  margin: 0;
  color: rgba(31, 33, 31, 0.76);
  font-size: 15px;
  line-height: 1.75;
}

.product-line-intro + .product-archive {
  margin-top: 0;
}

.product-category {
  display: grid;
  gap: clamp(60px, 8vw, 100px);
}

.product-category-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.32fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 90px);
  align-items: end;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(31, 33, 31, 0.16);
}

.product-category-heading p,
.product-category-heading h3,
.product-project header p,
.product-project header h4 {
  margin: 0;
}

.product-project--compact-title header h4 {
  font-size: 20px;
}

.product-project--title-25 header h4 {
  font-size: 25px;
}

.product-project-summary {
  max-width: 920px;
  margin: -20px 0 36px 25%;
  color: rgba(31, 33, 31, 0.7);
  font-size: 15px;
  line-height: 1.7;
}

.product-project-gallery .product-image--full-row {
  grid-column: 1 / -1;
}

.product-project-gallery .product-image--paired {
  height: 300px;
}

.product-project-gallery .product-image--paired img,
.product-project-gallery--equal > figure:not(.product-image--full-row) img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-project-gallery--equal > figure:not(.product-image--full-row) {
  height: 360px;
}

.product-image--captioned {
  gap: 12px;
}

.product-image--captioned figcaption {
  width: 100%;
  padding: 0 4px 12px;
  color: rgba(31, 33, 31, 0.68);
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

.product-image-wide {
  margin: 0 0 36px;
  background: rgba(255, 255, 255, 0.5);
}

.product-image-wide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-category-heading p,
.product-project header p {
  color: rgba(31, 33, 31, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
}

.product-category-heading h3 {
  color: #9e0083;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 400;
}

.product-project {
  display: grid;
  gap: clamp(26px, 4vw, 48px);
  padding-top: clamp(34px, 5vw, 64px);
  border-top: 1px solid rgba(31, 33, 31, 0.12);
}

.product-project > header {
  display: grid;
  grid-template-columns: minmax(100px, 0.2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: baseline;
}

.product-project header h4 {
  font-size: clamp(25px, 3.4vw, 42px);
  font-weight: 400;
}

.product-project-note {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  padding: 22px 0;
  border-top: 1px solid rgba(31, 33, 31, 0.12);
  border-bottom: 1px solid rgba(31, 33, 31, 0.12);
}

.product-project-note > span {
  color: rgba(31, 33, 31, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
}

.product-project-note div,
.product-copy-grid {
  display: grid;
  gap: 14px;
}

.product-project-note p,
.product-copy-grid p {
  margin: 0;
  color: rgba(31, 33, 31, 0.72);
  font-size: 15px;
  line-height: 1.8;
}

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

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

.product-copy-grid p {
  padding: 18px;
  background: rgba(255, 255, 255, 0.48);
}

.product-copy-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #9e0083;
  font-weight: 500;
}

.product-project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: clamp(12px, 2vw, 24px);
  align-items: start;
}

.product-project-gallery figure {
  display: grid;
  margin: 0;
  place-items: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.46);
}

.product-project-gallery img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-image--centered-board {
  padding: clamp(10px, 1.6vw, 20px);
}

.product-project-gallery .product-image--centered-board img {
  width: auto;
  max-width: 100%;
  max-height: min(78vh, 760px);
  margin: auto;
}

.product-project-gallery .product-image--large-vertical img {
  width: min(100%, 920px);
  max-height: none;
}

#product-dev > .section-heading {
  margin-bottom: 18px;
}

#product-dev > .section-heading h2 {
  font-size: 35px;
}

#product-diy-title {
  font-size: 25px;
}

#product-ai-title {
  font-size: 35px;
}

#product-dev .product-category--diy > .product-project--featured h4 {
  font-size: 35px;
}

#product-dev .product-category--ai > .product-project--featured {
  border-top: 0;
}

#product-dev .product-category--ai > .product-project--featured h4 {
  font-size: 25px;
}

#product-dev .product-category--diy > .product-project--featured {
  padding-top: 24px;
}

/* Textile project-specific layout */
.textile-project--preschool .complete-image-gallery figure:nth-child(8) {
  display: grid;
  grid-column: 1 / -1;
  place-items: center;
}

.textile-project--preschool .complete-image-gallery figure:nth-child(8) img {
  width: min(200px, 100%);
}

.textile-project--school .complete-image-gallery {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.textile-project--school .complete-image-gallery figure {
  grid-column: span 6;
}

.textile-project--school .complete-image-gallery figure:nth-child(n + 6) {
  grid-column: span 6;
}

.textile-project--school .complete-image-gallery figure:nth-child(2),
.textile-project--school .complete-image-gallery figure:nth-child(3),
.textile-project--school .complete-image-gallery figure:nth-child(5),
.textile-project--smiley .complete-image-gallery figure,
.textile-project--zingroo .complete-image-gallery figure {
  background: #fff;
}

.textile-project--school .complete-image-gallery figure:nth-child(2) img,
.textile-project--school .complete-image-gallery figure:nth-child(3) img,
.textile-project--school .complete-image-gallery figure:nth-child(5) img,
.textile-project--smiley .complete-image-gallery img,
.textile-project--zingroo .complete-image-gallery img {
  background: #fff;
}

.stationery-project-note {
  display: grid;
  gap: 10px;
}

.stationery-project-note > span {
  color: rgba(31, 33, 31, 0.68);
  font-family: inherit;
  font-size: inherit;
  font-style: normal;
}

.stationery-project-note > .note-detail {
  font-size: 0.9em;
}

@media (max-width: 760px) {
  .about-camera-decor {
    position: relative;
    top: auto;
    right: auto;
    display: block;
    width: min(74vw, 300px);
    margin: -12px auto 20px;
    transform: rotate(3deg);
  }

  #about::after {
    right: -36vw;
    bottom: 18vw;
    opacity: 0.55;
  }

  #about > .section-heading {
    margin-right: 18px;
    margin-left: 18px;
    transform: none;
  }

  #about .about-layout {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    padding: 18px;
  }

  #about .about-photo-carousel,
  #about .about-copy,
  #about .about-credentials {
    position: relative;
    top: auto;
    transform: none;
  }

  #about .about-photo-track {
    grid-auto-columns: 82%;
  }

  #about .about-copy {
    padding: 18px;
  }

  #about .painting-browser {
    grid-template-columns: 1fr;
  }

  #about .painting-browser .painting-stage,
  #about .painting-browser .painting-titles {
    grid-column: auto;
    grid-row: auto;
  }

  #about .painting-stage img {
    height: auto;
  }

  .product-line-intro {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    gap: 16px;
    margin-bottom: 48px;
  }

  .product-line-intro article {
    padding: 24px 22px 26px;
  }

  .product-project-summary {
    margin: -8px 0 28px;
  }
  .product-category-heading,
  .product-project > header,
  .product-project-note,
  .product-copy-grid,
  .product-copy-grid--three {
    grid-template-columns: 1fr;
  }

  .product-archive {
    gap: 100px;
  }

  .product-category {
    gap: 54px;
  }
}

/* Final about-section collage overrides */
#about > .section-heading {
  max-width: 1180px;
  min-height: 0;
  margin: 0 auto clamp(26px, 4vw, 48px);
  padding: clamp(18px, 2.4vw, 28px) clamp(22px, 4vw, 44px);
  border: 1px solid rgba(30, 77, 119, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.62)),
    rgba(255, 252, 244, 0.86);
  box-shadow:
    0 16px 36px rgba(28, 78, 120, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  transform: rotate(-0.7deg);
}

#about .bilingual-section-title > span {
  color: #174e82;
  font-size: 35px;
}

@media (max-width: 760px) {
  #about > .section-heading {
    margin-right: 18px;
    margin-left: 18px;
    transform: none;
  }
}

/* Graphic Design uses the shared product-development cloth background. */
#graphic-design {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

#graphic-design::before {
  content: none;
}

#graphic-design > * {
  position: relative;
  z-index: 1;
}

@keyframes water-ripple-drift {
  0% {
    background-position: 47% 48%;
    transform: scale(1.04) translate3d(-1.2%, -0.8%, 0);
  }
  50% {
    background-position: 53% 52%;
    transform: scale(1.09) translate3d(1%, 0.7%, 0);
  }
  100% {
    background-position: 49% 55%;
    transform: scale(1.06) translate3d(-0.4%, 1.1%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  #about::before,
  #graphic-design::before {
    animation: none;
  }

  #about::before {
    transform: scale(1.04);
  }

  #graphic-design::before {
    transform: none;
  }
}

/* Visual motion refresh */
:root {
  --pointer-x: 50vw;
  --pointer-y: 50vh;
  --pointer-ratio-x: 0.5;
  --pointer-ratio-y: 0.5;
  --hero-depth-x: 0px;
  --hero-depth-y: 0px;
  --scroll-ratio: 0;
  --scroll-y: 0px;
  --hero-stage-rotate-y: 0deg;
  --title-halo-scale: 1;
  --hero-grid-x: 0px;
  --hero-grid-y: 0px;
  --contact-drift-y: 0px;
  --section-drift-y: 0px;
  --section-grid-x: 0px;
  --section-grid-y: 0px;
  --star-a-x: 0px;
  --star-a-y: 0px;
  --star-b-x: 0px;
  --star-b-y: 0px;
  --section-light-x: 50%;
  --section-light-y: 50%;
  --edition-pointer-x: -9px;
  --edition-pointer-y: -7px;
  --edition-depth-shift: 0px;
}

.hero {
  --hero-paper-glow: rgba(245, 252, 255, 0.72);
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.82), transparent 18vw),
    linear-gradient(180deg, rgba(236, 250, 255, 0.32), rgba(195, 225, 238, 0.22)),
    url("assets/backgrounds/elione-ice-bg.jpg") center / cover no-repeat;
  background-size: auto, auto, cover;
}

.hero::before {
  inset: -7%;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(233, 248, 255, 0.72), rgba(255, 255, 255, 0.5) 44%, rgba(228, 246, 255, 0.72)),
    url("assets/backgrounds/elione-academy-depth.jpg") center / cover no-repeat;
  opacity: 0.2;
  mix-blend-mode: multiply;
  transform: translate3d(var(--hero-depth-x), var(--hero-depth-y), 0) scale(1.1);
  animation: hero-depth-drift 20s ease-in-out infinite alternate;
}

.hero::after {
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.72) 0 14%, rgba(255, 255, 255, 0.16) 32%, transparent 56%),
    linear-gradient(90deg, rgba(97, 145, 170, 0.1) 0 1px, transparent 1px 34px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 30px);
  background-position:
    center,
    var(--hero-grid-x) 0,
    0 var(--hero-grid-y);
  pointer-events: none;
}

.float-field::before,
.float-field::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.float-field::before {
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(92, 143, 169, 0.28), transparent 17vw),
    radial-gradient(circle at 28% 74%, rgba(255, 255, 255, 0.56), transparent 20vw);
  opacity: 0.78;
  mix-blend-mode: screen;
  transition: opacity 220ms ease;
}

.float-field::after {
  background-image:
    radial-gradient(circle, rgba(90, 127, 151, 0.52) 0 1px, transparent 1.9px),
    radial-gradient(circle, rgba(255, 255, 255, 0.88) 0 1px, transparent 1.8px);
  background-position:
    var(--star-a-x) var(--star-a-y),
    var(--star-b-x) var(--star-b-y);
  background-size: 46px 46px, 72px 72px;
  opacity: 0.28;
  animation: star-field-drift 18s linear infinite;
}

.hero-copy {
  filter: drop-shadow(0 20px 36px rgba(80, 122, 146, 0.18));
  animation: title-settle 900ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -54px -74px;
  z-index: -1;
  display: block;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.74) 0 36%, rgba(211, 238, 249, 0.32) 55%, transparent 72%);
  filter: blur(7px);
  transform: scale(var(--title-halo-scale));
  animation: title-halo 5.4s ease-in-out infinite alternate;
}

.hero h1 {
  color: #6a8da5;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.92),
    0 8px 28px rgba(75, 126, 154, 0.24);
}

.hero-role-cn,
.hero-role-en {
  color: rgba(74, 112, 136, 0.78);
}

.floating-work {
  transition:
    width 420ms ease,
    opacity 240ms ease,
    filter 240ms ease;
}

.floating-work::after {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border-radius: 22px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.74), transparent 68%);
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 220ms ease, transform 220ms ease;
}

.floating-work img {
  transform: translateZ(0);
  animation: floating-breathe 5.8s ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
  transition: filter 220ms ease, transform 220ms ease;
}

.floating-work:hover::after,
.floating-work.is-active::after,
.floating-work.is-launching::after {
  opacity: 1;
  transform: scale(1);
}

.floating-work:hover img,
.floating-work.is-active img {
  filter:
    drop-shadow(0 18px 24px rgba(67, 103, 128, 0.26))
    saturate(1.12)
    contrast(1.04);
  transform: translateY(-7px) scale(1.045);
}

.floating-work.is-launching img {
  transform: translateY(-14px) scale(1.16) rotate(2deg);
}

.contact-envelope-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.54), transparent 24vw),
    url("assets/backgrounds/elione-ice-bg.jpg") center / cover no-repeat;
}

.contact-envelope-section::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    linear-gradient(90deg, rgba(116, 166, 191, 0.08) 0 1px, transparent 1px 36px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 32px);
  transform: translateY(var(--contact-drift-y));
  pointer-events: none;
}

.envelope-stage {
  transform-style: preserve-3d;
  transition: transform 360ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.envelope-stage:hover,
.envelope-stage:focus-visible,
.envelope-stage.is-open {
  transform: translateY(-10px) rotateX(4deg) rotateY(var(--hero-stage-rotate-y));
}

.work-section {
  isolation: isolate;
  overflow: hidden;
}

.work-section::before,
.work-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.work-section::before {
  background:
    radial-gradient(circle at var(--section-light-x) var(--section-light-y), rgba(255, 255, 255, 0.28), transparent 24vw),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 42px),
    linear-gradient(0deg, rgba(31, 33, 31, 0.05) 0 1px, transparent 1px 38px);
  background-position:
    center,
    var(--section-grid-x) 0,
    0 var(--section-grid-y);
  mix-blend-mode: soft-light;
  opacity: 0.9;
}

.work-section::after {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.8) 0 1px, transparent 1.9px) 0 0 / 56px 56px,
    radial-gradient(circle, rgba(31, 33, 31, 0.1) 0 1px, transparent 1.8px) 24px 18px / 88px 88px;
  transform: translateY(var(--section-drift-y));
  opacity: 0.14;
}

.work-section > * {
  position: relative;
  z-index: 1;
}

.work-section.is-active .back-home {
  animation: route-link-in 420ms ease both;
}

.motion-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 680ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 680ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 680ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.motion-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.section-heading.motion-reveal,
.collection-heading.motion-reveal,
.product-category-heading.motion-reveal {
  transform: translate3d(-18px, 28px, 0);
}

.section-heading.motion-reveal.is-visible,
.collection-heading.motion-reveal.is-visible,
.product-category-heading.motion-reveal.is-visible {
  transform: translate3d(0, 0, 0);
}

.motion-tilt {
  position: relative;
  transform-style: preserve-3d;
  transition:
    transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 260ms ease,
    filter 260ms ease;
  will-change: transform;
}

.motion-tilt::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  background: radial-gradient(circle at var(--shine-x, 50%) var(--shine-y, 50%), rgba(255, 255, 255, 0.34), transparent 42%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.motion-tilt:hover,
.motion-tilt:focus-within {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-4px);
  filter: saturate(1.04) contrast(1.02);
  box-shadow: 0 22px 54px rgba(31, 33, 31, 0.15);
}

.motion-tilt:hover::after,
.motion-tilt:focus-within::after {
  opacity: 1;
}

.product-project,
.diy-document-grid article,
.textile-note,
.research-intro,
.blog-entry blockquote {
  backdrop-filter: blur(3px);
}

.product-project-gallery figure,
.diy-project-gallery figure,
.collection-gallery figure,
.case-image,
.complete-image-gallery figure,
.poster-wall figure,
.word-figure,
.word-figure-group .word-figure,
.blog-index-meta figure {
  border-radius: 10px;
  box-shadow: 0 12px 34px rgba(31, 33, 31, 0.1);
}

.product-project-gallery img,
.diy-project-gallery img,
.collection-gallery img,
.case-image img,
.complete-image-gallery img,
.poster-wall img,
.word-figure img,
.blog-index-meta img,
.textile-preview img,
.product-module-gallery img {
  transition:
    transform 520ms cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 360ms ease,
    box-shadow 360ms ease;
}

.product-project-gallery figure:hover img,
.diy-project-gallery figure:hover img,
.collection-gallery figure:hover img,
.case-image:hover img,
.complete-image-gallery figure:hover img,
.poster-wall figure:hover img,
.word-figure:hover img,
.blog-index article:hover .blog-index-meta img,
.textile-item:hover .textile-preview img,
.product-module:hover img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.03);
}

.blog-index article,
.textile-item,
.product-module,
.case-chapter,
.diy-project,
.product-project {
  transition:
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.blog-index article:hover,
.textile-item:hover,
.product-module:hover,
.diy-project:hover,
.product-project:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(158, 0, 131, 0.2);
}

.blog-index article:hover .blog-index-arrow,
.textile-item:hover .textile-arrow,
.product-module:hover .product-module-cta b {
  transform: translateX(10px);
}

.about-photo-track .portrait-frame {
  transition: transform 360ms ease, filter 360ms ease, box-shadow 360ms ease;
}

.about-photo-track .portrait-frame:hover {
  transform: translateY(-8px) rotate(1.4deg);
  filter: saturate(1.06) contrast(1.03);
}

#about .about-camera-decor,
#about .about-edge-decor {
  animation: decor-float 7s ease-in-out infinite alternate;
}

#about .about-edge-decor--stars {
  animation-duration: 5.6s;
}

#about .about-edge-decor--card {
  animation-duration: 8.2s;
}

.poster-orbit {
  mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.poster-orbit-copy {
  text-shadow: 0 10px 32px rgba(255, 255, 255, 0.9);
}

.painting-stage {
  overflow: hidden;
  border-radius: 18px;
}

.painting-stage img {
  filter: drop-shadow(0 18px 34px rgba(31, 33, 31, 0.12));
}

.painting-titles button {
  position: relative;
}

.painting-titles button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -1px;
  height: 1px;
  background: currentColor;
  transition: right 220ms ease;
}

.painting-titles button:hover::after,
.painting-titles button:focus-visible::after,
.painting-titles button.is-active::after {
  right: 0;
}

@keyframes hero-depth-drift {
  0% {
    background-position: 48% 50%;
    transform: translate3d(calc(var(--hero-depth-x) - 8px), calc(var(--hero-depth-y) - 4px), 0) scale(1.1);
  }
  100% {
    background-position: 53% 52%;
    transform: translate3d(calc(var(--hero-depth-x) + 8px), calc(var(--hero-depth-y) + 5px), 0) scale(1.14);
  }
}

@keyframes star-field-drift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-56px, 48px, 0);
  }
}

@keyframes title-settle {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 20px 36px rgba(80, 122, 146, 0.18));
  }
}

@keyframes title-halo {
  0% {
    opacity: 0.72;
    transform: scale(0.96);
  }
  100% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes floating-breathe {
  0%,
  100% {
    transform: translateY(0) rotate(0.001deg);
  }
  50% {
    transform: translateY(-4px) rotate(0.001deg);
  }
}

@keyframes route-link-in {
  0% {
    opacity: 0;
    transform: translateX(-14px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes decor-float {
  0% {
    translate: 0 0;
  }
  100% {
    translate: 0 -12px;
  }
}

@media (max-width: 700px) {
  .hero {
    background-position: center;
  }

  .hero::before {
    opacity: 0.14;
  }

  .hero-copy::before {
    inset: -34px -38px;
  }

  .hero-copy::after {
    background:
      radial-gradient(ellipse at center, rgba(255, 255, 255, 0.82) 0 44%, rgba(183, 222, 239, 0.48) 58%, transparent 78%);
    filter: blur(14px);
  }

  .float-field::after {
    background-size: 54px 54px, 92px 92px;
    opacity: 0.2;
  }

  .motion-reveal {
    transform: translate3d(0, 22px, 0);
    filter: blur(5px);
  }

  .motion-tilt:hover,
  .motion-tilt:focus-within {
    transform: translateY(-3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .float-field::after,
  .hero-copy,
  .hero-copy::before,
  .floating-work img,
  #about .about-camera-decor,
  #about .about-edge-decor {
    animation: none !important;
  }

  .motion-reveal,
  .motion-reveal.is-visible,
  .motion-tilt,
  .motion-tilt:hover,
  .motion-tilt:focus-within,
  .floating-work img,
  .floating-work:hover img,
  .floating-work.is-active img {
    transform: none !important;
    filter: none !important;
    transition-duration: 0.01ms !important;
  }
}

/* Keep About page in its original static collage form. */
#about .motion-reveal,
#about .motion-reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

#about .motion-tilt,
#about .motion-tilt:hover,
#about .motion-tilt:focus-within {
  transform: none;
  filter: none;
  box-shadow: inherit;
  transition: none;
}

#about .motion-tilt::after {
  content: none;
}

#about .about-camera-decor,
#about .about-edge-decor {
  animation: none;
}

#about .about-photo-track .portrait-frame,
#about .about-photo-track .portrait-frame:hover {
  transform: none;
  filter: none;
}

#about .painting-stage {
  overflow: visible;
  border-radius: 0;
}

#about .painting-stage img {
  filter: none;
}

/* Homepage renaissance revision */
body.detail-view .home-about-section,
body.detail-view .home-burn-effect {
  display: none;
}

.home-burn-effect {
  position: fixed;
  inset: 0;
  z-index: 35;
  pointer-events: none;
  opacity: var(--burn-opacity, 0);
  mix-blend-mode: screen;
}

.home-burn-effect::before,
.home-burn-effect::after {
  content: "";
  position: absolute;
  inset: -18vmax;
  transform: translate3d(0, 0, 0);
  clip-path: circle(var(--burn-radius, 0vmax) at 50% 50%);
  pointer-events: none;
}

.home-burn-effect::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 28%, rgba(255, 250, 228, 0.86) 35%, rgba(255, 162, 72, 0.72) 43%, rgba(78, 49, 31, 0.58) 54%, transparent 66%),
    radial-gradient(circle at 41% 46%, rgba(255, 255, 255, 0.68), transparent 10%),
    radial-gradient(circle at 63% 54%, rgba(255, 120, 54, 0.44), transparent 18%);
  filter: blur(7px) contrast(1.18);
}

.home-burn-effect::after {
  background:
    conic-gradient(from 18deg at 50% 50%, rgba(255, 255, 255, 0.18), rgba(255, 111, 42, 0.42), rgba(25, 23, 20, 0.36), rgba(255, 236, 198, 0.46), rgba(255, 123, 53, 0.34), rgba(255, 255, 255, 0.18)),
    repeating-radial-gradient(circle at 50% 50%, transparent 0 1.8vmax, rgba(255, 255, 255, 0.14) 1.9vmax 2.1vmax, transparent 2.2vmax 3.6vmax);
  filter: blur(16px) saturate(1.4);
  opacity: 0.8;
  animation: burn-edge-drift 2.8s linear infinite;
}

.hero {
  min-height: 100svh;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 246, 218, 0.22), transparent 18vw),
    linear-gradient(180deg, rgba(24, 18, 12, 0.18), rgba(42, 25, 16, 0.32)),
    url("assets/backgrounds/elione-academy-home.jpg") center / cover no-repeat;
  background-size: auto, auto, cover;
}

.hero::before {
  inset: -5%;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(255, 236, 192, 0.12), rgba(255, 255, 255, 0.08), rgba(89, 52, 31, 0.14)),
    url("assets/backgrounds/elione-academy-home.jpg") center / cover no-repeat;
  opacity: 0.42;
  mix-blend-mode: soft-light;
  filter: saturate(1.08) contrast(1.04);
  transform: translate3d(var(--hero-depth-x), var(--hero-depth-y), 0) scale(1.08);
  animation: hero-depth-drift 24s ease-in-out infinite alternate;
}

.hero::after {
  background:
    radial-gradient(ellipse at center, rgba(250, 245, 225, 0.48) 0 12%, rgba(42, 28, 18, 0.1) 30%, transparent 58%),
    linear-gradient(90deg, rgba(255, 246, 218, 0.08) 0 1px, transparent 1px 34px),
    linear-gradient(0deg, rgba(35, 24, 17, 0.08) 0 1px, transparent 1px 30px);
  background-position:
    center,
    var(--hero-grid-x) 0,
    0 var(--hero-grid-y);
}

.hero-copy {
  width: min(540px, 72vw);
  padding: clamp(14px, 2.5vw, 26px);
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center, rgba(255, 251, 235, 0.62), rgba(255, 251, 235, 0.24) 48%, transparent 72%);
  filter: drop-shadow(0 24px 42px rgba(34, 22, 15, 0.34));
}

.hero-copy::before {
  inset: -32px -56px;
  background:
    radial-gradient(ellipse at center, rgba(255, 250, 230, 0.56) 0 36%, rgba(255, 196, 108, 0.2) 56%, transparent 72%);
}

.hero-star-logo {
  display: block;
  width: auto;
  max-width: min(455px, 66vw);
  max-height: min(310px, 44vh);
  height: auto;
  opacity: 0.94;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.7))
    drop-shadow(0 12px 20px rgba(33, 25, 20, 0.32));
}

.hero h1,
.hero-role-cn,
.hero-role-en {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.float-field::before {
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 236, 190, 0.24), transparent 17vw),
    radial-gradient(circle at 28% 74%, rgba(255, 255, 255, 0.2), transparent 20vw);
  mix-blend-mode: screen;
}

.float-field::after {
  background-image:
    radial-gradient(circle, rgba(255, 238, 202, 0.4) 0 1px, transparent 1.9px),
    radial-gradient(circle, rgba(91, 52, 35, 0.32) 0 1px, transparent 1.8px);
  opacity: 0.22;
}

.floating-work img {
  filter: drop-shadow(0 16px 22px rgba(30, 20, 14, 0.32));
}

.contact-envelope-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(34, 22, 14, 0.55), rgba(34, 22, 14, 0.28)),
    url("assets/backgrounds/elione-academy-home.jpg") center / cover fixed;
}

.contact-envelope-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 239, 205, 0.22), transparent 24vw),
    radial-gradient(circle at 76% 82%, rgba(33, 20, 14, 0.28), transparent 22vw),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 7px);
  mix-blend-mode: soft-light;
}

.home-about-section {
  min-height: 100svh;
  padding: clamp(96px, 12vw, 156px) clamp(18px, 5vw, 72px);
  color: #231914;
}

.home-about-inner {
  position: relative;
  z-index: 2;
  max-width: 1220px;
  margin: 0 auto;
}

.home-about-heading {
  display: grid;
  grid-template-columns: minmax(120px, 0.32fr) minmax(0, 1fr);
  gap: clamp(20px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(28px, 5vw, 64px);
  color: #fff7df;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

.home-about-heading p {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
  color: rgba(255, 247, 223, 0.76);
}

.home-about-heading h2 {
  display: grid;
  gap: 8px;
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(34px, 5vw, 70px);
  font-weight: 400;
  line-height: 1.04;
}

.home-about-heading small {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.8vw, 24px);
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 247, 223, 0.74);
}

.home-about-section .about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(420px, 1fr);
  gap: clamp(32px, 6vw, 82px);
  max-width: none;
  padding: clamp(22px, 3vw, 42px);
  border: 1px solid rgba(255, 238, 200, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 248, 230, 0.9), rgba(255, 244, 220, 0.7)),
    rgba(255, 250, 236, 0.78);
  box-shadow: 0 28px 80px rgba(18, 12, 8, 0.34);
  backdrop-filter: blur(10px);
}

.home-about-section .about-photo-carousel {
  position: relative;
  top: 0;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 250, 236, 0.88);
  box-shadow: 0 18px 42px rgba(35, 22, 14, 0.18);
}

.home-about-section .about-photo-track {
  grid-auto-columns: min(76%, 350px);
}

.home-about-section .about-photo-track .portrait-frame {
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(35, 22, 14, 0.2);
}

.home-about-section .about-credentials,
.home-about-section .about-copy,
.home-about-section .contact-block {
  background: rgba(255, 250, 236, 0.9);
  box-shadow: 0 14px 34px rgba(35, 22, 14, 0.12);
}

.home-about-section .about-credentials {
  padding: 18px 20px;
  border-radius: 16px;
}

.home-about-section .about-copy {
  padding: clamp(18px, 3vw, 34px);
  border-radius: 20px;
}

.home-about-section .about-copy > p {
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.45);
}

.home-about-section .life-grid span {
  border-color: rgba(79, 52, 35, 0.22);
  background: rgba(255, 239, 205, 0.72);
}

@keyframes burn-edge-drift {
  0% {
    rotate: 0deg;
    filter: blur(16px) saturate(1.3);
  }
  50% {
    filter: blur(20px) saturate(1.65);
  }
  100% {
    rotate: 18deg;
    filter: blur(16px) saturate(1.3);
  }
}

@media (max-width: 980px) {
  .home-about-section .about-layout,
  .home-about-heading {
    grid-template-columns: 1fr;
  }

  .contact-envelope-section {
    background-attachment: scroll;
  }
}

@media (max-width: 700px) {
  .hero-copy {
    width: min(330px, 86vw);
    padding: 18px;
  }

  .hero-star-logo {
    width: auto;
    max-width: min(282px, 78vw);
    max-height: 245px;
  }

  .home-about-section {
    padding: 112px 16px 70px;
  }

  .home-about-section .about-layout {
    padding: 16px;
    border-radius: 18px;
  }

  .home-about-section .about-photo-track {
    grid-auto-columns: min(82%, 300px);
  }

  .home-burn-effect::before {
    filter: blur(10px) contrast(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-burn-effect {
    display: none;
  }
}

/* Typewriter contact interaction */
.typewriter-section {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 112px 20px 74px;
}

.typewriter-stage {
  position: relative;
  width: min(760px, 92vw);
  min-height: clamp(560px, 72vw, 760px);
  outline: none;
  cursor: pointer;
  isolation: isolate;
  perspective: 1200px;
}

.typewriter-paper {
  position: absolute;
  left: 50%;
  bottom: clamp(198px, 27vw, 300px);
  z-index: 2;
  width: min(475px, 66vw);
  min-height: clamp(390px, 54vw, 560px);
  padding: clamp(30px, 4.2vw, 48px) clamp(24px, 3.5vw, 42px);
  border: 1px solid rgba(73, 57, 39, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.46), transparent 42%),
    url("assets/typewriter/typewriter-paper-texture.jpg") center / cover no-repeat,
    #f5efe3;
  box-shadow:
    0 22px 48px rgba(27, 20, 14, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.46);
  color: #211a16;
  font-family: "Courier New", Courier, monospace;
  transform: translate(-50%, 46%) rotateX(4deg);
  transform-origin: bottom center;
  transition:
    transform 980ms cubic-bezier(0.18, 0.86, 0.2, 1),
    box-shadow 420ms ease,
    filter 420ms ease;
}

.typewriter-paper::before {
  content: "elione.2026";
  position: absolute;
  top: 18px;
  left: 24px;
  right: 24px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(33, 26, 22, 0.64);
  color: rgba(33, 26, 22, 0.68);
  font-size: 11px;
  letter-spacing: 0;
}

.typewriter-paper::after {
  content: "portfolio / contact";
  position: absolute;
  top: 18px;
  right: 24px;
  color: rgba(33, 26, 22, 0.62);
  font-size: 11px;
}

.typewriter-stage.is-open .typewriter-paper,
.typewriter-stage:hover .typewriter-paper,
.typewriter-stage:focus-visible .typewriter-paper {
  transform: translate(-50%, 0) rotateX(0deg);
  box-shadow:
    0 28px 68px rgba(27, 20, 14, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.56);
  filter: contrast(1.02);
}

.typewriter-machine {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 5;
  width: min(760px, 94vw);
  height: auto;
  transform: translateX(-50%);
  filter: drop-shadow(0 30px 42px rgba(25, 16, 10, 0.34));
  pointer-events: none;
}

.typewriter-roller {
  position: absolute;
  left: 50%;
  bottom: clamp(214px, 28vw, 314px);
  z-index: 6;
  width: min(610px, 78vw);
  height: 18px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(30, 24, 21, 0.86), rgba(238, 226, 207, 0.8) 8%, rgba(87, 73, 64, 0.82) 18%, rgba(226, 214, 196, 0.88) 50%, rgba(65, 54, 48, 0.86) 82%, rgba(27, 22, 20, 0.9));
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.22) inset,
    0 12px 18px rgba(24, 17, 12, 0.24);
  transform: translateX(-50%);
  pointer-events: none;
}

.typewriter-caret {
  position: absolute;
  left: calc(50% - min(205px, 28vw));
  bottom: clamp(490px, 65vw, 658px);
  z-index: 7;
  width: 9px;
  height: 18px;
  border-radius: 1px;
  background: rgba(28, 22, 18, 0.76);
  opacity: 0;
  transform: translateX(0);
  pointer-events: none;
}

.typewriter-stage.is-open .typewriter-caret,
.typewriter-stage:hover .typewriter-caret,
.typewriter-stage:focus-visible .typewriter-caret {
  animation: typewriter-caret-run 2.4s steps(18, end) both;
}

.typewriter-stage.is-open .typewriter-machine,
.typewriter-stage:hover .typewriter-machine,
.typewriter-stage:focus-visible .typewriter-machine {
  animation: typewriter-body-tap 760ms steps(4, end) 3;
}

.typewriter-paper .letter-kicker {
  margin-top: 16px;
  margin-bottom: 22px;
  font-family: "Courier New", Courier, monospace;
  font-size: 13px;
  line-height: 1;
}

.typewriter-paper h2 {
  margin: 0 0 16px;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(28px, 4.6vw, 42px);
  font-weight: 400;
}

.typewriter-paper h2 span {
  display: block;
  margin-top: 6px;
  color: rgba(33, 26, 22, 0.56);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.38em;
  font-style: normal;
  font-weight: 400;
}

.typewriter-paper > p:not(.letter-kicker) {
  margin: 0;
  color: rgba(33, 26, 22, 0.7);
  font-size: clamp(13px, 1.45vw, 15px);
  line-height: 1.8;
}

.typewriter-paper .letter-intro-en {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.78em;
  font-style: normal;
}

.typewriter-paper .letter-links {
  font-size: clamp(12px, 1.25vw, 14px);
}

.typewriter-hint {
  color: rgba(255, 247, 223, 0.66);
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

@keyframes typewriter-caret-run {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  8% {
    opacity: 1;
  }
  86% {
    opacity: 1;
    transform: translateX(min(350px, 48vw));
  }
  100% {
    opacity: 0;
    transform: translateX(min(350px, 48vw));
  }
}

@keyframes typewriter-body-tap {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(2px);
  }
}

@media (max-width: 700px) {
  .typewriter-section {
    padding: 108px 14px 52px;
  }

  .typewriter-stage {
    width: 100%;
    min-height: 610px;
  }

  .typewriter-paper {
    bottom: 188px;
    width: min(330px, 86vw);
    min-height: 440px;
    padding: 34px 22px 28px;
    transform: translate(-50%, 38%);
  }

  .typewriter-machine {
    width: min(440px, 112vw);
  }

  .typewriter-roller {
    bottom: 196px;
    width: min(350px, 90vw);
  }

  .typewriter-caret {
    bottom: 520px;
  }

  .typewriter-paper .letter-links {
    overflow-wrap: anywhere;
  }
}

/* Shopify Editions inspired motion pass */
.edition-motion-field {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: screen;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.75) 0 1px, transparent 2px),
    repeating-conic-gradient(from 0deg at 50% 38%, rgba(255, 255, 255, 0.28) 0deg 0.28deg, transparent 0.28deg 13deg),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 56px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 56px);
  background-position:
    center,
    center,
    var(--edition-grid-x, 0px) 0,
    0 var(--edition-grid-y, 0px);
  transform: translate3d(0, var(--edition-depth-shift), 0);
}

body.detail-view .edition-motion-field {
  opacity: 0.12;
  mix-blend-mode: soft-light;
}

.motion-reveal {
  transition-duration: 780ms;
  transform: translate3d(0, 42px, 0) scale(0.972);
}

.motion-reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.work-section.is-active .section-heading,
.work-section.is-active .collection-heading,
.work-section.is-active .product-category-heading {
  transform-style: preserve-3d;
}

.work-section.is-active .section-heading.is-visible,
.work-section.is-active .collection-heading.is-visible,
.work-section.is-active .product-category-heading.is-visible {
  animation: edition-heading-focus 760ms cubic-bezier(0.16, 0.86, 0.24, 1) both;
}

.product-project,
.diy-project,
.textile-item,
.blog-index article,
.case-chapter {
  transform-style: preserve-3d;
}

.product-project:hover,
.diy-project:hover,
.textile-item:hover,
.blog-index article:hover,
.case-chapter:hover {
  box-shadow:
    0 28px 72px rgba(23, 19, 15, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.32) inset;
}

.product-simulation {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.74fr) minmax(420px, 1.26fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: center;
  max-width: 1320px;
  min-height: clamp(540px, 56vw, 720px);
  margin: clamp(52px, 8vw, 112px) auto clamp(58px, 9vw, 124px);
  padding: clamp(34px, 6vw, 74px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  background:
    radial-gradient(circle at 68% 48%, rgba(255, 255, 255, 0.36), transparent 28%),
    linear-gradient(135deg, rgba(235, 234, 217, 0.76), rgba(215, 216, 197, 0.62));
  box-shadow:
    0 34px 92px rgba(38, 53, 28, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  isolation: isolate;
}

.product-simulation::before,
.product-simulation::after {
  content: "";
  position: absolute;
  inset: -14%;
  z-index: 0;
  pointer-events: none;
}

.product-simulation::before {
  background:
    radial-gradient(circle at 54% 46%, rgba(255, 255, 255, 0.7) 0 1px, transparent 2px),
    repeating-conic-gradient(from -12deg at 54% 46%, rgba(255, 255, 255, 0.38) 0deg 0.35deg, transparent 0.35deg 11deg),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 58px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 58px);
  opacity: 0.7;
  transform: translate3d(var(--edition-pointer-x), var(--edition-pointer-y), 0);
}

.product-simulation::after {
  background:
    radial-gradient(circle at 76% 28%, rgba(255, 255, 255, 0.7), transparent 16%),
    radial-gradient(circle at 18% 86%, rgba(149, 168, 118, 0.32), transparent 24%);
  filter: blur(18px);
  opacity: 0.75;
}

.simulation-copy,
.simulation-stage {
  position: relative;
  z-index: 2;
}

.simulation-copy p {
  margin: 0 0 14px;
  color: rgba(31, 33, 31, 0.52);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
}

.simulation-copy h3 {
  max-width: 520px;
  margin: 0 0 18px;
  color: #1f211f;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(34px, 5vw, 70px);
  font-weight: 400;
  line-height: 1.04;
}

.simulation-copy span {
  display: block;
  max-width: 560px;
  color: rgba(31, 33, 31, 0.68);
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.75;
}

.simulation-stage {
  min-height: clamp(420px, 42vw, 580px);
  transform-style: preserve-3d;
}

.simulation-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 8;
  width: min(430px, 74vw);
  padding: 24px;
  border-radius: 22px;
  background: rgba(247, 247, 243, 0.94);
  box-shadow:
    0 28px 70px rgba(36, 41, 28, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.72) inset;
  transform: translate(-50%, -50%);
}

.simulation-panel p {
  margin: 0 0 18px;
  color: #22251f;
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1;
}

.simulation-panel label {
  display: block;
  margin-bottom: 7px;
  color: rgba(31, 33, 31, 0.56);
  font-size: 13px;
}

.simulation-panel div {
  padding: 13px 14px;
  border: 1px solid rgba(31, 33, 31, 0.22);
  border-radius: 10px;
  background: #fff;
  font-size: 15px;
}

.simulation-panel button {
  margin-top: 16px;
  padding: 10px 16px;
  border: 1px solid rgba(31, 33, 31, 0.7);
  border-radius: 9px;
  background: #23251f;
  color: #fff;
  font: inherit;
}

.signal-card {
  position: absolute;
  z-index: 6;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  width: clamp(185px, 18vw, 260px);
  padding: 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(35, 42, 26, 0.16);
  animation: signal-card-float 7.6s ease-in-out infinite;
  animation-delay: var(--signal-delay, 0s);
  will-change: transform, opacity, filter;
}

.signal-avatar {
  display: grid;
  width: 54px;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 42%, #161c1d 0 33%, transparent 34%),
    radial-gradient(circle at 38% 39%, #9ee9ff 0 3px, transparent 4px),
    radial-gradient(circle at 62% 39%, #9ee9ff 0 3px, transparent 4px),
    linear-gradient(135deg, #d9c390, #72835d);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  font-style: italic;
}

.signal-card strong,
.signal-card small,
.signal-card p {
  display: block;
  min-width: 0;
}

.signal-card strong {
  color: #30342d;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
}

.signal-card small {
  width: fit-content;
  margin-top: 4px;
  padding: 3px 7px;
  border-radius: 6px;
  background: rgba(31, 33, 31, 0.07);
  color: rgba(31, 33, 31, 0.58);
  font-size: 11px;
  line-height: 1;
}

.signal-card p {
  margin: 6px 0 0;
  color: rgba(31, 33, 31, 0.52);
  font-size: 10px;
  white-space: nowrap;
}

.signal-card--one {
  left: 12%;
  top: 7%;
  --signal-delay: -0.9s;
}

.signal-card--two {
  right: 2%;
  top: 16%;
  transform: scale(0.82);
  filter: blur(0.6px);
  --signal-delay: -2.1s;
}

.signal-card--three {
  left: 2%;
  bottom: 8%;
  --signal-delay: -4.2s;
}

.signal-card--four {
  right: 8%;
  bottom: 2%;
  transform: scale(0.92);
  --signal-delay: -1.5s;
}

.signal-card--five {
  left: 54%;
  top: 2%;
  transform: scale(0.66);
  opacity: 0.56;
  filter: blur(2px);
  --signal-delay: -3s;
}

@keyframes edition-heading-focus {
  0% {
    opacity: 0;
    transform: translate3d(-22px, 32px, -80px) scale(0.96);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes signal-card-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -18px;
  }
}

@media (max-width: 980px) {
  .product-simulation {
    grid-template-columns: 1fr;
    min-height: 760px;
  }

  .simulation-stage {
    min-height: 480px;
  }
}

@media (max-width: 700px) {
  .edition-motion-field {
    opacity: 0.1;
  }

  .product-simulation {
    min-height: 720px;
    padding: 24px 16px;
    border-radius: 18px;
  }

  .simulation-panel {
    width: min(320px, 86vw);
  }

  .signal-card {
    width: 176px;
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .signal-avatar {
    width: 44px;
  }

  .signal-card--one {
    left: 0;
    top: 4%;
  }

  .signal-card--two {
    right: -12px;
    top: 19%;
  }

  .signal-card--three {
    left: 0;
    bottom: 4%;
  }

  .signal-card--four {
    right: 4px;
    bottom: 14%;
  }

  .signal-card--five {
    left: 36%;
    top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .edition-motion-field,
  .signal-card {
    animation: none;
  }
}

/* Browser annotation pass: links, glass nav, dreamy reveals, typewriter, About reset */
.site-header,
body.detail-view .site-header {
  border-bottom: 1px solid rgba(130, 46, 126, 0.24);
  background: rgba(255, 238, 252, 0.48);
  box-shadow: 0 14px 36px rgba(93, 37, 88, 0.08);
  color: #a61782;
  -webkit-backdrop-filter: blur(22px) saturate(1.22);
  backdrop-filter: blur(22px) saturate(1.22);
}

.nav-links small {
  color: rgba(139, 64, 125, 0.62);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: #7d2f91;
}

.hero-copy {
  width: min(540px, 78vw);
  padding: clamp(20px, 3vw, 34px) clamp(28px, 5vw, 62px);
  border: 1px solid rgba(180, 206, 222, 0.5);
  border-radius: 999px;
  background: rgba(240, 248, 249, 0.52);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    0 20px 54px rgba(33, 24, 18, 0.18);
  filter: none;
  -webkit-backdrop-filter: blur(10px) saturate(1.05);
  backdrop-filter: blur(10px) saturate(1.05);
}

.hero-copy::before,
.hero-copy::after {
  content: none;
}

.hero-signature {
  position: relative;
  display: grid;
  place-items: center;
  color: #6f99b6;
}

.hero-signature h1 {
  position: relative;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip-path: none;
  white-space: normal;
  color: #6f99b6;
  font-family: "Snell Roundhand", "Apple Chancery", "Baskerville", "Georgia", serif;
  font-size: clamp(76px, 12vw, 140px);
  font-style: italic;
  font-weight: 400;
  line-height: 0.82;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.68),
    0 10px 22px rgba(69, 109, 136, 0.18);
}

.signature-star,
.signature-ornament {
  position: absolute;
  color: rgba(91, 139, 170, 0.76);
  font-family: Georgia, "Times New Roman", serif;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.62);
  pointer-events: none;
}

.signature-star--one {
  left: 2%;
  top: 28%;
  font-size: clamp(15px, 2vw, 26px);
}

.signature-star--two {
  right: 6%;
  top: 18%;
  font-size: clamp(14px, 1.7vw, 22px);
}

.signature-star--three {
  left: 52%;
  top: -4%;
  font-size: clamp(18px, 2.3vw, 30px);
}

.signature-ornament {
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(15px, 2vw, 24px);
  letter-spacing: 0;
  white-space: nowrap;
}

.signature-ornament--top {
  top: -18px;
}

.signature-ornament--bottom {
  bottom: -22px;
}

.hero-role-cn,
.hero-role-en {
  position: static;
  width: auto;
  height: auto;
  margin: 12px 0 0;
  overflow: visible;
  clip-path: none;
  color: rgba(92, 132, 158, 0.86);
  text-align: center;
  white-space: normal;
}

.hero-role-cn {
  font-size: clamp(15px, 1.6vw, 19px);
  letter-spacing: 0.14em;
}

.hero-role-en {
  margin-top: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(12px, 1.25vw, 15px);
}

.product-line-intro article[data-scroll-target] {
  position: relative;
  cursor: pointer;
  transition:
    transform 360ms cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 360ms ease,
    border-color 360ms ease;
}

.product-line-intro article[data-scroll-target]:hover,
.product-line-intro article[data-scroll-target]:focus-visible {
  border-color: rgba(151, 45, 132, 0.36);
  box-shadow: 0 28px 74px rgba(45, 72, 38, 0.24);
  transform: translateY(-8px) scale(1.01);
  outline: none;
}

.product-line-intro article[data-scroll-target]::after {
  content: "Jump ↓";
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: rgba(151, 45, 132, 0.56);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.product-line-intro article[data-scroll-target]:hover::after,
.product-line-intro article[data-scroll-target]:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

#product-ai-title,
#product-diy-title {
  scroll-margin-top: 128px;
}

.simulation-copy-en {
  display: block;
  max-width: 580px;
  margin-top: 10px;
  color: rgba(31, 33, 31, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(12px, 1vw, 14px);
  font-style: italic;
  line-height: 1.62;
}

.motion-reveal {
  position: relative;
  overflow: visible;
  transform: translate3d(0, 54px, 0) scale(0.962);
  filter: blur(12px) saturate(0.92);
  transition:
    opacity 980ms cubic-bezier(0.18, 0.84, 0.24, 1),
    transform 980ms cubic-bezier(0.18, 0.84, 0.24, 1),
    filter 980ms ease;
}

.motion-reveal::before {
  content: "";
  position: absolute;
  inset: -22px;
  z-index: 4;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.95) 0 1.4px, transparent 2px) 8% 18% / 72px 72px,
    radial-gradient(circle, rgba(185, 126, 218, 0.86) 0 1px, transparent 2px) 72% 24% / 84px 84px,
    radial-gradient(circle, rgba(255, 231, 179, 0.9) 0 1.2px, transparent 2px) 28% 78% / 96px 96px;
  mix-blend-mode: screen;
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.94);
}

.motion-reveal.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0) saturate(1);
}

.motion-reveal.is-visible::before {
  animation: dream-star-reveal 1180ms ease-out both;
}

@keyframes dream-star-reveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 22px, 0) scale(0.82) rotate(-2deg);
    filter: blur(8px);
  }
  30% {
    opacity: 0.88;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -18px, 0) scale(1.18) rotate(4deg);
    filter: blur(1px);
  }
}

#about .motion-reveal::before,
#about .motion-reveal.is-visible::before {
  content: none;
  animation: none;
}

.typewriter-stage {
  width: min(820px, 94vw);
  min-height: clamp(620px, 76vw, 820px);
}

.typewriter-paper {
  bottom: clamp(238px, 31vw, 340px);
  z-index: 3;
  transform: translate(-50%, 62%) rotateX(7deg);
  transition:
    transform 1680ms cubic-bezier(0.12, 0.86, 0.18, 1),
    box-shadow 520ms ease,
    filter 520ms ease;
}

.typewriter-stage.is-open .typewriter-paper,
.typewriter-stage:hover .typewriter-paper,
.typewriter-stage:focus-visible .typewriter-paper {
  transform: translate(-50%, 0) rotateX(0deg);
}

.typewriter-machine {
  width: min(820px, 98vw);
}

.typewriter-roller {
  display: none;
}

.typewriter-paper h2 {
  display: grid;
  gap: 8px;
}

.typewriter-paper h2 .typewriter-title-cn {
  display: inline-block;
  width: 0;
  max-width: 4.4em;
  overflow: hidden;
  white-space: nowrap;
  color: #3d4144;
  font-family: "Songti SC", "STSong", serif;
  font-size: 1em;
  font-style: normal;
  font-weight: 400;
}

.typewriter-paper h2 .typewriter-title-en {
  display: block;
  color: rgba(33, 26, 22, 0.56);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.38em;
  font-style: normal;
  font-weight: 400;
}

.typewriter-stage.is-open .typewriter-title-cn,
.typewriter-stage:hover .typewriter-title-cn,
.typewriter-stage:focus-visible .typewriter-title-cn {
  animation: typewriter-cn-title 1180ms steps(4, end) 920ms both;
}

@keyframes typewriter-cn-title {
  from {
    width: 0;
  }
  to {
    width: 4.4em;
  }
}

#about {
  padding-top: clamp(104px, 9vw, 132px);
  background-color: #87d8ee !important;
}

#about::before {
  inset: -4%;
  background:
    radial-gradient(circle at 32% 18%, rgba(255, 255, 255, 0.58), transparent 28vw),
    radial-gradient(circle at 80% 70%, rgba(183, 236, 255, 0.64), transparent 30vw),
    url("assets/backgrounds/water-ripple.png") center 38% / cover no-repeat;
  opacity: 0.86;
  filter: saturate(1.15) brightness(1.12) contrast(0.94);
  transform: scale(1.02);
}

#about::after {
  left: max(-16px, calc(50% - 650px));
  right: auto;
  top: clamp(92px, 10vw, 132px);
  bottom: auto;
  width: clamp(250px, 30vw, 420px);
  height: clamp(150px, 18vw, 250px);
  opacity: 0.82;
  transform: rotate(6deg);
}

#about > .back-home {
  margin-bottom: 18px;
}

#about > .section-heading {
  max-width: 1180px;
  margin-bottom: clamp(18px, 3vw, 34px);
  border-color: rgba(255, 255, 255, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(230, 248, 255, 0.48));
  box-shadow:
    0 18px 42px rgba(28, 105, 154, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  transform: none;
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  backdrop-filter: blur(18px) saturate(1.2);
}

#about .about-layout {
  margin-top: 0;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(205, 242, 255, 0.24));
  box-shadow:
    0 22px 60px rgba(24, 91, 139, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
  transform: none;
  -webkit-backdrop-filter: blur(18px) saturate(1.28);
  backdrop-filter: blur(18px) saturate(1.28);
}

.about-camera-decor {
  top: clamp(500px, 53vw, 690px);
  right: auto;
  left: max(18px, calc(50% - 705px));
  width: clamp(190px, 24vw, 340px);
  transform: rotate(-4deg);
}

.about-edge-decor--pin {
  top: clamp(112px, 11vw, 160px);
  left: max(18px, calc(50% - 690px));
  width: clamp(120px, 12vw, 180px);
}

.about-edge-decor--stars {
  top: clamp(150px, 14vw, 210px);
  right: max(24px, calc(50% - 690px));
  width: clamp(96px, 9vw, 140px);
}

.about-edge-decor--card {
  top: clamp(430px, 42vw, 560px);
  right: max(20px, calc(50% - 700px));
  width: clamp(170px, 17vw, 260px);
}

@media (max-width: 700px) {
  .hero-copy {
    width: min(360px, 88vw);
    padding: 22px 24px;
  }

  .hero-signature h1 {
    font-size: clamp(66px, 20vw, 92px);
  }

  .signature-ornament--top {
    top: -14px;
  }

  .signature-ornament--bottom {
    bottom: -16px;
  }

  .typewriter-stage {
    min-height: 680px;
  }

  .typewriter-paper {
    bottom: 250px;
    width: min(340px, 86vw);
    transform: translate(-50%, 54%) rotateX(6deg);
  }

  .typewriter-machine {
    width: min(560px, 124vw);
  }

  #about {
    padding-top: 112px;
  }

  #about .about-layout {
    padding: 16px;
  }

  .about-camera-decor {
    top: auto;
    bottom: 18px;
    left: 10px;
    width: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-reveal::before,
  .motion-reveal.is-visible::before,
  .typewriter-stage.is-open .typewriter-title-cn,
  .typewriter-stage:hover .typewriter-title-cn,
  .typewriter-stage:focus-visible .typewriter-title-cn {
    animation: none;
  }

  .typewriter-title-cn {
    width: auto;
  }
}

/* Graphic design image viewer */
body.graphic-lightbox-open {
  overflow: hidden;
}

#graphic-design .graphic-zoomable,
#textile-design .graphic-zoomable {
  cursor: zoom-in;
  outline: none;
}

#graphic-design .graphic-zoomable::after,
#textile-design .graphic-zoomable::after {
  content: "＋";
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 3;
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  color: rgba(31, 33, 31, 0.78);
  font-size: 18px;
  line-height: 1;
  opacity: 0;
  transform: translateY(6px) scale(0.92);
  transition: opacity 220ms ease, transform 220ms ease;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

#graphic-design .graphic-zoomable:hover::after,
#graphic-design .graphic-zoomable:focus-visible::after,
#textile-design .graphic-zoomable:hover::after,
#textile-design .graphic-zoomable:focus-visible::after {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.graphic-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  grid-template-columns: minmax(44px, 0.08fr) minmax(0, 1fr) minmax(44px, 0.08fr);
  align-items: center;
  gap: clamp(8px, 2vw, 28px);
  padding: clamp(18px, 4vw, 48px);
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.18), transparent 34vw),
    rgba(16, 17, 16, 0.82);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
  -webkit-backdrop-filter: blur(18px) saturate(1.06);
  backdrop-filter: blur(18px) saturate(1.06);
}

.graphic-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.graphic-lightbox-frame {
  position: relative;
  display: grid;
  grid-column: 2;
  justify-items: center;
  gap: 14px;
  width: min(100%, 1280px);
  max-height: calc(100svh - 72px);
  margin: 0 auto;
}

.graphic-lightbox-frame img {
  max-width: min(100%, 1280px);
  max-height: calc(100svh - 128px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.18);
  transform: translateY(12px) scale(0.985);
  transition: transform 320ms cubic-bezier(0.18, 0.84, 0.24, 1);
}

.graphic-lightbox.is-open .graphic-lightbox-frame img {
  transform: translateY(0) scale(1);
}

.graphic-lightbox-frame figcaption {
  display: flex;
  justify-content: center;
  gap: 12px;
  max-width: min(100%, 980px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.graphic-lightbox-frame figcaption small {
  color: rgba(255, 255, 255, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  white-space: nowrap;
}

.graphic-lightbox-close,
.graphic-lightbox-nav {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.graphic-lightbox-close:hover,
.graphic-lightbox-close:focus-visible,
.graphic-lightbox-nav:hover,
.graphic-lightbox-nav:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.05);
  outline: none;
}

.graphic-lightbox-close {
  position: absolute;
  top: clamp(16px, 3vw, 30px);
  right: clamp(16px, 3vw, 30px);
  width: 44px;
  aspect-ratio: 1;
  font-size: 30px;
  line-height: 1;
}

.graphic-lightbox-nav {
  width: clamp(42px, 5vw, 58px);
  aspect-ratio: 1;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.graphic-lightbox-prev {
  grid-column: 1;
  justify-self: end;
}

.graphic-lightbox-next {
  grid-column: 3;
  justify-self: start;
}

@media (max-width: 700px) {
  .graphic-lightbox {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    padding: 58px 14px 18px;
  }

  .graphic-lightbox-frame {
    grid-column: 1 / -1;
    grid-row: 1;
    align-self: center;
    max-height: calc(100svh - 128px);
  }

  .graphic-lightbox-frame img {
    max-height: calc(100svh - 170px);
  }

  .graphic-lightbox-prev,
  .graphic-lightbox-next {
    grid-row: 2;
    justify-self: center;
  }

  .graphic-lightbox-prev {
    grid-column: 1;
  }

  .graphic-lightbox-next {
    grid-column: 2;
  }

  .graphic-lightbox-frame figcaption {
    display: grid;
    gap: 4px;
    font-size: 12px;
  }
}

/* Final transparent navigation override */
.site-header,
body.detail-view .site-header {
  border: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  color: #fff;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.16),
    0 8px 18px rgba(50, 26, 36, 0.22);
}

.brand span:first-child,
.brand span:last-child,
.nav-links,
.nav-links a {
  color: #fff;
}

.nav-links small {
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.16);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 700px) {
  .site-header,
  body.detail-view .site-header {
    background: transparent;
  }
}

/* Final transparent hero title override */
.hero-copy {
  width: min(540px, 78vw);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.hero-signature,
.hero-signature h1,
.hero-role-cn,
.hero-role-en,
.signature-star,
.signature-ornament {
  color: #c36518;
}

.hero-signature h1 {
  text-shadow:
    0 1px 0 rgba(255, 244, 226, 0.62),
    0 12px 24px rgba(60, 31, 12, 0.2);
}

.hero-role-cn,
.hero-role-en {
  color: #c36518;
  text-shadow:
    0 1px 0 rgba(255, 244, 226, 0.58),
    0 8px 18px rgba(60, 31, 12, 0.16);
}

.signature-star,
.signature-ornament {
  text-shadow:
    0 1px 0 rgba(255, 244, 226, 0.58),
    0 8px 18px rgba(60, 31, 12, 0.14);
}

@media (max-width: 700px) {
  .hero-copy {
    width: min(440px, 86vw);
    padding: 0;
  }
}

/* Scroll stability fix */
.home-burn-effect {
  display: none;
}

body:not(.detail-view) .edition-motion-field {
  opacity: 0.04;
  mix-blend-mode: normal;
}

/* Torn-paper scroll transitions */
.paper-tear-transition {
  position: relative;
  z-index: 12;
  height: clamp(64px, 9vw, 118px);
  margin: clamp(-58px, -5vw, -34px) 0 clamp(-54px, -4.6vw, -30px);
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 4%, transparent 0 30px, rgba(246, 242, 232, 0.98) 31px),
    radial-gradient(circle at 18% 0%, transparent 0 44px, rgba(246, 242, 232, 0.98) 45px),
    radial-gradient(circle at 31% 7%, transparent 0 34px, rgba(246, 242, 232, 0.98) 35px),
    radial-gradient(circle at 47% 0%, transparent 0 48px, rgba(246, 242, 232, 0.98) 49px),
    radial-gradient(circle at 62% 9%, transparent 0 30px, rgba(246, 242, 232, 0.98) 31px),
    radial-gradient(circle at 78% 1%, transparent 0 42px, rgba(246, 242, 232, 0.98) 43px),
    radial-gradient(circle at 93% 6%, transparent 0 36px, rgba(246, 242, 232, 0.98) 37px),
    linear-gradient(180deg, rgba(246, 242, 232, 0.98), rgba(246, 242, 232, 0.96));
  clip-path: polygon(
    0 32%,
    4% 44%,
    9% 26%,
    15% 36%,
    22% 19%,
    30% 31%,
    37% 14%,
    45% 34%,
    52% 23%,
    60% 38%,
    68% 18%,
    75% 31%,
    83% 15%,
    90% 36%,
    96% 24%,
    100% 33%,
    100% 100%,
    0 100%
  );
  filter:
    drop-shadow(0 -5px 7px rgba(255, 255, 255, 0.55))
    drop-shadow(0 12px 16px rgba(45, 33, 22, 0.16));
}

.paper-tear-transition::before {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  top: clamp(14px, 2vw, 28px);
  height: clamp(16px, 2.4vw, 32px);
  background:
    radial-gradient(circle at 6% 40%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 19% 60%, rgba(120, 105, 84, 0.24) 0 1px, transparent 2px),
    radial-gradient(circle at 32% 38%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 54% 62%, rgba(120, 105, 84, 0.22) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 36%, rgba(255, 255, 255, 0.86) 0 2px, transparent 3px),
    radial-gradient(circle at 91% 58%, rgba(120, 105, 84, 0.22) 0 1px, transparent 2px);
  opacity: 0.72;
  filter: blur(0.35px);
}

.paper-tear-transition::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(92deg, rgba(118, 105, 85, 0.06) 0 1px, transparent 1px 7px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), transparent 55%);
  mix-blend-mode: multiply;
  opacity: 0.5;
}

.paper-tear-transition--blue {
  background:
    radial-gradient(circle at 7% 5%, transparent 0 28px, rgba(222, 245, 252, 0.98) 29px),
    radial-gradient(circle at 19% 0%, transparent 0 42px, rgba(222, 245, 252, 0.98) 43px),
    radial-gradient(circle at 33% 8%, transparent 0 30px, rgba(222, 245, 252, 0.98) 31px),
    radial-gradient(circle at 50% 2%, transparent 0 46px, rgba(222, 245, 252, 0.98) 47px),
    radial-gradient(circle at 66% 10%, transparent 0 32px, rgba(222, 245, 252, 0.98) 33px),
    radial-gradient(circle at 82% 1%, transparent 0 40px, rgba(222, 245, 252, 0.98) 41px),
    radial-gradient(circle at 95% 7%, transparent 0 34px, rgba(222, 245, 252, 0.98) 35px),
    linear-gradient(180deg, rgba(222, 245, 252, 0.98), rgba(190, 235, 248, 0.92));
}

body.detail-view .paper-tear-transition {
  display: none;
}

/* About placement correction */
#about {
  overflow-x: clip;
  padding-top: clamp(92px, 8vw, 118px);
}

#about > .section-heading {
  margin-bottom: clamp(28px, 3.8vw, 42px);
}

#about .about-layout {
  margin-top: 0;
  transform: translateY(-6px);
}

#about .about-camera-decor,
#about .about-edge-decor {
  position: absolute;
  z-index: 4;
  max-width: min(38vw, 320px);
}

#about .about-camera-decor {
  top: clamp(260px, 28vw, 380px);
  left: auto;
  right: max(18px, calc(50% - 690px));
  width: clamp(160px, 18vw, 280px);
  transform: rotate(5deg);
}

#about .about-edge-decor--pin {
  top: clamp(230px, 23vw, 330px);
  left: max(16px, calc(50% - 700px));
  width: clamp(130px, 14vw, 210px);
  transform: rotate(-8deg);
}

#about .about-edge-decor--stars {
  top: clamp(520px, 48vw, 690px);
  left: max(-18px, calc(50% - 715px));
  right: auto;
  width: clamp(92px, 10vw, 150px);
  transform: rotate(14deg);
}

#about .about-edge-decor--card {
  top: clamp(560px, 54vw, 760px);
  right: max(-12px, calc(50% - 710px));
  width: clamp(150px, 16vw, 240px);
  transform: rotate(8deg);
}

@media (max-width: 700px) {
  .paper-tear-transition {
    height: 70px;
    margin: -38px 0 -34px;
  }

  #about {
    padding-top: 96px;
  }

  #about > .section-heading {
    margin-bottom: 30px;
  }

  #about .about-layout {
    transform: none;
  }

  #about .about-camera-decor {
    position: absolute;
    top: 214px;
    right: 12px;
    left: auto;
    width: 170px;
  }

  #about .about-edge-decor--pin {
    position: absolute;
    top: 230px;
    left: 10px;
    width: 116px;
  }

  #about .about-edge-decor--stars {
    position: absolute;
    top: 610px;
    left: -6px;
    width: 98px;
  }

  #about .about-edge-decor--card {
    position: absolute;
    top: 668px;
    right: -8px;
    width: 142px;
  }
}

/* Final About page position and tone */
#about {
  background-color: #f4f1ec !important;
  background-image:
    linear-gradient(180deg, rgba(18, 14, 10, 0.04), rgba(18, 14, 10, 0.16)),
    url("assets/backgrounds/home-section-02-monet.jpg") !important;
  background-position: center, center !important;
  background-size: auto, cover !important;
  background-repeat: no-repeat !important;
}

#about::before {
  background: none !important;
  opacity: 0 !important;
  filter: none !important;
  animation: none !important;
}

#about::after {
  background: none !important;
  opacity: 0 !important;
  filter: none !important;
  animation: none !important;
}

#about > .section-heading {
  margin-bottom: 1cm;
}

#about .about-layout {
  position: relative;
  z-index: 5;
  margin-top: 0;
  transform: translateY(-4px);
}

#about .about-camera-decor,
#about .about-edge-decor {
  position: absolute;
  z-index: 6;
  pointer-events: none;
}

#about .about-camera-decor {
  top: clamp(300px, 25vw, 390px);
  right: max(20px, calc(50% - 650px));
  left: auto;
  width: clamp(150px, 15vw, 240px);
  transform: rotate(5deg);
}

#about .about-edge-decor--pin {
  top: clamp(312px, 26vw, 408px);
  left: max(20px, calc(50% - 660px));
  width: clamp(118px, 12vw, 190px);
  transform: rotate(-8deg);
}

#about .about-edge-decor--stars {
  top: clamp(456px, 35vw, 540px);
  left: max(8px, calc(50% - 690px));
  right: auto;
  width: clamp(86px, 8vw, 132px);
  transform: rotate(14deg);
}

#about .about-edge-decor--card {
  top: clamp(460px, 36vw, 552px);
  right: max(8px, calc(50% - 680px));
  width: clamp(128px, 13vw, 210px);
  transform: rotate(8deg);
}

@media (max-width: 700px) {
  #about {
    background-color: #f4f1ec !important;
    padding-top: 92px;
  }

  #about > .section-heading {
    margin-bottom: 1cm;
  }

  #about .about-layout {
    transform: translateY(-2px);
  }

  #about .about-camera-decor {
    top: 310px;
    right: 14px;
    left: auto;
    width: 150px;
  }

  #about .about-edge-decor--pin {
    top: 318px;
    left: 12px;
    width: 104px;
  }

  #about .about-edge-decor--stars {
    top: 448px;
    left: -8px;
    width: 88px;
  }

  #about .about-edge-decor--card {
    top: 448px;
    right: -8px;
    width: 126px;
  }
}

/* Product research pages stay static and readable */
#content-analysis,
#article-toy-content-consumer,
#article-innovation-demand {
  background-color: #ffeabd !important;
  background-image: none !important;
}

#content-analysis *,
#article-toy-content-consumer *,
#article-innovation-demand * {
  animation: none;
}

#content-analysis .motion-reveal,
#content-analysis .motion-reveal.is-visible,
#article-toy-content-consumer .motion-reveal,
#article-toy-content-consumer .motion-reveal.is-visible,
#article-innovation-demand .motion-reveal,
#article-innovation-demand .motion-reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

#content-analysis .motion-reveal::before,
#content-analysis .motion-reveal.is-visible::before,
#article-toy-content-consumer .motion-reveal::before,
#article-toy-content-consumer .motion-reveal.is-visible::before,
#article-innovation-demand .motion-reveal::before,
#article-innovation-demand .motion-reveal.is-visible::before {
  content: none;
  animation: none;
}

#content-analysis .motion-tilt,
#content-analysis .motion-tilt:hover,
#content-analysis .motion-tilt:focus-within,
#article-toy-content-consumer .motion-tilt,
#article-toy-content-consumer .motion-tilt:hover,
#article-toy-content-consumer .motion-tilt:focus-within,
#article-innovation-demand .motion-tilt,
#article-innovation-demand .motion-tilt:hover,
#article-innovation-demand .motion-tilt:focus-within {
  transform: none;
  filter: none;
}

/* Compact cursor light source */
:root {
  --cursor-light-core: 0.12cm;
  --cursor-light-radius: 0.5cm;
}

.hero {
  background:
    radial-gradient(circle var(--cursor-light-radius) at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.96) 0 var(--cursor-light-core), rgba(255, 242, 202, 0.46) 0.22cm, transparent var(--cursor-light-radius)),
    linear-gradient(180deg, rgba(24, 18, 12, 0.18), rgba(42, 25, 16, 0.32)),
    url("assets/backgrounds/elione-academy-home.jpg") center / cover no-repeat;
  background-size: auto, auto, cover;
}

.float-field::before {
  background:
    radial-gradient(circle var(--cursor-light-radius) at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.98) 0 var(--cursor-light-core), rgba(255, 236, 190, 0.5) 0.22cm, transparent var(--cursor-light-radius)),
    radial-gradient(circle at 28% 74%, rgba(255, 255, 255, 0.18), transparent 12vw);
  opacity: 0.72;
}

.contact-envelope-section {
  background:
    radial-gradient(circle var(--cursor-light-radius) at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.98) 0 var(--cursor-light-core), rgba(255, 242, 202, 0.42) 0.22cm, transparent var(--cursor-light-radius)),
    linear-gradient(180deg, rgba(35, 28, 18, 0.08), rgba(35, 28, 18, 0.28)),
    url("assets/backgrounds/home-section-02-monet.jpg") center / cover no-repeat;
  background-position:
    center,
    center,
    center calc(50% + 3cm);
  background-size:
    auto,
    auto,
    cover;
}

.work-section::before {
  background:
    radial-gradient(circle var(--cursor-light-radius) at var(--section-light-x) var(--section-light-y), rgba(255, 255, 255, 0.92) 0 var(--cursor-light-core), rgba(255, 246, 214, 0.4) 0.22cm, transparent var(--cursor-light-radius)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 42px),
    linear-gradient(0deg, rgba(31, 33, 31, 0.035) 0 1px, transparent 1px 38px);
  background-position:
    center,
    var(--section-grid-x) 0,
    0 var(--section-grid-y);
}

/* Shopify Editions inspired homepage layout */
.hero {
  min-height: 100svh;
  padding: clamp(90px, 11vw, 130px) clamp(16px, 4vw, 48px) clamp(34px, 5vw, 58px);
  align-items: center;
  background:
    radial-gradient(circle 0.52cm at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.94) 0 0.12cm, rgba(255, 239, 197, 0.42) 0.24cm, transparent 0.52cm),
    radial-gradient(ellipse at 50% 43%, rgba(255, 248, 224, 0.34) 0 10%, rgba(255, 248, 224, 0.1) 28%, transparent 54%),
    linear-gradient(180deg, rgba(255, 252, 242, 0.04), rgba(255, 252, 242, 0.02)),
    url("assets/backgrounds/elione-academy-home.jpg") center / cover no-repeat;
  background-size: auto, auto, auto, cover;
}

.hero::before {
  opacity: 1;
  mix-blend-mode: normal;
}

.hero::after {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 800'%3E%3Cg fill='none' stroke='%23ca811c' stroke-linecap='square' stroke-linejoin='miter' opacity='.62'%3E%3Cpath stroke-width='1.35' d='M60 80h1080v667H60z'/%3E%3Cpath stroke-width='1.05' d='M473 80v667M60 334h413M314 80v254M314 239h159M409 239v95M409 303h64M440 303v31M440 322h33M452 322v12M452 329h21'/%3E%3Cpath stroke-width='1.45' d='M1140 80A667 667 0 0 1 473 747A413 413 0 0 1 60 334A254 254 0 0 1 314 80A159 159 0 0 1 473 239A95 95 0 0 1 378 334A64 64 0 0 1 314 270A31 31 0 0 1 345 239A19 19 0 0 1 364 258'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 52px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 52px);
  background-position:
    center,
    var(--hero-grid-x) 0,
    0 var(--hero-grid-y);
  background-size:
    122% 122%,
    52px 52px,
    52px 52px;
  opacity: 0.9;
}

.float-field {
  opacity: 1;
}

.float-field::before {
  background:
    radial-gradient(circle 0.52cm at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.98) 0 0.12cm, rgba(255, 236, 190, 0.45) 0.24cm, transparent 0.52cm);
  opacity: 0.9;
  mix-blend-mode: screen;
}

.hero-copy {
  align-self: center;
  width: min(256px, 42vw);
  min-height: 168px;
  padding: clamp(12px, 1.8vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: transparent;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: none;
}

.hero-signature,
.hero-signature h1,
.hero-role-cn,
.hero-role-en,
.signature-star,
.signature-ornament {
  color: #fff;
}

.hero-signature h1 {
  font-size: clamp(46px, 6.5vw, 74px);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.36);
}

.hero-role-cn,
.hero-role-en {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.34);
}

.hero-role-cn {
  letter-spacing: 0;
  font-weight: 700;
}

.hero-learn-link {
  position: absolute;
  top: clamp(28px, 4vw, 46px);
  right: clamp(18px, 4vw, 48px);
  z-index: 8;
  color: #fff;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 800;
  line-height: 1;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.08);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.52);
  transition: transform 180ms ease, opacity 180ms ease, border-color 180ms ease, background 180ms ease;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.hero-learn-link:hover,
.hero-learn-link:focus-visible {
  opacity: 0.78;
  transform: translateY(-2px);
  outline: none;
}

.hero-index {
  position: absolute;
  left: clamp(16px, 4vw, 42px);
  bottom: clamp(28px, 5vw, 58px);
  z-index: 8;
  display: grid;
  gap: 3px;
  width: min(230px, 48vw);
  padding: 12px 14px 13px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.hero-index-title {
  display: block;
  width: max-content;
  margin: 0 0 8px;
  padding: 0 0 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.56);
  color: rgba(255, 255, 255, 0.92);
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(15px, 1.35vw, 19px);
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.62);
}

.hero-index a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: baseline;
  gap: 12px;
  color: #fff;
  font-size: clamp(15px, 1.5vw, 21px);
  font-weight: 900;
  line-height: 0.98;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.62);
}

.hero-index b {
  color: rgba(255, 255, 255, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82em;
  font-weight: 900;
  text-align: right;
}

body.detail-view .hero-index,
body.detail-view .hero-learn-link {
  display: none;
}

body:not(.detail-view) .site-header .nav-links {
  display: none;
}

body:not(.detail-view) .site-header {
  pointer-events: none;
}

body:not(.detail-view) .site-header .brand {
  pointer-events: auto;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

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

  .hero-copy {
    width: min(220px, 60vw);
    min-height: 146px;
    padding: 14px;
  }

  .hero-signature h1 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .hero-learn-link {
    top: 22px;
    right: 18px;
    font-size: 20px;
  }

  .hero-index {
    left: 16px;
    bottom: 30px;
    width: min(210px, 56vw);
  }

  .hero-index a {
    grid-template-columns: minmax(0, 1fr) 28px;
    font-size: 15px;
  }
}

/* Homepage About full-bleed layout */
.home-about-section {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  padding: clamp(92px, 9vw, 134px) clamp(18px, 4.8vw, 78px) clamp(72px, 8vw, 124px);
  background:
    linear-gradient(180deg, rgba(19, 14, 10, 0.18), rgba(19, 14, 10, 0.36)),
    url("assets/backgrounds/home-section-03-gaddi.jpg") center / cover no-repeat;
  color: #fff;
}

.home-about-section::before {
  background: none;
  mix-blend-mode: normal;
  opacity: 0;
}

.home-about-inner {
  display: grid;
  grid-template-columns: minmax(250px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(28px, 5vw, 96px);
  align-items: start;
  width: min(1720px, 100%);
  max-width: none;
  margin: 0 auto;
}

.home-about-heading {
  display: block;
  margin: 0;
  color: #fff;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.56);
}

.home-about-heading p {
  margin: 0 0 clamp(18px, 2vw, 32px);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(14px, 1.1vw, 18px);
}

.home-about-heading h2 {
  display: block;
  color: #fff;
  font-family: "Songti SC", "STSong", serif;
  font-size: clamp(62px, 9.4vw, 174px);
  font-weight: 700;
  line-height: 0.88;
}

.home-about-heading h2 span,
.home-about-heading h2 small {
  display: block;
}

.home-about-heading h2 small {
  margin-top: clamp(12px, 1.6vw, 24px);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(24px, 2.7vw, 48px);
}

.home-about-content {
  min-width: 0;
}

.home-about-section .about-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(380px, 1.1fr);
  gap: clamp(24px, 4vw, 78px);
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.home-about-section .about-left-column {
  display: grid;
  gap: clamp(22px, 3vw, 44px);
  min-width: 0;
}

.home-about-section .about-photo-carousel,
.home-about-section .about-credentials,
.home-about-section .about-copy,
.home-about-section .contact-block {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.home-about-section .about-photo-carousel {
  overflow: visible;
}

.home-about-section .about-photo-track {
  grid-auto-columns: min(360px, 38vw);
  gap: clamp(14px, 1.8vw, 24px);
}

.home-about-section .about-photo-track .portrait-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
}

.home-about-section .about-copy {
  display: grid;
  gap: clamp(18px, 2.3vw, 34px);
  align-content: start;
}

.home-about-section .about-copy > p {
  max-width: 900px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-about-section .about-copy > p > span {
  color: #fff;
  font-size: clamp(17px, 1.24vw, 23px);
  line-height: 1.72;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.56);
}

.home-about-section .about-copy-en {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(13px, 0.98vw, 17px);
  line-height: 1.65;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.home-about-section .about-credentials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px) clamp(18px, 2.8vw, 40px);
}

.home-about-section .about-credentials section {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.home-about-section .about-credentials section > p {
  color: #fff;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 800;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.42);
}

.home-about-section .about-credentials section > div,
.home-about-section .about-credentials span,
.home-about-section .about-ai-tools strong {
  color: rgba(255, 255, 255, 0.86);
}

.home-about-section .about-ai-tools article {
  border-color: rgba(255, 255, 255, 0.24);
}

.home-about-section .life-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-about-section .life-grid span {
  border-color: rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

@media (max-width: 1100px) {
  .home-about-inner,
  .home-about-section .about-layout {
    grid-template-columns: 1fr;
  }

  .home-about-heading h2 {
    font-size: clamp(58px, 17vw, 128px);
  }

  .home-about-section .about-photo-track {
    grid-auto-columns: min(340px, 58vw);
  }
}

@media (max-width: 700px) {
  .home-about-section {
    padding: 84px 18px 74px;
  }

  .home-about-heading h2 {
    font-size: clamp(52px, 19vw, 96px);
  }

  .home-about-section .about-photo-track {
    grid-auto-columns: min(82vw, 300px);
  }

  .home-about-section .about-credentials {
    grid-template-columns: 1fr;
  }
}

/* Keep the typewriter paper clear of the torn-paper divider */
.contact-envelope-section.typewriter-section {
  align-items: start;
  justify-items: center;
  min-height: calc(100svh + clamp(64px, 7vw, 118px));
  padding-top: clamp(150px, 10vw, 196px);
}

.contact-envelope-section .typewriter-stage {
  margin-top: 1.5cm;
}

@media (max-width: 700px) {
  .contact-envelope-section.typewriter-section {
    min-height: calc(100svh + 76px);
    padding-top: 132px;
  }
}

/* Stronger irregular torn-paper edges on the homepage */
.paper-tear-transition {
  --tear-paper: #f7f1e6;
  --tear-paper-deep: #e9ddcb;
  height: clamp(88px, 8.6vw, 148px);
  margin: clamp(-76px, -5.8vw, -44px) 0 clamp(-66px, -4.8vw, -36px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), transparent 24%),
    radial-gradient(circle at 3% 38%, rgba(255, 255, 255, 0.95) 0 4px, transparent 5px),
    radial-gradient(circle at 13% 28%, rgba(111, 91, 64, 0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 28% 46%, rgba(255, 255, 255, 0.82) 0 5px, transparent 6px),
    radial-gradient(circle at 42% 22%, rgba(111, 91, 64, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 63% 42%, rgba(255, 255, 255, 0.86) 0 4px, transparent 5px),
    radial-gradient(circle at 81% 25%, rgba(111, 91, 64, 0.17) 0 2px, transparent 3px),
    linear-gradient(180deg, var(--tear-paper), var(--tear-paper-deep));
  clip-path: polygon(
    0 44%,
    2% 36%,
    4% 49%,
    7% 25%,
    10% 41%,
    13% 30%,
    17% 52%,
    21% 24%,
    25% 37%,
    29% 18%,
    33% 45%,
    38% 28%,
    42% 54%,
    47% 20%,
    52% 34%,
    57% 27%,
    61% 50%,
    66% 22%,
    70% 43%,
    74% 31%,
    79% 55%,
    84% 26%,
    88% 39%,
    92% 23%,
    96% 48%,
    100% 34%,
    100% 100%,
    0 100%
  );
  filter:
    drop-shadow(0 -9px 10px rgba(255, 255, 255, 0.55))
    drop-shadow(0 18px 18px rgba(42, 31, 22, 0.22));
}

.paper-tear-transition::before {
  left: -4%;
  right: -4%;
  top: clamp(22px, 2.4vw, 42px);
  height: clamp(22px, 2.8vw, 42px);
  background:
    repeating-linear-gradient(96deg, rgba(98, 78, 56, 0.13) 0 1px, transparent 1px 9px),
    radial-gradient(ellipse at 5% 48%, rgba(124, 104, 78, 0.2) 0 4px, transparent 5px),
    radial-gradient(ellipse at 18% 32%, rgba(255, 255, 255, 0.88) 0 6px, transparent 7px),
    radial-gradient(ellipse at 31% 62%, rgba(124, 104, 78, 0.18) 0 4px, transparent 5px),
    radial-gradient(ellipse at 45% 25%, rgba(255, 255, 255, 0.9) 0 6px, transparent 7px),
    radial-gradient(ellipse at 58% 60%, rgba(124, 104, 78, 0.18) 0 4px, transparent 5px),
    radial-gradient(ellipse at 73% 28%, rgba(255, 255, 255, 0.84) 0 6px, transparent 7px),
    radial-gradient(ellipse at 91% 56%, rgba(124, 104, 78, 0.19) 0 4px, transparent 5px);
  opacity: 0.82;
  filter: blur(0.55px);
  transform: rotate(-0.25deg);
}

.paper-tear-transition::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), transparent 32%),
    repeating-linear-gradient(87deg, rgba(80, 64, 45, 0.08) 0 1px, transparent 1px 6px),
    repeating-linear-gradient(3deg, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px 18px);
  mix-blend-mode: multiply;
  opacity: 0.62;
}

.paper-tear-transition--blue {
  --tear-paper: #e5f8ff;
  --tear-paper-deep: #bfeaf8;
}

@media (max-width: 700px) {
  .paper-tear-transition {
    height: 92px;
    margin: -54px 0 -42px;
  }
}

/* Graphic orbit and product intro readability refinements */
.poster-orbit {
  pointer-events: none;
}

.poster-orbit figure {
  will-change: transform, opacity;
}

#product-dev .product-line-intro {
  position: relative;
  z-index: 2;
}

#product-dev .product-line-intro article {
  border-color: rgba(55, 70, 43, 0.34);
  background:
    linear-gradient(135deg, rgba(242, 247, 225, 0.96), rgba(225, 238, 207, 0.92));
  box-shadow:
    0 20px 52px rgba(42, 55, 32, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(7px) saturate(0.9);
}

#product-dev .product-line-intro article > p:last-child {
  color: rgba(22, 31, 25, 0.88);
}

#product-dev .product-line-intro article[data-scroll-target]:hover,
#product-dev .product-line-intro article[data-scroll-target]:focus-visible {
  background:
    linear-gradient(135deg, rgba(239, 246, 219, 0.98), rgba(216, 232, 197, 0.95));
}

/* Homepage header and signature glass tuning */
body:not(.detail-view) .brand span:first-child,
body:not(.detail-view) .brand span:last-child {
  color: #fff;
  font-size: 20px;
  line-height: 1;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.58);
}

body:not(.detail-view) .site-header .brand {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

body:not(.detail-view) .brand span:last-child {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
}

body:not(.detail-view) .hero-copy {
  width: min(256px, 42vw);
  min-height: 168px;
  padding: clamp(12px, 1.8vw, 20px);
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
  box-shadow:
    0 16px 42px rgba(20, 13, 8, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(4px) saturate(1.02);
}

body:not(.detail-view) .hero-copy::before {
  content: none;
}

@media (max-width: 700px) {
  body:not(.detail-view) .brand span:first-child,
  body:not(.detail-view) .brand span:last-child {
    font-size: 20px;
  }
}

/* Homepage index label sizing */
body:not(.detail-view) .hero-index {
  width: min(290px, 72vw);
}

body:not(.detail-view) .hero-index-title {
  width: 238px;
}

body:not(.detail-view) .hero-index a {
  grid-template-columns: minmax(190px, 1fr) 34px;
  min-height: 30px;
  align-items: center;
  line-height: 1;
}

body:not(.detail-view) .hero-index a span {
  display: block;
  width: 190px;
  min-height: 30px;
  line-height: 30px;
}

@media (max-width: 700px) {
  body:not(.detail-view) .hero-index {
    width: min(272px, calc(100vw - 32px));
  }

  body:not(.detail-view) .hero-index a {
    grid-template-columns: minmax(170px, 1fr) 28px;
    min-height: 28px;
  }

  body:not(.detail-view) .hero-index a span {
    width: 170px;
    min-height: 28px;
    line-height: 28px;
  }

  body:not(.detail-view) .hero-index-title {
    width: 214px;
    margin-bottom: 7px;
    font-size: 15px;
  }
}

/* Homepage About content refinements */
.home-about-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(58px, 6.18vw, 75px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.home-about-heading h2 span {
  font-family: inherit;
  width: 330px;
  max-width: calc(100vw - 32px);
  min-height: 100px;
}

.home-about-heading-credentials {
  display: grid;
  grid-template-columns: minmax(120px, 0.82fr) minmax(150px, 1fr);
  gap: clamp(16px, 2vw, 28px);
  width: min(440px, 100%);
  margin-top: clamp(38px, 5vw, 78px);
}

.home-about-heading-credentials section {
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.home-about-heading-credentials section > p {
  margin: 0 0 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.42);
}

.home-about-heading-credentials section > div {
  display: grid;
  gap: 8px;
}

.home-about-heading-credentials span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  line-height: 1.45;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.42);
}

.home-about-heading-credentials .about-ai-tools {
  grid-column: 1 / -1;
  margin-top: 2px;
}

.home-about-heading-credentials .about-ai-tools > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.home-about-heading-credentials .about-ai-tools article {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: baseline;
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.home-about-heading-credentials .about-ai-tools strong {
  color: #fff;
  font-size: 14px;
  font-style: italic;
  line-height: 1.25;
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.42);
}

.home-about-heading-credentials .about-ai-tools span {
  font-size: 13px;
}

.home-about-section .about-copy > p > span {
  display: block;
  font-size: 16px;
  line-height: 1.72;
  text-align: justify;
  text-align-last: justify;
}

.home-about-section .about-copy-en {
  display: block;
  font-size: 13px;
  text-align: justify;
  text-align-last: justify;
}

.home-about-section .about-copy {
  position: relative;
  padding-bottom: clamp(78px, 8vw, 120px);
  text-orientation: mixed;
  writing-mode: horizontal-tb;
}

.home-about-section .about-copy > p {
  padding: 13px 15px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
}

.home-about-section .about-copy > p:last-of-type > span,
.home-about-section .about-copy > p:first-of-type > span,
.home-about-section .about-copy > p:first-of-type .about-copy-en,
.home-about-section .about-copy > p:last-of-type .about-copy-en {
  text-align: left;
  text-align-last: left;
}

.home-about-section .life-grid {
  position: absolute;
  right: 0;
  bottom: clamp(12px, 2vw, 28px);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: min(620px, 100%);
  gap: 12px;
  pointer-events: none;
}

.home-about-section .life-grid span {
  display: inline-grid;
  min-height: 34px;
  place-items: center;
  padding: 0 16px;
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
  animation: home-about-chip-float 4.8s ease-in-out infinite;
  animation-delay: calc(var(--chip-index, 0) * -0.35s);
}

.home-about-section .life-grid span:nth-child(1) { --chip-index: 1; }
.home-about-section .life-grid span:nth-child(2) { --chip-index: 2; }
.home-about-section .life-grid span:nth-child(3) { --chip-index: 3; }
.home-about-section .life-grid span:nth-child(4) { --chip-index: 4; }
.home-about-section .life-grid span:nth-child(5) { --chip-index: 5; }
.home-about-section .life-grid span:nth-child(6) { --chip-index: 6; }

@keyframes home-about-chip-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@media (max-width: 1100px) {
  .home-about-heading h2 {
    font-size: clamp(64px, 14vw, 108px);
  }

  .home-about-heading-credentials {
    grid-template-columns: 1fr 1fr;
    margin-top: 30px;
  }
}

@media (max-width: 700px) {
  .home-about-heading h2 {
    font-size: clamp(52px, 16vw, 82px);
  }

  .home-about-heading-credentials {
    grid-template-columns: 1fr;
  }

  .home-about-heading-credentials .about-ai-tools > div {
    grid-template-columns: 1fr;
  }

  .home-about-section .about-copy {
    padding-bottom: 150px;
  }

  .home-about-section .life-grid {
    left: 0;
    right: auto;
    justify-content: flex-start;
  }
}

/* Homepage About title: English-only treatment */
.home-about-heading h2 span {
  display: none;
}

.home-about-heading h2 small {
  display: block;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(54px, 8vw, 72px);
  line-height: 1;
}

@media (max-width: 700px) {
  .home-about-heading h2 small {
    font-size: 58px;
  }
}

/* Homepage bottom-right motto */
.hero-bottom-motto {
  position: absolute;
  right: clamp(22px, 4vw, 56px);
  bottom: clamp(44px, 6vw, 82px);
  z-index: 9;
  max-width: min(420px, 42vw);
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 1.65vw, 28px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.1;
  text-align: right;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.58);
  pointer-events: none;
}

body.detail-view .hero-bottom-motto {
  display: none;
}

@media (max-width: 700px) {
  .hero-bottom-motto {
    right: 18px;
    bottom: 88px;
    max-width: 46vw;
    font-size: 15px;
  }
}

/* Disable scroll-in blur/drop reveals while preserving hover and click interactions. */
.motion-reveal,
.motion-reveal.is-visible,
.section-heading.motion-reveal,
.collection-heading.motion-reveal,
.product-category-heading.motion-reveal,
.section-heading.motion-reveal.is-visible,
.collection-heading.motion-reveal.is-visible,
.product-category-heading.motion-reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition-delay: 0ms !important;
}

.motion-reveal::before,
.motion-reveal.is-visible::before {
  content: none !important;
  animation: none !important;
}
