/* ============================================================
   FONTS — PP Migra + PP Neue Montreal (real files)
   ============================================================ */
@font-face {
  font-family: 'PP Migra';
  src: url('../fonts/PPMigra-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Migra';
  src: url('../fonts/PPMigra-Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'PP Neue Montreal';
  src: url('../fonts/PPNeueMontreal-Regular.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   VARIABLES — exact from original source
   ============================================================ */
:root {
  --c-black:   #020202;
  --c-white:   #FBFBF4;
  --c-orange:  #FF852D;
  --c-grey:    #666666;
  --c-n-5:     #E7E6DC;
  --c-n-6:     #F4F4E8;
  --f-heading: 'PP Migra', Georgia, serif;
  --f-body:    'PP Neue Montreal', system-ui, sans-serif;
  --f-cjk:     'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans CJK SC', 'Source Han Sans SC', system-ui, sans-serif;
  --ease:      cubic-bezier(.16, 1, .3, 1);
  --border-c:  rgba(251, 251, 244, 0.18);
  --border-c-dark: rgba(2, 2, 2, 0.12);
  --gutter: 4.5rem;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 13.28px; -webkit-font-smoothing: antialiased; height: 100%; }
html { scroll-behavior: smooth; }
body {
  background: var(--c-black);
  color: var(--c-white);
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.6;
  height: 100%;
  overflow: hidden;          /* no scroll on body — main.page is the scroller (1:1 与原站) */
}

/* ============================================================
   SCROLL ARCHITECTURE — 1:1 还原原站
   body(不滚) > .site > main.page(滚动容器·黑底) > .page-bg + .page-scroll
   Lenis 挂在 main.page 上做原生滚动；深色 section 透明，露出持续黑底
   ============================================================ */
.site { position: relative; }
main.page {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--c-black);   /* 持续黑底，深色段透明时显示这层 */
  -webkit-overflow-scrolling: touch;
}
.page-bg {
  position: absolute;
  inset: 0;
  background: var(--c-black);
  z-index: 0;
  pointer-events: none;
}
.page-scroll { position: relative; z-index: 1; }
a { text-decoration: none; color: inherit; }
button { background: none; border: none; font-family: inherit; cursor: pointer; }
img, video { display: block; width: 100%; height: 100%; object-fit: cover; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--c-orange);
  outline-offset: 4px;
}

/* ============================================================
   NAV — centered pill bar
   ============================================================ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding-top: 2.2rem;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.nav-inner {
  display: flex;
  gap: .6rem;
  pointer-events: all;
}

/* Nav pills — shared */
.nav-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  height: 5.2rem;
  border-radius: .52rem;
  padding: 0 2.8rem;
  backdrop-filter: blur(1.2rem) saturate(1.18);
  -webkit-backdrop-filter: blur(1.2rem) saturate(1.18);
  overflow: hidden;
  white-space: nowrap;
  box-shadow: none;
}
.nav-pill::before,
.nav-pill::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}
.nav-pill::before {
  background:
    linear-gradient(105deg, rgba(255,255,255,.12), rgba(255,255,255,.035) 34%, rgba(255,255,255,0) 62%),
    radial-gradient(circle at 72% 18%, rgba(255,255,255,.16), rgba(255,255,255,0) 36%);
  mix-blend-mode: screen;
  opacity: .38;
}
.nav-pill::after {
  inset: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0) 58%);
}

/* Dark theme (over black hero) */
#nav[data-theme="dark"] .nav-pill {
  background: rgba(251, 251, 244, 0.10);
  color: var(--c-white);
}
/* Light theme (over cream sections) */
#nav[data-theme="light"] .nav-pill {
  background: rgba(188, 188, 188, 0.12);
  color: var(--c-black);
  box-shadow: none;
}

.nav-logo {
  gap: .45rem;
  min-width: 19.2rem;
  padding: 0 2.8rem;
}
.logo-text {
  font-family: var(--f-body);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}
.nav-links {
  gap: 4.2rem;
  min-width: 45.6rem;
  max-width: 45.6rem;
  overflow: hidden;
  transition: opacity .45s var(--ease), transform .5s var(--ease),
              max-width .55s var(--ease), padding .45s var(--ease), margin .45s var(--ease);
}
.nav-links a {
  position: relative;
  z-index: 1;
  font-family: var(--f-body);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1;
  padding: 0;
  opacity: .86;
  transition: opacity .3s ease;
}
.nav-links a:hover { opacity: 1; }

.nav-menu {
  position: relative;
  width: 7.2rem;
  padding: 0;
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: .28em;
  opacity: .86;
}
.nav-logo .logo-text,
.nav-menu span {
  position: relative;
  z-index: 1;
}
.nav-menu:hover { opacity: 1; }

/* Canvas border on nav pills */
.border-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  width: 100% !important;
  height: 100% !important;
}
#nav .border-canvas {
  display: none;
}

/* ============================================================
   HERO — black, full-screen, split layout
   ============================================================ */
.s-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: transparent;   /* 露出 main.page 黑底（1:1 原站） */
  overflow: hidden;
}

/* Full-bleed video background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Title — full width flex, vertically centered */
.hero-title {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem 0 clamp(4.8rem, 4vw, 6.2rem);
  z-index: 1;
  pointer-events: none;
}

.hero-title-left,
.hero-title-right {
  font-family: var(--f-cjk);
  font-weight: 500;
  color: var(--c-white);
  letter-spacing: 0;
  text-wrap: balance;
  will-change: transform, opacity;
}

.hero-word {
  display: block;
  will-change: transform;
}

