/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   alecrj.com — portfolio / v2
   street studio · kinetic · cinematic scroll
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

:root {
  --ink: #0a0908;
  --concrete: #15100d;
  --concrete-2: #241d17;
  --concrete-hi: #3a2e23;
  --paper: #f1ebdd;
  --paper-dark: #d9cfb8;
  --orange: #e86a2a;
  --orange-light: #ff8a3d;
  --orange-deep: #b84515;
  --green: #1f6b4a;
  --green-light: #2a8a60;
  --silver: #c9c5bc;
  --silver-hi: #eae6dc;
  --wood: #3e2518;
  --wood-light: #5c3a22;

  --f-display: 'Bungee', 'Impact', sans-serif;
  --f-shade: 'Bungee', 'Impact', sans-serif;
  --f-mark: 'Bungee', 'Impact', sans-serif;
  --f-body: 'Fraunces', 'Georgia', serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;

  --edge: 1px solid rgba(241, 235, 221, 0.14);
  --e-out: cubic-bezier(.2,.8,.2,1);
  --e-in:  cubic-bezier(.7,0,.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*:focus-visible { outline: 2px dashed var(--orange); outline-offset: 3px; }

html {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* NEVER set overflow-x here — breaks position: sticky */
}

body {
  overflow-x: clip; /* clip doesn't create a scroll container (sticky stays intact) */
  line-height: 1.5;
  font-size: 18px;
  letter-spacing: -0.005em;
}

body.smooth-scroll {
  position: fixed;
  inset: 0;
  overflow: hidden;
}
body.smooth-scroll > .scroll-wrap {
  will-change: transform;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

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

.svg-defs { position: absolute; width: 0; height: 0; pointer-events: none; }

.mono {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.mono .dot, .dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  margin-right: 6px;
  vertical-align: baseline;
  box-shadow: 0 0 8px var(--orange);
}
.tiny { font-size: 0.6rem; opacity: 0.6; letter-spacing: 0.24em; }
em { font-style: italic; font-family: var(--f-body); }
kbd {
  display: inline-block;
  padding: 2px 5px;
  border: 1px solid rgba(241,235,221,.4);
  border-radius: 3px;
  font-family: var(--f-mono);
  font-size: .65rem;
  letter-spacing: .1em;
  background: rgba(241,235,221,.06);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Overlays: grain / scanlines / progress / depth / cursor
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.7 0'/></filter><rect width='220' height='220' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}
.scanlines {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: 0.05;
  background: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,.4) 0 1px,
    transparent 1px 3px
  );
  mix-blend-mode: screen;
}

.progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(241,235,221,.08);
  z-index: 80;
}
.progress i {
  display: block; height: 100%;
  width: 0%;
  background: var(--orange);
  box-shadow: 0 0 12px var(--orange);
}

.depth {
  position: fixed;
  bottom: 24px;
  right: 28px;
  z-index: 80;
  color: var(--paper-dark);
  font-size: .64rem;
  letter-spacing: .24em;
  background: rgba(10,9,8,.4);
  padding: 6px 10px;
  border: 1px solid rgba(241,235,221,.12);
  border-radius: 2px;
  backdrop-filter: blur(6px);
  mix-blend-mode: difference;
  pointer-events: none;
}
.depth em { opacity: .4; font-style: normal; font-size: .85em; margin-left: 2px; }

/* ── paintbrush cursor ─────────────────── */
.cursor {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 110;
  width: 36px; height: 56px;
  /* anchor so the tip of the bristles sits at the pointer position */
  margin: -52px 0 0 -16px;
  transform-origin: 16px 52px; /* pivot at the bristle tip for rotation */
  transition: transform 180ms var(--e-out);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.45));
}
.cursor__brush {
  width: 100%; height: 100%;
  display: block;
  /* tilted like a real brush held in a right hand */
  transform: rotate(-22deg);
  transform-origin: 50% 95%;
}
body.cursor-hover .cursor__brush {
  transform: rotate(-8deg) scale(1.1);
}
body.cursor-hidden .cursor { opacity: 0; }

.brush-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}
.brush-stroke {
  position: fixed;
  background: var(--orange);
  transform-origin: left center;
  border-radius: 2px;
  opacity: 0.72;
  mix-blend-mode: screen;
  animation: brushFade 1400ms ease-out forwards;
  box-shadow: 0 0 4px rgba(232, 106, 42, 0.35);
}
@keyframes brushFade {
  0%   { opacity: 0.72; }
  40%  { opacity: 0.55; }
  80%  { opacity: 0.15; }
  100% { opacity: 0; }
}

