@import url("https://fonts.googleapis.com/css2?family=Cousine:ital,wght@0,400;0,700;1,400;1,700&family=Michroma&display=swap");

:root {
  color-scheme: dark;
  --bg: #030303;
  --panel: #0b0b0c;
  --line: #28282b;
  --text: #f2f2f2;
  --muted: #8f8f96;
  --red: #f3103c;
  --hot-red: #f9096b;
  --cyan: #6de3ff;
  --footer-height: 126px;
  --font-display: "Michroma", Arial, Helvetica, sans-serif;
  --font-ui: "Michroma", Arial, Helvetica, sans-serif;
  --font-credit: "Cousine", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 1280px;
  padding-top: 147px;
  padding-bottom: var(--footer-height);
  background: #000 url("assets/85a6363da2bf410bb3f3007ae2f73075-ae3adfcc4d.jpg") repeat;
  background-attachment: fixed;
  background-position: 0 0;
  color: var(--text);
  font-family: var(--font-ui);
  letter-spacing: 0;
  overflow-x: auto;
}

body::before {
  content: "";
  position: fixed;
  top: 147px;
  right: 0;
  bottom: var(--footer-height);
  left: 0;
  z-index: 90;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, .86) 0%,
    rgba(0, 0, 0, .52) 7%,
    rgba(0, 0, 0, 0) 17%,
    rgba(0, 0, 0, 0) 83%,
    rgba(0, 0, 0, .52) 93%,
    rgba(0, 0, 0, .86) 100%
  );
}

a {
  color: inherit;
}

img {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-width: 1280px;
  z-index: 100;
  background: #000;
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  width: 100vw;
  min-width: 1280px;
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(90deg, #000 0, var(--red) 400px, var(--red) calc(100% - 400px), #000 100%);
  pointer-events: none;
}

.brand {
  position: relative;
  width: 1280px;
  margin: 0 auto;
  height: 96px;
  min-height: 96px;
  display: grid;
  grid-template-columns: minmax(0, 939px) 332px;
  gap: 0;
  align-items: start;
  justify-content: end;
  padding: 0;
  text-decoration: none;
  overflow: hidden;
}

.brand-motion-wrap {
  position: relative;
  width: 939px;
  height: 74px;
  margin-top: 16px;
  display: block;
  overflow: visible;
  background: #000;
}

.brand-motion {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
  background: #000;
}

.brand-embers {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  width: 1280px;
  height: 74px;
  overflow: hidden;
  pointer-events: none;
  mix-blend-mode: screen;
}

.brand-ember {
  position: absolute;
  left: var(--ember-x);
  top: var(--ember-y);
  width: 8px;
  height: 2px;
  border-radius: 999px;
  opacity: 0;
  background: linear-gradient(90deg, rgba(249, 9, 107, 0), #ff2f62 35%, #f3103c 100%);
  box-shadow:
    0 0 4px rgba(243, 16, 60, .95),
    0 0 12px rgba(249, 9, 107, .75);
  transform: translate3d(0, 0, 0) scale(var(--ember-scale));
  animation:
    brand-ember-drift 1.18s linear infinite,
    brand-ember-heat 1.18s linear infinite;
  animation-delay: var(--ember-delay);
}

.brand-ember::after {
  content: "";
  position: absolute;
  inset: -5px -7px;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle, rgba(255, 198, 64, .5) 0%, rgba(255, 72, 24, .22) 45%, rgba(255, 72, 24, 0) 72%);
  filter: blur(4px);
  animation: brand-ember-burn 1.18s linear infinite;
  animation-delay: var(--ember-delay);
}

.brand-ember:nth-child(3n) {
  width: 4px;
  height: 2px;
  animation-name: brand-ember-low-sweep, brand-ember-heat;
  animation-duration: 1.37s, 1.37s;
}

.brand-ember:nth-child(3n)::after {
  animation-duration: 1.37s;
}

.brand-ember:nth-child(4n) {
  width: 14px;
  height: 3px;
  filter: blur(.15px);
  animation-name: brand-ember-high-sweep, brand-ember-heat;
  animation-duration: 1.73s, 1.73s;
}

.brand-ember:nth-child(4n)::after {
  opacity: .6;
  animation-duration: 1.73s;
}

.brand-ember:nth-child(5n) {
  width: 2px;
  height: 2px;
  animation-name: brand-ember-skip, brand-ember-heat;
  animation-duration: 1.11s, 1.11s;
}

.brand-ember:nth-child(5n)::after {
  display: none;
}

.brand-ember:nth-child(even) {
  width: 7px;
  height: 3px;
  animation-name: brand-ember-curl, brand-ember-heat;
  animation-duration: 2.63s, 2.63s;
  animation-timing-function: linear, linear;
}

.brand-ember:nth-child(even)::after {
  animation-duration: 2.63s;
}

.brand-ember:nth-child(6n) {
  width: 16px;
  height: 4px;
  filter: blur(.35px);
}

.brand-ember:nth-child(6n)::after {
  opacity: .75;
}

.brand-ember:nth-child(7n) {
  animation-name: brand-ember-long-drift, brand-ember-heat;
  animation-duration: 2.07s, 2.07s;
}

.brand-ember:nth-child(7n)::after {
  animation-duration: 2.07s;
}

.brand-ember:nth-child(11n) {
  width: 20px;
  height: 5px;
  filter: blur(.45px);
}

.brand-ember:nth-child(11n)::after {
  inset: -7px -10px;
  opacity: .85;
  filter: blur(5px);
}

.brand-ember:nth-child(14n) {
  animation-name: brand-ember-long-curl, brand-ember-heat;
  animation-duration: 3.18s, 3.18s;
}

.brand-ember:nth-child(14n)::after {
  animation-duration: 3.18s;
}

.brand-ember:nth-child(9n) {
  animation-name: brand-ember-drop, brand-ember-heat;
  animation-duration: 1.58s, 1.58s;
}

.brand-ember:nth-child(9n)::after {
  animation-duration: 1.58s;
}

.brand-ember:nth-child(10n) {
  animation-name: brand-ember-riser, brand-ember-heat;
  animation-duration: 2.42s, 2.42s;
}

.brand-ember:nth-child(10n)::after {
  animation-duration: 2.42s;
}

.brand-ember:nth-child(13n) {
  animation-name: brand-ember-waver, brand-ember-heat;
  animation-duration: 1.92s, 1.92s;
}

.brand-ember:nth-child(13n)::after {
  animation-duration: 1.92s;
}

@keyframes brand-ember-drift {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(var(--ember-scale));
  }
  4% {
    opacity: .9;
  }
  70% {
    opacity: .65;
  }
  92% {
    opacity: .22;
  }
  100% {
    opacity: 0;
    transform: translate3d(520px, -22px, 0) scale(calc(var(--ember-scale) * .22));
  }
}

