:root {
  --bg: #020202;
  --bg-soft: #0b0b0c;
  --paper: #f3ecdf;
  --paper-dirty: #d8d0c2;
  --ink: #0f0f10;
  --muted: #b7ae9f;
  --line: rgba(243, 236, 223, 0.18);
  --hot: #ff2948;
  --acid: #d6ff2f;
  --cyan: #4be0ff;
  --max-width: 1560px;
  --shell-padding: 0.9rem;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.6);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  color: var(--paper);
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.08), transparent 24%),
    radial-gradient(circle at 82% 9%, rgba(255, 255, 255, 0.05), transparent 18%),
    radial-gradient(circle at 48% 82%, rgba(255, 255, 255, 0.03), transparent 24%),
    linear-gradient(180deg, #090909 0%, #040404 46%, #010101 100%);
}

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

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

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
  filter: blur(10px);
}

.page-shell::before {
  top: 7rem;
  left: -8rem;
  width: 20rem;
  height: 20rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 68%);
}

.page-shell::after {
  right: -7rem;
  top: 36rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
}

.noise-layer,
.scanline-layer,
.dust-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.noise-layer {
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 74px 74px;
  -webkit-mask-image: radial-gradient(circle at center, black, transparent 94%);
  mask-image: radial-gradient(circle at center, black, transparent 94%);
}

.scanline-layer {
  opacity: 0.13;
  mix-blend-mode: screen;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.07) 0,
      rgba(255, 255, 255, 0.07) 1px,
      transparent 1px,
      transparent 4px
    );
}

.dust-layer {
  opacity: 0.12;
  background:
    radial-gradient(circle at 15% 23%, rgba(255, 255, 255, 0.16) 0 1px, transparent 2px),
    radial-gradient(circle at 72% 14%, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 62% 78%, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 84% 62%, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px);
  background-size: 240px 240px;
}

.site-header,
.site-footer,
main > section:not(.scroll-hero):not(.hero-cover):not(.riot-strip) {
  width: min(calc(100% - (var(--shell-padding) * 2)), var(--max-width));
  margin: 0 auto;
}

.mobile-header-spacer {
  height: 0;
}

main {
  width: 100%;
  margin: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem 0 1.15rem;
  isolation: isolate;
  transition:
    transform 120ms linear,
    opacity 120ms linear;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: rgba(8, 8, 9, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: none;
  z-index: 0;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  bottom: 0;
  height: 2px;
  background:
    linear-gradient(90deg, transparent, var(--paper), transparent 22%),
    linear-gradient(90deg, transparent, rgba(243, 236, 223, 0.5), rgba(243, 236, 223, 0.1), transparent 92%);
  pointer-events: none;
  z-index: 0;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.16rem;
}

.brand-mark,
.brand-sub,
.eyebrow,
.panel-tag,
.site-nav a,
.hero-metrics span,
.site-footer p,
.service-index,
.stamp-label,
.issue-chip {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.brand-mark {
  position: relative;
  display: inline-block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.3rem, 3vw, 3.1rem);
  line-height: 0.9;
}

.brand-mark::before,
.brand-mark::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.brand-mark::before {
  color: rgba(243, 236, 223, 0.5);
  transform: translate(2px, 0);
  opacity: 0.22;
}

.brand-mark::after {
  color: rgba(243, 236, 223, 0.35);
  transform: translate(-2px, 0);
  opacity: 0.18;
}

.brand-mark::before,
.brand-mark::after {
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.brand:hover .brand-mark::before,
.brand:focus-visible .brand-mark::before {
  color: var(--cyan);
  opacity: 0.62;
  transform: translate(3px, -1px);
}

.brand:hover .brand-mark::after,
.brand:focus-visible .brand-mark::after {
  color: var(--hot);
  opacity: 0.62;
  transform: translate(-3px, 1px);
}

.brand-sub {
  color: var(--muted);
  font-size: 0.67rem;
}

.header-side {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.issue-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2.25rem;
  padding: 0.34rem 0.76rem;
  border: 2px solid rgba(243, 236, 223, 0.2);
  background:
    linear-gradient(135deg, rgba(243, 236, 223, 0.08), rgba(243, 236, 223, 0)),
    rgba(7, 7, 8, 0.96);
  font-size: 0.67rem;
  transform: rotate(-2.2deg);
  box-shadow: 7px 7px 0 rgba(255, 255, 255, 0.06);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav a {
  position: relative;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.32rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--acid), var(--hot));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--paper);
}

.header-side:hover .issue-chip,
.header-side:focus-within .issue-chip {
  border-color: rgba(75, 224, 255, 0.34);
  box-shadow: 7px 7px 0 rgba(75, 224, 255, 0.14);
}

.video-banner {
  width: auto;
  margin: 0 calc(50% - 50vw);
  padding: 2.0rem 0 1rem;
}

.video-banner-frame {
  position: relative;
  min-height: 8.2rem;
  overflow: hidden;
  border: 1px solid rgba(243, 236, 223, 0.14);
  background: #080808;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.video-banner-frame::before,
.video-banner-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.video-banner-frame::before {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.78), transparent 22%, transparent 78%, rgba(8, 8, 8, 0.78)),
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px,
      transparent 4px
    );
  mix-blend-mode: screen;
  opacity: 0.42;
}

