:root {
  --ink: #050505;
  --ink-soft: #0d0c0a;
  --paper: #f2eee3;
  --gold: #ccb05e;
  --gold-bright: #e5c96f;
  --amber: #fd9800;
  --white: #fffdf7;
  --line: rgba(204, 176, 94, 0.28);
  --pad: clamp(1.2rem, 4vw, 4.5rem);
  --display: "Helvetica Neue", "Segoe UI Variable Display", "Aptos Display", Arial, sans-serif;
  --body: "Segoe UI Variable Text", "Helvetica Neue", Arial, sans-serif;
  --scroll: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--gold-bright);
}

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--gold-bright);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.grain,
.field-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.field-canvas {
  z-index: 0;
  opacity: 1;
}

.grain {
  z-index: 1;
  opacity: 0.12;
  background-image:
    repeating-radial-gradient(circle at 17% 32%, transparent 0, rgba(255,255,255,.07) .6px, transparent 1.2px),
    repeating-radial-gradient(circle at 82% 67%, transparent 0, rgba(204,176,94,.08) .7px, transparent 1.3px);
  background-size: 6px 6px, 9px 9px;
  mix-blend-mode: soft-light;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 6.6rem;
  padding: 1.25rem var(--pad);
  border-bottom: 1px solid transparent;
  transition: min-height 300ms ease, background 300ms ease, border-color 300ms ease;
}

.site-header.is-scrolled {
  min-height: 4.8rem;
  border-color: var(--line);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(18px) saturate(130%);
}

.brand {
  justify-self: start;
  width: clamp(8.5rem, 13vw, 12rem);
}

.brand img {
  width: 100%;
  height: auto;
}

.header-mark {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.header-mark::before,
.header-mark::after {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: var(--line);
}

.desktop-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.5rem);
}

.desktop-nav a,
.menu-panel a {
  position: relative;
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -0.45rem;
  height: 1px;
  background: var(--amber);
  transition: right 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 3rem;
  height: 3rem;
  padding: 0;
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(0,0,0,.25);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 1.1rem;
  height: 1px;
  margin: 0.26rem auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(0.27rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-0.27rem) rotate(-45deg);
}

.menu-panel {
  position: fixed;
  z-index: 45;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 1.6rem;
  padding: 7rem var(--pad) 3rem;
  background: rgba(5,5,5,.96);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1rem);
  transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
}

.menu-panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.menu-panel a {
  font-family: var(--display);
  font-size: clamp(2rem, 9vw, 4.5rem);
  letter-spacing: -0.04em;
}

.scroll-progress {
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  width: calc(var(--scroll) * 100%);
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--gold-bright));
  box-shadow: 0 0 14px rgba(253,152,0,.6);
}

main,
.site-footer {
  position: relative;
  z-index: 2;
}

.section {
  position: relative;
  padding: clamp(6rem, 13vw, 11rem) var(--pad);
}

.section-index {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.2rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-index::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
}

.section-index-haltung {
  font-size: .82rem;
  letter-spacing: .17em;
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 8rem var(--pad) clamp(3rem, 7vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    radial-gradient(circle at 70% 52%, rgba(253,152,0,.09), transparent 28%),
    linear-gradient(90deg, rgba(5,5,5,.96) 0%, rgba(5,5,5,.62) 42%, rgba(5,5,5,.08) 78%);
}

.studio-version .field-canvas {
  display: none;
}

.studio-version .hero {
  position: relative;
  background: #030303;
}

.studio-version .hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3,3,3,.98) 0%, rgba(3,3,3,.88) 25%, rgba(3,3,3,.46) 48%, rgba(3,3,3,.08) 78%, rgba(3,3,3,.34) 100%),
    linear-gradient(180deg, rgba(3,3,3,.28), transparent 35%, rgba(3,3,3,.24) 76%, rgba(3,3,3,.88));
}

.studio-scene {
  --studio-x: 0px;
  --studio-y: 0px;
  position: absolute;
  z-index: 0;
  inset: -3%;
  overflow: hidden;
  background: #030303;
  pointer-events: none;
}

