:root {
  --black: #070707;
  --black-soft: #101010;
  --black-card: #151515;
  --paper: #f4f3ef;
  --paper-soft: #ffffff;
  --ink: #080808;
  --white: #eeeeee;
  --muted: #8a8a8a;
  --dim: #565656;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  --red: #ff3b22;
  --red-dark: #c92717;
  --green: #35c84a;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
  --max: 1320px;
  --body: "Arial Narrow", "Roboto Condensed", "Aptos Narrow", Impact, Haettenschweiler, Arial, sans-serif;
  --plain: Inter, "Segoe UI", Arial, sans-serif;
  --section-y: clamp(74px, 8vw, 116px);
  --section-gap: clamp(34px, 5vw, 64px);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--white);
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px) 0 0 / 100% 42px,
    var(--black);
  font-family: var(--body);
  line-height: 1.45;
  overflow-x: hidden;
}

body.menu-open,
body.viewer-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

::selection {
  color: #050505;
  background: var(--red);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #050505;
  background: var(--red);
  transform: translateY(-140%);
  transition: transform 180ms var(--ease);
}

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.15;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.14) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,0.1) 0 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  mix-blend-mode: overlay;
  animation: grainShift 600ms steps(2) infinite;
}

.cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 120;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    width 220ms var(--ease),
    height 220ms var(--ease),
    opacity 220ms var(--ease),
    background 220ms var(--ease);
}

.cursor-dot.is-visible {
  opacity: 1;
}

.cursor-dot.is-big {
  width: 44px;
  height: 44px;
  background: rgba(255, 59, 34, 0.34);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  color: #050505;
  background: var(--red);
  clip-path: inset(0 0 0 0);
  transition:
    clip-path 1050ms var(--ease),
    opacity 700ms var(--ease);
}

.preloader.is-hidden {
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  pointer-events: none;
}

.preloader__mark {
  display: grid;
  gap: 0.9rem;
  justify-items: center;
  font-size: clamp(3.6rem, 12vw, 11rem);
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: translateY(18px) scaleY(1.36);
  animation: loaderMark 1100ms var(--ease) infinite alternate;
}

.preloader__mark small {
  font-family: var(--plain);
  font-size: clamp(0.9rem, 2vw, 1.45rem);
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: scaleY(0.76);
}

.site-header {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px clamp(16px, 3vw, 30px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(7,7,7,0.82), rgba(7,7,7,0.24));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  transform: translateY(-22px);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease);
}

.is-ready .site-header,
body:not(.js-loading) .site-header {
  opacity: 1;
  transform: translateY(0);
}

.header-grid,
.nav-shell {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto auto auto;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
}

.brand-mini,
.brand-mark {
  display: grid;
  gap: 0.24rem;
  width: fit-content;
  color: #d8d8d8;
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  transform: scaleY(1.24);
  transform-origin: left top;
}

.brand-main,
.brand-mark span:first-child {
  line-height: 0.78;
}

.brand-main sup,
.brand-mark span:last-child,
.hero-wordmark sup {
  font-family: Arial, sans-serif;
  font-size: 0.15em;
  vertical-align: top;
}

.brand-sub {
  font-family: var(--plain);
  font-size: clamp(0.5rem, 0.78vw, 0.66rem);
  font-weight: 950;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
  transform: scaleY(0.82);
}

.brand-mark {
  display: grid;
  gap: 0.28rem;
  font-size: clamp(1.4rem, 3vw, 2.6rem);
}

.brand-scribble {
  display: block;
}

.brand-mark span:last-child {
  font-size: 0.55rem;
  font-family: var(--plain);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.status-pill,
.time-pill {
  display: none;
  align-items: flex-start;
  gap: 0.55rem;
  font-family: var(--plain);
  font-size: 0.9rem;
  line-height: 1.1;
}

.status-pill strong,
.time-pill strong {
  display: block;
  white-space: nowrap;
}

.status-pill small,
.time-pill small {
  display: block;
  margin-top: 0.42rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.16rem;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
}

.desktop-links,
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  font-family: var(--plain);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.desktop-links a,
.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
}