.hero-title-left {
  width: min(39vw, 56rem);
  font-size: clamp(2.8rem, 4.1vw, 5.2rem);
  line-height: 1.18;
}

.hero-title-right {
  width: min(30vw, 39rem);
  font-size: clamp(1.32rem, 1.35vw, 1.75rem);
  line-height: 1.78;
  font-weight: 400;
  text-align: left;
  color: rgba(251,251,244,.9);
  text-shadow: 0 .2rem 1.6rem rgba(0,0,0,.68);
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 3.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  text-align: center;
  font-family: var(--f-body);
  font-size: 1.5rem;
  line-height: 1.5;
  color: rgba(251,251,244,.96);
  letter-spacing: 0;
  white-space: nowrap;
  opacity: 1;
}

/* ============================================================
   MAIN — cream background from here
   ============================================================ */
main section:not(.s-hero):not(.s-testimonials):not(.s-faq) {
  background: var(--c-white);
  position: relative;
  z-index: 5;
}
main section:not(.s-hero),
main footer {
  position: relative;
  z-index: 5;
}

/* ============================================================
   AI TOOLS — scrolling logo wall
   ============================================================ */
.s-ai-tools {
  overflow: hidden;
  padding: clamp(8rem, 16vh, 13rem) 0 clamp(3.5rem, 6vh, 5rem);
  background: var(--c-white);
}
.ai-tools-heading {
  padding: 0 var(--gutter);
  margin-bottom: clamp(4rem, 7vh, 6.5rem);
}
.ai-tools-heading h2 {
  max-width: 14ch;
  margin: 0;
  font-family: var(--f-cjk);
  font-size: clamp(3.8rem, 7vw, 8.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--c-black);
}
.ai-tools-heading p {
  margin: clamp(.9rem, 1.8vw, 1.6rem) 0 0;
  font-family: var(--f-cjk);
  font-size: clamp(1.05rem, 1.8vw, 2rem);
  font-weight: 400;
  line-height: 1.45;
  color: rgba(0,0,0,.64);
}
.ai-view-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  margin: 0 0 clamp(2.3rem, 4vh, 3.4rem);
  color: rgba(2,2,2,.55);
  font-family: var(--f-body);
  font-size: clamp(.92rem, 1vw, 1.1rem);
  font-weight: 500;
}
.ai-view-label {
  min-width: 3rem;
  transition: color .35s var(--ease);
}
.ai-view-label:first-child {
  text-align: right;
}
.ai-view-label.is-active {
  color: var(--c-black);
}
.ai-view-toggle {
  position: relative;
  width: 4.2rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid rgba(2,2,2,.32);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.ai-view-toggle:hover {
  border-color: rgba(2,2,2,.72);
}
.ai-view-toggle span {
  position: absolute;
  top: .25rem;
  left: .25rem;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: var(--c-black);
  transition: transform .45s var(--ease), background .35s var(--ease);
}
.s-ai-tools.is-grid .ai-view-toggle span {
  transform: translateX(1.95rem);
}
.ai-marquee {
  display: grid;
  gap: clamp(.85rem, 1.2vw, 1.35rem);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.ai-marquee-row {
  display: flex;
  overflow: hidden;
  user-select: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.16) 5%, rgba(0,0,0,.56) 13%, #000 24%, #000 76%, rgba(0,0,0,.56) 87%, rgba(0,0,0,.16) 95%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,.16) 5%, rgba(0,0,0,.56) 13%, #000 24%, #000 76%, rgba(0,0,0,.56) 87%, rgba(0,0,0,.16) 95%, transparent 100%);
}
.ai-marquee-track {
  display: flex;
  width: max-content;
  animation: ai-marquee-left 36s linear infinite;
}
.ai-marquee-row-reverse .ai-marquee-track {
  animation-name: ai-marquee-right;
  animation-duration: 40s;
}
.ai-marquee-group {
  display: flex;
  flex-shrink: 0;
  gap: clamp(.85rem, 1.2vw, 1.35rem);
  padding-right: clamp(.85rem, 1.2vw, 1.35rem);
}
.ai-tool {
  display: flex;
  min-width: max-content;
  align-items: center;
  gap: 1rem;
  padding: clamp(1.05rem, 1.35vw, 1.5rem) clamp(1.35rem, 1.8vw, 2.1rem);
  border: 1px solid rgba(2,2,2,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.34);
  color: var(--c-black);
  font-family: var(--f-body);
  font-size: clamp(1.05rem, 1.25vw, 1.45rem);
  line-height: 1;
  transition: border-color .35s var(--ease), background .35s var(--ease), transform .35s var(--ease);
}
.ai-tool:hover {
  border-color: rgba(2,2,2,.48);
  background: rgba(255,255,255,.78);
  transform: translateY(-.2rem);
}
.ai-tool-logo {
  display: grid;
  width: clamp(2rem, 2.35vw, 2.75rem);
  height: clamp(2rem, 2.35vw, 2.75rem);
  flex: 0 0 auto;
  place-items: center;
}
.ai-tool-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ai-tool-logo-text {
  border-radius: 50%;
  background: var(--c-black);
  color: var(--c-white);
  font-size: clamp(.7rem, .82vw, .9rem);
  font-weight: 600;
  letter-spacing: -.06em;
}
.ai-tools-grid {
  display: none;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: clamp(.9rem, 1.15vw, 1.3rem);
  padding: 0 var(--gutter);
}
.ai-grid-card {
  display: flex;
  min-height: clamp(6.8rem, 6.5vw, 8.4rem);
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1rem .8rem;
  border: 0;
  border-radius: .35rem;
  background: rgba(2,2,2,.025);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.32),
    0 .6rem 1.8rem rgba(2,2,2,.025);
  color: var(--c-black);
  font-family: var(--f-body);
  font-size: clamp(.92rem, .9vw, 1.08rem);
  transition: background .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
}
.ai-grid-card:hover {
  background: rgba(255,255,255,.42);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.46),
    0 .8rem 2rem rgba(2,2,2,.035);
  transform: translateY(-.25rem);
}
.ai-grid-card .ai-tool-logo {
  width: clamp(2rem, 2.15vw, 2.7rem);
  height: clamp(2rem, 2.15vw, 2.7rem);
}
.s-ai-tools.is-grid .ai-marquee {
  display: none;
}
.s-ai-tools.is-grid .ai-tools-grid {
  display: grid;
  animation: ai-grid-reveal .45s var(--ease) both;
}
@keyframes ai-marquee-left {
  to { transform: translateX(-50%); }
}
@keyframes ai-marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@keyframes ai-grid-reveal {
  from { opacity: 0; transform: translateY(1rem); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   WORK
   ============================================================ */
/* ============================================================
   WORK — horizontal grid
   ============================================================ */
.s-work {
  background: var(--c-white);
  padding: clamp(3.5rem, 7vh, 5.5rem) 0 clamp(60px, 12vw, 200px);
  position: relative;
  z-index: 2;                              /* 溢出的激活卡压在后续区块之上 */
}
.work-section-heading {
  padding: 0 var(--gutter);
  margin: 0 0 clamp(4rem, 9vh, 8rem);
}
.work-section-title {
  font-family: var(--f-cjk);
  font-size: clamp(3.8rem, 7vw, 8.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  color: var(--c-black);
  margin: 0;
}
.work-section-subtitle {
  font-family: var(--f-cjk);
  font-size: clamp(1.05rem, 1.8vw, 2rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  color: rgba(0,0,0,.64);
  margin: clamp(.9rem, 1.8vw, 1.6rem) 0 0;
}
.work-grid {
  display: flex;
  align-items: flex-start;        /* 顶对齐：激活卡可向下溢出长高 */
  position: relative;
  gap: clamp(10px, .7vw, 16px);
}

/* ── 展开交互（原站核心动效）：JS 用 GSAP 驱动 width/height，带阻尼感 ── */
.work-col {
  flex: 0 0 auto;
  width: var(--work-w, 20vw);
  min-width: 0;
  will-change: width, height, transform;
}
.work-col      { height: var(--work-h, min(51vw, 630px)); }
.work-item.is-active {
  z-index: 2;
}

/* ── Project columns ── */
.work-col {
  position: relative;
  overflow: hidden;
  display: flex;
  cursor: pointer;
  color: var(--c-black);
  border-radius: .25rem;
}
.work-col-img {
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(2,2,2,.05);
  border-radius: .25rem;
}
.work-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform;
}
/* hover 暗化罩，保证浮层文字可读 */
.work-col::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(2,2,2,.55) 0%, rgba(2,2,2,0) 32%, rgba(2,2,2,0) 62%, rgba(2,2,2,.35) 100%);
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
}
.work-col.is-active::after,
.work-col:hover::after { opacity: 1; }

/* 项目信息浮层（左上，hover 显示） */
.work-col-info {
  position: absolute;
  top: 1.6rem; left: 1.6rem;
  max-width: min(70%, 28rem);
  z-index: 2;
  display: flex; flex-direction: column; align-items: flex-start; gap: .4rem;
  opacity: 0; transform: translateY(10px);
  transition: opacity .45s var(--ease), transform .5s var(--ease);
  pointer-events: none;
}
.work-col.is-active .work-col-info,
.work-col:hover .work-col-info { opacity: 1; transform: translateY(0); }
.work-col-num { font-size: .72rem; letter-spacing: .05em; color: rgba(251,251,244,.7); margin-bottom: .2rem; }
.work-col-client {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: .34rem .75rem;
  background: rgba(251,251,244,.24);
  backdrop-filter: blur(8px);
  font-size: .72rem; text-transform: uppercase; letter-spacing: .08em;
  color: #fff;
}
.work-col-title {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: .4rem .78rem;
  background: rgba(251,251,244,.24);
  backdrop-filter: blur(8px);
  font-family: var(--f-heading);
  font-size: clamp(1.15rem, 1.55vw, 1.65rem);
  font-weight: 400; letter-spacing: -.01em; line-height: 1.2;
  color: #fff;
}
.work-col-tags { display: flex; flex-wrap: wrap; gap: .35rem; margin-top: .2rem; }
.work-col-tags span {
  font-size: .72rem; color: var(--c-white);
  border: 1px solid rgba(251,251,244,.4);
  border-radius: 10rem; padding: .24rem .78rem;
}

/* View project 按钮（跟随鼠标，hover 出现 —— 学自 demo 的 pointermove） */
.work-view-btn {
  position: absolute;
  left: var(--cta-x, 50%); top: var(--cta-y, 50%);
  z-index: 2;
  transform: translate(-50%, calc(-50% + 12px)) scale(.92);
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--c-white); color: var(--c-black);
  font-size: .8rem; font-weight: 500; white-space: nowrap;
  padding: .65rem 1.2rem; border-radius: 10rem;
  opacity: 0;
  transition: opacity .35s var(--ease), transform .5s var(--ease);
  pointer-events: none;
}
.wvb-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--c-orange); }
.work-col.is-active .work-view-btn,
.work-col:hover .work-view-btn { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* Generic text link */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: var(--c-black);
  border-bottom: 1px solid rgba(2,2,2,.25);
  padding-bottom: 2px;
  transition: border-color .3s ease;
}
.text-link:hover { border-color: var(--c-black); }

