:root {
  --bg: #030405;
  --bg-2: #070a0d;
  --panel: #0b0f12;
  --panel-2: #10151a;
  --gold: #ffc400;
  --gold-2: #e7ad00;
  --text: #f5f5f0;
  --muted: #b7b8b2;
  --dim: #7e827e;
  --line: rgba(255, 255, 255, 0.22);
  --line-soft: rgba(255, 255, 255, 0.12);
  --header-h: 72px;
  --max: 1420px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 196, 0, 0.06), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: "Arial Narrow", "Roboto Condensed", Impact, Haettenschweiler, "Franklin Gothic Condensed", sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

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

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

p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

h1,
h2,
h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.2rem, 6.3vw, 7.2rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 4rem);
  line-height: 0.95;
}

h3 {
  font-size: clamp(1.05rem, 1.25vw, 1.45rem);
  line-height: 1.02;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1000;
  width: 0;
  height: 3px;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(255, 196, 0, 0.75);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  width: 100vw;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 46px);
  padding: 0 clamp(22px, 4vw, 58px);
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid var(--line-soft);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 66px;
  height: 66px;
}

.brand-link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.2vw, 38px);
}

.primary-nav a,
.header-cta,
.button,
.mini-head a,
.service-strip a,
.site-footer a,
.subscribe-form button {
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  padding: 28px 0;
  color: #fff;
}

.primary-nav a::after {
  position: absolute;
  left: 0;
  bottom: 19px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #050505;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.header-cta:hover,
.button:hover {
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}

.button--outline {
  background: rgba(0, 0, 0, 0.26);
  border-color: rgba(255, 255, 255, 0.74);
  color: #fff;
}

.button--outline:hover {
  color: #050505;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

@media (min-width: 1181px) {
  .menu-toggle {
    display: none;
  }
}

.hero-grid {
  position: relative;
  min-height: 565px;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(520px, 1.18fr);
  padding-top: var(--header-h);
  border-bottom: 1px solid var(--line);
  background: #050606;
  overflow: hidden;
  isolation: isolate;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(52px, 7vw, 94px) clamp(28px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.93), rgba(0, 0, 0, 0.78) 62%, rgba(0, 0, 0, 0.28) 100%);
}

.hero-copy h1 span {
  display: block;
}

.hero-copy h1 span:last-child {
  color: var(--gold);
}

.hero-copy p {
  max-width: 560px;
  margin: 24px 0 28px;
  color: #fff;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-media {
  position: absolute;
  inset: var(--header-h) 0 0;
  z-index: 0;
  min-height: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  z-index: 5;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.56) 29%, rgba(0, 0, 0, 0.2) 53%, rgba(0, 0, 0, 0.1) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.42) 14%, transparent 34%);
  pointer-events: none;
}

.hero-video-panel,
.hero-image-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
}

.hero-video-panel {
  right: 0;
  z-index: 2;
  width: 57%;
  opacity: 0.9;
  background: #050505;
  filter: saturate(1.08) contrast(1.08);
  object-fit: cover;
  object-position: right center;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-image-panel {
  left: 0;
  z-index: 1;
  width: 70%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0.74;
}

.hero-slice {
  position: absolute;
  top: 0;
  left: 43%;
  z-index: 6;
  width: 8.7%;
  height: 100%;
  background:
    linear-gradient(90deg, transparent 0 16%, rgba(255, 255, 255, 0.9) 24%, transparent 34%),
    linear-gradient(180deg, #fff2a6 0%, var(--gold) 22%, #f0aa00 55%, #fff0a0 78%, var(--gold) 100%);
  clip-path: polygon(86% 0, 100% 0, 14% 100%, 0 100%);
  filter:
    drop-shadow(0 0 10px rgba(255, 196, 0, 0.95))
    drop-shadow(0 0 30px rgba(255, 196, 0, 0.48));
  pointer-events: none;
  transform-origin: center;
  animation: heroSlicePulse 3.6s ease-in-out infinite;
}

.hero-slice::before,
.hero-slice::after {
  position: absolute;
  inset: -12% 20%;
  content: "";
  pointer-events: none;
}

.hero-slice::before {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.95) 45%, transparent 70%);
  filter: blur(2px);
  opacity: 0.82;
  transform: translateY(-120%);
  animation: heroSliceScan 3.2s var(--ease) infinite;
}

.hero-slice::after {
  inset: 0 -34%;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 196, 0, 0.56) 42%, rgba(255, 255, 255, 0.46) 50%, rgba(255, 196, 0, 0.42) 58%, transparent 100%);
  filter: blur(14px);
  opacity: 0.72;
  mix-blend-mode: screen;
  animation: heroSliceGlow 4.8s ease-in-out infinite;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-bottom: 1px solid var(--line);
  background: #080b0e;
}

.service-strip a {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px;
  border-right: 1px solid var(--line-soft);
  color: #fff;
  text-align: center;
}

.service-strip span {
  color: var(--gold);
  font-size: 1rem;
}

.grid-band {
  width: 100%;
  border-bottom: 1px solid var(--line);
  background: rgba(4, 7, 9, 0.98);
}

.about-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.62fr);
  align-items: start;
  min-height: 235svh;
}

.band-copy,
.services-preview,
.work-series,
.brand-community,
.page-hero,
.page-content {
  padding: clamp(30px, 4vw, 56px);
}

.section-label {
  margin-bottom: 12px;
  color: var(--gold);
  font-family: "Arial Narrow", Impact, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.two-col-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 5vw, 72px);
  margin-top: 24px;
}

.about-band .band-copy {
  position: sticky;
  top: calc(var(--header-h) + 36px);
  align-self: center;
}

.about-band .band-copy p {
  font-size: clamp(1.05rem, 1.02vw, 1.18rem);
  line-height: 1.55;
}

.about-collage {
  position: sticky;
  top: calc(var(--header-h) + 22px);
  align-self: start;
  min-width: 0;
  height: calc(100svh - var(--header-h) - 44px);
  min-height: 0;
  max-height: 760px;
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 196, 0, 0.11), transparent 18rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028), transparent 48%),
    #020303;
  overflow: hidden;
  perspective: 1200px;
}