.desktop-links a::after,
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

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

.talk-button,
.menu-button,
.btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  transition:
    transform 240ms var(--ease),
    border-color 240ms var(--ease),
    background 240ms var(--ease),
    color 240ms var(--ease);
}

.talk-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.25rem;
  font-family: var(--plain);
  font-size: 0.85rem;
  font-weight: 950;
  text-transform: uppercase;
  white-space: nowrap;
}

.menu-button {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition:
    top 320ms var(--ease),
    transform 320ms var(--ease);
}

.menu-button span:first-child {
  top: 17px;
}

.menu-button span:last-child {
  top: 25px;
}

.menu-button[aria-expanded="true"] span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

.magnetic:hover,
.magnetic:focus-visible {
  transform: translateY(-2px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.38);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 70;
  width: 100%;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
  padding: clamp(126px, 17vh, 172px) clamp(18px, 6vw, 72px) clamp(26px, 6vw, 70px);
  color: #080808;
  background: var(--red);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
  transform: none;
  transform-origin: top center;
  transition:
    opacity 240ms var(--ease),
    clip-path 760ms var(--ease),
    visibility 0s linear 760ms;
}

.menu-open .menu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  clip-path: inset(0 0 0 0);
  transition-delay: 0s;
}

.menu-panel a {
  width: max-content;
  max-width: 100%;
  padding: 0;
  border-bottom: 0;
  font-family: var(--body);
  font-size: clamp(2.5rem, 8vw, 7.4rem);
  font-weight: 950;
  line-height: 0.88;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(42px) scaleY(1.04);
  transform-origin: left center;
  transition:
    opacity 520ms var(--ease),
    transform 620ms var(--ease);
}

.menu-panel a:hover,
.menu-panel a:focus-visible {
  background: transparent;
  transform: translateX(8px) scaleY(1.04);
}

.menu-open .menu-panel a {
  opacity: 1;
  transform: translateY(0) scaleY(1.04);
}

.menu-open .menu-panel a:nth-child(2) { transition-delay: 55ms; }
.menu-open .menu-panel a:nth-child(3) { transition-delay: 110ms; }
.menu-open .menu-panel a:nth-child(4) { transition-delay: 165ms; }
.menu-open .menu-panel a:nth-child(5) { transition-delay: 220ms; }

.menu-panel a:last-of-type {
  border-bottom: 0;
}

.menu-panel p {
  margin: clamp(18px, 3vw, 34px) 0 0;
  padding: 0;
  border-top: 0;
  font-family: var(--plain);
  font-size: clamp(0.9rem, 1.6vw, 1.2rem);
  font-weight: 900;
}

.section-dark {
  background: transparent;
}

.section-light {
  color: var(--ink);
  background: var(--paper);
}

.section-red {
  color: #080808;
  background: var(--red);
}

.section-head {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto var(--section-gap);
}

.section-head p:not(.section-kicker) {
  max-width: 760px;
  margin: clamp(14px, 2vw, 24px) 0 0;
  color: var(--muted);
  font-family: var(--plain);
  font-size: clamp(1rem, 1.8vw, 1.22rem);
}

.section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.55fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: end;
}

.section-kicker {
  display: block;
  margin: 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--plain);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-red .section-kicker,
.section-light .section-kicker {
  color: rgba(8, 8, 8, 0.72);
}

.section-light .section-head p:not(.section-kicker) {
  color: #6f6f6f;
}

.section-light .mega-title,
.section-light .large-heading {
  color: var(--ink);
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

.mega-title,
.large-heading {
  margin: 0;
  color: #d8d8d8;
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
  transform-origin: left center;
}

.mega-title {
  max-width: 1120px;
  font-size: clamp(4.5rem, 13vw, 15.5rem);
  --scale-y: 1.11;
}

.large-heading {
  max-width: 920px;
  font-size: clamp(3.2rem, 7vw, 8.2rem);
  --scale-y: 1.05;
}

.btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.95rem 1.25rem;
  overflow: hidden;
  font-family: var(--plain);
  font-size: 0.86rem;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-red {
  color: #050505;
  border-color: var(--red);
  background: var(--red);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255,255,255,0.02);
}

