:root {
  --ink: #101213;
  --muted: #676d70;
  --line: #d9dedc;
  --paper: #f2f2ec;
  --white: #ffffff;
  --teal: #0b6f69;
  --green: #c8ff3d;
  --charcoal: #202427;
  --red: #e50012;
  --shadow: 0 24px 70px rgba(18, 27, 31, 0.18);
  --page-gutter: max(72px, calc((100vw - 1600px) / 2 + 120px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(16, 18, 19, 0.045) 1px, transparent 1px) 0 0 / 100% 72px,
    var(--paper);
  font-family: Inter, "Noto Sans SC", "Microsoft YaHei UI", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a:focus-visible,
button:focus-visible,
.button:focus-visible,
.work-card:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 5px;
}

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

.splash-intro {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: #050707;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 520ms ease, visibility 520ms ease;
}

body.splash-active {
  overflow: hidden;
}

body.splash-active .splash-intro {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

body.splash-leaving .splash-intro {
  opacity: 0;
  pointer-events: none;
  visibility: visible;
}

.splash-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: right center;
  opacity: 0.46;
  transform: scale(1.04);
  animation: splashDrift 1700ms ease both;
}

.splash-intro::before,
.splash-intro::after,
.splash-glow {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.splash-intro::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 7, 7, 0.96) 0%, rgba(5, 7, 7, 0.68) 44%, rgba(5, 7, 7, 0.1) 100%),
    radial-gradient(circle at 46% 48%, rgba(200, 255, 61, 0.12), transparent 26%);
}

.splash-intro::after {
  z-index: 2;
  background:
    linear-gradient(112deg, transparent 0 38%, rgba(200, 255, 61, 0.22) 47%, transparent 58%),
    repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 92px);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-18%) skewX(-8deg);
  animation: splashSweep 1200ms ease 260ms both;
}

.splash-glow {
  z-index: 1;
  background: radial-gradient(circle at 50% 58%, rgba(11, 111, 105, 0.28), transparent 34%);
}

.splash-content {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 24px;
  text-align: center;
}

.splash-kicker {
  margin: 0;
  color: var(--green);
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 900;
  text-transform: uppercase;
  opacity: 0;
  animation: splashText 620ms ease 160ms both;
}

.splash-content strong {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.8px rgba(255, 255, 255, 0.9);
  text-stroke: 1.8px rgba(255, 255, 255, 0.9);
  font-size: clamp(70px, 13vw, 210px);
  line-height: 0.88;
  text-transform: uppercase;
  opacity: 0;
  animation: splashText 720ms ease 320ms both;
}

.splash-content span {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.8vw, 26px);
  font-weight: 800;
  opacity: 0;
  animation: splashText 680ms ease 620ms both;
}

.splash-skip {
  position: absolute;
  right: clamp(18px, 4vw, 54px);
  bottom: clamp(18px, 4vw, 46px);
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--white);
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  backdrop-filter: blur(16px);
}

