:root {
  --paper: #f6fdff;
  --ink: #050505;
  --muted: #838383;
  --line: rgba(0, 0, 0, 0.36);
  --soft-line: rgba(0, 0, 0, 0.16);
  --gradient: linear-gradient(120deg, #f7f0ac 0%, #acf7f0 48%, #f0acf7 100%);
  --blue: #5db9fa;
  --frame-width: 1440px;
  --about-content-width: 1054px;
  --font-body: "PingFang TC", "PingFang SC", "Microsoft JhengHei", sans-serif;
  --font-title: "Apple LiGothic", "蘋果儷中黑", "PingFang TC", sans-serif;
  --font-modern: "Shanghai Modern", "上海摩登体", "PingFang TC", "PingFang SC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% 8%, rgba(196, 246, 255, 0.52), transparent 28rem),
    linear-gradient(180deg, #eefcff 0%, #ffffff 48%, #ecfbff 100%);
  color: var(--ink);
  cursor: none;
  font-family: var(--font-body);
}

a,
button {
  color: inherit;
  cursor: none;
  font: inherit;
}

.site-cursor {
  --cursor-scale: 1;
  --cursor-bg: var(--gradient);
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: transparent;
  pointer-events: none;
  transform: translate3d(-100px, -100px, 0);
  transition:
    width 180ms ease,
    height 180ms ease,
    border-radius 180ms ease,
    opacity 180ms ease;
}

.site-cursor::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--cursor-bg);
  box-shadow: 0 8px 22px rgba(93, 185, 250, 0.2);
  transform: scale(var(--cursor-scale));
  transform-origin: center;
  transition: transform 130ms ease, background 180ms ease;
  content: "";
}

.site-cursor span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  opacity: 0;
  white-space: nowrap;
}

.site-cursor.is-project {
  width: 106px;
  height: 38px;
  border-radius: 999px;
  --cursor-bg: var(--blue);
}

.site-cursor.is-soft {
  width: 24px;
  height: 24px;
  --cursor-bg: var(--gradient);
}

.site-cursor.is-project span {
  opacity: 1;
}

.site-cursor.is-pressed {
  --cursor-scale: 0.72;
}

.site-cursor.is-project.is-pressed {
  --cursor-scale: 0.94;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 68px;
  border-bottom: 1px solid var(--soft-line);
  background: rgba(246, 253, 255, 0.86);
  backdrop-filter: blur(14px);
}

.site-nav {
  display: grid;
  grid-template-columns: 62px 78px 44px 78px 62px;
  align-items: center;
  justify-items: center;
  max-width: 436px;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  column-gap: 28px;
}