.studio-version .hero-content {
  position: relative;
  z-index: 2;
}

.studio-scene::after {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  background:
    radial-gradient(circle at 77% 54%, rgba(253,152,0,.075), transparent 25%),
    linear-gradient(90deg, #030303 0%, transparent 13%, transparent 88%, #030303 100%),
    linear-gradient(180deg, #030303 0%, transparent 12%, transparent 82%, #030303 100%);
}

.studio-picture {
  position: absolute;
  z-index: 1;
  inset: 0;
}

.studio-scene-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 54% 50%;
  filter: contrast(1.07) saturate(1.05) brightness(.9);
  transform: translate3d(var(--studio-x), var(--studio-y), 0) scale(1.055);
  will-change: transform;
}

.studio-wave-canvas {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .82;
  mix-blend-mode: normal;
}

.studio-lights {
  position: absolute;
  z-index: 3;
  inset: 0;
  transform: translate3d(var(--studio-x), var(--studio-y), 0);
  will-change: transform;
}

.studio-lights span {
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: clamp(2px, .24vw, 5px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ffe7a2;
  box-shadow: 0 0 .4rem #fd9800, 0 0 1.1rem rgba(253,152,0,.72);
  animation: studio-led 3.8s var(--delay) steps(1,end) infinite;
}

.studio-lamp {
  position: absolute;
  width: clamp(4.5rem, 8vw, 9rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,241,197,.22), rgba(253,152,0,.075) 24%, transparent 68%);
  filter: blur(5px);
  animation: studio-lamp-breathe 5.6s ease-in-out infinite;
}

.studio-lamp-one { top: 3%; left: 64%; animation-delay: -1.2s; }
.studio-lamp-two { top: 1%; left: 74%; animation-delay: -3.8s; }
.studio-lamp-three { top: 8%; left: 82%; animation-delay: -2.4s; }

@keyframes studio-led {
  0%, 8%, 23%, 31%, 56%, 76%, 100% { opacity: .18; transform: scale(.72); }
  9%, 22%, 57%, 75% { opacity: 1; transform: scale(1.45); }
  32%, 55% { opacity: .58; transform: scale(1); }
}

@keyframes studio-lamp-breathe {
  0%, 100% { opacity: .42; transform: scale(.97); }
  50% { opacity: .62; transform: scale(1.03); }
}

.hero-content {
  width: min(78rem, 100%);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 1.4rem;
  color: var(--gold-bright);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.eyebrow .pulse {
  position: relative;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 18px var(--amber);
}

.eyebrow .pulse::after {
  content: "";
  position: absolute;
  inset: -0.4rem;
  border: 1px solid rgba(253,152,0,.35);
  border-radius: 50%;
  animation: pulse 2.2s ease-out infinite;
}

@keyframes pulse {
  from { transform: scale(.35); opacity: 1; }
  to { transform: scale(1.4); opacity: 0; }
}

.hero-title {
  max-width: 10.5ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.2rem, 10.8vw, 10.7rem);
  font-weight: 800;
  line-height: 0.79;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  text-stroke: 1px var(--gold);
}

.hero-title .gold {
  color: var(--gold-bright);
  text-shadow: 0 0 55px rgba(204,176,94,.14);
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 38rem) 1fr;
  gap: 4rem;
  align-items: end;
  margin-top: clamp(2rem, 5vw, 4.5rem);
}

.hero-copy {
  margin: 0;
  color: rgba(255,253,247,.78);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
}