.about-collage.is-scroll-pinned {
  position: fixed;
  top: var(--about-pin-top, calc(var(--header-h) + 22px));
  left: var(--about-pin-left, auto);
  z-index: 4;
  width: var(--about-pin-width, 40vw);
  height: var(--about-pin-height, calc(100svh - var(--header-h) - 44px));
}

.about-frame {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: var(--about-z, 1);
  width: min(84%, 560px);
  height: min(66%, 430px);
  margin: 0;
  background: #050607;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.68);
  overflow: hidden;
  isolation: isolate;
  opacity: var(--about-opacity, 0);
  transform-origin: center;
  transform:
    translate(-50%, -50%)
    translate3d(0, var(--about-y, 42%), var(--about-zdepth, 0))
    scale(var(--about-scale, 0.9));
  transition: box-shadow 180ms ease;
}

.about-frame::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.78)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 52%);
  pointer-events: none;
}

.about-frame img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  filter:
    blur(var(--about-blur, 8px))
    saturate(var(--about-saturation, 0.84))
    contrast(var(--about-contrast, 0.96))
    brightness(var(--about-brightness, 0.72));
  transform: scale(var(--about-img-scale, 1.08));
  transition: object-position 280ms var(--ease);
}

.about-frame:nth-child(1) {
  --about-opacity: 1;
  --about-y: 0%;
  --about-scale: 1;
  --about-blur: 0px;
  --about-saturation: 1.08;
  --about-contrast: 1.08;
  --about-brightness: 0.98;
  --about-img-scale: 1;
  --about-z: 3;
}

.about-frame:nth-child(2) {
  --about-z: 2;
}

.about-frame:nth-child(3) {
  --about-z: 1;
}

.about-frame.is-active {
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.72);
}

.about-frame:nth-child(1) img {
  object-position: center 42%;
}

.about-frame:nth-child(2) img {
  object-position: center 44%;
}

.about-frame:nth-child(3) img {
  object-position: center 48%;
}

.about-band--simple {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.36fr);
  align-items: stretch;
  min-height: 0;
  padding-block: 0;
}

.about-band--simple .band-copy {
  position: relative;
  top: auto;
  align-self: center;
}

.about-band--simple .about-collage {
  position: relative;
  top: auto;
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 0;
  height: clamp(430px, calc(100svh - var(--header-h)), 610px);
  max-height: none;
  min-height: 0;
  padding: 0;
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at 70% 16%, rgba(255, 196, 0, 0.12), transparent 15rem),
    #020303;
  perspective: none;
}

.about-band--simple .about-frame {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  opacity: 1;
  transform: none;
  border-width: 0 0 1px;
  box-shadow: none;
}

.about-band--simple .about-frame:nth-child(2) {
  width: 100%;
  justify-self: stretch;
  margin-top: 0;
}

.about-band--simple .about-frame:nth-child(3) {
  width: 100%;
  margin-top: 0;
  border-bottom: 0;
}

.about-band--simple .about-frame img {
  height: 100%;
  filter: saturate(1.08) contrast(1.08) brightness(0.96);
  transform: none;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--line);
}

.service-cards article {
  min-height: 220px;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  text-align: center;
  transition: background 180ms ease, transform 180ms ease;
}

.service-cards article:last-child {
  border-right: 0;
}

.service-cards article:hover {
  background: rgba(255, 196, 0, 0.08);
  transform: translateY(-4px);
}

.service-cards .icon {
  display: block;
  margin-bottom: 20px;
  color: #fff;
  font-size: 2.15rem;
}

.service-cards h3 {
  min-height: 44px;
  margin-bottom: 12px;
}

.service-cards p {
  font-size: 0.82rem;
  line-height: 1.45;
}

.split-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.split-band > * + * {
  border-left: 1px solid var(--line);
}

.mini-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.mini-head .section-label {
  margin: 0;
}

.mini-head a {
  color: #fff;
}

.work-grid,
.series-grid,
.page-card-grid {
  display: grid;
  gap: 10px;
}

.work-grid {
  grid-template-columns: repeat(6, 1fr);
}

.work-series {
  grid-template-columns: minmax(0, 1.48fr) minmax(0, 0.76fr);
  gap: clamp(22px, 2.2vw, 38px);
  padding-top: clamp(26px, 3vw, 44px);
  padding-bottom: clamp(28px, 3.2vw, 48px);
}

.work-series.split-band > * + * {
  border-left: 0;
}

.work-series > div {
  min-width: 0;
}

.work-series .mini-head {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(42px, 1fr) auto;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.work-series .mini-head::after {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.24);
}

.work-series .mini-head a {
  grid-column: 3;
  color: #fff;
  font-size: 0.68rem;
}

.work-series .mini-head .section-label {
  font-size: clamp(0.95rem, 1.15vw, 1.35rem);
}

.work-series .work-grid,
.work-series .series-grid {
  gap: clamp(10px, 0.9vw, 16px);
}

.work-series .work-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

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

.work-grid article,
.series-grid article,
.page-card-grid article {
  border: 1px solid var(--line-soft);
  background: #07090b;
  overflow: hidden;
}

.work-grid img,
.work-grid video,
.series-grid img,
.series-grid video {
  width: 100%;
  aspect-ratio: 0.76;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08);
  transition: transform 220ms ease;
}

.work-series .series-grid img,
.work-series .series-grid video {
  aspect-ratio: 0.86;
}

.work-grid article:hover img,
.work-grid article:hover video,
.series-grid article:hover img,
.series-grid article:hover video {
  transform: scale(1.04);
}

.work-grid h3,
.series-grid h3 {
  margin: 10px 8px 3px;
  font-size: clamp(0.72rem, 0.78vw, 0.94rem);
}

.work-grid p,
.series-grid p {
  margin: 0 8px 10px;
  color: #fff;
  font-size: clamp(0.66rem, 0.62vw, 0.78rem);
  line-height: 1.32;
  text-transform: uppercase;
}

.work-series .series-grid h3 {
  text-align: center;
}

.work-series .series-grid p {
  text-align: center;
}