.btn-dark {
  color: var(--red);
  border-color: rgba(0,0,0,0.34);
  background: #080808;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 36px);
  padding: clamp(130px, 17vh, 188px) clamp(18px, 5vw, 72px) clamp(58px, 8vh, 92px);
  color: #fff;
  background:
    radial-gradient(circle at 74% 30%, rgba(255,255,255,0.18), transparent 18rem),
    radial-gradient(circle at 18% 72%, rgba(255,59,34,0.22), transparent 17rem),
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px) 0 0 / 100% 42px,
    #080808;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(100deg, rgba(255,255,255,0.13), transparent 18%, transparent 62%, rgba(255,255,255,0.06)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.028) 0 1px, transparent 1px 90px);
  mix-blend-mode: screen;
  opacity: 0.58;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 5px),
    radial-gradient(circle at 50% 50%, transparent 0 34%, rgba(0,0,0,0.42) 76%),
    linear-gradient(180deg, rgba(5,5,5,0.08), transparent 38%, rgba(5,5,5,0.58) 100%);
  opacity: 0.74;
}

.marquee {
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 2rem;
  animation: marquee 24s linear infinite;
  will-change: transform;
}

.marquee__track span {
  display: inline-block;
  font-weight: 950;
  line-height: 0.82;
  text-transform: uppercase;
  transform: scaleY(1.08);
  white-space: nowrap;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #101010;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 42%;
  filter: grayscale(1) contrast(1.16) brightness(0.86);
  transform: scale(1.12);
  transition: transform 1400ms var(--ease), filter 900ms var(--ease);
}

.hero-media.is-visible img {
  transform: scale(1.04);
}

.hero-meta,
.hero-services {
  display: none;
}

.hero-meta {
  left: clamp(18px, 2.7vw, 42px);
  top: clamp(190px, 34vh, 310px);
  display: grid;
  gap: clamp(1rem, 3vw, 2.2rem);
  max-width: 430px;
}

.hero-meta span {
  font-size: clamp(2.1rem, 4.2vw, 4.6rem);
  font-weight: 950;
  line-height: 0.82;
}

.hero-meta p {
  max-width: 390px;
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-family: var(--plain);
  font-size: clamp(0.96rem, 1.3vw, 1.1rem);
  font-weight: 850;
  line-height: 1.28;
}

.hero-services {
  right: clamp(28px, 12vw, 210px);
  top: clamp(265px, 44vh, 400px);
  display: grid;
  gap: 0.38rem;
  color: rgba(255,255,255,0.94);
  font-family: var(--plain);
  font-size: clamp(0.96rem, 1.4vw, 1.2rem);
  font-weight: 950;
  line-height: 1.1;
}

.hero-title {
  position: relative;
  z-index: 5;
  width: min(1120px, 100%);
  margin: 0;
  color: #f3f3f3;
  font-size: clamp(3.9rem, 9.3vw, 10.2rem);
  font-weight: 950;
  line-height: 0.93;
  letter-spacing: 0;
  text-transform: none;
  --scale-y: 1;
  text-wrap: balance;
  text-shadow: 0 18px 56px rgba(0,0,0,0.34);
}

.hero-title span {
  display: block;
  width: fit-content;
  max-width: 100%;
  color: #f4f4f4;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

.js-ready body:not(.is-ready) .hero-title span {
  opacity: 0;
  transform: translateY(0.28em);
}

.hero-title span:last-child {
  margin-left: clamp(2rem, 13vw, 16rem);
  white-space: normal;
  transition-delay: 120ms;
}

.hero-title.is-visible span {
  opacity: 1;
  transform: translateY(0);
}

.hero-bottom {
  position: relative;
  z-index: 5;
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.5rem);
  width: min(650px, 100%);
}

.hero-bottom p {
  width: 100%;
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-family: var(--plain);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  font-weight: 800;
  line-height: 1.38;
}

