:root {
  --orange: #f37021;
  --orange-dark: #e15a13;
  --orange-soft: #ff9a55;
  --black: #0d0d12;
  --surface: #15151c;
  --surface-2: #1a1a22;
  --ivory: #f4efe9;
  --muted: #a8a5a2;
  --line: rgba(243, 112, 33, 0.24);
  --nav-h: 82px;
}

* {
  box-sizing: border-box;
}
html {
  background: var(--black);
}
body {
  margin: 0;
  background: var(--black);
  color: var(--ivory);
  font-family: "Noto Sans TC", sans-serif;
  overflow: hidden;
  cursor: none;
}

a,
button,
input,
textarea,
select {
  font: inherit;
}
a,
button {
  cursor: none;
}

.serif {
  font-family: "Cormorant Garamond", serif;
}
.text-gradient {
  background: linear-gradient(
    110deg,
    #fff 5%,
    #f37021 48%,
    #ffb27b 72%,
    #fff 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 7s linear infinite;
}

@keyframes shine {
  to {
    background-position: 220% center;
  }
}

#page {
  height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-y: contain;
}

.snap-section {
  position: relative;
  min-height: 100dvh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  isolation: isolate;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.85'/%3E%3C/svg%3E");
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: difference;
  border-radius: 999px;
}
.cursor-dot {
  width: 7px;
  height: 7px;
  background: white;
}
.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition:
    width 0.2s,
    height 0.2s,
    opacity 0.2s;
}
.cursor-ring.is-hover {
  width: 54px;
  height: 54px;
  opacity: 0.55;
}

.site-nav {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: env(safe-area-inset-top);
  height: calc(var(--nav-h) + env(safe-area-inset-top));
  display: flex;
  align-items: center;
  background: linear-gradient(
    to bottom,
    rgba(8, 8, 12, 0.78),
    rgba(8, 8, 12, 0.18)
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-inner {
  width: min(1280px, calc(100% - 44px));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(243, 112, 33, 0.48);
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 28%,
    #ffae75 0 9%,
    #f37021 27%,
    #e15a13 65%,
    #7a2700 100%
  );
  box-shadow:
    0 0 30px rgba(243, 112, 33, 0.22),
    inset 0 1px 1px rgba(255, 255, 255, 0.42);
}
.brand small {
  display: block;
  color: #85817e;
  font-size: 9px;
  letter-spacing: 0.24em;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.73);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.25s;
}
.nav-links a:hover {
  color: var(--orange);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--orange);
  color: #0b0b0d;
  background: linear-gradient(135deg, #ff8a42, #f37021 50%, #e15a13);
  box-shadow:
    0 14px 40px rgba(225, 90, 19, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 55px rgba(225, 90, 19, 0.34);
}
.cta-outline {
  color: white;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}
.cta-outline:hover {
  border-color: var(--orange);
  box-shadow: 0 0 36px rgba(243, 112, 33, 0.12);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  color: white;
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(8, 8, 12, 0.96) 0%,
      rgba(8, 8, 12, 0.76) 48%,
      rgba(8, 8, 12, 0.35) 100%
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.75)),
    url("https://images.unsplash.com/photo-1519608487953-e999c86e7455?auto=format&fit=crop&w=2200&q=88")
      center/cover no-repeat;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 74% 45%,
      rgba(243, 112, 33, 0.24),
      transparent 25%
    ),
    linear-gradient(
      120deg,
      transparent 40%,
      rgba(243, 112, 33, 0.08),
      transparent 68%
    );
  z-index: -1;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.72;
}
.hero-content {
  width: min(1280px, calc(100% - 44px));
  margin: auto;
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h) + env(safe-area-inset-top));
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--orange-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.eyebrow:before {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
}