.scroll-cue {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue::after {
  content: "↓";
  display: grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  animation: drift 1.8s ease-in-out infinite;
}

@keyframes drift {
  50% { transform: translateY(.45rem); }
}

.signal-strip {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(5,5,5,.78);
}

.signal-track {
  display: block;
  width: max-content;
  padding: 1rem 0;
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.4vw, 3.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  animation: marquee var(--marquee-duration, 32s) linear infinite;
  will-change: transform;
}

.signal-track span {
  padding-right: 1.2ch;
}

.signal-track i {
  color: var(--amber);
  font-style: normal;
}

@keyframes marquee {
  from { transform: translateX(100vw); }
  to { transform: translateX(-100%); }
}

.manifesto {
  --manifesto-progress: 0;
  --manifesto-image-y: 0px;
  --wave-shift-x: 0px;
  --wave-shift-y: 0px;
  --wave-tilt: 0deg;
  display: grid;
  grid-template-columns: minmax(14rem, .7fr) minmax(0, 1.45fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: start;
  background: #080705;
  color: var(--white);
  isolation: isolate;
  overflow: clip;
}

.manifesto-atmosphere {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.manifesto-atmosphere::before,
.manifesto-atmosphere::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
}

.manifesto-atmosphere::before {
  background:
    linear-gradient(90deg, rgba(5,5,5,.48) 0%, rgba(5,5,5,.2) 34%, rgba(5,5,5,.08) 67%, rgba(5,5,5,.26) 100%),
    linear-gradient(180deg, rgba(5,5,5,.66) 0%, rgba(5,5,5,.24) 18%, rgba(5,5,5,.1) 58%, rgba(5,5,5,.48) 100%);
}

.manifesto-atmosphere::after {
  opacity: .13;
  background-image: radial-gradient(circle, rgba(255,253,247,.38) .55px, transparent .7px);
  background-size: 7px 7px;
  mix-blend-mode: soft-light;
}

.manifesto-crowd-picture {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  transform: translate3d(0, var(--manifesto-image-y), 0);
  will-change: transform;
}

.manifesto-crowd {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 1;
  filter: contrast(1.14) saturate(1.02) brightness(.76);
}

.manifesto-wave-canvas {
  position: absolute;
  z-index: 4;
  top: var(--manifesto-image-y);
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: blur(7px) saturate(.94);
  opacity: .96;
  will-change: transform, opacity;
}

.manifesto-vibration {
  display: none;
}

.manifesto-vibration span {
  position: absolute;
  top: 56%;
  left: 50%;
  width: 40%;
  height: 32%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 58%,
    rgba(255,248,217,.24) 0%,
    rgba(255,222,143,.19) 24%,
    rgba(255,190,62,.13) 48%,
    rgba(253,152,0,.065) 68%,
    rgba(255,205,95,.022) 82%,
    transparent 100%);
  box-shadow: 0 0 8rem rgba(255,205,90,.035);
  filter: blur(27px) saturate(.94);
  transform: translate3d(-50%, 14vh, 0) scale(.28, .22);
  animation: none;
  will-change: transform, opacity, filter;
}

.manifesto.is-wave-active .manifesto-vibration span {
  animation: resonance-light 30s cubic-bezier(.2,.42,.2,1) infinite;
}

.manifesto-vibration span:not(:first-child) {
  display: none;
}

.manifesto-vibration span:nth-child(1) { --ring: 0; }
.manifesto-vibration span:nth-child(2) { --ring: 1; }
.manifesto-vibration span:nth-child(3) { --ring: 2; }
.manifesto-vibration span:nth-child(4) { --ring: 3; }
.manifesto-vibration span:nth-child(5) { --ring: 4; }

@keyframes resonance-light {
  0% { transform: translate3d(-50%, 14vh, 0) scale(.28, .22); opacity: 0; filter: blur(34px) saturate(.9); }
  8% { opacity: .48; }
  26% { transform: translate3d(-50%, 3vh, 0) scale(.82, .72); opacity: .68; }
  55% { transform: translate3d(-50%, -24vh, 0) scale(1.75, 1.9); opacity: .72; }
  78% { transform: translate3d(-50%, -48vh, 0) scale(3, 3.2); opacity: .34; filter: blur(42px) saturate(.96); }
  86% { transform: translate3d(-50%, -52vh, 0) scale(3.15, 3.35); opacity: 0; filter: blur(50px) saturate(.94); }
  100% { transform: translate3d(-50%, -52vh, 0) scale(3.15, 3.35); opacity: 0; filter: blur(50px) saturate(.94); }
}

.manifesto.is-interacting .manifesto-vibration span {
  animation-duration: 30s;
}

.manifesto-vibration::before,
.manifesto-vibration::after {
  content: "";
  position: absolute;
  left: 50%;
  pointer-events: none;
}

.manifesto-vibration::before {
  bottom: 44%;
  width: 54%;
  height: 80%;
  transform: translateX(-50%);
  transform-origin: 50% 100%;
  clip-path: polygon(46% 100%, 54% 100%, 100% 0, 0 0);
  background: radial-gradient(ellipse at 50% 100%, rgba(255,244,202,.08), rgba(255,195,65,.035) 30%, rgba(253,152,0,.012) 58%, transparent 78%);
  filter: blur(34px);
  opacity: .12;
  animation: none;
}

.manifesto-vibration::after {
  top: 56%;
  width: 22%;
  height: 28%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,247,205,.13), rgba(253,176,24,.045) 34%, transparent 74%);
  filter: blur(34px);
  transform: translate(-50%, -50%);
  opacity: .16;
  animation: none;
}