.hero-copy-block {
  position: relative;
  z-index: 5;
  left: auto;
  bottom: auto;
  width: min(610px, 56vw);
  margin-top: clamp(3rem, 9vh, 6rem);
}

.hero-copy-block h2 {
  margin: 0 0 1rem;
  color: #f2f2f2;
  font-size: clamp(2.4rem, 4.8vw, 5.4rem);
  font-weight: 950;
  line-height: 0.88;
  text-transform: uppercase;
  transform: scaleY(1.04);
  transform-origin: left bottom;
}

.hero-copy-block p:not(.section-kicker) {
  max-width: 560px;
  margin-bottom: 1.35rem;
  color: #b8b8b8;
  font-family: var(--plain);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-statement {
  position: absolute;
  z-index: 5;
  right: clamp(16px, 4vw, 72px);
  bottom: clamp(3.6rem, 9vh, 6rem);
  display: grid;
  gap: 0.35rem;
  color: #e0e0e0;
  font-size: clamp(1.4rem, 2.6vw, 3.1rem);
  font-weight: 950;
  line-height: 0.86;
  text-align: right;
  text-transform: uppercase;
}

.hero-statement span:nth-child(2) {
  color: var(--red);
}

.crossover {
  position: relative;
  margin-top: 0;
  padding: 0 0 var(--section-y);
  overflow: hidden;
}

.red-service-band {
  width: 108vw;
  margin: 0 0 clamp(38px, 6vw, 72px) -4vw;
  padding: clamp(1.3rem, 2.8vw, 2.4rem) 0;
  color: #080808;
  background: var(--red);
  transform: rotate(-1.1deg);
  box-shadow: 0 22px 60px rgba(255,59,34,0.18);
}

.red-service-band .marquee__track {
  animation-duration: 22s;
}

.red-service-band .marquee__track span {
  font-size: clamp(3.6rem, 10vw, 12rem);
  font-weight: 950;
  line-height: 0.78;
}

.crossover-frame {
  position: relative;
  width: min(100%, 1440px);
  min-height: clamp(480px, 64vw, 760px);
  margin: 0 auto;
  display: grid;
  place-items: center;
  isolation: auto;
}

.crossover-frame::before {
  display: none;
}

.crossover-frame img {
  width: min(50vw, 680px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  box-shadow: 0 26px 80px rgba(0,0,0,0.24);
  transform: translateY(var(--cross-image-y, 0px)) scale(var(--cross-image-scale, 1));
  transform-origin: center;
}

.crossover-title {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: min(1180px, calc(100% - 32px));
  margin: 0;
  padding: 0 0 0.18em;
  color: var(--ink);
  font-size: clamp(4.2rem, 10.3vw, 12.6rem);
  font-weight: 950;
  line-height: 1.12;
  text-align: center;
  text-transform: none;
  transform: translate(-50%, -50%) scaleY(0.96);
  letter-spacing: 0;
  mix-blend-mode: difference;
  color: #ffffff;
  pointer-events: none;
  overflow: visible;
}

.crossover-title.is-visible {
  transform: translate(-50%, -50%) scaleY(0.96);
}

.crossover-note {
  width: min(760px, calc(100% - 32px));
  margin: clamp(26px, 4vw, 46px) auto 0;
  color: #666;
  font-family: var(--plain);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 800;
  text-align: center;
}

.transformations,
.selected-work,
.services,
.process,
.testimonials,
.faq,
.contact {
  padding: var(--section-y) 0;
}

.transformations,
.selected-work {
  background: var(--paper);
}

.transformation-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3.4vw, 44px);
}

.transformation-card {
  min-width: 0;
  padding: clamp(18px, 2.6vw, 30px);
  border: 1px solid rgba(8,8,8,0.12);
  background: var(--paper-soft);
}

.transformation-card:nth-child(1),
.transformation-card:nth-child(8) {
  grid-column: 1 / -1;
}

.case-label {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  margin-bottom: clamp(18px, 2.8vw, 32px);
}

.case-label span {
  color: var(--red);
  font-size: clamp(2rem, 4vw, 5rem);
  font-weight: 950;
  line-height: 0.78;
}