.hero h1 {
  max-width: 940px;
  margin: 24px 0 22px;
  font-size: clamp(3.8rem, 8.5vw, 8.4rem);
  line-height: 0.82;
  letter-spacing: -0.055em;
  font-weight: 600;
}
.hero h1 .zh {
  display: block;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 0.42em;
  letter-spacing: -0.02em;
  margin-top: 0.46em;
  line-height: 1.15;
}
.hero-copy {
  max-width: 650px;
  color: rgba(244, 239, 233, 0.7);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.9;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.hero-meta {
  position: absolute;
  right: 0;
  bottom: -70px;
  display: flex;
  gap: 44px;
}
.hero-meta b {
  display: block;
  font: 600 2rem/1 "Cormorant Garamond";
  color: white;
}
.hero-meta span {
  color: #898582;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 27px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  letter-spacing: 0.25em;
}
.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--orange), transparent);
  animation: pulseLine 1.8s infinite;
}
@keyframes pulseLine {
  0%,
  100% {
    opacity: 0.28;
    transform: scaleY(0.65);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

.section-shell {
  width: min(1280px, calc(100% - 44px));
  margin: auto;
  min-height: 100dvh;
  padding: calc(var(--nav-h) + env(safe-area-inset-top) + 36px) 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.values {
  background:
    radial-gradient(
      circle at 16% 20%,
      rgba(243, 112, 33, 0.1),
      transparent 25%
    ),
    linear-gradient(145deg, #0d0d12, #15151c 62%, #101016);
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 42px;
}
.section-heading h2 {
  margin: 14px 0 0;
  font: 600 clamp(2.8rem, 5.2vw, 5.4rem)/0.95 "Cormorant Garamond";
  letter-spacing: -0.04em;
}
.section-heading p {
  color: #9b9793;
  line-height: 1.85;
  max-width: 520px;
  margin: 0 0 5px auto;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.glass-card {
  position: relative;
  min-height: 330px;
  border: 1px solid rgba(243, 112, 33, 0.2);
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.075),
    rgba(255, 255, 255, 0.018)
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  padding: 30px;
  transition:
    transform 0.35s,
    border-color 0.35s,
    box-shadow 0.35s;
}
.glass-card:before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -90px;
  top: -90px;
  background: radial-gradient(
    circle,
    rgba(243, 112, 33, 0.28),
    transparent 67%
  );
  transition: transform 0.5s;
}
.glass-card:hover {
  transform: translateY(-9px);
  border-color: rgba(243, 112, 33, 0.58);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.34),
    0 0 30px rgba(243, 112, 33, 0.08);
}
.glass-card:hover:before {
  transform: scale(1.4);
}
.card-no {
  color: rgba(255, 255, 255, 0.26);
  font: 600 1rem "Cormorant Garamond";
  letter-spacing: 0.14em;
}
.card-icon {
  margin: 48px 0 28px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--orange);
  background: rgba(243, 112, 33, 0.1);
  border: 1px solid rgba(243, 112, 33, 0.22);
  box-shadow: inset 0 0 22px rgba(243, 112, 33, 0.08);
  font-size: 27px;
}
.glass-card h3 {
  margin: 0 0 12px;
  font-size: 1.32rem;
}
.glass-card p {
  margin: 0;
  color: #999591;
  line-height: 1.72;
  font-size: 0.92rem;
}
.card-tag {
  position: absolute;
  right: 25px;
  bottom: 22px;
  font: 600 0.76rem "Cormorant Garamond";
  color: var(--orange-soft);
  letter-spacing: 0.12em;
}

.showcase {
  background:
    linear-gradient(
      90deg,
      rgba(9, 9, 13, 0.96),
      rgba(9, 9, 13, 0.6) 55%,
      rgba(9, 9, 13, 0.82)
    ),
    url("https://images.unsplash.com/photo-1558655146-d09347e92766?auto=format&fit=crop&w=2200&q=88")
      center/cover no-repeat;
}
.showcase-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: flex-start;
}
.showcase .section-shell {
  justify-content: flex-start;
}
.showcase h2 {
  font: 600 clamp(3rem, 6vw, 6.4rem)/0.9 "Cormorant Garamond";
  margin: 18px 0 24px;
  letter-spacing: -0.045em;
}
.showcase p {
  max-width: 560px;
  color: #aaa6a2;
  line-height: 1.9;
}
.project-stack {
  display: grid;
  gap: 14px;
  max-height: calc(100vh - 280px);
  overflow-y: auto;
  padding-right: 6px;
  overscroll-behavior: contain;
}
.project-stack::-webkit-scrollbar {
  width: 10px;
}
.project-stack::-webkit-scrollbar-track {
  background: transparent;
}
.project-stack::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
.project-item {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(13, 13, 18, 0.6);
  backdrop-filter: blur(15px);
  text-decoration: none;
  color: white;
  transition: 0.3s;
  opacity: 1 !important;
  transform: none !important;
}
.project-item:hover {
  transform: translateX(-8px);
  border-color: rgba(243, 112, 33, 0.45);
  background: rgba(20, 18, 18, 0.82);
}
.project-thumb {
  width: 220px;
  height: 125px;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s;
}
.project-item:hover img {
  transform: scale(1.08);
}
.project-item small {
  color: var(--orange);
  font-size: 10px;
  letter-spacing: 0.16em;
}
.project-item h3 {
  margin: 5px 0 0;
  font-size: 1rem;
}
.project-item iconify-icon {
  color: #777;
  font-size: 22px;
}

