:root {
  --black: #030405;
  --charcoal: #090b0f;
  --panel: #111318;
  --panel-2: #15171d;
  --text: #e8e4dc;
  --muted: #8f98a3;
  --faint: rgba(232, 228, 220, 0.48);
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --blue: #1f6fbf;
  --red: #b91f2d;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.56);
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h: 70px;
  --x: clamp(22px, 5vw, 84px);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 14%, rgba(31, 111, 191, 0.045), transparent 27rem),
    radial-gradient(circle at 14% 42%, rgba(185, 31, 45, 0.05), transparent 22rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(180deg, #030405 0%, #090b0f 45%, #050607 100%);
  background-size: auto, auto, 84px 84px, 84px 84px, auto;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  place-items: center;
  overflow: hidden;
  background: #000;
  opacity: 1;
  visibility: visible;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.has-loader-js .site-loader {
  display: grid;
}

.site-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 32%),
    radial-gradient(circle at center, rgba(160, 20, 32, 0.1), transparent 48%);
  opacity: 0.7;
  pointer-events: none;
}

.site-loader__glow {
  position: absolute;
  width: min(70vw, 580px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 228, 220, 0.08), transparent 62%);
  filter: blur(18px);
  pointer-events: none;
}

.site-loader__inner {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  animation: chipIntroDrift 2100ms cubic-bezier(0.18, 0.74, 0.25, 1) forwards;
}

.site-loader__mark {
  width: clamp(120px, 14vw, 190px);
  height: auto;
  opacity: 0;
  filter: drop-shadow(0 0 36px rgba(255, 255, 255, 0.08));
  animation: chipReveal 2100ms ease forwards;
}

.site-loader__text,
.site-loader__subtext {
  color: rgba(245, 241, 233, 0.82);
  font-weight: 800;
  letter-spacing: 0.18em;
  opacity: 0;
  text-transform: uppercase;
  animation: loaderText 1600ms ease forwards;
}

.site-loader__text {
  font-size: 0.78rem;
}

.site-loader__subtext {
  color: rgba(245, 241, 233, 0.45);
  font-size: 0.58rem;
}

.site-loader.is-hiding {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes chipIntroDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(0.72) rotate(-4deg);
  }

  42% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
  }

  100% {
    transform: translate3d(-38vw, -4vh, 0) scale(2.2) rotate(8deg);
  }
}

@keyframes chipReveal {
  0% {
    opacity: 0;
  }

  20%,
  58% {
    opacity: 0.95;
  }

  100% {
    opacity: 0.1;
  }
}

@keyframes loaderText {
  0%,
  12% {
    opacity: 0;
    transform: translateY(6px);
  }

  28%,
  55% {
    opacity: 1;
    transform: translateY(0);
  }

  88%,
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: var(--header-h);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 10px var(--x);
  border-bottom: 1px solid transparent;
  transition: height 220ms ease, background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  height: 58px;
  background: rgba(3, 4, 5, 0.78);
  border-color: var(--line-soft);
  backdrop-filter: blur(18px);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 31, 45, 0.52), rgba(43, 127, 211, 0.35), transparent);
  opacity: 0.68;
  pointer-events: none;
}

.brand {
  display: inline-flex;
  width: min(150px, 42vw);
  min-width: 124px;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 0.9;
}

.brand-text span:first-child {
  color: #f1ede5;
  font-size: 0.75rem;
}

.brand-text span:last-child {
  color: rgba(232, 228, 220, 0.62);
  font-size: 0.56rem;
}

.header-location {
  margin-left: auto;
  display: flex;
  gap: clamp(12px, 2.4vw, 34px);
  min-width: 0;
  color: rgba(232, 228, 220, 0.52);
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: rgba(17, 19, 24, 0.72);
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.section-nav {
  position: fixed;
  top: 50%;
  right: clamp(20px, 3.2vw, 54px);
  z-index: 55;
  display: grid;
  gap: 10px;
  transform: translateY(-50%);
  padding: 14px 0 14px 16px;
  color: rgba(232, 228, 220, 0.58);
  font-size: 0.6rem;
  font-weight: 900;
  text-align: right;
  text-transform: uppercase;
  transition: transform 220ms ease, opacity 220ms ease;
}

.section-nav::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -10px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(232, 228, 220, 0.32), transparent);
}

.section-nav a {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  letter-spacing: 0;
  transition: color 180ms ease, transform 180ms ease;
}