.client-panel,
.community-panel {
  min-height: 250px;
  padding: clamp(30px, 4vw, 52px);
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}

.client-logos img {
  width: 100%;
  max-height: 74px;
  object-fit: contain;
}

.client-logos .client-logo--photo,
.client-logos .client-logo--wide {
  width: 100%;
  height: 74px;
  padding: 8px;
  background: transparent;
  object-fit: contain;
}

.client-logos .client-logo--photo {
  padding: 10px 14px;
}

.client-logos .client-logo--wide {
  padding: 4px 8px;
}

.client-logos span {
  color: #fff;
  font-size: clamp(1rem, 1.5vw, 1.7rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.community-panel {
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.38)),
    url("assets/NinetyStudios_Community.png") center/cover;
}

.brand-community--single {
  display: block;
}

.brand-community--single .community-panel {
  min-height: 360px;
}

.brand-community--single .community-panel > div {
  max-width: 760px;
}

.community-panel p:not(.section-label) {
  max-width: 560px;
  color: #fff;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 20px 0 24px;
}

.social-row a {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.community-icons {
  justify-items: center;
}

.social-row--icons {
  gap: 12px;
}

.social-icon {
  position: relative;
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: none;
  background: transparent;
  color: #fff;
  transition: opacity 180ms ease, transform 180ms ease;
}

.community-icons .social-icon {
  width: clamp(52px, 5vw, 74px);
  height: clamp(52px, 5vw, 74px);
}

.social-icon:hover,
.social-icon:focus-visible {
  opacity: 0.75;
  transform: translateY(-2px);
}

.social-icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.community-icons .social-icon img {
  width: clamp(27px, 2.4vw, 34px);
  height: clamp(27px, 2.4vw, 34px);
}

.social-icon--x img {
  width: 21px;
  height: 21px;
}

.social-icon::before,
.social-icon::after {
  content: "";
  display: block;
}

.social-icon--updates::before {
  width: 24px;
  height: 24px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.social-icon--updates::after {
  position: absolute;
  width: 11px;
  height: 8px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: translate(2px, -1px) rotate(-45deg);
}

.final-cta {
  display: grid;
  justify-items: center;
  padding: clamp(42px, 5vw, 70px) 24px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.final-cta p {
  max-width: 720px;
  margin: 12px 0 22px;
  color: #fff;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1.15fr;
  gap: clamp(26px, 4vw, 64px);
  padding: 34px clamp(28px, 5vw, 78px) 46px;
  background: #050607;
  border-top: 1px solid var(--line-soft);
}

.site-footer img {
  width: 112px;
  margin-bottom: 18px;
}

.site-footer h2,
.subscribe-form label {
  display: block;
  margin: 0 0 14px;
  color: #fff;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer a,
.site-footer p {
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  line-height: 1.55;
  text-transform: none;
}

.subscribe-form {
  margin-top: 20px;
  padding: 18px;
  border: 1px solid var(--line);
}

.subscribe-form div {
  display: grid;
  grid-template-columns: 1fr auto;
}

.subscribe-form input {
  min-width: 0;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--line-soft);
  background: #080a0d;
  color: #fff;
}

.subscribe-form button {
  border: 0;
  background: var(--gold);
  color: #050505;
  padding: 0 16px;
}

.copyright {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 8px;
  color: var(--dim) !important;
}

.page-main {
  padding-top: var(--header-h);
}

.page-hero {
  position: relative;
  min-height: 360px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.6fr);
  align-items: end;
  gap: 42px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.4)),
    url("assets/PRI09890-2.jpg") center/cover;
  overflow: hidden;
  isolation: isolate;
}

.work-hero,
.about-hero {
  background-position: center 31%;
}

.series-hero {
  background: #030405;
}

.page-hero > *:not(.page-hero-video) {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.page-hero-video {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: min(74vw, 1160px);
  height: 100%;
  object-fit: cover;
  object-position: 76% center;
  background: #030405;
  filter: saturate(1.08) contrast(1.08);
}

.services-hero {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.36));
}

.services-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.72) 34%, rgba(0, 0, 0, 0.2) 68%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 46%);
  pointer-events: none;
}

.services-hero::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: #030405;
  pointer-events: none;
}

.series-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.64) 38%, rgba(0, 0, 0, 0.18) 72%, rgba(0, 0, 0, 0.1)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.74), transparent 50%);
  pointer-events: none;
}

.series-hero-video {
  inset: 0;
  width: 100%;
  object-fit: cover;
  object-position: 74% center;
}

.page-hero h1 {
  max-width: 980px;
}

.page-hero p {
  color: #fff;
}

.page-content {
  border-bottom: 1px solid var(--line);
  padding: clamp(22px, 3vw, 42px) clamp(30px, 4vw, 56px);
}

.page-card-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.page-card-grid article {
  position: relative;
  min-height: 0;
  padding: 14px;
}

.page-card-grid article > * {
  position: relative;
  z-index: 1;
}

.page-card-grid #webtoons::before,
.page-card-grid #ip::before {
  position: absolute;
  inset: 14px 14px auto;
  z-index: 0;
  height: min(190px, calc((100vw - 160px) / 3 / 2.35));
  content: "";
  background: var(--card-bg) center / cover;
  filter: blur(12px) saturate(1.2) brightness(0.45);
  transform: scale(1.16);
  transform-origin: center;
  opacity: 0.9;
}

.page-card-grid #webtoons {
  --card-bg: url("assets/S.O.S._Coming_SOON.png");
}

.page-card-grid #ip {
  --card-bg: url("assets/Edge_Zero_Poster.png");
}

.page-card-grid img,
.page-card-grid video {
  width: 100%;
  aspect-ratio: 2.35;
  max-height: 190px;
  object-fit: cover;
  margin-bottom: 12px;
}

.page-card-grid .project-card--brand img {
  object-position: center 44%;
}

.page-card-grid .project-card--athlete video {
  object-position: center 34%;
}

.page-card-grid .project-card--event video {
  object-position: center 38%;
}

.page-card-grid .project-card--commercial video {
  object-position: center 44%;
}