.video-banner-frame::after {
  border-top: 1px solid rgba(243, 236, 223, 0.16);
  border-bottom: 1px solid rgba(243, 236, 223, 0.08);
}

.video-banner-media {
  display: block;
  width: 100%;
  height: 8.2rem;
  object-fit: cover;
  filter: grayscale(1) saturate(0.15) contrast(1.08) brightness(0.56);
}

.video-banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.9rem;
}

.video-banner-label {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(0.82rem, 1.6vw, 1.05rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(243, 236, 223, 0.88);
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}

.video-banner-label:last-child {
  color: rgba(255, 41, 72, 0.92);
}

main {
  padding: 0 0 6rem;
}

section {
  position: relative;
}

.scroll-hero {
  position: relative;
  width: auto;
  height: 100svh;
  min-height: 42rem;
  margin: 0 calc(50% - 50vw);
  background: #050505;
}

.scroll-hero-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  border-bottom: 1px solid rgba(243, 236, 223, 0.12);
  background: #070707;
  transition: transform 120ms linear;
}

.scroll-hero-media,
.scroll-hero-overlay,
.scroll-hero-content {
  position: absolute;
  inset: 0;
}

.scroll-hero-media {
  overflow: hidden;
}

.scroll-hero-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.9) saturate(0.18) contrast(1.04) brightness(0.62);
  transform: scale(1.02);
  transition:
    transform 90ms linear,
    filter 90ms linear;
}

.scroll-hero-overlay {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.16) 0%, rgba(8, 8, 8, 0.3) 32%, rgba(8, 8, 8, 0.7) 100%),
    radial-gradient(circle at 22% 22%, rgba(255, 255, 255, 0.06), transparent 18%),
    radial-gradient(circle at 76% 16%, rgba(255, 41, 72, 0.1), transparent 15%);
  transition: backdrop-filter 90ms linear;
}

.scroll-hero-overlay::before,
.scroll-hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.scroll-hero-overlay::before {
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px,
      transparent 4px
    );
  mix-blend-mode: screen;
  opacity: 0.2;
}

.scroll-hero-overlay::after {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.78), transparent 18%, transparent 82%, rgba(8, 8, 8, 0.78));
}

.scroll-hero-content {
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(5.2rem, 10vh, 6.6rem) clamp(1rem, 2vw, 1.35rem) clamp(2.2rem, 5.5vh, 3.4rem);
  pointer-events: none;
}

.scroll-hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(18rem, 0.82fr);
  grid-template-areas:
    "topline topline"
    "eyebrow eyebrow"
    "title scribble"
    "title body"
    "title actions"
    "metrics metrics";
  gap: 0.45rem 1.55rem;
  align-items: start;
  width: min(100%, 72rem);
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(243, 236, 223, 0.12);
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.42), rgba(8, 8, 8, 0.22)),
    rgba(8, 8, 8, 0.22);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  opacity: 0;
  transform: translateY(4rem);
  filter: blur(12px);
  transition:
    opacity 120ms linear,
    transform 120ms linear,
    filter 120ms linear;
}

.scroll-hero-copy .hero-topline {
  grid-area: topline;
  margin-bottom: 0;
}

.scroll-hero-copy .eyebrow {
  grid-area: eyebrow;
  margin: 0;
  max-width: 48rem;
}

.scroll-hero-copy .glitch-title {
  grid-area: title;
  width: 100%;
  max-width: 9.6ch;
  font-size: clamp(3rem, 5.25vw, 5rem);
  line-height: 0.9;
}

.scroll-hero-copy .hero-scribble {
  grid-area: scribble;
  margin: 0.2rem 0 0;
  align-self: end;
}

.scroll-hero-copy .hero-text {
  grid-area: body;
  max-width: 25rem;
  margin: 0.35rem 0 0;
  color: rgba(243, 236, 223, 0.9);
}

.scroll-hero-copy .hero-actions {
  grid-area: actions;
  margin-top: 1.1rem;
}

.scroll-hero-copy .hero-metrics {
  grid-area: metrics;
  margin-top: 1.35rem;
  gap: 0.8rem;
}

.scroll-hero-copy .hero-metrics li {
  padding: 0.82rem 0.8rem 0.72rem;
}

.scroll-hero-copy .hero-metrics strong {
  font-size: 2.35rem;
}

.scroll-hero-prompt {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(243, 236, 223, 0.14);
  background: rgba(8, 8, 8, 0.5);
  color: rgba(243, 236, 223, 0.82);
  font-family: "Bebas Neue", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
  transition:
    opacity 90ms linear,
    transform 90ms linear;
}

.scroll-hero.is-active .scroll-hero-video,
.scroll-hero.is-active .scroll-hero-copy,
.scroll-hero.is-active .scroll-hero-overlay,
.scroll-hero.is-active .scroll-hero-prompt {
  will-change: transform, filter, opacity;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  gap: 2rem;
  align-items: center;
  padding: 4rem 0 5rem;
}

