@font-face {
  font-family: "Eternalo Futura Medium";
  src: url("assets/fonts/Futura.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "EternaloLocal";
  src: url("assets/fonts/Eternalo.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FuturaLocal";
  src: url("assets/fonts/Futura.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0e0d0c;
  --panel: #0e0d0c;
  --panel-2: #0e0d0c;
  --cream: #f5f0e8;
  --muted: #8f887d;
  --line: rgba(245, 240, 232, 0.13);
  --lime: #e8d5a0;
  --dark: #0e0d0c;
  --accent: #e8d5a0;
  --warm: #c8b882;
  --red: #d94f2e;
  --blue: #c8b882;
  --shine-r: 232;
  --shine-g: 213;
  --shine-b: 160;
  --shadow: rgba(0, 0, 0, 0.58);
  --font-chinese: "TT Hei CHS Variable", sans-serif;
  --font-heading: "Bebas Neue", var(--font-chinese);
  --font-body: "DM Sans", var(--font-chinese);
  --font-accent: "Playfair Display", "TT Hei CHS Variable", Georgia, "Times New Roman", serif;
  --font-about-en: "Eternalo Futura Medium", "FuturaLocal", "EternaloLocal", Futura, "DM Sans", sans-serif;
  --motion-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --motion-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-spring: cubic-bezier(0.2, 1.18, 0.22, 1);
  --motion-fast: 260ms;
  --motion-medium: 620ms;
  --motion-slow: 920ms;
  --font-about-cn: "思源黑体 CN", "SourceHanSansCN", "Noto Sans SC", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: #0e0d0c;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 80;
  opacity: 0;
  background: transparent;
}

.gradual-blur {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  height: 6rem;
  pointer-events: none;
  isolation: isolate;
  transform: translateZ(0);
}

.gradual-blur-inner,
.gradual-blur-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gradual-blur-layer {
  display: block;
}

.gradual-blur-layer:nth-child(1) {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 20%, #000 40%, transparent 60%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 20%, #000 40%, transparent 60%);
  -webkit-backdrop-filter: blur(0.12rem);
  backdrop-filter: blur(0.12rem);
}

.gradual-blur-layer:nth-child(2) {
  -webkit-mask-image: linear-gradient(to bottom, transparent 20%, #000 40%, #000 60%, transparent 80%);
  mask-image: linear-gradient(to bottom, transparent 20%, #000 40%, #000 60%, transparent 80%);
  -webkit-backdrop-filter: blur(0.25rem);
  backdrop-filter: blur(0.25rem);
}

.gradual-blur-layer:nth-child(3) {
  -webkit-mask-image: linear-gradient(to bottom, transparent 40%, #000 60%, #000 80%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 40%, #000 60%, #000 80%, transparent 100%);
  -webkit-backdrop-filter: blur(0.5rem);
  backdrop-filter: blur(0.5rem);
}

.gradual-blur-layer:nth-child(4) {
  -webkit-mask-image: linear-gradient(to bottom, transparent 60%, #000 80%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 60%, #000 80%, #000 100%);
  -webkit-backdrop-filter: blur(0.9rem);
  backdrop-filter: blur(0.9rem);
}

.gradual-blur-layer:nth-child(5) {
  -webkit-mask-image: linear-gradient(to bottom, transparent 80%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 80%, #000 100%);
  -webkit-backdrop-filter: blur(1.4rem);
  backdrop-filter: blur(1.4rem);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .gradual-blur {
    display: none;
  }
}

[data-split-text].is-split-ready {
  overflow: hidden;
}

.split-text-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.split-text-unit {
  display: inline-block;
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(0, 0.72em, 0);
  transition:
    opacity 760ms var(--motion-soft),
    filter 760ms var(--motion-soft),
    transform 900ms var(--motion-spring);
  transition-delay: calc(var(--split-index) * 28ms);
}

[data-split-text][data-motion-direction="up"]:not(.is-split-visible) .split-text-unit {
  transform: translate3d(0, -0.58em, 0);
}

[data-split-text].is-split-visible .split-text-unit {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.click-spark {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 130;
  width: 0;
  height: 0;
  pointer-events: none;
  transform: translate(var(--spark-x), var(--spark-y));
}

.click-spark-line {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--spark-size);
  height: 2px;
  border-radius: 999px;
  background: var(--spark-color);
  box-shadow: 0 0 14px color-mix(in srgb, var(--spark-color) 72%, transparent);
  transform-origin: left center;
  animation: clickSparkBurst var(--spark-duration) var(--spark-easing) forwards;
  animation-delay: calc(var(--spark-index) * 9ms);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 48px;
  mix-blend-mode: normal;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  position: relative;

}

.nav-logo .zev-signature {
  display: inline-block;
  position: relative;
  z-index: 1;
  color: var(--cream);
  font-family: "EternaloLocal", "Playfair Display", cursive;
  font-size: clamp(36px, 3vw, 52px);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.82;
  text-shadow: 0 0 4px rgba(var(--shine-r), var(--shine-g), var(--shine-b), 0.2);
  transform: rotate(-6deg);
  transform-origin: center;
  animation: zevLogoGlow 3.5s ease-in-out infinite;
}


.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: rgba(245, 240, 232, 0.6);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
}

.nav-cta {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--cream);
  padding: 10px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.nav-cta:hover {
  background: var(--accent);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 118px 44px 42px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 88%, rgba(217, 79, 46, 0.18), transparent 34%),
    radial-gradient(circle at 82% 92%, rgba(232, 213, 160, 0.16), transparent 38%),
    linear-gradient(180deg, rgba(14, 13, 12, 0) 52%, rgba(26, 25, 23, 0.68) 100%);
}

.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(86px);
  opacity: 0.82;
}

.hero-bg::before {
  left: -12vw;
  bottom: -14vw;
  width: 42vw;
  height: 42vw;
  background: rgba(217, 79, 46, 0.22);
}

.hero-bg::after {
  right: -10vw;
  bottom: -18vw;
  width: 50vw;
  height: 50vw;
  background: rgba(232, 213, 160, 0.16);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(14, 13, 12, 0.9) 0%, rgba(14, 13, 12, 0.62) 38%, rgba(14, 13, 12, 0.24) 100%),
    linear-gradient(180deg, rgba(14, 13, 12, 0.2) 0%, rgba(14, 13, 12, 0.9) 100%);
  pointer-events: none;
}

.hero-collage {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 0;
  padding: 94px 38px 38px 38%;
  opacity: 0.84;
}

.hero-tile {
  --motion-pointer-x: 50%;
  --motion-pointer-y: 50%;
  --motion-glow-strength: 0;
  position: relative;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--panel);
  box-shadow: none;
  animation: none;
  transform: none;
  backface-visibility: hidden;
  contain: paint;
  transition:
    border-color 520ms var(--motion-smooth),
    box-shadow 620ms var(--motion-smooth),
    transform 760ms var(--motion-spring);
  will-change: auto;
}

.hero-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(260px circle at var(--motion-pointer-x) var(--motion-pointer-y), rgba(232, 213, 160, 0.36), rgba(217, 79, 46, 0.14) 38%, transparent 72%),
    linear-gradient(135deg, rgba(232, 213, 160, 0.18), transparent 36%, rgba(245, 240, 232, 0.12) 78%, transparent);
  box-shadow:
    inset 0 0 0 1px rgba(232, 213, 160, 0.74),
    inset 0 0 34px rgba(232, 213, 160, 0.12);
  transition: opacity 420ms var(--motion-smooth);
}

.hero-tile:hover {
  z-index: 2;
  animation: none;
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.hero-tile:hover::after {
  opacity: 1;
}

.hero-tile:nth-child(1) {
  order: 1;
  flex: 0 0 43.0698%;
  aspect-ratio: 1.6711;
  border-radius: 6px 0 0 0;
}

.hero-tile:nth-child(2) {
  order: 2;
  flex: 0 0 38.7599%;
  aspect-ratio: 1.504;
}

.hero-tile:nth-child(3) {
  order: 3;
  flex: 0 0 18.1703%;
  aspect-ratio: 0.705;
  border-radius: 0 6px 0 0;
}

.hero-tile:nth-child(4) {
  order: 4;
  flex: 0 0 40.0333%;
  aspect-ratio: 1.41;
  border-radius: 0 0 0 6px;
}

.hero-tile:nth-child(5) {
  order: 6;
  flex: 0 0 20.0166%;
  aspect-ratio: 0.705;
  border-radius: 0 0 6px 0;
}

.hero-tile:nth-child(6) {
  order: 5;
  flex: 0 0 39.9501%;
  aspect-ratio: 1.4071;
}

.hero-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.08);
  transform: none;
  animation: none;
  transition:
    filter 640ms var(--motion-smooth);
  backface-visibility: hidden;
}

.hero-tile:hover img {
  animation: none;
  filter: saturate(1.08) brightness(1.1) contrast(1.12);
  transform: none;
}

.hero-tile span {
  position: absolute;
  left: 12px;
  bottom: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(14, 13, 12, 0.68);
  border: 1px solid rgba(242, 238, 230, 0.18);
  color: rgba(242, 238, 230, 0.86);
  font-size: 11px;
  letter-spacing: 0.04em;
  z-index: 2;
  transition:
    background-color 420ms var(--motion-smooth),
    border-color 420ms var(--motion-smooth),
    color 420ms var(--motion-smooth),
    transform 520ms var(--motion-spring);
}

.hero-tile:hover span {
  background: rgba(14, 13, 12, 0.82);
  border-color: rgba(232, 213, 160, 0.58);
  color: var(--cream);
  transform: translateY(-2px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  transform: translateY(-4vh);
}

.hero-copy .kicker,
.hero-copy h1,
.hero-copy .hero-line {
  animation: heroTextRise 1050ms var(--motion-soft) both;
  will-change: opacity, filter, transform;
}

.hero-copy h1 {
  animation-delay: 90ms;
}

.hero-copy .hero-line {
  animation-delay: 180ms;
}

.kicker,
.eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 700;
}

.kicker {
  margin-bottom: 20px;
  color: #d3a15b;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: none;
}

.hero h1 {
  margin: 0;
  color: #b8b8b8;
  font-family: var(--font-body);
  font-size: 128px;
  line-height: 0.98;
  font-weight: 300;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: #b8b8b8;
  font-family: var(--font-body);
  font-size: 148px;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}

.hero-line {
  max-width: 720px;
  margin: 34px 0 0;
  color: #b8b8b8;
  font-size: 34px;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.hero-meta {
  position: absolute;
  z-index: 2;
  left: 44px;
  right: 44px;
  bottom: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 860px;
}

.hero-meta div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.hero-meta strong {
  display: block;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 15px;
}

.hero-meta span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}
.value-card {
  position: relative;
  cursor: pointer;
  transition: background 0.4s var(--motion-soft), transform 560ms var(--motion-spring);
  padding-bottom: 2px;
  animation: revealValueCard 0.8s var(--motion-soft) forwards;
  opacity: 0;
}

.value-card:nth-child(1) { animation-delay: 0s; }
.value-card:nth-child(2) { animation-delay: 0.1s; }
.value-card:nth-child(3) { animation-delay: 0.2s; }

.value-card:hover {
  background: rgba(232, 213, 160, 0.06);
  transform: translate3d(0, -2px, 0);
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: #E8D5A0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover::after {
  transform: scaleX(1);
}

.home-marquee {
  position: relative;
  overflow: hidden;
  height: clamp(86px, 7.25vw, 128px);
  border-top: 1px solid rgba(242, 238, 230, 0.16);
  border-bottom: 1px solid rgba(242, 238, 230, 0.16);
  background:
    linear-gradient(90deg, rgba(14, 13, 12, 0.96), rgba(26, 25, 23, 0.96)),
    radial-gradient(circle at 8% 50%, rgba(232, 213, 160, 0.16), transparent 30%);
  color: var(--cream);
  white-space: nowrap;
}

.home-marquee::before,
.home-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 15vw;
  pointer-events: none;
}