/* ============================================================
   ABOUT — "Who we are"
   ============================================================ */
.s-about {
  background: var(--c-white);
  border-top: 1px solid var(--border-c-dark);
  overflow: hidden;
}
.section-title {
  font-family: var(--f-heading);
  font-size: clamp(2rem, 3.5vw, 4rem);
  font-weight: 400;
  letter-spacing: -.02em;
  margin-bottom: 5rem;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  align-items: center;
  padding: 0 var(--gutter);
  gap: 5rem;
}
.about-left { padding: 5rem 0; }
.about-title {
  font-family: var(--f-heading);
  font-size: clamp(7rem, 17vw, 26rem);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.03em;
  color: var(--c-black);
}
.about-right { display: flex; flex-direction: column; gap: 2.5rem; padding: 4rem 0; }
.about-img {
  overflow: hidden;
  border-radius: .5rem;
  background: rgba(2,2,2,.06);
}
.about-img img { width: 100%; display: block; }
.about-body { display: flex; flex-direction: column; gap: 1.8rem; }
.about-desc {
  font-size: .9rem;
  line-height: 1.85;
  color: rgba(2,2,2,.6);
}
.about-cta-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: var(--c-black);
  border-bottom: 1px solid rgba(2,2,2,.25);
  padding-bottom: 2px;
  width: fit-content;
  transition: border-color .3s ease;
}
.about-cta-link:hover { border-color: var(--c-black); }