.contact {
  background:
    radial-gradient(
      circle at 80% 18%,
      rgba(243, 112, 33, 0.18),
      transparent 24%
    ),
    linear-gradient(145deg, #111116, #09090d 62%);
  overflow-y: auto;
}
.contact .section-shell {
  justify-content: flex-start;
  padding-top: calc(var(--nav-h) + 30px);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact h2 {
  font: 600 clamp(3rem, 5.4vw, 5.8rem)/0.92 "Cormorant Garamond";
  margin: 18px 0 24px;
  letter-spacing: -0.045em;
}
.contact-intro {
  color: #9c9894;
  line-height: 1.85;
  max-width: 470px;
}
.contact-list {
  margin-top: 34px;
  display: grid;
  gap: 14px;
}
.contact-list a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 0.9rem;
}
.contact-list iconify-icon {
  color: var(--orange);
  font-size: 20px;
}

.contact-form {
  border: 1px solid rgba(243, 112, 33, 0.2);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.02)
  );
  backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field {
  margin-bottom: 14px;
}
.field label {
  display: block;
  color: #b5b0ab;
  font-size: 12px;
  margin: 0 0 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 7, 10, 0.72);
  color: white;
  padding: 13px 15px;
  outline: none;
  transition:
    border-color 0.25s,
    box-shadow 0.25s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.12);
}
.field textarea {
  resize: vertical;
  min-height: 100px;
}
.agree {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #8f8b87;
  font-size: 12px;
  line-height: 1.5;
  margin: 4px 0 18px;
}
.agree a {
  color: var(--orange-soft);
}
.submit-btn {
  width: 100%;
  border: 0;
}
.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

footer {
  margin-top: 24px;
  padding: 18px 0 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  color: #706d6a;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.side-dots {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 95;
  transform: translateY(-50%);
  display: grid;
  gap: 12px;
}
.side-dots button {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.25);
  transition: 0.3s;
}
.side-dots button.active {
  background: var(--orange);
  box-shadow: 0 0 15px var(--orange);
  transform: scale(1.4);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
}
.modal.open {
  display: grid;
}
.modal-content {
  width: min(720px, calc(100% - 40px));
  max-width: 720px;
  max-height: 82dvh;
  overflow: auto;
  background: #15151c;
  border: 1px solid rgba(243, 112, 33, 0.32);
  border-radius: 24px;
  padding: 28px;
  position: relative;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
  box-sizing: border-box;
}
.modal-content iframe {
  width: 100%;
  display: block;
  border: 0;
  box-sizing: border-box;
}
.modal-title {
  margin: 0 0 16px;
  font: 600 2rem "Cormorant Garamond";
  color: white;
}
.close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}
#loadingIndicator {
  display: none;
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  border: 4px solid rgba(255, 255, 255, 0.18);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.modal-card h2,
.modal-card h3 {
  color: white;
}
.modal-card p,
.modal-card li {
  color: #aaa6a1;
  line-height: 1.75;
}
.modal-close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0d0d12;
  color: white;
}