.home-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink), transparent);
}

.home-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--ink), transparent);
}

.home-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  height: 100%;
  padding: 0;
  animation: homeMarquee 30s linear infinite;
  will-change: transform;
}

.home-marquee span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-family: var(--font-heading);
  font-size: clamp(54px, 6.3vw, 112px);
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
}

.marquee-star {
  color: #e8d5a0;
  font-size: 0.42em;
  line-height: 1;
}

.section,
.category-section,
.contact-footer {
  position: relative;
  padding: 110px 44px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 54px;
}

.section-heading.compact {
  margin-bottom: 34px;
}

.section-heading > .eyebrow {
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 0.92;
  font-weight: 400;
}

.section-heading h2,
.contact-card h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 64px;
  line-height: 0.92;
  font-weight: 400;
  white-space: nowrap;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
}

.statement-panel {
  background: var(--ink);
  color: var(--cream);
  border-radius: 6px;
  padding: 34px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.statement-panel p {
  margin: 0;
  font-size: 20px;
  line-height: 1.75;
}

.pipeline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.pipeline span {
  border: 1px solid rgba(14, 13, 12, 0.16);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 13px;
}

.experience-list {
  display: grid;
  gap: 12px;
}

.experience-list article {
  min-height: 132px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #0e0d0c;
}

.experience-list h3 {
  margin: 4px 0 8px;
  font-family: var(--font-heading);
  font-size: 28px;
  line-height: 0.98;
  font-weight: 400;
}

.experience-list p {
  margin: 0;
  color: rgba(242, 238, 230, 0.72);
  line-height: 1.7;
}

.year {
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tool-row {
  display: grid;
  grid-template-columns: repeat(14, minmax(62px, 1fr));
  gap: 8px;
  margin-top: 20px;
}

.tool-mark {
  display: grid;
  place-items: center;
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #0e0d0c;
  color: rgba(242, 238, 230, 0.84);
  font-size: 13px;
  font-weight: 700;
}

.about-section {
  background: #0e0d0c;
  color: #f6f5f1;
  font-family: var(--font-about-en), var(--font-about-cn);
  min-height: 100vh;
  padding: 0;
  display: grid;
  place-items: start center;
  overflow: hidden;
}

.about-resume {
  --about-reference-width: 1920;
  --about-reference-height: 1080;
  --about-right-shift: 0px;
  position: relative;
  width: 100vw;
  height: 100vh;
  aspect-ratio: 16 / 9;
  min-height: 0;
  margin: 0 auto;
}

.about-left,
.about-right {
  min-width: 0;
}

.about-right {
  position: absolute;
  left: 54.55%;
  top: 5%;
  width: 36.8%;
  height: 95%;
  transform: translateX(var(--about-right-shift));
}

.about-portrait {
  position: absolute;
  left: 5.3%;
  top: 9.9%;
  width: 13.6%;
  aspect-ratio: 3 / 4;
  margin: 0;
  overflow: visible;
  background: transparent;
}

.about-photo-label {
  position: absolute;
  left: 42px;
  top: 3.4%;
  z-index: 2;
  margin: 0 0 18px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.tilted-card-figure {
  position: relative;
  perspective: 800px;
  transform-style: preserve-3d;
}

.about-portrait.tilted-card-figure {
  position: absolute;
}

.tilted-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 6px;
  background: #0e0d0c;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  transform:
    rotateX(var(--tilt-rotate-x, 0deg))
    rotateY(var(--tilt-rotate-y, 0deg))
    scale(var(--tilt-scale, 1));
  transform-style: preserve-3d;
  transform-origin: center;
  transition: transform 320ms var(--motion-spring), box-shadow 320ms var(--motion-soft);
  will-change: transform;
}

.tilted-card-inner::after {
  content: "";
  position: absolute;
  left: 34%;
  bottom: -1px;
  z-index: 1;
  width: 22%;
  height: 8%;
  background: #0e0d0c;
  transform: translateZ(1px);
  pointer-events: none;
}

.tilted-card-figure:hover .tilted-card-inner {
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.48);
}

.tilted-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 527.5%;
  height: auto;
  max-width: none;
  filter: grayscale(1) contrast(1.08);
  transform: translate(-3.33%, -3.24%) translateZ(0);
  will-change: transform;
}

.tilted-card-img.zev-portrait-image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: 50% 54%;
  filter: none;
  transform: translateZ(0);
}

.tilted-card-overlay {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 2;
  padding: 5px 9px;
  border: 1px solid rgba(246, 245, 241, 0.18);
  border-radius: 999px;
  background: rgba(14, 13, 12, 0.44);
  color: rgba(246, 245, 241, 0.84);
  font-family: var(--font-about-en), var(--font-about-cn);
  font-size: 11px;
  line-height: 1;
  opacity: var(--tilt-overlay-opacity, 0);
  transform: translateZ(34px);
  transition: opacity 220ms ease;
}

.tilted-card-caption {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  padding: 5px 10px;
  border-radius: 4px;
  background: rgba(246, 245, 241, 0.94);
  color: #111;
  font-family: var(--font-about-en), var(--font-about-cn);
  font-size: 10px;
  line-height: 1.2;
  opacity: var(--tilt-caption-opacity, 0);
  transform:
    translate3d(var(--tilt-caption-x, 0px), var(--tilt-caption-y, 0px), 44px)
    rotate(var(--tilt-caption-rotate, 0deg));
  transition: opacity 160ms ease, transform 120ms ease-out;
  white-space: nowrap;
}