.nav-link {
  display: inline-flex;
  justify-self: center;
  text-decoration: none;
  color: #777;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
  transform: scale(1);
  transform-origin: center;
  transition: color 220ms ease, opacity 220ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: var(--gradient);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.nav-link:active {
  transform: scale(0.92);
}

.brand-mark {
  --brand-press-scale: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  text-decoration: none;
  transform: rotate(var(--logo-rotation, 0deg)) scale(var(--brand-press-scale));
  transition: transform 680ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

.brand-mark:active {
  --brand-press-scale: 0.9;
}

.brand-mark img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.hero {
  overflow: hidden;
}

.hero-stage {
  position: relative;
  height: 598px;
  max-width: var(--frame-width);
  margin: 0 auto;
  border-bottom: 1px solid var(--soft-line);
}

.hero-copy {
  position: absolute;
  z-index: 4;
  top: 123px;
  transition: opacity 480ms ease, transform 580ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-copy-left {
  left: 136px;
  width: 317px;
  text-align: center;
}

.hero-copy-right {
  left: 914px;
  top: 126px;
  width: 515px;
  text-align: center;
}

.hero-copy h1 {
  margin: 0 0 42px;
  font-family: var(--font-title);
  font-size: 104px;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1;
}

.hero-copy p {
  margin: 0;
  color: #111;
  font-size: 20px;
  line-height: 1.35;
}

.portrait-wrap {
  position: absolute;
  z-index: 3;
  --split-x: 50%;
  --portrait-align-x: 0px;
  --portrait-top: 58px;
  --painted-left: calc(50% - 144px);
  --real-left: calc(50% - 130px);
  --real-top: 61px;
  --portrait-width: 280px;
  --portrait-height: 540px;
  --portrait-shift-duration: 760ms;
  --portrait-shift-ease: cubic-bezier(0.22, 0.65, 0.28, 1);
  inset: 0;
  pointer-events: none;
}

.portrait-composite {
  position: relative;
  width: 100%;
  height: 100%;
  transform: translateX(var(--portrait-align-x));
  transition: transform var(--portrait-shift-duration) var(--portrait-shift-ease);
}

.portrait-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition:
    clip-path var(--portrait-shift-duration) var(--portrait-shift-ease),
    opacity 460ms ease,
    filter 460ms ease;
}

.portrait-layer-painted {
  clip-path: inset(0 calc(100% - var(--split-x)) 0 0);
}

.portrait-layer-real {
  clip-path: inset(0 0 0 var(--split-x));
}

.portrait-img {
  position: absolute;
  width: var(--portrait-width);
  height: var(--portrait-height);
  object-fit: contain;
  object-position: center bottom;
}

.portrait-painted {
  top: var(--portrait-top);
  left: var(--painted-left);
}

.portrait-real {
  top: var(--real-top);
  left: var(--real-left);
}

.hero-stage.mode-left .portrait-composite {
  transform: translateX(calc(var(--portrait-align-x) + 22px));
}

.hero-stage.mode-left .portrait-layer-painted {
  clip-path: inset(0 0 0 0);
}

.hero-stage.mode-left .portrait-layer-real {
  opacity: 0;
  clip-path: inset(0 0 0 100%);
}

.hero-stage.mode-left .hero-copy-right {
  opacity: 0;
  transform: translateX(26px);
}

.hero-stage.mode-right .portrait-composite {
  transform: translateX(calc(var(--portrait-align-x) - 22px));
}

.hero-stage.mode-right .portrait-layer-real {
  clip-path: inset(0 0 0 0);
}

.hero-stage.mode-right .portrait-layer-painted {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
}

.hero-stage.mode-right .hero-copy-left {
  opacity: 0;
  transform: translateX(-26px);
}

.latest-label {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 400px) max-content minmax(120px, 400px);
  align-items: center;
  justify-content: center;
  column-gap: 50px;
  max-width: var(--frame-width);
  height: 170px;
  margin: 0 auto;
  padding: 128px 0 0;
  color: #8d8d8d;
  font-size: 20px;
}

.latest-label span {
  height: 1px;
  width: 100%;
  background: var(--soft-line);
}

.latest-label p {
  margin: 0;
}

.projects {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 69px 71px;
  width: min(calc(100% - 168px), 1271px);
  max-width: none;
  margin: 0 auto;
  padding: 65px 0 98px;
}

.project-card {
  display: block;
  border-radius: 22px;
  border: 0;
  color: inherit;
  outline: 0;
  text-decoration: none;
  transform: translateZ(0) scale(1);
  transform-origin: center;
  transition: transform 320ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.project-card-wide {
  grid-column: 1 / -1;
}

.project-card:hover,
.project-card:focus-visible {
  transform: translateZ(0) scale(0.965);
}

.project-card:active {
  transform: translateZ(0) scale(0.95);
}

.project-card:focus-visible {
  outline: 3px solid #5db9fa;
  outline-offset: 8px;
}

.project-media {
  overflow: hidden;
  width: 100%;
  height: clamp(300px, 32vw, 418px);
  border-radius: 20px;
  transition: filter 180ms ease;
}

.project-card:hover .project-media,
.project-card:focus-visible .project-media {
  filter: saturate(1.04) brightness(1.01);
}

.media-voya {
  position: relative;
  background: linear-gradient(180deg, #aef4fc 0%, #f8eefe 100%);
}

.media-fitmatch {
  position: relative;
  background: linear-gradient(180deg, #ffe1f3 0%, #fffbd2 100%);
}

.media-light {
  position: relative;
  background: linear-gradient(180deg, #eed6ff 0%, #d7e4ff 100%);
}

.media-pet {
  position: relative;
  background: linear-gradient(180deg, #d8ffd0 0%, #cffcf2 100%);
}

.media-other {
  position: relative;
  background: linear-gradient(180deg, #ee9ca7 0%, #ffdde1 50%, #ffdde1 100%);
}

.project-media img,
.project-media video,
.project-media canvas {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voya-card-preview {
  position: relative;
  width: 100%;
  height: 100%;
}

.voya-desktop-preview {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(82%, 520px) !important;
  height: auto !important;
  max-height: 86% !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 20px 34px rgba(32, 52, 64, 0.16));
}

.fitmatch-ui-marquee {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.fitmatch-ui-track {
  display: flex;
  align-items: center;
  gap: clamp(18px, 4.2vw, 38px);
  width: max-content;
  height: 100%;
  padding: 34px 0;
  animation: fitmatch-ui-scroll 38s linear infinite;
  will-change: transform;
}

.fitmatch-ui-track img {
  flex: 0 0 auto;
  width: auto;
  height: 86%;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(92, 71, 92, 0.16));
}

.static-ui-preview {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 4.2%, 34px);
  padding: clamp(24px, 5%, 42px);
}

.static-ui-preview img {
  width: auto;
  max-width: 31%;
  height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 20px 36px rgba(63, 73, 84, 0.18));
  transform: translateY(0) rotate(var(--tilt, 0deg));
}

.static-ui-preview img:nth-child(1) {
  --tilt: -3deg;
}

.static-ui-preview img:nth-child(2) {
  --tilt: 1.5deg;
  height: 88%;
}

.static-ui-preview img:nth-child(3) {
  --tilt: 3deg;
}

.static-ui-preview-yuguang img {
  max-width: 28%;
  height: 80%;
  transform-origin: center bottom;
}

.static-ui-preview-yuguang img:nth-child(1) {
  z-index: 1;
  height: 76%;
  transform: translateY(5%);
}

.static-ui-preview-yuguang img:nth-child(2) {
  z-index: 3;
  height: 84%;
  transform: translateY(-3%);
}

.static-ui-preview-yuguang img:nth-child(3) {
  z-index: 2;
  height: 76%;
  transform: translateY(5%);
}

.static-ui-preview-zhuaji {
  gap: 0;
  padding: clamp(18px, 4%, 34px);
}

.static-ui-preview-zhuaji img {
  width: 86%;
  max-width: 86%;
  height: auto;
  max-height: 84%;
  border-radius: 30px;
  filter: none;
  object-fit: contain;
  object-position: center;
  transform: none;
}

@keyframes fitmatch-ui-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - clamp(9px, 2.1vw, 19px)));
  }
}

.project-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-top: 19px;
}