.hero-copy {
  position: relative;
}

.hero-cover {
  position: relative;
  min-height: min(54rem, 84vh);
  display: block;
  width: auto;
  margin: 0 calc(50% - 50vw);
  padding: 1.2rem 0 2rem;
  overflow: hidden;
  border: 1px solid rgba(243, 236, 223, 0.1);
  background: #060606;
}

.hero-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 41, 72, 0.16), transparent 22%),
    radial-gradient(circle at 74% 12%, rgba(255, 41, 72, 0.12), transparent 16%);
  pointer-events: none;
  z-index: 1;
}

.hero-cover-media,
.hero-cover-overlay {
  position: absolute;
  inset: 0;
}

.hero-cover-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(8px) grayscale(0.55) saturate(0.3) brightness(0.42);
  transform: scale(1.08);
}

.hero-cover-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.2) 0%, rgba(8, 8, 8, 0.42) 20%, rgba(8, 8, 8, 0.6) 100%),
    radial-gradient(circle at center, transparent 18%, rgba(0, 0, 0, 0.28) 100%);
  backdrop-filter: blur(3px);
}

.hero-cover-inner {
  position: relative;
  inset: auto;
  z-index: 2;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  width: min(calc(100% - (var(--shell-padding) * 2)), var(--max-width));
  min-height: inherit;
  margin: 0 auto;
  padding: clamp(1rem, 2vw, 1.4rem);
}

.hero-cover .hero-topline {
  position: relative;
  z-index: 3;
  margin-bottom: 0.35rem;
}

.cover-kicker {
  position: relative;
  z-index: 3;
  margin: 0;
  color: rgba(243, 236, 223, 0.8);
}

.cover-title {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 0.25rem;
  margin: 0;
  padding-right: 0.03em;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5.5rem, 17vw, 12rem);
  line-height: 0.8;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #ff1e1e;
  text-shadow:
    0 0 6px rgba(255, 30, 30, 0.85),
    0 0 18px rgba(255, 30, 30, 0.45),
    0 10px 28px rgba(255, 30, 30, 0.28);
}

.cover-word {
  display: block;
}

.cover-word:last-child {
  text-align: right;
}

.cover-credits {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.cover-credit {
  position: absolute;
  color: #ff2b2b;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.35rem);
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(255, 43, 43, 0.35);
}

.credit-a {
  top: 18%;
  left: 2%;
}

.credit-b {
  top: 23%;
  left: 19%;
}

.credit-c {
  top: 22%;
  left: 45%;
}

.credit-d {
  top: 18%;
  right: 10%;
}

.credit-e {
  top: 28%;
  left: 59%;
}

.credit-f {
  top: 31%;
  left: 8%;
}

.credit-g {
  top: 37%;
  left: 42%;
}

.credit-h {
  bottom: 23%;
  left: 4%;
}

.credit-i {
  bottom: 18%;
  left: 34%;
}

.credit-j {
  bottom: 14%;
  right: 8%;
}

.cover-mark {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 3;
  display: grid;
  gap: 0.15rem;
  place-items: center;
  transform: translate(-50%, -36%);
  color: #ff2525;
  text-align: center;
  text-shadow: 0 0 10px rgba(255, 37, 37, 0.35);
}

.cover-mark span:first-child {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.14em;
}

.cover-mark span:last-child {
  font-family: "Special Elite", cursive;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  letter-spacing: 0.18em;
}

.cover-bottom {
  position: relative;
  z-index: 3;
  align-self: end;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.2rem 2rem;
  align-items: end;
  margin-top: auto;
}

.cover-copy {
  max-width: 34rem;
  margin: 0;
  color: rgba(243, 236, 223, 0.88);
}

.cover-bottom .hero-actions {
  margin-top: 0;
}

.cover-metrics {
  grid-column: 1 / -1;
  margin-top: 0.4rem;
  max-width: 52rem;
}

.hero-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.stamp-label {
  display: inline-flex;
  align-items: center;
  min-height: 2.45rem;
  padding: 0.34rem 0.82rem;
  border: 2px solid rgba(243, 236, 223, 0.22);
  background:
    linear-gradient(135deg, rgba(243, 236, 223, 0.12), rgba(243, 236, 223, 0.03)),
    rgba(10, 10, 11, 0.94);
  font-size: 0.73rem;
  box-shadow: 7px 7px 0 rgba(255, 255, 255, 0.06);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.scribble-tag,
.hero-scribble,
.scribble-line,
.scribble-mini,
.floating-note {
  font-family: "Caveat", "Permanent Marker", cursive;
  font-weight: 700;
}

.scribble-tag {
  align-self: center;
  color: var(--paper-dirty);
  font-size: clamp(1.18rem, 2.2vw, 1.38rem);
  transform: rotate(-2deg);
}

.eyebrow,
.panel-tag,
.service-index {
  color: var(--paper-dirty);
  font-size: 0.78rem;
}

.glitch-title,
.section-heading h2,
.service-card h3,
.work-copy h3,
.text-panel h3,
.about h2,
.contact h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.02em;
}

.glitch-title {
  position: relative;
  display: inline-block;
  max-width: 10ch;
  font-size: clamp(4.7rem, 10vw, 8.8rem);
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.08);
}