/* ============================================================
   DESIGN VIEW — expandable rows
   ============================================================ */
.s-design-view {
  background: var(--c-white);
  padding: clamp(5.5rem, 10vw, 9rem) 0 clamp(6rem, 11vw, 10rem);
  overflow: hidden;
}
.design-view-heading {
  padding: 0 var(--gutter);
  max-width: 100rem;
  margin: 0 0 clamp(3.5rem, 7vw, 6.5rem);
}
.design-view-heading h2 {
  font-family: var(--f-cjk);
  font-size: clamp(3.8rem, 7vw, 8.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  color: var(--c-black);
  margin: 0;
}
.design-view-heading p {
  font-family: var(--f-cjk);
  font-size: clamp(1.05rem, 1.8vw, 2rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  color: rgba(0,0,0,.64);
  margin: clamp(.9rem, 1.8vw, 1.6rem) 0 0;
}
.design-rows {
  margin: 0;
}
.design-row {
  display: flex;
  flex-direction: row;
  min-height: clamp(92px, 7.35vw, 150px);
  height: clamp(92px, 7.35vw, 150px);
  background: rgb(247, 246, 240);
  overflow: hidden;
  transition:
    height 1.05s cubic-bezier(.16, 1, .3, 1),
    background-color .75s cubic-bezier(.16, 1, .3, 1);
}
.design-row:nth-child(2) { background: rgb(231, 230, 220); }
.design-row:nth-child(3) { background: rgb(221, 220, 208); }
.design-row.is-active,
.design-row:hover {
  height: clamp(340px, 22.75vw, 466px);
}
.design-row-fig {
  flex: 0 0 36.5%;
  overflow: hidden;
  background: rgba(2,2,2,.08);
  height: 100%;
  margin: 0;
}
.design-row-fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  filter: saturate(.95);
  transition:
    transform 1.2s cubic-bezier(.16, 1, .3, 1),
    filter .8s cubic-bezier(.16, 1, .3, 1);
}
.design-row.is-active .design-row-fig img,
.design-row:hover .design-row-fig img {
  transform: scale(1);
  filter: saturate(1.05);
}
.design-row-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(1.25rem, 1.4vw, 1.5rem) clamp(2rem, 4vw, 4.5rem) clamp(2rem, 3.4vw, 4rem) clamp(2.5rem, 6vw, 7rem);
}
.design-row-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 2rem;
}
.design-row-header h3 {
  font-family: var(--f-heading);
  font-size: clamp(2.2rem, 3.2vw, 5rem);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1.05;
  color: var(--c-black);
  margin: 0;
}
.design-row-header span {
  font-family: var(--f-heading);
  font-size: clamp(2rem, 3vw, 4.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--c-black);
  padding-right: clamp(1.25rem, 2.6vw, 3.2rem);
}
.design-row-content p {
  max-width: 46rem;
  font-size: clamp(15px, 1.0417vw, 21.33px);
  line-height: 1.4;
  color: rgba(2,2,2,.55);
  margin: clamp(2.2rem, 3.4vw, 4rem) 0 0;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity .7s cubic-bezier(.16, 1, .3, 1),
    transform .7s cubic-bezier(.16, 1, .3, 1);
}
.design-row-desc span {
  display: block;
  overflow: hidden;
  transform: translateY(0);
}
.design-row.is-active .design-row-content p,
.design-row:hover .design-row-content p {
  opacity: 1;
  transform: translateY(0);
}
.design-row-cta {
  display: flex;
  min-height: clamp(16rem, 24vw, 28rem);
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(3rem, 4.5vw, 5.5rem) clamp(2.5rem, 4vw, 5rem);
  background: rgb(210, 208, 196);
}
.design-row-cta p {
  max-width: min(92rem, 72vw);
  margin: 0 0 clamp(2rem, 3vw, 3.5rem);
  color: var(--c-black);
  font-family: var(--f-cjk);
  font-size: clamp(2rem, 2.75vw, 4.2rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.18;
}
.design-row-cta a {
  position: relative;
  display: inline-grid;
  width: clamp(16.5rem, 13vw, 18rem);
  height: clamp(4.25rem, 3.55vw, 4.75rem);
  align-self: flex-start;
  place-items: center;
  overflow: hidden;
  padding: 0 clamp(1.35rem, 1.5vw, 1.9rem);
  border-radius: .5rem;
  background: rgba(247,247,247,.32);
  color: var(--c-black);
  font-family: var(--f-cjk);
  font-size: clamp(1.05rem, 1vw, 1.25rem);
  line-height: 1;
  transition: color .35s ease;
}
.design-row-cta a::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--c-black);
  content: '';
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .72s cubic-bezier(.19, 1, .22, 1);
}
.design-row-cta a:hover {
  color: var(--c-white);
}
.design-cta-label {
  position: relative;
  z-index: 1;
  display: inline-block;
  transition: transform .65s cubic-bezier(.19, 1, .22, 1);
}
.design-row-cta a:hover::before {
  transform: scaleY(1);
}
.design-row-cta a:hover .design-cta-label {
  transform: translateX(.55rem);
}
.design-cta-dot {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: calc(100% - clamp(1.35rem, 1.35vw, 1.75rem) - .48rem);
  display: inline-block;
  width: .48rem;
  height: .48rem;
  border-radius: 50%;
  background: #f4ff6f;
  transform: translateY(-50%);
  transition: left .72s cubic-bezier(.19, 1, .22, 1);
}
.design-row-cta a:hover .design-cta-dot {
  left: clamp(1.35rem, 1.35vw, 1.75rem);
}
/* ============================================================
   TESTIMONIALS
   ============================================================ */