.page-card-grid .project-card--personal img {
  object-position: center 35%;
}

.page-card-grid .project-card--photo img {
  object-position: center 34%;
}

.page-card-grid #multimedia img {
  object-position: center 42%;
}

.page-card-grid #photography img {
  object-position: center 24%;
}

.page-card-grid #animation img {
  object-position: center 48%;
}

.page-card-grid #webtoons img,
.page-card-grid #ip img {
  object-fit: contain;
  object-position: center;
  background: transparent;
  padding: 8px;
}

.page-card-grid #ip img {
  transform: scale(1.1);
}

.page-card-grid .series-card img {
  position: relative;
  z-index: 1;
  aspect-ratio: 1.42;
  max-height: 245px;
  padding: 12px;
  object-fit: contain;
  object-position: center;
  background: transparent;
}

.page-card-grid .series-card::before {
  position: absolute;
  inset: 14px 14px auto;
  z-index: 0;
  height: min(245px, calc((100vw - 160px) / 3 / 1.42));
  content: "";
  background: var(--series-bg) center / cover;
  filter: blur(14px) saturate(1.22) brightness(0.42);
  transform: scale(1.14);
  transform-origin: center;
  opacity: 0.95;
}

.page-card-grid .series-card--edge {
  --series-bg: url("assets/Edge_Zero_Poster.png");
}

.page-card-grid .series-card--sovereign {
  --series-bg: url("assets/Sins_Of_Sovereign_-G.O.S._Coming_Soon.png");
}

.page-card-grid .series-card--brothers {
  --series-bg: url("assets/Two_Brothers_Coming_Soon.png");
}

.page-card-grid .series-card--edge img {
  padding: 4px;
  transform: scale(1.08);
}

.page-card-grid h3 {
  margin-bottom: 6px;
  color: #fff;
}

.page-card-grid p {
  font-size: 0.84rem;
  line-height: 1.45;
}

.media-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  gap: 28px;
  margin-top: 24px;
  overflow: hidden;
  isolation: isolate;
}

.featured-project-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.featured-project-section > *:not(.featured-project-bg) {
  position: relative;
  z-index: 1;
}

.featured-project-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.54;
  filter: saturate(1.08) contrast(1.06) brightness(0.76);
}

.featured-project-section::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 3, 4, 0.18), rgba(2, 3, 4, 0.64) 48%, rgba(2, 3, 4, 0.08)),
    linear-gradient(0deg, rgba(2, 3, 4, 0.68), rgba(2, 3, 4, 0.2) 48%, rgba(2, 3, 4, 0.58));
  pointer-events: none;
}

.media-feature--compact {
  max-width: min(1180px, 72vw);
  grid-template-columns: auto 1fr;
}

.media-feature video,
.media-feature img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(300px, 38vw, 520px);
  object-fit: cover;
  border: 1px solid var(--line);
}

.media-feature .media-feature-bg {
  position: absolute;
  inset: -20px calc((100vw - min(1180px, 72vw)) / -2) -20px -56px;
  z-index: -1;
  width: auto;
  height: 100%;
  border: 0;
  object-fit: cover;
  object-position: center;
  opacity: 0.36;
  filter: saturate(1.1) contrast(1.05) brightness(0.66);
}

.media-feature::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(2, 3, 4, 0.42), rgba(2, 3, 4, 0.8) 44%, rgba(2, 3, 4, 0.52)),
    linear-gradient(0deg, rgba(2, 3, 4, 0.82), transparent 58%);
  pointer-events: none;
}

.media-feature .portrait-video {
  width: 100%;
  max-width: 320px;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center;
  background: #020303;
}

.media-feature .featured-project-player {
  cursor: pointer;
}

.media-feature .featured-project-player:hover,
.media-feature .featured-project-player:focus-visible {
  border-color: rgba(255, 196, 0, 0.78);
}

.media-feature .feature-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid var(--line);
  background: rgba(3, 4, 5, 0.42);
  backdrop-filter: blur(2px);
}

.feature-copy h2 {
  margin-bottom: 18px;
}

.about-page {
  background: #030405;
}

.about-hero {
  min-height: clamp(520px, 72svh, 760px);
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.58fr);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.6) 48%, rgba(0, 0, 0, 0.22)),
    url("assets/PRI09890-2.jpg") center 31% / cover;
}

.about-hero h1 {
  max-width: 920px;
}

.about-hero p {
  max-width: 690px;
  margin: 22px 0 28px;
  font-size: clamp(1.02rem, 1.25vw, 1.22rem);
  line-height: 1.5;
}

.about-hero-media {
  position: relative;
  z-index: 2;
  min-height: 430px;
}

.about-hero-media img {
  position: absolute;
  width: min(74%, 420px);
  height: auto;
  aspect-ratio: 0.76;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #050607;
  object-fit: cover;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.7);
  filter: saturate(1.08) contrast(1.08);
}

.about-hero-media img:first-child {
  top: 0;
  right: 8%;
  z-index: 2;
  object-position: center 38%;
}

.about-hero-media img:last-child {
  right: 32%;
  bottom: 0;
  z-index: 1;
  opacity: 0.82;
  object-position: center 20%;
  transform: translateX(-8%) scale(0.9);
}

.about-band--page {
  background:
    linear-gradient(180deg, rgba(255, 196, 0, 0.04), transparent 24rem),
    #040709;
}

.about-band--page .band-copy h2 {
  max-width: 980px;
}

.about-band--page .about-frame {
  inset: 38% auto auto 50%;
}

.about-proof .section-head {
  align-items: start;
  margin-bottom: 26px;
}

.about-proof .section-head > p {
  max-width: 520px;
  margin-top: 24px;
  color: var(--dim);
  font-size: 1rem;
  line-height: 1.55;
}

.about-service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
}

.about-service-grid article {
  min-height: 210px;
  padding: 24px 20px;
  border-right: 1px solid var(--line-soft);
  background: #07090b;
}

.about-service-grid article:last-child {
  border-right: 0;
}

.about-service-grid h3 {
  margin-bottom: 12px;
  color: #fff;
}

.about-service-grid p {
  font-size: 0.84rem;
  line-height: 1.45;
}