.section-nav a span {
  width: 6px;
  height: 6px;
  border: 1px solid rgba(232, 228, 220, 0.38);
  border-radius: 50%;
  background: var(--black);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.section-nav a:hover,
.section-nav a.is-active {
  color: var(--text);
  transform: translateX(-3px);
}

.section-nav a.is-active span {
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 0 18px rgba(185, 31, 45, 0.42);
}

.section-nav.is-scrolled {
  opacity: 0.72;
  transform: translateY(-50%) scale(0.92);
}

.section-nav.is-scrolled:hover {
  opacity: 1;
}

.section-inner {
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 calc(var(--x) + 104px) 0 var(--x);
}

.full-bleed-inner {
  max-width: none;
  padding-left: clamp(14px, 2vw, 32px);
  padding-right: calc(clamp(14px, 2vw, 32px) + 166px);
}

.panel {
  position: relative;
  scroll-margin-top: calc(var(--header-h) + 18px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 30px) 0 44px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.9) 0%, rgba(3, 4, 5, 0.7) 47%, rgba(3, 4, 5, 0.9) 100%),
    radial-gradient(circle at 76% 55%, rgba(31, 111, 191, 0.055), transparent 26rem),
    #030405;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.095;
  background:
    radial-gradient(circle at 9% 48%, rgba(232, 228, 220, 0.4) 0 2px, transparent 3px),
    repeating-linear-gradient(84deg, transparent 0 48px, rgba(232, 228, 220, 0.16) 49px, transparent 50px),
    linear-gradient(180deg, transparent 0 28%, rgba(185, 31, 45, 0.18) 28.06% 28.18%, transparent 28.32% 100%),
    linear-gradient(180deg, transparent 0 82%, rgba(31, 111, 191, 0.16) 82.06% 82.16%, transparent 82.3% 100%);
  mask-image: linear-gradient(90deg, black 0%, black 70%, transparent 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.075;
  background:
    linear-gradient(90deg, rgba(232, 228, 220, 0.2) 1px, transparent 1px),
    linear-gradient(0deg, rgba(232, 228, 220, 0.14) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(circle at 38% 42%, black, transparent 56%);
  pointer-events: none;
}

.hero-texture {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background:
    radial-gradient(circle at 20% 70%, rgba(185, 31, 45, 0.06), transparent 19rem),
    radial-gradient(circle at 70% 22%, rgba(31, 111, 191, 0.045), transparent 24rem),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.035) 0 0.8px, transparent 1px),
    linear-gradient(180deg, transparent 0 8%, rgba(255, 255, 255, 0.03) 8.1% 8.18%, transparent 8.3% 100%);
  background-size: auto, auto, 4px 4px, auto;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-map-lines {
  position: absolute;
  inset: 14% 0 8%;
  opacity: 0.08;
  background:
    linear-gradient(118deg, transparent 0 36%, rgba(185, 31, 45, 0.28) 36.08% 36.18%, transparent 36.28% 100%),
    linear-gradient(63deg, transparent 0 64%, rgba(31, 111, 191, 0.32) 64.08% 64.2%, transparent 64.32% 100%),
    linear-gradient(0deg, transparent 0 74%, rgba(232, 228, 220, 0.16) 74.08% 74.18%, transparent 74.3% 100%);
  pointer-events: none;
}

