:root {
  color-scheme: light;
  --black: #050505;
  --white: #fff;
  --soft: #f7f7f5;
  --line: rgba(5, 5, 5, 0.16);
  --muted: rgba(5, 5, 5, 0.6);
  --quiet: rgba(5, 5, 5, 0.36);
  --yellow: #f0c400;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--black);
  font-family:
    "Helvetica Neue",
    Helvetica,
    Arial,
    "PingFang SC",
    "Hiragino Sans GB",
    "Microsoft YaHei",
    sans-serif;
  text-rendering: geometricPrecision;
  cursor: none;
}

body *,
body *::before,
body *::after {
  cursor: none !important;
}

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

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

.scroll-line {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 1px;
  background: rgba(5, 5, 5, 0.08);
}

.scroll-line span {
  display: block;
  width: calc(var(--scroll, 0) * 100%);
  height: 100%;
  background: var(--black);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 26px clamp(22px, 4vw, 72px);
  color: var(--black);
}

.wordmark {
  font-size: 13px;
  font-weight: 500;
}

.site-nav {
  display: flex;
  gap: clamp(12px, 1.8vw, 28px);
}

.site-nav a {
  color: var(--muted);
  font-size: 12px;
}

.site-nav a:hover {
  color: var(--black);
}

.page {
  position: relative;
  min-height: 100svh;
  padding: clamp(108px, 9.2vw, 148px) clamp(22px, 5vw, 88px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-count {
  position: absolute;
  top: clamp(84px, 8vw, 124px);
  right: clamp(22px, 5vw, 88px);
  margin: 0;
  color: var(--quiet);
  font-size: 12px;
  text-align: right;
}

.kicker {
  margin: 0 0 clamp(42px, 6vw, 96px);
  color: var(--muted);
  font-size: clamp(12px, 0.95vw, 15px);
  line-height: 1.45;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(60px, 9.8vw, 138px);
  line-height: 0.98;
}

h2 {
  font-size: clamp(36px, 4.9vw, 74px);
  line-height: 1.08;
}

h3 {
  font-size: clamp(20px, 2.15vw, 32px);
  line-height: 1.18;
}

p {
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.86;
}

.hero-photo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.56fr);
  align-items: center;
  gap: clamp(40px, 8vw, 128px);
  background: var(--white);
}

.hero-bg-title {
  position: relative;
  top: auto;
  left: auto;
  z-index: 2;
  margin: 0;
  color: var(--black);
  font-size: clamp(58px, 9vw, 132px);
  line-height: 1.02;
  text-align: left;
  white-space: normal;
  transform: none;
  mix-blend-mode: normal;
}

.egg-photo-wrap {
  position: relative;
  z-index: 1;
  width: min(31vw, 380px);
  min-width: 220px;
  aspect-ratio: 0.8;
  margin: 0;
  justify-self: end;
  overflow: visible;
}

.egg-photo-wrap img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  filter: grayscale(0.2) contrast(1.04);
}

.egg-shadow {
  position: absolute;
  left: 10%;
  right: 8%;
  bottom: 4%;
  z-index: 0;
  height: 12%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgb(0 0 0 / 0.18), rgb(0 0 0 / 0) 70%);
  transform: translateY(10px) scale(0.9);
  transform-origin: center;
  opacity: 0.75;
  transition: transform 180ms ease, opacity 180ms ease;
}

.egg-cursor {
  --cursor-x: 50vw;
  --cursor-y: 50vh;
  --cursor-rotate: 0deg;
  --cursor-scale: 1;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: clamp(72px, 7vw, 112px);
  aspect-ratio: 1;
  pointer-events: none;
  opacity: 0;
  transform:
    translate3d(var(--cursor-x), var(--cursor-y), 0)
    translate3d(-50%, -50%, 0)
    rotate(var(--cursor-rotate))
    scale(var(--cursor-scale));
  filter: drop-shadow(0 14px 18px rgb(0 0 0 / 0.14));
  transition: opacity 160ms ease;
  will-change: transform;
}

.egg-cursor.is-visible {
  opacity: 1;
}

.egg-cursor img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: clamp(54px, 9vw, 132px);
}

.boiled-eggs {
  width: min(31vw, 390px);
  margin: 0;
  justify-self: center;
}

.boiled-eggs img {
  width: 100%;
  filter: grayscale(0.25) contrast(1.03);
}