.other-showcase {
  position: relative;
  width: 100%;
  height: 100%;
}

.other-preview {
  position: absolute;
  overflow: hidden;
  border-radius: clamp(14px, 1.9vw, 24px);
  box-shadow: 0 20px 42px rgba(105, 51, 64, 0.14);
}

.other-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.other-preview-chocolate {
  top: 9.09%;
  left: 8.97%;
  width: 19.35%;
  height: 78.71%;
}

.other-preview-travel-a {
  top: 14.59%;
  left: 42.64%;
  width: 8.89%;
  height: 56%;
}

.other-preview-travel-b {
  top: 31.82%;
  left: 53.58%;
  width: 8.89%;
  height: 56%;
}

.other-preview-rental {
  top: 9.09%;
  left: 76.79%;
  width: 13.3%;
  height: 78.71%;
}

.project-card h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.05em;
}

.project-card p {
  max-width: 780px;
  margin: 19px 0 0;
  color: #858585;
  font-size: 18px;
  line-height: 1.42;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  min-width: max-content;
}

.project-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 4px 6px;
  border: 1px solid #b8b8b8;
  color: #a0a0a0;
  font-size: 18px;
  line-height: 1.2;
}

.about-section {
  max-width: var(--frame-width);
  margin: 0 auto;
  scroll-margin-top: 88px;
}

.about-panel {
  position: relative;
  overflow: hidden;
  padding: 78px 63px 84px;
}