.case-label h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4.8rem);
  font-weight: 950;
  line-height: 0.86;
  text-transform: uppercase;
}

.case-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 22px);
}

.media-tile,
.work-media,
.process-media {
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(8,8,8,0.12);
  border-radius: 8px;
  background: #111;
  cursor: zoom-in;
}

.media-tile::after,
.work-media::after,
.process-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.22), transparent 70%);
  transform: translateX(-125%) skewX(-9deg);
  transition: transform 900ms var(--ease);
}

.reveal-up.is-visible .media-tile::after,
.reveal-up.is-visible .work-media::after,
.reveal-up.is-visible .process-media::after,
.media-tile:hover::after,
.work-media:hover::after,
.process-media:hover::after {
  transform: translateX(125%) skewX(-9deg);
}

.media-tile img,
.media-tile video,
.work-media img,
.work-media video,
.process-media img,
.process-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 700ms var(--ease),
    filter 700ms var(--ease),
    opacity 400ms var(--ease);
}

.media-tile {
  aspect-ratio: 4 / 5;
}

.media-tile:hover img,
.media-tile:hover video,
.work-media:hover img,
.work-media:hover video,
.process-media:hover img,
.process-media:hover video {
  transform: scale(1.06);
  filter: contrast(1.06) saturate(1.03);
}

.transformations .media-tile.motion video {
  object-position: center center;
  transform: scale(1.22);
  filter: grayscale(0.15) contrast(1.12) brightness(0.78);
}

.transformations .media-tile.motion {
  cursor: default;
}

.transformations .media-tile.motion:hover video {
  transform: scale(1.28);
}

.media-tile span {
  position: absolute;
  z-index: 2;
  left: 0.7rem;
  bottom: 0.7rem;
  padding: 0.34rem 0.52rem;
  color: #050505;
  background: var(--red);
  border-radius: 999px;
  font-family: var(--plain);
  font-size: 0.68rem;
  font-weight: 950;
  text-transform: uppercase;
}

.media-tile.before span {
  color: var(--white);
  background: rgba(8,8,8,0.74);
  border: 1px solid var(--line);
}

.work-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 38px);
  align-items: start;
}

.work-card {
  grid-column: span 4;
  min-width: 0;
}

.work-card--wide {
  grid-column: span 8;
}

.work-media {
  aspect-ratio: 4 / 5;
  margin-bottom: 1rem;
}

.work-card--wide .work-media {
  aspect-ratio: 16 / 10;
}

.work-meta span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--red);
  font-family: var(--plain);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.work-meta h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.3vw, 4rem);
  font-weight: 950;
  line-height: 0.9;
  text-transform: uppercase;
}

.service-accordion {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr) minmax(240px, 0.45fr);
  gap: clamp(14px, 3vw, 36px);
  align-items: center;
  width: 100%;
  padding: clamp(1.3rem, 3vw, 2.5rem) 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition:
    padding-left 300ms var(--ease),
    background 300ms var(--ease),
    color 300ms var(--ease);
}

.service-row:hover,
.service-row:focus-visible,
.service-row.is-open {
  padding-left: 1rem;
  background: rgba(255,255,255,0.04);
  outline: none;
}

.service-row.is-open {
  color: var(--red);
}

.service-row span {
  color: var(--dim);
  font-family: var(--plain);
  font-weight: 950;
}

.service-row strong {
  display: block;
  font-size: clamp(2.4rem, 6.5vw, 7rem);
  font-weight: 950;
  line-height: 0.82;
  text-transform: uppercase;
  transform-origin: left center;
}

.service-row em {
  color: var(--muted);
  font-family: var(--plain);
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.45;
}

.process-grid,
.feature-grid,
.quote-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.process-card,
.feature-card,
.quote-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--black-card);
}

.process-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 0.9rem;
  overflow: hidden;
}

.process-media {
  aspect-ratio: 4 / 5;
  margin-bottom: 1rem;
}

.process-card span,
.feature-card span {
  color: var(--red);
  font-family: var(--plain);
  font-weight: 950;
}