.about-intro .eyebrow {
  display: none;
  margin-bottom: 18px;
  color: rgba(246, 245, 241, 0.58);
}

.about-intro {
  position: absolute;
  left: 5%;
  top: 45.7%;
  width: 41%;
}

.about-name-row {
  display: flex;
  align-items: flex-end;
  gap: 1.9vw;
  flex-wrap: nowrap;
}

.about-hello {
  margin: 0;
  font-family: var(--font-about-en), var(--font-about-cn);
  font-size: clamp(58px, 6.35vw, 122px);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: 0;
}

.about-name {
  display: grid;
  gap: 0.55vw;
  padding-bottom: 0.55vw;
}

.about-name strong {
  display: block;
  font-size: clamp(30px, 3.28vw, 63px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
}

.about-name span {
  display: block;
  color: rgba(246, 245, 241, 0.8);
  font-family: var(--font-about-en), var(--font-about-cn);
  font-size: clamp(16px, 1.35vw, 26px);
  font-style: italic;
  line-height: 1.1;
}

.about-summary {
  max-width: 100%;
  margin: 0.95vw 0 0;
  color: rgba(246, 245, 241, 0.86);
  font-size: clamp(14px, 0.98vw, 19px);
  line-height: 1.55;
}

.about-contact {
  position: absolute;
  left: 5.35%;
  top: 75.4%;
  width: 36.8%;
  display: block;
  margin-top: 0;
  font-style: normal;
}

.about-contact h3,
.about-detail-group h3 {
  margin: 0 0 1.55vw;
  color: #fff;
  font-family: var(--font-about-en), var(--font-about-cn);
  font-size: clamp(34px, 3.15vw, 61px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
}

.about-contact h3 span,
.about-detail-group h3 span {
  margin-left: 4px;
  color: rgba(246, 245, 241, 0.78);
  font-size: 0.66em;
}

.about-contact dl {
  display: grid;
  gap: 0.35vw;
  margin: 0;
}

.about-contact dl div {
  display: grid;
  grid-template-columns: 12.1vw minmax(0, 1fr);
  gap: 0.7vw;
  align-items: baseline;
}

.about-contact dt,
.about-contact dd {
  margin: 0;
  color: #f8f6f0;
  font-family: var(--font-accent);
  font-size: clamp(20px, 1.55vw, 30px);
  font-weight: 500;
  line-height: 1.22;
}

.about-contact dt span {
  color: rgba(246, 245, 241, 0.72);
  font-family: var(--font-about-cn);
  font-size: 0.72em;
}

.about-contact a {
  text-decoration: none;
}

.about-quote {
  position: absolute;
  left: -91%;
  top: 7.7%;
  width: 86%;
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 2.42vw, 46px);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0;
}

.about-quote span {
  display: block;
}

.about-detail-group {
  position: absolute;
  left: 0;
  width: 100%;
  max-width: 100%;
}

.about-right .about-detail-group:nth-of-type(1) {
  top: 0;
}

.about-right .about-detail-group:nth-of-type(2) {
  top: 11.2vw;
}

.about-right .about-detail-group:nth-of-type(3) {
  top: 31.8vw;
}

.about-detail-group p,
.about-detail-group h4 {
  margin: 0;
  color: rgba(246, 245, 241, 0.86);
  font-size: clamp(14px, 1vw, 20px);
  font-weight: 400;
  line-height: 1.38;
}

.about-detail-group article + article {
  margin-top: 1.3vw;
}

.about-detail-group article p {
  margin-top: 4px;
  line-height: 1.42;
}

.about-date {
  display: block;
  margin-bottom: 0.3vw;
  color: rgba(246, 245, 241, 0.74);
  font-size: clamp(14px, 1.18vw, 23px);
}

.about-software {
  display: grid;
  grid-template-columns: repeat(7, minmax(44px, 3.65vw));
  gap: clamp(26px, 2.2vw, 42px) 1.3vw;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-software li {
  display: flex;
  min-height: 0;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.42vw;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #f9f7f2;
  font-family: var(--font-about-en), var(--font-about-cn);
  font-size: clamp(7px, 0.52vw, 10px);
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
  box-shadow: none;
}

.about-software li:nth-child(1) { grid-column: 1; grid-row: 1; }
.about-software li:nth-child(2) { grid-column: 2; grid-row: 1; }
.about-software li:nth-child(3) { grid-column: 3; grid-row: 1; }
.about-software li:nth-child(4) { grid-column: 4; grid-row: 1; }
.about-software li:nth-child(5) { grid-column: 5; grid-row: 1; }
.about-software li:nth-child(6) { grid-column: 6; grid-row: 1; }
.about-software li:nth-child(7) { grid-column: 1; grid-row: 2; }
.about-software li:nth-child(8) { grid-column: 2; grid-row: 2; }
.about-software li:nth-child(9) { grid-column: 3; grid-row: 2; }
.about-software li:nth-child(10) { grid-column: 4; grid-row: 2; }
.about-software li:nth-child(11) { grid-column: 5; grid-row: 2; }
.about-software li:nth-child(12) { grid-column: 6; grid-row: 2; }
.about-software li:nth-child(13) { grid-column: 7; grid-row: 2; }

.software-icon {
  display: block;
  width: var(--icon-w, 58px);
  height: var(--icon-h, 46px);
  background-color: transparent;
  background-image: url("assets/images/software-icons-transparent.png");
  background-repeat: no-repeat;
  background-size: 1920px 1080px;
  background-position: calc(var(--icon-x) * -1) calc(var(--icon-y) * -1);
  transform: scale(var(--software-icon-scale, clamp(1, 0.0667vw, 1.28)));
  transform-origin: center top;
}

.tool-logo {
  display: block;
  width: 54px;
  height: 46px;
  object-fit: contain;
  transform: scale(var(--software-icon-scale, clamp(1, 0.0667vw, 1.28)));
  transform-origin: center top;
}

.tool-logo--excel {
  filter: invert(43%) sepia(54%) saturate(740%) hue-rotate(99deg) brightness(91%) contrast(92%);
}

.tool-logo--coze {
  width: 46px;
  border-radius: 12px;
}

.codex-app-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #91a2ff 0%, #6676e8 58%, #5362c9 100%);
  box-shadow: 0 5px 18px rgba(103, 120, 235, 0.32);
  transform: scale(var(--software-icon-scale, clamp(1, 0.0667vw, 1.28)));
  transform-origin: center top;
}

.codex-app-icon img {
  display: block;
  width: 31px;
  height: 31px;
  object-fit: contain;
}

.software-icon.ae { --icon-x: 1098px; --icon-y: 854px; }
.software-icon.pr { --icon-x: 1194px; --icon-y: 854px; }
.software-icon.ps { --icon-x: 1289px; --icon-y: 854px; }
.software-icon.lr { --icon-x: 1386px; --icon-y: 854px; }
.software-icon.davinci { --icon-x: 1484px; --icon-y: 854px; }
.software-icon.unreal {
  --icon-x: 1574px;
  --icon-y: 856px;
  --icon-w: 78px;
  --icon-h: 70px;
  --software-icon-scale: clamp(0.96, 0.0583vw, 1.12);
}
.software-icon.lovart { --icon-x: 1102px; --icon-y: 971px; }
.software-icon.jimeng { --icon-x: 1196px; --icon-y: 970px; }
.software-icon.kling { --icon-x: 1294px; --icon-y: 970px; }
.software-icon.gemini { --icon-x: 1390px; --icon-y: 970px; }
.software-icon.chatgpt { --icon-x: 1487px; --icon-y: 970px; }
.software-icon.codex { --icon-x: 1588px; --icon-y: 970px; }
.software-icon.claude { --icon-x: 1685px; --icon-y: 970px; }

.software-icon.unreal + .software-label {
  display: none;
}

.software-label {
  display: block;
  min-height: 14px;
  margin-top: 7px;
}

.about-fade {
  opacity: 0;
  filter: blur(12px);
  transform: translate3d(0, 26px, 0) scale(0.988);
  transition:
    opacity 680ms var(--motion-soft),
    filter 720ms var(--motion-soft),
    transform 860ms var(--motion-spring);
  transition-delay: 0ms;
  will-change: opacity, transform, filter;
}

.about-fade.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: var(--fade-delay, 0ms);
}

.about-fade[data-motion-direction="up"]:not(.is-visible) {
  transform: translate3d(0, -22px, 0) scale(0.988);
}

.about-photo-label.about-fade {
  filter: none;
  transform: translate3d(0, 12px, 0);
}

.about-photo-label.about-fade[data-motion-direction="up"]:not(.is-visible) {
  transform: translate3d(0, -10px, 0);
}

.about-photo-label.about-fade.is-visible {
  filter: none;
  transform: translate3d(0, 0, 0);
}

.selected-section {
  background: var(--ink);
  color: var(--cream);
}