.manifesto.is-wave-active .manifesto-vibration::before {
  animation: sound-flood 30s ease-in-out infinite;
}

.manifesto.is-wave-active .manifesto-vibration::after {
  animation: source-pulse 30s ease-in-out infinite;
}

@keyframes sound-flood {
  0% { opacity: .02; transform: translateX(-50%) scaleX(.78); }
  18% { opacity: .09; }
  58% { opacity: .13; transform: translateX(-50%) scaleX(1.08); }
  86%, 100% { opacity: 0; transform: translateX(-50%) scaleX(1.12); }
}

@keyframes source-pulse {
  0% { opacity: .06; transform: translate(-50%, -50%) scale(.88); }
  14% { opacity: .16; transform: translate(-50%, -50%) scale(1.02); }
  52% { opacity: .1; transform: translate(-50%, -50%) scale(1.05); }
  86%, 100% { opacity: .03; transform: translate(-50%, -50%) scale(1.05); }
}

.manifesto-scanline {
  position: absolute;
  z-index: 4;
  top: calc(var(--manifesto-image-y) - 1px);
  left: -12%;
  width: 124%;
  height: calc(100vh + 2px);
  height: calc(100svh + 2px);
  background:
    radial-gradient(ellipse 118% 104% at 50% 92%, rgba(255,247,214,.32) 0%, rgba(255,220,137,.23) 28%, rgba(255,185,48,.15) 52%, rgba(253,152,0,.065) 72%, transparent 94%),
    linear-gradient(0deg, rgba(255,191,58,.11), rgba(255,225,151,.075) 58%, rgba(255,247,218,.035) 86%, transparent);
  filter: blur(18px) saturate(.92);
  mix-blend-mode: screen;
  clip-path: inset(100% 0 0 0);
  opacity: 0;
  transform: scale(1.04);
  transform-origin: 50% 100%;
  animation: none;
  will-change: clip-path, opacity, transform;
}

.manifesto.is-wave-active .manifesto-scanline {
  animation: room-flood 30s cubic-bezier(.2,.42,.2,1) infinite;
}

@keyframes room-flood {
  0% { clip-path: inset(100% 0 0 0); opacity: 0; transform: scale(1.04, .98); }
  8% { clip-path: inset(82% 0 0 0); opacity: .42; }
  34% { clip-path: inset(46% 0 0 0); opacity: .58; }
  58% { clip-path: inset(0 0 0 0); opacity: .68; transform: scale(1.08, 1.02); }
  72% { clip-path: inset(0 0 0 0); opacity: .46; transform: scale(1.1, 1.035); }
  86% { clip-path: inset(0 0 0 0); opacity: 0; transform: scale(1.12, 1.05); }
  100% { clip-path: inset(0 0 0 0); opacity: 0; transform: scale(1.12, 1.05); }
}