.process-card h3,
.feature-card h3 {
  margin: auto 0 0.8rem;
  color: #dfdfdf;
  font-size: clamp(2rem, 3.1vw, 3.55rem);
  font-weight: 950;
  line-height: 0.82;
  text-transform: uppercase;
  max-width: 100%;
}

.process-card p,
.feature-card p {
  margin: 0;
  color: var(--muted);
  font-family: var(--plain);
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  min-height: 260px;
  padding: clamp(18px, 3vw, 30px);
  display: flex;
  flex-direction: column;
}

.feature-card h3 {
  margin-top: auto;
}

.quote-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quote-card {
  min-height: 270px;
  margin: 0;
  padding: clamp(18px, 3vw, 30px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-card blockquote {
  margin: 0;
  color: #e5e5e5;
  font-size: clamp(1.55rem, 2.6vw, 3rem);
  font-weight: 950;
  line-height: 0.98;
  text-transform: uppercase;
}

.quote-card figcaption {
  color: var(--muted);
  font-family: var(--plain);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-list {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

.faq-item {
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
  padding: clamp(1.2rem, 2.5vw, 2rem) 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--white);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.faq-item span {
  font-size: clamp(1.8rem, 4vw, 4.4rem);
  font-weight: 950;
  line-height: 0.95;
  text-transform: uppercase;
}

.faq-item b {
  color: var(--red);
  font-family: var(--plain);
  font-size: 2rem;
  transition: transform 260ms var(--ease);
}

.faq-item p {
  grid-column: 1 / -1;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-family: var(--plain);
  transition:
    max-height 300ms var(--ease),
    margin-top 300ms var(--ease);
}

.faq-item.is-open p {
  max-height: 10rem;
  margin-top: 1rem;
}

.faq-item.is-open b {
  transform: rotate(45deg);
}

.contact-layout {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 110px;
}

.contact-intro h2 {
  margin: 0 0 1rem;
  color: #e5e5e5;
  font-size: clamp(3rem, 7vw, 8rem);
  font-weight: 950;
  line-height: 0.82;
  text-transform: uppercase;
}

.contact-intro p:not(.section-kicker) {
  max-width: 560px;
  color: var(--muted);
  font-family: var(--plain);
}

.email-note {
  color: #dfdfdf !important;
  font-weight: 900;
}

.email-text {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-visual {
  width: min(420px, 100%);
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  background: #111;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inquiry-form {
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.02)),
    var(--black-card);
}

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

label {
  display: grid;
  gap: 0.45rem;
  color: #d4d4d4;
  font-family: var(--plain);
  font-size: 0.85rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.82rem 0.9rem;
  color: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  outline: none;
  background: #0a0a0a;
  transition:
    border-color 170ms var(--ease),
    box-shadow 170ms var(--ease),
    transform 170ms var(--ease);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(255,59,34,0.12);
  transform: translateY(-1px);
}

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

.form-submit {
  margin-top: 1.2rem;
}

.form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-family: var(--plain);
  font-weight: 900;
}

.form-status.is-error {
  color: #ff8a7a;
}

.form-status.is-success {
  color: #74e08c;
}

.site-footer {
  padding: clamp(34px, 6vw, 70px) clamp(16px, 3vw, 30px);
  background: #050505;
}

.footer-wordmark {
  display: grid;
  gap: 0.02em;
  color: #d0d0d0;
  max-width: 100%;
  font-size: clamp(4.6rem, 15.4vw, 17rem);
  font-weight: 950;
  line-height: 0.76;
  text-transform: uppercase;
  transform: scaleY(1.14);
  transform-origin: left bottom;
  animation: footerPulse 5s var(--ease) infinite alternate;
  overflow-wrap: normal;
  word-break: normal;
  overflow: hidden;
}

.footer-wordmark span {
  display: block;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--plain);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.media-viewer[hidden] {
  display: none;
}

.media-viewer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: clamp(14px, 4vw, 42px);
}

.viewer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
}

.viewer-card {
  position: relative;
  width: min(1080px, 100%);
  max-height: 92vh;
  overflow: auto;
  padding: clamp(18px, 3vw, 32px);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #0c0c0c;
  box-shadow: 0 30px 90px rgba(0,0,0,0.55);
}