.about-process .page-card-grid article {
  padding: 24px;
}

.about-redesign {
  background:
    radial-gradient(circle at 78% 12%, rgba(255, 196, 0, 0.12), transparent 22rem),
    linear-gradient(180deg, #030405 0%, #07090b 42%, #030405 100%);
}

.about-cinematic {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: end;
  padding: clamp(86px, 9vw, 132px) clamp(22px, 5vw, 76px) clamp(76px, 7vw, 112px);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;
}

.about-cinematic__video,
.about-cinematic__shade {
  position: absolute;
  inset: 0;
}

.about-cinematic__video {
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.52;
  filter: saturate(1.08) contrast(1.14) brightness(0.8);
  transform: scale(1.04);
}

.about-cinematic__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.72) 36%, rgba(0, 0, 0, 0.28) 70%, rgba(0, 0, 0, 0.78)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.96), transparent 48%, rgba(0, 0, 0, 0.38));
}

.about-cinematic__mark {
  position: absolute;
  right: clamp(-38px, -2vw, -10px);
  bottom: clamp(76px, 8vw, 124px);
  z-index: -1;
  color: rgba(255, 196, 0, 0.13);
  font-size: clamp(12rem, 28vw, 30rem);
  font-weight: 900;
  line-height: 0.7;
  transform: skewX(-8deg);
  animation: aboutMarkPulse 5.8s ease-in-out infinite;
}

.about-cinematic__copy {
  max-width: min(960px, 70vw);
}

.about-cinematic h1 {
  max-width: 780px;
  font-size: clamp(4.7rem, 11vw, 12.4rem);
  line-height: 0.78;
}

.about-cinematic h1 span {
  display: block;
}

.about-cinematic h1 span:first-child {
  color: var(--gold);
}

.about-cinematic__copy > p:not(.section-label) {
  max-width: 650px;
  margin: 24px 0 30px;
  color: #fff;
  font-size: clamp(1.03rem, 1.18vw, 1.25rem);
  line-height: 1.52;
}

.about-cinematic__stack {
  position: absolute;
  right: clamp(26px, 5vw, 84px);
  top: 50%;
  width: min(31vw, 430px);
  height: min(56svh, 560px);
  transform: translateY(-45%);
  pointer-events: none;
}

.about-cinematic__stack img {
  position: absolute;
  width: 64%;
  height: 58%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #050607;
  object-fit: cover;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.72);
  filter: saturate(1.06) contrast(1.08);
  animation: aboutFloat 7s var(--ease) infinite alternate;
}

.about-cinematic__stack img:nth-child(1) {
  right: 0;
  top: 0;
  z-index: 3;
  object-position: center 18%;
  transform: rotate(3deg);
}

.about-cinematic__stack img:nth-child(2) {
  left: 0;
  top: 28%;
  z-index: 2;
  animation-delay: -1.8s;
  object-position: center 38%;
  transform: rotate(-5deg);
}

.about-cinematic__stack img:nth-child(3) {
  right: 15%;
  bottom: 0;
  z-index: 1;
  opacity: 0.82;
  animation-delay: -3.1s;
  object-position: center 35%;
  transform: rotate(7deg);
}

.about-ticker {
  position: absolute;
  inset: auto 0 0;
  height: 44px;
  border-top: 1px solid rgba(255, 196, 0, 0.52);
  border-bottom: 1px solid rgba(255, 196, 0, 0.26);
  background: rgba(255, 196, 0, 0.96);
  color: #050505;
  overflow: hidden;
}

.about-ticker div {
  width: max-content;
  display: flex;
  align-items: center;
  height: 100%;
  animation: aboutTicker 28s linear infinite;
}

.about-ticker span {
  padding: 0 28px;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-studio-signal {
  display: grid;
  grid-template-columns: minmax(110px, 0.24fr) minmax(0, 0.88fr) minmax(280px, 0.48fr);
  gap: clamp(22px, 4vw, 64px);
  align-items: end;
  padding: clamp(54px, 7vw, 110px) clamp(22px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
}

.about-signal__number {
  color: var(--gold);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 900;
  line-height: 0.78;
}

.about-studio-signal h2,
.about-section-intro h2,
.about-method h2,
.about-final-cta h2 {
  max-width: 1040px;
}

.about-studio-signal > p {
  color: #fff;
  font-size: clamp(1rem, 1.08vw, 1.16rem);
}

.about-reel-wall {
  display: grid;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  background: #020303;
  overflow: hidden;
}

.about-reel-track {
  width: max-content;
  display: flex;
  gap: 10px;
  animation: aboutReelMove 38s linear infinite;
}

.about-reel-track--two {
  animation-direction: reverse;
  animation-duration: 44s;
}

.about-reel-track img {
  width: clamp(190px, 24vw, 390px);
  height: clamp(150px, 17vw, 270px);
  border: 1px solid var(--line-soft);
  object-fit: cover;
  filter: grayscale(0.12) saturate(1.08) contrast(1.08) brightness(0.86);
  transition: filter 220ms ease, transform 220ms ease;
}

.about-reel-track img:hover {
  filter: grayscale(0) saturate(1.16) contrast(1.08) brightness(1);
  transform: scale(1.015);
}

.about-capabilities {
  scroll-margin-top: var(--header-h);
  padding: clamp(40px, 6vw, 80px) clamp(22px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at bottom right, rgba(255, 196, 0, 0.08), transparent 35rem),
    radial-gradient(circle at bottom left, rgba(255, 196, 0, 0.08), transparent 35rem),
    #030405;
  position: relative;
  overflow: hidden;
}

.capabilities-header {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 50px);
}

.capabilities-section-title {
  font-family: Georgia, "Times New Roman", Times, serif;
  text-transform: none;
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: normal;
  color: #fff;
  margin: 12px 0 16px;
  letter-spacing: -0.01em;
}

.capabilities-title-line {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto;
}

.capability-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: clamp(40px, 6vw, 70px);
  z-index: 2;
  position: relative;
}