.story-portrait {
  position: relative;
  width: min(32vw, 400px);
  margin: 0;
  justify-self: center;
}

.story-portrait img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 0.76;
  object-fit: contain;
  object-position: center bottom;
  image-rendering: auto;
}

.story-copy {
  max-width: 760px;
  margin-right: auto;
}

.story-copy h2 {
  max-width: 720px;
  margin-bottom: clamp(42px, 5vw, 72px);
  font-size: clamp(42px, 5.8vw, 88px);
  line-height: 1.03;
}

.story-copy p:not(.kicker) {
  max-width: 660px;
  margin: 0 0 18px;
  color: var(--black);
  font-size: clamp(19px, 2vw, 30px);
  line-height: 1.62;
}

.philosophy-page {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(58px, 8vw, 116px);
}

.portrait-philosophy {
  position: relative;
  width: min(390px, 34vw);
  margin: 0;
  justify-self: center;
}

.philosophy-eggs {
  position: relative;
  width: min(38vw, 500px);
  min-width: 280px;
  margin: 0;
  justify-self: center;
}

.portrait-philosophy img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center bottom;
  filter: grayscale(0.2) contrast(1.02);
  mix-blend-mode: multiply;
  clip-path: none;
  animation: portrait-sway 5.8s ease-in-out infinite;
}

.philosophy-eggs img {
  position: relative;
  z-index: 2;
  width: 100%;
  filter: none;
}

.philosophy-eggs .story-top-egg {
  position: absolute;
  z-index: 5;
  top: 28.95%;
  left: 42.61%;
  width: 17.25%;
  max-width: none;
  transform-origin: 50% 84%;
  animation: top-egg-tumble 3s cubic-bezier(0.2, 0.72, 0.2, 1) 0.25s infinite both;
  pointer-events: none;
}

.portrait-philosophy svg {
  position: absolute;
  z-index: 3;
  inset: -8% -14% -10% -18%;
  width: 132%;
  height: 124%;
  fill: none;
  stroke: var(--yellow);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 10;
  animation: line-sway 4.6s ease-in-out infinite;
  pointer-events: none;
}

.philosophy-copy h2 {
  max-width: 520px;
  margin-bottom: clamp(18px, 2vw, 30px);
  color: var(--black);
  font-family:
    "Times New Roman",
    "Songti SC",
    "STSong",
    serif;
  font-size: clamp(28px, 3.2vw, 52px);
  line-height: 1.12;
  font-style: italic;
}

.philosophy-lead {
  max-width: 620px;
  margin-bottom: clamp(34px, 4.2vw, 64px);
  color: var(--black);
  font-family:
    "Times New Roman",
    "Songti SC",
    "STSong",
    serif;
  font-size: clamp(30px, 3.6vw, 58px);
  line-height: 1.12;
  font-style: italic;
}

.attitude-line {
  max-width: 820px;
  margin: 0;
  color: var(--black);
  font-family:
    "Times New Roman",
    "Songti SC",
    "STSong",
    serif;
  font-size: clamp(44px, 6vw, 104px);
  line-height: 1.08;
  font-weight: 400;
  text-wrap: balance;
}

.position {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(48px, 7vw, 104px);
}

.position-copy {
  position: relative;
  z-index: 2;
  max-width: 1180px;
}

.position-copy h2 {
  max-width: 820px;
  font-family:
    "Times New Roman",
    "Songti SC",
    "STSong",
    serif;
  font-size: clamp(42px, 5.2vw, 88px);
  line-height: 1.1;
  font-weight: 400;
  text-wrap: balance;
}

.position-copy h2 span {
  display: block;
  white-space: nowrap;
}

.position-list {
  position: relative;
  z-index: 2;
  margin: 0;
  border-top: 1px solid var(--black);
}

.position-list div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 24px;
  padding: clamp(20px, 2.4vw, 34px) 0;
  border-bottom: 1px solid var(--line);
}

.position-list dt {
  color: var(--black);
  font-size: 13px;
  text-transform: uppercase;
}

.position-list dd {
  margin: 0;
  color: var(--black);
  font-size: clamp(17px, 1.16vw, 21px);
  line-height: 1.64;
}

.advantage-list {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 3.2vw, 48px);
  margin-top: clamp(54px, 6vw, 88px);
  border-top: 1px solid var(--black);
}

.advantage-list article {
  padding-top: clamp(22px, 3vw, 42px);
  border-top: 1px solid var(--line);
}