.s-testimonials {
  position: relative;
  padding: clamp(9rem, 11vw, 16rem) 0;
  overflow: hidden;
  background: transparent !important;   /* 露出 main.page 黑底 */
}
.s-testimonials::before,
.s-testimonials::after {
  content: '';
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 50%;
  pointer-events: none;
}
.s-testimonials::before {
  top: 0;
  background: linear-gradient(var(--c-black), transparent);
}
.s-testimonials::after {
  bottom: 0;
  background: linear-gradient(transparent, var(--c-black));
}
.testi-bg {
  position: absolute;
  inset: 0;
}
.testi-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.testi-inner {
  position: relative;
  z-index: 2;
}
.testi-inner .section-title {
  font-family: var(--f-cjk);
  color: var(--c-white);
  margin: 0;
  padding: 0 var(--gutter);
  max-width: 100rem;
  font-size: clamp(3.8rem, 7vw, 8.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
}
.testi-subtitle {
  max-width: 100rem;
  margin: clamp(.9rem, 1.8vw, 1.6rem) 0 clamp(5rem, 6.4vw, 7.5rem);
  padding: 0 var(--gutter);
  font-family: var(--f-cjk);
  color: var(--c-white);
  font-size: clamp(1.05rem, 1.8vw, 2rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  text-align: left;
}

.testi-carousel {
  position: relative;
  height: 34.7222vw;
  overflow: hidden;
  cursor: none;
}
.testi-track {
  position: relative;
  height: 100%;
}

.testi-card {
  --testi-x: 0rem;
  --testi-scale: .7;
  --testi-rotate: 0deg;
  --testi-glow-x: 50%;
  --testi-glow-y: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 56.6667vw;
  height: 34.7222vw;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: .4rem;
  padding: 0 8.8889vw;
  opacity: 0;
  transform: translateX(calc(-50% + var(--testi-x))) scale(var(--testi-scale)) perspective(.5rem) rotateY(var(--testi-rotate));
  backdrop-filter: blur(1.2rem);
  box-shadow: inset 0 0 .8rem rgba(255,255,255,.02), inset 0 0 .2rem rgba(255,255,255,.2);
  transition: transform 1.3s var(--ease), opacity 1.3s var(--ease);
  will-change: transform, opacity;
}
.testi-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  padding: 1.5px;
  border-radius: inherit;
  background:
    radial-gradient(22rem 22rem at var(--testi-glow-x) var(--testi-glow-y), rgba(229, 160, 255, .98) 0, rgba(188, 90, 255, .66) 18%, rgba(153, 72, 255, .26) 43%, transparent 72%);
  opacity: 0;
  pointer-events: none;
  filter: drop-shadow(0 0 .7rem rgba(194, 103, 255, .62));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: opacity .28s ease;
  will-change: background, opacity;
}
.testi-card.is-pointer-target::before {
  opacity: 1;
}
.testi-card.is-current {
  opacity: 1;
}
.testi-card p {
  font-family: var(--f-heading);
  font-size: clamp(1.3rem, 1.55vw, 2.2rem);
  line-height: 1.55;
  color: var(--c-white);
  margin-bottom: 2.5rem;
  font-weight: 400;
  opacity: .1;
  transition: opacity 1.3s var(--ease);
}
.testi-card footer {
  font-size: clamp(.8rem, .85vw, 1rem);
  color: rgba(251,251,244,.55);
  opacity: .1;
  transition: opacity 1.3s var(--ease);
}
.testi-card footer strong { color: var(--c-white); font-weight: 500; }
.testi-card.is-current p { opacity: 1; }
.testi-card.is-current footer { opacity: 1; }
.testi-zone {
  position: absolute;
  top: 0;
  z-index: 4;
  width: 50%;
  height: 100%;
  cursor: none;
}
.testi-zone-prev { left: 0; }
.testi-zone-next { right: 0; }
.testi-arrow {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: 3.6rem;
  color: var(--c-white);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--testi-arrow-x, 0), var(--testi-arrow-y, 0), 0) translate(-50%, -50%);
  transition: opacity .35s ease;
  will-change: transform, opacity;
}
.testi-carousel.is-pointer-active .testi-arrow { opacity: 1; }
.testi-carousel.is-prev .testi-arrow svg { transform: rotateY(180deg); }
.testi-arrow svg {
  display: block;
  position: relative;
  width: 100%;
  transition: transform .6s var(--ease);
}