.selected-section .eyebrow {
  color: var(--accent);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.project-card {
  position: relative;
  display: block;
  min-height: 430px;
  overflow: hidden;
  border-radius: 6px;
  background: #0e0d0c;
  color: var(--cream);
  text-decoration: none;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    transform 760ms var(--motion-spring),
    box-shadow 760ms var(--motion-smooth);
  backface-visibility: hidden;
  contain: paint;
}

.project-card.featured {
  grid-column: span 2;
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  transition: transform 900ms var(--motion-spring), filter 620ms var(--motion-smooth);
  will-change: transform;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 24%, rgba(14, 13, 12, 0.86) 100%);
}

.project-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.02) contrast(1.08);
}

.project-card:hover,
.project-card:focus-visible {
  transform: translate3d(0, -5px, 0) scale(1.006);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.32);
}

.project-copy {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.project-copy span {
  color: var(--lime);
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.project-copy h3 {
  margin: 8px 0;
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 0.98;
  font-weight: 400;
}

.project-copy p {
  margin: 0;
  color: rgba(242, 238, 230, 0.75);
  font-size: 14px;
  line-height: 1.7;
}

.featured-project-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 3.4vw, 56px) clamp(24px, 2.8vw, 42px);
}

.featured-project-grid .project-card,
.featured-project-grid .project-card.featured {
  grid-column: auto;
  min-height: auto;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  contain: layout paint;
}

.featured-project-grid .project-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #0e0d0c;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.featured-project-grid .project-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border-radius: 0;
  object-fit: cover;
  filter: brightness(0.82) saturate(0.86);
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    transform 1800ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.featured-project-grid .project-card::after {
  display: none;
}

.featured-project-grid .project-card:hover,
.featured-project-grid .project-card:focus-visible {
  transform: none;
  box-shadow: none;
}

.featured-project-grid .project-card:hover img,
.featured-project-grid .project-card:focus-visible img {
  transform: translate3d(0, 0, 0) scale(1.035);
  filter: brightness(0.98) saturate(1);
}

.featured-project-grid .project-copy {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 18px;
  align-items: start;
  padding: 16px 2px 0;
}

.featured-project-grid .project-view-button {
  grid-column: 2;
  grid-row: 1 / span 2;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: auto;
  height: auto;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(245, 240, 232, 0.88);
  transform: translate3d(0, 0, 0);
  box-shadow: none;
  transition:
    color 420ms var(--motion-smooth),
    transform 520ms var(--motion-spring);
}

.featured-project-grid .project-view-button__content {
  position: relative;
  display: inline-flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: auto;
  height: auto;
  padding: 0;
  color: inherit;
  white-space: nowrap;
}

.featured-project-grid .project-view-button__label,
.featured-project-grid .project-view-button__arrow {
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.featured-project-grid .project-view-button__arrow {
  font-size: 15px;
  transform: translate3d(0, -2px, 0);
  transition: transform 520ms var(--motion-spring);
}

.featured-project-grid .project-card:hover .project-view-button,
.featured-project-grid .project-card:focus-visible .project-view-button {
  color: #fff;
  transform: translate3d(3px, -1px, 0);
}

.featured-project-grid .project-card:hover .project-view-button__arrow,
.featured-project-grid .project-card:focus-visible .project-view-button__arrow {
  transform: translate3d(2px, -4px, 0);
}

.featured-project-grid .project-copy h3 {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(18px, 1.45vw, 25px);
  font-weight: 700;
  line-height: 1.15;
  text-transform: none;
}

.featured-project-grid .project-copy > .project-meta {
  grid-column: 1;
  grid-row: 2;
  color: rgba(245, 240, 232, 0.72);
  font-size: 14px;
  line-height: 1.35;
  text-transform: none;
}

.featured-project-grid .project-copy p {
  display: none;
}

.selected-all-projects {
  display: flex;
  justify-content: center;
  margin-top: clamp(44px, 6vw, 86px);
}

.project-cta--all-projects {
  --cta-shift: 42px;
  width: 248px;
  margin-bottom: 0;
}

.project-cta--all-projects .project-cta__label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

html.is-all-projects-transitioning {
  overflow: hidden;
}

html.is-all-projects-transitioning nav,
html.is-all-projects-transitioning main {
  filter: blur(5px) saturate(0.92);
  opacity: 0.46;
  transform: scale(0.988);
  transition:
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 520ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.all-projects-transition {
  position: fixed;
  inset: 0;
  z-index: 2147482000;
  overflow: hidden;
  pointer-events: none;
  background: transparent;
  isolation: isolate;
}

.all-projects-transition__layer {
  position: absolute;
  inset: -8vh -26vw;
  transform: translate3d(118%, 0, 0) skewX(-7deg);
  transform-origin: left center;
  will-change: transform, filter;
  animation: allProjectsLayerMask 1900ms cubic-bezier(0.19, 1, 0.22, 1) both;
}

.all-projects-transition__layer--ink {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(14, 13, 12, 0) 0%, #0e0d0c 9%, #0e0d0c 100%);
  box-shadow: -18vw 0 70px rgba(0, 0, 0, 0.32);
}

.all-projects-transition__layer--accent {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(211, 161, 91, 0) 0%, rgba(211, 161, 91, 0.94) 10%, #d3a15b 100%);
  filter: blur(0.4px);
  animation-delay: 220ms;
}

.all-projects-transition__layer--paper {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.98) 8%, #fff 100%),
    linear-gradient(135deg, rgba(211, 161, 91, 0.08), transparent 38%, rgba(0, 0, 0, 0.025));
  box-shadow: -14vw 0 90px rgba(255, 255, 255, 0.18);
  animation-delay: 430ms;
}

.all-projects-transition__marquee {
  position: absolute;
  left: -8vw;
  right: -8vw;
  top: 50%;
  z-index: 4;
  display: flex;
  gap: 0.45em;
  align-items: center;
  color: rgba(14, 13, 12, 0.88);
  font-family: var(--font-heading);
  font-size: clamp(58px, 11vw, 168px);
  line-height: 0.82;
  white-space: nowrap;
  opacity: 0;
  filter: blur(12px);
  transform: translate3d(7vw, -50%, 0);
  will-change: transform, opacity, filter;
  animation: allProjectsMarqueeReveal 950ms cubic-bezier(0.22, 1, 0.36, 1) 850ms both;
}

.all-projects-transition__marquee span {
  flex: 0 0 auto;
  animation: allProjectsMarqueeTravel 1600ms cubic-bezier(0.32, 0, 0.2, 1) 760ms both;
}

.is-page-paper-arriving main,
.all-projects-page.is-arriving-all-projects .all-projects-section {
  animation: allProjectsPageArrive 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.all-projects-page {
  color: #111;
  background: #fff;
}

.all-projects-page::before {
  background: #fff;
}

.all-projects-section {
  min-height: 100vh;
  padding-top: 48px;
  padding-bottom: clamp(54px, 7vw, 104px);
  color: #111;
  background: #fff;
}

.all-projects-back {
  display: flex;
  justify-content: flex-start;
  margin: clamp(48px, 7vw, 96px) 0 0;
}

.project-cta--page-back {
  --cta-ink: #000;
  --cta-muted: rgba(0, 0, 0, 0.58);
  --cta-hairline: rgba(0, 0, 0, 0.18);
  --cta-line: rgba(0, 0, 0, 0.9);
  --cta-focus: rgba(0, 0, 0, 0.72);
  width: 248px;
  margin-bottom: 0;
}

.all-projects-page .selected-section .eyebrow,
.all-projects-page .all-projects-heading .eyebrow {
  color: #111;
}

.all-projects-heading {
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 72px);
}

.all-projects-heading > p:last-child {
  margin: 0;
  max-width: 520px;
  color: rgba(17, 17, 17, 0.62);
  font-size: 15px;
  line-height: 1.7;
}

.all-project-grid {
  margin-top: 34px;
}

.all-project-grid .project-card.featured {
  grid-column: span 2;
}

.category-section {
  min-height: 100vh;
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.category-jump-strip {
  margin: -20px 0 76px;
}

.category-jump-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(242, 238, 230, 0.12);
  background: transparent;
}

.category-jump-card {
  position: relative;
  display: block;
  isolation: isolate;
  min-height: 210px;
  padding: 40px 34px;
  overflow: hidden;
  border-right: 1px solid rgba(242, 238, 230, 0.12);
  background: #0e0d0c;
  color: var(--cream);
  text-decoration: none;
  transform: translateY(0);
  transition: transform 760ms var(--motion-spring), border-color 700ms var(--motion-smooth);
  backface-visibility: hidden;
  contain: paint;
}

.category-jump-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(140deg, rgba(14, 13, 12, 0.86) 0%, rgba(14, 13, 12, 0.54) 48%, rgba(14, 13, 12, 0.8) 100%),
    radial-gradient(circle at 18% 16%, rgba(232, 213, 160, 0.22), transparent 34%);
  opacity: 0.96;
  transition: opacity 700ms var(--motion-smooth);
}