.hero-skyline {
  position: absolute;
  left: 34%;
  right: 13%;
  bottom: 74px;
  height: min(38vh, 360px);
  z-index: 1;
  opacity: 0.2;
  background:
    linear-gradient(180deg, transparent 0%, rgba(3, 4, 5, 0.06) 46%, #030405 100%),
    url("public/assets/nyc-skyline-reference-crop.png") center bottom / cover no-repeat;
  filter: grayscale(1) contrast(1.12) brightness(1.16);
  mix-blend-mode: screen;
  mask-image: linear-gradient(90deg, transparent 0%, black 18%, black 82%, transparent 100%);
  pointer-events: none;
}

.hero-watermark {
  position: absolute;
  left: -12vw;
  top: 18%;
  z-index: 0;
  width: clamp(420px, 38vw, 760px);
  aspect-ratio: 1;
  background: url("/assets/logos/22-logo-officil-transparent.png") center / contain no-repeat;
  opacity: 0.11;
  filter: grayscale(1) blur(0.3px);
  pointer-events: none;
}

.hero-details {
  position: absolute;
  left: var(--x);
  right: calc(var(--x) + 112px);
  bottom: 28px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(232, 228, 220, 0.38);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
  pointer-events: none;
}

.hero-grid {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(260px, 0.5fr);
  align-items: center;
  gap: clamp(28px, 6vw, 92px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-label,
.development-card span,
.person-card > span,
.person-card-body > span,
.team-slot span {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow,
.section-label {
  color: var(--blue);
}

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

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}

h1 {
  max-width: 800px;
  margin: 0 0 18px;
  color: #f1ede5;
  font-size: clamp(3.55rem, 6.35vw, 6.8rem);
  text-shadow: 0 16px 48px rgba(0, 0, 0, 0.78);
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2.35rem, 4.4vw, 4.9rem);
}

h3 {
  line-height: 1.1;
}

.hero-copy p:not(.eyebrow),
.section-copy p,
.section-heading p,
.development-head p,
.contact-grid p {
  max-width: 720px;
  color: #b9b3aa;
  font-size: clamp(0.94rem, 1.05vw, 1.05rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 0 16px;
  color: var(--text);
  background: rgba(17, 19, 24, 0.74);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button.primary {
  background: linear-gradient(180deg, rgba(185, 31, 45, 0.92), rgba(143, 21, 32, 0.92));
  border-color: rgba(185, 31, 45, 0.84);
  box-shadow: 0 16px 42px rgba(185, 31, 45, 0.13);
}

.button.secondary {
  border-color: rgba(232, 228, 220, 0.22);
  background: rgba(3, 4, 5, 0.64);
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(43, 127, 211, 0.82);
  box-shadow: 0 0 34px rgba(43, 127, 211, 0.14);
}

.hero-carousel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: min(66vw, 1040px);
  min-height: 0;
  overflow: hidden;
  opacity: 1;
  background: #030405;
  pointer-events: none;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 11%, rgba(0, 0, 0, 0.72) 31%, black 48%, black 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 11%, rgba(0, 0, 0, 0.72) 31%, black 48%, black 100%);
}

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

.hero-carousel::before {
  background:
    linear-gradient(90deg, #030405 0%, rgba(3, 4, 5, 0.86) 10%, rgba(3, 4, 5, 0.42) 31%, rgba(3, 4, 5, 0.06) 58%, rgba(3, 4, 5, 0.24) 100%),
    linear-gradient(180deg, #030405 0%, transparent 17%, transparent 80%, #030405 100%),
    radial-gradient(circle at 64% 50%, transparent 0%, rgba(3, 4, 5, 0.14) 78%);
}

.hero-carousel::after {
  background:
    linear-gradient(180deg, rgba(3, 4, 5, 0.7) 0%, transparent 28%, transparent 70%, rgba(3, 4, 5, 0.82) 100%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 54px 54px;
  opacity: 0.22;
}

.hero-carousel img {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  opacity: 0;
  filter: grayscale(0.08) saturate(0.94) contrast(1.06) brightness(1);
  transform: translateY(-50%) scale(1.01);
  animation: heroStillFade 24s infinite;
  mask-image: radial-gradient(ellipse at 58% 50%, black 0%, black 54%, rgba(0, 0, 0, 0.62) 70%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse at 58% 50%, black 0%, black 54%, rgba(0, 0, 0, 0.62) 70%, transparent 100%);
}

.hero-still.brickwall-one,
.hero-still.brickwall-two,
.hero-still.hoh-one {
  object-position: center center;
}

.hero-still.livefeed-two {
  object-position: center center;
}

.hero-carousel img:nth-child(2) {
  animation-delay: 6s;
}

.hero-carousel img:nth-child(3) {
  animation-delay: 12s;
}

.hero-carousel img:nth-child(4) {
  animation-delay: 18s;
}

@keyframes heroStillFade {
  0%,
  100% {
    opacity: 0;
  }

  8%,
  25% {
    opacity: 0.76;
  }

  34% {
    opacity: 0;
  }
}

.section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 228, 220, 0.22), rgba(185, 31, 45, 0.34), transparent);
  pointer-events: none;
}

.section {
  position: relative;
  padding: clamp(56px, 6.5vw, 88px) 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px),
    linear-gradient(180deg, rgba(3, 4, 5, 0.92), rgba(9, 11, 15, 0.98));
  background-size: 76px 76px, 76px 76px, auto;
}

.section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.28;
  background:
    linear-gradient(118deg, transparent 0 35%, rgba(232, 228, 220, 0.06) 35.1% 35.24%, transparent 35.42% 100%),
    linear-gradient(64deg, transparent 0 72%, rgba(43, 127, 211, 0.07) 72.08% 72.18%, transparent 72.34% 100%);
  pointer-events: none;
}

.section > .section-inner,
.section > .section-rail {
  position: relative;
  z-index: 1;
}

.section-rail {
  position: absolute;
  top: clamp(36px, 6vw, 78px);
  right: calc(var(--x) + 82px);
  color: rgba(232, 228, 220, 0.25);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  pointer-events: none;
}

.editorial-grid,
.about-layout {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: clamp(34px, 8vw, 108px);
  align-items: start;
}

.about-layout {
  grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
}

.section-kicker,
.section-heading {
  padding-top: 10px;
}