@media (hover: none), (max-width: 900px) {
  .cursor, .brush-layer { display: none; }
  html, body { cursor: auto; }
}
@media (hover: hover) and (min-width: 900px) {
  html, body { cursor: none; }
  a, button, input, textarea, [data-action] { cursor: none; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 70;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  mix-blend-mode: difference;
  color: var(--paper);
}
.nav__mark {
  display: flex; align-items: center; gap: 4px;
  font-family: var(--f-display);
  font-size: 20px;
}
.nav__mark-box {
  display: inline-block;
  padding: 4px 8px 2px;
  border: 2px solid currentColor;
  transition: transform 200ms var(--e-out);
}
.nav__mark:hover .nav__mark-box:first-child { transform: translate(-2px, -2px); }
.nav__mark:hover .nav__mark-box:last-child  { transform: translate(2px, 2px); }
.nav__mark-slash { opacity: .6; padding: 0 2px; }

.nav__links {
  display: flex; gap: 28px;
  font-family: var(--f-mono);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  align-items: center;
}
.nav__links a {
  position: relative;
  padding: 6px 2px;
  transition: color 200ms;
}
.nav__links a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: currentColor;
  transform-origin: right center;
  transform: scaleX(0);
  transition: transform 300ms var(--e-in);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left center; }

.nav__contact {
  border: 1.5px solid currentColor;
  padding: 8px 14px !important;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 4px;
}
.nav__contact i { transition: transform 200ms; }
.nav__contact:hover i { transform: translate(2px, 2px); }
.nav__contact::after { display: none; }

.nav__menu {
  width: 44px; height: 44px;
  display: inline-flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 5px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  padding: 0;
}
.nav__menu span {
  display: block;
  width: 14px; height: 1.5px;
  background: currentColor;
  transition: transform 220ms var(--e-out);
}
.nav__menu:hover span:nth-child(1) { transform: translateX(-2px); }
.nav__menu:hover span:nth-child(3) { transform: translateX( 2px); }

@media (max-width: 720px) {
  .nav { padding: 14px 18px; }
  .nav__links a:not(.nav__contact):not(.nav__menu) { display: none; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ MENU OVERLAY */
.menu {
  position: fixed; inset: 0;
  z-index: 95;
  background: var(--ink);
  padding: 100px 6vw 40px;
  transform: translateY(-100%);
  transition: transform 700ms var(--e-out);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.menu::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(232,106,42,.08), transparent 55%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='500' height='500'><filter id='w'><feTurbulence baseFrequency='0.02' numOctaves='4' seed='5'/><feColorMatrix values='0 0 0 0 0.08  0 0 0 0 0.06  0 0 0 0 0.04  0 0 0 0.8 0'/></filter><rect width='500' height='500' filter='url(%23w)' opacity='.65'/></svg>");
  background-size: auto, 500px 500px;
  mix-blend-mode: normal;
  opacity: .55;
  pointer-events: none;
}
body.menu-open .menu { transform: translateY(0); }
body.menu-open { overflow: hidden; }

.menu__close {
  position: absolute;
  top: 26px; right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--paper);
  font-family: var(--f-mono);
  font-size: 14px;
  transition: background 200ms, color 200ms, transform 200ms;
}
.menu__close:hover { background: var(--paper); color: var(--ink); transform: rotate(90deg); }

.menu__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  height: 100%;
  align-items: end;
}

.menu__list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 8px;
}
.menu__list li {
  overflow: hidden;
}
.menu__list a {
  display: inline-flex;
  align-items: baseline;
  gap: 18px;
  font-family: var(--f-display);
  font-size: clamp(42px, 7vw, 96px);
  line-height: 1;
  color: var(--paper);
  position: relative;
  padding: 8px 0;
  transform: translateY(120%);
  transition: transform 700ms var(--e-out), color 200ms;
}
.menu__list a .mono {
  font-size: 0.7rem;
  color: var(--orange);
  opacity: .8;
}
body.menu-open .menu__list a { transform: translateY(0); }
body.menu-open .menu__list li:nth-child(1) a { transition-delay: 200ms; }
body.menu-open .menu__list li:nth-child(2) a { transition-delay: 280ms; }
body.menu-open .menu__list li:nth-child(3) a { transition-delay: 360ms; }
body.menu-open .menu__list li:nth-child(4) a { transition-delay: 440ms; }
body.menu-open .menu__list li:nth-child(5) a { transition-delay: 520ms; }
body.menu-open .menu__list li:nth-child(6) a { transition-delay: 600ms; }
body.menu-open .menu__list li:nth-child(7) a { transition-delay: 680ms; }

.menu__list a:hover { color: var(--orange); padding-left: 24px; }