.capability-card {
  background: #080a0c;
  border: 1px solid rgba(255, 196, 0, 0.12);
  border-radius: 10px;
  padding: clamp(20px, 2.5vw, 32px) clamp(16px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  min-height: 330px;
  position: relative;
  transition: all 0.4s var(--ease);
}

.capability-card__num {
  font-size: 1.1rem;
  color: var(--gold);
  font-family: Georgia, serif;
  margin-bottom: 18px;
}

.capability-card__icon {
  color: var(--gold);
  margin-bottom: 22px;
}

.capability-card__icon svg {
  width: 34px;
  height: 34px;
  display: block;
}

.capability-card__title {
  color: #fff;
  font-family: Georgia, "Times New Roman", Times, serif;
  text-transform: none;
  font-size: clamp(1.2rem, 1.4vw, 1.6rem);
  font-weight: normal;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.capability-card__copy {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  color: #a4a5a0;
  line-height: 1.52;
  margin: 0 0 24px;
  flex-grow: 1;
}

.capability-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(255, 196, 0, 0.08);
}

.capabilities-footer {
  text-align: center;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.capabilities-footer__headline {
  margin-bottom: 28px;
}

.capabilities-footer__headline h3 {
  font-family: Georgia, "Times New Roman", Times, serif;
  text-transform: none;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: normal;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.capabilities-footer__actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.capabilities-btn--gold {
  background: var(--gold) !important;
  color: #000 !important;
  border: 1.5px solid var(--gold) !important;
  font-weight: 700;
  padding: 14px 28px !important;
  border-radius: 4px !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.08em;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  transition: all 0.3s var(--ease) !important;
}

.capabilities-btn--gold:hover {
  background: #fff !important;
  border-color: #fff !important;
  color: #000 !important;
  transform: translateY(-2px);
}

.capabilities-btn--outline {
  background: transparent !important;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.22) !important;
  font-weight: 700;
  padding: 14px 28px !important;
  border-radius: 4px !important;
  font-size: 0.82rem !important;
  letter-spacing: 0.08em;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  transition: all 0.3s var(--ease) !important;
}

.capabilities-btn--outline:hover {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  transform: translateY(-2px);
}

.about-method {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 0.82fr);
  gap: clamp(26px, 5vw, 76px);
  align-items: center;
  padding: clamp(54px, 7vw, 110px) clamp(22px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 196, 0, 0.05), transparent 40%),
    #050607;
}

.about-method__media {
  position: relative;
  min-height: clamp(430px, 54vw, 720px);
  overflow: hidden;
}

.about-method__media::before {
  position: absolute;
  inset: 28px auto auto 28px;
  z-index: 2;
  width: 46%;
  height: 72%;
  content: "";
  border: 2px solid var(--gold);
  mix-blend-mode: screen;
  transform: skewX(-7deg);
}

.about-method__media img {
  width: 100%;
  height: 100%;
  min-height: clamp(430px, 54vw, 720px);
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(1.1) contrast(1.12) brightness(0.88);
}

.method-steps {
  display: grid;
  gap: 0;
  margin: clamp(24px, 4vw, 44px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.method-steps li {
  display: grid;
  grid-template-columns: 148px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-soft);
}

.method-steps span {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.method-steps p {
  color: #fff;
}

.about-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #080a0d;
}

.about-proof-strip div {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 3vw, 38px);
  border-right: 1px solid var(--line-soft);
}

.about-proof-strip div:last-child {
  border-right: 0;
}

.about-proof-strip strong {
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.about-proof-strip span {
  margin-top: 28px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  line-height: 1.45;
}

.owners-section {
  scroll-margin-top: var(--header-h);
  padding: clamp(50px, 6vw, 90px) clamp(22px, 5vw, 76px);
  border-bottom: 1px solid var(--line);
  background: #030405;
  position: relative;
}

.owners-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.owners-intro-col {
  grid-row: 1;
  grid-column: 1 / 5;
  align-self: center;
  padding-right: 20px;
}

.owners-section-title {
  font-family: Georgia, "Times New Roman", Times, serif;
  text-transform: none;
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  font-weight: normal;
  color: #fff;
  margin: 12px 0 16px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.owners-title-line {
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin: 16px 0 24px;
}

.owners-intro-copy p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  color: #a4a5a0;
  line-height: 1.6;
}

.owners-intro-copy p + p {
  margin-top: 12px;
}

/* Owners cards */
.owner-card {
  background: #080a0c;
  border: 1px solid rgba(255, 196, 0, 0.12);
  border-radius: 12px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  overflow: hidden;
  height: 310px;
  transition: all 0.4s var(--ease);
}

.owner-card--demarcus {
  grid-row: 1;
  grid-column: 5 / 13;
}

.owner-card--corey {
  grid-row: 2;
  grid-column: 5 / 13;
  grid-template-columns: 1.4fr 0.6fr;
  margin-left: -60px;
}

.owner-card__media {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.owner-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.02);
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
}

.owner-card--demarcus .owner-card__media img {
  object-position: center top;
}

.owner-card--corey .owner-card__media img {
  object-position: center 8%;
}