.about-panel-intro {
  display: grid;
  grid-template-columns: minmax(0, 610px) 400px;
  justify-content: center;
  gap: 44px;
  min-height: 0;
  padding-bottom: 64px;
  background: linear-gradient(0deg, #fff 0%, #e9f7fb 100%);
}

.about-copy h1,
.about-copy h2 {
  max-width: 610px;
  margin: 0 0 62px;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.34;
  letter-spacing: 0.05em;
}

.about-body {
  max-width: 610px;
  color: #787878;
  font-size: 18px;
  line-height: 1.78;
}

.about-body p {
  margin: 0 0 28px;
}

.about-body p:last-child {
  margin-bottom: 0;
}

.about-portrait-card {
  align-self: start;
  overflow: hidden;
  width: min(100%, 400px);
  height: 495px;
  margin: 0;
  border-radius: 20px;
  background: #ecf7f9;
}

.about-portrait-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-panel-details {
  min-height: 1024px;
  padding-top: 72px;
  background: linear-gradient(180deg, #fff 0%, #fff 90%, rgba(233, 247, 251, 0.3) 100%);
}

.about-panel-details > .about-heading-row,
.about-panel-details > .about-experience-grid,
.about-panel-details > .about-values-grid {
  max-width: var(--about-content-width);
  margin-right: auto;
  margin-left: auto;
}

.about-heading-row h2 {
  margin: 0 0 43px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.05em;
}

.about-experience-grid,
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
}

.about-experience-card {
  min-width: 0;
}

.about-experience-media {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 400 / 268;
  border-radius: 15px;
  background: #eef8fb;
}

.about-experience-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience-card h3 {
  margin: 15px 0 9px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.05em;
}

.about-experience-card p {
  margin: 0;
  color: #787878;
  font-size: 18px;
  line-height: 1.35;
}

.about-values-heading {
  margin-top: 66px;
}

.about-value-card {
  display: grid;
  align-items: center;
  justify-items: start;
  min-height: 268px;
  padding: 38px 68px;
  border: 1px solid rgba(190, 215, 220, 0.52);
  border-radius: 15px;
  background: linear-gradient(180deg, #e8fbff 0%, #fff1fb 100%);
  text-align: left;
}

.about-value-card:nth-child(2) {
  border-color: rgba(224, 207, 171, 0.5);
  background: linear-gradient(180deg, #fff0fa 0%, #fffbd8 100%);
}

.about-value-card:nth-child(3) {
  border-color: rgba(196, 205, 230, 0.55);
  background: linear-gradient(180deg, #f0e5ff 0%, #e2fff6 100%);
}

.about-value-card h3 {
  max-width: 300px;
  margin: 0;
  color: #757574;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.05em;
}

.more-page {
  background: #fff;
}

.more-frame {
  position: relative;
  overflow: hidden;
  max-width: var(--frame-width);
  margin: 0 auto;
}

.more-frame-intro {
  background:
    radial-gradient(circle at 14% 4%, rgba(172, 247, 240, 0.38), transparent 22rem),
    radial-gradient(circle at 92% 14%, rgba(240, 172, 247, 0.2), transparent 24rem),
    linear-gradient(0deg, #fff 0%, #e9f7fb 100%);
}

.more-frame-photo {
  background:
    radial-gradient(circle at 3% 30%, rgba(247, 240, 172, 0.14), transparent 18rem),
    radial-gradient(circle at 96% 58%, rgba(172, 247, 240, 0.18), transparent 22rem),
    #fff;
}

.more-content {
  width: min(1180px, calc(100% - 128px));
  max-width: none;
  margin: 0 auto;
  padding: 56px 0 78px;
}

.more-kicker {
  margin: 0;
  color: #757574;
  font-size: 18px;
  line-height: 1.35;
}

.more-page h1 {
  margin: 0 0 20px;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.05em;
}

.more-block {
  margin-top: 72px;
}

.more-music {
  margin-top: 48px;
}

.more-photo-section {
  margin-top: 0;
}

.more-content-second {
  padding-top: 51px;
  padding-bottom: 98px;
}

.more-page h2 {
  margin: 0 0 24px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.05em;
}

.more-card-grid,
.more-collage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
}

.more-collage-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
}

.more-photo-card,
.more-collage-grid figure {
  margin: 0;
}

.more-photo-card,
.more-collage-grid figure,
.more-daily {
  transform: translateY(0);
}

.more-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 400 / 268;
  border-radius: 15px;
  object-fit: cover;
}

.more-collage-image,
.more-wide-image {
  display: block;
  width: 100%;
  height: auto;
}

.more-photo-card img,
.more-collage-image,
.more-wide-image {
  box-shadow: 0 18px 42px rgba(45, 83, 98, 0.08);
  transition:
    transform 520ms cubic-bezier(0.2, 0.78, 0.2, 1),
    filter 520ms ease,
    box-shadow 520ms ease;
}

.more-photo-card:hover img,
.more-photo-card:focus-within img,
.more-collage-grid figure:hover .more-collage-image,
.more-collage-grid figure:focus-within .more-collage-image,
.more-wide-image:hover {
  filter: saturate(1.04) brightness(1.02);
  transform: translateY(-6px);
  box-shadow: 0 24px 54px rgba(45, 83, 98, 0.13);
}

.more-page figcaption,
.more-note {
  margin: 12px 0 0;
  color: #757574;
  font-size: 18px;
  line-height: 1.42;
}

.more-culture {
  margin-top: 86px;
}

.more-photo-section h2 {
  margin-bottom: 38px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-page [data-reveal] {
  transition-duration: 860ms;
}

.about-page .about-portrait-card[data-reveal],
.about-page .about-experience-card:nth-child(2)[data-reveal],
.about-page .about-value-card:nth-child(2)[data-reveal] {
  transition-delay: 110ms;
}

.about-page .about-experience-card:nth-child(3)[data-reveal],
.about-page .about-value-card:nth-child(3)[data-reveal] {
  transition-delay: 220ms;
}

.more-collage {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  overflow: hidden;
  height: 414px;
  padding: 24px 30px;
}

.more-collage-warm {
  background: linear-gradient(180deg, rgba(255, 110, 127, 0.5) 0%, rgba(191, 233, 255, 0.5) 100%);
}

.more-collage-cool {
  background: linear-gradient(0deg, rgba(255, 110, 127, 0.5) 0%, rgba(191, 233, 255, 0.5) 100%);
}

.more-collage-green {
  background: linear-gradient(180deg, rgba(0, 201, 255, 0.3) 0%, rgba(146, 254, 157, 0.3) 100%);
}

.more-collage-blue {
  background: linear-gradient(180deg, rgba(146, 254, 157, 0.3) 0%, rgba(0, 201, 255, 0.3) 100%);
}

.more-collage img {
  display: block;
  width: 100%;
  height: 176px;
  object-fit: cover;
}

.more-collage img:nth-child(2n) {
  transform: translateY(26px);
}

.more-collage img:nth-child(3n) {
  transform: translateY(-18px);
}

.more-wide-collage {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 54px;
  min-height: 344px;
  padding: 42px 72px;
  background: linear-gradient(90deg, rgba(255, 117, 195, 0.3) 0%, rgba(255, 166, 71, 0.3) 20%, rgba(255, 232, 63, 0.3) 40%, rgba(159, 255, 91, 0.3) 60%, rgba(112, 226, 255, 0.3) 80%, rgba(205, 147, 255, 0.3) 100%);
}

.more-wide-collage img {
  display: block;
  max-height: 248px;
  width: auto;
  max-width: 24%;
  object-fit: contain;
}

.daily-polaroid-board {
  position: relative;
  overflow: hidden;
  height: clamp(360px, 31vw, 414px);
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 117, 195, 0.34) 0%, rgba(255, 166, 71, 0.28) 18%, rgba(255, 232, 63, 0.26) 38%, rgba(159, 255, 91, 0.24) 58%, rgba(112, 226, 255, 0.32) 78%, rgba(205, 147, 255, 0.3) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.daily-polaroid-board::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.58), transparent 18rem),
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.34), transparent 20rem);
  content: "";
  pointer-events: none;
}

.daily-polaroid {
  position: absolute;
  z-index: 1;
  margin: 0;
  padding: 10px 10px 16px;
  width: clamp(200px, 18.5vw, 235px);
  height: clamp(267px, 25.2vw, 320px);
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 18px 34px rgba(54, 83, 103, 0.18),
    0 2px 7px rgba(54, 83, 103, 0.12);
  transform: rotate(var(--tilt)) translateY(0);
  transform-origin: center;
  transition:
    transform 520ms cubic-bezier(0.2, 0.78, 0.2, 1),
    box-shadow 520ms ease;
}

.daily-polaroid:hover,
.daily-polaroid:focus-within {
  box-shadow:
    0 26px 48px rgba(54, 83, 103, 0.22),
    0 5px 12px rgba(54, 83, 103, 0.14);
  transform: rotate(var(--tilt)) translateY(-8px);
}