.menu__side {
  display: flex; flex-direction: column;
  gap: 18px;
  padding-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms 800ms, transform 600ms 800ms var(--e-out);
}
body.menu-open .menu__side { opacity: 1; transform: translateY(0); }
.menu__side .mono { color: var(--orange); }
.menu__social { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.menu__social a {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 20px;
  color: var(--paper-dark);
  transition: color 200ms, padding-left 200ms;
}
.menu__social a:hover { color: var(--orange); padding-left: 8px; }
.menu__whisper {
  margin-top: auto;
  color: var(--paper-dark);
  opacity: .45;
  font-size: .6rem;
  letter-spacing: .2em;
  line-height: 1.6;
}

@media (max-width: 820px) {
  .menu { padding: 80px 6vw 32px; }
  .menu__grid { grid-template-columns: 1fr; gap: 24px; align-items: start; padding-top: 10px; height: auto; min-height: 100%; }
  .menu__list { gap: 2px; }
  .menu__list a { font-size: clamp(32px, 8.5vw, 56px); padding: 4px 0; gap: 12px; }
  .menu__list a .mono { font-size: .58rem; }
  .menu__side { padding-bottom: 16px; gap: 14px; }
  .menu__side .mono { font-size: .64rem; }
  .menu__social a { font-size: 17px; }
  .menu__whisper { font-size: .54rem; line-height: 1.5; }
}
@media (max-width: 420px) {
  .menu__list a { font-size: clamp(28px, 9vw, 44px); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ BUTTONS */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: .78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 22px;
  border: 1.5px solid currentColor;
  overflow: hidden;
  transition: color 280ms, border-color 280ms;
  z-index: 0;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--paper);
  transform: translateY(100%);
  transition: transform 400ms var(--e-out);
  z-index: -1;
}
.btn span, .btn i { position: relative; z-index: 1; transition: transform 280ms var(--e-out); }
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--ink); border-color: var(--paper); }
.btn:hover i { transform: translate(3px, -3px); }

.btn--primary { color: var(--paper); border-color: var(--paper); }
.btn--primary::before { background: var(--orange); }
.btn--primary:hover { color: var(--ink); border-color: var(--orange); }

.btn--ghost { color: var(--paper-dark); border-color: rgba(241,235,221,.4); }
.btn--ink { color: var(--ink); border-color: var(--ink); }
.btn--ink::before { background: var(--ink); }
.btn--ink:hover { color: var(--paper); border-color: var(--ink); }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 6vw 80px;
  overflow: hidden;
  isolation: isolate;
}
.hero__wall {
  position: absolute; inset: -10% -10%;
  z-index: -3;
}
.hero__wall--back {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(232,106,42,0.04), transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(31,107,74,0.03), transparent 55%),
    linear-gradient(180deg, var(--concrete) 0%, var(--ink) 100%);
  z-index: -3;
}
.hero__wall--mid {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='500' height='500'><filter id='w'><feTurbulence baseFrequency='0.02' numOctaves='4' seed='5'/><feColorMatrix values='0 0 0 0 0.08  0 0 0 0 0.06  0 0 0 0 0.04  0 0 0 1 0'/></filter><rect width='500' height='500' filter='url(%23w)' opacity='.65'/></svg>");
  background-size: 500px 500px;
  mix-blend-mode: overlay;
  opacity: .9;
  z-index: -2;
}
.hero__wall--cracks {
  background:
    linear-gradient(100deg, transparent 20%, rgba(0,0,0,.35) 20.1%, transparent 20.15%),
    linear-gradient(78deg, transparent 64%, rgba(0,0,0,.3) 64.06%, transparent 64.1%),
    linear-gradient(124deg, transparent 82%, rgba(0,0,0,.25) 82.05%, transparent 82.08%);
  opacity: .6;
  z-index: -1;
}

.hero__eyebrow {
  color: var(--paper-dark);
  opacity: .7;
  margin-bottom: 28px;
  text-align: center;
}

.hero__tag { text-align: center; max-width: min(1200px, 96vw); position: relative; z-index: 1; }