.owner-card__copy {
  padding: 30px clamp(20px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.owner-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.owner-card__num {
  font-family: Georgia, serif;
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1;
}

.owner-card__num-line {
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}

.owner-card__name {
  font-family: Georgia, "Times New Roman", Times, serif;
  text-transform: none;
  font-size: clamp(1.8rem, 2.2vw, 2.5rem);
  font-weight: normal;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.owner-card__role {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.owner-card__bio-text {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  color: #a4a5a0;
  line-height: 1.54;
}

/* Card hover animation */
.owner-card:hover {
  border-color: rgba(255, 196, 0, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.owner-card:hover .owner-card__media img {
  transform: scale(1.03);
  filter: brightness(0.95) contrast(1.05);
}



@keyframes aboutTicker {
  from {
    transform: translateX(0);
  }

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

@keyframes aboutReelMove {
  from {
    transform: translateX(0);
  }

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

@keyframes aboutFloat {
  from {
    translate: 0 0;
  }

  to {
    translate: 0 -18px;
  }
}

@keyframes aboutMarkPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: skewX(-8deg) scale(1);
  }

  50% {
    opacity: 0.9;
    transform: skewX(-8deg) scale(1.035);
  }
}

@keyframes heroSliceScan {
  0% {
    opacity: 0;
    transform: translateY(-120%);
  }

  28% {
    opacity: 0.9;
  }

  62% {
    opacity: 0.55;
  }

  100% {
    opacity: 0;
    transform: translateY(120%);
  }
}

@keyframes heroSliceGlow {
  0%,
  100% {
    opacity: 0.42;
    transform: scaleX(0.84);
  }

  48% {
    opacity: 0.86;
    transform: scaleX(1.08);
  }
}

@keyframes heroSlicePulse {
  0%,
  100% {
    filter:
      drop-shadow(0 0 10px rgba(255, 196, 0, 0.88))
      drop-shadow(0 0 24px rgba(255, 196, 0, 0.38));
  }

  50% {
    filter:
      drop-shadow(0 0 15px rgba(255, 196, 0, 1))
      drop-shadow(0 0 42px rgba(255, 196, 0, 0.62));
  }
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--line);
  background: #07090b;
  color: #fff;
  font: 1rem Arial, Helvetica, sans-serif;
}

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

.contact-page {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 196, 0, 0.09), transparent 24rem),
    #030405;
}

.contact-hero {
  min-height: clamp(430px, 58svh, 660px);
  align-items: center;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.64) 44%, rgba(0, 0, 0, 0.2)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.8), transparent 54%),
    url("assets/PRI01036.jpg") center 42% / cover;
}

.contact-hero h1 {
  max-width: 1040px;
}

.contact-hero p {
  max-width: 520px;
  font-size: clamp(1rem, 1.1vw, 1.18rem);
}

.contact-section {
  padding: clamp(36px, 5vw, 76px) clamp(30px, 4vw, 56px);
}

.contact-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.5fr);
  align-items: end;
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: clamp(24px, 4vw, 48px);
}

.contact-intro h2 {
  max-width: 760px;
}

.contact-intro > p:last-child {
  color: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.38fr);
  gap: clamp(18px, 2.5vw, 34px);
  align-items: stretch;
}

.contact-form--enhanced {
  margin-top: 0;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 42%),
    rgba(7, 9, 11, 0.92);
}

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

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

.contact-form label span {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.contact-form--enhanced input,
.contact-form--enhanced textarea,
.contact-form--enhanced select {
  min-height: 52px;
  border-color: rgba(255, 255, 255, 0.18);
  background: #020303;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form--enhanced textarea {
  min-height: 190px;
  line-height: 1.5;
}

.contact-form--enhanced input:focus,
.contact-form--enhanced textarea:focus,
.contact-form--enhanced select:focus {
  outline: 0;
  border-color: rgba(255, 196, 0, 0.86);
  background: #06080a;
  box-shadow: 0 0 0 3px rgba(255, 196, 0, 0.12);
}

.contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 4px;
}

.contact-form__status {
  min-height: 1.5em;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-form__status[data-state="success"] {
  color: var(--gold);
}

.contact-form__status[data-state="error"] {
  color: #ff8f8f;
}

.contact-form__status[data-state="loading"] {
  color: #fff;
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 196, 0, 0.12), transparent 36%),
    #080a0d;
}

.contact-card h2 {
  margin-bottom: 14px;
}

.contact-card a:not(.button) {
  width: fit-content;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 196, 0, 0.72);
}

.contact-card__divider {
  width: 100%;
  height: 1px;
  margin: clamp(24px, 4vw, 42px) 0;
  background: var(--line-soft);
}

.mt-28 {
  margin-top: 28px;
}

.mt-18 {
  margin-top: 18px;
}

.community-hero {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.28)),
    url("assets/Coming_SOON.png");
  background-position: center, center 32%;
  background-size: cover, min(78vw, 1320px) auto;
  background-repeat: no-repeat;
}

.community-hero .section-label {
  color: var(--gold);
}

.community-hero h1 {
  color: #fff;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms var(--ease), transform 650ms var(--ease);
}