@keyframes splashText {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes splashDrift {
  from {
    transform: scale(1.08) translateX(2%);
    filter: saturate(0.8) contrast(1.08);
  }

  to {
    transform: scale(1.02) translateX(0);
    filter: saturate(1.04) contrast(1.02);
  }
}

@keyframes splashSweep {
  0% {
    opacity: 0;
    transform: translateX(-24%) skewX(-8deg);
  }

  42% {
    opacity: 0.82;
  }

  100% {
    opacity: 0;
    transform: translateX(18%) skewX(-8deg);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 20px var(--page-gutter);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled,
.detail-header {
  color: var(--ink);
  background: rgba(247, 248, 245, 0.92);
  border-bottom: 1px solid rgba(21, 23, 25, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  width: fit-content;
  font-size: 20px;
  font-weight: 850;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 30px);
  font-size: 14px;
  font-weight: 700;
}

.main-nav span {
  display: inline-flex;
  margin-left: 4px;
  font-size: 11px;
  opacity: 0.72;
  vertical-align: top;
}

.main-nav a,
.header-link,
.site-footer a {
  opacity: 0.86;
}

.main-nav a:hover,
.header-link:hover,
.site-footer a:hover {
  opacity: 1;
}

.header-link {
  justify-self: end;
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 132px var(--page-gutter) 92px;
  color: var(--white);
}

.hero-shade,
.hero-motion {
  position: absolute;
  inset: 0;
}

.hero-shade {
  background:
    radial-gradient(circle at 76% 28%, rgba(200, 255, 61, 0.22), transparent 27%),
    radial-gradient(circle at 72% 72%, rgba(11, 111, 105, 0.26), transparent 32%),
    linear-gradient(115deg, #080a0a 0%, #111717 54%, #050606 100%);
}

.hero-motion {
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-motion::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    linear-gradient(112deg, transparent 0 38%, rgba(200, 255, 61, 0.16) 46%, transparent 56%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 90px);
  mix-blend-mode: screen;
  opacity: 0.7;
  transform: translateX(-18%);
  animation: heroSweep 8s ease-in-out infinite;
}

.hero-motion span {
  position: absolute;
  display: block;
  width: clamp(170px, 18vw, 330px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  opacity: 0.48;
  transform: rotate(-18deg);
  animation: heroLine 7s ease-in-out infinite;
}

.hero-motion span:nth-child(1) {
  top: 18%;
  right: 12%;
}

.hero-motion span:nth-child(2) {
  top: 46%;
  right: 4%;
  width: clamp(230px, 26vw, 500px);
  animation-delay: -2.4s;
}

.hero-motion span:nth-child(3) {
  left: 42%;
  bottom: 18%;
  animation-delay: -4.2s;
}

.hero-3d-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: #050707;
  box-shadow: none;
  transform:
    translate3d(calc(var(--mx, 0) * 18px), calc(var(--my, 0) * 12px), 0)
    scale(1.03);
  animation: heroFloat 8s ease-in-out infinite;
  pointer-events: none;
}

.hero-3d-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 9, 10, 0.98) 0%, rgba(7, 9, 10, 0.82) 32%, rgba(7, 9, 10, 0.3) 54%, rgba(7, 9, 10, 0.04) 78%),
    linear-gradient(0deg, rgba(7, 9, 10, 0.58), transparent 50%);
  pointer-events: none;
}

.hero-3d-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 73% 50%, rgba(200, 255, 61, 0.12), transparent 28%);
}

.hero-3d-visual img {
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  transform: none;
}

@keyframes heroFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -18px;
  }
}

@keyframes heroDrift {
  from {
    filter: saturate(1.02) contrast(1.02);
  }

  to {
    filter: saturate(1.14) contrast(1.08);
  }
}

@keyframes heroSweep {
  0%,
  100% {
    transform: translateX(-24%) skewX(-8deg);
    opacity: 0.28;
  }

  50% {
    transform: translateX(18%) skewX(-8deg);
    opacity: 0.72;
  }
}

@keyframes heroLine {
  0%,
  100% {
    transform: translate3d(-16px, 10px, 0) rotate(-18deg);
    opacity: 0.18;
  }

  50% {
    transform: translate3d(22px, -12px, 0) rotate(-18deg);
    opacity: 0.66;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1600px, 100%);
  margin: 0 auto;
  text-align: left;
}

@media (min-width: 1280px) {
  .hero-content {
    transform: translateX(clamp(-160px, -5vw, -72px));
  }
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-kicker {
  color: var(--teal);
}

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

h1 {
  max-width: none;
  margin-bottom: 22px;
  color: transparent;
  -webkit-text-stroke: 1.7px rgba(255, 255, 255, 0.88);
  text-stroke: 1.7px rgba(255, 255, 255, 0.88);
  font-size: clamp(76px, 8.4vw, 138px);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 .hero-name {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.92);
  -webkit-text-stroke: 0;
  text-stroke: 0;
  font-size: clamp(58px, 5.8vw, 94px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0;
}

h1 .hero-cn {
  display: block;
  color: transparent;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.16;
  letter-spacing: 0;
}

.hero-role {
  margin: 0 0 22px;
  color: var(--green);
  font-size: clamp(20px, 2.2vw, 34px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.hero-copy {
  max-width: min(760px, 45vw);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.34;
}

.hero-copy span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82em;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 850;
  white-space: nowrap;
}

span.button {
  cursor: default;
}

.button-primary {
  color: #101413;
  background: var(--green);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(21, 23, 25, 0.18);
  background: var(--white);
}

.section-pad {
  padding: clamp(72px, 10vw, 130px) var(--page-gutter);
}

.marquee {
  overflow: hidden;
  border-top: 1px solid rgba(16, 18, 19, 0.12);
  border-bottom: 1px solid rgba(16, 18, 19, 0.12);
  background: var(--green);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}

.marquee span {
  display: block;
  padding: 18px 28px;
  color: #0b0d0d;
  font-size: clamp(18px, 2vw, 34px);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: 44px;
}

.section-heading p,
.about-text p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

.work {
  color: var(--ink);
  background: var(--paper);
}

.work-heading {
  align-items: start;
}

.work-heading h2 {
  margin-bottom: 0;
  font-size: clamp(52px, 8vw, 132px);
  line-height: 0.9;
}

.work-heading h2 span {
  color: var(--muted);
  font-size: 0.28em;
  vertical-align: top;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(56px, 8vw, 112px);
}

.work-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transition: transform 260ms ease;
}

.work-card:hover {
  transform: translateY(-8px);
}

.case-visual {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #e9ece6;
  box-shadow: 0 22px 60px rgba(16, 18, 19, 0.16);
  transition: box-shadow 260ms ease, transform 260ms ease;
}

.case-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(7, 10, 10, 0.12), rgba(7, 10, 10, 0));
  pointer-events: none;
  transition: opacity 260ms ease;
}