.category-jump-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 3;
  background: #E8D5A0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 520ms var(--motion-soft);
}

.category-jump-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0) brightness(0.42) contrast(0.96);
  transform: scale(1.04);
  transition: filter 700ms var(--motion-smooth), transform 920ms var(--motion-spring);
  will-change: transform;
}

.category-jump-card:last-child {
  border-right: 0;
}

.category-jump-card:hover,
.category-jump-card:focus-visible {
  border-color: rgba(232, 213, 160, 0.42);
  transform: translate3d(0, -5px, 0) scale(1.004);
}

.category-jump-card:hover::after,
.category-jump-card:focus-visible::after {
  opacity: 0.7;
}

.category-jump-card:hover::before,
.category-jump-card:focus-visible::before {
  transform: scaleX(1);
}

.category-jump-card:hover .category-jump-bg,
.category-jump-card:focus-visible .category-jump-bg {
  filter: saturate(1) brightness(0.78) contrast(1.04);
  transform: scale(1.1);
}

.jump-number {
  position: absolute;
  top: 22px;
  right: 26px;
  z-index: 2;
  color: rgba(242, 238, 230, 0.14);
  font-family: var(--font-heading);
  font-size: 76px;
  line-height: 0.9;
  transition: color 700ms var(--motion-smooth), transform 700ms var(--motion-spring);
}

.category-jump-card:hover .jump-number,
.category-jump-card:focus-visible .jump-number {
  color: rgba(232, 213, 160, 0.3);
  transform: translate3d(0, -3px, 0);
}

.category-jump-card h3 {
  position: relative;
  z-index: 2;
  max-width: 260px;
  margin: 0 0 18px;
  color: var(--cream);
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 0.96;
  font-weight: 400;
}

.category-jump-card p {
  position: relative;
  z-index: 2;
  max-width: 340px;
  margin: 0;
  color: rgba(242, 238, 230, 0.6);
  font-size: 14px;
  line-height: 1.7;
}

.category-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 38px;
}

.category-header h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 0.92;
  font-weight: 400;
  white-space: nowrap;
}

.category-header p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.category-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 540px;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #0e0d0c;
}

.category-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-copy {
  padding: 34px;
  align-self: end;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.tag-cloud span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  color: rgba(242, 238, 230, 0.82);
  font-size: 13px;
}

.category-copy p {
  margin: 0;
  color: rgba(242, 238, 230, 0.72);
  font-size: 17px;
  line-height: 1.7;
}

.motion-section {
  background: #0e0d0c;
}

.motion-showcase {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(24px, 3vw, 46px);
  align-items: stretch;
}

.motion-list {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0e0d0c;
}

.motion-card {
  position: relative;
  min-height: clamp(120px, 12vw, 160px);
  padding: clamp(18px, 2.4vw, 30px);
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(245, 240, 232, 0.11);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #0e0d0c;
  color: inherit;
  text-decoration: none;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    border-color 520ms var(--motion-soft),
    box-shadow 620ms var(--motion-soft),
    transform 760ms var(--motion-spring);
  backface-visibility: hidden;
  contain: paint;
}

.motion-card:last-child {
  border-bottom: 0;
}

.motion-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(14, 13, 12, 0.24) 0%, rgba(14, 13, 12, 0.62) 48%, rgba(14, 13, 12, 0.95) 100%),
    linear-gradient(90deg, rgba(14, 13, 12, 0.78), rgba(14, 13, 12, 0.14));
  transition: opacity 620ms var(--motion-smooth);
}

.motion-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(320px circle at var(--motion-pointer-x) var(--motion-pointer-y), rgba(232, 213, 160, 0.34), rgba(217, 79, 46, 0.16) 34%, transparent 68%),
    linear-gradient(135deg, rgba(232, 213, 160, 0.16), transparent 28%, rgba(245, 240, 232, 0.1) 76%, transparent);
  box-shadow:
    inset 0 0 0 1px rgba(232, 213, 160, 0.72),
    inset 0 0 42px rgba(232, 213, 160, 0.1);
  transition:
    opacity 360ms var(--motion-smooth),
    box-shadow 520ms var(--motion-smooth);
  display: none;
}

.motion-card-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.46) brightness(0.48) contrast(1.06);
  transform: scale(1.02);
  transition:
    filter 720ms var(--motion-smooth),
    transform 1200ms var(--motion-spring);
  backface-visibility: hidden;
  will-change: transform;
}

.motion-card:hover,
.motion-card:focus-visible,
.motion-card.is-active {
  border-color: rgba(245, 240, 232, 0.2);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
  transform: translate3d(0, -6px, 0) scale(1.01);
}

.motion-card:hover::before,
.motion-card:focus-visible::before,
.motion-card.is-active::before {
  opacity: 0.92;
}

.motion-card:hover::after,
.motion-card:focus-visible::after,
.motion-card.is-active::after {
  opacity: 0;
}

.motion-card:hover .motion-card-bg,
.motion-card:focus-visible .motion-card-bg,
.motion-card.is-active .motion-card-bg {
  filter: saturate(0.82) brightness(0.66) contrast(1.1);
  transform: scale(1.06);
}

.motion-card:hover .motion-index,
.motion-card:focus-visible .motion-index,
.motion-card.is-active .motion-index {
  color: var(--red);
  transform: translateY(-4px);
}

.motion-card:hover h3,
.motion-card:focus-visible h3,
.motion-card.is-active h3 {
  color: var(--cream);
  transform: translateY(-3px);
}

.motion-card:hover p,
.motion-card:focus-visible p,
.motion-card.is-active p {
  color: rgba(245, 240, 232, 0.82);
}

.motion-card .motion-index,
.motion-card h3,
.motion-card p {
  position: relative;
  z-index: 2;
  transition:
    color 420ms var(--motion-smooth),
    transform 560ms var(--motion-spring);
}

.motion-card .motion-index {
  color: var(--red);
  font-family: var(--font-accent);
  font-size: clamp(30px, 3.6vw, 46px);
  font-style: italic;
  line-height: 0.82;
}

.motion-card h3 {
  margin: clamp(14px, 2vw, 22px) 0 8px;
  max-width: 560px;
  font-family: var(--font-heading);
  font-size: clamp(26px, 3.5vw, 42px);
  line-height: 0.98;
  font-weight: 400;
}

.motion-card p {
  max-width: 520px;
  margin: 0;
  color: rgba(245, 240, 232, 0.56);
  font-size: clamp(13px, 1.05vw, 16px);
  line-height: 1.55;
}

.motion-preview {
  position: sticky;
  top: 96px;
  align-self: start;
  min-height: min(620px, calc(100vh - 150px));
  overflow: hidden;
  border: 1px solid rgba(245, 240, 232, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 240, 232, 0.045), rgba(245, 240, 232, 0.015)),
    #0e0d0c;
}

.motion-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(14, 13, 12, 0) 38%, rgba(14, 13, 12, 0.74) 74%, #0e0d0c 100%),
    radial-gradient(520px circle at 18% 16%, rgba(232, 213, 160, 0.12), transparent 58%);
}

.motion-preview-media {
  position: absolute;
  inset: 0;
}

.motion-preview-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.74) brightness(0.58) contrast(1.08);
  transform: scale(1.03);
  transition:
    opacity 360ms var(--motion-smooth),
    filter 520ms var(--motion-smooth),
    transform 760ms var(--motion-spring);
}

.motion-preview.is-switching .motion-preview-media img {
  opacity: 0.2;
  filter: blur(12px) saturate(0.62) brightness(0.5);
  transform: scale(1.075) translate3d(0, 8px, 0);
}

.motion-preview-copy {
  position: absolute;
  z-index: 2;
  left: clamp(28px, 4vw, 58px);
  right: clamp(28px, 4vw, 58px);
  bottom: clamp(30px, 5vw, 64px);
  transition:
    opacity 360ms var(--motion-smooth),
    filter 440ms var(--motion-smooth),
    transform 560ms var(--motion-spring);
}

.motion-preview.is-switching .motion-preview-copy {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 18px, 0);
}

.motion-preview-copy > span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.motion-preview-copy h3 {
  max-width: 680px;
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(42px, 5.6vw, 86px);
  line-height: 0.93;
  font-weight: 400;
}

.motion-preview-copy p {
  max-width: 620px;
  margin: 0;
  color: rgba(245, 240, 232, 0.72);
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.75;
}

.motion-preview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.motion-preview-tags span {
  border: 1px solid rgba(245, 240, 232, 0.18);
  border-radius: 999px;
  padding: 7px 11px;
  color: rgba(245, 240, 232, 0.78);
  font-size: 12px;
}