.advantage-list span {
  display: block;
  margin-bottom: clamp(20px, 3vw, 38px);
  color: var(--black);
  font-size: clamp(22px, 2.2vw, 34px);
}

.advantage-list p {
  color: var(--black);
  font-size: clamp(16px, 1.12vw, 19px);
  line-height: 1.72;
}

.career {
  display: grid;
  grid-template-columns: minmax(250px, 0.48fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 112px);
}

.section-intro {
  position: sticky;
  top: 118px;
  align-self: start;
}

.career-line {
  position: relative;
  margin: clamp(18px, 4vw, 64px) 0 0;
  padding: 0;
  list-style: none;
}

.career-line::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: 0;
  left: 10px;
  width: 1px;
  background: var(--black);
}

.career-line li {
  position: relative;
  padding: 0 0 clamp(48px, 5.8vw, 88px) 52px;
}

.egg-dot {
  position: absolute;
  top: 3px;
  left: 0;
  width: 22px;
  height: 28px;
  border: 1px solid var(--black);
  border-radius: 50% 50% 45% 45%;
  background: var(--white);
}

.career-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(108px, 0.25fr) minmax(124px, 0.28fr);
  gap: clamp(14px, 1.5vw, 22px);
  align-items: baseline;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.career-head h3 {
  margin: 0;
  font-size: clamp(19px, 1.7vw, 27px);
}

.career-head p,
.career-head time {
  margin: 0;
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.4;
}

.career-line li > p {
  max-width: 680px;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.72;
}

.project-page {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.76fr);
  align-items: center;
  gap: clamp(42px, 6vw, 96px);
}

.project-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.52fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 5vw, 78px);
}

.detail-copy {
  max-width: 620px;
}

.detail-copy h2 {
  margin-bottom: clamp(24px, 2.8vw, 42px);
  font-size: clamp(34px, 4vw, 62px);
}

.detail-copy p:not(.kicker) {
  color: var(--black);
  font-size: clamp(17px, 1.22vw, 22px);
  line-height: 1.72;
}

.detail-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.48fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.2vw, 18px);
  min-height: min(62vh, 660px);
}

.detail-gallery figure {
  margin: 0;
  min-width: 0;
  min-height: 0;
  background: var(--soft);
  overflow: hidden;
}

.detail-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.detail-wide {
  grid-row: 1 / 3;
}

.bol-detail-gallery figure:nth-child(2) img,
.bol-detail-gallery figure:nth-child(3) img,
.pose-detail-gallery figure:nth-child(3) img {
  object-fit: contain;
  padding: clamp(10px, 1vw, 16px);
  background: var(--soft);
}

.bol-case-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  min-height: min(66vh, 680px);
  gap: clamp(10px, 1vw, 16px);
}

.bol-case-gallery figure {
  background: #f5f7fb;
}

.bol-detail-gallery.bol-case-gallery img {
  object-fit: contain;
  padding: 0;
  background: #f5f7fb;
}

.pose-detail-gallery figure:nth-child(2) img {
  object-fit: cover;
}

.project-logo-img,
.project-logo-text {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 0 clamp(28px, 3.2vw, 46px);
}

.project-logo-img {
  width: 128px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  filter: none;
}

.pose-logo-mark {
  width: 128px;
  height: 42px;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.gujia-logo-mark {
  width: 128px;
  height: 42px;
  object-fit: cover;
  object-position: center;
  filter: none;
}

.wechat-logo-mark {
  width: 42px;
  height: 42px;
  filter: none;
  border-radius: 7px;
}

.project-logo-text {
  margin: 0;
  color: var(--black);
  width: 128px;
  height: 42px;
  font-size: 22px;
  line-height: 42px;
}

.project-copy {
  max-width: 780px;
  padding-top: clamp(16px, 2vw, 30px);
}

.project-copy h2 {
  margin-bottom: clamp(28px, 3vw, 48px);
  font-size: clamp(34px, 4.2vw, 64px);
}

.project-copy > p:not(.kicker) {
  color: var(--black);
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.7;
}

.source-link {
  display: inline-block;
  margin-top: 28px;
  border-bottom: 1px solid var(--black);
  padding-bottom: 6px;
  color: var(--black);
  font-size: 14px;
}

.project-points {
  margin: clamp(28px, 4vw, 58px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--black);
}

.project-points li {
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  color: var(--black);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.62;
}

.project-points strong {
  display: inline-block;
  margin: 0 0.12em;
  padding: 0.03em 0.16em 0.08em;
  background: var(--black);
  color: var(--white);
  font-size: 1.18em;
  font-weight: 500;
  line-height: 1.08;
  vertical-align: baseline;
}

.project-points li > strong:first-child {
  margin-left: 0;
}

.project-copy > p strong {
  font-size: 1.12em;
  color: var(--black);
}

.project-visuals {
  display: grid;
  gap: clamp(12px, 1.4vw, 18px);
  align-items: end;
}

.project-visuals-three {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(10, minmax(0, 4.6vh));
}

.project-visuals.single {
  grid-template-columns: 1fr;
}

.project-visuals img {
  width: 100%;
  height: auto;
  max-width: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  filter: none;
  background: var(--soft);
}

.bol-case-page {
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.58fr);
  grid-template-rows: minmax(0, auto) auto;
  align-content: center;
  align-items: stretch;
  padding-top: clamp(88px, 7.2vw, 118px);
  padding-bottom: clamp(44px, 5vw, 76px);
  gap: clamp(26px, 3.5vw, 56px) clamp(34px, 4.8vw, 76px);
  background: #fbfbfa;
}