@keyframes bass-wash {
  0% { opacity: .02; transform: scaleY(.62); }
  22% { opacity: .08; }
  58% { opacity: .14; transform: scaleY(1.08); }
  86%, 100% { opacity: 0; transform: scaleY(1.12); }
}

.manifesto-aside,
.manifesto-main {
  position: relative;
  z-index: 3;
}

.manifesto-aside {
  position: sticky;
  top: 8rem;
  padding: clamp(1.35rem, 2.4vw, 2.2rem);
  color: var(--ink);
  border: 0;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.manifesto-aside::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -2px;
  background: rgba(242,238,227,.56);
  clip-path: polygon(.35% .75%, 50% .2%, 99.65% .7%, 99.4% 50%, 99.7% 99.25%, 50% 99.65%, .3% 99.2%, .55% 50%);
  backdrop-filter: blur(10px) saturate(.78);
  filter: blur(1.65px) drop-shadow(0 2rem 2.8rem rgba(0,0,0,.16));
}

.manifesto-aside p {
  max-width: 28rem;
  margin: 0;
  color: rgba(5,5,5,.72);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.manifesto-title {
  margin: 0 0 clamp(3rem, 7vw, 7rem);
  font-family: var(--display);
  font-size: clamp(3.3rem, 8vw, 8.5rem);
  font-weight: 800;
  line-height: .83;
  letter-spacing: -.07em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 .12em .5em rgba(0,0,0,.34);
}

.manifesto-title em {
  display: block;
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px rgba(229,201,111,.92);
  filter: drop-shadow(0 .12em .35em rgba(0,0,0,.38));
}

.service-list {
  border-top: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.service-item {
  --paper-shape: polygon(.3% .7%, 49% .25%, 99.7% .65%, 99.45% 50%, 99.72% 99.3%, 51% 99.62%, .28% 99.2%, .52% 49%);
  position: relative;
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: clamp(1rem, 3vw, 3rem);
  margin-bottom: clamp(1rem, 2.2vw, 2rem);
  padding: clamp(2rem, 3.4vw, 3.4rem) clamp(1.15rem, 2.5vw, 2.8rem);
  color: var(--ink);
  border: 0;
  background: transparent;
  box-shadow: none;
  clip-path: var(--paper-shape);
  filter: drop-shadow(0 2rem 3rem rgba(0,0,0,.16));
  isolation: isolate;
  overflow: visible;
  transition: transform 420ms cubic-bezier(.2,.8,.2,1), filter 360ms ease;
}

.service-item:nth-child(2) {
  --paper-shape: polygon(.45% .55%, 51% .3%, 99.55% .8%, 99.68% 51%, 99.52% 99.15%, 49% 99.7%, .35% 99.35%, .3% 50%);
}

.service-item:nth-child(3) {
  --paper-shape: polygon(.25% .85%, 50% .18%, 99.68% .48%, 99.38% 49%, 99.75% 99.28%, 52% 99.55%, .22% 99.1%, .62% 51%);
}

.service-item::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -2px;
  background: rgba(242,238,227,.58);
  clip-path: var(--paper-shape);
  backdrop-filter: blur(11px) saturate(.76) brightness(1.02);
  filter: blur(1.75px) drop-shadow(0 2rem 3rem rgba(0,0,0,.18));
  transition: background 360ms ease, filter 360ms ease;
}

.service-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(204,176,94,.28), transparent 70%);
  clip-path: var(--paper-shape);
  transform: translateX(-105%);
  transition: transform 500ms cubic-bezier(.2,.8,.2,1);
}

.service-item:hover::before {
  transform: none;
}

.service-item:hover {
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 2.4rem 3.4rem rgba(0,0,0,.22));
  transform: translateX(-.45rem);
}

.service-item:hover::after {
  background: rgba(255,253,247,.68);
  filter: blur(1.25px) drop-shadow(0 2.4rem 3.4rem rgba(0,0,0,.23)) drop-shadow(0 0 1px rgba(229,201,111,.42));
}