.photo-section {
  background: #0e0d0c;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.photo-strip a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.photo-strip figure {
  margin: 0;
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--line);
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 760ms var(--motion-spring), border-color 650ms var(--motion-smooth);
  backface-visibility: hidden;
  contain: paint;
}

.photo-strip figure::after {
  content: "View Page";
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 7px 11px;
  border: 1px solid rgba(242, 238, 230, 0.18);
  border-radius: 999px;
  background: rgba(14, 13, 12, 0.64);
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 450ms var(--motion-smooth), transform 520ms var(--motion-spring);
}

.photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
  transform: scale(1.01);
  transition: filter 650ms var(--motion-smooth), transform 900ms var(--motion-spring);
  will-change: transform;
}

.photo-strip a:hover figure,
.photo-strip a:focus-visible figure {
  border-color: rgba(232, 213, 160, 0.46);
  transform: translate3d(0, -6px, 0) scale(1.006);
}

.photo-strip a:hover figure::after,
.photo-strip a:focus-visible figure::after {
  opacity: 1;
  transform: translateY(0);
}

.photo-strip a:hover img,
.photo-strip a:focus-visible img {
  filter: saturate(1.1);
  transform: scale(1.06);
}

.photo-strip figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(14, 13, 12, 0.72);
  border: 1px solid var(--line);
  color: var(--cream);
  font-size: 13px;
  z-index: 1;
}

.contact-footer {
  min-height: 86vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.8fr;
  gap: 40px;
  align-items: center;
  background: #0e0d0c;
  border-top: 1px solid var(--line);
}

.signature-wrap .zev-signature {
  display: inline-block;
  color: var(--cream);
  font-family: "EternaloLocal", "Playfair Display", cursive;
  font-size: clamp(150px, 25vw, 470px);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.1em;
  line-height: 0.75;
  opacity: 0.95;
  transform: rotate(-6deg);
  transform-origin: center;
  text-shadow: 0 0 54px rgba(var(--shine-r), var(--shine-g), var(--shine-b), 0.14);
}

.contact-card h2 {
  font-size: 56px;
}

address {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  font-style: normal;
}

address a {
  color: var(--cream);
  font-size: 18px;
  text-decoration: underline;
  text-decoration-color: rgba(242, 238, 230, 0.32);
  text-underline-offset: 5px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 7px;
}

.footer-links span {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 6px;
}

.footer-links a {
  color: rgba(242, 238, 230, 0.9);
  font-size: 18px;
  line-height: 1.35;
}

.footer-links .footer-placeholder {
  margin: 0;
  color: rgba(242, 238, 230, 0.52);
  font-size: 18px;
  line-height: 1.35;
  cursor: default;
}

.footer-links .footer-social-handle {
  margin: 0;
  color: rgba(242, 238, 230, 0.9);
  font-size: 18px;
  line-height: 1.35;
  cursor: text;
  user-select: text;
}

.footer-links a:hover {
  color: var(--lime);
}

.reveal {
  opacity: 0;
  filter: blur(12px) saturate(0.92);
  transform: translate3d(0, clamp(18px, 3vh, 34px), 0) scale(0.982);
  transition:
    opacity 720ms var(--motion-soft),
    filter 760ms var(--motion-soft),
    transform 920ms var(--motion-spring);
  transition-delay: 0ms;
  will-change: opacity, filter, transform;
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0) saturate(1);
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal[data-motion-direction="up"]:not(.is-visible) {
  transform: translate3d(0, calc(clamp(18px, 3vh, 34px) * -0.72), 0) scale(0.982);
}

.motion-card.reveal.is-visible:hover,
.motion-card.reveal.is-visible:focus-visible {
  transform: translate3d(0, -6px, 0) scale(1.01);
}

.project-card.reveal:nth-child(2),
.motion-card.reveal:nth-child(2),
.photo-strip a:nth-child(2) figure.reveal {
  --reveal-delay: 55ms;
}

.project-card.reveal:nth-child(3),
.motion-card.reveal:nth-child(3),
.photo-strip a:nth-child(3) figure.reveal {
  --reveal-delay: 110ms;
}

.project-card.reveal:nth-child(4),
.motion-card.reveal:nth-child(4),
.photo-strip a:nth-child(4) figure.reveal {
  --reveal-delay: 165ms;
}

@keyframes floatTile {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.13);
  }
}