.viewer-card h2 {
  margin: 0;
  color: #e8e8e8;
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 950;
  line-height: 0.86;
  text-transform: uppercase;
}

.viewer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 0.6rem 0.8rem;
  color: #050505;
  border: 0;
  border-radius: 999px;
  background: var(--red);
  font-family: var(--plain);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}

.viewer-frame {
  margin-top: 1.4rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050505;
}

.viewer-media-file {
  width: 100%;
  max-height: min(72vh, 780px);
  object-fit: contain;
  background: #050505;
}

.viewer-frame.is-proof-video {
  max-height: min(72vh, 780px);
  aspect-ratio: 16 / 9;
}

.viewer-frame.is-proof-video .viewer-media-file {
  display: block;
  width: 100%;
  height: min(72vh, 780px);
  max-height: none;
  object-fit: cover;
  object-position: center center;
  background: #050505;
}

.viewer-frame.is-zoomable .viewer-media-file {
  cursor: zoom-in;
}

.viewer-frame.is-zoomed {
  max-height: min(72vh, 780px);
  overflow: auto;
}

.viewer-frame.is-zoomed .viewer-media-file {
  width: 180%;
  max-width: none;
  max-height: none;
  cursor: zoom-out;
}

.viewer-art {
  min-height: clamp(240px, 50vw, 520px);
  display: grid;
  place-items: center;
  color: var(--muted);
  font-family: var(--plain);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), transparent 45%),
    #111;
}

.reveal-up,
.reveal-text {
  --reveal-y: 56px;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 900ms var(--ease),
    transform 900ms var(--ease),
    clip-path 900ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, clip-path;
}

.reveal-text {
  --reveal-y: 45px;
  transform: translateY(0) scaleY(var(--scale-y, 1));
  clip-path: inset(0 0 0 0);
}

.is-visible {
  opacity: 1;
  --reveal-y: 0px;
}

.reveal-text.is-visible {
  transform: translateY(0) scaleY(var(--scale-y, 1));
  clip-path: inset(0 0 0 0);
}

@supports (animation-timeline: view()) {
  .reveal-up {
    animation: viewRise both var(--ease);
    animation-timeline: view();
    animation-range: entry 4% cover 30%;
  }

  .reveal-text:not(.crossover-title) {
    animation: viewTextReveal both var(--ease);
    animation-timeline: view();
    animation-range: entry 4% cover 28%;
  }
}

.reveal-up.is-visible:is(.transformation-card, .work-card, .process-card, .quote-card, .faq-item) {
  transform: translateY(var(--card-lift, 0px)) rotate(var(--card-rotate, 0deg));
}

.crossover-title.reveal-text {
  --reveal-y: 58px;
  transform: translate(-50%, calc(-50% + var(--cross-title-y, 0px))) scaleY(0.96);
  clip-path: inset(0 0 0 0);
}

.crossover-title.reveal-text.is-visible {
  transform: translate(-50%, calc(-50% + var(--cross-title-y, 0px))) scaleY(0.96);
}