.about {
  background:
    radial-gradient(circle at 9% 23%, rgba(185, 31, 45, 0.06), transparent 22rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, #070809, #0a0c0f);
  background-size: auto, 52px 52px, 52px 52px, auto;
}

.about-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 0;
}

.about-team-grid .featured {
  grid-column: span 2;
}

.person-card,
.team-slot,
.development-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(17, 19, 24, 0.9), rgba(7, 8, 10, 0.86));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.person-card {
  min-height: 175px;
  padding: 18px;
}

.person-card.featured {
  display: grid;
  grid-template-columns: minmax(92px, 0.28fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.person-card-media {
  position: relative;
  overflow: hidden;
  min-height: 160px;
  border: 1px solid rgba(232, 228, 220, 0.1);
  background: #07090c;
}

.person-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 46%, rgba(3, 4, 5, 0.56)),
    radial-gradient(circle at 50% 28%, transparent 0%, rgba(3, 4, 5, 0.28) 78%);
  pointer-events: none;
}

.person-card-media img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.04) brightness(0.82);
}

.person-card h3,
.team-slot h3 {
  margin: 8px 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.6vw, 3rem);
  font-weight: 400;
  text-transform: uppercase;
}

.person-card p {
  color: var(--muted);
}

.person-card.featured {
  border-color: rgba(232, 228, 220, 0.2);
}

.person-card.featured a {
  display: inline-flex;
  margin-top: 4px;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 1px solid var(--red);
}

.person-card.empty {
  display: flex;
  min-height: 175px;
  flex-direction: column;
  justify-content: space-between;
  color: rgba(232, 228, 220, 0.64);
}

.productions {
  background:
    radial-gradient(circle at 92% 18%, rgba(43, 127, 211, 0.08), transparent 24rem),
    linear-gradient(180deg, #050607, #090b0f);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr);
  gap: clamp(24px, 6vw, 90px);
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}

.section-heading h2 {
  margin-bottom: 14px;
}

.work-list {
  border-top: 1px solid var(--line);
}

.work-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(190px, 0.28fr) minmax(180px, 0.26fr);
  gap: 28px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, border-color 180ms ease, background 180ms ease;
}

.work-row:hover {
  padding-left: 18px;
  padding-right: 18px;
  border-color: rgba(185, 31, 45, 0.34);
  background: rgba(185, 31, 45, 0.045);
}

.work-row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.8vw, 3rem);
  font-weight: 400;
  text-transform: uppercase;
}

.work-row p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.work-row span {
  color: rgba(232, 228, 220, 0.58);
}