.spray {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 0.92;
  color: var(--paper);
  letter-spacing: -0.01em;
  filter: url(#spraypaint);
  text-shadow:
    0 2px 0 rgba(0,0,0,0.4),
    0 0 18px rgba(241,235,221,0.08);
  will-change: transform;
}
.spray__line {
  display: block;
  font-size: clamp(48px, 11.2vw, 180px);
  opacity: 0;
  transform: translateY(20px);
}
.spray__line > span { display: inline-block; }
.spray__line--accent { color: var(--orange); }
body[data-phase="hero-in"] .spray__line,
body[data-phase="live"] .spray__line {
  animation: sprayReveal 700ms var(--e-out) forwards;
}
body[data-phase="hero-in"] .spray__line:nth-child(1),
body[data-phase="live"] .spray__line:nth-child(1) { animation-delay: 100ms; }
body[data-phase="hero-in"] .spray__line:nth-child(2),
body[data-phase="live"] .spray__line:nth-child(2) { animation-delay: 420ms; }
body[data-phase="hero-in"] .spray__line:nth-child(3),
body[data-phase="live"] .spray__line:nth-child(3) { animation-delay: 760ms; }
@keyframes sprayReveal {
  0%   { opacity: 0; transform: translateY(40px) scale(0.96); filter: url(#spraypaint) blur(8px); }
  60%  { opacity: 1; filter: url(#spraypaint) blur(0); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.drip-word {
  display: inline-block;
  position: relative;
  text-shadow:
    0 4px 0 var(--orange-deep),
    0 8px 0 var(--orange-deep),
    0 12px 2px rgba(184,69,21,.85),
    0 18px 6px rgba(184,69,21,.45);
}

.hero__sig {
  font-family: var(--f-mark);
  font-size: clamp(18px, 2.4vw, 28px);
  color: var(--paper-dark);
  margin-top: 44px;
  text-align: center;
  transform: rotate(-2deg);
  opacity: 0;
}
body[data-phase="hero-in"] .hero__sig,
body[data-phase="live"] .hero__sig { animation: fadeIn 500ms 1200ms forwards; }
@keyframes fadeIn { to { opacity: 1; } }

.hero__ctas {
  display: flex; gap: 14px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
  opacity: 0;
}
body[data-phase="hero-in"] .hero__ctas,
body[data-phase="live"] .hero__ctas { animation: fadeUp 600ms 1400ms var(--e-out) forwards; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__cue {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 10px;
  font-family: var(--f-mono);
  font-size: .68rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--paper-dark);
  opacity: 0;
}
body[data-phase="hero-in"] .hero__cue,
body[data-phase="live"] .hero__cue { animation: fadeIn 500ms 1600ms forwards; }
.cue-line {
  display: block; width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--paper-dark), transparent);
  animation: cuePulse 1.8s ease-in-out infinite;
}
@keyframes cuePulse {
  0%,100% { height: 48px; opacity: 0.8; }
  50% { height: 64px; opacity: 1; }
}

.hero__can {
  position: absolute;
  bottom: 40px;
  left: 40px;
  width: 40px;
  opacity: 0;
  transform: translateY(20px) rotate(-12deg);
}
body[data-phase="hero-in"] .hero__can,
body[data-phase="live"] .hero__can { animation: canIn 600ms 1800ms var(--e-out) forwards; }
@keyframes canIn { to { opacity: 1; transform: translateY(0) rotate(-12deg); } }

.hero__can-hiss {
  position: absolute;
  top: -6px; right: -14px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--orange-light), transparent 60%);
  opacity: .4;
  animation: hissPulse 2.8s ease-in-out infinite;
}
@keyframes hissPulse {
  0%,100% { transform: scale(.8); opacity: .35; }
  50% { transform: scale(1.3); opacity: .65; }
}

.tape {
  position: absolute;
  width: 110px; height: 30px;
  background: rgba(241,235,221,.18);
  mix-blend-mode: screen;
  box-shadow: 0 4px 10px rgba(0,0,0,.4);
}
.tape--tl { top: 20px; left: -30px; transform: rotate(-28deg); }
.tape--br { bottom: 20px; right: -30px; transform: rotate(-28deg); }

.poster {
  position: absolute;
  top: 14vh;
  right: 5vw;
  width: 150px;
  padding: 12px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: rotate(6deg);
  box-shadow: 0 20px 40px rgba(0,0,0,.5);
  z-index: 2;
  font-family: var(--f-mono);
  font-size: .7rem;
  line-height: 1.3;
  opacity: 0;
}
.poster strong {
  display: block;
  font-family: var(--f-display);
  font-size: 22px;
  line-height: 1;
  margin: 6px 0 4px;
}
body[data-phase="hero-in"] .poster,
body[data-phase="live"] .poster { animation: posterSlap 450ms 2000ms var(--e-out) forwards; }
@keyframes posterSlap {
  0% { opacity: 0; transform: rotate(-2deg) scale(1.3) translateY(-60px); }
  60% { opacity: 1; }
  100% { opacity: 1; transform: rotate(6deg) scale(1); }
}
@media (max-width: 820px) { .poster { display: none; } }

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ STUDIO (spray-can scene) */
.studio {
  position: relative;
  height: 260vh;
  background: var(--ink);
}
.studio__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.studio__wall {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(232,106,42,.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--ink) 0%, var(--concrete) 50%, var(--ink) 100%);
}
.studio__wall::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='500' height='500'><filter id='sw'><feTurbulence baseFrequency='0.02' numOctaves='4' seed='7'/><feColorMatrix values='0 0 0 0 0.08  0 0 0 0 0.06  0 0 0 0 0.04  0 0 0 1 0'/></filter><rect width='500' height='500' filter='url(%23sw)' opacity='.65'/></svg>");
  background-size: 500px 500px;
  mix-blend-mode: overlay;
  opacity: .75;
}