.glitch-title::before,
.glitch-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    text-shadow 180ms ease;
}

.glitch-title::before {
  color: rgba(243, 236, 223, 0.34);
  transform: translate(4px, 0);
  clip-path: polygon(0 0, 100% 0, 100% 42%, 0 46%);
  animation: glitch-shift-a 3.4s steps(2, end) infinite;
  opacity: 0.18;
}

.glitch-title::after {
  color: rgba(243, 236, 223, 0.26);
  transform: translate(-4px, 0);
  clip-path: polygon(0 58%, 100% 54%, 100% 100%, 0 100%);
  animation: glitch-shift-b 2.7s steps(2, end) infinite;
  opacity: 0.15;
}

.hero-scribble {
  margin: 0.82rem 0 0;
  color: var(--paper-dirty);
  font-size: clamp(1.18rem, 2.2vw, 1.38rem);
  transform: rotate(-2deg);
}

.hero-copy:hover .stamp-label,
.hero-copy:focus-within .stamp-label {
  border-color: rgba(255, 41, 72, 0.34);
  box-shadow: 7px 7px 0 rgba(255, 41, 72, 0.14);
}

.hero-copy:hover .scribble-tag,
.hero-copy:hover .hero-scribble,
.hero-copy:focus-within .scribble-tag,
.hero-copy:focus-within .hero-scribble {
  color: var(--acid);
}

.hero-copy:hover .glitch-title::before,
.hero-copy:focus-within .glitch-title::before,
.glitch-title:hover::before {
  color: var(--cyan);
  opacity: 0.58;
  text-shadow: 0 0 20px rgba(75, 224, 255, 0.18);
}

.hero-copy:hover .glitch-title::after,
.hero-copy:focus-within .glitch-title::after,
.glitch-title:hover::after {
  color: var(--hot);
  opacity: 0.58;
  text-shadow: 0 0 20px rgba(255, 41, 72, 0.18);
}

.hero-text,
.section-note,
.work-copy p,
.service-card p,
.about p,
.contact p,
.manifesto-list li,
.board-list li {
  font-size: 1.02rem;
  line-height: 1.72;
}

.hero-text,
.section-note,
.work-copy p,
.about p,
.contact p {
  color: var(--muted);
}

.hero-text {
  max-width: 35rem;
  margin: 1.35rem 0 0;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.25rem;
  border: 2px solid rgba(243, 236, 223, 0.2);
  border-radius: 0.12rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translate(-2px, -2px);
  border-color: rgba(243, 236, 223, 0.42);
}

.button-primary {
  background: linear-gradient(135deg, rgba(243, 236, 223, 0.96), rgba(216, 208, 194, 0.96));
  color: #101010;
  box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.08);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 8px 8px 0 rgba(255, 255, 255, 0.06);
}

.button-primary:hover,
.button-primary:focus-visible {
  border-color: rgba(255, 41, 72, 0.44);
  box-shadow: 8px 8px 0 rgba(255, 41, 72, 0.18);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(75, 224, 255, 0.44);
  box-shadow: 8px 8px 0 rgba(75, 224, 255, 0.15);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 2.25rem 0 0;
  padding: 0;
  list-style: none;
}

.hero-metrics li {
  padding: 1rem 0.95rem 0.88rem;
  border: 2px solid rgba(243, 236, 223, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(8, 8, 9, 0.92);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.hero-metrics li:nth-child(2) {
  transform: rotate(-1.4deg);
}

.hero-metrics li:nth-child(3) {
  transform: rotate(1.2deg);
}

.hero-metrics strong {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.8rem;
  line-height: 0.95;
}

.hero-metrics span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.72rem;
}

.poster-stack {
  position: relative;
  min-height: 45rem;
}

.floating-note {
  position: absolute;
  z-index: 3;
  font-size: 1rem;
  color: var(--paper-dirty);
  transition: color 180ms ease;
}

.note-left {
  top: 1.9rem;
  left: 0.25rem;
  transform: rotate(-9deg);
}

.note-right {
  right: 0.3rem;
  bottom: 1rem;
  transform: rotate(7deg);
}

.poster-card {
  --poster-transform: none;
  position: absolute;
  overflow: hidden;
  border: 2px solid rgba(243, 236, 223, 0.15);
  background: #080808;
  box-shadow: var(--shadow);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  transform: var(--poster-transform);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.poster-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.25;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.1) 0,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px,
      transparent 5px
    ),
    linear-gradient(180deg, transparent 28%, rgba(0, 0, 0, 0.88) 100%);
}

.poster-card::after,
.work-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(5, 5, 6, 0.86) 100%);
  pointer-events: none;
}

.poster-card img,
.work-panel img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) saturate(0.08) contrast(1.08) brightness(0.88);
  transition:
    filter 220ms ease,
    transform 220ms ease;
}

.poster-main {
  inset: 1.4rem 0 5rem 3rem;
  --poster-transform: rotate(-2deg);
}