.case-visual-red {
  background: var(--red);
}

.work-card:hover .case-visual {
  transform: scale(0.992);
  box-shadow: 0 34px 76px rgba(16, 18, 19, 0.22);
}

.work-card:hover .case-visual::after {
  opacity: 0.58;
}

.cover-media {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: transform 520ms ease, filter 520ms ease;
}

.cover-media-contain {
  padding: clamp(32px, 5vw, 74px);
  background: var(--red);
}

.work-card:hover .cover-media {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

.work-body {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 12px 28px;
  align-items: start;
  padding: 22px 2px 0;
}

.project-no {
  display: block;
  grid-row: 1 / span 3;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.case-type {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.work-body h3 {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1;
  transition: color 200ms ease, transform 220ms ease;
}

.work-card:hover .work-body h3 {
  color: var(--teal);
  transform: translateX(8px);
}

.work-body > p:not(.case-type) {
  grid-column: 3;
  grid-row: 1 / span 2;
  margin: 0;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.5;
}

.tag-row {
  grid-column: 3;
  grid-row: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.tag-row span {
  border: 1px solid rgba(16, 18, 19, 0.12);
  border-radius: 999px;
  padding: 6px 10px;
  color: #404548;
  font-size: 12px;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.6);
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease;
}

.work-card:hover .tag-row span {
  color: #101413;
  border-color: rgba(11, 111, 105, 0.3);
  background: rgba(200, 255, 61, 0.45);
}

.about {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(200, 255, 61, 0.1), transparent 26%),
    linear-gradient(110deg, rgba(17, 20, 22, 0.98), rgba(17, 20, 22, 0.9));
}

.about .section-kicker {
  color: var(--green);
}

.about-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #080909;
  box-shadow: 0 28px 78px rgba(0, 0, 0, 0.3);
}

.about-visual img {
  width: 100%;
  height: auto;
}

.about-visual figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: rgba(8, 10, 10, 0.58);
  backdrop-filter: blur(18px);
}

.about-visual figcaption span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-visual figcaption strong {
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1.04;
}

.about-text {
  max-width: 820px;
}

.about-text h2 {
  color: var(--white);
  font-size: clamp(40px, 6vw, 92px);
  line-height: 0.94;
}

.about-text .about-lead,
.about-text .cn-copy {
  color: rgba(255, 255, 255, 0.74);
}

.cn-copy {
  margin-top: 24px;
  padding-left: 18px;
  border-left: 4px solid var(--green);
  font-weight: 500;
}

.contact {
  text-align: center;
  background:
    radial-gradient(circle at 50% 10%, rgba(200, 255, 61, 0.28), transparent 24%),
    linear-gradient(180deg, #f7f8f5, #eceee8);
}

.contact h2,
.contact p {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.contact-actions {
  justify-content: center;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.contact-actions .button-secondary {
  color: #101413;
  border-color: transparent;
  background: var(--green);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px var(--page-gutter);
  color: rgba(255, 255, 255, 0.78);
  background: #111416;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.detail-page {
  background: var(--paper);
}

.project-hero {
  padding: 150px var(--page-gutter) 64px;
}

.project-hero-compact {
  padding-bottom: clamp(54px, 7vw, 94px);
}

.project-crumb {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 54px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-crumb [data-project-number] {
  display: none;
}

.project-crumb a:hover {
  color: var(--teal);
}

.project-title-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.project-title-grid h1 {
  margin: 0 0 22px;
  color: var(--ink);
  -webkit-text-stroke: 0;
  text-stroke: 0;
  font-size: clamp(46px, 7vw, 104px);
  line-height: 0.9;
  text-transform: uppercase;
}

.project-title-grid p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 22px);
}

.project-media-frame,
.gallery-main,
.gallery-grid > div {
  overflow: hidden;
  border-radius: 8px;
  background: #e6e6df;
  box-shadow: 0 24px 70px rgba(16, 18, 19, 0.14);
}

.project-media-frame {
  display: grid;
  place-items: center;
}

.detail-media {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.detail-media-contain {
  padding: clamp(34px, 7vw, 120px);
  background: var(--red);
}

.project-gallery {
  padding-top: clamp(34px, 5vw, 70px);
}

.project-gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-bottom: 42px;
}

.project-gallery-heading h2 {
  margin: 0;
  font-size: clamp(42px, 7vw, 110px);
  line-height: 0.9;
  text-transform: uppercase;
}

.asset-showcase {
  display: grid;
  gap: clamp(56px, 8vw, 104px);
}

.asset-group {
  display: grid;
  gap: 22px;
}

.asset-group-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: baseline;
  border-top: 1px solid rgba(16, 18, 19, 0.18);
  padding-top: 18px;
}

.asset-group-head span {
  display: none;
}

.asset-group-head h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1;
  text-transform: uppercase;
}