[data-reveal].is-visible,
.site-header[data-reveal],
.hero-copy [data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    position: fixed;
    top: 12px;
    right: auto;
    left: min(328px, calc(100vw - 62px));
    z-index: 200;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.45);
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 18px 28px 26px;
    background: rgba(0, 0, 0, 0.98);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 240ms ease;
  }

  .primary-nav.is-open {
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .header-cta {
    display: none;
  }

  .service-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-service-grid article {
    border-right: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
  }

  .about-cinematic__copy {
    max-width: 78vw;
  }

  .about-cinematic__stack {
    width: min(35vw, 360px);
    opacity: 0.82;
  }

  .about-studio-signal {
    grid-template-columns: minmax(86px, 0.2fr) minmax(0, 1fr);
    align-items: start;
  }

  .about-studio-signal > p {
    grid-column: 2;
    max-width: 720px;
  }

  .capability-lanes article {
    grid-template-columns: 62px minmax(180px, 0.48fr) minmax(240px, 0.74fr);
  }

  .about-proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-proof-strip div {
    border-bottom: 1px solid var(--line-soft);
  }

  .owner-card {
    grid-template-columns: 0.85fr 1.15fr;
    height: auto;
    min-height: 290px;
  }

  .owner-card--corey {
    grid-template-columns: 1.25fr 0.75fr;
  }
  
  .capability-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-cards article {
    border-bottom: 1px solid var(--line);
  }

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

  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 68px;
  }

  .brand-link {
    width: 56px;
    height: 56px;
  }

  .hero-grid,
  .about-band,
  .split-band,
  .page-hero,
  .media-feature,
  .contact-intro,
  .contact-layout,
  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    min-height: auto;
    padding-top: clamp(58px, 11vw, 86px);
    padding-bottom: clamp(58px, 11vw, 86px);
    background-position: center;
  }

  .contact-section {
    padding-inline: 20px;
  }

  .contact-form__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-form__footer .button {
    width: 100%;
  }

  .about-hero {
    min-height: auto;
    gap: 22px;
  }

  .about-hero-media {
    min-height: 390px;
    order: -1;
  }

  .about-hero-media img {
    width: min(66%, 360px);
  }

  .about-hero-media img:first-child {
    right: 4%;
  }

  .about-hero-media img:last-child {
    right: 30%;
  }

  .about-proof .section-head {
    display: block;
  }

  .about-proof .section-head > p {
    margin-top: 18px;
  }

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

  .about-cinematic {
    min-height: auto;
    padding-top: clamp(70px, 10vw, 96px);
  }

  .about-cinematic__copy {
    max-width: 100%;
  }

  .about-cinematic h1 {
    max-width: 640px;
  }

  .about-cinematic__stack {
    position: relative;
    right: auto;
    top: auto;
    width: min(100%, 560px);
    height: 360px;
    margin: 38px 0 10px;
    transform: none;
  }

  .about-cinematic__mark {
    right: -40px;
    bottom: 210px;
    font-size: clamp(10rem, 38vw, 18rem);
  }

  .about-studio-signal,
  .about-section-intro,
  .about-method,
  .owner-card,
  .owner-card--corey,
  .capability-lanes article {
    grid-template-columns: 1fr;
  }

  .about-studio-signal > p {
    grid-column: auto;
  }

  .about-signal__number {
    font-size: clamp(3.5rem, 14vw, 6rem);
  }

  .capability-lanes article {
    gap: 8px;
    min-height: 0;
    padding: 24px 0;
  }

  .capability-lanes h3 {
    font-size: clamp(1.4rem, 6vw, 2.1rem);
  }

  .about-method__media,
  .about-method__media img {
    min-height: clamp(330px, 62vw, 500px);
  }

  .owners-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .owners-intro-col {
    grid-column: auto;
    grid-row: auto;
    padding-right: 0;
  }
  .owner-card,
  .owner-card--corey {
    grid-template-columns: 1fr !important;
    height: auto !important;
    min-height: 0;
    grid-column: auto !important;
    grid-row: auto !important;
    gap: 0 !important;
  }
  .owner-card__media {
    height: 280px;
  }
  .capability-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .capabilities-footer__actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 12px;
  }
  .capabilities-footer__actions a {
    width: 100%;
    justify-content: center;
  }

  .method-steps li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-service-grid article {
    min-height: 0;
    border-right: 0;
  }

  .about-band {
    min-height: 0;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-copy {
    min-height: auto;
  }

  .hero-media {
    min-height: 410px;
    order: -1;
  }

  .hero-mark {
    left: 28px;
    width: 150px;
  }

  .service-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col-copy,
  .client-logos,
  .page-card-grid {
    grid-template-columns: 1fr;
  }

  .community-icons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    justify-items: center;
  }

  .about-collage,
  .split-band > * + * {
    border-left: 0;
  }

  .about-collage {
    position: relative;
    top: auto;
    height: clamp(360px, 68svh, 520px);
    min-height: 0;
    max-height: none;
    padding: 0;
    border-top: 1px solid var(--line);
    overflow: hidden;
  }

  .about-frame {
    width: min(88%, 560px);
    height: min(72%, 390px);
  }

  .about-frame img {
    filter:
      blur(var(--about-blur, 8px))
      saturate(var(--about-saturation, 0.84))
      contrast(var(--about-contrast, 0.96))
      brightness(var(--about-brightness, 0.72));
  }

  .about-band--simple .about-collage {
    height: auto;
  }

  .about-band--simple .about-frame {
    aspect-ratio: 2.05;
  }

  .page-card-grid .series-card--edge img {
    transform: scale(1.03);
  }

  .series-grid,
  .service-cards {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  h1 {
    font-size: clamp(2.8rem, 13vw, 3.7rem);
  }

  .hero-copy,
  .band-copy,
  .services-preview,
  .work-series,
  .brand-community,
  .page-hero,
  .page-content {
    padding: 28px 18px;
  }

  .about-hero-media {
    min-height: 310px;
  }

  .about-cinematic {
    padding: 54px 18px 72px;
  }

  .about-cinematic h1 {
    font-size: clamp(3.25rem, 19vw, 5.2rem);
  }

  .about-cinematic__copy > p:not(.section-label) {
    width: min(100%, 35ch);
    margin: 18px 0 22px;
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .about-cinematic__stack {
    height: 300px;
  }

  .about-cinematic__stack img {
    width: 68%;
    height: 58%;
  }

  .about-ticker {
    height: 38px;
  }

  .about-ticker span {
    padding: 0 18px;
    font-size: 0.76rem;
  }

  .about-studio-signal,
  .about-capabilities,
  .about-method {
    padding: 42px 18px;
  }

  .about-reel-track img {
    width: 210px;
    height: 158px;
  }

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

  .about-proof-strip div {
    min-height: 150px;
    border-right: 0;
  }

  .about-final-cta {
    padding: 58px 18px;
  }

  .about-final-cta h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .owner-card {
    padding: 0;
  }

  .owner-card__name {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .owner-card__bio-text {
    font-size: 0.84rem;
  }

  .community-hero {
    background-size: cover, auto 76%;
    background-position: center, center 28%;
  }

  .about-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.15rem);
    overflow-wrap: break-word;
  }

  .series-hero h1 {
    max-width: 12ch;
    font-size: clamp(2.2rem, 10.2vw, 3rem);
    overflow-wrap: break-word;
  }

  .series-hero p {
    width: min(100%, 34ch);
    overflow-wrap: break-word;
  }

  .about-hero p {
    width: min(100%, 34ch);
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .about-hero-media img {
    width: min(72%, 280px);
  }

  .about-hero-media img:first-child {
    right: 0;
  }

  .about-hero-media img:last-child {
    right: 28%;
  }

  .hero-copy {
    min-height: 360px;
    justify-content: start;
  }

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

  .hero-media {
    min-height: 310px;
  }

  .button {
    width: 100%;
  }

  .service-strip {
    grid-template-columns: 1fr;
  }

  .work-grid,
  .series-grid,
  .work-series .series-grid {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    grid-template-columns: 1fr;
    padding-inline: 22px;
  }

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

  .subscribe-form button {
    height: 42px;
  }
}

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