.poster-side {
  top: 0;
  left: 0;
  width: 17.5rem;
  height: 14rem;
  --poster-transform: rotate(-9deg);
}

.poster-tall {
  right: 0.2rem;
  bottom: 0;
  width: 15rem;
  height: 22rem;
  --poster-transform: rotate(6deg);
}

.tape {
  position: absolute;
  z-index: 3;
  background: rgba(243, 236, 223, 0.18);
  backdrop-filter: blur(2px);
}

.tape-top {
  top: 0.7rem;
  left: 38%;
  width: 5rem;
  height: 1.2rem;
  transform: rotate(-5deg);
}

.tape-left {
  top: 1rem;
  left: 0.7rem;
  width: 4rem;
  height: 1rem;
  transform: rotate(-18deg);
}

.tape-right {
  top: 1rem;
  right: 0.7rem;
  width: 4rem;
  height: 1rem;
  transform: rotate(16deg);
}

.poster-label {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.15rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

.poster-label span {
  color: rgba(243, 236, 223, 0.76);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.poster-label strong {
  font-size: 1rem;
}

.riot-strip {
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
  border-block: 2px solid rgba(243, 236, 223, 0.14);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.07)),
    #060606;
}

.riot-track {
  display: flex;
  gap: 2rem;
  min-width: max-content;
  padding: 0.95rem 2rem;
  animation: scroll-track 60s linear infinite;
}

.riot-track span {
  flex: 0 0 auto;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 0.09em;
  white-space: nowrap;
}

.riot-track span {
  color: rgba(243, 236, 223, 0.74);
  transition: color 180ms ease;
}

.featured-grid,
.services,
.about,
.contact {
  padding-top: 6rem;
}

.section-heading {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.about h2,
.contact h2 {
  max-width: 12ch;
  font-size: clamp(3rem, 5vw, 5.2rem);
}

.scribble-line {
  margin: 0;
  color: var(--paper-dirty);
  font-size: clamp(1.18rem, 2.2vw, 1.38rem);
  transform: rotate(-2deg);
}

.split-heading {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 24rem);
  align-items: end;
}

.collage-grid {
  columns: 4 15rem;
  column-gap: 1rem;
}

.collage-grid > * {
  break-inside: avoid;
  margin-bottom: 1rem;
}

.work-panel,
.text-panel,
.service-card,
.contact-panel {
  box-shadow: var(--shadow);
}

.work-panel {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  border: 2px solid rgba(243, 236, 223, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(10, 10, 11, 0.92);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.work-panel::before {
  content: attr(data-note);
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.28rem 0.68rem;
  border: 2px solid rgba(243, 236, 223, 0.16);
  background: rgba(7, 7, 8, 0.76);
  color: var(--paper-dirty);
  font-family: "Permanent Marker", cursive;
  font-size: 0.84rem;
  transform: rotate(4deg);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.work-feature {
  grid-column: 1;
  grid-row: span 2;
}

.work-tall {
  min-height: 26rem;
  transform: rotate(1.1deg);
}

.work-wide {
  min-height: 22rem;
  transform: rotate(-1.1deg);
}

.work-copy {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 1.45rem;
}

.photo-tile {
  --tile-tilt: 0deg;
  transform: rotate(var(--tile-tilt));
  cursor: zoom-in;
}

.photo-tile.ratio-landscape {
  aspect-ratio: 3 / 2;
}

.photo-tile.ratio-portrait {
  aspect-ratio: 2 / 3;
}

.photo-tile::before {
  content: none;
}

.photo-tile::after {
  background: linear-gradient(180deg, rgba(6, 6, 7, 0.02), rgba(6, 6, 7, 0.1));
  pointer-events: none;
}

.photo-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.portfolio-trigger {
  cursor: zoom-in;
}

.portfolio-trigger:focus-visible {
  outline: 2px solid rgba(243, 236, 223, 0.9);
  outline-offset: -2px;
}

.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: 0.8rem;
}

.portfolio-lightbox[hidden] {
  display: none;
}

.portfolio-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 4, 5, 0.88);
  backdrop-filter: blur(14px);
}

.portfolio-lightbox-figure {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: min(96vw, 96rem);
  max-height: 92vh;
  margin: 0;
  padding: 0.6rem;
  border: 1px solid rgba(243, 236, 223, 0.16);
  background: rgba(8, 8, 9, 0.9);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
}

.portfolio-lightbox-figure.is-portrait {
  max-width: min(82vw, 46rem);
}

.portfolio-lightbox-figure.is-landscape {
  max-width: min(96vw, 96rem);
}

.portfolio-lightbox-image {
  display: block;
  width: auto;
  max-width: calc(96vw - 1.2rem);
  max-height: calc(92vh - 1.2rem);
  object-fit: contain;
  filter: none;
}

.portfolio-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  min-height: 2.8rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid rgba(243, 236, 223, 0.24);
  background: rgba(7, 7, 8, 0.9);
  color: var(--paper);
  font: inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.tilt-left {
  --tile-tilt: -1.4deg;
}