.bol-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
  padding-top: clamp(146px, 12.4vw, 196px);
  padding-bottom: clamp(30px, 3.6vw, 56px);
}

.bol-market {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  height: 100%;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--line);
}

.bol-market div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-content: center;
  min-height: 0;
  padding: clamp(18px, 2vw, 30px) 0;
}

.bol-market div + div {
  border-top: 1px solid var(--line);
}

.market-icon {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--black);
  border-radius: 50%;
  color: var(--black);
}

.market-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bol-market dt {
  margin: 0 0 8px;
  color: var(--black);
  font-size: clamp(22px, 2vw, 36px);
  line-height: 1;
  font-weight: 400;
}

.bol-market dd {
  margin: 0;
  color: var(--muted);
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.35;
}

.bol-upgrade-list {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: clamp(24px, 3vw, 44px);
  border-top: 1px solid var(--black);
}

.bol-upgrade-list span {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--black);
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1.2;
  text-transform: uppercase;
}

.bol-showcase {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.2vw, 18px);
  align-self: end;
}

.bol-showcase figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.08);
  background: #fff;
}

.bol-showcase img {
  width: 100%;
  aspect-ratio: 1.78;
  object-fit: contain;
  object-position: center;
  background: #f4f7fb;
}

.bol-showcase figure:nth-child(2) img {
  background: #f4f7fb;
}

.bol-showcase figure:nth-child(3) img {
  background: #0750bb;
}

.bol-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: clamp(30px, 3.4vw, 48px) 0 0;
}

.bol-metrics div {
  border-top: 1px solid var(--black);
  padding-top: 16px;
}

.bol-metrics dt {
  margin: 0 0 8px;
  color: var(--black);
  font-size: clamp(30px, 3.4vw, 54px);
  line-height: 0.95;
  font-weight: 400;
}

.bol-metrics dd {
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.35;
}

.pose-visuals {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 14px;
}

.pose-visuals img {
  height: min(56vh, 580px);
  object-fit: contain;
}

.pose-case-page {
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.58fr);
  grid-template-rows: minmax(0, auto) auto;
  align-content: center;
  align-items: stretch;
  padding-top: clamp(88px, 7.2vw, 118px);
  padding-bottom: clamp(44px, 5vw, 76px);
  gap: clamp(26px, 3.5vw, 56px) clamp(34px, 4.8vw, 76px);
  background: #fbfbfa;
}

.pose-side {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
  padding-top: clamp(146px, 12.4vw, 196px);
  padding-bottom: clamp(30px, 3.6vw, 56px);
}

.pose-showcase {
  grid-column: 1 / -1;
  display: grid;
  gap: clamp(14px, 1.7vw, 24px);
  align-self: end;
}

.pose-showcase-pair {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.2vw, 18px);
}

.pose-showcase-pair figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.08);
  background: #fff;
}

.pose-showcase-pair img {
  width: 100%;
  aspect-ratio: 2.12;
  object-fit: contain;
  object-position: center;
  background: #f7f7f5;
}

.pose-market {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  height: 100%;
  border-top: 1px solid var(--black);
  border-bottom: 1px solid var(--line);
}

.pose-market div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 16px;
  align-content: center;
  min-height: 0;
  padding: clamp(18px, 2vw, 30px) 0;
}