@keyframes brand-ember-curl {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(var(--ember-scale));
  }
  4% {
    opacity: .82;
  }
  25% {
    transform: translate3d(110px, -18px, 0) rotate(10deg) scale(calc(var(--ember-scale) * .92));
  }
  50% {
    opacity: .72;
    transform: translate3d(235px, 10px, 0) rotate(-9deg) scale(calc(var(--ember-scale) * .72));
  }
  75% {
    opacity: .42;
    transform: translate3d(380px, -24px, 0) rotate(7deg) scale(calc(var(--ember-scale) * .48));
  }
  92% {
    opacity: .14;
  }
  100% {
    opacity: 0;
    transform: translate3d(535px, -4px, 0) rotate(-4deg) scale(calc(var(--ember-scale) * .2));
  }
}

@keyframes brand-ember-long-drift {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(var(--ember-scale));
  }
  4% {
    opacity: .86;
  }
  72% {
    opacity: .64;
  }
  92% {
    opacity: .2;
  }
  100% {
    opacity: 0;
    transform: translate3d(930px, -30px, 0) scale(calc(var(--ember-scale) * .18));
  }
}

@keyframes brand-ember-long-curl {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(var(--ember-scale));
  }
  4% {
    opacity: .84;
  }
  28% {
    transform: translate3d(180px, 18px, 0) rotate(-14deg) scale(calc(var(--ember-scale) * .9));
  }
  56% {
    opacity: .62;
    transform: translate3d(430px, -34px, 0) rotate(16deg) scale(calc(var(--ember-scale) * .58));
  }
  80% {
    opacity: .28;
    transform: translate3d(720px, 8px, 0) rotate(-8deg) scale(calc(var(--ember-scale) * .34));
  }
  94% {
    opacity: .1;
  }
  100% {
    opacity: 0;
    transform: translate3d(1030px, -20px, 0) rotate(4deg) scale(calc(var(--ember-scale) * .14));
  }
}

@keyframes brand-ember-low-sweep {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(var(--ember-scale));
  }
  5% {
    opacity: .88;
  }
  34% {
    transform: translate3d(150px, 14px, 0) rotate(-6deg) scale(calc(var(--ember-scale) * .9));
  }
  67% {
    opacity: .54;
    transform: translate3d(335px, 22px, 0) rotate(4deg) scale(calc(var(--ember-scale) * .55));
  }
  94% {
    opacity: .14;
  }
  100% {
    opacity: 0;
    transform: translate3d(590px, 10px, 0) rotate(-2deg) scale(calc(var(--ember-scale) * .18));
  }
}

@keyframes brand-ember-high-sweep {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(var(--ember-scale));
  }
  5% {
    opacity: .9;
  }
  22% {
    transform: translate3d(95px, -30px, 0) rotate(8deg) scale(calc(var(--ember-scale) * .96));
  }
  61% {
    opacity: .56;
    transform: translate3d(310px, -46px, 0) rotate(-4deg) scale(calc(var(--ember-scale) * .58));
  }
  91% {
    opacity: .16;
  }
  100% {
    opacity: 0;
    transform: translate3d(650px, -34px, 0) rotate(3deg) scale(calc(var(--ember-scale) * .16));
  }
}

@keyframes brand-ember-skip {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(var(--ember-scale));
  }
  5% {
    opacity: .8;
  }
  42% {
    transform: translate3d(210px, -8px, 0) scale(calc(var(--ember-scale) * .72));
  }
  68% {
    opacity: .4;
    transform: translate3d(355px, 6px, 0) scale(calc(var(--ember-scale) * .4));
  }
  100% {
    opacity: 0;
    transform: translate3d(470px, -2px, 0) scale(calc(var(--ember-scale) * .12));
  }
}

@keyframes brand-ember-drop {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(var(--ember-scale));
  }
  6% {
    opacity: .86;
  }
  35% {
    transform: translate3d(170px, 26px, 0) rotate(11deg) scale(calc(var(--ember-scale) * .82));
  }
  72% {
    opacity: .46;
    transform: translate3d(440px, 42px, 0) rotate(-7deg) scale(calc(var(--ember-scale) * .38));
  }
  100% {
    opacity: 0;
    transform: translate3d(690px, 24px, 0) rotate(3deg) scale(calc(var(--ember-scale) * .13));
  }
}

@keyframes brand-ember-riser {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(var(--ember-scale));
  }
  4% {
    opacity: .84;
  }
  25% {
    transform: translate3d(130px, -12px, 0) rotate(-5deg) scale(calc(var(--ember-scale) * .94));
  }
  57% {
    opacity: .58;
    transform: translate3d(330px, -64px, 0) rotate(12deg) scale(calc(var(--ember-scale) * .55));
  }
  83% {
    opacity: .25;
    transform: translate3d(640px, -40px, 0) rotate(-9deg) scale(calc(var(--ember-scale) * .28));
  }
  100% {
    opacity: 0;
    transform: translate3d(870px, -72px, 0) rotate(5deg) scale(calc(var(--ember-scale) * .13));
  }
}

@keyframes brand-ember-waver {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(var(--ember-scale));
  }
  5% {
    opacity: .82;
  }
  20% {
    transform: translate3d(90px, 18px, 0) rotate(-10deg) scale(calc(var(--ember-scale) * .86));
  }
  45% {
    transform: translate3d(230px, -22px, 0) rotate(13deg) scale(calc(var(--ember-scale) * .68));
  }
  70% {
    opacity: .38;
    transform: translate3d(430px, 16px, 0) rotate(-6deg) scale(calc(var(--ember-scale) * .36));
  }
  100% {
    opacity: 0;
    transform: translate3d(760px, -10px, 0) rotate(4deg) scale(calc(var(--ember-scale) * .14));
  }
}

@keyframes brand-ember-heat {
  0% {
    background: linear-gradient(90deg, rgba(249, 9, 107, 0), #ff2f62 35%, #f3103c 100%);
    box-shadow: 0 0 4px rgba(243, 16, 60, .95), 0 0 12px rgba(249, 9, 107, .75);
  }
  24% {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff 35%, #ffd6e2 100%);
    box-shadow: 0 0 5px rgba(255, 255, 255, .9), 0 0 14px rgba(255, 82, 126, .65);
  }
  52% {
    background: linear-gradient(90deg, rgba(255, 166, 0, 0), #ffd046 35%, #ff7a16 100%);
    box-shadow: 0 0 5px rgba(255, 190, 55, .9), 0 0 14px rgba(255, 88, 0, .65);
  }
  82% {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0), #262626 45%, #070707 100%);
    box-shadow: 0 0 3px rgba(0, 0, 0, .45), 0 0 8px rgba(0, 0, 0, .35);
  }
  100% {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0), #000 45%, #000 100%);
    box-shadow: none;
  }
}

@keyframes brand-ember-burn {
  0%,
  18%,
  100% {
    opacity: 0;
    transform: scale(.8);
  }
  34% {
    opacity: .35;
    transform: scale(1);
  }
  56% {
    opacity: .55;
    transform: scale(1.2);
  }
  76% {
    opacity: .18;
    transform: scale(.95);
  }
}

.brand-logo {
  position: relative;
  z-index: 1;
  width: 332px;
  height: 90px;
  display: block;
  object-fit: cover;
  image-rendering: auto;
}