.daily-polaroid img {
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  object-fit: cover;
}

.daily-polaroid-ski {
  --tilt: -5.5deg;
  left: 4%;
  top: 42px;
}

.daily-polaroid-christmas {
  --tilt: 2.5deg;
  left: 28%;
  top: 20px;
}

.daily-polaroid-sea {
  --tilt: 1.6deg;
  left: 52%;
  top: 42px;
}

.daily-polaroid-potter {
  --tilt: -3.4deg;
  left: 76%;
  top: 20px;
}

.more-export-page {
  background: #fff;
}

.more-export-frame {
  max-width: var(--frame-width);
  margin: 0 auto;
}

.more-export-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.project-toc {
  position: fixed;
  z-index: 45;
  top: 68px;
  bottom: 0;
  left: 0;
  width: 238px;
  color: #151515;
  transform: translateX(0);
  transition: transform 260ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

.project-toc.is-collapsed {
  transform: translateX(-238px);
}

.project-toc__panel {
  height: 100%;
  overflow-y: auto;
  padding: 30px 14px 34px;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.96);
  backdrop-filter: blur(18px);
}

.project-toc__toggle {
  position: absolute;
  z-index: 2;
  top: 25px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #767676;
  transform: scale(1);
  transform-origin: center;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.project-toc__toggle:hover,
.project-toc__toggle:focus-visible {
  background: rgba(0, 0, 0, 0.06);
  color: #111;
}

.project-toc__toggle:active {
  transform: scale(0.9);
}

.project-toc.is-collapsed .project-toc__toggle {
  right: -50px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(249, 249, 249, 0.94);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.project-toc__toggle-icon {
  position: relative;
  display: block;
  width: 21px;
  height: 21px;
  border: 2px solid currentColor;
  border-radius: 7px;
}

.project-toc__toggle-icon::before {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 7px;
  width: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.project-toc__eyebrow {
  margin: 0 44px 10px 10px;
  color: #9a9a9a;
  font-size: 13px;
  letter-spacing: 0.14em;
}

.project-toc h2 {
  margin: 0 44px 24px 10px;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
}

.project-toc__link {
  display: block;
  margin: 0 0 4px;
  padding: 10px 12px;
  border-radius: 12px;
  color: #6e6e6e;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.2;
  transform: scale(1);
  transform-origin: left center;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.project-toc__link:hover,
.project-toc__link:focus-visible,
.project-toc__link.is-active {
  background: rgba(0, 0, 0, 0.06);
  color: #111;
}

.project-toc__link:active {
  transform: scale(0.96);
}

#project-toc-voya h2,
#project-toc-voya .project-toc__link,
#project-toc-fitmatch h2 {
  font-family: var(--font-title);
}

.project-detail {
  --project-toc-width: 238px;
  --project-available-width: calc(100vw - var(--project-toc-width));
  max-width: var(--frame-width);
  margin: 0 auto;
  padding: 0;
  background: #fff;
}

body.has-project-toc .project-detail {
  max-width: none;
  width: 100%;
  padding-left: var(--project-toc-width);
  transition: padding-left 260ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

body.has-project-toc.is-project-toc-collapsed .project-detail {
  padding-left: 0;
}

.project-detail__section {
  margin: 0 auto;
  scroll-margin-top: 82px;
}

.project-detail__image {
  display: block;
  width: 100%;
  max-width: min(960px, 100vw);
  height: auto;
  margin: 0 auto;
  transition: max-width 260ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

.project-detail__picture {
  display: block;
}

body.has-project-toc .project-detail__image {
  max-width: min(var(--frame-width), var(--project-available-width));
}

#fitmatch-section-14 .project-detail__image,
#fitmatch-section-15 .project-detail__image,
#fitmatch-section-16 .project-detail__image,
#fitmatch-section-17 .project-detail__image,
#fitmatch-section-18 .project-detail__image {
  max-width: min(840px, 100vw);
}

body.has-project-toc #fitmatch-section-14 .project-detail__image,
body.has-project-toc #fitmatch-section-15 .project-detail__image,
body.has-project-toc #fitmatch-section-16 .project-detail__image,
body.has-project-toc #fitmatch-section-17 .project-detail__image,
body.has-project-toc #fitmatch-section-18 .project-detail__image {
  max-width: min(calc(var(--frame-width) * 0.875), calc(var(--project-available-width) * 0.875));
}

.project-detail-compact .project-detail__image {
  max-width: min(calc(var(--frame-width) * 0.82), calc(100vw * 0.82));
}

body.has-project-toc .project-detail-compact .project-detail__image {
  max-width: min(calc(var(--frame-width) * 0.82), calc(var(--project-available-width) * 0.82));
}

.project-detail-compact #fitmatch-section-14 .project-detail__image,
.project-detail-compact #fitmatch-section-15 .project-detail__image,
.project-detail-compact #fitmatch-section-16 .project-detail__image,
.project-detail-compact #fitmatch-section-17 .project-detail__image,
.project-detail-compact #fitmatch-section-18 .project-detail__image {
  max-width: min(calc(var(--frame-width) * 0.82), calc(100vw * 0.82));
}

body.has-project-toc .project-detail-compact #fitmatch-section-14 .project-detail__image,
body.has-project-toc .project-detail-compact #fitmatch-section-15 .project-detail__image,
body.has-project-toc .project-detail-compact #fitmatch-section-16 .project-detail__image,
body.has-project-toc .project-detail-compact #fitmatch-section-17 .project-detail__image,
body.has-project-toc .project-detail-compact #fitmatch-section-18 .project-detail__image {
  max-width: min(calc(var(--frame-width) * 0.82), calc(var(--project-available-width) * 0.82));
}

.project-detail-smaller .project-detail__image {
  max-width: min(calc(var(--frame-width) * 0.76), calc(100vw * 0.76));
}

body.has-project-toc .project-detail-smaller .project-detail__image {
  max-width: min(calc(var(--frame-width) * 0.76), calc(var(--project-available-width) * 0.76));
}

.project-detail-smaller #fitmatch-section-14 .project-detail__image,
.project-detail-smaller #fitmatch-section-15 .project-detail__image,
.project-detail-smaller #fitmatch-section-16 .project-detail__image,
.project-detail-smaller #fitmatch-section-17 .project-detail__image,
.project-detail-smaller #fitmatch-section-18 .project-detail__image {
  max-width: min(calc(var(--frame-width) * 0.76), calc(100vw * 0.76));
}