.pose-market div + div {
  border-top: 1px solid var(--line);
}

.pose-market dt {
  margin: 0 0 8px;
  color: var(--black);
  font-size: clamp(20px, 1.7vw, 30px);
  line-height: 1;
  font-weight: 400;
}

.pose-market dd {
  margin: 0;
  color: var(--muted);
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.35;
}

.pose-upgrade-list {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: clamp(22px, 3vw, 42px);
  border-top: 1px solid var(--black);
}

.pose-upgrade-list span {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--black);
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1.2;
  text-transform: uppercase;
}

.pose-case-detail {
  grid-template-columns: minmax(300px, 0.46fr) minmax(0, 1.06fr);
  padding-top: clamp(88px, 7.2vw, 118px);
  padding-bottom: clamp(44px, 5vw, 76px);
  gap: clamp(26px, 3.6vw, 58px);
  background: #fbfbfa;
}

.pose-case-detail .detail-copy {
  max-width: 520px;
}

.pose-case-detail .kicker {
  margin-bottom: clamp(24px, 2.6vw, 38px);
}

.pose-case-detail .detail-copy h2 {
  margin-bottom: clamp(18px, 2vw, 28px);
  font-size: clamp(30px, 2.8vw, 46px);
  line-height: 1.08;
}

.pose-case-detail .detail-copy p:not(.kicker) {
  font-size: clamp(15px, 1.02vw, 18px);
  line-height: 1.62;
}

.pose-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: clamp(26px, 3vw, 42px) 0 0;
}

.pose-metrics div {
  border-top: 1px solid var(--black);
  padding-top: 14px;
}

.pose-metrics dt {
  margin: 0 0 8px;
  color: var(--black);
  font-size: clamp(30px, 3.4vw, 54px);
  line-height: 0.95;
  font-weight: 400;
}

.pose-metrics dd {
  margin: 0;
  color: var(--muted);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.35;
}

.pose-case-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(220px, 0.58fr);
  grid-template-rows: minmax(0, 1fr) minmax(0, 0.62fr);
  gap: clamp(12px, 1.2vw, 18px);
  height: min(66vh, 660px);
  min-height: 500px;
}

.pose-case-gallery figure {
  margin: 0;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.08);
  background: #fff;
}

.pose-case-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pose-phone {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.pose-social {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.pose-product {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.pose-phone img {
  object-fit: contain;
  object-position: center;
}

.pose-social img {
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.pose-product img {
  object-fit: contain;
  object-position: center;
  padding: clamp(10px, 1vw, 16px);
  background: #f7f7f5;
}

#gujia .project-visuals img {
  max-height: min(60vh, 620px);
  object-fit: contain;
}

.samyang-visuals {
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  height: min(58vh, 600px);
  min-height: 500px;
  background: var(--soft);
}

.samyang-visuals img:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.samyang-visuals img:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  height: 100%;
  object-fit: cover;
}

.samyang-visuals img:nth-child(3) {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  height: 100%;
  object-fit: cover;
}

#high100 .project-visuals img {
  max-height: min(60vh, 620px);
  object-fit: contain;
}

.wechat-visuals {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 1fr;
  gap: clamp(12px, 1.6vw, 22px);
  align-items: stretch;
  height: min(54vh, 520px);
  min-height: 390px;
  background: transparent;
}

.wechat-visuals img:first-child {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.wechat-visuals img:nth-child(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.project-proof {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 420px;
  padding: clamp(26px, 4vw, 62px);
  border: 1px solid var(--line);
}

.project-proof strong {
  display: block;
  margin-top: 18px;
  color: var(--black);
  font-size: clamp(38px, 5vw, 86px);
  font-weight: 400;
  line-height: 0.95;
}

.project-proof strong:first-child {
  margin-top: 0;
}

.project-proof span {
  color: var(--muted);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.5;
}

.large-proof strong {
  font-size: clamp(48px, 6.2vw, 106px);
}

.archive-page {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  gap: clamp(34px, 4vw, 72px);
}

.archive-page .section-intro {
  position: relative;
  top: auto;
  z-index: 2;
}

.archive-page .kicker {
  margin-bottom: clamp(18px, 2vw, 30px);
}

.archive-page .section-intro h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.06;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 42px) clamp(16px, 2vw, 32px);
  align-items: start;
  min-height: 0;
}

.archive-card {
  display: grid;
  grid-template-rows: auto auto;
  gap: 12px;
  min-width: 0;
  min-height: 0;
  border-top: 0;
  padding-top: 0;
  background: var(--white);
}

.archive-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  min-height: 0;
  object-fit: cover;
  background: var(--soft);
}

