@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Manrope";
    src: url("../fonts/manrope-cyrillic.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
    font-family: "Unbounded";
    src: url("../fonts/unbounded-latin.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
    font-family: "Unbounded";
    src: url("../fonts/unbounded-cyrillic.woff2") format("woff2");
    font-style: normal;
    font-weight: 400 900;
    font-display: swap;
    unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

:root {
    --paper: #F2F0E9;
    --paper-rgb: 242, 240, 233;
    --ink: #0B0C0B;
    --ink-rgb: 11, 12, 11;
    --muted: #696B64;
    --green: #B8FF2C;
    --forest: #123C24;
    --white: #FFFFFF;
    --line: rgba(11, 12, 11, .22);
    --line-light: rgba(255, 255, 255, .2);
    --gutter: clamp(1rem, 2.4vw, 2.5rem);
    --section-space: clamp(6rem, 12vw, 12rem);
    --display: clamp(4.5rem, 12vw, 12.5rem);
    --ease: cubic-bezier(.16, 1, .3, 1);
    color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; background: var(--paper); }
body {
    margin: 0;
    min-width: 320px;
    overflow-x: clip;
    background: var(--paper);
    color: var(--ink);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.35;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}
body.is-locked { overflow: hidden; }
img, canvas { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
a:focus-visible, button:focus-visible { outline: 3px solid var(--green); outline-offset: 4px; }
::selection { background: var(--green); color: var(--ink); }
.arrow-icon { display: block; width: 1.15em; height: 1.15em; flex: 0 0 auto; overflow: visible; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 1000;
    padding: .75rem 1rem;
    transform: translateY(-180%);
    background: var(--green);
    color: var(--ink);
    font-weight: 700;
    transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.section-pad { padding-inline: var(--gutter); }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    min-height: 4.75rem;
    padding: 0 var(--gutter);
    background: rgba(var(--paper-rgb), .86);
    color: var(--ink);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}
.site-header::after {
    position: absolute;
    right: var(--gutter);
    bottom: 0;
    left: var(--gutter);
    height: 1px;
    background: currentColor;
    content: "";
    opacity: .35;
}
.site-header.is-over-dark { background: rgba(5, 6, 5, .28); color: var(--white); }
.site-header.is-over-dark .header-contact .arrow-icon { color: var(--green); }
.brand {
    justify-self: start;
    display: inline-flex;
    align-items: flex-start;
    font-family: "Unbounded", sans-serif;
    font-size: clamp(.72rem, .9vw, .9rem);
    font-weight: 700;
    letter-spacing: -.04em;
}
.brand sup { margin: -.16rem 0 0 .14rem; font: 700 .48rem/1 "Manrope", sans-serif; }
.site-nav { display: flex; gap: clamp(1.3rem, 3vw, 3rem); font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.site-nav a, .header-contact { position: relative; display: inline-flex; min-height: 44px; align-items: center; }
.site-nav a::after, .header-contact::after {
    position: absolute;
    right: 0;
    bottom: .65rem;
    left: 0;
    height: 1px;
    transform: scaleX(0);
    transform-origin: right;
    background: currentColor;
    content: "";
    transition: transform .45s var(--ease);
}
.site-nav a:hover::after, .header-contact:hover::after { transform: scaleX(1); transform-origin: left; }
.header-contact { justify-self: end; gap: .45rem; font-size: .72rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }

.video-cover {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    background: #050605;
    color: var(--white);
}
.video-cover__media { position: absolute; inset: 0; z-index: -3; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: 50% 50%; filter: saturate(.72) contrast(1.12) brightness(.83); }
.video-cover.is-video-fallback { background: #050605 url("../images/intro-reel-poster.webp") 50% 50% / cover no-repeat; }
.video-cover.is-video-fallback .video-cover__media { opacity: 0; }
.video-cover__wash { position: absolute; inset: 0; z-index: -2; background: radial-gradient(circle at 50% 56%, rgba(184, 255, 44, .14), transparent 26%), linear-gradient(180deg, rgba(3, 5, 3, .1), rgba(3, 5, 3, .08) 52%, rgba(5, 6, 5, .88)); pointer-events: none; }
.video-cover::before { position: absolute; inset: 0; z-index: -1; background-image: linear-gradient(to right, transparent calc(100% - 1px), rgba(255, 255, 255, .09) 1px); background-size: calc(100% / 12) 100%; border-inline: 1px solid rgba(255, 255, 255, .09); content: ""; opacity: .44; pointer-events: none; }
.video-cover::after { position: absolute; right: 0; bottom: 0; left: 0; z-index: 1; height: clamp(8rem, 22vh, 15rem); background: linear-gradient(180deg, transparent, rgba(var(--paper-rgb), .12) 36%, var(--paper)); content: ""; pointer-events: none; }
.video-cover__content { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-template-rows: auto 1fr auto; column-gap: 1rem; min-height: 100vh; min-height: 100svh; padding: 6.2rem var(--gutter) clamp(3rem, 7vh, 5.5rem); }
.video-cover__eyebrow { grid-column: 1 / span 5; margin: 0; font-size: .64rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.video-cover__title { grid-column: 1 / span 9; align-self: end; margin: 0 0 clamp(2.5rem, 8vh, 6rem); font: 650 clamp(4rem, 9.5vw, 10rem)/.82 "Unbounded", sans-serif; letter-spacing: -.085em; text-transform: uppercase; text-shadow: 0 1rem 5rem rgba(0, 0, 0, .34); }
.video-cover__next { grid-column: 11 / -1; align-self: end; justify-self: end; display: inline-flex; min-width: 6rem; align-items: center; justify-content: space-between; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid currentColor; font-size: .62rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.scroll-glyph { width: 1.2rem; height: 2rem; fill: none; stroke: var(--green); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.section-bridge { position: relative; z-index: 8; width: 100%; pointer-events: none; }
.section-bridge--video-hero { height: clamp(5rem, 13vh, 9rem); margin-top: clamp(-9rem, -13vh, -5rem); background: linear-gradient(180deg, transparent, rgba(var(--paper-rgb), .92) 56%, var(--paper)); }

.hero {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    min-height: 100svh;
    overflow: hidden;
    padding: 5.4rem var(--gutter) 1.5rem;
    background: var(--paper);
}
.hero-grid {
    position: absolute;
    inset: 0 var(--gutter);
    z-index: -1;
    pointer-events: none;
    background-image: linear-gradient(to right, transparent calc(100% - 1px), rgba(var(--ink-rgb), .1) 1px);
    background-size: calc(100% / 12) 100%;
    border-left: 1px solid rgba(var(--ink-rgb), .1);
}
.hero-kicker { position: relative; z-index: 4; display: flex; justify-content: space-between; padding-top: .45rem; font-size: clamp(.62rem, .72vw, .78rem); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.hero-media {
    position: absolute;
    top: 15%;
    left: 50%;
    z-index: 1;
    width: min(53vw, 860px);
    height: 61%;
    transform: translateX(-50%) rotate(-2deg);
    overflow: hidden;
    background: #DEDCD4;
    box-shadow: 0 2rem 6rem rgba(var(--ink-rgb), .12);
}
.hero-media::after { position: absolute; inset: 0; z-index: 3; border: 1px solid rgba(var(--ink-rgb), .3); content: ""; pointer-events: none; }
.hero-media img, .hero-media canvas { width: 100%; height: 100%; object-fit: cover; }
.hero-media img { position: relative; z-index: 1; transition: opacity .5s ease; }
.hero-media canvas { position: absolute; inset: 0; z-index: 2; opacity: 0; transition: opacity .7s ease; }
.hero-media.is-webgl canvas { opacity: 1; }
.hero-title { position: absolute; inset: 18% var(--gutter) auto; z-index: 2; display: flex; flex-direction: column; margin: 0; pointer-events: none; line-height: .78; }
.hero-alias, .hero-tagline { display: block; white-space: nowrap; text-transform: uppercase; }
.hero-alias {
    align-self: flex-start;
    margin-left: -.04em;
    color: var(--green);
    font-family: "Unbounded", sans-serif;
    font-size: clamp(4.4rem, 12.2vw, 12.2rem);
    font-weight: 700;
    letter-spacing: -.085em;
    text-shadow: 0 1px 0 rgba(var(--ink-rgb), .22);
}
.hero-tagline { align-self: flex-end; margin: clamp(10rem, 26vh, 17rem) -.04em 0 0; font-size: clamp(2.7rem, 7.6vw, 7.6rem); font-weight: 800; letter-spacing: -.085em; }
.hero-bottom { position: absolute; right: var(--gutter); bottom: 1.25rem; left: var(--gutter); z-index: 5; display: grid; grid-template-columns: repeat(12, 1fr); align-items: end; gap: 1rem; }
.hero-bottom p { grid-column: 1 / span 4; margin: 0; font-size: clamp(.95rem, 1.35vw, 1.3rem); font-weight: 600; letter-spacing: -.03em; }
.round-link {
    grid-column: 11 / span 2;
    justify-self: end;
    display: flex;
    width: clamp(5.6rem, 7.6vw, 7.6rem);
    aspect-ratio: 1;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: background .45s var(--ease), color .45s var(--ease), transform .45s var(--ease);
}
.round-link:hover { transform: rotate(-8deg) scale(1.04); background: var(--green); color: var(--ink); }
.hero-index { position: absolute; right: calc(var(--gutter) + 17%); bottom: 2rem; z-index: 4; font: 600 .58rem/1 "Unbounded", sans-serif; }

.creative-playground { position: relative; height: 240vh; height: 240svh; background: var(--ink); color: var(--white); }
.creative-playground::before { position: absolute; inset: 0 0 auto; z-index: 4; height: clamp(7rem, 16vh, 12rem); background: linear-gradient(180deg, var(--paper), rgba(var(--paper-rgb), .42) 35%, transparent); content: ""; pointer-events: none; }
.playground-stage { position: sticky; top: 0; isolation: isolate; width: 100%; min-height: 100vh; min-height: 100svh; overflow: hidden; background: radial-gradient(circle at 50% 50%, rgba(38, 74, 36, .62), transparent 36%), linear-gradient(140deg, #090b09, #11170f 55%, #050605); }
.playground-stage::before { position: absolute; inset: 0; z-index: -1; background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px); background-size: 4rem 4rem; content: ""; mask-image: radial-gradient(circle, #000 20%, transparent 76%); }
.playground-stage canvas { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; max-width: none; cursor: crosshair; opacity: 0; pointer-events: none; transition: opacity .8s var(--ease); touch-action: pan-y; }
.creative-playground.is-webgl-active .playground-stage canvas { opacity: 1; pointer-events: auto; }
.playground-copy { position: absolute; inset: clamp(5.5rem, 10vh, 8rem) var(--gutter) auto; z-index: 3; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 1rem; pointer-events: none; }
.playground-kicker { grid-column: 1 / span 3; margin: 0; color: var(--green); font-size: .62rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.playground-copy h2 { grid-column: 3 / span 8; margin: clamp(4rem, 10vh, 8rem) 0 0; font: 650 clamp(4.3rem, 10vw, 10rem)/.78 "Unbounded", sans-serif; letter-spacing: -.09em; text-align: center; text-transform: uppercase; text-wrap: balance; }
.playground-copy h2 em { color: var(--green); font-family: "Manrope", sans-serif; font-size: .42em; font-style: normal; font-weight: 750; letter-spacing: -.065em; }
.playground-instruction { grid-column: 10 / -1; margin: 2rem 0 0; color: rgba(255, 255, 255, .66); font-size: .68rem; font-weight: 650; letter-spacing: .04em; text-transform: uppercase; }
.playground-fallback { position: absolute; inset: 0; z-index: 1; }
.playground-fallback button { position: absolute; width: clamp(8rem, 15vw, 15rem); padding: 0; overflow: hidden; border: 1px solid rgba(255, 255, 255, .32); background: #111; color: var(--white); cursor: pointer; box-shadow: 0 2rem 5rem rgba(0, 0, 0, .32); transition: transform .65s var(--ease), border-color .35s ease; }
.playground-fallback button:hover { z-index: 4; transform: translateY(-.5rem) rotate(0deg) scale(1.035) !important; border-color: var(--green); }
.playground-fallback button:nth-child(1) { top: 16%; left: 3%; transform: rotate(-5deg); }
.playground-fallback button:nth-child(2) { top: 13%; right: 5%; transform: rotate(4deg); }
.playground-fallback button:nth-child(3) { bottom: 8%; left: 13%; transform: rotate(4deg); }
.playground-fallback button:nth-child(4) { right: 10%; bottom: 7%; transform: rotate(-4deg); }
.playground-fallback button:nth-child(5) { top: 5%; left: 39%; width: clamp(6rem, 11vw, 11rem); transform: rotate(2deg); }
.playground-fallback button:nth-child(6) { right: 40%; bottom: 2%; width: clamp(6rem, 12vw, 12rem); transform: rotate(-3deg); }
.playground-fallback img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.playground-fallback button > span { position: absolute; right: 0; bottom: 0; left: 0; display: flex; align-items: center; justify-content: space-between; gap: .6rem; padding: .6rem; background: linear-gradient(180deg, transparent, rgba(4, 5, 4, .92)); font-size: .52rem; font-weight: 750; letter-spacing: .04em; text-transform: uppercase; }
.playground-fallback span i { color: var(--green); font-style: normal; }
.creative-playground.is-webgl-active .playground-fallback { inset: auto var(--gutter) 1.25rem; z-index: 5; display: flex; justify-content: center; gap: .35rem; }
.creative-playground.is-webgl-active .playground-fallback button { position: static; width: auto; transform: none; overflow: visible; border: 0; border-bottom: 1px solid rgba(255, 255, 255, .28); background: transparent; box-shadow: none; }
.creative-playground.is-webgl-active .playground-fallback button:hover { transform: translateY(-2px) !important; border-color: var(--green); }
.creative-playground.is-webgl-active .playground-fallback img { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.creative-playground.is-webgl-active .playground-fallback button > span { position: static; padding: .65rem .75rem; background: transparent; }
.playground-status { position: absolute; right: var(--gutter); bottom: 1.7rem; z-index: 4; margin: 0; color: rgba(255, 255, 255, .42); font: 650 .52rem/1 "Unbounded", sans-serif; letter-spacing: .06em; text-transform: uppercase; }
.creative-playground.is-webgl-active .playground-status { display: none; }
.section-bridge--playground-about { height: clamp(7rem, 18vh, 13rem); margin-top: clamp(-13rem, -18vh, -7rem); background: linear-gradient(180deg, transparent, rgba(184, 255, 44, .2) 28%, rgba(var(--paper-rgb), .88) 72%, var(--paper)); }

.section-label { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; padding: 1rem 0; border-top: 1px solid var(--line); font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.section-label span:first-child { grid-column: 1 / span 2; }
.section-label span:last-child { grid-column: 3 / span 4; }
.section-label--light { border-color: var(--line-light); }
.about { position: relative; padding-top: var(--section-space); padding-bottom: var(--section-space); background: var(--paper); }
.about::after { position: absolute; right: 0; bottom: 0; left: 0; height: clamp(5rem, 12vh, 9rem); transform: translateY(99%); background: linear-gradient(180deg, var(--paper), rgba(var(--paper-rgb), .78) 40%, transparent); content: ""; pointer-events: none; }
.about-layout { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 1rem; align-items: start; margin-top: clamp(3rem, 6vw, 6rem); }
.about-portrait { grid-column: 2 / span 4; position: relative; margin: 0; }
.about-portrait::before { position: absolute; top: -1rem; right: -1rem; z-index: 2; width: 4rem; height: 4rem; border-radius: 50%; background: var(--green); content: ""; mix-blend-mode: multiply; }
.about-portrait img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; filter: saturate(.72) contrast(1.05); }
.about-portrait figcaption { display: flex; justify-content: space-between; margin-top: .65rem; color: var(--muted); font-size: .58rem; letter-spacing: .04em; text-transform: uppercase; }
.about-copy { grid-column: 7 / -1; display: flex; flex-direction: column; min-height: 100%; }
.about-intro { max-width: 14ch; margin: 0; font-size: clamp(2.7rem, 5.4vw, 5.6rem); font-weight: 500; letter-spacing: -.07em; line-height: .98; }
.about-intro strong { position: relative; font-weight: 750; }
.about-intro strong::after { position: absolute; right: -.1em; bottom: -.03em; left: 0; z-index: -1; height: .22em; transform: rotate(-2deg); background: var(--green); content: ""; }
.about-statement { max-width: 40rem; margin: clamp(2rem, 5vw, 5rem) 0 0; font-size: clamp(1.15rem, 2vw, 2rem); font-weight: 500; letter-spacing: -.035em; line-height: 1.25; }
.capabilities { margin-top: clamp(3rem, 8vw, 8rem); border-top: 1px solid var(--line); }
.capabilities div { display: grid; grid-template-columns: 3rem 1fr; align-items: center; min-height: 4rem; border-bottom: 1px solid var(--line); transition: padding-left .45s var(--ease), background .45s var(--ease); }
.capabilities div:hover { padding-left: .75rem; background: var(--green); }
.capabilities span { color: var(--muted); font-size: .6rem; }
.capabilities p { margin: 0; font-size: clamp(.9rem, 1.2vw, 1.15rem); font-weight: 650; }

.work { position: relative; overflow: hidden; background: var(--ink); color: var(--white); }
.work-heading { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: 1rem; padding-top: var(--section-space); padding-bottom: clamp(3rem, 6vw, 6rem); }
.work-heading .section-label { grid-column: 1 / -1; }
.work-heading h2 { grid-column: 1 / span 9; margin: clamp(3rem, 7vw, 7rem) 0 0; font-size: clamp(4rem, 9.3vw, 9.4rem); font-weight: 750; letter-spacing: -.08em; line-height: .82; text-transform: uppercase; }
.work-heading h2 em { color: var(--green); font: normal 500 .66em/1 "Unbounded", sans-serif; letter-spacing: -.07em; }
.work-heading > p { grid-column: 10 / -1; align-self: end; margin: 0 0 .3rem; color: rgba(255, 255, 255, .65); font-size: clamp(.86rem, 1.1vw, 1rem); }
.gallery-viewport { overflow: visible; }
.gallery-track { display: block; width: 100%; }
.case-scene { --scene-ink: #fff; position: relative; isolation: isolate; min-height: 100vh; min-height: 100svh; overflow: clip; background: #171916; color: var(--scene-ink); }
.case-backdrop { position: absolute; inset: -7%; z-index: -2; background-image: var(--case-cover); background-position: center; background-size: cover; filter: blur(28px) saturate(.7) brightness(.42); transform: scale(1.09); opacity: .88; }
.case-scene::after { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(5, 7, 5, .8) 0%, rgba(5, 7, 5, .48) 49%, rgba(5, 7, 5, .2) 100%), linear-gradient(0deg, rgba(5, 7, 5, .56), transparent 50%); content: ""; }
.case-scene--pearls, .case-scene--meria { --scene-ink: var(--ink); }
.case-scene--pearls::after, .case-scene--meria::after { background: linear-gradient(90deg, rgba(244, 239, 227, .94) 0%, rgba(244, 239, 227, .7) 50%, rgba(244, 239, 227, .25) 100%); }
.case-scene--pearls .case-backdrop, .case-scene--meria .case-backdrop { filter: blur(30px) saturate(.65) brightness(1.08); opacity: .88; }
.case-content { position: relative; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-template-rows: auto 1fr; column-gap: 1rem; min-height: inherit; padding: 5.8rem var(--gutter) 2rem; }
.case-meta { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: .85rem 0; border-top: 1px solid currentColor; border-bottom: 1px solid currentColor; font-size: .59rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.case-meta span:nth-child(2) { justify-self: center; }
.case-meta span:last-child { justify-self: end; }
.case-copy { grid-column: 1 / span 7; align-self: center; position: relative; z-index: 3; padding: 2rem 0; }
.case-copy h3 { max-width: 10ch; margin: 0; font: 650 clamp(3.8rem, 7.5vw, 8rem)/.85 "Unbounded", sans-serif; letter-spacing: -.075em; text-wrap: balance; }
.case-copy p { max-width: 27rem; margin: 1.6rem 0 0; font-size: clamp(.9rem, 1.1vw, 1.1rem); font-weight: 650; letter-spacing: -.02em; }
.case-open { display: inline-flex; min-height: 3.5rem; align-items: center; gap: 1.2rem; margin-top: 2rem; padding: 0 1.5rem; border: 1px solid currentColor; border-radius: 999px; background: transparent; color: inherit; cursor: pointer; font-size: .66rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; transition: color .35s ease, background .35s ease, transform .35s var(--ease); }
.case-open:hover { transform: translateY(-3px); background: var(--green); color: var(--ink); }
.case-stack { grid-column: 8 / -1; align-self: center; position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: center; gap: clamp(.45rem, 1vw, 1rem); perspective: 1200px; }
.case-stack figure { position: relative; margin: 0; transform-origin: 50% 100%; filter: drop-shadow(0 2rem 2.5rem rgba(0, 0, 0, .24)); }
.case-stack figure:nth-child(1) { z-index: 2; transform: rotate(-5deg) translateY(-2vh); }
.case-stack figure:nth-child(2) { z-index: 3; transform: scale(1.08); }
.case-stack figure:nth-child(3) { z-index: 1; transform: rotate(5deg) translateY(3vh); }
.case-stack img { width: 100%; aspect-ratio: 3 / 4; border: 1px solid rgba(255, 255, 255, .48); object-fit: cover; }

.case-showcase { position: fixed; inset: 0; z-index: 500; width: 100%; max-width: none; height: 100%; max-height: none; margin: 0; padding: 0; overflow-x: hidden; overflow-y: auto; border: 0; background: var(--ink); color: var(--white); overscroll-behavior: contain; }
.case-showcase::backdrop { background: rgba(4, 7, 5, .9); backdrop-filter: blur(10px); }
.showcase-header { position: sticky; top: 0; z-index: 20; display: grid; grid-template-columns: 1fr auto; align-items: center; min-height: 4.8rem; padding: 0 var(--gutter); border-bottom: 1px solid rgba(255, 255, 255, .22); background: rgba(var(--ink-rgb), .88); backdrop-filter: blur(18px); }
.showcase-header__identity { display: flex; gap: 1.2rem; font-size: .58rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }
.showcase-header__identity span:first-child { color: var(--green); }
.showcase-close { display: inline-flex; min-height: 2.8rem; align-items: center; gap: .8rem; padding: 0 1rem; border: 1px solid rgba(255, 255, 255, .5); border-radius: 999px; background: transparent; color: var(--white); cursor: pointer; font-size: .58rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.showcase-close svg, .creative-viewer__top svg { width: .9rem; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; }
.showcase-progress { position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; overflow: hidden; }
.showcase-progress i { display: block; width: 100%; height: 100%; transform: scaleX(0); transform-origin: left; background: var(--green); will-change: transform; }
.showcase-hero { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-template-rows: auto 1fr auto; gap: 1rem; min-height: min(82svh, 58rem); padding: clamp(4rem, 8vw, 8rem) var(--gutter) 3rem; border-bottom: 1px solid rgba(255, 255, 255, .18); }
.showcase-hero > p { grid-column: 1 / span 4; margin: 0; color: rgba(255, 255, 255, .6); font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.showcase-hero h2 { grid-column: 1 / -1; align-self: center; max-width: 11ch; margin: 0; color: var(--green); font: 650 clamp(4rem, 10vw, 10rem)/.82 "Unbounded", sans-serif; letter-spacing: -.08em; text-wrap: balance; }
.showcase-hero__bottom { grid-column: 1 / -1; display: flex; align-items: end; justify-content: space-between; gap: 2rem; }
.showcase-hero__bottom p { max-width: 30rem; margin: 0; font-size: clamp(1rem, 1.4vw, 1.35rem); letter-spacing: -.025em; }
.showcase-hero__bottom span { font: 650 clamp(1.4rem, 3vw, 3rem)/1 "Unbounded", sans-serif; letter-spacing: -.06em; }
.showcase-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(1rem, 2.2vw, 2.5rem); padding: clamp(4rem, 8vw, 8rem) var(--gutter); }
.showcase-item { margin: 0; }
.showcase-item:nth-child(6n+1) { grid-column: 1 / span 7; }
.showcase-item:nth-child(6n+2) { grid-column: 9 / span 4; margin-top: 12vw; }
.showcase-item:nth-child(6n+3) { grid-column: 2 / span 4; }
.showcase-item:nth-child(6n+4) { grid-column: 7 / span 6; margin-top: -3vw; }
.showcase-item:nth-child(6n+5) { grid-column: 1 / span 5; margin-top: 5vw; }
.showcase-item:nth-child(6n+6) { grid-column: 7 / span 4; }
.showcase-item button { position: relative; display: block; width: 100%; padding: 0; overflow: hidden; border: 0; background: #161816; color: var(--white); cursor: zoom-in; }
.showcase-item button::after { position: absolute; inset: 0; border: 1px solid rgba(255, 255, 255, .25); content: ""; pointer-events: none; }
.showcase-item img { width: 100%; height: auto; transition: transform .8s var(--ease), filter .5s ease; }
.showcase-item button:hover img { transform: scale(1.025); filter: brightness(.78); }
.showcase-item span { position: absolute; right: .75rem; bottom: .75rem; z-index: 2; display: grid; width: 2.35rem; aspect-ratio: 1; place-items: center; border-radius: 50%; background: var(--green); color: var(--ink); font: 750 .56rem/1 "Unbounded", sans-serif; }
.showcase-footer { display: flex; min-height: 22rem; align-items: end; justify-content: space-between; gap: 2rem; padding: 3rem var(--gutter); border-top: 1px solid rgba(255, 255, 255, .2); background: var(--green); color: var(--ink); font: 700 clamp(1.2rem, 2vw, 2rem)/1 "Unbounded", sans-serif; text-transform: uppercase; }
.showcase-footer button { padding: 0 0 .3rem; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: inherit; cursor: pointer; font-size: .62rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }

.creative-viewer[hidden] { display: none; }
.creative-viewer { position: fixed; inset: 0; z-index: 40; display: grid; grid-template-rows: auto minmax(0, 1fr) auto; padding: 1rem var(--gutter); background: rgba(5, 6, 5, .97); color: var(--white); }
.creative-viewer__top { display: flex; align-items: center; justify-content: space-between; min-height: 3.5rem; font: 700 .6rem/1 "Unbounded", sans-serif; }
.creative-viewer__top button { display: grid; width: 2.8rem; aspect-ratio: 1; place-items: center; border: 1px solid rgba(255, 255, 255, .6); border-radius: 50%; background: transparent; color: inherit; cursor: pointer; }
.creative-viewer figure { display: grid; min-height: 0; place-items: center; margin: 0; }
.creative-viewer figure img { width: auto; max-width: min(88vw, 56rem); height: auto; max-height: calc(100svh - 10rem); object-fit: contain; box-shadow: 0 2rem 6rem rgba(0, 0, 0, .5); }
.creative-viewer__nav { display: flex; min-height: 4.5rem; align-items: center; justify-content: center; gap: .65rem; }
.creative-viewer__nav button { display: grid; width: 3rem; aspect-ratio: 1; place-items: center; border: 1px solid rgba(255, 255, 255, .6); border-radius: 50%; background: transparent; color: inherit; cursor: pointer; transition: background .25s ease, color .25s ease; }
.creative-viewer__nav button:hover { background: var(--green); color: var(--ink); }

.site-footer { position: relative; overflow: hidden; background: var(--green); color: var(--ink); }
.footer-cta { position: relative; display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); min-height: min(78vh, 50rem); padding: clamp(4rem, 8vw, 8rem) var(--gutter) 3rem; }
.footer-cta::before { position: absolute; top: 50%; left: 50%; width: clamp(14rem, 31vw, 31rem); aspect-ratio: 1; transform: translate(-50%, -50%) scale(.25); border: 1px solid rgba(var(--ink-rgb), .35); border-radius: 50%; content: ""; opacity: 0; transition: transform .9s var(--ease), opacity .5s ease; }
.footer-cta:hover::before { transform: translate(-50%, -50%) scale(1); opacity: 1; }
.footer-eyebrow { grid-column: 1 / span 4; align-self: start; font-size: .66rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer-question, .footer-answer { position: relative; z-index: 1; grid-column: 1 / -1; font-size: clamp(3.9rem, 10vw, 10rem); font-weight: 750; letter-spacing: -.08em; line-height: .82; text-transform: uppercase; }
.footer-question { align-self: end; }
.footer-answer { align-self: start; justify-self: end; text-align: right; }
.footer-answer i { display: inline-flex; font-family: "Manrope", sans-serif; font-size: .58em; font-style: normal; transition: transform .5s var(--ease); }
.footer-answer i .arrow-icon { width: .9em; height: .9em; stroke-width: 1.1; }
.footer-cta:hover .footer-answer i { transform: translate(.18em, -.18em); }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 4.5rem; margin: 0 var(--gutter); border-top: 1px solid rgba(var(--ink-rgb), .4); font-size: .62rem; font-weight: 750; letter-spacing: .05em; text-transform: uppercase; }
.footer-bottom a { text-decoration: underline; text-underline-offset: .25em; }
.footer-bottom span:last-child { justify-self: end; }

.cursor { position: fixed; top: 0; left: 0; z-index: 999; display: none; width: 4.6rem; height: 4.6rem; align-items: center; justify-content: center; transform: translate(-50%, -50%) scale(0); border-radius: 50%; background: var(--green); color: var(--ink); pointer-events: none; font-size: .56rem; font-weight: 800; letter-spacing: .08em; opacity: 0; }
@media (hover: hover) and (pointer: fine) {
    .cursor { display: flex; }
    .is-enhanced [data-case] { cursor: none; }
}

@media (max-width: 1024px) {
    .video-cover__title { grid-column: 1 / span 10; }
    .hero-media { top: 18%; width: 64vw; height: 56%; }
    .hero-title { top: 23%; }
    .hero-alias { font-size: 11.8vw; }
    .hero-tagline { margin-top: clamp(11rem, 28vh, 15rem); font-size: 7.5vw; }
    .about-portrait { grid-column: 1 / span 5; }
    .about-copy { grid-column: 7 / -1; }
    .playground-copy h2 { grid-column: 2 / span 10; }
    .playground-fallback button { width: clamp(7rem, 17vw, 11rem); }
    .case-copy h3 { font-size: clamp(3.2rem, 7vw, 5.8rem); }
    .case-stack figure { width: 100%; }
}

@media (max-width: 767px) {
    :root { --gutter: 1rem; --section-space: 6.5rem; }
    body { font-size: 15px; }
    .site-header { grid-template-columns: 1fr auto; min-height: 4rem; }
    .site-header::after { right: 1rem; left: 1rem; }
    .site-nav { display: none; }
    .header-contact { font-size: .64rem; }
    .video-cover__media { object-position: 50% 50%; }
    .video-cover__content { display: flex; min-height: 100svh; flex-direction: column; justify-content: space-between; padding: 5.25rem var(--gutter) 3.5rem; }
    .video-cover__eyebrow { font-size: .52rem; }
    .video-cover__title { margin: auto 0 4rem; font-size: clamp(3rem, 13.8vw, 4.7rem); line-height: .83; }
    .video-cover__next { min-width: 5.5rem; align-self: flex-end; font-size: .56rem; }
    .section-bridge--video-hero { height: 6rem; margin-top: -6rem; }
    .hero { min-height: 100svh; padding-top: 4.6rem; padding-bottom: 1rem; }
    .hero-grid { inset: 0 var(--gutter); background-size: 25% 100%; }
    .hero-kicker { font-size: .55rem; }
    .hero-kicker span:last-child { display: none; }
    .hero-media { top: 20%; left: 14%; width: 81%; height: 52%; transform: rotate(-3deg); }
    .hero-title { top: 18%; line-height: .84; }
    .hero-alias { font-size: clamp(3.2rem, 15vw, 4.2rem); letter-spacing: -.09em; }
    .hero-tagline { margin-top: 49vh; font-size: clamp(2rem, 10.4vw, 2.8rem); letter-spacing: -.09em; }
    .hero-bottom { bottom: 1rem; display: flex; justify-content: space-between; gap: 1rem; }
    .hero-bottom p { font-size: .82rem; }
    .round-link { width: 4.8rem; flex: 0 0 4.8rem; font-size: .56rem; }
    .hero-index { display: none; }
    .creative-playground { height: 190svh; }
    .creative-playground::before { height: 7rem; }
    .playground-copy { inset: 5.5rem var(--gutter) auto; display: flex; flex-direction: column; }
    .playground-kicker { font-size: .52rem; }
    .playground-copy h2 { margin-top: 2.2rem; font-size: clamp(3.1rem, 14vw, 4.6rem); text-align: left; }
    .playground-instruction { max-width: 17rem; margin-top: 1.25rem; font-size: .56rem; }
    .playground-fallback, .creative-playground.is-webgl-active .playground-fallback { inset: auto 0 1.2rem; display: grid; grid-auto-flow: column; grid-auto-columns: 66vw; justify-content: start; gap: .65rem; overflow-x: auto; padding: 1rem var(--gutter); scroll-padding-inline: var(--gutter); scroll-snap-type: x mandatory; scrollbar-width: none; }
    .playground-fallback::-webkit-scrollbar { display: none; }
    .playground-fallback button, .playground-fallback button:nth-child(n), .creative-playground.is-webgl-active .playground-fallback button { position: relative; top: auto; right: auto; bottom: auto; left: auto; width: auto; transform: none; border: 1px solid rgba(255, 255, 255, .3); background: #101210; box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, .3); scroll-snap-align: start; }
    .creative-playground.is-webgl-active .playground-fallback { grid-auto-columns: auto; }
    .creative-playground.is-webgl-active .playground-fallback button { border-width: 0 0 1px; background: transparent; box-shadow: none; }
    .creative-playground.is-webgl-active .playground-fallback button > span { padding-inline: .45rem; }
    .playground-status { display: none; }
    .section-bridge--playground-about { height: 7rem; margin-top: -7rem; }
    .section-label { grid-template-columns: 3rem 1fr; gap: 0; }
    .section-label span:first-child, .section-label span:last-child { grid-column: auto; }
    .about-layout { display: flex; flex-direction: column; gap: 3.5rem; margin-top: 2.5rem; }
    .about-portrait { width: 79%; margin-left: auto; }
    .about-portrait figcaption { font-size: .48rem; }
    .about-intro { max-width: 11ch; font-size: clamp(2.7rem, 13vw, 3.5rem); }
    .about-statement { margin-top: 2rem; font-size: 1.15rem; }
    .capabilities { margin-top: 4rem; }
    .capabilities div { min-height: 3.8rem; }
    .work-heading { display: block; }
    .work-heading h2 { margin-top: 3rem; font-size: clamp(3.2rem, 15vw, 4.3rem); }
    .work-heading h2 em { font-size: .48em; }
    .work-heading > p { max-width: 24rem; margin-top: 2rem; }
    .gallery-viewport { overflow: visible; }
    .gallery-track { display: block; width: auto; transform: none !important; will-change: auto; }
    .gallery-track::-webkit-scrollbar { display: none; }
    .case-scene { min-height: 92svh; }
    .case-content { display: flex; flex-direction: column; padding-top: 4.8rem; padding-bottom: 1.25rem; }
    .case-meta { grid-template-columns: 1fr auto; font-size: .5rem; }
    .case-meta span:nth-child(2) { display: none; }
    .case-copy { display: flex; min-height: 32svh; flex-direction: column; justify-content: center; padding: 2rem 0 1rem; }
    .case-copy h3 { max-width: 11ch; font-size: clamp(2.35rem, 11vw, 3.7rem); }
    .case-copy p { max-width: 19rem; margin-top: 1rem; font-size: .82rem; }
    .case-open { min-height: 3rem; align-self: flex-start; margin-top: 1.35rem; padding: 0 1.1rem; font-size: .56rem; }
    .case-stack { display: grid; grid-auto-flow: column; grid-auto-columns: 66vw; align-items: center; width: calc(100% + 2 * var(--gutter)); height: auto; margin: auto calc(-1 * var(--gutter)) 0; gap: .7rem; overflow-x: auto; padding: 1rem var(--gutter) 1.5rem; scroll-padding-inline: var(--gutter); scroll-snap-type: x mandatory; scrollbar-width: none; }
    .case-stack::-webkit-scrollbar { display: none; }
    .case-stack figure, .case-stack figure:nth-child(1), .case-stack figure:nth-child(2), .case-stack figure:nth-child(3) { position: static; display: block; width: auto; margin: 0; transform: none; filter: drop-shadow(0 1rem 1.4rem rgba(0, 0, 0, .2)); scroll-snap-align: start; }
    .case-stack img { aspect-ratio: 3 / 4; }
    .showcase-header { min-height: 4.25rem; }
    .showcase-header__identity span:last-child, .showcase-close span { display: none; }
    .showcase-close { min-width: 2.75rem; padding: 0; justify-content: center; }
    .showcase-hero { display: flex; min-height: 68svh; flex-direction: column; justify-content: space-between; padding: 4rem var(--gutter) 2rem; }
    .showcase-hero > p { font-size: .52rem; }
    .showcase-hero h2 { max-width: 10ch; font-size: clamp(2.8rem, 13vw, 4.2rem); }
    .showcase-hero__bottom { align-items: end; }
    .showcase-hero__bottom p { max-width: 18rem; font-size: .86rem; }
    .showcase-hero__bottom span { font-size: 1rem; }
    .showcase-grid { display: flex; flex-direction: column; gap: 3.5rem; padding: 4rem var(--gutter) 6rem; }
    .showcase-item, .showcase-item:nth-child(n) { width: 100%; margin: 0; }
    .showcase-item:nth-child(3n+2) { width: 84%; align-self: flex-end; }
    .showcase-item:nth-child(3n+3) { width: 88%; }
    .showcase-footer { min-height: 16rem; flex-direction: column; align-items: flex-start; justify-content: space-between; padding-block: 2rem; }
    .creative-viewer { padding: .5rem var(--gutter); }
    .creative-viewer figure img { max-width: 100%; max-height: calc(100svh - 9rem); }
    .footer-cta { display: flex; min-height: 73svh; flex-direction: column; justify-content: space-between; padding-top: 4rem; }
    .footer-question, .footer-answer { font-size: clamp(3.25rem, 15vw, 4.5rem); }
    .footer-answer { align-self: flex-end; }
    .footer-bottom { grid-template-columns: 1fr auto; min-height: 4rem; font-size: .54rem; }
    .footer-bottom a { justify-self: end; }
    .footer-bottom span:last-child { display: none; }
}

@media (max-width: 370px) {
    .hero-alias { font-size: 14.5vw; }
    .hero-tagline { font-size: 9.8vw; }
    .hero-bottom p { max-width: 13rem; font-size: .72rem; }
    .round-link { width: 4.25rem; flex-basis: 4.25rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .cursor, .hero-media canvas, .playground-stage canvas { display: none !important; }
    .video-cover { background: #050605 url("../images/intro-reel-poster.webp") 50% 50% / cover no-repeat; }
    .video-cover__media { opacity: 0; }
    .creative-playground { height: auto; }
    .playground-stage { position: relative; min-height: 100svh; }
    .gallery-track { transform: none !important; }
}