body.has-project-toc .project-detail-smaller #fitmatch-section-14 .project-detail__image,
body.has-project-toc .project-detail-smaller #fitmatch-section-15 .project-detail__image,
body.has-project-toc .project-detail-smaller #fitmatch-section-16 .project-detail__image,
body.has-project-toc .project-detail-smaller #fitmatch-section-17 .project-detail__image,
body.has-project-toc .project-detail-smaller #fitmatch-section-18 .project-detail__image {
  max-width: min(calc(var(--frame-width) * 0.76), calc(var(--project-available-width) * 0.76));
}

.project-detail-zhuaji .project-detail__image,
.project-detail-zhuaji .zhuaji-cover-section {
  max-width: min(calc(var(--frame-width) * 0.74), calc(100vw * 0.74));
}

body.has-project-toc .project-detail-zhuaji .project-detail__image,
body.has-project-toc .project-detail-zhuaji .zhuaji-cover-section {
  max-width: min(calc(var(--frame-width) * 0.74), calc(var(--project-available-width) * 0.74));
}

.project-detail-zhuaji #zhuaji-section-1.zhuaji-cover-section {
  max-width: min(calc(var(--frame-width) * 0.66), calc(100vw * 0.66));
}

body.has-project-toc .project-detail-zhuaji #zhuaji-section-1.zhuaji-cover-section {
  max-width: min(calc(var(--frame-width) * 0.66), calc(var(--project-available-width) * 0.66));
}

.zhuaji-cover-section {
  position: relative;
  width: 100%;
  max-width: min(var(--frame-width), var(--project-available-width));
  margin: 0 auto;
}

.zhuaji-cover-base {
  max-width: 100% !important;
}

.zhuaji-cover-video {
  position: absolute;
  z-index: 2;
  display: block;
  width: 23.8%;
  height: auto;
  border: 0;
  background: transparent;
  object-fit: contain;
  transform: translateZ(0);
}

.zhuaji-cover-video-left {
  left: 20.03%;
  top: 53.59%;
}

.zhuaji-cover-video-right {
  left: 56.6%;
  top: 53.59%;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  column-gap: 48px;
  max-width: var(--frame-width);
  min-height: 220px;
  margin: 0 auto;
  padding: 42px 64px 32px;
  border-top: 1px solid var(--soft-line);
  background: linear-gradient(180deg, #edfcff 0%, #ffffff 100%);
}

.resume-preview {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: 148px clamp(22px, 5vw, 72px) 88px;
}

.resume-preview__intro {
  position: sticky;
  top: 118px;
}

.resume-preview__eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.resume-preview h1 {
  margin: 0 0 18px;
  font-family: var(--font-title);
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 1;
}

.resume-preview p {
  max-width: 460px;
  margin: 0 0 28px;
  color: #4d4d4d;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.8;
}

.resume-preview__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--soft-line);
  border-radius: 999px;
  background: var(--gradient);
  color: #111;
  box-shadow: 0 16px 34px rgba(93, 185, 250, 0.18);
}

.resume-preview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.resume-preview__button--ghost {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: none;
  text-decoration: none;
}

.resume-sheet {
  width: min(100%, 210mm);
  height: min(78vh, 297mm);
  min-height: 620px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(21, 44, 58, 0.14);
  overflow: hidden;
}

.resume-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

@media (max-width: 860px) {
  .resume-preview {
    grid-template-columns: 1fr;
    padding-top: 118px;
  }

  .resume-preview__intro {
    position: static;
  }
}

@page {
  size: A4;
  margin: 0;
}