.studio__caption {
  position: absolute;
  left: 6vw;
  bottom: 10vh;
  max-width: 520px;
  color: var(--paper);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms linear, transform 220ms var(--e-out);
  mix-blend-mode: difference;
  pointer-events: none;
}
.studio__caption .mono { color: var(--orange); margin-bottom: 8px; display: inline-block; }
.studio__caption h3 {
  font-family: var(--f-display);
  font-size: clamp(36px, 5.8vw, 88px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.studio__caption.is-on { opacity: 1; transform: translateY(0); }

.bigcan {
  position: relative;
  width: clamp(160px, 20vw, 240px);
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.55));
  will-change: transform;
  transform-origin: 80% 20%;
}
.bigcan svg { width: 100%; height: auto; }

/* particles container */
.particles {
  position: absolute; inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--orange-light), var(--orange) 55%, var(--orange-deep));
  filter: url(#spraypaint);
  box-shadow: 0 0 8px rgba(232,106,42,.35);
  will-change: transform, opacity;
}

.studio__blob {
  position: absolute;
  top: 50%; left: 50%;
  width: 180vmax;
  height: 180vmax;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.04);
  transform-origin: center;
  will-change: transform, opacity;
}
.studio__blob svg { width: 100%; height: 100%; overflow: visible; }

/* Wet posters slap onto paint in P3 */
.studio__posters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}
.studio__poster {
  position: absolute;
  top: 50%;
  width: clamp(200px, 22vw, 300px);
  color: var(--ink);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  pointer-events: auto;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.4);
  transform-origin: center;
  cursor: pointer;
  will-change: transform, opacity;
  transition: filter 220ms, transform 220ms;
}
.studio__poster:nth-child(1) { left: 22%; }
.studio__poster:nth-child(2) { left: 50%; }
.studio__poster:nth-child(3) { left: 78%; }
.studio__poster:hover { filter: brightness(1.08); }

