:root {
  --ink: #0b0b0b;
  --paper: #f2f0e9;
  --paper-2: #e8e5dc;
  --accent: #c9ff4a;
  --muted: #9b9b92;
  --line: rgba(11, 11, 11, 0.16);
  --header-h: 86px;
  --mouse-x: 50%;
  --mouse-y: 50%;
  --scroll: 0;
  --ease: cubic-bezier(.2,.8,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
::selection { color: var(--ink); background: var(--accent); }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

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

.page-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 1001;
  pointer-events: none;
}
.page-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1200;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  will-change: transform;
}
.cursor--dot { width: 5px; height: 5px; background: var(--accent); mix-blend-mode: difference; }
.cursor--ring { width: 34px; height: 34px; border: 1px solid var(--accent); mix-blend-mode: difference; transition: width .25s, height .25s, background .25s; }
.cursor--ring.is-active { width: 58px; height: 58px; background: rgba(201,255,74,.15); }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 900;
  height: var(--header-h);
  padding: 18px clamp(20px, 3vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--paper);
  mix-blend-mode: difference;
}
.brand { display: inline-flex; gap: 12px; align-items: center; }
.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.brand-copy { font-size: 11px; line-height: 1.1; letter-spacing: .06em; font-weight: 700; }
.brand-copy small { font: 400 8px/1.2 "DM Mono", monospace; letter-spacing: .1em; opacity: .7; }
.site-nav { display: flex; align-items: center; gap: 32px; font: 400 11px/1 "DM Mono", monospace; text-transform: uppercase; letter-spacing: .08em; }
.site-nav a { position: relative; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px; background: currentColor; transition: right .3s var(--ease); }
.site-nav a:hover::after { right: 0; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; padding: 11px; }
.menu-toggle span:not(.sr-only) { display: block; height: 1px; background: currentColor; margin: 7px 0; transition: transform .3s, opacity .3s; }

.section-shell { width: min(1440px, calc(100% - clamp(40px, 8vw, 128px))); margin: 0 auto; }
.section { position: relative; padding: clamp(100px, 14vw, 220px) 0; }
.section-index { font: 400 11px/1.3 "DM Mono", monospace; text-transform: uppercase; letter-spacing: .1em; }
.section-index span { opacity: .45; }
.section-index p { margin: 10px 0 0; }
.eyebrow { margin: 0 0 24px; font: 400 11px/1.2 "DM Mono", monospace; letter-spacing: .12em; text-transform: uppercase; }
.display-copy { margin: 0; font-size: clamp(44px, 6.7vw, 112px); line-height: .98; letter-spacing: -.065em; font-weight: 500; }
.display-copy span { color: var(--muted); }

.hero { height: 220vh; color: var(--paper); background: var(--ink); }
.hero-sticky { position: sticky; top: 0; height: 100vh; min-height: 680px; overflow: hidden; isolation: isolate; }
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .14;
  background-image: linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 9vw 9vw;
  transform: perspective(900px) rotateX(56deg) scale(1.6) translateY(calc(var(--hero-p, 0) * 12%));
  transform-origin: bottom;
  mask-image: linear-gradient(to bottom, transparent 8%, black 55%, transparent 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 58vw;
  aspect-ratio: 1;
  border-radius: 50%;
  left: calc(var(--mouse-x) - 29vw);
  top: calc(var(--mouse-y) - 29vw);
  background: radial-gradient(circle, rgba(201,255,74,.13), transparent 68%);
  filter: blur(10px);
  pointer-events: none;
}
.hero-kicker { position: absolute; left: clamp(20px, 5vw, 80px); top: 18vh; margin: 0; font: 400 10px/1 "DM Mono", monospace; letter-spacing: .12em; text-transform: uppercase; color: rgba(242,240,233,.62); }
.hero-title { position: absolute; left: clamp(18px, 4vw, 64px); right: clamp(18px, 4vw, 64px); top: 50%; transform: translateY(-48%); margin: 0; font-size: clamp(76px, 13.2vw, 246px); line-height: .73; letter-spacing: -.09em; font-weight: 600; }
.hero-line { display: block; will-change: transform; }
.hero-line--one { text-align: left; transform: translate3d(calc(var(--hero-p, 0) * -8vw), calc(var(--hero-p, 0) * -3vh), 0); }
.hero-line--two { text-align: center; transform: translate3d(calc(var(--hero-p, 0) * 6vw), 0, 0); }
.hero-line--three { text-align: right; transform: translate3d(calc(var(--hero-p, 0) * -4vw), calc(var(--hero-p, 0) * 3vh), 0); }
.hero-line em { color: var(--accent); font-style: normal; }
.hero-orbit { position: absolute; right: 7vw; top: 16vh; width: clamp(130px, 17vw, 280px); aspect-ratio: 1; transform: rotate(calc(var(--hero-p, 0) * 90deg)) translateY(calc(var(--hero-p, 0) * -4vh)); will-change: transform; }
.orbit-ring { position: absolute; border: 1px solid rgba(242,240,233,.25); border-radius: 50%; }
.orbit-ring--one { inset: 0; }
.orbit-ring--two { inset: 19%; border-style: dashed; animation: orbitSpin 18s linear infinite reverse; }
.orbit-core { position: absolute; inset: 36%; border-radius: 50%; background: var(--accent); color: var(--ink); display: grid; place-items: center; font-size: 12px; font-weight: 700; }
.orbit-chip { position: absolute; padding: 6px 9px; border: 1px solid rgba(242,240,233,.3); border-radius: 99px; font: 400 8px/1 "DM Mono", monospace; letter-spacing: .08em; background: rgba(11,11,11,.75); }
.orbit-chip--one { left: -12%; top: 21%; }
.orbit-chip--two { right: -8%; top: 48%; }
.orbit-chip--three { left: 21%; bottom: -3%; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.hero-bottom { position: absolute; left: clamp(20px, 5vw, 80px); right: clamp(20px, 5vw, 80px); bottom: 5vh; display: flex; justify-content: space-between; align-items: flex-end; gap: 32px; }
.hero-bottom > p { width: min(390px, 60vw); margin: 0; font-size: clamp(14px, 1.3vw, 20px); color: rgba(242,240,233,.65); }
.scroll-cue { display: inline-flex; align-items: center; gap: 14px; font: 400 10px/1 "DM Mono", monospace; text-transform: uppercase; letter-spacing: .08em; }
.scroll-cue svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-width: 1.2; animation: bounce 1.7s ease-in-out infinite; }
@keyframes bounce { 50% { transform: translateY(7px); } }