.tilt-right {
  --tile-tilt: 1.3deg;
}

.tilt-soft {
  --tile-tilt: 0.65deg;
}

.work-panel h3,
.text-panel h3 {
  margin-top: 0.28rem;
  font-size: clamp(2.1rem, 4vw, 3rem);
}

.text-panel {
  padding: 1.4rem;
  border: 2px solid rgba(243, 236, 223, 0.16);
  background:
    linear-gradient(180deg, rgba(243, 236, 223, 0.94), rgba(216, 208, 194, 0.96));
  color: var(--ink);
  transform: rotate(-1.7deg);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.text-panel .panel-tag {
  color: #2d2d2d;
}

.manifesto-panel h3 {
  max-width: 12ch;
}

.manifesto-list {
  margin: 1.2rem 0 0;
  padding-left: 1.15rem;
  color: #222;
}

.manifesto-list li + li {
  margin-top: 0.45rem;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  position: relative;
  padding: 1.35rem;
  border: 2px solid rgba(243, 236, 223, 0.12);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    color 180ms ease;
}

.service-card::before,
.service-card::after {
  content: "";
  position: absolute;
  width: 3.7rem;
  height: 0.95rem;
  background: rgba(243, 236, 223, 0.16);
}

.service-card::before {
  top: 0.55rem;
  right: 1.1rem;
  transform: rotate(14deg);
}

.service-card::after {
  bottom: 0.8rem;
  left: 0.8rem;
  transform: rotate(-17deg);
}

.service-card-light {
  background:
    linear-gradient(180deg, rgba(243, 236, 223, 0.97), rgba(216, 208, 194, 0.98));
  color: var(--ink);
}

.service-card-light .service-index,
.service-card-light .scribble-mini {
  color: #3a3a3a;
}

.service-card-light p {
  color: #363636;
}

.service-card-dark {
  background:
    linear-gradient(180deg, rgba(10, 10, 11, 0.98), rgba(5, 5, 6, 0.98));
}

.service-card-dark .scribble-mini {
  color: var(--paper-dirty);
}

.service-card:nth-child(2) {
  transform: rotate(-1.4deg);
}

.service-card:nth-child(3) {
  transform: rotate(1deg);
}

.service-card h3 {
  margin-top: 0.85rem;
  font-size: 2rem;
}

.scribble-mini {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: clamp(1.12rem, 2.2vw, 1.38rem);
  transform: rotate(-1deg);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: center;
}

.about-copy {
  max-width: none;
  padding-right: 0;
  order: 2;
}

.about-copy h2 {
  max-width: none;
  width: auto;
}

.about-title-line {
  display: block;
  white-space: nowrap;
}

.about-body {
  display: grid;
  gap: 1.35rem;
  align-content: center;
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-top: 0;
  order: 1;
}

.about-body .eyebrow {
  margin: 0;
}

.about-body p {
  margin: 0;
  color: rgba(243, 236, 223, 0.86);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(1.55rem, 3vw, 2.2rem);
  border: 2px solid rgba(243, 236, 223, 0.14);
  background:
    radial-gradient(circle at right top, rgba(255, 255, 255, 0.05), transparent 22%),
    radial-gradient(circle at left bottom, rgba(255, 255, 255, 0.05), transparent 26%),
    rgba(10, 10, 11, 0.92);
}

.contact-title-block {
  max-width: 22rem;
}

.contact-title-block .eyebrow {
  margin: 0 0 0.95rem;
}

.contact-title-block h2 {
  margin: 0;
}

.contact-body {
  display: grid;
  gap: 1.35rem;
  align-content: center;
  max-width: 34rem;
  width: 100%;
}

.contact-note {
  margin: 0;
  max-width: none;
}

.contact-actions {
  margin-top: 0;
  align-self: start;
  justify-self: start;
}

.poster-stack:hover .floating-note.note-left,
.poster-stack:focus-within .floating-note.note-left,
.section-heading:hover .scribble-line {
  color: var(--acid);
}

.poster-stack:hover .floating-note.note-right,
.poster-stack:focus-within .floating-note.note-right {
  color: var(--hot);
}

.poster-card:hover,
.poster-card:focus-within,
.work-panel:hover,
.work-panel:focus-within,
.service-card:hover,
.service-card:focus-within,
.text-panel:hover,
.about-body:hover {
  border-color: rgba(243, 236, 223, 0.34);
}

.poster-card:hover,
.poster-card:focus-within {
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(75, 224, 255, 0.16);
}

.work-panel:hover,
.work-panel:focus-within {
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(255, 41, 72, 0.16);
}

.service-card:hover,
.service-card:focus-within {
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(214, 255, 47, 0.16);
}

.text-panel:hover {
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(243, 236, 223, 0.18);
}

.poster-card:hover img,
.poster-card:focus-within img,
.work-panel:hover img,
.work-panel:focus-within img {
  filter: grayscale(0.18) saturate(0.92) contrast(1.1) brightness(0.92);
  transform: scale(1.02);
}

.photo-tile:hover img,
.photo-tile:focus-within img {
  filter: none;
  transform: scale(1.02);
}

.work-panel:hover .panel-tag,
.work-panel:focus-within .panel-tag {
  color: var(--acid);
}

.service-card:nth-child(1):hover .service-index,
.service-card:nth-child(1):hover .scribble-mini,
.service-card:nth-child(1):focus-within .service-index,
.service-card:nth-child(1):focus-within .scribble-mini,
.service-card:nth-child(3):hover .service-index,
.service-card:nth-child(3):hover .scribble-mini,
.service-card:nth-child(3):focus-within .service-index,
.service-card:nth-child(3):focus-within .scribble-mini {
  color: var(--hot);
}

.service-card:nth-child(2):hover .service-index,
.service-card:nth-child(2):hover .scribble-mini,
.service-card:nth-child(2):focus-within .service-index,
.service-card:nth-child(2):focus-within .scribble-mini {
  color: var(--acid);
}

.work-panel:hover::before,
.work-panel:focus-within::before {
  color: var(--hot);
  border-color: rgba(255, 41, 72, 0.34);
}

.riot-strip:hover .riot-track span:nth-child(3n + 1) {
  color: var(--paper);
}

.riot-strip:hover .riot-track span:nth-child(3n + 2) {
  color: var(--acid);
}

.riot-strip:hover .riot-track span:nth-child(3n) {
  color: var(--cyan);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-size: 0.74rem;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.lift {
  animation: lift-in 850ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.poster-side {
  animation-delay: 120ms;
}

.poster-main {
  animation-delay: 200ms;
}

.poster-tall {
  animation-delay: 280ms;
}

@keyframes lift-in {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.98) var(--poster-transform);
  }

  to {
    opacity: 1;
    transform: var(--poster-transform);
  }
}

@keyframes scroll-track {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes glitch-shift-a {
  0%,
  88%,
  100% {
    transform: translate(4px, 0);
  }

  90% {
    transform: translate(-2px, -1px);
  }

  94% {
    transform: translate(6px, 1px);
  }
}

@keyframes glitch-shift-b {
  0%,
  84%,
  100% {
    transform: translate(-4px, 0);
  }

  86% {
    transform: translate(3px, 1px);
  }

  92% {
    transform: translate(-6px, -1px);
  }
}

@media (max-width: 960px) {
  :root {
    --shell-padding: 0.8rem;
  }

  .site-header {
    left: 0;
    right: 0;
    flex-direction: column;
  }

  .header-side {
    justify-content: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
  }

  .hero,
  .about,
  .split-heading,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .about {
    align-items: start;
  }

  .hero {
    padding-top: 2.2rem;
  }

  .scroll-hero {
    height: 100svh;
    min-height: 38rem;
  }

  .scroll-hero-content {
    padding: clamp(4.4rem, 9vh, 5.4rem) 0.85rem 2rem;
  }

  .scroll-hero-copy {
    grid-template-columns: minmax(0, 1.12fr) minmax(16rem, 0.88fr);
    width: min(100%, 60rem);
  }

  .scroll-hero-copy .glitch-title {
    max-width: 9.2ch;
    font-size: clamp(2.7rem, 5.9vw, 4.4rem);
  }

  .scroll-hero-copy .hero-text {
    max-width: 22rem;
  }

  .scroll-hero-prompt {
    bottom: 0.85rem;
  }

  .video-banner-overlay {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.22rem;
  }

  .hero-cover {
    min-height: 46rem;
  }

  .hero-cover-inner {
    padding: 1rem;
  }

  .cover-title {
    grid-template-columns: 1fr;
    gap: 0;
    font-size: clamp(5rem, 18vw, 8rem);
  }

  .cover-word:last-child {
    text-align: left;
  }

  .cover-bottom {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cover-bottom .hero-actions {
    justify-content: flex-start;
  }

  .cover-mark {
    transform: translate(-50%, -24%);
  }

  .poster-stack {
    min-height: 33rem;
  }

  .poster-main {
    inset: 3rem 0 3rem 2rem;
  }

  .collage-grid,
  .service-list {
    grid-template-columns: 1fr;
  }

  .collage-grid {
    columns: 3 14rem;
  }

  .work-feature {
    grid-column: auto;
    grid-row: auto;
  }

  .section-heading h2,
  .about h2,
  .contact h2 {
    max-width: none;
  }

  .about-copy {
    order: 1;
    padding-right: 0;
  }

  .about-title-line {
    white-space: normal;
  }

  .about-body {
    order: 2;
    align-content: start;
    max-width: none;
    padding-top: 0;
    padding-left: 0;
  }

  .contact-title-block,
  .contact-body,
  .contact-note {
    max-width: none;
  }

  .contact-body {
    gap: 1rem;
  }

  .contact-actions {
    justify-self: start;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  :root {
    --shell-padding: 0.65rem;
  }

  .site-header {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    z-index: 20;
    gap: 0.4rem;
    padding: 0.7rem 0 0.76rem;
  }

  .site-header:not(.is-mobile-floating) {
    transform: none !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .site-header.is-mobile-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
    transform: translateY(-118%);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .mobile-header-spacer.is-active {
    height: var(--mobile-header-offset, 5.5rem);
  }

  .site-header::before {
    background: rgba(8, 8, 9, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .brand-sub {
    display: none;
  }

  .issue-chip {
    display: none;
  }

  .site-nav {
    gap: 0.78rem;
    font-size: 0.72rem;
  }

  .scroll-hero {
    height: calc(100svh + var(--mobile-header-offset, 5.5rem) + 6rem);
    min-height: 44rem;
  }

  .scroll-hero-sticky {
    position: relative;
    top: auto;
    height: 100%;
    min-height: inherit;
  }

  .scroll-hero-content {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    padding: 0 0.75rem 2.15rem;
  }

  .scroll-hero-copy {
    display: block;
    width: 100%;
    margin-top: auto;
    padding: 0.9rem 0.75rem 0.95rem;
  }

  .scroll-hero-copy .hero-text,
  .scroll-hero-copy .hero-actions,
  .scroll-hero-copy .hero-metrics,
  .scroll-hero-copy .hero-scribble,
  .scroll-hero-copy .eyebrow,
  .scroll-hero-copy .hero-topline {
    margin-left: 0;
    margin-right: 0;
  }

  .scroll-hero-prompt {
    display: none;
  }

  .scroll-hero-copy .glitch-title {
    max-width: 7.1ch;
    font-size: clamp(2.35rem, 11vw, 3.45rem);
  }

  .scroll-hero-copy .hero-actions {
    margin-top: 0.9rem;
  }

  .scroll-hero-copy .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.55rem;
    margin-top: 0.92rem;
  }

  .scroll-hero-copy .hero-metrics li {
    padding: 0.6rem 0.45rem 0.55rem;
  }

  .scroll-hero-copy .hero-metrics strong {
    font-size: 1.6rem;
  }

  .video-banner {
    width: auto;
    padding-bottom: 0.75rem;
  }

  .video-banner-frame,
  .video-banner-media {
    min-height: 5rem;
    height: 5rem;
  }

  .video-banner-overlay {
    padding: 0.45rem 0.65rem;
  }

  .video-banner-label {
    font-size: 0.74rem;
    letter-spacing: 0.1em;
  }

  .hero {
    gap: 1.5rem;
    padding-bottom: 3rem;
  }

  .hero-cover {
    min-height: 40rem;
    padding: 0.85rem 0 1.1rem;
  }

  .hero-cover-inner {
    padding: 0.8rem;
  }

  .cover-kicker {
    max-width: 24rem;
  }

  .cover-title {
    font-size: clamp(4rem, 24vw, 6.2rem);
  }

  .cover-credit {
    font-size: 0.82rem;
  }

  .credit-d,
  .credit-f,
  .credit-g,
  .credit-j {
    display: none;
  }

  .credit-a {
    top: 20%;
    left: 3%;
  }

  .credit-b {
    top: 27%;
    left: 36%;
  }

  .credit-c {
    top: 34%;
    left: 6%;
  }

  .credit-e {
    top: 42%;
    right: 8%;
    left: auto;
  }

  .credit-h {
    bottom: 26%;
    left: 3%;
  }

  .credit-i {
    bottom: 18%;
    left: 44%;
  }

  .cover-mark {
    inset: 54% auto auto 50%;
    transform: translate(-50%, -16%);
  }

  .cover-copy {
    max-width: none;
  }

  .glitch-title {
    font-size: clamp(3.6rem, 17vw, 5.9rem);
  }

  .poster-stack {
    min-height: 27rem;
  }

  .poster-main {
    inset: 2rem 0 2.4rem 1rem;
  }

  .poster-side {
    width: 10.4rem;
    height: 8.5rem;
  }

  .poster-tall {
    width: 8.6rem;
    height: 12.6rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .riot-track span {
    font-size: 1.4rem;
  }

  .work-panel,
  .work-feature,
  .work-wide,
  .work-tall {
    min-height: 24rem;
  }

  .collage-grid {
    columns: 1;
  }

  .photo-tile {
    min-height: 0;
  }

  .portfolio-lightbox {
    grid-template-rows: auto minmax(0, 1fr);
    align-items: stretch;
    justify-items: stretch;
    padding:
      max(0.9rem, env(safe-area-inset-top))
      max(0.9rem, env(safe-area-inset-right))
      max(0.9rem, env(safe-area-inset-bottom))
      max(0.9rem, env(safe-area-inset-left));
  }

  .portfolio-lightbox-close {
    position: relative;
    top: auto;
    right: auto;
    justify-self: end;
    margin: 0 0 0.7rem;
  }

  .portfolio-lightbox-figure,
  .portfolio-lightbox-figure.is-portrait,
  .portfolio-lightbox-figure.is-landscape {
    justify-self: center;
    align-self: center;
    max-width: calc(100vw - 1.8rem);
    max-height: calc(100svh - 5.8rem);
  }

  .portfolio-lightbox-image {
    max-width: calc(100vw - 3rem);
    max-height: calc(100svh - 7rem);
  }

  .featured-grid,
  .services,
  .about,
  .contact {
    padding-top: 3.5rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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