@font-face {
  font-family: "BojaLab Mano";
  src: url("/fonts/BojaLabMano-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --ink: #0b0b0b;
  --paper: #fff9ec;
  --orange: #ff680d;
  --brand-orange: #ff8a00;
  --turquoise: #31a8af;
  --lime: #cfff2e;
  --plum: #4d1939;
  --violet: #7525bd;
  --pointer-x: 50vw;
  --pointer-y: 50vh;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--lime); color: var(--ink); }

.site { min-height: 100vh; overflow: clip; }
.cursor-orb {
  position: fixed; z-index: 90; left: var(--pointer-x); top: var(--pointer-y); width: 24px; height: 24px;
  border: 2px solid var(--ink); background: var(--lime); border-radius: 50%; transform: translate(-50%, -50%);
  pointer-events: none; mix-blend-mode: multiply; transition: width .2s ease, height .2s ease;
}

.loader {
  position: fixed; inset: 0; z-index: 200; display: grid; place-content: center; gap: 1.4rem;
  background: var(--turquoise); color: var(--ink); transition: transform .9s cubic-bezier(.8,0,.2,1), visibility .9s;
}
.is-loaded .loader { transform: translateY(-105%); visibility: hidden; }
.loader-word { font-family: "BojaLab Mano", sans-serif; font-size: clamp(5rem, 16vw, 13rem); line-height: .7; }
.loader p { margin: 0; text-align: center; font-size: .72rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.loader-track { width: min(360px, 70vw); height: 3px; background: rgba(0,0,0,.18); overflow: hidden; }
.loader-track span { display: block; width: 100%; height: 100%; background: var(--ink); transform-origin: left; animation: loading 1.35s cubic-bezier(.7,0,.2,1) both; }
@keyframes loading { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.topbar {
  position: fixed; z-index: 80; top: 0; left: 0; right: 0; height: 84px; display: grid;
  grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; padding: 0 4vw;
  border-bottom: 1px solid rgba(0,0,0,.17); background: color-mix(in srgb, var(--turquoise) 82%, transparent); backdrop-filter: blur(16px);
}
.wordmark { font-family: "BojaLab Mano", sans-serif; font-size: 2rem; line-height: 1; width: max-content; }
.wordmark-dot { color: var(--orange); }
.topbar nav { display: flex; gap: clamp(1.2rem, 4vw, 4rem); font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.topbar nav a, .nav-cta { transition: opacity .25s ease; }
.topbar nav a:hover, .nav-cta:hover { opacity: .52; }
.nav-cta { justify-self: end; padding: .7rem 1rem; border: 1px solid var(--ink); border-radius: 99px; font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.hero {
  min-height: 100svh; position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center;
  overflow: hidden; padding: 120px 5vw 60px; background: var(--turquoise);
}
.hero::after { content: ""; position: absolute; inset: auto -10vw -28vw auto; width: 48vw; aspect-ratio: 1; border: 2px solid rgba(0,0,0,.25); border-radius: 50%; }
.hero-pattern { position: absolute; font-family: "BojaLab Mano", sans-serif; font-size: 48vw; line-height: .7; color: rgba(255,255,255,.11); pointer-events: none; }
.hero-pattern-top { top: -15vw; right: -6vw; transform: rotate(12deg); }
.hero-copy { position: relative; z-index: 2; align-self: center; }
.eyebrow { margin: 0 0 1.8rem; font-size: .72rem; font-weight: 900; letter-spacing: .2em; }
.hero h1 { margin: 0; font-family: "BojaLab Mano", sans-serif; font-size: clamp(7rem, 17vw, 16rem); line-height: .58; letter-spacing: -.07em; font-weight: 400; }
.hero h1 span { color: var(--paper); }
.hero-slogan { margin: 2rem 0 0; font-family: "BojaLab Mano", sans-serif; font-size: clamp(2rem, 4.6vw, 5rem); line-height: .9; }
.round-link {
  width: 94px; aspect-ratio: 1; margin-top: 3rem; display: flex; align-items: center; justify-content: space-around; padding: 1rem;
  border: 2px solid var(--ink); border-radius: 50%; font-size: .72rem; font-weight: 900; text-transform: uppercase;
  transform: rotate(-8deg); transition: background .25s, transform .25s;
}
.round-link:hover { background: var(--lime); transform: rotate(3deg) scale(1.06); }
.round-link b { font-size: 1.3rem; }

.hero-visual { position: relative; z-index: 2; height: min(70vh, 720px); align-self: end; }
.dahu-window { position: absolute; inset: 3% -10% 0 -5%; display: flex; align-items: flex-end; justify-content: center; overflow: visible; }
.dahu-figure { position: relative; display: block; padding: 0; border: 0; background: transparent; color: inherit; cursor: pointer; -webkit-tap-highlight-color: transparent; }
.dahu-figure img { display: block; width: 100%; height: auto; transition: opacity .08s linear; }
.dahu-figure .dahu-wink { position: absolute; inset: 0; opacity: 0; }
.dahu-figure.is-winking .dahu-open { opacity: 0; }
.dahu-figure.is-winking .dahu-wink { opacity: 1; }
.dahu-figure:focus-visible { outline: 3px solid var(--lime); outline-offset: 8px; border-radius: 18px; }
.dahu-window .dahu-figure { width: min(101%, 711px); filter: saturate(1.08) contrast(1.07) drop-shadow(16px 20px 0 rgba(11,11,11,.1)); animation: dahuFloat 5s ease-in-out infinite; }
@keyframes dahuFloat { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(1deg); } }
.manifesto-balloon { position: absolute; z-index: 2; top: 11vh; left: 52%; width: clamp(72px, 8vw, 118px); padding: 0; border: 0; background: transparent; cursor: pointer; transform: translateX(-50%) rotate(9deg); animation: manifestoBalloon 4s ease-in-out infinite; }
.manifesto-balloon:focus-visible { outline: 3px solid var(--lime); outline-offset: 8px; border-radius: 50%; }
.balloon-body { display: block; width: 100%; aspect-ratio: .83; border: 2px solid var(--paper); border-radius: 52% 48% 50% 46%; background: var(--lime); transform-origin: center; }
.balloon-string {
  position: absolute; width: 8px; height: 17vh; left: 50%; top: 100%;
  border-left: 1px solid var(--paper); border-radius: 48% 0 0 52%; background: transparent;
  transform-origin: top left; transform: rotate(2deg);
  animation: stringSway 3.6s ease-in-out infinite;
}
.burst-particles { position: absolute; inset: 42% auto auto 50%; width: 0; height: 0; pointer-events: none; }
.burst-particles i { --x: 0px; --y: 0px; position: absolute; width: 9px; height: 9px; margin: -4px; border: 1px solid var(--ink); border-radius: 50%; background: var(--lime); opacity: 0; }
.burst-particles i:nth-child(1) { --x: -72px; --y: -54px; }
.burst-particles i:nth-child(2) { --x: -24px; --y: -82px; }
.burst-particles i:nth-child(3) { --x: 38px; --y: -74px; }
.burst-particles i:nth-child(4) { --x: 76px; --y: -26px; }
.burst-particles i:nth-child(5) { --x: 70px; --y: 42px; }
.burst-particles i:nth-child(6) { --x: 18px; --y: 72px; }
.burst-particles i:nth-child(7) { --x: -48px; --y: 62px; }
.burst-particles i:nth-child(8) { --x: -78px; --y: 12px; }
.manifesto-balloon.is-popping { animation-play-state: paused; }
.manifesto-balloon.is-popping .balloon-body { animation: balloonPop .72s cubic-bezier(.2,.8,.2,1) both; }
.manifesto-balloon.is-popping .balloon-string { animation: balloonString .72s ease both; }
.manifesto-balloon.is-popping .burst-particles i { animation: balloonParticle .72s ease-out both; }
@keyframes balloonPop { 0% { transform: scale(1); opacity: 1; } 35% { transform: scale(1.3); opacity: 1; } 50%,100% { transform: scale(.05); opacity: 0; } }
@keyframes balloonString { 0%,32% { opacity: 1; } 48%,100% { opacity: 0; } }
@keyframes balloonParticle { 0%,34% { transform: translate(0,0) scale(.2); opacity: 0; } 42% { opacity: 1; } 100% { transform: translate(var(--x),var(--y)) scale(.9); opacity: 0; } }
@keyframes manifestoBalloon { 0%,100% { transform: translateX(-50%) translateY(0) rotate(9deg); } 50% { transform: translateX(-50%) translateY(-14px) rotate(4deg); } }
@keyframes stringSway { 0%,100% { transform: rotate(2deg); } 50% { transform: rotate(.5deg); } }
.dahu-caption { position: absolute; bottom: 5%; right: 1%; padding: .7rem .9rem; background: var(--ink); color: var(--paper); font-size: .64rem; font-weight: 900; letter-spacing: .11em; line-height: 1.45; transform: rotate(2deg); }

.ticker { overflow: hidden; border-block: 2px solid var(--ink); background: var(--lime); }
.ticker > div { width: max-content; display: flex; align-items: center; gap: 2rem; padding: 1rem 0; animation: ticker 20s linear infinite; }
.ticker span { font-family: "BojaLab Mano", sans-serif; font-size: clamp(2rem, 4vw, 4rem); white-space: nowrap; }
.ticker i { font-size: 1.6rem; font-style: normal; }
@keyframes ticker { to { transform: translateX(-50%); } }

.manifesto { min-height: 155vh; position: relative; overflow: hidden; padding: 12vh 5vw; background: var(--ink); color: var(--paper); }
.manifesto-intro, .manifesto-lines, .manifesto-note { position: relative; z-index: 1; }
.manifesto-intro { display: flex; justify-content: space-between; gap: 2rem; margin-bottom: 19vh; }
.section-index { margin: 0; font-size: .67rem; font-weight: 900; letter-spacing: .18em; }
.section-kicker { margin: 0; font-family: "BojaLab Mano", sans-serif; font-size: clamp(1.7rem, 3vw, 3.4rem); line-height: 1; color: var(--lime); transform: rotate(-3deg); }
.manifesto-lines p { margin: .08em 0; font-size: clamp(3.5rem, 9.6vw, 10rem); font-weight: 900; letter-spacing: -.07em; line-height: .86; }
.manifesto-lines span { font-family: "BojaLab Mano", sans-serif; font-weight: 400; color: var(--orange); }
.manifesto-note { width: min(660px, 90%); margin: 19vh 0 0 auto; display: grid; grid-template-columns: auto 1fr; gap: 2rem; align-items: start; }
.manifesto-note .note-number { font-family: "BojaLab Mano"; font-size: 6rem; line-height: .7; color: var(--lime); }
.manifesto-note p { margin: 0; font-size: clamp(1.25rem, 2.2vw, 2rem); line-height: 1.35; }

[data-reveal] { opacity: 0; transform: translateY(55px); transition: opacity .9s ease, transform .9s cubic-bezier(.2,.8,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.manifesto-lines [data-reveal]:nth-child(2) { transition-delay: .12s; }
.manifesto-lines [data-reveal]:nth-child(3) { transition-delay: .24s; }

.works { padding: 13vh 4vw; background: var(--paper); }
.works-heading { display: grid; grid-template-columns: .6fr 1.2fr .7fr; gap: 4vw; align-items: end; margin-bottom: 8vh; }
.works-heading h2 { margin: 0; font-size: clamp(3.8rem, 8vw, 8.5rem); line-height: .78; letter-spacing: -.07em; }
.works-heading h2 { grid-column: span 2; }
.works-heading h2 em { font-family: "BojaLab Mano", sans-serif; font-style: normal; color: var(--orange); font-weight: 400; }
.works-heading > p:last-child { max-width: 280px; margin: 0; font-size: 1rem; line-height: 1.5; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1vw; align-items: start; }
.work-card { position: relative; overflow: hidden; border: 2px solid var(--ink); transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s; }
.work-card:nth-child(2) { margin-top: 9vw; }
.work-card:hover { z-index: 2; transform: translateY(-16px) rotate(-1deg); box-shadow: 14px 14px 0 var(--ink); }
.work-card.orange:hover { transform: translateY(-16px) rotate(1.5deg); }
.work-card img { display: block; width: 100%; height: auto; }
.card-topline { display: flex; justify-content: space-between; padding: .75rem; border-bottom: 2px solid var(--ink); background: var(--paper); font-size: .55rem; font-weight: 900; letter-spacing: .1em; }

.dahu-section { position: relative; min-height: 115vh; overflow: hidden; background: var(--orange); border-top: 2px solid var(--ink); }
.dahu-ghost { position: absolute; right: -3vw; bottom: -12vw; font-family: "BojaLab Mano", sans-serif; font-size: 34vw; line-height: .7; color: rgba(255,249,236,.16); transform: rotate(-8deg); }
.dahu-stage { position: relative; z-index: 1; min-height: 115vh; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 4vw; padding: 12vh 5vw; }
.dahu-image { min-height: min(62vw, 700px); display: grid; place-items: center; }
.dahu-image .dahu-figure {
  width: min(108%, 820px); max-width: none; height: auto; margin-left: -4%;
  filter: drop-shadow(18px 22px 0 rgba(11,11,11,.11));
  animation: dahuSectionFloat 5.5s ease-in-out infinite;
}
@keyframes dahuSectionFloat { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-16px) rotate(1deg); } }
.dahu-copy h2 { margin: 2rem 0; font-size: clamp(5rem, 10vw, 11rem); line-height: .68; letter-spacing: -.07em; }
.dahu-copy h2 span { font-family: "BojaLab Mano", sans-serif; color: var(--paper); font-weight: 400; }
.dahu-copy > p:last-child { max-width: 470px; margin: 0; font-size: clamp(1.1rem, 1.6vw, 1.5rem); line-height: 1.45; }

.social-section { min-height: 88vh; position: relative; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: 10vh 5vw 5vh; background: var(--lime); border-top: 2px solid var(--ink); }
.social-section > p { margin: 0 0 2rem; font-size: .72rem; font-weight: 900; letter-spacing: .2em; }
.social-section > a { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: 2rem; border-block: 3px solid var(--ink); padding: 1.5rem 0 2.3rem; }
.social-section > a span { font-family: "BojaLab Mano", sans-serif; font-size: clamp(5rem, 15vw, 16rem); line-height: .75; letter-spacing: -.06em; }
.social-section > a b { font-size: clamp(4rem, 8vw, 8rem); transition: transform .3s; }
.social-section > a:hover b { transform: translate(12px, -12px); }
.social-bottom { display: flex; justify-content: space-between; margin-top: 2rem; font-size: .63rem; font-weight: 900; letter-spacing: .12em; }
.social-dahu { position: absolute; top: -12vw; right: -8vw; font-family: "BojaLab Mano"; font-size: 42vw; color: rgba(255,104,13,.21); transform: rotate(18deg); }

footer { display: flex; justify-content: space-between; gap: 2rem; padding: 1.5rem 4vw; background: var(--ink); color: var(--paper); font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
footer a { transition: color .2s ease; }
footer a:hover { color: var(--lime); }

@media (max-width: 900px) {
  .cursor-orb { display: none; }
  .topbar { height: 68px; grid-template-columns: 1fr auto; padding: 0 5vw; }
  .topbar nav { display: none; }
  .wordmark { font-size: 1.7rem; }
  .hero { min-height: 100svh; grid-template-columns: 1fr; align-content: center; padding: 100px 5vw 30px; }
  .hero-copy { align-self: end; }
  .hero h1 { font-size: clamp(6.5rem, 31vw, 12rem); }
  .hero-slogan { font-size: clamp(2.5rem, 11vw, 5rem); }
  .round-link { width: 78px; margin-top: 1.8rem; }
  .hero-visual { height: 38vh; align-self: end; }
  .dahu-window { inset: 0 -8% -4% -4%; }
  .dahu-window .dahu-figure { width: min(90%, 468px); }
  .dahu-caption { bottom: 2%; }
  .manifesto { min-height: 120vh; padding-block: 10vh; }
  .manifesto-balloon { top: 19vh; left: 54%; width: 62px; }
  .balloon-string { height: 10vh; }
  .manifesto-intro { margin-bottom: 12vh; }
  .manifesto-lines p { font-size: clamp(3.5rem, 14vw, 7rem); }
  .manifesto-note { margin-top: 13vh; }
  .works-heading { grid-template-columns: 1fr; gap: 1.5rem; }
  .works-heading h2 { font-size: clamp(4rem, 15vw, 7rem); }
  .works-heading h2 { grid-column: auto; }
  .cards { grid-template-columns: 1fr; gap: 2rem; padding-inline: 5vw; }
  .work-card:nth-child(2) { margin-top: 0; }
  .dahu-stage { min-height: auto; grid-template-columns: 1fr; padding-block: 8vh; }
  .dahu-image { min-height: 68vw; order: 2; }
  .dahu-image .dahu-figure { width: 108%; margin-left: -4%; }
  .dahu-copy h2 { font-size: clamp(5rem, 22vw, 9rem); }
  .social-section { min-height: 72vh; }
  .social-section > a { align-items: flex-end; }
  .social-section > a span { font-size: clamp(4rem, 20vw, 8rem); }
  .social-bottom { flex-direction: column; gap: .7rem; }
  footer { flex-direction: column; gap: .7rem; }
}

@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-reveal] { opacity: 1; transform: none; }
  .loader { display: none; }
}