.asset-group-head p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.asset-tile {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  background: #e6e6df;
  box-shadow: 0 18px 48px rgba(16, 18, 19, 0.1);
  display: grid;
  place-items: center;
}

.asset-tile-featured {
  grid-column: auto;
  grid-row: auto;
}

.asset-tile img,
.asset-tile video {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 420ms ease, filter 420ms ease;
}

.asset-tile:hover img,
.asset-tile:hover video {
  transform: scale(1.025);
  filter: saturate(1.05) contrast(1.03);
}

[data-project="aplus"] .asset-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

[data-project="listing"] .asset-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

[data-project="aplus"] .asset-tile,
[data-project="aplus"] .asset-tile-featured,
[data-project="listing"] .asset-tile,
[data-project="listing"] .asset-tile-featured {
  grid-column: auto;
  grid-row: auto;
  background: var(--white);
}

[data-project="aplus"] .asset-tile:hover img,
[data-project="listing"] .asset-tile:hover img {
  transform: none;
}

[data-project="aplus"] .asset-group {
  gap: 18px;
}

.aplus-stack {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 22px 58px rgba(16, 18, 19, 0.11);
}

.aplus-module {
  position: relative;
  margin: 0;
  background: var(--white);
}

.aplus-module img {
  width: 100%;
  height: auto;
}

.aplus-carousel-stage {
  position: relative;
  display: grid;
}

.aplus-carousel-stage img {
  grid-area: 1 / 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
}

.aplus-carousel-stage img.is-active {
  opacity: 1;
  pointer-events: auto;
}

.aplus-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: clamp(38px, 4vw, 58px);
  height: clamp(38px, 4vw, 58px);
  place-items: center;
  border: 1px solid rgba(16, 18, 19, 0.12);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 12px 34px rgba(16, 18, 19, 0.16);
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0;
  transition: opacity 180ms ease, background 180ms ease, transform 180ms ease;
  backdrop-filter: blur(12px);
}

.aplus-arrow-prev {
  left: 18px;
}

.aplus-arrow-next {
  right: 18px;
}

.aplus-carousel:hover .aplus-arrow,
.aplus-carousel:focus-within .aplus-arrow {
  opacity: 1;
}

.aplus-arrow:hover {
  background: var(--green);
  transform: translateY(-50%) scale(1.06);
}

.empty-gallery {
  color: var(--muted);
  font-size: 18px;
}

.next-project {
  padding-top: 0;
}

.next-project a {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  align-items: center;
  border-top: 1px solid rgba(16, 18, 19, 0.18);
  border-bottom: 1px solid rgba(16, 18, 19, 0.18);
  padding: 34px 0;
}

.next-project span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.next-project strong {
  font-size: clamp(32px, 5vw, 76px);
  line-height: 1;
  text-transform: uppercase;
  transition: color 160ms ease, transform 180ms ease;
}