.about { min-height: 105vh; background: var(--paper); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 12% minmax(0, 1fr) 30%; align-items: start; gap: clamp(28px, 5vw, 80px); }
.about-copy .display-copy { max-width: 1000px; }
.about-details { margin-top: 70px; margin-left: 25%; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.about-details p { margin: 0; max-width: 430px; font-size: clamp(15px, 1.15vw, 19px); color: #575751; }
.about-visual { position: relative; margin-top: 9vh; }
.portrait-card { position: relative; width: 100%; aspect-ratio: .78; overflow: hidden; background: var(--ink); color: var(--paper); border-radius: 2px; transform: rotate(2.5deg); }
.portrait-lines { position: absolute; inset: 0; background: repeating-linear-gradient(105deg, transparent 0 18px, rgba(255,255,255,.09) 19px 20px), radial-gradient(circle at 68% 32%, rgba(201,255,74,.35), transparent 34%); }
.portrait-type { position: absolute; inset: 0; display: grid; place-items: center; font-size: clamp(70px, 8vw, 140px); font-weight: 700; letter-spacing: -.12em; transform: rotate(-8deg); }
.portrait-caption { position: absolute; left: 20px; bottom: 18px; font: 400 8px/1 "DM Mono", monospace; letter-spacing: .13em; }
.floating-note { position: absolute; z-index: 2; min-width: 100px; padding: 15px; background: var(--accent); color: var(--ink); font: 500 9px/1.35 "DM Mono", monospace; box-shadow: 0 18px 45px rgba(0,0,0,.13); }
.floating-note--one { left: -16%; top: 14%; transform: rotate(-8deg); }
.floating-note--two { right: -10%; bottom: 10%; transform: rotate(7deg); background: var(--paper); border: 1px solid var(--ink); }

.work-intro { padding-bottom: 60px; background: var(--ink); color: var(--paper); }
.work-heading { display: grid; grid-template-columns: 18% 1fr; gap: 40px; align-items: start; }
.work-heading .display-copy { max-width: 1050px; }
.work-heading .display-copy span { color: #77776f; }

.projects { position: relative; height: 800vh; background: var(--ink); color: var(--paper); }
.projects-sticky { position: sticky; top: 0; height: 100vh; min-height: 680px; overflow: hidden; display: flex; align-items: center; }
.project-track { display: flex; gap: 4vw; padding: 0 9vw; width: max-content; will-change: transform; }
.projects-counter { position: absolute; right: 4vw; bottom: 4vh; z-index: 5; display: flex; align-items: center; gap: 10px; font: 400 10px/1 "DM Mono", monospace; }
.projects-counter i { display: block; width: 34px; height: 1px; background: rgba(242,240,233,.4); }
.project-card { width: min(76vw, 1100px); flex: 0 0 auto; }
.project-meta { display: flex; justify-content: space-between; margin-bottom: 14px; font: 400 9px/1 "DM Mono", monospace; letter-spacing: .08em; color: rgba(242,240,233,.55); }
.project-preview { position: relative; display: block; aspect-ratio: 16/9; overflow: hidden; border-radius: 5px; transition: transform .8s var(--ease); transform-origin: center; }
.project-card:hover .project-preview { transform: scale(.985); }
.browser-bar { height: 34px; display: flex; gap: 6px; align-items: center; padding: 0 12px; color: rgba(255,255,255,.55); background: rgba(10,10,10,.92); font: 400 7px/1 "DM Mono", monospace; }
.browser-bar i { width: 6px; height: 6px; border: 1px solid currentColor; border-radius: 50%; }
.browser-bar span { margin-left: auto; margin-right: auto; transform: translateX(-18px); }
.project-copy { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-top: 24px; }
.project-copy h3 { margin: 0 0 8px; font-size: clamp(27px, 3vw, 52px); letter-spacing: -.05em; line-height: 1; }
.project-copy p { margin: 0; max-width: 550px; color: rgba(242,240,233,.58); font-size: clamp(13px, 1vw, 16px); }
.circle-link { width: 58px; height: 58px; border: 1px solid rgba(242,240,233,.32); border-radius: 50%; display: grid; place-items: center; font-size: 20px; flex: 0 0 auto; transition: color .3s, background .3s, transform .3s; }
.circle-link:hover { color: var(--ink); background: var(--accent); transform: rotate(45deg); }

.preview-jewels { color: #4b312e; background: #e5c4c4; }
.jewel-nav { height: 16%; display: grid; place-items: center; font-family: Georgia, serif; letter-spacing: .18em; font-size: clamp(13px, 1.7vw, 28px); }
.jewel-nav small { display: block; margin-top: -4px; font: 400 6px/1 "DM Mono", monospace; letter-spacing: .35em; }
.jewel-scene { height: 84%; display: grid; grid-template-columns: 1fr 1fr; align-items: center; padding: 4% 8%; background: linear-gradient(120deg, #ebd5d2 0 54%, #d6adac 54%); }
.jewel-copy { display: flex; flex-direction: column; align-items: flex-start; }
.jewel-copy small { font: 400 clamp(6px,.65vw,10px)/1 "DM Mono", monospace; letter-spacing: .15em; }
.jewel-copy b { margin: 6% 0; font-family: Georgia, serif; font-size: clamp(20px, 3.6vw, 62px); line-height: .95; font-weight: 400; letter-spacing: -.04em; }
.jewel-copy i { padding-bottom: 5px; border-bottom: 1px solid; font: 400 clamp(6px,.7vw,11px)/1 "DM Mono", monospace; font-style: normal; }
.jewel-shape { justify-self: center; width: 54%; aspect-ratio: .8; border-radius: 48% 48% 10% 10%; background: linear-gradient(135deg, #6d433a, #c9998e); position: relative; box-shadow: inset 0 0 0 10px rgba(255,255,255,.12), 30px 30px 70px rgba(85,38,35,.25); }
.jewel-shape::before { content: ""; position: absolute; left: 22%; right: 22%; top: 7%; height: 62%; border: clamp(3px,.45vw,7px) double #f5d98e; border-radius: 50%; box-shadow: 0 0 0 clamp(2px,.28vw,5px) #8e653f; }
.jewel-shape span { position: absolute; left: 50%; bottom: 14%; width: 20%; aspect-ratio: 1; border-radius: 50%; border: clamp(4px,.6vw,9px) solid #efd78e; transform: translateX(-50%); box-shadow: 0 0 0 clamp(2px,.25vw,4px) #78533b; }


.preview-fashion { color: #422d2b; background: #e8d3c4; }
.fashion-scene { position: relative; height: calc(100% - 34px); overflow: hidden; background: linear-gradient(105deg, #f0e4dc 0 56%, #bc7967 56%); }
.fashion-word { position: absolute; left: 3%; bottom: -5%; font-family: Georgia, serif; font-size: clamp(72px, 14vw, 225px); line-height: .76; letter-spacing: -.08em; color: rgba(80,48,43,.10); }
.fashion-copy { position: absolute; z-index: 2; left: 7%; top: 19%; display: flex; flex-direction: column; align-items: flex-start; }
.fashion-copy small { font: 500 clamp(6px,.65vw,10px)/1 "DM Mono", monospace; letter-spacing: .14em; }
.fashion-copy b { margin: 8% 0 6%; font-family: Georgia, serif; font-size: clamp(28px, 5vw, 82px); line-height: .86; font-weight: 400; letter-spacing: -.055em; }
.fashion-copy span { width: min(260px, 30vw); font-size: clamp(8px, 1vw, 15px); color: rgba(66,45,43,.68); }
.fashion-figure { position: absolute; right: 12%; bottom: 0; width: 28%; height: 88%; filter: drop-shadow(24px 24px 30px rgba(78,31,23,.18)); }
.fashion-figure::before { content: ""; position: absolute; left: 39%; top: 2%; width: 23%; aspect-ratio: 1; border-radius: 50%; background: #d7ab8e; }
.fashion-figure::after { content: ""; position: absolute; left: 13%; right: 10%; top: 18%; bottom: 0; border-radius: 48% 48% 4% 4%; background: linear-gradient(145deg, #6e1d26, #b4484f 53%, #e4a48e); clip-path: polygon(31% 0, 69% 0, 100% 100%, 0 100%); }
.fashion-figure i { position: absolute; z-index: 2; left: 24%; right: 21%; height: 1px; background: rgba(255,235,218,.6); transform: rotate(-18deg); }
.fashion-figure i:nth-child(1) { top: 38%; }.fashion-figure i:nth-child(2) { top: 54%; transform: rotate(16deg); }.fashion-figure i:nth-child(3) { top: 70%; }

.preview-finance { color: #e8f1ee; background: #0e2431; }
.finance-grid { height: calc(100% - 34px); display: grid; grid-template-columns: 1fr 1fr; background: radial-gradient(circle at 82% 16%, rgba(69,215,186,.18), transparent 35%), #0d2531; }
.finance-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 10%; }
.finance-copy small { font: 500 clamp(6px,.7vw,11px)/1 "DM Mono", monospace; letter-spacing: .15em; color: #64d7bd; }
.finance-copy b { margin: 7% 0; font-size: clamp(30px, 5vw, 82px); line-height: .88; letter-spacing: -.065em; }
.finance-copy span { padding: 8px 12px; border: 1px solid rgba(232,241,238,.25); border-radius: 99px; font: 400 clamp(6px,.65vw,10px)/1 "DM Mono", monospace; letter-spacing: .08em; }
.finance-dashboard { position: relative; margin: 8%; border: 1px solid rgba(100,215,189,.25); border-radius: 18px; background: rgba(255,255,255,.035); box-shadow: inset 0 0 40px rgba(100,215,189,.04); }
.finance-ring { position: absolute; left: 10%; top: 12%; width: 34%; aspect-ratio: 1; display: grid; place-items: center; border: clamp(6px,.8vw,12px) solid rgba(100,215,189,.18); border-top-color: #64d7bd; border-radius: 50%; transform: rotate(-20deg); }
.finance-ring span { transform: rotate(20deg); font-size: clamp(22px,4vw,62px); color: #64d7bd; }
.finance-bars { position: absolute; left: 12%; right: 10%; bottom: 20%; height: 35%; display: flex; gap: 5%; align-items: end; border-bottom: 1px solid rgba(255,255,255,.18); }
.finance-bars i { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(#64d7bd, rgba(100,215,189,.22)); }
.finance-bars i:nth-child(1) { height: 26%; }.finance-bars i:nth-child(2) { height: 45%; }.finance-bars i:nth-child(3) { height: 38%; }.finance-bars i:nth-child(4) { height: 67%; }.finance-bars i:nth-child(5) { height: 92%; }
.finance-dashboard p { position: absolute; right: 8%; top: 12%; width: 35%; margin: 0; text-align: right; font: 400 clamp(6px,.65vw,10px)/1.5 "DM Mono", monospace; letter-spacing: .1em; color: rgba(232,241,238,.48); }

.preview-garden { color: #163829; background: #bdd3b3; }
.garden-sky { position: relative; height: 36%; padding: 4% 6%; background: linear-gradient(#c9e2e2, #e8eee3); }
.garden-sky span { font-family: Georgia, serif; font-size: clamp(22px, 3.8vw, 62px); line-height: .75; letter-spacing: -.045em; }
.garden-sky small { position: absolute; right: 5%; top: 20%; font: 500 clamp(6px,.65vw,10px)/1.4 "DM Mono", monospace; letter-spacing: .12em; }
.garden-land { position: relative; height: calc(64% - 34px); overflow: hidden; background: linear-gradient(150deg, #496f47, #173e2e); }
.garden-copy { position: absolute; z-index: 3; left: 7%; top: 16%; display: flex; flex-direction: column; align-items: flex-start; color: #f2efe3; }
.garden-copy b { font-family: Georgia, serif; font-size: clamp(28px, 4.8vw, 78px); line-height: .88; font-weight: 400; letter-spacing: -.05em; }
.garden-copy i { margin-top: 9%; padding-bottom: 4px; border-bottom: 1px solid; font: 400 clamp(6px,.7vw,11px)/1 "DM Mono", monospace; font-style: normal; }
.garden-plants { position: absolute; right: 3%; bottom: -12%; width: 48%; height: 112%; }
.garden-plants span { position: absolute; bottom: 0; width: 18%; height: 72%; border-radius: 90% 10% 80% 20%; background: linear-gradient(130deg,#8ab26f,#1c563a); transform-origin: bottom; box-shadow: inset 12px 0 20px rgba(255,255,255,.08); }
.garden-plants span:nth-child(1){left:5%;height:64%;transform:rotate(-28deg)}.garden-plants span:nth-child(2){left:22%;height:88%;transform:rotate(-12deg)}.garden-plants span:nth-child(3){left:43%;height:100%;transform:rotate(5deg)}.garden-plants span:nth-child(4){left:63%;height:78%;transform:rotate(18deg)}.garden-plants span:nth-child(5){left:80%;height:61%;transform:rotate(31deg)}

.preview-print { color: #221d19; background: #f06b33; }
.print-scene { position: relative; height: calc(100% - 34px); overflow: hidden; background: linear-gradient(108deg, #f4eadb 0 53%, #ef6531 53%); }
.print-type { position: absolute; z-index: 2; left: 6%; top: 17%; }
.print-type small { font: 500 clamp(6px,.7vw,11px)/1 "DM Mono", monospace; letter-spacing: .16em; }
.print-type b { display: block; margin-top: 8%; font-size: clamp(36px, 6.6vw, 108px); line-height: .76; letter-spacing: -.085em; }
.print-stack { position: absolute; right: 10%; top: 14%; width: 32%; aspect-ratio: 1; }
.print-stack span { position: absolute; inset: 0; display: grid; place-items: center; border: 2px solid #221d19; font-size: clamp(60px, 10vw, 155px); font-weight: 700; line-height: 1; background: #ffca4b; box-shadow: 18px 22px 0 rgba(34,29,25,.18); }
.print-stack span:nth-child(1){transform:translate(-18%,-8%) rotate(-8deg);background:#83c7d8}.print-stack span:nth-child(2){transform:translate(9%,5%) rotate(8deg);background:#f6d8e5}.print-stack span:nth-child(3){transform:translate(0,0);background:#ffca4b}
.print-label { position: absolute; left: 6%; bottom: 8%; padding: 8px 11px; color: #f4eadb; background: #221d19; font: 500 clamp(6px,.65vw,10px)/1 "DM Mono", monospace; letter-spacing: .1em; }

.preview-chinese { color: #f8e7bc; background: #aa211c; }
.chinese-scene { position: relative; height: calc(100% - 34px); overflow: hidden; background: radial-gradient(circle at 75% 48%, #d94228 0 28%, transparent 29%), #a51f1b; }
.chinese-scene::before { content: ""; position: absolute; inset: -30%; background: repeating-conic-gradient(from 0deg, rgba(255,214,98,.08) 0 10deg, transparent 10deg 22deg); }
.chinese-stamp { position: absolute; left: 7%; top: 10%; width: 10%; aspect-ratio: 1; display: grid; place-items: center; border: 2px solid #f1c963; color: #f1c963; font-family: Georgia, serif; font-size: clamp(17px,3vw,48px); transform: rotate(-7deg); }
.chinese-copy { position: absolute; z-index: 2; left: 7%; bottom: 12%; }
.chinese-copy small { font: 500 clamp(6px,.7vw,11px)/1 "DM Mono", monospace; letter-spacing: .17em; color: #f1c963; }
.chinese-copy b { display: block; margin: 5% 0 4%; font-size: clamp(38px, 7vw, 112px); line-height: .72; letter-spacing: -.08em; }
.chinese-copy span { font-size: clamp(8px,1vw,15px); color: rgba(248,231,188,.68); }
.chinese-bowl { position: absolute; right: 7%; bottom: 2%; width: 32%; aspect-ratio: 1.15; border-radius: 6% 6% 52% 52%; background: #f1c963; box-shadow: 0 25px 45px rgba(52,7,4,.28); }
.chinese-bowl::before { content: ""; position: absolute; left: -4%; right: -4%; top: -8%; height: 24%; border-radius: 50%; background: #492019; border: clamp(5px,.8vw,12px) solid #f1c963; }
.chinese-bowl i { position: absolute; top: -8%; width: 7%; height: 55%; border-radius: 50%; background: #6eaa45; transform-origin: bottom; }
.chinese-bowl i:nth-child(1){left:20%;transform:rotate(-35deg)}.chinese-bowl i:nth-child(2){left:40%;transform:rotate(-10deg);background:#e56136}.chinese-bowl i:nth-child(3){left:58%;transform:rotate(18deg)}.chinese-bowl i:nth-child(4){left:74%;transform:rotate(38deg);background:#e56136}

.preview-sandwich { color: #181818; background: #f4c92e; }
.sandwich-brand { position: absolute; left: 6%; top: 13%; font-size: clamp(20px, 4.5vw, 72px); line-height: .78; font-weight: 700; letter-spacing: -.07em; transform: rotate(-3deg); }
.sandwich-wrap { position: absolute; inset: 18% 8% 10% 38%; display: grid; place-items: center; }
.sandwich-box { position: absolute; width: 55%; aspect-ratio: 1.25; display: grid; place-items: center; text-align: center; color: white; background: #e13a2f; clip-path: polygon(7% 13%, 84% 0, 100% 73%, 21% 100%); font-size: clamp(12px, 2vw, 32px); line-height: .85; transform: translate(-24%, 4%) rotate(-12deg); filter: drop-shadow(20px 24px 24px rgba(0,0,0,.16)); }
.sandwich-box b { font-size: 1.25em; }
.sandwich-food { width: 52%; aspect-ratio: 1.2; transform: translate(35%, -4%) rotate(12deg); filter: drop-shadow(18px 22px 20px rgba(0,0,0,.2)); }
.sandwich-food span { display: block; height: 20%; border-radius: 50% 50% 18% 18%; }
.sandwich-food span:nth-child(1), .sandwich-food span:nth-child(4) { height: 31%; background: #d99b45; border: 5px solid #f0bd64; }
.sandwich-food span:nth-child(2) { background: #4e9c49; transform: skewX(-13deg); }
.sandwich-food span:nth-child(3) { background: #e65a38; transform: skewX(9deg); }
.sandwich-pill { position: absolute; left: 6%; bottom: 8%; padding: 8px 12px; border: 1px solid; border-radius: 99px; font: 500 clamp(6px,.65vw,10px)/1 "DM Mono", monospace; }

.preview-pizza { color: #f1dfc8; background: #b6291d; }
.pizza-word { position: absolute; left: 4%; bottom: 3%; font-size: clamp(70px, 13vw, 215px); font-weight: 700; line-height: .72; letter-spacing: -.09em; opacity: .9; }
.pizza-disc { position: absolute; z-index: 2; width: 40%; aspect-ratio: 1; border-radius: 50%; left: 50%; top: 50%; transform: translate(-50%,-51%) rotate(-8deg); background: radial-gradient(circle at 52% 48%, #d13f27 0 43%, #dca44d 44% 62%, #9a4a24 63% 68%, transparent 69%); filter: drop-shadow(25px 28px 28px rgba(61,7,2,.35)); }
.pizza-disc::before { content: ""; position: absolute; inset: 24%; border-radius: 50%; background: repeating-conic-gradient(#f5d986 0 11deg, #d5492c 12deg 22deg); opacity: .55; }
.pizza-disc i { position: absolute; width: 12%; aspect-ratio: 1; border-radius: 50%; background: #962417; border: 2px solid #722016; }
.pizza-disc i:nth-child(1) { left: 26%; top: 22%; }.pizza-disc i:nth-child(2) { right: 24%; top: 27%; }.pizza-disc i:nth-child(3) { left: 45%; top: 44%; }.pizza-disc i:nth-child(4) { left: 25%; bottom: 24%; }.pizza-disc i:nth-child(5) { right: 23%; bottom: 19%; }.pizza-disc i:nth-child(6) { left: 48%; bottom: 11%; }
.preview-pizza > p { position: absolute; top: 14%; right: 6%; margin: 0; text-align: right; font: 400 clamp(7px,.9vw,14px)/1.2 "DM Mono", monospace; letter-spacing: .15em; }

.preview-decor { color: #152035; background: #becbd4; }
.decor-grid { height: calc(100% - 34px); display: grid; grid-template-columns: .8fr 1.2fr; }
.decor-copy { display: flex; flex-direction: column; justify-content: center; padding: 10%; background: #e1e0d6; }
.decor-copy small { font: 400 clamp(6px,.7vw,11px)/1 "DM Mono", monospace; letter-spacing: .13em; }
.decor-copy b { margin-top: 8%; font-family: Georgia, serif; font-size: clamp(23px, 4.3vw, 74px); line-height: .94; font-weight: 400; letter-spacing: -.05em; }
.decor-wall { position: relative; overflow: hidden; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; padding: 7%; background: #63798d; perspective: 700px; }
.decor-wall span { background: linear-gradient(90deg, rgba(255,255,255,.2), transparent), repeating-linear-gradient(0deg, #5b371f 0 14px, #825436 15px 29px); transform: rotateY(-16deg); box-shadow: 10px 20px 30px rgba(0,0,0,.2); }
.decor-wall span:nth-child(2) { transform: rotateY(10deg) translateY(9%); }.decor-wall span:nth-child(3) { transform: rotateY(-8deg) translateY(-5%); }.decor-wall span:nth-child(4) { transform: rotateY(12deg) translateY(4%); }

.services { overflow: hidden; background: var(--paper); }
.services-grid { display: grid; grid-template-columns: 18% 1fr; gap: 40px; }
.services-content { position: relative; z-index: 2; }
.services-content .display-copy { max-width: 1000px; }
.service-list { margin-top: 90px; border-top: 1px solid var(--line); }
.service-item { display: grid; grid-template-columns: 8% 34% 1fr 30px; gap: 20px; align-items: center; min-height: 150px; border-bottom: 1px solid var(--line); transition: padding .35s var(--ease), background .35s; }
.service-item > span { font: 400 10px/1 "DM Mono", monospace; opacity: .45; }
.service-item h3 { margin: 0; font-size: clamp(24px, 2.7vw, 46px); line-height: 1; letter-spacing: -.05em; font-weight: 500; }
.service-item p { margin: 0; max-width: 480px; color: #66665f; }
.service-item i { font-style: normal; font-size: 20px; transition: transform .35s; }
.service-item:hover { padding-inline: 20px; background: var(--paper-2); }
.service-item:hover i { transform: rotate(45deg); }
.service-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.service-orb--one { width: 28vw; aspect-ratio: 1; left: -15vw; top: 14%; background: radial-gradient(circle at 30% 30%, var(--accent), transparent 70%); opacity: .3; }
.service-orb--two { width: 24vw; aspect-ratio: 1; right: -12vw; bottom: 3%; border: 1px solid rgba(11,11,11,.22); box-shadow: inset 0 0 0 4vw var(--paper), inset 0 0 0 calc(4vw + 1px) rgba(11,11,11,.18); }

.manifesto { height: 260vh; color: var(--paper); background: var(--ink); }
.manifesto-sticky { position: sticky; top: 0; height: 100vh; min-height: 680px; overflow: hidden; display: grid; place-items: center; padding: 8vw; }
.manifesto-word { position: absolute; font-size: 23vw; line-height: .8; font-weight: 700; letter-spacing: -.1em; color: transparent; -webkit-text-stroke: 1px rgba(242,240,233,.12); transform: scale(calc(.82 + var(--manifesto-p, 0) * .55)) rotate(calc(-5deg + var(--manifesto-p, 0) * 8deg)); opacity: calc(.4 + var(--manifesto-p, 0)); }
.manifesto-copy { position: relative; z-index: 2; max-width: 1100px; margin: 0; text-align: center; font-size: clamp(40px, 6.5vw, 108px); line-height: .98; letter-spacing: -.065em; }
.manifesto-copy span { color: var(--accent); }
.manifesto-tags { position: absolute; left: 5vw; right: 5vw; bottom: 5vh; display: flex; justify-content: space-between; font: 400 9px/1 "DM Mono", monospace; letter-spacing: .08em; color: rgba(242,240,233,.45); }

.contact { min-height: 100vh; padding-bottom: 36px; color: var(--ink); background: var(--accent); overflow: hidden; }
.contact-content { position: relative; z-index: 2; }
.contact-title { margin: 0; font-size: clamp(60px, 10.8vw, 190px); line-height: .78; letter-spacing: -.09em; font-weight: 600; }
.contact-title span { color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
.contact-actions { margin-top: clamp(60px, 8vw, 120px); display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.contact-button { width: min(420px, 52vw); min-height: 112px; padding: 0 34px; border: 1px solid var(--ink); border-radius: 999px; display: flex; align-items: center; justify-content: space-between; font-size: clamp(18px, 2vw, 30px); transition: color .35s, background .35s; }
.contact-button i { font-style: normal; transition: transform .35s; }
.contact-button:hover { color: var(--paper); background: var(--ink); }
.contact-button:hover i { transform: rotate(45deg); }
.copy-email { padding: 0; border: 0; text-align: right; background: transparent; cursor: pointer; }
.copy-email span { display: block; font-size: clamp(14px, 1.5vw, 22px); }
.copy-email small { font: 400 9px/1 "DM Mono", monospace; text-transform: uppercase; letter-spacing: .1em; opacity: .58; }
.contact-rings { position: absolute; width: 55vw; aspect-ratio: 1; right: -18vw; top: -11vw; opacity: .23; transform: rotate(calc(var(--contact-p, 0) * 80deg)); }
.contact-rings span { position: absolute; border: 1px solid var(--ink); border-radius: 50%; }
.contact-rings span:nth-child(1) { inset: 0; }.contact-rings span:nth-child(2) { inset: 17%; }.contact-rings span:nth-child(3) { inset: 34%; background: var(--ink); }
.footer { margin-top: 130px; padding-top: 24px; border-top: 1px solid rgba(11,11,11,.35); display: grid; grid-template-columns: 1fr auto 1fr; gap: 30px; align-items: center; font: 400 9px/1 "DM Mono", monospace; text-transform: uppercase; letter-spacing: .08em; }
.footer p { margin: 0; }
.footer div { display: flex; gap: 24px; }
.footer > a { justify-self: end; }
.footer a { position: relative; }
.footer a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 1px; background: currentColor; transition: right .3s; }
.footer a:hover::after { right: 0; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.split-reveal { opacity: 0; transform: translateY(38px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.split-reveal.is-visible { opacity: 1; transform: translateY(0); }
[data-parallax] { will-change: transform; }

@media (max-width: 1000px) {
  .hero-title { font-size: clamp(72px, 14.5vw, 150px); line-height: .78; }
  .hero-orbit { top: 19vh; right: 5vw; }
  .about-grid { grid-template-columns: 14% 1fr; }
  .about-visual { grid-column: 2; width: min(54vw, 430px); justify-self: end; }
  .about-details { margin-left: 0; }
  .service-item { grid-template-columns: 7% 35% 1fr 24px; }
}

@media (max-width: 760px) {
  :root { --header-h: 72px; }
  body { cursor: auto; }
  .cursor { display: none; }
  .section-shell { width: calc(100% - 40px); }
  .section { padding: 110px 0; }
  .display-copy { font-size: clamp(42px, 12vw, 72px); }
  .site-header { padding: 14px 20px; mix-blend-mode: normal; color: var(--paper); }
  .brand-mark { width: 38px; height: 38px; }
  .menu-toggle { display: block; z-index: 3; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; gap: 18px; padding: 24px; color: var(--paper); background: var(--ink); opacity: 0; visibility: hidden; transform: translateY(-20px); transition: .35s var(--ease); font: 500 clamp(42px, 14vw, 70px)/.95 "Manrope", sans-serif; letter-spacing: -.06em; text-transform: none; }
  .site-nav.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .hero { height: 180vh; }
  .hero-sticky { min-height: 600px; }
  .hero-grid { background-size: 22vw 22vw; }
  .hero-kicker { left: 20px; top: 15vh; max-width: 200px; line-height: 1.5; }
  .hero-title { left: 16px; right: 16px; top: 49%; font-size: clamp(67px, 20.5vw, 130px); line-height: .75; }
  .hero-line--two { text-align: left; }
  .hero-orbit { width: 124px; top: 19vh; right: 9vw; opacity: .8; }
  .hero-bottom { left: 20px; right: 20px; bottom: 4vh; align-items: flex-end; }
  .hero-bottom > p { width: 60%; font-size: 12px; }
  .scroll-cue span { display: none; }
  .about-grid, .work-heading, .services-grid { grid-template-columns: 1fr; }
  .section-index { margin-bottom: 46px; display: flex; gap: 14px; }
  .section-index p { margin: 0; }
  .about-details { margin-top: 48px; grid-template-columns: 1fr; gap: 22px; }
  .about-visual { grid-column: 1; width: 86%; margin-top: 70px; }
  .floating-note--one { left: -4%; }
  .floating-note--two { right: -5%; }
  .work-intro { padding-bottom: 60px; }
  .projects { height: auto; padding: 0 20px 120px; }
  .projects-sticky { position: relative; height: auto; min-height: 0; overflow: visible; display: block; }
  .project-track { display: grid; width: auto; gap: 88px; padding: 0; transform: none !important; }
  .project-card { width: 100%; }
  .projects-counter { display: none; }
  .project-preview { aspect-ratio: 4/3; }
  .browser-bar { height: 26px; }
  .decor-grid { height: calc(100% - 26px); }
  .project-copy { align-items: flex-start; }
  .project-copy p { font-size: 12px; }
  .circle-link { width: 48px; height: 48px; }
  .jewel-scene { padding-inline: 5%; }
  .jewel-shape { width: 68%; }
  .sandwich-wrap { inset: 21% 4% 12% 30%; }
  .pizza-disc { width: 52%; }
  .services-content .display-copy { margin-bottom: 50px; }
  .service-list { margin-top: 0; }
  .service-item { grid-template-columns: 35px 1fr 24px; min-height: 0; padding: 30px 0; }
  .service-item h3 { font-size: 27px; }
  .service-item p { grid-column: 2 / 4; font-size: 13px; }
  .service-item i { grid-column: 3; grid-row: 1; }
  .service-item:hover { padding-inline: 12px; }
  .manifesto { height: 190vh; }
  .manifesto-sticky { padding: 20px; min-height: 600px; }
  .manifesto-word { font-size: 34vw; transform: rotate(90deg) scale(calc(.9 + var(--manifesto-p, 0) * .45)); }
  .manifesto-copy { font-size: clamp(41px, 12vw, 72px); }
  .manifesto-tags { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .contact { min-height: auto; padding-top: 130px; }
  .contact-title { font-size: clamp(58px, 17.2vw, 110px); }
  .contact-actions { align-items: stretch; flex-direction: column; }
  .contact-button { width: 100%; min-height: 90px; }
  .copy-email { text-align: left; }
  .contact-rings { width: 100vw; right: -54vw; top: -4vw; }
  .footer { margin-top: 90px; grid-template-columns: 1fr auto; row-gap: 28px; }
  .footer div { grid-column: 1 / -1; grid-row: 1; justify-content: space-between; }
}

@media (max-width: 420px) {
  .hero-title { font-size: 20vw; }
  .hero-orbit { width: 108px; }
  .brand-copy { display: none; }
  .project-copy h3 { font-size: 29px; }
  .contact-title { font-size: 16.8vw; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-parallax], .hero-line, .hero-grid, .hero-orbit, .manifesto-word, .contact-rings, .project-track { transform: none !important; }
  .reveal, .split-reveal { opacity: 1; transform: none; }
}