.service-number {
  position: relative;
  z-index: 1;
  color: #937d40;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.7rem;
  letter-spacing: .14em;
}

.service-item p {
  position: relative;
  z-index: 1;
  max-width: 50rem;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.35vw, 2.35rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -.03em;
}

.team {
  min-height: 95svh;
  display: grid;
  align-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(204,176,94,.1), transparent 30%),
    var(--ink-soft);
}

.team-heading,
.contact-heading,
.legal-title {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 800;
  line-height: .78;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: clamp(3rem, 8vw, 7rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.person {
  position: relative;
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 5vw, 5rem);
  overflow: hidden;
}

.person + .person {
  border-left: 1px solid var(--line);
}

.person::before {
  content: attr(data-initial);
  position: absolute;
  right: -0.04em;
  bottom: -.33em;
  color: rgba(204,176,94,.055);
  font-family: var(--display);
  font-size: clamp(13rem, 28vw, 28rem);
  font-weight: 900;
  line-height: 1;
}

.person-role {
  position: relative;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.person-name {
  position: relative;
  max-width: 8ch;
  margin: 3rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 6vw, 6.2rem);
  font-weight: 700;
  line-height: .91;
  letter-spacing: -.06em;
}

.partner {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  color: var(--ink);
  background: var(--gold);
}

.partner-copy h2 {
  margin: 0 0 1.4rem;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 800;
  line-height: .85;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.partner-copy p {
  margin: 0;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.partner-logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 22rem;
  padding: 3rem;
  border: 1px solid rgba(5,5,5,.28);
  background: rgba(5,5,5,.94);
  overflow: hidden;
}

.partner-logo-wrap::before,
.partner-logo-wrap::after {
  content: "";
  position: absolute;
  width: 16rem;
  height: 16rem;
  border: 1px solid rgba(204,176,94,.17);
  border-radius: 50%;
}

.partner-logo-wrap::after {
  width: 24rem;
  height: 24rem;
}

.partner-logo-wrap img {
  position: relative;
  z-index: 1;
  width: min(29rem, 80%);
}

.contact {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(3rem, 9vw, 10rem);
  min-height: 100svh;
  align-items: center;
  background: linear-gradient(135deg, #090805, var(--ink));
}

.contact-intro {
  align-self: start;
}

.contact-heading {
  color: var(--gold-bright);
}

.demo-pitch {
  max-width: 25rem;
  margin: 2.3rem 0 0;
  color: rgba(255,253,247,.7);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.demo-pitch a {
  display: inline-block;
  margin-top: .9rem;
  color: var(--gold-bright);
  border-bottom: 1px solid var(--gold);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 1rem;
}

.form-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.field {
  position: relative;
  padding-top: 1.2rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  padding: .8rem 0 1rem;
  color: var(--white);
  border: 0;
  border-bottom: 1px solid rgba(204,176,94,.35);
  border-radius: 0;
  outline: none;
  background: transparent;
  font-size: 1.05rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 1px 0 var(--amber);
}

.submit-row {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.submit-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-width: 12rem;
  min-height: 3.8rem;
  padding: .9rem 1.4rem;
  color: var(--ink);
  border: 0;
  border-radius: 999px;
  background: var(--amber);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  transition: transform 180ms ease, background 180ms ease;
}

.submit-button::after {
  content: "↗";
  font-size: 1.2rem;
}

.submit-button:hover,
.submit-button:focus-visible {
  background: var(--gold-bright);
  transform: translateY(-2px);
}

.submit-button:disabled {
  cursor: wait;
  opacity: .62;
  transform: none;
}

.form-status {
  color: rgba(255,253,247,.64);
  font-size: .75rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2.1rem var(--pad);
  border-top: 1px solid var(--line);
  color: rgba(255,253,247,.62);
  background: var(--ink);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-links {
  justify-self: end;
  display: flex;
  gap: 1.5rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-bright);
}

.parent-label {
  color: var(--gold);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 800ms cubic-bezier(.2,.8,.2,1), transform 800ms cubic-bezier(.2,.8,.2,1);
}

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

.cursor-orbit {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(204,176,94,.55);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%,-50%);
  transition: width 180ms ease, height 180ms ease, opacity 180ms ease, background 180ms ease;
  mix-blend-mode: difference;
}

.cursor-orbit.is-active {
  width: 4.2rem;
  height: 4.2rem;
  background: rgba(204,176,94,.12);
}

.legal-page {
  min-height: 100svh;
  padding-top: 9rem;
  background:
    radial-gradient(circle at 80% 8%, rgba(204,176,94,.15), transparent 26%),
    var(--ink);
}

.legal-shell {
  width: min(76rem, 100%);
  margin: 0 auto;
}

.legal-title {
  margin-bottom: clamp(4rem, 9vw, 8rem);
  color: var(--gold-bright);
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(12rem,.5fr) minmax(0,1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.legal-nav {
  position: sticky;
  top: 8rem;
  align-self: start;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.legal-content {
  color: rgba(255,253,247,.8);
}

.legal-content h2 {
  margin: 4rem 0 1rem;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -.04em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  margin: 2.5rem 0 .65rem;
  color: var(--gold-bright);
  font-size: 1rem;
}

.legal-content p {
  margin: 0 0 1.25rem;
}

.legal-content a {
  color: var(--gold-bright);
  border-bottom: 1px solid var(--line);
}

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

  .header-mark,
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-bottom,
  .manifesto,
  .partner,
  .contact,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 34rem;
  }

  .scroll-cue {
    display: none;
  }

  .manifesto-aside,
  .legal-nav {
    position: static;
  }

  .manifesto-aside {
    padding: 0;
    text-shadow: 0 .15rem .8rem rgba(0,0,0,.85);
  }

  .manifesto-aside::before {
    display: none;
  }

  .manifesto-aside p {
    color: rgba(255,253,247,.88);
  }

  .manifesto-atmosphere {
    overflow: clip;
  }

  .manifesto-atmosphere::before {
    display: none;
  }

  .manifesto-atmosphere::after {
    display: block;
    z-index: 4;
    inset: auto;
    top: calc(var(--manifesto-image-y) + 51svh);
    left: 50%;
    width: 24vw;
    height: 24vw;
    min-width: 5.5rem;
    min-height: 5.5rem;
    border-radius: 47% 53% 49% 51% / 54% 46% 54% 46%;
    background:
      radial-gradient(circle at 48% 48%, rgba(255,251,228,.58) 0%, rgba(255,226,151,.38) 22%, rgba(255,190,65,.21) 44%, rgba(253,152,0,.075) 64%, transparent 80%),
      radial-gradient(circle at 30% 58%, rgba(255,211,113,.24), transparent 58%),
      radial-gradient(circle at 68% 38%, rgba(255,239,189,.22), transparent 54%);
    box-shadow: 0 0 2.5rem rgba(255,190,70,.16);
    mix-blend-mode: normal;
    filter: blur(10px) saturate(1.02);
    opacity: 0;
    transform: translate(-50%, -50%) scale(.1);
    transform-origin: 50% 50%;
    animation: mobile-fog-bloom 26s cubic-bezier(.2,.44,.2,1) infinite;
    will-change: transform, opacity;
  }

  .manifesto-crowd-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    background: #080705;
    transform: translate3d(0, var(--manifesto-image-y), 0);
    will-change: transform;
  }

  .manifesto-crowd {
    object-position: 50% 48%;
    opacity: 1;
    filter: contrast(1.08) saturate(1.02) brightness(.78);
  }

  .manifesto-wave-canvas {
    display: none !important;
    opacity: 0 !important;
    animation: none !important;
  }

  .manifesto-vibration,
  .manifesto-scanline {
    display: none !important;
    opacity: 0 !important;
    animation: none !important;
  }

  .manifesto-aside::before,
  .service-item::after {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    filter: drop-shadow(0 2rem 3rem rgba(0,0,0,.18));
  }

  @keyframes mobile-fog-bloom {
    0% {
      opacity: 0;
      transform: translate(-50%, -50%) scale(.1) rotate(-2deg);
    }
    7% {
      opacity: .48;
    }
    42% {
      opacity: .68;
      transform: translate(-50%, -66%) scale(3.8) rotate(2deg);
    }
    62% {
      opacity: .4;
      transform: translate(-50%, -84%) scale(6.8) rotate(-1deg);
    }
    72% {
      opacity: 0;
      transform: translate(-50%, -96%) scale(8.8) rotate(1deg);
    }
    100% {
      opacity: 0;
      transform: translate(-50%, -96%) scale(8.8) rotate(1deg);
    }
  }

  .manifesto-vibration {
    top: calc(var(--manifesto-image-y) + 59svh + var(--wave-shift-y));
    left: calc(50% + var(--wave-shift-x));
    width: 250vw;
    height: 92svh;
    transform: translate(-50%, -50%) perspective(850px) rotateX(53deg) rotateZ(var(--wave-tilt));
  }

  .manifesto-scanline {
    left: -22%;
    width: 144%;
  }

  .service-list {
    background: transparent;
  }

  .partner-logo-wrap {
    min-height: 17rem;
  }

  .contact-intro {
    align-self: auto;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .parent-label {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 5.3rem;
    padding-top: .9rem;
    padding-bottom: .9rem;
  }

  .brand {
    width: 8.2rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    min-height: 100svh;
    padding-top: 7rem;
  }

  .hero-content,
  .hero-bottom,
  .hero-copy {
    min-width: 0;
    width: 100%;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5,5,5,.08) 0%, rgba(5,5,5,.68) 52%, rgba(5,5,5,.98) 88%),
      radial-gradient(circle at 60% 28%, rgba(253,152,0,.12), transparent 34%);
  }

  .studio-version .hero::before {
    background:
      linear-gradient(180deg, rgba(3,3,3,.24) 0%, rgba(3,3,3,.44) 36%, rgba(3,3,3,.9) 72%, #030303 92%),
      linear-gradient(90deg, rgba(3,3,3,.82), rgba(3,3,3,.08));
  }

  .studio-scene-image {
    object-position: 54% 50%;
    filter: contrast(1.06) saturate(1.03) brightness(.78);
    transform: translate3d(var(--studio-x), var(--studio-y), 0) scale(1.005);
  }

  .studio-wave-canvas {
    opacity: .55;
  }

  .studio-lights span {
    top: var(--mobile-y);
    left: var(--mobile-x);
    width: 3px;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(3.2rem, 16.5vw, 4.4rem);
    line-height: .82;
  }

  .hero-bottom {
    margin-top: 2rem;
  }

  .manifesto-title {
    font-size: clamp(3rem, 17vw, 5.4rem);
  }

  .service-item {
    grid-template-columns: 2.2rem 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .person {
    min-height: 17rem;
  }

  .person + .person {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .field-full,
  .submit-row {
    grid-column: auto;
  }

  .submit-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .submit-button {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-links {
    justify-self: start;
  }

  .cursor-orbit {
    display: none;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-orbit {
    display: none;
  }

  .service-item,
  .service-item:hover {
    filter: drop-shadow(0 2rem 3rem rgba(0,0,0,.16));
    transform: none;
  }

  .service-item:hover::before {
    transform: translateX(-105%);
  }

  .service-item:hover::after {
    background: rgba(242,238,227,.58);
    filter: blur(1.75px) drop-shadow(0 2rem 3rem rgba(0,0,0,.18));
  }

  .submit-button:hover {
    background: var(--amber);
    transform: none;
  }

  .footer-links a:hover {
    color: inherit;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .signal-track {
    margin-inline: auto;
    animation: none !important;
    transform: none;
  }
}