/* ============================================================
   VALUES — dark principle cards
   ============================================================ */
.s-values {
  position: relative;
  padding: clamp(7rem, 10vw, 12rem) 0 clamp(8rem, 11vw, 14rem);
  overflow: hidden;
  background: var(--c-black) !important;
  color: var(--c-white);
}
.values-bg {
  position: absolute;
  inset: -10rem 0 0;
  z-index: 0;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 22%, #000 100%);
}
.values-bg::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2,2,2,.78), rgba(2,2,2,.38) 42%, rgba(2,2,2,.78)),
    linear-gradient(180deg, rgba(2,2,2,.55), rgba(2,2,2,.2) 38%, rgba(2,2,2,.72));
  content: '';
}
.values-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 28%;
  filter: grayscale(1) contrast(1.08);
  opacity: .9;
}
.values-heading {
  position: relative;
  z-index: 1;
  max-width: 100rem;
  margin: 0 var(--gutter) clamp(3.5rem, 6vw, 6rem);
}
.values-heading h2 {
  margin: 0;
  font-family: var(--f-cjk);
  font-size: clamp(3.8rem, 7vw, 8.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  color: var(--c-white);
}
.values-heading p {
  margin: clamp(.9rem, 1.8vw, 1.6rem) 0 0;
  font-family: var(--f-cjk);
  font-size: clamp(1.05rem, 1.8vw, 2rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
  color: var(--c-white);
}
.values-carousel {
  position: relative;
  z-index: 1;
  padding-right: clamp(2.5rem, 5.2vw, 6.5rem);
}
.values-track {
  display: flex;
  gap: clamp(1.2rem, 1.25vw, 1.7rem);
  overflow-x: auto;
  padding: 0 0 1rem var(--gutter);
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.values-track::-webkit-scrollbar {
  display: none;
}
.value-card {
  position: relative;
  display: flex;
  min-width: clamp(25rem, 29vw, 40.5rem);
  min-height: clamp(24rem, 27vw, 36rem);
  flex: 0 0 clamp(25rem, 29vw, 40.5rem);
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(3rem, 4vw, 5.2rem);
  scroll-snap-align: start;
  border: 1px solid rgba(251,251,244,.2);
  border-radius: 1.8rem;
  background:
    radial-gradient(circle at 22% 10%, rgba(255,255,255,.16), transparent 46%),
    linear-gradient(135deg, rgba(255,255,255,.16), rgba(255,255,255,.055));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 2rem 5rem rgba(0,0,0,.18);
  backdrop-filter: blur(1.35rem) saturate(1.18);
  -webkit-backdrop-filter: blur(1.35rem) saturate(1.18);
  transition: border-color .65s var(--ease), transform .65s var(--ease), background .65s var(--ease);
}
.value-card:hover {
  border-color: rgba(251,251,244,.34);
  background:
    radial-gradient(circle at 22% 10%, rgba(255,255,255,.2), transparent 46%),
    linear-gradient(135deg, rgba(255,255,255,.2), rgba(255,255,255,.07));
  transform: translateY(-.45rem);
}
.value-card-index {
  display: none;
}
.value-card h3 {
  position: relative;
  z-index: 1;
  max-width: 43rem;
  margin: 0 0 clamp(2.3rem, 3.3vw, 4rem);
  font-family: var(--f-cjk);
  font-size: clamp(1.9rem, 2.35vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--c-white);
}
.value-card p {
  position: relative;
  z-index: 1;
  max-width: 48rem;
  margin: 0;
  font-family: var(--f-cjk);
  font-size: clamp(1rem, 1.16vw, 1.35rem);
  font-weight: 500;
  line-height: 1.75;
  color: rgba(251,251,244,.86);
}
.values-swipe-hint {
  position: absolute;
  top: clamp(-4.8rem, -3.1vw, -2.6rem);
  right: clamp(2.2rem, 4vw, 5rem);
  z-index: 3;
  color: rgba(251,251,244,.62);
  font-family: var(--f-body);
  font-size: clamp(2.6rem, 4.1vw, 5.4rem);
  font-weight: 300;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateX(0);
  text-shadow: 0 0 1.6rem rgba(251,251,244,.18);
}
.values-carousel.is-hinting .values-swipe-hint {
  animation: values-swipe-hint 5s ease-in-out forwards;
}
@keyframes values-swipe-hint {
  0%, 100% { opacity: 0; transform: translateX(0); }
  8%, 28%, 48%, 68%, 88% { opacity: .62; transform: translateX(.65rem); }
  18%, 38%, 58%, 78% { opacity: .18; transform: translateX(0); }
}
/* ============================================================
   FAQ — dark background
   ============================================================ */
.s-faq {
  background: transparent !important;   /* 露出 main.page 黑底 */
  padding: 0;
}
.faq-inner {
  padding: 8rem var(--gutter);
}
.faq-heading {
  font-family: var(--f-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -.02em;
  color: var(--c-white);
  margin-bottom: 4rem;
}
.faq-list { display: flex; flex-direction: column; }

.faq-item { border-top: 1px solid rgba(251,251,244,.1); }
.faq-item:last-child { border-bottom: 1px solid rgba(251,251,244,.1); }

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8rem 0;
  font-family: var(--f-heading);
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  font-weight: 400;
  letter-spacing: -.01em;
  color: var(--c-white);
  text-align: left;
  gap: 2rem;
  transition: color .3s ease;
}
.faq-q:hover { color: rgba(251,251,244,.6); }

.faq-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid rgba(251,251,244,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-heading);
  font-size: 1rem;
  color: var(--c-white);
  flex-shrink: 0;
  transition: transform .4s var(--ease), border-color .3s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(90deg);
  border-color: var(--c-orange);
  color: var(--c-orange);
}

.faq-a {
  overflow: hidden;
  height: 0;
}
.faq-a p {
  font-size: .88rem;
  line-height: 1.8;
  color: rgba(251,251,244,.45);
  padding-bottom: 2rem;
  max-width: 56rem;
}

.faq-prefooter-img {
  width: 100%;
  overflow: hidden;
  max-height: 55vh;
}
.faq-prefooter-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  max-height: 55vh;
  opacity: .7;
}

/* ============================================================
   FOOTER — full dark, no cream wrapper
   ============================================================ */
.s-footer {
  background: transparent !important;   /* 露出 main.page 黑底 */
  color: var(--c-white);
  padding: 5rem var(--gutter) 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 4rem;
  padding-bottom: 5rem;
  border-bottom: 1px solid rgba(251,251,244,.08);
  align-items: start;
  position: relative;
}
.footer-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.footer-col h6 {
  font-size: .58rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: rgba(251,251,244,.3);
  margin-bottom: 1.4rem;
}
.footer-col a {
  display: block;
  font-size: .85rem;
  color: rgba(251,251,244,.55);
  margin-bottom: .6rem;
  transition: color .3s ease;
}
.footer-col a:hover { color: var(--c-white); }

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  align-items: flex-start;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(251,251,244,.07);
  border: 1px solid rgba(251,251,244,.12);
  border-radius: 10rem;
  padding: .7rem 1.4rem;
  font-size: .82rem;
  color: var(--c-white);
  transition: background .3s ease;
}
.footer-cta-btn:hover { background: rgba(251,251,244,.12); }
.footer-dot {
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
}
.footer-contact { display: flex; flex-direction: column; gap: .8rem; }
.footer-contact > p { font-size: .85rem; color: rgba(251,251,244,.5); line-height: 1.6; }
.footer-contact-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-contact-links p { font-size: .82rem; color: rgba(251,251,244,.45); }
.footer-contact-links a { color: rgba(251,251,244,.45); transition: color .3s ease; }
.footer-contact-links a:hover { color: var(--c-white); }
.f-bullet { color: rgba(251,251,244,.3); margin-right: .4rem; }