@keyframes homeMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes revealValueCard {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: translate3d(0, 24px, 0) scale(0.988);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroTextRise {
  0% {
    opacity: 0;
    filter: blur(18px);
    transform: translate3d(0, 34px, 0) scale(0.985);
  }
  58% {
    opacity: 1;
    filter: blur(0);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes clickSparkBurst {
  0% {
    opacity: 1;
    transform: rotate(var(--spark-angle)) translateX(0) scaleX(0.2);
  }
  68% {
    opacity: 0.92;
  }
  100% {
    opacity: 0;
    transform: rotate(var(--spark-angle)) translateX(var(--spark-radius)) scaleX(var(--spark-extra-scale));
  }
}

@keyframes allProjectsLayerMask {
  0% {
    transform: translate3d(118%, 0, 0) skewX(-7deg);
  }
  64% {
    transform: translate3d(-1.8%, 0, 0) skewX(-7deg);
  }
  100% {
    transform: translate3d(0, 0, 0) skewX(0deg);
  }
}

@keyframes allProjectsMarqueeReveal {
  0% {
    opacity: 0;
    filter: blur(14px);
    transform: translate3d(7vw, -50%, 0) scale(0.985);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, -50%, 0) scale(1);
  }
}

@keyframes allProjectsMarqueeTravel {
  0% {
    transform: translate3d(10vw, 0, 0);
  }
  100% {
    transform: translate3d(-22vw, 0, 0);
  }
}

@keyframes allProjectsPageArrive {
  0% {
    opacity: 0;
    filter: blur(12px);
    transform: translate3d(0, 24px, 0) scale(0.992);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 1180px) {
  .hero h1 {
    font-size: 92px;
  }

  .hero h1 span {
    font-size: 108px;
  }

  .hero-collage {
    padding-left: 34%;
  }

  .section-heading,
  .about-grid,
  .about-resume,
  .category-jump-grid,
  .category-header,
  .category-layout,
  .motion-showcase,
  .contact-footer {
    grid-template-columns: 1fr;
  }

  .about-resume {
    display: grid;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    gap: 54px;
    --about-right-shift: 0px;
  }

  .about-left,
  .about-right {
    position: static;
    width: auto;
    height: auto;
    transform: none;
  }

  .about-portrait {
    position: relative;
    left: auto;
    top: auto;
    width: min(420px, 72vw);
    margin: 0 0 28px;
  }

  .about-photo-label {
    position: static;
    margin: 0 0 10px;
    font-size: 34px;
  }

  .about-portrait.tilted-card-figure {
    position: relative;
  }

  .about-intro,
  .about-contact,
  .about-quote,
  .about-detail-group {
    position: static;
    left: auto;
    top: auto;
    width: auto;
  }

  .about-detail-group + .about-detail-group {
    margin-top: 54px;
  }

  .about-intro .eyebrow {
    display: block;
  }

  .about-contact {
    margin-top: 48px;
  }

  .about-quote {
    margin-top: 0;
  }

  .about-contact dl div {
    grid-template-columns: minmax(160px, 0.34fr) minmax(0, 1fr);
    gap: 16px;
  }

  .about-software {
    grid-template-columns: repeat(4, minmax(72px, 1fr));
    gap: 18px 14px;
  }

  .about-software li {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  .tool-row {
    grid-template-columns: repeat(7, minmax(62px, 1fr));
  }

  .project-grid,
  .photo-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .motion-preview {
    position: relative;
    top: auto;
    min-height: 560px;
  }
}

@media (max-width: 900px) {
  nav {
    padding: 20px 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 1120px;
    padding: 120px 18px 32px;
    align-items: start;
    overflow: hidden;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(14, 13, 12, 0.72) 0%, rgba(14, 13, 12, 0.38) 42%, rgba(14, 13, 12, 0.94) 100%);
  }

  .hero-collage {
    inset: 455px 14px auto;
    padding: 0;
    gap: 0;
  }

  .hero-tile:nth-child(1) {
    order: 1;
    flex-basis: 70.3297%;
  }

  .hero-tile:nth-child(2) {
    order: 3;
    flex-basis: 68.0851%;
  }

  .hero-tile:nth-child(3) {
    order: 2;
    flex-basis: 29.6703%;
  }

  .hero-tile:nth-child(4) {
    order: 5;
    flex-basis: 50.052%;
  }

  .hero-tile:nth-child(5) {
    order: 4;
    flex-basis: 31.9149%;
    border-radius: 0;
  }

  .hero-tile:nth-child(6) {
    order: 6;
    flex-basis: 49.948%;
    border-radius: 0 0 6px 0;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero h1 span {
    font-size: 74px;
  }

  .hero-line {
    max-width: 330px;
    font-size: 24px;
  }

  .hero-copy {
    max-width: calc(100vw - 36px);
    transform: translateY(0);
  }

  .kicker {
    max-width: 330px;
    font-size: 13px;
    line-height: 1.5;
  }

  .hero-meta {
    left: 18px;
    right: 18px;
    grid-template-columns: 1fr;
  }

  .hero-bg::before {
    width: 78vw;
    height: 78vw;
    bottom: -32vw;
  }

  .hero-bg::after {
    width: 86vw;
    height: 86vw;
    right: -42vw;
    bottom: -36vw;
  }

  .home-marquee-track {
    gap: 14px;
  }

  .home-marquee span {
    gap: 14px;
    font-size: 16vw;
  }

  .section,
  .category-section,
  .contact-footer {
    padding: 78px 18px;
  }

  .section-heading h2,
  .contact-card h2 {
    font-size: 32px;
  }

  .category-header h2 {
    font-size: 32px;
    white-space: normal;
  }

  .statement-panel {
    min-height: auto;
    padding: 24px;
  }

  .statement-panel p {
    font-size: 17px;
  }

  .about-section {
    padding-top: 88px;
  }

  .about-name-row {
    align-items: flex-start;
    gap: 14px;
  }

  .about-summary {
    margin-top: 22px;
  }

  .about-contact {
    margin-top: 48px;
  }

  .about-contact dl {
    gap: 14px;
  }

  .about-contact dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .about-contact dt,
  .about-contact dd {
    font-size: 24px;
    overflow-wrap: anywhere;
  }

  .about-quote {
    font-size: clamp(34px, 11vw, 54px);
  }

  .tilted-card-caption,
  .tilted-card-overlay {
    display: none;
  }

  .about-detail-group p,
  .about-detail-group h4 {
    font-size: 17px;
  }

  .about-software {
    grid-template-columns: repeat(3, minmax(72px, 1fr));
    gap: 10px;
  }

  .about-software li {
    min-height: 0;
  }

  .tool-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .project-grid,
  .photo-strip {
    grid-template-columns: 1fr;
  }

  .project-card,
  .project-card.featured {
    grid-column: span 1;
  }

  .project-card,
  .project-card img {
    min-height: 390px;
  }

  .category-layout {
    min-height: auto;
  }

  .category-jump-strip {
    margin: 0 0 54px;
  }

  .category-jump-card {
    min-height: 180px;
    padding: 28px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(242, 238, 230, 0.12);
  }

  .category-jump-card:last-child {
    border-bottom: 0;
  }

  .category-jump-card h3 {
    font-size: 30px;
  }

  .category-hero-img {
    height: 420px;
  }

  .motion-card,
  .photo-strip figure {
    min-height: 360px;
  }

  .motion-showcase {
    gap: 18px;
  }

  .motion-card {
    min-height: 190px;
    padding: 28px 22px;
  }

  .motion-preview {
    min-height: 520px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .click-spark {
    display: none;
  }

  .tilted-card-inner {
    transform: none !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .motion-card:hover,
  .motion-card:focus-visible {
    transform: none;
  }

  .motion-card::after {
    display: none;
  }

  .hero-tile::after {
    display: none;
  }
}

.project-cta {
  --cta-ink: rgba(245, 240, 232, 0.9);
  --cta-muted: color-mix(in srgb, var(--project-accent, var(--page-accent, #e8d5a0)) 70%, rgba(245, 240, 232, 0.68));
  --cta-hairline: rgba(245, 240, 232, 0.24);
  --cta-line: rgba(245, 240, 232, 0.88);
  --cta-focus: color-mix(in srgb, var(--project-accent, var(--page-accent, #e8d5a0)) 72%, white);
  --cta-shift: 56px;
  --cta-line-y: 53px;
  --cta-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --cta-ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);

  position: relative;
  isolation: isolate;
  display: inline-block;
  width: min(286px, 100%);
  min-height: 64px;
  margin-bottom: 34px;
  padding: 17px 0 22px;
  color: var(--cta-ink);
  text-decoration: none;
  outline: none;
  cursor: pointer;
  touch-action: manipulation;
}

.project-cta::before,
.project-cta::after,
.project-cta__rail {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: var(--cta-line-y);
  height: 1px;
  pointer-events: none;
}

.project-cta__rail {
  background: var(--cta-hairline);
}

.project-cta::before,
.project-cta::after {
  z-index: 1;
  height: 2px;
  background: var(--cta-line);
  will-change: transform;
}

.project-cta::before {
  transform: scaleX(1);
  transform-origin: right center;
  transition: transform 560ms var(--cta-ease-in-out) 120ms;
}

.project-cta::after {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 620ms var(--cta-ease-out) 0ms;
}

.project-cta__label,
.project-cta__arrow {
  position: absolute;
  top: 18px;
  line-height: 1;
  will-change: transform, opacity;
}

.project-cta__label {
  left: 0;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translate3d(0, 0, 0);
  transition: transform 620ms var(--cta-ease-out) 130ms;
}

.project-cta__meta {
  display: inline-block;
  min-width: 18px;
  margin-right: 16px;
  color: var(--cta-muted);
}

.project-cta__arrow {
  width: 36px;
  height: 16px;
  color: currentColor;
  transform: translate3d(0, -1px, 0);
  transition:
    transform 320ms var(--cta-ease-out),
    opacity 220ms var(--cta-ease-in-out);
}

.project-cta__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.project-cta__arrow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.project-cta__arrow--right {
  right: 0;
  opacity: 1;
}

.project-cta__arrow--left {
  left: 0;
  opacity: 0;
  transform: translate3d(-18px, -1px, 0);
  transition-delay: 0ms;
}

.project-cta:hover .project-cta__label,
.project-cta:focus-visible .project-cta__label,
.project-cta.is-hovered .project-cta__label {
  transform: translate3d(var(--cta-shift), 0, 0);
  transition-delay: 180ms;
}

.project-cta:hover .project-cta__arrow--right,
.project-cta:focus-visible .project-cta__arrow--right,
.project-cta.is-hovered .project-cta__arrow--right {
  opacity: 0;
  transform: translate3d(18px, -1px, 0);
}

.project-cta:hover .project-cta__arrow--left,
.project-cta:focus-visible .project-cta__arrow--left,
.project-cta.is-hovered .project-cta__arrow--left {
  opacity: 1;
  transform: translate3d(0, -1px, 0);
  transition-delay: 370ms;
}

.project-cta:hover::before,
.project-cta:focus-visible::before,
.project-cta.is-hovered::before {
  transform: scaleX(0);
  transition-delay: 0ms;
}

.project-cta:hover::after,
.project-cta:focus-visible::after,
.project-cta.is-hovered::after {
  transform: scaleX(1);
  transition-delay: 330ms;
}

.project-cta:focus-visible {
  outline: 2px solid var(--cta-focus);
  outline-offset: 14px;
}

.all-projects-page .project-cta--page-back {
  --cta-ink: #000;
  --cta-muted: rgba(0, 0, 0, 0.58);
  --cta-hairline: rgba(0, 0, 0, 0.18);
  --cta-line: rgba(0, 0, 0, 0.92);
  --cta-focus: rgba(0, 0, 0, 0.72);
  color: #000;
  background: transparent;
}

.all-projects-page .project-cta--page-back .project-cta__label,
.all-projects-page .project-cta--page-back .project-cta__arrow {
  color: #000;
}

.all-projects-page .project-cta--page-back::before,
.all-projects-page .project-cta--page-back::after {
  background: #000;
}

.all-projects-page .project-cta--page-back .project-cta__rail {
  background: rgba(0, 0, 0, 0.18);
}

@media (max-width: 720px) {
  .project-cta {
    --cta-shift: 46px;
    width: 248px;
    max-width: 100%;
  }

  .project-cta__label {
    font-size: 13px;
  }

  .project-cta__meta {
    margin-right: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .project-cta,
  .project-cta *,
  .project-cta::before,
  .project-cta::after {
    transition-duration: 1ms !important;
    transition-delay: 0ms !important;
  }
}
.nav-logo::after {
  content: "Zev";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 2;
  color: transparent;
  font-family: "EternaloLocal", "Playfair Display", cursive;
  font-size: clamp(36px, 3vw, 52px);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.82;
  transform: translateY(-50%) rotate(-6deg);
  transform-origin: center;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 18%,
     rgba(var(--shine-r), var(--shine-g), var(--shine-b), 0.2) 36%,
     rgba(var(--shine-r), var(--shine-g), var(--shine-b), 0.85) 46%,
     rgba(var(--shine-r), var(--shine-g), var(--shine-b), 1) 50%,
     rgba(var(--shine-r), var(--shine-g), var(--shine-b), 0.85) 54%,
     rgba(var(--shine-r), var(--shine-g), var(--shine-b), 0.2) 64%,
    transparent 82%,
    transparent 100%
  );
  background-size: 220% 100%;
  background-position: 120% center;
  -webkit-background-clip: text;
  background-clip: text;
  pointer-events: none;
  animation: logoShine 3.5s ease-in-out infinite;
}
@keyframes logoShine {
  0% {
    background-position: 120% center;
    opacity: 0;
  }
  4% {
    background-position: 120% center;
    opacity: 1;
  }
  46% {
    background-position: -120% center;
    opacity: 1;
  }
  50% {
    background-position: -120% center;
    opacity: 0;
  }
  54% {
    background-position: 120% center;
    opacity: 1;
  }
  96% {
    background-position: -120% center;
    opacity: 1;
  }
  100% {
    background-position: -120% center;
    opacity: 0;
  }
}
@keyframes logoGlow {
  0% {
    filter: brightness(0) invert(1) drop-shadow(0 0 2px rgba(var(--shine-r), var(--shine-g), var(--shine-b), 0.1));
  }
  27% {
    filter: brightness(0) invert(1) drop-shadow(0 0 2px rgba(var(--shine-r), var(--shine-g), var(--shine-b), 0.1));
  }
  32% {
    filter: brightness(0) invert(1) drop-shadow(0 0 34px rgba(var(--shine-r), var(--shine-g), var(--shine-b), 0.8));
  }
  50% {
    filter: brightness(0) invert(1) drop-shadow(0 0 34px rgba(var(--shine-r), var(--shine-g), var(--shine-b), 0.8));
  }
  55% {
    filter: brightness(0) invert(1) drop-shadow(0 0 2px rgba(var(--shine-r), var(--shine-g), var(--shine-b), 0.1));
  }
  100% {
    filter: brightness(0) invert(1) drop-shadow(0 0 2px rgba(var(--shine-r), var(--shine-g), var(--shine-b), 0.1));
  }
}

@keyframes zevLogoGlow {
  0%,
  27%,
  55%,
  100% {
    text-shadow: 0 0 3px rgba(var(--shine-r), var(--shine-g), var(--shine-b), 0.14);
  }
  32%,
  50% {
    text-shadow:
      0 0 8px rgba(var(--shine-r), var(--shine-g), var(--shine-b), 0.72),
      0 0 34px rgba(var(--shine-r), var(--shine-g), var(--shine-b), 0.56);
  }
}

@media (hover: hover) and (pointer: fine) {
  html.water-cursor-enabled,
  html.water-cursor-enabled * {
    cursor: none !important;
  }

  .water-rgb-cursor {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 180ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .water-rgb-cursor.is-visible {
    opacity: 1;
  }

  .water-cursor-rgb,
  .water-cursor-core {
    position: fixed;
    left: 0;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    pointer-events: none;
    transform: translate3d(-50%, -50%, 0) scale(var(--water-cursor-scale, 1));
    will-change: transform, opacity, filter;
  }

  .water-cursor-rgb {
    z-index: 1;
    opacity: var(--water-rgb-opacity, 0.1);
    filter: blur(var(--water-rgb-blur, 2px));
    mix-blend-mode: screen;
    transition: opacity 240ms var(--motion-smooth);
  }

  .water-cursor-rgb--red {
    background: #ff0000;
  }

  .water-cursor-rgb--green {
    background: #00ff00;
  }

  .water-cursor-rgb--blue {
    background: #0000ff;
  }

  .water-cursor-core {
    z-index: 2;
    overflow: hidden;
    opacity: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    box-shadow:
      0 8px 32px rgba(0, 0, 0, 0.3),
      inset 0 0 8px rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    transition:
      opacity 240ms var(--motion-smooth),
      border-color 240ms var(--motion-smooth),
      background-color 240ms var(--motion-smooth);
  }

  .water-cursor-core::before,
  .water-cursor-core::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
  }

  .water-cursor-core::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent 48%, rgba(255, 255, 255, 0.05));
    opacity: 0.3;
  }

  .water-cursor-core::after {
    border: 1px solid rgba(217, 176, 109, 0.2);
    opacity: 0.2;
  }

  .water-rgb-cursor.is-down .water-cursor-core {
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.12);
  }

  .water-project-cursor {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 126px;
    height: 38px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.94);
    opacity: 0;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.38),
      inset 0 -12px 26px rgba(0, 0, 0, 0.12),
      0 14px 34px rgba(0, 0, 0, 0.22);
    -webkit-backdrop-filter: blur(18px) saturate(1.55) contrast(1.05);
    backdrop-filter: blur(18px) saturate(1.55) contrast(1.05);
    transform: translate3d(-50%, -50%, 0) scale(0.86);
    transition:
      opacity 240ms var(--motion-smooth),
      border-color 320ms var(--motion-smooth),
      background-color 320ms var(--motion-smooth),
      box-shadow 320ms var(--motion-smooth);
    will-change: transform, opacity, filter;
  }

  .water-project-cursor::before,
  .water-project-cursor::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
  }

  .water-project-cursor::before {
    background:
      radial-gradient(70% 140% at 18% -24%, rgba(255, 255, 255, 0.46), transparent 44%),
      linear-gradient(112deg, rgba(255, 255, 255, 0.22), transparent 38%, rgba(255, 255, 255, 0.08) 68%, transparent);
    opacity: 0.7;
  }

  .water-project-cursor::after {
    inset: 1px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow:
      inset 2px 0 4px rgba(255, 82, 82, 0.12),
      inset -2px 0 4px rgba(82, 155, 255, 0.14);
    opacity: 0.76;
  }

  .water-project-cursor__label,
  .water-project-cursor__arrow {
    position: relative;
    z-index: 2;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .water-project-cursor__arrow {
    font-size: 15px;
    transform: translate3d(0, -1px, 0);
  }

  .water-rgb-cursor.is-project-view .water-cursor-rgb,
  .water-rgb-cursor.is-project-view .water-cursor-core {
    opacity: 0;
  }

  .water-rgb-cursor.is-project-view .water-project-cursor {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.38);
    background-color: rgba(255, 255, 255, 0.12);
    transform: translate3d(-50%, -50%, 0) scale(var(--water-cursor-scale, 1));
  }

  .water-rgb-cursor.is-project-view.is-down .water-project-cursor {
    border-color: rgba(255, 255, 255, 0.48);
    background-color: rgba(255, 255, 255, 0.16);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.48),
      inset 0 -12px 26px rgba(0, 0, 0, 0.12),
      0 10px 28px rgba(0, 0, 0, 0.18);
  }

  .photography-viewer-page .water-cursor-rgb,
  .all-projects-page .water-cursor-rgb {
    opacity: min(0.16, var(--water-rgb-opacity, 0.1));
    filter: blur(calc(var(--water-rgb-blur, 2px) + 1px));
    mix-blend-mode: screen;
  }

  .photography-viewer-page .water-cursor-core,
  .all-projects-page .water-cursor-core {
    border-color: rgba(17, 17, 17, 0.16);
    background: rgba(255, 255, 255, 0.34);
    box-shadow:
      0 10px 34px rgba(17, 17, 17, 0.12),
      inset 0 0 10px rgba(255, 255, 255, 0.58);
  }

  .photography-viewer-page .water-cursor-core::before,
  .all-projects-page .water-cursor-core::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 50%, rgba(255, 255, 255, 0.14));
    opacity: 0.46;
  }

  .photography-viewer-page .water-cursor-core::after,
  .all-projects-page .water-cursor-core::after {
    border-color: rgba(17, 17, 17, 0.1);
    opacity: 0.32;
  }

  .photography-viewer-page .water-rgb-cursor.is-down .water-cursor-core,
  .all-projects-page .water-rgb-cursor.is-down .water-cursor-core {
    border-color: rgba(17, 17, 17, 0.22);
    background: rgba(255, 255, 255, 0.42);
  }

}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  html.water-cursor-enabled,
  html.water-cursor-enabled * {
    cursor: auto !important;
  }

  .water-rgb-cursor {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .gradual-blur {
    height: 4.5rem;
  }

  .gradual-blur-layer:nth-child(4) {
    -webkit-backdrop-filter: blur(0.65rem);
    backdrop-filter: blur(0.65rem);
  }

  .gradual-blur-layer:nth-child(5) {
    -webkit-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gradual-blur {
    display: none;
  }

  .split-text-unit,
  [data-split-text][data-motion-direction="up"]:not(.is-split-visible) .split-text-unit {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}