.main-nav {
  width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 50px;
  background: rgba(0, 0, 0, .86);
}

.main-nav a,
.main-nav .nav-static {
  position: relative;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #777;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.main-nav a {
  transition: color .16s ease, text-shadow .16s ease;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--red);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  text-shadow: 0 0 10px rgba(243, 16, 60, .75);
  animation: nav-word-flash .42s ease-out;
}

@keyframes nav-word-flash {
  0% {
    color: rgba(255, 255, 255, .68);
    text-shadow:
      0 0 6px rgba(255, 255, 255, .5),
      0 0 12px rgba(243, 16, 60, .45);
  }

  42% {
    color: rgba(255, 255, 255, .9);
    text-shadow:
      0 0 8px rgba(255, 255, 255, .42),
      0 0 16px rgba(243, 16, 60, .62);
  }

  100% {
    color: var(--red);
    text-shadow: 0 0 10px rgba(243, 16, 60, .75);
  }
}

.nav-ember-overlay {
  position: fixed;
  inset: 0;
  z-index: 110;
  pointer-events: none;
  overflow: hidden;
  mix-blend-mode: screen;
}

.nav-ember-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 1px;
  opacity: 0;
  background: #f3103c;
  box-shadow:
    0 0 4px rgba(243, 16, 60, .95),
    0 0 12px rgba(249, 9, 107, .75);
  animation:
    nav-ember-fly var(--nav-ember-duration) linear forwards,
    nav-ember-heat var(--nav-ember-duration) linear forwards;
  animation-delay: var(--nav-ember-delay);
}

.nav-ember-particle::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle, rgba(255, 198, 64, .42) 0%, rgba(255, 72, 24, .2) 45%, rgba(255, 72, 24, 0) 72%);
  filter: blur(2px);
  animation: nav-ember-burn var(--nav-ember-duration) linear forwards;
  animation-delay: var(--nav-ember-delay);
}

.nav-ember-particle.is-large {
  width: 5px;
  height: 5px;
  filter: blur(.2px);
}

.nav-ember-particle.is-large::after {
  opacity: .75;
}

.nav-ember-particle.is-long {
  width: 4px;
  height: 3px;
  filter: blur(.15px);
}

@keyframes nav-ember-fly {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) rotate(0deg) scale(var(--nav-ember-scale));
  }
  5% {
    opacity: .9;
  }
  28% {
    transform: translate3d(calc(var(--nav-ember-dx) * .28), calc(var(--nav-ember-dy) * -.45), 0) rotate(calc(var(--nav-ember-rot) * .6)) scale(calc(var(--nav-ember-scale) * .95));
  }
  58% {
    opacity: .62;
    transform: translate3d(calc(var(--nav-ember-dx) * .58), calc(var(--nav-ember-dy) * .55), 0) rotate(calc(var(--nav-ember-rot) * -1)) scale(calc(var(--nav-ember-scale) * .62));
  }
  90% {
    opacity: .16;
  }
  100% {
    opacity: 0;
    transform: translate3d(var(--nav-ember-dx), var(--nav-ember-dy), 0) rotate(var(--nav-ember-rot)) scale(calc(var(--nav-ember-scale) * .18));
  }
}

@keyframes nav-ember-heat {
  0% {
    background: linear-gradient(90deg, rgba(249, 9, 107, 0), #ff2f62 35%, #f3103c 100%);
    box-shadow:
      0 0 4px rgba(243, 16, 60, .95),
      0 0 12px rgba(249, 9, 107, .75);
  }
  24% {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff 35%, #ffd6e2 100%);
  }
  52% {
    background: linear-gradient(90deg, rgba(255, 166, 0, 0), #ffd046 35%, #ff7a16 100%);
  }
  82% {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0), #262626 45%, #070707 100%);
    box-shadow:
      0 0 3px rgba(0, 0, 0, .45),
      0 0 8px rgba(0, 0, 0, .35);
  }
  100% {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0), #000 45%, #000 100%);
    box-shadow: none;
  }
}

@keyframes nav-ember-burn {
  0%,
  18%,
  100% {
    opacity: 0;
    transform: scale(.8);
  }
  44% {
    opacity: .45;
    transform: scale(1.15);
  }
  68% {
    opacity: .2;
    transform: scale(.95);
  }
}

.hero {
  position: relative;
  width: min(1280px, 100%);
  min-height: calc(100vh - 147px - var(--footer-height));
  margin: 0 auto;
  overflow: hidden;
  background: #050505;
  border-bottom: 1px solid #222;
}

.home-page .hero {
  width: 100%;
  border-bottom: 0;
}

.home-page .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, .42) 78%, rgba(0, 0, 0, .78) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .36), rgba(0, 0, 0, 0) 18%, rgba(0, 0, 0, 0) 82%, rgba(0, 0, 0, .36));
  mix-blend-mode: multiply;
}

.home-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(0, 0, 0, .4) 0 1px, rgba(0, 0, 0, 0) 1px 4px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, .1) 0 1px, rgba(0, 0, 0, 0) 1px 4px);
}

.hero-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero img {
  width: 100%;
  min-height: calc(100vh - 147px - var(--footer-height));
  height: calc(100vh - 147px - var(--footer-height));
  object-fit: cover;
  display: block;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1);
  transform-origin: var(--focus-x, 50%) var(--focus-y, 50%);
  animation: hero-splash-cycle 80s linear infinite;
  animation-delay: calc(var(--slide-index) * 8s);
}

.hero-slide:first-child {
  opacity: 1;
}

@keyframes hero-splash-cycle {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  2% {
    opacity: 1;
  }
  11% {
    opacity: 1;
  }
  12.5% {
    opacity: 0;
    transform: scale(1.075);
  }
  100% {
    opacity: 0;
    transform: scale(1.075);
  }
}

.hero-caption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  text-align: right;
  text-transform: uppercase;
  font-size: 12px;
  color: #fff;
  text-shadow: 0 1px 3px #000;
}

.hero-caption p {
  margin: 0;
}

.portfolio-page,
.portfolio-strip,
.content-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.intro-band {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px 28px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.intro-band h1,
.portfolio-page h1,
.portfolio-strip h2,
.page-title h1 {
  margin: 0;
  color: #fff;
  text-transform: uppercase;
}

.intro-band p {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
}

.command-link {
  padding: 10px 14px;
  border: 1px solid var(--red);
  color: var(--red);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
}

.portfolio-page,
.portfolio-strip {
  padding: 32px 0;
}

.portfolio-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 7px;
}

.portfolio-card {
  position: relative;
  display: block;
  text-decoration: none;
  background: #070707;
  border: 1px solid #151515;
  overflow: hidden;
}

.portfolio-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.portfolio-card .plus {
  position: absolute;
  top: 0;
  left: 0;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  font-weight: bold;
}

.portfolio-card .label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 8px 8px;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  opacity: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, .82));
  transition: opacity .18s ease;
}