.footer-clock-row {
  font-size: .72rem;
  color: rgba(251,251,244,.3);
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}
.footer-tz { color: rgba(251,251,244,.2); margin-left: .2rem; }

.footer-bird {
  width: 3.5rem;
  height: 3.5rem;
  color: rgba(251,251,244,.5);
  justify-self: center;
  align-self: center;
}
.footer-bird svg { width: 100%; height: 100%; }

.footer-wordmark {
  padding: 3rem 0 0;
  overflow: hidden;
  border-top: 1px solid rgba(251,251,244,.07);
}
.footer-wordmark span {
  display: block;
  font-family: var(--f-body);
  font-size: clamp(5rem, 14vw, 17rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: .85;
  color: var(--c-white);
  white-space: nowrap;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(251,251,244,.06);
}
.footer-bottom p {
  font-size: .7rem;
  color: rgba(251,251,244,.25);
}

/* ============================================================
   CANVAS BORDER — animated shimmer on pills & cards
   ============================================================ */
[data-border] { position: relative; }
[data-border] .border-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
  border-radius: inherit;
}

/* ============================================================
   GSAP PIN SPACERS — inherit cream background so no black gaps
   ============================================================ */
.pin-spacer {
  background: var(--c-white) !important;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(3rem);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --gutter: 2.5rem; }

  .about-inner {
    grid-template-columns: .85fr 1fr;
    gap: 3rem;
  }

}
@media (max-width: 768px) {
  :root { --gutter: 2rem; }
  html { font-size: 12px; }

  main.page {
    height: 100dvh;
  }

  #nav {
    padding-top: 1.4rem;
  }

  .nav-inner {
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
    gap: .4rem;
  }

  .nav-links { display: none; }

  .nav-pill {
    height: 4.6rem;
    border-radius: .5rem;
    padding: 0 1.2rem;
  }

  .nav-logo {
    min-width: 0;
    flex: 1;
    justify-content: flex-start;
  }

  .logo-text {
    font-size: 1.35rem;
  }

  .nav-menu {
    width: 4.8rem;
    font-size: 1.4rem;
  }

  .hero-title {
    top: auto;
    bottom: 22vh;
    transform: none;
    flex-direction: column;
    padding: 0 1.4rem;
    align-items: flex-start;
    gap: 1.6rem;
  }

  .hero-title-left,
  .hero-title-right {
    width: min(100%, 32rem);
  }

  .hero-title-left {
    font-size: clamp(2.45rem, 8.8vw, 4rem);
    line-height: 1.16;
  }

  .hero-title-right {
    font-size: clamp(1.15rem, 3.8vw, 1.45rem);
    line-height: 1.7;
  }

  .hero-scroll-hint {
    display: none;
  }

  .s-work {
    padding: 4rem 0 0;
  }

  .s-ai-tools {
    padding: 7rem 0 3rem;
  }

  .ai-tools-heading {
    padding: 0 2rem;
    margin-bottom: 3.2rem;
  }

  .ai-tools-heading h2 {
    max-width: 8ch;
    font-size: clamp(3.1rem, 15vw, 5rem);
    line-height: 1.08;
  }

  .ai-tools-heading p {
    max-width: 20rem;
    margin-top: .8rem;
    font-size: clamp(1rem, 4.4vw, 1.25rem);
  }

  .ai-marquee {
    gap: .8rem;
  }

  .ai-view-switch {
    margin-bottom: 2.5rem;
  }

  .ai-marquee-track {
    animation-duration: 27s;
  }

  .ai-marquee-row-reverse .ai-marquee-track {
    animation-duration: 31s;
  }

  .ai-marquee-group {
    gap: .8rem;
    padding-right: .8rem;
  }

  .ai-tool {
    gap: .75rem;
    padding: .9rem 1.2rem;
    font-size: 1rem;
  }

  .ai-tool-logo {
    width: 1.9rem;
    height: 1.9rem;
  }

  .ai-tools-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
    padding: 0 2rem;
  }

  .ai-grid-card {
    min-height: 8.8rem;
    flex-direction: column;
    gap: .7rem;
    padding: 1rem .7rem;
    font-size: .95rem;
    text-align: center;
  }

  .work-section-heading {
    padding: 0 2rem;
    margin-bottom: 3.5rem;
  }

  .work-section-title {
    font-size: clamp(3.1rem, 16vw, 5rem);
  }

  .work-section-subtitle {
    font-size: clamp(1rem, 4.4vw, 1.25rem);
    margin-top: .8rem;
  }

  .work-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .work-col,
  .work-col[data-num="01"] {
    width: 100% !important;
    height: auto;
    min-height: 0;
    flex: none;
  }

  .work-view-btn {
    display: none;
  }

  .work-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    min-height: 34rem;
    border-left: 0;
    border-top: 1px solid rgba(2,2,2,.08);
  }

  .work-col::after {
    opacity: .52;
  }

  .work-col-info {
    top: auto;
    bottom: 1.4rem;
    left: 1.4rem;
    right: 1.4rem;
    max-width: none;
    opacity: 1;
    transform: none;
  }

  .work-col-title {
    font-size: 1.2rem;
  }

  .about-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 5rem 2rem;
    gap: 3rem;
  }

  .about-left,
  .about-right {
    padding: 0;
  }

  .about-title {
    font-size: clamp(6rem, 24vw, 9rem);
  }

  .about-right {
    gap: 2rem;
  }

  .about-img {
    aspect-ratio: 4 / 3;
  }

  .s-design-view {
    padding: 5rem 2rem 6rem;
  }

  .design-view-heading {
    padding: 0;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3.5rem;
  }

  .design-view-heading h2 {
    font-size: clamp(3.1rem, 16vw, 5rem);
  }

  .design-view-heading p {
    font-size: clamp(1rem, 4.4vw, 1.25rem);
    margin-top: .8rem;
  }

  .design-rows {
    margin: 0;
  }

  .design-row,
  .design-row.is-active,
  .design-row:hover {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .design-row-fig {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    margin: 0;
  }

  .design-row-content {
    padding: 2rem 0 2.4rem;
  }

  .design-row-header h3 {
    font-size: clamp(2rem, 9vw, 3.4rem);
  }

  .design-row-header span {
    font-size: clamp(1.8rem, 8vw, 3rem);
    padding-right: 0;
  }

  .design-row-content p {
    opacity: 1;
    transform: none;
    font-size: .95rem;
    line-height: 1.7;
    margin-top: 1.4rem;
  }

  .design-row-cta {
    min-height: 0;
    padding: 3rem 2rem;
  }

  .design-row-cta p {
    margin-bottom: 2.5rem;
    font-size: clamp(2rem, 9vw, 3.4rem);
  }

  .design-row-cta a {
    width: 14.8rem;
    height: 3.75rem;
    font-size: 1rem;
  }

  .about-desc {
    font-size: .95rem;
    line-height: 1.75;
  }

  .testi-inner {
    padding: 0;
  }

  .testi-subtitle {
    margin-bottom: 5rem;
  }

  .testi-card {
    width: calc(100vw - 6rem);
    height: 100%;
    padding: 5rem 3.6rem;
  }

  .testi-carousel {
    height: min(34rem, 72vw);
    cursor: grab;
  }

  .testi-zone,
  .testi-arrow {
    display: none;
  }

  .s-values {
    padding: 7rem 0 8rem;
  }

  .values-heading {
    margin-inline: 2rem;
  }

  .values-carousel {
    padding-right: 0;
  }

  .values-track {
    gap: 1.2rem;
    padding: 0 2rem 1rem;
  }

  .value-card {
    min-width: calc(100vw - 6rem);
    min-height: 23rem;
    flex-basis: calc(100vw - 6rem);
    padding: 3rem 2.6rem;
    border-radius: 1.4rem;
  }

  .value-card h3 {
    margin: 0 0 2rem;
    font-size: clamp(1.95rem, 8vw, 3rem);
  }

  .value-card p {
    font-size: 1rem;
  }

  .values-swipe-hint {
    top: -3.2rem;
    right: 2.4rem;
    font-size: 3.4rem;
  }

  .faq-inner {
    padding: 6rem 2rem;
  }

  .faq-q {
    align-items: flex-start;
    line-height: 1.25;
  }

  .faq-prefooter-img {
    max-height: 36vh;
  }

  .s-footer {
    padding: 4rem 2rem 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .footer-left {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-bird {
    justify-self: start;
  }

  .footer-wordmark span {
    font-size: clamp(4rem, 19vw, 7rem);
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: .6rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    bottom: 18vh;
  }

  .logo-text {
    max-width: 10.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .work-col {
    min-height: 30rem;
  }

  .footer-left {
    grid-template-columns: 1fr;
  }
}

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

  .border-canvas {
    display: none;
  }
}