.production-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.production-card {
  --accent: var(--red);
  position: relative;
  min-height: clamp(260px, 28vw, 360px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(3, 4, 5, 0.26), rgba(3, 4, 5, 0.88)),
    linear-gradient(90deg, rgba(3, 4, 5, 0.74), rgba(3, 4, 5, 0.18)),
    var(--card-image, linear-gradient(145deg, #111318, #050607)) center / cover no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(145deg, rgba(17, 19, 24, 0.9), rgba(7, 8, 10, 0.88));
  background-size: auto, auto, cover, 42px 42px, 42px 42px, auto;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.production-card[data-status="completed"] {
  --accent: #39b86a;
}

.production-card[data-status="post"] {
  --accent: #d98b19;
}

.production-card[data-status="pre"] {
  --accent: #1f6fbf;
}

.production-card::before {
  content: "";
  position: absolute;
  inset: auto 16px 0;
  height: 2px;
  background: var(--accent);
  opacity: 0.24;
  transition: opacity 180ms ease, box-shadow 180ms ease;
}

.production-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.36;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 18% 14%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 17rem);
  background-size: 44px 44px, 44px 44px, auto;
  pointer-events: none;
}

.production-card > * {
  position: relative;
  z-index: 1;
}

.production-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 62%, rgba(255, 255, 255, 0.18));
  background:
    linear-gradient(180deg, rgba(3, 4, 5, 0.14), rgba(3, 4, 5, 0.82)),
    linear-gradient(90deg, rgba(3, 4, 5, 0.66), rgba(3, 4, 5, 0.08)),
    var(--card-image, linear-gradient(145deg, #12151b, #050607)) center / cover no-repeat,
    radial-gradient(circle at 20% 0%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 18rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(145deg, rgba(17, 19, 24, 0.96), rgba(7, 8, 10, 0.9));
  background-size: auto, auto, cover, auto, 42px 42px, 42px 42px, auto;
  box-shadow: 0 0 38px color-mix(in srgb, var(--accent) 16%, transparent);
}

.production-card:hover::before {
  opacity: 0.92;
  box-shadow: 0 0 18px color-mix(in srgb, var(--accent) 46%, transparent);
}

.production-card.is-flip-card {
  padding: 0;
  overflow: visible;
  border: 0;
  background: none;
  cursor: pointer;
  perspective: 1200px;
}

.production-card.is-flip-card::before,
.production-card.is-flip-card::after {
  display: none;
}

.production-card.is-flip-card:hover {
  border-color: transparent;
  background: none;
  box-shadow: none;
}

.production-card.is-flip-card:focus-visible {
  outline: 1px solid color-mix(in srgb, var(--accent) 76%, rgba(255, 255, 255, 0.12));
  outline-offset: 5px;
}

.production-card__inner {
  position: relative;
  min-height: inherit;
  transform-style: preserve-3d;
  transition: transform 620ms cubic-bezier(0.2, 0.68, 0.18, 1);
}

.production-card.is-flip-card:hover .production-card__inner,
.production-card.is-flip-card:focus-visible .production-card__inner,
.production-card.is-flip-card.is-flipped .production-card__inner {
  transform: rotateY(180deg);
}

.production-card__face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(3, 4, 5, 0.26), rgba(3, 4, 5, 0.88)),
    linear-gradient(90deg, rgba(3, 4, 5, 0.74), rgba(3, 4, 5, 0.18)),
    var(--card-image, linear-gradient(145deg, #111318, #050607)) center / cover no-repeat,
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(145deg, rgba(17, 19, 24, 0.9), rgba(7, 8, 10, 0.88));
  background-size: auto, auto, cover, 42px 42px, 42px 42px, auto;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.production-card__face::before {
  content: "";
  position: absolute;
  inset: auto 16px 0;
  height: 2px;
  background: var(--accent);
  opacity: 0.24;
  transition: opacity 180ms ease, box-shadow 180ms ease;
}

.production-card__face::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.36;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 18% 14%, color-mix(in srgb, var(--accent) 16%, transparent), transparent 17rem);
  background-size: 44px 44px, 44px 44px, auto;
  pointer-events: none;
}

.production-card__face > * {
  position: relative;
  z-index: 1;
}

.production-card__front {
  transform: rotateY(0deg);
}

.production-card__back {
  justify-content: flex-end;
  background:
    linear-gradient(145deg, rgba(13, 16, 22, 0.98), rgba(4, 5, 7, 0.98)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  transform: rotateY(180deg);
}

.production-card__back::after {
  opacity: 0.82;
  background:
    linear-gradient(180deg, rgba(3, 4, 5, 0.2), rgba(3, 4, 5, 0.9)),
    radial-gradient(circle at 26% 20%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 14rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
}

.production-card__back-image {
  position: absolute;
  inset: -8%;
  z-index: 0;
  background:
    var(--card-image, linear-gradient(135deg, rgba(31, 111, 191, 0.2), rgba(185, 31, 45, 0.12) 42%, rgba(5, 6, 8, 0.94))) center / cover no-repeat;
  opacity: 0.88;
  transform: scaleX(-1) scale(1.08);
  filter: blur(3px) saturate(0.75) brightness(0.45);
}

.production-card__back-copy {
  display: grid;
  gap: 12px;
  max-width: 100%;
}

.production-card .production-card__back h3 {
  margin: 0;
  font-size: clamp(1.8rem, 2.5vw, 2.72rem);
}

.production-card .production-card__back p {
  max-width: 28ch;
  color: rgba(232, 228, 220, 0.84);
  font-size: clamp(0.82rem, 0.95vw, 0.95rem);
  font-weight: 700;
  line-height: 1.42;
  text-transform: none;
}

.production-card.is-flip-card:hover .production-card__face {
  border-color: color-mix(in srgb, var(--accent) 62%, rgba(255, 255, 255, 0.18));
  box-shadow: 0 0 38px color-mix(in srgb, var(--accent) 16%, transparent);
}

.production-card.is-flip-card:hover .production-card__face::before,
.production-card.is-flip-card.is-flipped .production-card__face::before {
  opacity: 0.92;
  box-shadow: 0 0 18px color-mix(in srgb, var(--accent) 46%, transparent);
}

.status-tag {
  width: fit-content;
  border: 1px solid rgba(232, 228, 220, 0.14);
  padding: 5px 8px;
  color: var(--muted);
  background: rgba(3, 4, 5, 0.38);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.production-card:hover .status-tag {
  border-color: color-mix(in srgb, var(--accent) 78%, rgba(255, 255, 255, 0.1));
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 11%, rgba(3, 4, 5, 0.7));
}

.production-card h3 {
  margin: auto 0 8px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.production-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
}

.production-card small {
  width: fit-content;
  margin-top: 18px;
  color: rgba(232, 228, 220, 0.58);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(232, 228, 220, 0.18);
  transition: color 180ms ease, border-color 180ms ease;
}

.production-card:hover small {
  color: var(--text);
  border-color: var(--accent);
}

.press {
  background:
    radial-gradient(circle at 12% 12%, rgba(185, 31, 45, 0.055), transparent 21rem),
    radial-gradient(circle at 86% 26%, rgba(31, 111, 191, 0.065), transparent 24rem),
    linear-gradient(180deg, #090b0f, #07090c);
}

.press-heading {
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 18px;
}

.press-heading > span {
  width: fit-content;
  border-left: 2px solid var(--red);
  padding-left: 10px;
  color: rgba(232, 228, 220, 0.68);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.press-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(232, 228, 220, 0.14);
  background:
    linear-gradient(180deg, rgba(25, 28, 34, 0.92), rgba(12, 14, 18, 0.96)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.press-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 228, 220, 0.28);
  background:
    linear-gradient(180deg, rgba(30, 34, 41, 0.96), rgba(13, 15, 20, 0.98)),
    radial-gradient(circle at 16% 0%, rgba(185, 31, 45, 0.12), transparent 14rem),
    radial-gradient(circle at 88% 100%, rgba(31, 111, 191, 0.12), transparent 13rem);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.34);
}

.press-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid rgba(232, 228, 220, 0.1);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    #101319;
  background-size: 36px 36px, 36px 36px, auto;
}

.press-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 34%, rgba(3, 4, 5, 0.34));
  pointer-events: none;
}