@media (max-width: 900px) {
  :root {
    --nav-h: 72px;
  }
  body {
    cursor: auto;
  }
  a,
  button {
    cursor: pointer;
  }
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
  .menu-toggle {
    display: grid;
    place-items: center;
  }
  .nav-cta {
    display: none;
  }
  .nav-links {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 82px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 20px;
    background: rgba(13, 13, 18, 0.95);
    border: 1px solid rgba(243, 112, 33, 0.2);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: 0.3s;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .nav-links a {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .hero-meta {
    display: none;
  }
  .section-heading,
  .showcase-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .section-heading p {
    margin: 0;
  }
  .value-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    min-height: 0;
    align-items: stretch;
  }
  .value-grid::-webkit-scrollbar {
    display: none;
  }
  .value-grid .glass-card {
    min-width: min(320px, 100%);
    flex: 0 0 min(320px, 100%);
    scroll-snap-align: start;
    min-height: 0;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
    box-sizing: border-box;
  }
  .glass-card {
    padding: 20px;
  }
  .card-icon {
    margin: 18px 0 14px;
  }
  .card-tag {
    position: static;
    display: block;
    margin-top: auto;
    padding-top: 16px;
    text-align: right;
  }
  .values .section-shell {
    justify-content: flex-start;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .showcase .section-shell {
    justify-content: flex-start;
    overflow: visible;
  }
  .snap-section.values {
    height: 100dvh;
    min-height: 100dvh;
    overflow: hidden;
  }
  .snap-section.values .section-shell {
    padding-top: calc(var(--nav-h) + 6px);
    padding-bottom: 12px;
  }
  .section-heading {
    margin-bottom: 8px;
  }
  .section-heading h2 {
    font-size: 2.8rem;
    line-height: 1.02;
  }
  .section-heading p {
    font-size: 1rem;
    line-height: 1.5;
  }
  .value-grid {
    margin-top: -10px;
  }
  .project-stack {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
  }
  .project-stack::-webkit-scrollbar {
    display: none;
  }
  .project-stack .project-item {
    min-width: min(360px, 100%);
    flex: 0 0 min(360px, 100%);
    scroll-snap-align: start;
    min-height: 360px;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
    align-items: flex-start;
  }
  .project-stack .project-thumb {
    width: 100%;
    height: 240px;
  }
  .project-stack .project-item iconify-icon {
    justify-self: end;
  }
  .contact .section-shell {
    overflow-y: auto;
  }
  .side-dots {
    right: 10px;
  }
}

@media (max-width: 620px) {
  .nav-inner,
  .hero-content,
  .section-shell {
    width: min(100% - 28px, 1280px);
  }
  .brand-mark {
    width: 34px;
    height: 34px;
  }
  .brand small {
    display: none;
  }
  .hero {
    background-position: 63% center;
  }
  .hero h1 {
    font-size: clamp(3.25rem, 18vw, 5.4rem);
    line-height: 0.86;
    margin-top: 18px;
  }
  .hero h1 .zh {
    font-size: 0.34em;
    line-height: 1.35;
  }
  .hero-copy {
    font-size: 0.94rem;
    line-height: 1.75;
  }
  .hero-actions .cta {
    width: 100%;
  }
  .section-shell {
    padding-top: calc(var(--nav-h) + 4px);
    padding-bottom: calc(22px + env(safe-area-inset-bottom));
  }
  .section-heading {
    margin-bottom: 8px;
  }
  .section-heading h2 {
    font-size: 3rem;
    line-height: 1.02;
  }
  .section-heading p {
    font-size: 0.85rem;
    line-height: 1.45;
  }
  .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    margin-bottom: 6px;
  }
  .value-grid {
    margin-top: -10px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-form {
    padding: 20px;
    border-radius: 22px;
  }
  .project-item {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
    min-height: 320px;
  }
  .project-thumb {
    width: 100%;
    height: 160px;
  }
  .value-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    flex: 1;
    min-height: 0;
    align-items: stretch;
    padding-left: 8px;
    padding-right: 8px;
  }
  .value-grid .glass-card {
    min-width: min(280px, 88vw);
    max-width: 88vw;
    flex: 0 0 min(280px, 88vw);
    scroll-snap-align: start;
    min-height: 0;
    height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: stretch;
    box-sizing: border-box;
    padding: 18px;
  }
  .project-stack .project-item {
    min-width: min(320px, 100%);
    flex: 0 0 min(320px, 100%);
    scroll-snap-align: start;
    min-height: 320px;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
    align-items: flex-start;
  }
  .project-stack .project-thumb {
    width: 100%;
    height: 180px;
  }
  .project-stack .project-item iconify-icon {
    justify-self: end;
  }
  footer {
    flex-direction: column;
    gap: 8px;
  }
  .scroll-hint {
    display: none;
  }
}

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