.crossover-title.is-scroll-active {
  letter-spacing: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes loaderMark {
  from { transform: translateY(18px) scaleY(1.36) scaleX(0.96); }
  to { transform: translateY(-8px) scaleY(1.46) scaleX(1.02); }
}

@keyframes grainShift {
  from { transform: translate(0, 0); }
  to { transform: translate(3px, -2px); }
}

@keyframes previewFloat {
  from { transform: translateY(0) rotate(-1deg); }
  to { transform: translateY(-12px) rotate(1deg); }
}

@keyframes footerPulse {
  from { opacity: 0.64; transform: scaleY(1.14); }
  to { opacity: 1; transform: scaleY(1.2); }
}

@keyframes viewRise {
  from {
    opacity: 1;
    transform: translateY(54px) scale(0.985);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: translateY(var(--card-lift, 0px)) rotate(var(--card-rotate, 0deg)) scale(1);
    filter: blur(0);
  }
}

@keyframes viewTextReveal {
  from {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(46px) scaleY(var(--scale-y, 1));
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateY(0) scaleY(var(--scale-y, 1));
  }
}

@media (max-width: 1180px) {
  .header-grid,
  .nav-shell {
    grid-template-columns: 1fr auto auto auto;
    align-items: center;
  }

  .status-pill,
  .time-pill,
  .desktop-links {
    display: none;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-card,
  .work-card--wide {
    grid-column: span 6;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 14px 16px;
  }

  .header-grid,
  .nav-shell {
    grid-template-columns: 1fr auto auto;
    gap: 0.7rem;
  }

  .talk-button {
    display: none;
  }

  .brand-mini,
  .brand-mark {
    font-size: 2rem;
  }

  .hero {
    min-height: 100svh;
    padding: clamp(118px, 20vh, 150px) 1rem clamp(44px, 8vh, 72px);
    justify-content: center;
  }

  .hero-meta {
    top: 6.9rem;
    left: 1rem;
    max-width: 72vw;
    gap: 0.7rem;
  }

  .hero-meta span {
    font-size: clamp(2rem, 10vw, 4rem);
  }

  .hero-meta p {
    display: none;
  }

  .hero-services {
    right: 1rem;
    top: 31vh;
    font-size: 0.9rem;
    text-align: right;
  }

  .hero-title {
    font-size: clamp(3.45rem, 13.4vw, 6.8rem);
    line-height: 0.96;
  }

  .hero-title span:last-child {
    margin-left: 0;
    white-space: normal;
  }

  .hero-bottom {
    display: grid;
    width: min(560px, 100%);
  }

  .hero-bottom p {
    width: 100%;
    max-width: 500px;
  }

  .transformation-grid,
  .work-grid,
  .process-grid,
  .feature-grid,
  .quote-grid,
  .contact-layout,
  .section-head--split,
  .case-flow {
    grid-template-columns: 1fr;
  }

  .transformation-card:nth-child(1),
  .transformation-card:nth-child(8) {
    grid-column: auto;
  }

  .case-media-grid {
    grid-template-columns: 1fr;
  }

  .media-tile {
    aspect-ratio: 16 / 11;
  }

  .work-card,
  .work-card--wide {
    grid-column: 1 / -1;
  }

  .work-media,
  .work-card--wide .work-media {
    aspect-ratio: 4 / 5;
  }

  .service-row {
    grid-template-columns: 3.2rem 1fr;
  }

  .service-row em {
    grid-column: 2;
  }

  .contact-intro {
    position: static;
  }

  .contact-visual {
    display: none;
  }

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

@media (max-width: 460px) {
  .mega-title {
    font-size: clamp(3.4rem, 19vw, 5.2rem);
  }

  .large-heading {
    font-size: clamp(2.8rem, 15vw, 4.6rem);
  }

  .hero {
    gap: 1rem;
    padding-top: 7rem;
  }

  .hero-title {
    font-size: clamp(2.9rem, 13.2vw, 4.9rem);
    line-height: 0.98;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .service-row strong {
    font-size: clamp(2rem, 13vw, 3.7rem);
  }

  .viewer-close {
    position: static;
    margin-bottom: 1rem;
  }
}

.hero .hero-media {
  display: block;
}

@media (max-width: 560px) {
  .hero-services {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.9rem, 13.2vw, 4.9rem);
    line-height: 0.98;
  }

  .hero-bottom {
    gap: 0.75rem;
  }

  .hero-bottom p {
    font-size: 0.86rem;
  }

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

  .hero-actions .btn {
    width: 100%;
    padding-inline: 0.7rem;
    font-size: 0.72rem;
  }

  .menu-panel {
    align-items: flex-start;
    padding-top: clamp(118px, 18vh, 148px);
  }

  .menu-panel a {
    font-size: clamp(2rem, 10.8vw, 3.8rem);
  }

  .footer-wordmark {
    font-size: clamp(3.2rem, 18.8vw, 6.2rem);
  }
}

.hero-meta,
.hero-services {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-up,
  .reveal-text {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}