.archive-grid img {
  object-position: center;
}

.archive-grid p {
  margin: 0;
  color: var(--black);
  font-size: clamp(14px, 1vw, 18px);
  line-height: 1.36;
}

.closing {
  display: grid;
  place-items: center;
  align-content: center;
  gap: clamp(24px, 3vw, 42px);
  text-align: center;
}

.closing-egg {
  width: min(26vw, 320px);
  min-width: 180px;
  margin: 0;
}

.closing-egg img {
  width: 100%;
  filter: drop-shadow(0 24px 32px rgb(0 0 0 / 0.12));
}

.closing-copy {
  width: min(980px, 100%);
}

.closing-copy h2 {
  font-family:
    "Times New Roman",
    "Songti SC",
    "STSong",
    serif;
  font-style: italic;
}

.closing p:not(.kicker) {
  max-width: 620px;
  margin: clamp(24px, 3vw, 42px) auto 0;
}

.closing p:not(.kicker) + p:not(.kicker) {
  margin-top: 12px;
  margin-bottom: 38px;
}

.closing a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 12px;
  border-bottom: 1px solid var(--black);
  padding-bottom: 6px;
  font-size: clamp(18px, 2vw, 28px);
}

.closing-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 18px;
  margin-top: clamp(28px, 3.2vw, 46px);
}