@media print {
  body.resume-page {
    min-width: 0;
    background: #fff;
    cursor: auto;
  }

  .resume-page .site-cursor,
  .resume-page .site-header,
  .resume-page .resume-preview__intro,
  .resume-page .site-footer,
  .resume-page .toast {
    display: none !important;
  }

  .resume-preview {
    display: block;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .resume-sheet {
    width: 210mm;
    height: 297mm;
    min-height: 297mm;
    margin: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    break-after: avoid;
  }
}

.footer-intro h2 {
  margin: 0 0 24px;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.footer-intro p {
  margin: 0;
  color: #838383;
  font-size: 16px;
  font-weight: 400;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 120px;
}

.footer-column h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.footer-link {
  justify-self: start;
  border: 0;
  padding: 0;
  background: transparent;
  color: #848484;
  text-decoration: none;
  font-size: 16px;
  transform: translateX(0) scale(1);
  transform-origin: left center;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: #111;
  transform: translateX(3px);
}

.footer-link:active {
  transform: translateX(3px) scale(0.94);
}

.toast {
  position: fixed;
  z-index: 10000;
  left: 50%;
  bottom: 34px;
  min-width: 142px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.82);
  color: #fff;
  text-align: center;
  font-size: 15px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity 220ms ease, transform 220ms ease;
}

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

@media (max-width: 980px) {
  .site-nav {
    column-gap: 16px;
  }

  .nav-link {
    font-size: clamp(14px, 3.1vw, 24px);
  }

  .hero-stage {
    min-height: 760px;
  }

  .portrait-wrap {
    top: 120px;
  }

  .hero-copy {
    top: 120px;
  }

  .hero-copy-left {
    left: 28px;
  }

  .hero-copy-right {
    left: auto;
    right: 28px;
    text-align: right;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 10vw, 84px);
  }

  .hero-copy p {
    max-width: 260px;
    font-size: 17px;
  }

  .projects {
    grid-template-columns: 1fr;
    width: auto;
    max-width: 760px;
  }

  .about-section {
    max-width: 760px;
  }

  .about-panel {
    padding: 70px 44px;
  }

  .about-panel-intro {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-copy h1,
  .about-copy h2,
  .about-body {
    max-width: none;
  }

  .about-portrait-card {
    width: 100%;
    height: auto;
    aspect-ratio: 546 / 675;
    margin: 0;
  }

  .about-panel-details {
    min-height: 0;
  }

  .about-experience-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .more-content {
    width: auto;
    max-width: 760px;
    padding-inline: 44px;
  }

  .more-card-grid,
  .more-collage-grid {
    grid-template-columns: 1fr;
  }

  .more-photo-section h2 {
    margin-bottom: 24px;
  }

  .more-wide-collage {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .more-wide-collage img {
    width: 100%;
    max-width: none;
    height: 220px;
    object-fit: contain;
  }

  .daily-polaroid-board {
    height: 760px;
  }

  .daily-polaroid-ski,
  .daily-polaroid-christmas,
  .daily-polaroid-sea,
  .daily-polaroid-potter {
    width: min(44vw, 300px);
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .daily-polaroid-ski {
    left: 24px;
    top: 54px;
  }

  .daily-polaroid-christmas {
    left: auto;
    right: 30px;
    top: 22px;
  }

  .daily-polaroid-sea {
    left: 32px;
    top: 378px;
  }

  .daily-polaroid-potter {
    right: 28px;
    top: 348px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    row-gap: 66px;
  }

  .footer-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body {
    cursor: auto;
  }

  a,
  button {
    cursor: pointer;
  }

  .site-cursor {
    display: none;
  }

  .project-toc {
    display: none;
  }

  body.has-project-toc .project-detail {
    --project-available-width: 100vw;
    padding-left: 0;
  }

  .site-header {
    height: 64px;
  }

  .site-nav {
    grid-template-columns: minmax(38px, 0.75fr) minmax(48px, 0.95fr) 38px minmax(56px, 1fr) minmax(38px, 0.75fr);
    width: 100%;
    max-width: 420px;
    padding: 0 10px;
    column-gap: clamp(4px, 1.6vw, 8px);
  }

  .nav-link {
    align-items: center;
    justify-content: center;
    min-height: 44px;
    font-size: clamp(12px, 3.35vw, 14px);
    letter-spacing: -0.02em;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-width: 3px;
  }

  .brand-mark img {
    width: 38px;
    height: 38px;
  }

  .hero-stage {
    min-height: 620px;
  }

  .portrait-wrap {
    top: 118px;
  }

  .portrait-composite {
    width: min(94vw, 320px);
    height: 500px;
    margin: 0 auto;
  }

  .hero-copy {
    top: 52px;
  }

  .hero-copy-left {
    left: 20px;
    width: min(43vw, 168px);
    text-align: left;
  }

  .hero-copy-right {
    right: 20px;
    left: auto;
    width: min(46vw, 178px);
    text-align: right;
  }

  .hero-copy h1 {
    margin-bottom: 0;
    font-size: clamp(30px, 8.8vw, 42px);
    letter-spacing: -0.055em;
  }

  .hero-copy p {
    display: none;
  }

  .latest-label {
    grid-template-columns: minmax(0, 1fr) max-content minmax(0, 1fr);
    height: 118px;
    padding: 74px 20px 0;
    column-gap: 12px;
    font-size: 16px;
  }

  .projects {
    width: 100%;
    max-width: none;
    gap: 52px;
    padding: 44px 20px 74px;
  }

  .project-media {
    height: clamp(220px, 68vw, 300px);
  }

  .project-meta {
    display: grid;
    gap: 12px;
    margin-top: 16px;
  }

  .project-card h2 {
    font-size: 20px;
  }

  .project-card p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.55;
  }

  .project-tags {
    justify-content: flex-start;
    min-width: 0;
  }

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

  .project-detail,
  body.has-project-toc .project-detail {
    width: 100%;
    max-width: none;
  }

  .project-detail__image,
  body.has-project-toc .project-detail__image,
  .project-detail-compact .project-detail__image,
  body.has-project-toc .project-detail-compact .project-detail__image,
  .project-detail-smaller .project-detail__image,
  body.has-project-toc .project-detail-smaller .project-detail__image,
  .project-detail-zhuaji .project-detail__image,
  body.has-project-toc .project-detail-zhuaji .project-detail__image,
  .project-detail-zhuaji .zhuaji-cover-section,
  body.has-project-toc .project-detail-zhuaji .zhuaji-cover-section,
  .project-detail-zhuaji #zhuaji-section-1.zhuaji-cover-section,
  body.has-project-toc .project-detail-zhuaji #zhuaji-section-1.zhuaji-cover-section {
    max-width: 100vw !important;
  }

  .zhuaji-cover-section {
    max-width: 100vw !important;
  }

  .about-panel {
    padding: 58px 24px;
  }

  .about-copy h1,
  .about-copy h2 {
    margin-bottom: 44px;
    font-size: clamp(30px, 8vw, 42px);
    letter-spacing: 0.03em;
  }

  .about-body {
    font-size: 17px;
    line-height: 1.72;
  }

  .about-heading-row h2 {
    font-size: 24px;
  }

  .about-experience-card h3,
  .about-experience-card p {
    font-size: 18px;
  }

  .about-value-card {
    min-height: 210px;
    padding: 30px 24px;
  }

  .about-value-card h3 {
    font-size: 24px;
  }

  .more-content {
    padding: 58px 24px 72px;
  }

  .more-page h1 {
    margin-bottom: 54px;
    font-size: 38px;
  }

  .more-page h2 {
    font-size: 22px;
  }

  .more-collage {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }

  .more-collage img {
    height: 160px;
  }

  .more-wide-collage {
    padding: 28px;
  }

  .daily-polaroid-board {
    height: 980px;
  }

  .daily-polaroid-ski,
  .daily-polaroid-christmas,
  .daily-polaroid-sea,
  .daily-polaroid-potter {
    left: 50%;
    right: auto;
    width: min(76vw, 310px);
    height: auto;
    aspect-ratio: 3 / 4;
  }

  .daily-polaroid-ski {
    top: 32px;
    transform: translateX(-54%) rotate(-4.6deg);
  }

  .daily-polaroid-christmas {
    top: 256px;
    transform: translateX(-46%) rotate(3deg);
  }

  .daily-polaroid-sea {
    top: 486px;
    transform: translateX(-54%) rotate(-2deg);
  }

  .daily-polaroid-potter {
    top: 714px;
    transform: translateX(-46%) rotate(3.4deg);
  }

  .daily-polaroid:hover,
  .daily-polaroid:focus-within {
    transform: translateX(-50%) translateY(-6px) rotate(var(--tilt));
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-inline: 30px;
  }
}

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

/* Other project detail */
.other-detail-page {
  max-width: var(--frame-width);
  margin: 0 auto;
  background: #fff;
}

.other-detail-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 2099;
  background: #fff;
}