.press-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04) brightness(0.78);
  transition: transform 220ms ease, filter 220ms ease;
}

.press-card:hover .press-card-media img {
  transform: scale(1.035);
  filter: saturate(0.9) contrast(1.06) brightness(0.86);
}

.press-card-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 18px;
}

.press-card-copy span {
  width: fit-content;
  border-bottom: 1px solid rgba(185, 31, 45, 0.72);
  padding-bottom: 4px;
  color: rgba(232, 228, 220, 0.64);
  font-size: 0.64rem;
  font-weight: 900;
  text-transform: uppercase;
}

.press-card-copy h3 {
  margin: 14px 0 10px;
  color: #f1ede5;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.22;
}

.press-card-copy p {
  margin: 0;
  color: rgba(232, 228, 220, 0.64);
  font-size: 0.9rem;
}

.press-card-copy small {
  width: fit-content;
  margin-top: auto;
  padding-top: 20px;
  color: var(--text);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(31, 111, 191, 0.78);
}

.development {
  background:
    radial-gradient(circle at 18% 18%, rgba(185, 31, 45, 0.055), transparent 22rem),
    linear-gradient(180deg, #08090b, #050607);
}

.development-head {
  max-width: 820px;
  margin-bottom: 0;
}

.development-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.42fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: stretch;
}

.development-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.development-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
}

.development-card:hover,
.team-slot:hover,
.person-card:hover {
  transform: translateY(-4px);
  border-color: rgba(43, 127, 211, 0.44);
  box-shadow: 0 0 42px rgba(43, 127, 211, 0.11);
}

.development-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 3.2rem);
  font-weight: 400;
  text-transform: uppercase;
}

.developing-line {
  margin: 16px 0 0;
  padding: 16px 18px;
  border-left: 2px solid var(--red);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--text);
  background: rgba(185, 31, 45, 0.045);
  font-weight: 800;
}