/* Ornate gilded gallery frame */
.studio__frame {
  padding: 14px;
  background:
    /* outer bevel highlight */
    linear-gradient(135deg, #f4d27a 0%, #c79a3e 18%, #8b6324 40%, #c79a3e 62%, #f4d27a 82%, #6b4818 100%);
  position: relative;
  box-shadow:
    /* deep room shadow */
    0 30px 60px rgba(0,0,0,.65),
    0 12px 24px rgba(0,0,0,.45),
    /* inner frame relief */
    inset 0 0 0 1px rgba(0,0,0,.45),
    inset 0 2px 4px rgba(255,235,180,.45),
    inset 0 -2px 4px rgba(0,0,0,.55);
}
.studio__frame::before,
.studio__frame::after {
  content: '';
  position: absolute;
  pointer-events: none;
}
/* outer carved ridge */
.studio__frame::before {
  inset: 4px;
  border: 1px solid rgba(0,0,0,.4);
  box-shadow: inset 0 1px 0 rgba(255,235,180,.35);
}
/* inner carved ridge */
.studio__frame::after {
  inset: 10px;
  border: 1px solid rgba(255,235,180,.3);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.4);
}
.studio__frame-mat {
  position: relative;
  background: #1a0f08;
  padding: 6px;
  box-shadow:
    inset 0 0 0 1px rgba(255,235,180,.18),
    inset 0 4px 12px rgba(0,0,0,.6);
}
.studio__frame-mat img,
.studio__poster-paint {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: var(--concrete);
}
.studio__poster-paint {
  background: radial-gradient(ellipse at 40% 35%, var(--orange-light) 0%, var(--orange) 50%, var(--orange-deep) 100%);
  filter: url(#spray-heavy);
  display: grid;
  place-items: center;
  aspect-ratio: 4/3;
}
.studio__poster-paint span {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 56px;
  letter-spacing: -0.02em;
  color: var(--paper);
  mix-blend-mode: overlay;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
}

/* Brass plaque hanging below frame */
.studio__plaque {
  margin: 12px auto 0;
  width: 78%;
  padding: 10px 12px;
  text-align: center;
  background:
    linear-gradient(180deg, #e0b870 0%, #b08840 50%, #8a6730 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.5),
    inset 0 -1px 0 rgba(0,0,0,.45),
    0 6px 12px rgba(0,0,0,.4),
    0 0 0 1px rgba(0,0,0,.4);
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--f-body);
  color: #2a1810;
}
.studio__plaque strong {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1.2;
  text-shadow: 0 1px 0 rgba(255,255,255,.3);
}
.studio__plaque .mono {
  color: #4a2a14;
  font-size: 8px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.studio__plaque .tiny {
  color: #5a3624;
  font-size: 8px;
  opacity: 0.85;
  font-style: italic;
}

@media (max-width: 760px) {
  .studio { height: 320vh; }
  .studio__posters { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 20vh 6vw; }
  .studio__poster { position: relative; left: auto !important; top: auto; width: 80vw; max-width: 280px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ PIXELS → PAINTINGS */
.pixels {
  position: relative;
  height: 280vh;
  background: var(--ink);
}
.pixels__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.pixels__wall {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(232,106,42,.04) 0%, transparent 55%),
    linear-gradient(180deg, var(--concrete) 0%, var(--ink) 50%, var(--concrete) 100%);
}
.pixels__wall::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='500' height='500'><filter id='px'><feTurbulence baseFrequency='0.02' numOctaves='4' seed='14'/><feColorMatrix values='0 0 0 0 0.08  0 0 0 0 0.06  0 0 0 0 0.04  0 0 0 1 0'/></filter><rect width='500' height='500' filter='url(%23px)' opacity='.6'/></svg>");
  background-size: 500px 500px;
  mix-blend-mode: overlay;
  opacity: .8;
}

.pixels__canvas {
  position: relative;
  z-index: 2;
  width: min(72vh, 520px);
  aspect-ratio: 480 / 715;
  display: block;
  image-rendering: pixelated;
}

/* Gallery-style frame — gilded */
.pixels__frame {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: calc(min(72vh, 520px) + 60px);
  aspect-ratio: 480 / 715;
  height: auto;
  pointer-events: none;
  z-index: 1;
  border: 14px solid #b18947;
  border-image: linear-gradient(135deg, #8c6621 0%, #f7d988 25%, #b18947 50%, #6d4d15 75%, #d6b469 100%) 1;
  box-shadow:
    inset 0 0 0 2px rgba(0,0,0,.4),
    inset 0 0 0 18px rgba(0,0,0,.2),
    0 30px 60px rgba(0,0,0,.7),
    0 0 120px rgba(232,106,42,.1);
}


.pixels__index {
  position: absolute;
  top: 5vh;
  left: 6vw;
  color: var(--orange);
  z-index: 3;
  pointer-events: none;
}
.pixels__attr {
  position: absolute;
  bottom: 5vh; right: 6vw;
  color: var(--paper-dark);
  opacity: .45;
  font-size: .58rem;
  letter-spacing: .22em;
  z-index: 3;
  text-align: right;
}

@media (max-width: 820px) {
  .pixels__canvas { width: min(64vh, 360px); }
  .pixels__frame { width: calc(min(64vh, 360px) + 40px); border-width: 10px; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ CONTACT */
.contact {
  position: relative;
  min-height: 140vh;
  padding: 14vh 6vw 10vh;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.contact__wall {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(232,106,42,0.06), transparent 55%),
    linear-gradient(180deg, var(--concrete) 0%, var(--ink) 100%);
  z-index: -2;
}
.contact__wall::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='500' height='500'><filter id='cw'><feTurbulence baseFrequency='0.02' numOctaves='4' seed='9'/><feColorMatrix values='0 0 0 0 0.08  0 0 0 0 0.06  0 0 0 0 0.04  0 0 0 1 0'/></filter><rect width='500' height='500' filter='url(%23cw)' opacity='.6'/></svg>");
  background-size: 500px 500px;
  mix-blend-mode: overlay;
  opacity: .9;
}

.contact__splatter {
  position: absolute;
  top: 28%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(86vw, 980px);
  pointer-events: none;
  z-index: 1;
}
.contact__splatter svg { width: 100%; height: auto; overflow: visible; }

.splatter-path { opacity: 0; transition: opacity 200ms; }
.droplets circle { opacity: 0; }
.contact.is-on .splatter-path { opacity: 1; animation: splatterReveal 1100ms var(--e-in) forwards; }
@keyframes splatterReveal {
  0%   { opacity: 0; stroke-dashoffset: 3200; transform: scale(.65); filter: url(#spray-heavy) blur(4px); }
  35%  { opacity: 1; }
  100% { opacity: 1; stroke-dashoffset: 0; transform: scale(1); filter: url(#spray-heavy) blur(0); }
}
.contact.is-on .droplets circle { animation: droplet 500ms var(--e-in) backwards; }
.contact.is-on .droplets circle:nth-child(1) { animation-delay: 250ms; }
.contact.is-on .droplets circle:nth-child(2) { animation-delay: 340ms; }
.contact.is-on .droplets circle:nth-child(3) { animation-delay: 430ms; }
.contact.is-on .droplets circle:nth-child(4) { animation-delay: 520ms; }
.contact.is-on .droplets circle:nth-child(5) { animation-delay: 370ms; }
.contact.is-on .droplets circle:nth-child(6) { animation-delay: 560ms; }
.contact.is-on .droplets circle:nth-child(7) { animation-delay: 650ms; }
@keyframes droplet { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.drip-trail { stroke-dasharray: 160; stroke-dashoffset: 160; opacity: 0; }
.contact.is-on .drip-trail { animation: dripFall 900ms var(--e-in) 500ms forwards; }
@keyframes dripFall { to { stroke-dashoffset: 0; opacity: .9; } }

.contact__text {
  position: absolute;
  top: 28%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-family: var(--f-display);
  font-size: clamp(56px, 11.5vw, 180px);
  line-height: 0.9;
  color: var(--paper);
  text-align: center;
  max-width: 620px;
  letter-spacing: -0.01em;
  filter: url(#spraypaint);
  opacity: 0;
  transition: opacity 700ms;
  pointer-events: none;
  padding: 0 40px;
}
.contact__text span { display: block; }
.contact.is-on .contact__text { opacity: 1; transition-delay: 700ms; }

.contact__row {
  position: relative;
  z-index: 3;
  margin-top: 64vh;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1200px;
  margin-left: auto; margin-right: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms, transform 700ms var(--e-out);
}
.contact.is-on .contact__row { opacity: 1; transform: translateY(0); transition-delay: 1000ms; }

/* spraycan — realistic Montana/Krylon silhouette */
.spraycan {
  position: relative;
  width: 260px;
  transform: rotate(-4deg);
  justify-self: end;
  filter: drop-shadow(0 25px 35px rgba(0,0,0,.55));
}
/* Pressable orange button + dark stem below */
.spraycan__nozzle {
  width: 44px;
  margin: 0 auto;
  position: relative;
}
.spraycan__button {
  width: 44px; height: 11px;
  margin: 0 auto;
  background: linear-gradient(180deg, #ff8a3d 0%, var(--orange) 45%, #a4370f 100%);
  border-radius: 4px 4px 2px 2px;
  position: relative;
  box-shadow: inset 0 -3px 4px rgba(0,0,0,.35), inset 0 2px 2px rgba(255,255,255,.35);
}
.spraycan__button::after {
  /* nozzle aperture — the tiny hole paint comes out of */
  content: '';
  position: absolute;
  top: 3px; right: 5px;
  width: 5px; height: 3px;
  background: #2a1810;
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(232,106,42,.6);
}
.spraycan__stem {
  width: 28px; height: 9px;
  margin: 0 auto;
  background: linear-gradient(180deg, #2a2420 0%, #1a1613 100%);
  border-radius: 0 0 3px 3px;
  box-shadow: inset 0 1px 0 rgba(0,0,0,.4);
}
/* Rounded top shoulder — narrower than body, wider than stem */
.spraycan__shoulder {
  width: 95%;
  margin: 0 auto;
  height: 16px;
  background: linear-gradient(180deg, #8a867e 0%, #c9c5bc 50%, #eae6dc 100%);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  box-shadow: inset 0 -4px 6px rgba(0,0,0,.25);
  position: relative;
}
.spraycan__shoulder::after {
  /* rim line where shoulder meets body */
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: rgba(0,0,0,.4);
}
.spraycan__body {
  background: linear-gradient(90deg,
    #5c5650 0%,
    #a8a29a 10%,
    #eae6dc 30%,
    #c9c5bc 50%,
    #a8a29a 75%,
    #5c5650 100%);
  padding: 22px 18px 26px;
  box-shadow: inset 0 -16px 24px rgba(0,0,0,.15);
  position: relative;
}
.spraycan__body::before {
  /* specular highlight strip */
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 22%;
  width: 8%;
  background: linear-gradient(180deg, rgba(255,255,255,.45), rgba(255,255,255,.15));
  opacity: .7;
}
.spraycan__body::after {
  /* subtle horizontal score lines like a real pressurized can */
  content: '';
  position: absolute;
  top: 8%; bottom: 8%; left: 0; right: 0;
  background-image: repeating-linear-gradient(
    180deg,
    transparent 0, transparent 48px,
    rgba(0,0,0,.06) 48px, rgba(0,0,0,.06) 49px
  );
  pointer-events: none;
}
.spraycan__label {
  position: relative;
  text-align: center;
  margin-bottom: 14px;
  color: var(--ink);
  z-index: 1;
}
.spraycan__label .mono {
  display: block;
  font-size: .56rem;
  letter-spacing: .24em;
}
.spraycan__label strong {
  display: block;
  font-family: var(--f-display);
  font-size: 26px;
  color: var(--orange-deep);
  line-height: 1;
  margin: 2px 0 4px;
  text-shadow: 0 1px 0 rgba(0,0,0,.2);
}
.spraycan__stripe {
  display: block;
  width: 80%;
  height: 3px;
  margin: 4px auto;
  background: var(--orange-deep);
  box-shadow: 0 2px 0 var(--ink);
}
.spraycan__buttons { display: flex; justify-content: space-around; gap: 8px; margin-top: 10px; }
.can-btn {
  flex: 1;
  aspect-ratio: 1;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-display);
  font-size: 16px;
  border: 2px solid var(--paper);
  border-radius: 4px;
  transition: transform 200ms;
  position: relative;
  overflow: hidden;
}
.can-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--orange);
  transform: translateY(100%);
  transition: transform 300ms var(--e-out);
}
.can-btn:hover::before { transform: translateY(0); }
.can-btn span { position: relative; z-index: 1; transition: color 200ms; }
.can-btn:hover span { color: var(--ink); }
.can-btn:active { transform: scale(.95); }
.spraycan__base {
  width: 100%;
  height: 10px;
  background: linear-gradient(180deg, #5c5650 0%, #1a1613 100%);
  border-radius: 0 0 3px 3px;
  box-shadow: inset 0 2px 3px rgba(0,0,0,.5);
  position: relative;
}
.spraycan__base::after {
  content: '';
  position: absolute;
  left: 4%; right: 4%; top: -2px;
  height: 2px;
  background: rgba(0,0,0,.5);
}

/* contact form */
.contact__form {
  display: flex; flex-direction: column; gap: 16px;
  max-width: 560px;
}
.contact__form .mono { color: var(--orange); }
.contact__form label {
  display: flex; flex-direction: column; gap: 6px;
  font-family: var(--f-mono);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--paper-dark);
}
.contact__form input,
.contact__form textarea {
  font-family: var(--f-body);
  font-size: 17px;
  padding: 12px 14px;
  background: rgba(241,235,221,.04);
  border: 1px solid rgba(241,235,221,.16);
  color: var(--paper);
  border-radius: 2px;
  outline: none;
  transition: border-color 200ms, background 200ms;
  resize: vertical;
}
.contact__form input:focus,
.contact__form textarea:focus {
  border-color: var(--orange);
  background: rgba(232,106,42,.08);
}
.contact__form .btn { align-self: flex-start; margin-top: 4px; }
.contact__form-status {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  min-height: 18px;
}

@media (max-width: 820px) {
  .contact__row { grid-template-columns: 1fr; gap: 40px; margin-top: 60vh; }
  .spraycan { justify-self: center; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ FOOTER */
.foot {
  background: var(--ink);
  color: var(--paper-dark);
  padding: 60px 6vw 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 2fr 1fr;
  gap: 40px;
  border-top: var(--edge);
  position: relative;
}
.foot::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange) 50%, transparent);
  opacity: .6;
}
.foot__col { display: flex; flex-direction: column; gap: 10px; }
.foot__col .mono { color: var(--orange); margin-bottom: 4px; }
.foot__col ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.foot__col ul a {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--paper-dark);
  transition: color 200ms, padding-left 200ms;
}
.foot__col ul a:hover { color: var(--orange); padding-left: 6px; }

.foot__col--wide { grid-column: auto; }
.foot__form {
  display: flex; gap: 0; max-width: 520px; position: relative;
  margin-top: 8px;
}
.foot__form input {
  flex: 1;
  padding: 12px 14px;
  background: transparent;
  border: 1.5px solid var(--paper-dark);
  border-right: 0;
  color: var(--paper);
  font-family: var(--f-body);
  font-size: 15px;
  outline: none;
  transition: border-color 200ms;
}
.foot__form input:focus { border-color: var(--orange); }
.foot__form input::placeholder { color: rgba(241,235,221,.4); }
.foot__form button {
  padding: 12px 18px;
  background: var(--paper);
  color: var(--ink);
  border: 1.5px solid var(--paper);
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: background 200ms, color 200ms;
}
.foot__form button:hover { background: var(--orange); border-color: var(--orange); }
.foot__form-status { margin-top: 8px; color: var(--orange); min-height: 14px; }

.foot__col--brand { text-align: right; }
.foot__brand {
  font-family: var(--f-display);
  font-size: 32px;
  color: var(--paper);
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .foot { grid-template-columns: 1fr 1fr; }
  .foot__col--wide, .foot__col--brand { grid-column: 1 / -1; }
  .foot__col--brand { text-align: left; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ KONAMI overlay */
.konami {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 200;
  display: grid; place-items: center;
}
.konami svg { width: 100%; height: 100%; }
.konami circle { transition: r 1200ms var(--e-out); }
body.konami .konami circle { r: 90; }
body.konami::before {
  content: 'YOU GOT IT IN ONE.';
  position: fixed;
  inset: 0;
  display: grid; place-items: center;
  font-family: var(--f-display);
  font-size: clamp(40px, 8vw, 120px);
  color: var(--paper);
  z-index: 201;
  pointer-events: none;
  animation: konamiText 3s forwards;
}
@keyframes konamiText {
  0% { opacity: 0; transform: scale(0.8); }
  15% { opacity: 1; transform: scale(1); }
  85% { opacity: 1; }
  100% { opacity: 0; transform: scale(1.1); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ click splat */
.click-splat {
  position: fixed;
  pointer-events: none;
  z-index: 110;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .studio { height: auto; }
  .studio__sticky { position: relative; height: auto; min-height: 80vh; }
  .spray__line, .hero__sig, .hero__cue, .hero__ctas, .poster { opacity: 1 !important; transform: none !important; }
  .contact__text { opacity: 1 !important; transform: translate(-50%, -50%) !important; }
  .contact__row { opacity: 1 !important; transform: none !important; }
  .kinetic > span, .manifesto__foot, [data-split] { opacity: 1 !important; transform: none !important; }
  .marquee__track { animation: none; }
}