.portfolio-card:hover .label,
.portfolio-card:focus-visible .label {
  opacity: 1;
}

.works-page main {
  width: min(1260px, calc(100% - 24px));
  margin: 0 auto;
  padding: 14px 0 26px;
}

.works-updates {
  min-height: 250px;
  padding: 0 0 28px;
}

.section-title-art {
  width: min(554px, 100%);
  height: auto;
  display: block;
}

.updates-copy {
  max-width: 1170px;
  margin-top: 18px;
  color: #a4a4aa;
  font-size: 13px;
  line-height: 1.9;
}

.updates-copy p {
  margin: 0 0 10px;
}

.updates-copy strong {
  color: var(--red);
  font-weight: 700;
}

.works-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.works-section {
  min-width: 0;
}

.works-section h2 {
  margin: 0;
  color: #aaa;
  text-transform: uppercase;
}

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

.works-personal {
  margin-top: 28px;
}

.personal-grid {
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
}

.content-page {
  padding: 36px 0 56px;
}

.detail-page main,
.reels-page main,
.about-page main,
.contact-page main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.page-title {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.page-title p {
  margin: 0 0 6px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 12px;
}

.copy-block {
  max-width: 940px;
  padding: 24px 0;
  color: #d7d7dc;
  line-height: 1.6;
}

.copy-block p {
  margin: 0 0 16px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 16px;
}

.image-card {
  position: relative;
  margin: 0;
  background: #070707;
  border: 1px solid #202024;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.image-card figcaption {
  padding: 8px 10px;
  color: #999;
  font-size: 12px;
}

.site-footer {
  width: 1280px;
  min-height: var(--footer-height);
  margin: 0 auto;
  padding: 14px 18px 28px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  background: transparent;
  border-top: 0;
  position: fixed;
  left: max(0px, calc((100vw - 1280px) / 2));
  bottom: 0;
  z-index: 100;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  min-width: 1280px;
  transform: translateX(-50%);
  background: #000;
  z-index: 0;
}

.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  width: 100vw;
  min-width: 1280px;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #000 0, #000 80px, var(--red) 400px, var(--red) calc(100% - 400px), #000 calc(100% - 80px), #000 100%);
  pointer-events: none;
}

.site-footer > * {
  position: relative;
  z-index: 2;
}

.footer-id {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-id img {
  width: 47px;
  height: 47px;
}

.footer-id p {
  margin: 0;
  color: #818188;
  font-size: 13px;
  line-height: 1.5;
}

.footer-id strong {
  color: #fff;
}

.footer-legal {
  position: absolute;
  right: 18px;
  bottom: 7px;
  left: 18px;
  z-index: 2;
  margin: 0;
  color: #68686e;
  font-family: var(--font-credit);
  font-size: 10px;
  line-height: 1.25;
  text-align: center;
}

.footer-legal strong {
  color: #909096;
  font-weight: 700;
}

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-links a {
  position: relative;
  isolation: isolate;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  color: #aaa;
  text-decoration: none;
  font-size: 11px;
  background: #050505;
}

.social-links a::after {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(243, 16, 60, .5) 0%, rgba(243, 16, 60, .2) 42%, rgba(243, 16, 60, 0) 72%);
  filter: blur(6px);
}

.social-links img,
.social-icon {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  grid-area: 1 / 1;
}

.social-icon-hover {
  opacity: 0;
  transition: opacity .08s ease;
}

.social-links a:hover::after,
.social-links a:focus-visible::after {
  animation: footer-glow-decay .72s ease-out forwards;
}

.social-links a:hover .social-icon-default,
.social-links a:focus-visible .social-icon-default {
  filter: drop-shadow(0 0 10px rgba(243, 16, 60, .55));
}

.social-links a:hover .social-icon-hover,
.social-links a:focus-visible .social-icon-hover {
  opacity: 1;
  filter: drop-shadow(0 0 12px rgba(243, 16, 60, .7));
}

@keyframes footer-glow-decay {
  0% {
    opacity: .72;
    transform: scale(.92);
    filter: blur(6px);
  }
  36% {
    opacity: 1;
    transform: scale(1.14);
    filter: blur(9px);
  }
  100% {
    opacity: 0;
    transform: scale(1.28);
    filter: blur(12px);
  }
}

.footer-mascot {
  width: 56px;
  height: 64px;
}