.development-cta {
  --accent: #39b86a;
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid rgba(57, 184, 106, 0.2);
  padding: clamp(18px, 2vw, 26px);
  background:
    linear-gradient(135deg, rgba(57, 184, 106, 0.12), transparent 42%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(145deg, rgba(17, 19, 24, 0.88), rgba(4, 6, 7, 0.96));
  background-size: auto, 42px 42px, 42px 42px, auto;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.development-cta::before {
  content: "";
  position: absolute;
  inset: auto 18px 18px auto;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(57, 184, 106, 0.22);
  border-radius: 50%;
  box-shadow: inset 0 0 28px rgba(57, 184, 106, 0.08);
  pointer-events: none;
}

.development-cta span,
.development-cta small {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

.development-cta h3 {
  max-width: 320px;
  margin: auto 0 10px;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.6vw, 4.8rem);
  font-weight: 400;
  line-height: 0.92;
  text-transform: uppercase;
}

.development-cta p {
  max-width: 330px;
  margin: 0 0 22px;
  color: #b9b3aa;
}

.development-cta strong {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  opacity: 0.58;
  text-transform: uppercase;
  transition: opacity 180ms ease;
}

.development-cta small {
  width: fit-content;
  margin-top: 18px;
  border-bottom: 1px solid rgba(57, 184, 106, 0.34);
}

.development-cta:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 184, 106, 0.56);
  background:
    radial-gradient(circle at 22% 16%, rgba(57, 184, 106, 0.18), transparent 20rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(145deg, rgba(17, 19, 24, 0.95), rgba(4, 6, 7, 0.96));
  background-size: auto, 42px 42px, 42px 42px, auto;
  box-shadow: 0 0 44px rgba(57, 184, 106, 0.12);
}

.development-cta:hover strong {
  opacity: 1;
}

.who {
  background:
    radial-gradient(circle at 84% 22%, rgba(43, 127, 211, 0.055), transparent 24rem),
    linear-gradient(180deg, #050607, #090b0f);
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.who-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    linear-gradient(145deg, rgba(17, 19, 24, 0.9), rgba(7, 8, 10, 0.9));
  background-size: 46px 46px, 46px 46px, auto;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.who-card:hover {
  transform: translateY(-4px);
  border-color: rgba(185, 31, 45, 0.4);
  box-shadow: 0 0 42px rgba(185, 31, 45, 0.1);
}

.who-card-media {
  position: relative;
  height: clamp(180px, 18vw, 240px);
  flex: 0 0 auto;
  overflow: hidden;
  background: #050607;
}

.who-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(3, 4, 5, 0.48)),
    radial-gradient(circle at 50% 30%, transparent 0%, rgba(3, 4, 5, 0.24) 76%);
  pointer-events: none;
}

.who-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.14) contrast(1.04) brightness(0.84);
}

.who-card:nth-child(1) .who-card-media img {
  object-position: center top;
}

.who-card-media.nick-media::after {
  background:
    linear-gradient(180deg, rgba(3, 4, 5, 0.08), rgba(3, 4, 5, 0.3) 54%, rgba(3, 4, 5, 0.68)),
    radial-gradient(circle at 50% 24%, transparent 0%, rgba(3, 4, 5, 0.28) 74%);
}

.who-card-media.nick-media img {
  object-position: center 16%;
  filter: grayscale(0.2) saturate(0.84) contrast(1.03) brightness(0.76);
}

.avatar-media {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(232, 228, 220, 0.07), transparent 6rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px),
    #050607;
  background-size: auto, 36px 36px, 36px 36px, auto;
}

.avatar-placeholder {
  position: relative;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(232, 228, 220, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, rgba(232, 228, 220, 0.16) 0 16px, transparent 17px),
    linear-gradient(180deg, transparent 0 50%, rgba(232, 228, 220, 0.12) 51% 100%);
  box-shadow: inset 0 0 28px rgba(232, 228, 220, 0.04), 0 0 40px rgba(0, 0, 0, 0.38);
}

.avatar-placeholder span {
  position: absolute;
  left: 50%;
  bottom: 15px;
  width: 46px;
  height: 24px;
  border: 1px solid rgba(232, 228, 220, 0.14);
  border-radius: 999px 999px 18px 18px;
  transform: translateX(-50%);
  background: rgba(232, 228, 220, 0.08);
}

.who-card-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  padding: clamp(18px, 2vw, 24px);
}