.closing-contact svg {
  width: 0.9em;
  height: 0.9em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes line-sway {
  0%,
  100% {
    transform: rotate(-2deg) translate(-6px, 0);
  }
  50% {
    transform: rotate(2deg) translate(8px, -8px);
  }
}

@keyframes portrait-sway {
  0%,
  100% {
    transform: translateX(-4px) rotate(-0.6deg);
  }
  50% {
    transform: translateX(8px) rotate(0.8deg);
  }
}

@keyframes top-egg-tumble {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  9% {
    transform: translate3d(-4%, -1%, 0) rotate(-7deg);
  }
  18% {
    transform: translate3d(5%, 1%, 0) rotate(9deg);
  }
  28% {
    transform: translate3d(-2%, 3%, 0) rotate(-5deg);
  }
  44% {
    transform: translate3d(52%, 116%, 0) rotate(96deg);
  }
  64% {
    transform: translate3d(124%, 218%, 0) rotate(286deg);
  }
  80% {
    opacity: 1;
    transform: translate3d(188%, 280%, 0) rotate(492deg);
  }
  92% {
    opacity: 1;
    transform: translate3d(235%, 315%, 0) rotate(720deg);
  }
  96% {
    opacity: 0;
    transform: translate3d(235%, 315%, 0) rotate(720deg);
  }
  96.1% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

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

@media (max-width: 1180px) {
  .project-page,
  .bol-case-page,
  .pose-case-page,
  .project-detail {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .bol-case-page,
  .pose-case-page {
    background: #fbfbfa;
  }

  .bol-side,
  .pose-side {
    align-self: stretch;
  }

  .bol-side,
  .pose-side {
    padding-top: 0;
    padding-bottom: 0;
  }

  .bol-market,
  .pose-market {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bol-market div,
  .pose-market div {
    padding-right: 18px;
  }

  .bol-market div + div,
  .pose-market div + div {
    border-top: 0;
    border-left: 1px solid var(--line);
    padding-left: 18px;
  }

  .bol-upgrade-list,
  .pose-upgrade-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .bol-upgrade-list span,
  .pose-upgrade-list span {
    padding-right: 12px;
  }

  .detail-copy {
    max-width: 820px;
  }

  .detail-gallery {
    min-height: min(54vh, 560px);
  }

  .pose-case-gallery {
    height: auto;
    min-height: 0;
  }

  .pose-case-gallery figure {
    aspect-ratio: 16 / 10;
  }

  .pose-phone {
    aspect-ratio: 9 / 16;
  }

  .project-visuals,
  .project-visuals-three,
  .pose-visuals,
  .wechat-visuals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    min-height: 0;
  }

  .samyang-visuals {
    grid-template-columns: 0.9fr 1.1fr;
    grid-template-rows: 1fr 1fr;
    height: min(58vh, 560px);
    min-height: 460px;
    gap: 0;
  }

  .wechat-visuals {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1fr;
    height: min(46vh, 430px);
    min-height: 320px;
  }

  .project-visuals img,
  .pose-visuals img:first-child,
  .pose-visuals img:nth-child(2) {
    grid-column: auto;
    grid-row: auto;
    align-self: stretch;
    height: min(38vh, 380px);
    object-fit: contain;
  }

  .wechat-visuals img:first-child {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    height: 100%;
    object-fit: cover;
  }

  .wechat-visuals img:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    height: 100%;
    object-fit: cover;
  }

  .samyang-visuals img:first-child {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    height: 100%;
    object-fit: contain;
  }

  .samyang-visuals img:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    height: 100%;
    object-fit: cover;
  }

  .samyang-visuals img:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 980px) {
  .site-header {
    position: absolute;
  }

  .site-nav {
    display: none;
  }

  .philosophy-page,
  .story,
  .career,
  .position,
  .bol-case-page,
  .pose-case-page,
  .project-detail,
  .closing {
    grid-template-columns: 1fr;
  }

  .bol-metrics,
  .pose-metrics {
    grid-template-columns: 1fr;
  }

  .bol-market,
  .pose-market {
    grid-template-columns: 1fr;
  }

  .bol-market div + div,
  .pose-market div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding-left: 0;
  }

  .bol-upgrade-list {
    grid-template-columns: 1fr;
  }

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

  .archive-card {
    min-height: 0;
  }

  .story-portrait,
  .philosophy-eggs,
  .portrait-philosophy,
  .closing-egg {
    width: min(440px, 76vw);
  }

  .advantage-list {
    grid-template-columns: 1fr;
  }

  .position-copy h2 span {
    white-space: normal;
  }

  .career-head {
    grid-template-columns: 1fr;
  }

  .section-intro {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 104px 20px;
  }

  .page-count {
    top: 74px;
    right: 20px;
  }

  .project-logo-img,
  .project-logo-text {
    top: auto;
    left: auto;
  }

  .project-visuals {
    grid-template-columns: 1fr;
    height: auto;
  }

  .detail-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }

  .pose-upgrade-list {
    grid-template-columns: 1fr 1fr;
  }

  .bol-showcase,
  .pose-showcase-pair {
    grid-template-columns: 1fr;
  }

  .pose-case-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .pose-phone,
  .pose-social,
  .pose-product {
    grid-column: auto;
    grid-row: auto;
  }

  .pose-phone {
    width: min(420px, 100%);
    justify-self: center;
  }

  .detail-wide {
    grid-row: auto;
  }

  .detail-gallery figure {
    aspect-ratio: 16 / 10;
  }

  .samyang-visuals {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
    min-height: 0;
  }

  .wechat-visuals {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    height: auto;
    min-height: 0;
  }

  .project-visuals img,
  .pose-visuals img:first-child,
  .pose-visuals img:nth-child(2),
  .samyang-visuals img:first-child,
  .samyang-visuals img:nth-child(2),
  .samyang-visuals img:nth-child(3) {
    width: 100%;
    height: auto;
    max-width: 100%;
    grid-column: auto;
    grid-row: auto;
  }

  .wechat-visuals img:first-child,
  .wechat-visuals img:nth-child(2) {
    width: 100%;
    height: auto;
    max-width: 100%;
    grid-column: auto;
    grid-row: auto;
    object-fit: contain;
  }

  .archive-grid {
    grid-template-columns: 1fr;
  }

  .archive-grid img {
    aspect-ratio: 16 / 10;
  }

  .egg-photo-wrap {
    min-width: 0;
    width: 66vw;
  }

  .hero-bg-title {
    font-size: clamp(48px, 15vw, 78px);
    white-space: normal;
  }

  .hero-photo {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .egg-photo-wrap {
    justify-self: start;
  }

  h2 {
    font-size: clamp(34px, 10vw, 58px);
  }

  .philosophy-copy p:last-child,
  .project-copy > p:not(.kicker) {
    font-size: 21px;
  }

  .story {
    grid-template-columns: 1fr;
  }

  .boiled-eggs {
    width: min(76vw, 340px);
    justify-self: start;
  }

  .position-list div {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .project-visuals {
    grid-template-columns: 1fr;
  }

  .project-visuals img {
    height: auto;
    aspect-ratio: 1.12;
  }
}