.project-header {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(320px, 54%);
  gap: 24px;
  align-items: end;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.project-header p,
.eyebrow {
  margin: 0 0 8px;
  color: var(--red);
  font-size: 12px;
  text-transform: uppercase;
}

.project-header h1,
.media-page h1,
.contact-page-shell h1 {
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  text-transform: uppercase;
}

.ds3-page main {
  position: fixed;
  top: 147px;
  right: 0;
  bottom: var(--footer-height);
  left: 0;
  width: 100%;
  min-width: 1280px;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.ds3-page {
  height: 100vh;
  padding-top: 0;
  padding-bottom: var(--footer-height);
  overflow: hidden;
}

.ds3-project {
  width: 1251px;
  margin: 0 auto;
  padding-top: 16px;
}

.ds3-title {
  min-height: 170px;
  padding-top: 0;
}

.ds3-title h1 {
  width: fit-content;
  margin: 0 0 8px;
  color: var(--hot-red);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.ds3-title p {
  width: fit-content;
  margin: 0 0 5px;
  color: #8e8e8e;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.ds3-copy {
  color: #e8e8e8;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}

.ds3-copy h2 {
  margin: 0 0 10px;
  color: #e8e8e8;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.88;
}

.ds3-copy p {
  margin: 0 0 14px;
}

.ds3-overview {
  width: 1251px;
  max-width: 100%;
  min-height: 285px;
}

.ds3-top-grid {
  display: grid;
  grid-template-columns: repeat(2, 614px);
  gap: 13px 16px;
  width: 1244px;
  max-width: 100%;
  margin-top: 15px;
  margin-right: auto;
  margin-left: auto;
}

.ds3-top-grid img {
  width: 614px;
  height: 314px;
  display: block;
  object-fit: cover;
}

.ds3-surface {
  width: 1251px;
  max-width: 100%;
  min-height: 148px;
  margin-top: 52px;
  padding-left: 9px;
}

.ds3-mosaic {
  position: relative;
  width: 1251px;
  max-width: 100%;
  height: 957px;
  margin-top: 20px;
}

.ds3-mosaic img,
.ds3-centered-shot img,
.ds3-final-shot img {
  display: block;
  object-fit: cover;
}

.ds3-mosaic img {
  position: absolute;
}

.ds3-k {
  left: 9px;
  top: 0;
  width: 480px;
  height: 251px;
}

.ds3-i {
  left: 501px;
  top: 0;
  width: 746px;
  height: 431px;
}

.ds3-h {
  left: 9px;
  top: 265px;
  width: 480px;
  height: 330px;
}

.ds3-j {
  left: 506px;
  top: 462px;
  width: 741px;
  height: 495px;
}

.ds3-b {
  left: 9px;
  top: 608px;
  width: 480px;
  height: 349px;
}

.ds3-centered-shot {
  max-width: 100%;
}

.ds3-shot-l {
  width: 907px;
  margin: 17px auto 0;
}

.ds3-shot-l img {
  width: 907px;
  height: 473px;
}

.ds3-prototype {
  width: 1251px;
  max-width: 100%;
  min-height: 271px;
  margin-top: 43px;
}

.ds3-shot-m,
.ds3-shot-o {
  width: 912px;
}

.ds3-shot-m {
  margin: 0 auto;
}

.ds3-shot-o {
  margin: 10px auto 0;
}

.ds3-shot-m img,
.ds3-shot-o img {
  width: 912px;
  height: 451px;
}

.ds3-final-shot {
  width: 1177px;
  max-width: 100%;
  margin: 14px auto 0;
}

.ds3-final-shot img {
  width: 1177px;
  height: 782px;
}

.mand-page {
  height: 100vh;
  padding-top: 0;
  padding-bottom: var(--footer-height);
  overflow: hidden;
}

.mand-page main {
  position: fixed;
  top: 147px;
  right: 0;
  bottom: var(--footer-height);
  left: 0;
  width: 100%;
  min-width: 1280px;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mand-project {
  position: relative;
  width: 1280px;
  height: 4275px;
  margin: 0 auto;
}

.mand-title,
.mand-copy,
.mand-frame {
  position: absolute;
}

.mand-title {
  left: 15px;
  top: 11px;
  z-index: 2;
  width: 1251px;
  height: 154px;
  font-family: var(--font-display);
}

.mand-title h1 {
  margin: 0;
  color: var(--hot-red);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.mand-title h1 span {
  font-size: 20px;
}

.mand-title p {
  margin: 0;
  color: #e8e8e8;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.mand-title .mand-year {
  font-size: 16px;
  line-height: 1.4;
}

.mand-copy {
  z-index: 2;
  width: 1251px;
  height: 172px;
  color: #e8e8e8;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
}

.mand-copy h2 {
  margin: 0;
  color: #e8e8e8;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.mand-copy p {
  margin: 0;
}

.mand-pelgo {
  left: 14px;
  top: 186px;
}

.mand-eisley {
  left: 15px;
  top: 2517px;
}

.mand-frame {
  width: 1251px;
  height: 521px;
  margin: 0;
  z-index: 1;
}

.mand-frame img {
  width: 1251px;
  height: 521px;
  display: block;
  object-fit: cover;
}

.mand-img-1 {
  left: 15px;
  top: 370px;
}

.mand-img-2 {
  left: 15px;
  top: 903px;
}

.mand-img-3 {
  left: 15px;
  top: 1441px;
}

.mand-img-4 {
  left: 14px;
  top: 1975px;
}

.mand-img-5 {
  left: 15px;
  top: 2692px;
}

.mand-img-6 {
  left: 14px;
  top: 3225px;
}

.mand-img-7 {
  left: 14px;
  top: 3754px;
}

.live-layout-page {
  height: 100vh;
  padding-top: 0;
  padding-bottom: var(--footer-height);
  overflow: hidden;
}

.live-layout-page main {
  position: fixed;
  top: 147px;
  right: 0;
  bottom: var(--footer-height);
  left: 0;
  width: 100%;
  min-width: 1280px;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.live-layout {
  position: relative;
  width: 1280px;
  min-height: 100%;
  margin: 0 auto;
}

.works-live-page .live-layout::before,
.works-live-page .live-layout::after {
  content: "";
  position: absolute;
  top: 326px;
  z-index: 1044;
  width: 1px;
  height: 1900px;
  pointer-events: none;
  background: linear-gradient(180deg, #000 0, var(--red) 120px, var(--red) calc(100% - 120px), #000 100%);
}

.works-live-page .live-layout::before {
  left: 398px;
}

.works-live-page .live-layout::after {
  left: 823px;
}

.works-live-page {
  --works-dark-red: #8f001c;
}

.works-live-page .live-text-content .fg-C1 {
  color: var(--works-dark-red) !important;
}

.works-live-page .live-text {
  overflow: hidden;
  padding: 12px 14px;
  border: 1px solid var(--works-dark-red);
  border-radius: 6px;
  background: rgba(0, 0, 0, .29);
}

.works-live-page .live-text-content {
  height: 100%;
  overflow-y: auto;
  padding-right: 10px;
  scrollbar-color: var(--works-dark-red) rgba(5, 5, 5, .32);
  scrollbar-width: thin;
}

.works-live-page .live-text-content::-webkit-scrollbar {
  width: 6px;
}

.works-live-page .live-text-content::-webkit-scrollbar-track {
  background: rgba(5, 5, 5, .32);
}

.works-live-page .live-text-content::-webkit-scrollbar-thumb {
  background: var(--works-dark-red);
}

.works-live-page .live-text-content .paragraph1,
.works-live-page .live-text-content.paragraph1,
.works-live-page .paragraph1 {
  margin: 0 0 8px;
  color: #c5c5cb;
  line-height: 1.35;
}

.works-live-page .live-text-content br {
  display: none;
}

.works-live-page .live-text-content .fg-C1 strong {
  display: block;
  margin: 0 0 2px;
  color: var(--works-dark-red);
  font-weight: 700;
  line-height: 1.2;
}

.live-el {
  position: absolute;
}

.live-image,
.live-carousel,
.live-video {
  overflow: hidden;
}

.live-image img,
.live-carousel img,
.live-video iframe,
.live-video video {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.live-image-link {
  width: 100%;
  height: 100%;
  display: block;
}

.works-live-page .live-image-link {
  position: relative;
  display: block;
  overflow: hidden;
  outline: 0;
  border-radius: 7px;
  box-sizing: border-box;
}

.works-live-page .live-image-link img {
  transition: filter .18s ease;
}

.works-live-page .live-image-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(0, 0, 0, .42) 0 1px, rgba(0, 0, 0, 0) 1px 4px),
    linear-gradient(rgba(243, 16, 60, .125), rgba(243, 16, 60, .125));
  opacity: 0;
  transition: opacity .2s ease;
}

.works-live-page .live-image-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  box-sizing: border-box;
  border: 3px solid var(--red);
  border-radius: 7px;
  pointer-events: none;
  opacity: 0;
  outline: 1px solid rgba(243, 16, 60, .9);
  outline-offset: -5px;
  box-shadow:
    0 0 16px rgba(243, 16, 60, .62),
    0 0 26px rgba(243, 16, 60, .3),
    inset 0 0 12px rgba(243, 16, 60, .36);
}

.works-live-page .live-image-link:hover img,
.works-live-page .live-image-link:focus-visible img {
  animation: portfolio-button-brighten .38s ease-out forwards;
}

.works-live-page .live-image-link:hover::before,
.works-live-page .live-image-link:focus-visible::before {
  animation: portfolio-button-overlay .38s ease-out forwards;
}

.works-live-page .live-image-link:hover::after,
.works-live-page .live-image-link:focus-visible::after {
  opacity: 1;
  animation: portfolio-button-stroke 1.05s ease-in-out infinite;
}

.portfolio-readout {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9;
  width: calc(100% - 24px);
  max-height: calc(100% - 24px);
  overflow: hidden;
  display: grid;
  justify-items: center;
  align-content: center;
  color: #fff;
  font-family: Michroma, Orbitron, Arial, sans-serif;
  font-size: 6px;
  line-height: 1.35;
  letter-spacing: .02em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 5px rgba(243, 16, 60, .78), 0 0 8px rgba(0, 0, 0, .88);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.portfolio-readout span {
  display: block;
  clip-path: inset(0 100% 0 0);
}

.portfolio-readout span:first-child {
  color: #fff;
  font-size: 7px;
  line-height: 1.25;
}

.portfolio-readout::after {
  content: "";
  display: block;
  width: 8px;
  height: 5px;
  margin: 5px auto 0;
  background: var(--red);
  box-shadow: 0 0 7px rgba(243, 16, 60, .8);
  opacity: 0;
}

.works-live-page .live-image-link:hover .portfolio-readout,
.works-live-page .live-image-link:focus-visible .portfolio-readout {
  opacity: 1;
}

.works-live-page .live-image-link:hover .portfolio-readout span,
.works-live-page .live-image-link:focus-visible .portfolio-readout span {
  animation: portfolio-readout-type .62s steps(24, end) forwards;
}

.works-live-page .live-image-link:hover .portfolio-readout::after,
.works-live-page .live-image-link:focus-visible .portfolio-readout::after {
  animation: portfolio-readout-cursor .62s steps(1, end) .58s infinite;
}

.portfolio-lock {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 96px;
  height: 96px;
  background: url("/lock_icon.png") center / contain no-repeat;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, .65));
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.88);
  transition: opacity .18s ease, transform .18s ease;
}

.works-live-page .live-image-link.is-locked-project:hover .portfolio-lock,
.works-live-page .live-image-link.is-locked-project:focus-visible .portfolio-lock {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

@keyframes portfolio-button-brighten {
  0% {
    filter: brightness(1);
  }

  34% {
    filter: brightness(1.55);
  }

  100% {
    filter: brightness(1);
  }
}

@keyframes portfolio-button-overlay {
  0%,
  34% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes portfolio-button-stroke {
  0%,
  100% {
    opacity: 1;
    border-color: var(--red);
    outline-color: rgba(243, 16, 60, .92);
    box-shadow:
      0 0 18px rgba(243, 16, 60, .68),
      0 0 30px rgba(243, 16, 60, .34),
      inset 0 0 14px rgba(243, 16, 60, .42);
  }

  50% {
    opacity: 1;
    border-color: rgba(255, 255, 255, .92);
    outline-color: rgba(255, 255, 255, .86);
    box-shadow:
      0 0 18px rgba(255, 255, 255, .36),
      0 0 32px rgba(243, 16, 60, .42),
      inset 0 0 14px rgba(255, 255, 255, .2);
  }
}

@keyframes portfolio-readout-type {
  0% {
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes portfolio-readout-cursor {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

.access-dialog,
.contact-dialog {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .76);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}

.access-dialog.is-open,
.contact-dialog.is-open {
  opacity: 1;
  pointer-events: auto;
}

.access-dialog-panel,
.contact-dialog-panel {
  position: relative;
  width: min(520px, 100%);
  padding: 38px 36px 32px;
  background: #050505;
  border: 2px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 0 38px rgba(243, 16, 60, .2), inset 0 0 0 1px rgba(255, 255, 255, .05);
  color: #fff;
  text-align: center;
}

.contact-dialog-panel {
  width: min(560px, 100%);
  text-align: left;
}

.contact-dialog-panel.is-contact-sent {
  width: min(430px, 100%);
  padding: 34px 34px 30px;
  text-align: center;
}

.contact-dialog-panel.is-contact-sent > h2,
.contact-dialog-panel.is-contact-sent .contact-dialog-intro,
.contact-dialog-panel.is-contact-sent .contact-dialog-form,
.contact-dialog-panel.is-contact-sent .contact-dialog-status,
.contact-dialog-panel.is-contact-sent .contact-dialog-close {
  display: none;
}

.contact-dialog-panel.is-contact-success-flash {
  animation: contact-success-flash .72s ease-out forwards;
}

.access-dialog-panel.is-denied-flash {
  animation: access-denied-flash .72s ease-out forwards;
}

@keyframes contact-success-flash {
  0% {
    background: var(--red);
    box-shadow: 0 0 56px rgba(243, 16, 60, .72), inset 0 0 0 1px rgba(255, 255, 255, .18);
  }

  100% {
    background: #050505;
    box-shadow: 0 0 38px rgba(243, 16, 60, .2), inset 0 0 0 1px rgba(255, 255, 255, .05);
  }
}

@keyframes access-denied-flash {
  0% {
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 0 56px rgba(243, 16, 60, .78), inset 0 0 0 1px rgba(255, 255, 255, .18);
  }

  100% {
    background: #050505;
    border-color: var(--red);
    box-shadow: 0 0 38px rgba(243, 16, 60, .2), inset 0 0 0 1px rgba(255, 255, 255, .05);
  }
}

.access-dialog-close,
.contact-dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(243, 16, 60, .65);
  border-radius: 3px;
  background: #080808;
  cursor: pointer;
}

.access-dialog-close::before,
.access-dialog-close::after,
.contact-dialog-close::before,
.contact-dialog-close::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 6px;
  width: 14px;
  height: 1px;
  background: #fff;
}

.access-dialog-close::before,
.contact-dialog-close::before {
  transform: rotate(45deg);
}

.access-dialog-close::after,
.contact-dialog-close::after {
  transform: rotate(-45deg);
}

.access-dialog-lock {
  position: relative;
  height: 120px;
  margin-bottom: 8px;
}

.access-dialog-lock .portfolio-lock {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.access-dialog h2 {
  margin: 0 0 22px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.3;
  text-transform: uppercase;
}

.contact-dialog h2 {
  margin: 0 0 12px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.contact-dialog-intro {
  margin: 0 0 22px;
  color: #c9c9cf;
  font-family: var(--font-credit);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.access-dialog-form,
.contact-dialog-form {
  display: grid;
  gap: 12px;
}

.access-dialog-form label,
.contact-dialog-form label {
  color: #a6a6ad;
  font-family: var(--font-credit);
  font-size: 13px;
}

.contact-dialog-form label {
  display: grid;
  gap: 7px;
}

.access-dialog-form input,
.contact-dialog-form input,
.contact-dialog-form textarea {
  width: 100%;
  border: 1px solid rgba(243, 16, 60, .72);
  border-radius: 4px;
  background: #000;
  color: #fff;
  outline: 0;
}

.access-dialog-form input {
  height: 42px;
  font: 14px/1.45 var(--font-credit);
  text-align: center;
}

.contact-dialog-form input,
.contact-dialog-form textarea {
  appearance: none;
  font-family: "Courier New", Courier, monospace;
  font-size: 13px;
  font-weight: 700;
  line-height: 26px;
  overflow: visible;
}

.contact-dialog-form input {
  height: 70px;
  padding: 24px 14px 18px;
}

.contact-dialog-form textarea {
  min-height: 168px;
  padding: 22px 14px 18px;
  resize: vertical;
}

.access-dialog-form input:focus,
.contact-dialog-form input:focus,
.contact-dialog-form textarea:focus {
  box-shadow: 0 0 16px rgba(243, 16, 60, .28);
}

.access-dialog-form button,
.access-dialog-contact,
.contact-dialog-form button,
.contact-dialog-done {
  min-height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(243, 16, 60, .82);
  border-radius: 4px;
  background: rgba(243, 16, 60, .18);
  color: #fff;
  font-family: var(--font-display);
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.access-dialog-form button:hover,
.access-dialog-form button:focus-visible,
.access-dialog-contact:hover,
.access-dialog-contact:focus-visible,
.contact-dialog-form button:hover,
.contact-dialog-form button:focus-visible,
.contact-dialog-done:hover,
.contact-dialog-done:focus-visible {
  background: rgba(243, 16, 60, .34);
  box-shadow: 0 0 18px rgba(243, 16, 60, .26);
}

.contact-dialog-success {
  text-align: center;
}

.contact-dialog-success[hidden] {
  display: none;
}

.contact-dialog-success h3 {
  margin: 4px 0 12px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.35;
  text-transform: uppercase;
}

.contact-dialog-success p {
  margin: 0 0 22px;
  color: #c9c9cf;
  font-family: var(--font-credit);
  font-size: 13px;
  line-height: 1.55;
}

.contact-dialog-success .contact-dialog-done {
  width: min(180px, 100%);
  margin: 0 auto;
}

.access-dialog-message {
  margin: 20px 0 12px;
  color: #c9c9cf;
  font-family: var(--font-credit);
  font-size: 13px;
  line-height: 1.45;
}

.access-dialog-status,
.contact-dialog-status {
  min-height: 18px;
  margin: 14px 0 0;
  color: var(--red);
  font-family: var(--font-credit);
  font-size: 12px;
  text-align: center;
}

.live-image img,
.live-carousel img {
  object-fit: fill;
}

.live-carousel-stage {
  position: relative;
  width: 100%;
  height: 100%;
}

.live-carousel-stage > img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .2s ease;
}

.live-carousel-stage > img.active {
  opacity: 1;
}

.live-carousel-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 38px;
  height: 44px;
  margin-top: -22px;
  border: 0;
  background: rgba(0, 0, 0, .34);
  color: #fff;
  font: 34px/1 Arial, Helvetica, sans-serif;
  cursor: pointer;
}

.live-carousel-prev {
  left: 12px;
}

.live-carousel-next {
  right: 12px;
}

.live-carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.live-carousel-indicators button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  background: rgba(0, 0, 0, .5);
  cursor: pointer;
}

.live-carousel-indicators button.active {
  background: var(--hot-red);
  border-color: var(--hot-red);
}

.live-video iframe,
.live-video video {
  background: #000;
}

.live-text {
  overflow: visible;
  color: #e8e8e8;
  font-family: var(--font-display);
  word-wrap: break-word;
}

.live-text-content {
  color: inherit;
  font-family: inherit;
  outline: none;
}

.live-text-content p {
  margin-top: 0;
}

.live-text-content a {
  color: inherit;
}

.live-text-content .paragraph1,
.live-text-content.paragraph1,
.live-layout-page .paragraph1 {
  color: #e8e8e8;
  font-size: 18px;
  line-height: 1.8;
}

.live-layout-page .paragraph2 {
  color: #e8e8e8;
  font-size: 14px;
  line-height: 1.6;
}

.live-layout-page .paragraph3 {
  color: #e8e8e8;
  font-size: 12px;
  line-height: 1.4;
}

.live-button {
  width: 100%;
  height: 100%;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.structured-project-page {
  height: 100vh;
  padding-top: 0;
  padding-bottom: var(--footer-height);
  overflow: hidden;
}

.structured-project-page main {
  position: fixed;
  top: 147px;
  right: 0;
  bottom: var(--footer-height);
  left: 0;
  width: 100%;
  min-width: 1280px;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.structured-project {
  --project-line: 16px;
  width: 1251px;
  margin: 0 auto;
  padding: 20px 0 72px;
  color: #fff;
  font-family: var(--font-display);
}

.structured-project-info h1 {
  margin: 0;
  color: #f3103c;
  font-size: 30px;
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
}

.structured-project-info h1 span {
  color: #f3103c;
  font-size: 20px;
  vertical-align: baseline;
}

.structured-project-info p {
  margin: 0;
  color: #b8b8b8;
  line-height: 1.35;
}

.structured-project-info .structured-project-year {
  margin-top: 17px;
  font-size: 16px;
  font-weight: 400;
}

.structured-project-info .structured-project-meta {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 400;
}

.structured-project-section {
  margin-top: calc(var(--project-line) * 3);
}

.structured-project-section + .structured-project-section {
  margin-top: calc(var(--project-line) * 3);
}

.structured-project-section h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
}

.structured-project-copy {
  color: #fff;
  font-size: 12px;
  line-height: 2.35;
}

.structured-project-copy p {
  margin: 0;
}

.structured-project-copy p + p {
  margin-top: var(--project-line);
}

.structured-project-images {
  display: grid;
  gap: var(--project-line);
  justify-items: center;
  margin-top: var(--project-line);
}

.structured-project-media {
  position: relative;
  margin: 0;
  width: 100%;
  justify-self: center;
  overflow: hidden;
}

.structured-project-logo {
  justify-self: center;
}

.structured-project-media img,
.structured-project-media iframe,
.structured-project-media video {
  width: 100%;
  display: block;
  border: 0;
}

.structured-project-image img {
  height: auto;
  margin-right: auto;
  margin-left: auto;
}

.structured-project-video iframe,
.structured-project-video video,
.structured-project-carousel .live-carousel-stage {
  height: 100%;
}

.structured-project-carousel {
  overflow: hidden;
}

.structured-project-image::after,
.structured-project-carousel::after,
.structured-project-video::after,
.image-card::after,
.mand-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, rgba(0, 0, 0, .2) 0 1px, rgba(0, 0, 0, 0) 1px 20px),
    repeating-linear-gradient(90deg, rgba(0, 0, 0, .05) 0 1px, rgba(0, 0, 0, 0) 1px 20px);
}

.fg-A0 { color: #616161 !important; }
.fg-A1 { color: #9f0011 !important; }
.fg-A2 { color: #fff !important; }
.fg-A3 { color: #000 !important; }
.fg-A4 { color: #eff0eb !important; }
.fg-B0 { color: #8e8e8e !important; }
.fg-B1 { color: #cc003e !important; }
.fg-B2 { color: #dfdfdf !important; }
.fg-B3 { color: #202020 !important; }
.fg-B4 { color: #c1c5b2 !important; }
.fg-C0 { color: #bbb !important; }
.fg-C1 { color: #f9096b !important; }
.fg-C2 { color: #fff !important; }
.fg-C3 { color: #4d4d4d !important; }
.fg-C4 { color: #939978 !important; }
.fg-D0 { color: #e8e8e8 !important; }
.fg-D1 { color: #ff3698 !important; }
.fg-D2 { color: #858585 !important; }
.fg-D3 { color: #7a7a7a !important; }
.fg-D4 { color: #656b50 !important; }
.fg-E0 { color: #fff !important; }
.fg-E1 { color: #ff63c5 !important; }
.fg-E2 { color: #585858 !important; }
.fg-E3 { color: #a7a7a7 !important; }
.fg-E4 { color: #383b2c !important; }

.project-hero-image {
  width: 100%;
  display: block;
  margin-right: auto;
  margin-left: auto;
  border: 1px solid #202024;
}

.project-copy {
  max-width: 980px;
  color: #c6c6cc;
  column-width: 420px;
  column-gap: 42px;
}

.media-page,
.about-page-shell,
.contact-page-shell {
  padding: 34px 0 56px;
}

.reels-title-art,
.contact-title-art {
  margin-bottom: 26px;
}

.reel-list {
  display: grid;
  gap: 28px;
}

.reel-item {
  display: grid;
  grid-template-columns: minmax(320px, 58%) 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.video-frame {
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid #202024;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.reel-copy h2 {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 18px;
  text-transform: uppercase;
}

.reel-copy p {
  color: #c8c8cf;
  line-height: 1.6;
}

.about-hero {
  display: block;
  padding-bottom: 0;
  border-bottom: 0;
}

.about-portrait-card {
  float: left;
  width: 195px;
  margin: 0 28px 18px 0;
}

.about-portrait {
  width: 100%;
  display: block;
  border: 1px solid #202024;
}

.about-portrait-card figcaption {
  margin-top: 8px;
  color: #e4e4e4;
  font-size: 10px;
  line-height: 1.45;
  text-align: right;
  font-weight: 700;
}

.about-identity h1 {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 32px;
  line-height: 1.1;
  text-transform: uppercase;
}

.about-profile-lines {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 22px;
  row-gap: 8px;
  color: #d4d4d4;
  font-size: 11px;
  line-height: 1.35;
}

.about-profile-lines p {
  margin: 0;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  padding: 6px 0;
  border-top: 1px solid rgba(243, 16, 60, .42);
}

.about-profile-lines strong {
  color: var(--red);
  font-weight: 700;
  white-space: nowrap;
}

.about-bio {
  position: relative;
  max-width: none;
  margin: 8px 0 34px;
  padding: 16px 0 28px;
  color: #dcdce2;
  font-size: 13px;
  line-height: 1.62;
  border-bottom: 1px solid rgba(243, 16, 60, .42);
}

.about-bio::before {
  content: "";
  display: block;
  height: 1px;
  margin: 0 0 16px 223px;
  background: rgba(243, 16, 60, .5);
}

.about-bio p {
  max-width: none;
  margin: 0 0 13px;
  text-wrap: pretty;
}

.about-bio p:last-child {
  margin-bottom: 0;
  padding-left: 34px;
  color: #fff;
}

.about-bio p:nth-last-child(2) {
  margin-top: 18px;
  margin-bottom: 2px;
  color: #f2f2f2;
  font-style: italic;
}

.about-bio p:nth-last-child(2),
.about-bio p:last-child {
  text-align: right;
}

.about-work-grid {
  clear: both;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 28px;
  align-items: start;
}

.about-work-column {
  display: grid;
  gap: 34px;
  align-items: start;
}

.about-studio {
  min-width: 0;
}

.about-studio h2 {
  margin: 0 0 16px;
  color: #777;
  font-size: 26px;
  text-transform: uppercase;
}

.about-studio-logo {
  width: min(360px, 100%);
  height: auto;
  display: block;
  margin-bottom: 20px;
  mix-blend-mode: screen;
}

.about-credit-list {
  display: grid;
  gap: 22px;
}

.about-credit {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 138px;
  font-family: var(--font-credit);
  color: #f0f0f0;
  position: relative;
  padding: 0 0 18px;
}

.about-credit::after {
  content: "";
  position: absolute;
  left: 108px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(243, 16, 60, .55), rgba(243, 16, 60, 0));
}

.about-credit-poster {
  width: 92px;
  min-height: 138px;
  background: rgba(0, 0, 0, .45);
  outline: 1px solid rgba(243, 16, 60, .24);
}

.about-credit-poster img {
  width: 92px;
  height: 138px;
  display: block;
  object-fit: cover;
}

.about-credit-copy {
  min-width: 0;
  padding-top: 2px;
}

.about-credit h3 {
  margin: 0 0 8px;
  color: var(--dw-red);
  font-size: 16px;
  line-height: 1.18;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.about-credit h3 a {
  color: inherit;
  text-decoration: none;
}

.about-credit p {
  margin: 0 0 3px;
  color: #d9d9d9;
  font-size: 12px;
  line-height: 1.4;
}

.about-credit-role {
  color: #fff;
  font-style: normal;
  font-weight: 700;
}

.about-credit-note {
  color: #f1f1f1;
}

.about-credit-skills {
  color: #bfbfbf;
}

.about-credit-studio {
  color: #8f8f8f;
  font-style: normal;
}

.contact-page-shell {
  min-height: 520px;
}

.contact-form {
  width: min(620px, 100%);
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  color: #aaa;
  font-size: 12px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #2a2a2f;
  background: rgba(0, 0, 0, .72);
  color: #fff;
  font: inherit;
}

.contact-form button {
  width: fit-content;
  padding: 12px 18px;
  border: 1px solid var(--red);
  background: var(--red);
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
}

.protected-page {
  min-height: 460px;
}

@media (max-width: 720px) {
  .brand {
    width: 1280px;
    height: 96px;
    min-height: 96px;
    grid-template-columns: minmax(0, 939px) 332px;
    gap: 0;
  }

  .brand-logo {
    display: block;
  }

  .brand-motion-wrap {
    width: 939px;
    height: 74px;
    margin-top: 16px;
  }

  .main-nav {
    width: 1280px;
    overflow: visible;
    grid-template-columns: repeat(5, 1fr);
  }

  .hero,
  .hero img {
    min-height: 320px;
  }

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

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

  .site-footer {
    width: 1280px;
    grid-template-columns: minmax(260px, 1fr) auto auto;
  }

  .social-links {
    justify-content: center;
  }

  .project-header,
  .reel-item,
  .about-hero,
  .about-work-grid {
    grid-template-columns: 1fr;
  }

  .about-portrait-card {
    float: none;
    width: min(195px, 100%);
    margin: 0 0 18px;
  }

  .about-credit {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    min-height: 124px;
  }

  .about-credit::after {
    left: 94px;
  }

  .about-credit-poster,
  .about-credit-poster img {
    width: 82px;
    height: 124px;
  }

  .project-copy {
    columns: auto;
  }
}