.who-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.35vw, 2.7rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.profile-role {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.who-card-copy p:not(.profile-role) {
  margin-bottom: 12px;
  color: #b9b3aa;
  font-size: 0.95rem;
  line-height: 1.55;
}

.who-card-copy a {
  width: fit-content;
  margin-top: auto;
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 1px solid var(--red);
}

.team-slot {
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
}

.team-slot span {
  color: var(--muted);
}

.contact {
  padding-bottom: 64px;
  background:
    radial-gradient(circle at 82% 44%, rgba(185, 31, 45, 0.07), transparent 22rem),
    linear-gradient(180deg, #070809, #030405);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(220px, 0.34fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: clamp(34px, 6vw, 66px);
}

.contact-grid h2 {
  max-width: 920px;
  font-size: clamp(3rem, 6.8vw, 7rem);
}

.contact-logo {
  justify-self: end;
  width: min(100%, 330px);
  opacity: 0.78;
  background: transparent;
}

.contact-logo img {
  width: 100%;
  background: transparent;
  filter: grayscale(0.03) brightness(0.94) contrast(1.04);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 26px var(--x) 34px;
  border-top: 1px solid var(--line);
  background: #030405;
  color: rgba(232, 228, 220, 0.56);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer strong {
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  position: relative;
  transition: color 180ms ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

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

  .hero-carousel img {
    animation: none !important;
    opacity: 0;
  }

  .hero-carousel img:first-child {
    opacity: 0.62;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .site-loader,
  .site-loader__inner,
  .site-loader__mark,
  .site-loader__text,
  .site-loader__subtext {
    animation-duration: 700ms !important;
    animation-timing-function: ease !important;
  }

  .site-loader {
    transition-duration: 500ms !important;
  }
}

@media (max-width: 1120px) {
  .section-inner {
    padding-right: var(--x);
  }

  .section-nav {
    right: 16px;
  }

  .section-nav a {
    font-size: 0;
    gap: 0;
  }

  .full-bleed-inner {
    padding-right: calc(var(--x) + 38px);
  }

  .section-nav a span {
    width: 8px;
    height: 8px;
  }

  .section-nav::before {
    right: 3px;
  }

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

@media (max-width: 900px) {
  :root {
    --header-h: 70px;
  }

  .site-header {
    gap: 14px;
  }

  .header-location {
    gap: 12px;
    font-size: 0.58rem;
  }

  .menu-toggle {
    display: block;
  }

  .section-nav {
    top: var(--header-h);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: rgba(3, 4, 5, 0.94);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .section-nav.is-scrolled {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
  }

  .section-nav:not(.is-open) {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
  }

  .full-bleed-inner {
    padding-right: var(--x);
  }

  .section-nav::before {
    display: none;
  }

  .section-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .section-nav a {
    display: flex;
    width: 100%;
    gap: 10px;
    padding: 13px 8px;
    border-bottom: 1px solid var(--line-soft);
    font-size: 0.72rem;
    text-align: left;
  }

  .section-nav a:last-child {
    border-bottom: 0;
  }

  .section-nav a:hover,
  .section-nav a.is-active {
    transform: none;
  }

  .hero-grid,
  .editorial-grid,
  .about-layout,
  .section-heading,
  .development-layout,
  .who-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 100svh;
    padding-bottom: 76px;
  }

  .hero-details {
    right: var(--x);
  }

  .section-rail {
    display: none;
  }

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

  .about-team-grid .featured {
    grid-column: span 1;
  }

  .development-grid,
  .team-grid,
  .press-grid,
  .production-grid {
    grid-template-columns: 1fr;
  }

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

  .who-card-media {
    height: 220px;
  }

  .contact-logo {
    justify-self: start;
    width: min(100%, 260px);
  }

  .work-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .person-card.featured {
    grid-template-columns: 1fr;
  }

  .person-card-media,
  .person-card-media img {
    min-height: 220px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  :root {
    --x: 22px;
  }

  .site-loader__mark {
    width: 120px;
  }

  .brand {
    width: 118px;
    min-width: 108px;
    gap: 8px;
    font-size: 0.62rem;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .brand-text span:first-child {
    font-size: 0.66rem;
  }

  .brand-text span:last-child {
    font-size: 0.48rem;
  }

  .header-location {
    display: grid;
    gap: 1px;
    justify-items: end;
    text-align: right;
    max-width: 126px;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.54rem;
  }

  .header-location span:last-child {
    display: none;
  }

  h1 {
    font-size: clamp(2.65rem, 10.6vw, 3.35rem);
    line-height: 0.98;
  }

  h2,
  .contact-grid h2 {
    font-size: clamp(2.35rem, 11vw, 3.9rem);
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
    padding-top: calc(var(--header-h) + 20px);
    padding-bottom: 52px;
  }

  .hero-grid {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .hero-empty {
    display: none;
  }

  .hero-carousel {
    position: relative;
    inset: auto;
    z-index: 2;
    width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 0;
    margin: 0 0 4px;
    opacity: 1;
    background: #030405;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .hero-carousel::before {
    background:
      linear-gradient(180deg, rgba(3, 4, 5, 0.3) 0%, transparent 35%, rgba(3, 4, 5, 0.72) 100%),
      linear-gradient(90deg, rgba(3, 4, 5, 0.28), transparent 22%, transparent 78%, rgba(3, 4, 5, 0.34));
  }

  .hero-carousel::after {
    opacity: 0.18;
  }

  .hero-carousel img {
    top: 0;
    right: auto;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    transform: none;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-watermark {
    display: none;
  }

  .contact-grid {
    justify-items: center;
    text-align: center;
  }

  .contact-grid p {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-grid .button {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-logo {
    justify-self: center;
    width: min(70vw, 210px);
    margin: 6px auto 0;
  }

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

  .hero-details {
    display: none;
  }

  .person-card,
  .team-slot,
  .development-card {
    min-height: 150px;
  }

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

  .who-card-media {
    height: clamp(210px, 62vw, 280px);
  }
}

@media (max-width: 380px) {
  .site-header {
    gap: 10px;
  }

  .brand {
    width: 100px;
    min-width: 96px;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .header-location {
    max-width: 92px;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.48rem;
  }
}