.other-detail-image,
.other-detail-copy {
  position: absolute;
}

.other-detail-image {
  display: block;
  overflow: hidden;
  border-radius: 34px;
  object-fit: cover;
  box-shadow: 0 24px 60px rgba(42, 48, 64, 0.12);
}

.other-detail-picture__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.other-detail-image-chocolate {
  left: 10.56%;
  top: 5.05%;
  width: 29.24%;
  height: 26.92%;
}

.other-detail-copy-chocolate {
  left: 44.24%;
  top: 15.29%;
  width: 44.86%;
}

.other-detail-copy-penguin {
  left: 10.9%;
  top: 43.54%;
  width: 38.75%;
}

.other-detail-image-penguin-a {
  left: 58.54%;
  top: 34.21%;
  width: 15%;
  height: 21.34%;
}

.other-detail-image-penguin-b {
  left: 78.54%;
  top: 39.92%;
  width: 15%;
  height: 21.34%;
}

.other-detail-image-rental {
  left: 10.56%;
  top: 63.55%;
  width: 24.03%;
  height: 32.02%;
}

.other-detail-copy-rental {
  left: 44.58%;
  top: 76.37%;
  width: 32.57%;
}

.other-detail-copy h1 {
  margin: 0;
  font-size: clamp(20px, 1.95vw, 28px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
}

.other-detail-copy p {
  margin: 12px 0 0;
  color: #6e6e6e;
  font-size: clamp(13px, 1.25vw, 18px);
  line-height: 1.4;
}

.other-prototype-link {
  display: inline-flex;
  border: 0;
  padding: 0;
  margin-top: 14px;
  background: transparent;
  color: #5db9fa;
  font-size: clamp(14px, 1.4vw, 20px);
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 5px;
  transform: scale(1);
  transform-origin: left center;
  transition: color 180ms ease, transform 180ms ease;
}

.other-prototype-link:hover,
.other-prototype-link:focus-visible {
  color: #168fe2;
  transform: translateY(-2px);
}

.other-prototype-link:active {
  transform: translateY(-2px) scale(0.94);
}

@media (max-width: 760px) {
  .other-detail-frame {
    aspect-ratio: auto;
    display: grid;
    gap: 24px;
    padding: 28px;
  }

  .other-detail-image,
  .other-detail-copy {
    position: static;
    width: 100%;
  }

  .other-detail-image {
    height: auto;
    aspect-ratio: 3 / 4;
  }
}