.next-project a:hover strong {
  color: var(--teal);
  transform: translateX(10px);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 86vh;
    padding: 118px 36px 76px;
  }

  .hero-3d-visual {
    inset: 0;
    width: 100%;
    opacity: 0.68;
  }

  .hero-3d-visual::before {
    background:
      linear-gradient(90deg, rgba(7, 9, 10, 0.98) 0%, rgba(7, 9, 10, 0.82) 46%, rgba(7, 9, 10, 0.24) 78%),
      linear-gradient(0deg, rgba(7, 9, 10, 0.64), transparent 58%);
  }

  .hero-content {
    width: 100%;
    transform: none;
  }

  h1 {
    font-size: clamp(62px, 13.5vw, 118px);
  }

  h1 .hero-name {
    font-size: clamp(48px, 9vw, 82px);
  }

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

  .section-heading,
  .about,
  .project-title-grid,
  .project-gallery-heading {
    grid-template-columns: 1fr;
  }

  .work-body {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 8px 18px;
    padding-top: 18px;
  }

  .work-body h3,
  .case-type,
  .work-body > p:not(.case-type),
  .tag-row {
    grid-column: 2;
    grid-row: auto;
  }

  .work-body > p:not(.case-type) {
    max-width: none;
  }

  .work-grid {
    gap: 64px;
  }

  .about {
    gap: 34px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 16px 18px;
  }

  .header-link {
    font-size: 13px;
  }

  .splash-bg {
    object-position: 70% center;
  }

  .splash-content strong {
    font-size: clamp(58px, 19vw, 94px);
  }

  .splash-content span {
    max-width: 280px;
    line-height: 1.35;
  }

  .hero {
    min-height: 84vh;
    padding: 104px 18px 86px;
  }

  .hero-3d-visual {
    inset: 0;
    width: 100%;
    opacity: 0.42;
  }

  .hero-3d-visual img {
    object-fit: cover;
    object-position: 68% center;
  }

  .hero-3d-visual::before {
    background:
      linear-gradient(90deg, rgba(7, 9, 10, 0.98) 0%, rgba(7, 9, 10, 0.86) 56%, rgba(7, 9, 10, 0.52) 100%),
      linear-gradient(0deg, rgba(7, 9, 10, 0.74), transparent 56%);
  }

  h1 {
    font-size: clamp(44px, 14vw, 66px);
    line-height: 1.08;
    -webkit-text-stroke: 1.05px rgba(255, 255, 255, 0.9);
    text-stroke: 1.05px rgba(255, 255, 255, 0.9);
  }

  h1 .hero-name {
    margin-bottom: 18px;
    font-size: clamp(42px, 12vw, 58px);
  }

  h1 .hero-cn {
    color: rgba(255, 255, 255, 0.96);
    font-size: clamp(45px, 13.8vw, 64px);
    line-height: 1.08;
    -webkit-text-stroke: 0 transparent;
    text-stroke: 0 transparent;
    font-weight: 900;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy,
  .section-heading p,
  .about-text p,
  .contact p {
    font-size: 16px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .marquee span {
    padding: 14px 20px;
  }

  .section-pad {
    padding-left: 18px;
    padding-right: 18px;
  }

  .work-grid {
    gap: 46px;
  }

  .work-body {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 8px 14px;
    padding-top: 14px;
  }

  .project-no,
  .case-type {
    font-size: 12px;
  }

  .work-body h3 {
    font-size: clamp(26px, 9vw, 40px);
    line-height: 1.04;
  }

  .work-body > p:not(.case-type) {
    font-size: 15px;
    line-height: 1.45;
  }

  .tag-row {
    gap: 6px;
  }

  .tag-row span {
    padding: 5px 8px;
    font-size: 11px;
  }

  .cover-media-contain {
    padding: 28px;
  }

  .about {
    gap: 28px;
  }

  .site-footer {
    flex-direction: column;
    padding-left: 18px;
    padding-right: 18px;
  }

  .project-hero {
    padding: 112px 18px 42px;
  }

  .asset-group-head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .asset-grid,
  [data-project="listing"] .asset-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

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

@media (max-width: 520px) {
  h1 {
    font-size: clamp(42px, 13vw, 56px);
    -webkit-text-stroke-width: 0.95px;
    text-stroke-width: 0.95px;
  }

  h1 .hero-name {
    font-size: clamp(40px, 11.5vw, 52px);
  }

  h1 .hero-cn {
    color: rgba(255, 255, 255, 0.96);
    font-size: clamp(43px, 13.2vw, 57px);
    -webkit-text-stroke: 0 transparent;
    text-stroke: 0 transparent;
  }

  .asset-grid,
  [data-project="listing"] .asset-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .about-visual figcaption {
    position: static;
    border-radius: 0;
  }

  .work-body {
    grid-template-columns: 1fr;
  }

  .project-no,
  .case-type,
  .work-body h3,
  .work-body > p:not(.case-type),
  .tag-row {
    grid-column: 1;
  }

  .project-no {
    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;
  }

  .splash-intro {
    display: none;
  }
}
