:root {
  --nav-scroll-offset: 128px;
  --font-primary: 'Nunito Sans', 'Aptos Display', 'Segoe UI', sans-serif;

  --color-carbon-black: #313030;
  --color-pure-white: #FFFFFF;
  --color-carbon-gray: #636363;
  --color-light-gray: #B3B3B3;

  --color-gray-primary: #B3B3B3;
  --color-gray-secondary: #FFFFFF;
  --color-gray-highlight: #D7D7D7;
  --color-gray-deep: #636363;

  --gradient-gray-main: linear-gradient(135deg, #B3B3B3 0%, #FFFFFF 55%, #D7D7D7 100%);
  --gradient-gray-strong: linear-gradient(135deg, #636363 0%, #B3B3B3 45%, #FFFFFF 100%);

  --color-text-primary: #313030;
  --color-text-secondary: #636363;
  --color-text-inverted: #FFFFFF;
  --color-border-light: rgba(179, 179, 179, 0.35);
  --color-border-dark: rgba(99, 99, 99, 0.55);
  --color-gray-glow: rgba(179,179,179,0.18);

  --black: #080808;
  --bg: #0b0b0b;
  --charcoal: #111111;
  --card: #313030;
  --border: var(--color-border-dark);
  --muted: var(--color-carbon-gray);
  --soft: var(--color-light-gray);
  --white: var(--color-pure-white);
  --light-gray: var(--color-gray-secondary);
  --gray: var(--color-gray-primary);
  --container: 1560px;
  --pad: 52px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  font-family: var(--font-primary);
  font-weight: 500;
  letter-spacing: 0;
  background: var(--black);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.42;
  background:
    radial-gradient(ellipse at 50% 15%, rgba(255,255,255,0.16), transparent 36%),
    linear-gradient(90deg, rgba(49,48,48,0.52), transparent 30%, transparent 70%, rgba(49,48,48,0.5)),
    linear-gradient(180deg, rgba(49,48,48,0.2), rgba(21,20,20,0.32));
  mix-blend-mode: multiply;
}

.site-gradient-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(
    270deg,
    #B3B3B3,
    #313030,
    #FFFFFF,
    #636363,
    #FFFFFF,
    #313030
  );
  background-size: 600% 600%;
  animation: vegaGradientFlow 11s ease infinite;
}

.site-gradient-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.14;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(rgba(255,255,255,0.22) 0.6px, transparent 0.6px),
    repeating-linear-gradient(105deg, rgba(49,48,48,0.12) 0 1px, transparent 1px 7px);
  background-size: 3px 3px, 11px 11px;
}

.site-grid-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image:
    linear-gradient(rgba(255,255,255,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.18) 1px, transparent 1px);
  background-size: 80px 80px;
}

.site-header,
.menu-overlay,
.loader,
main,
.site-footer {
  position: relative;
}

main,
.site-footer {
  z-index: 3;
}

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

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

.container {
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
}

.section-line {
  border-top: 1px solid rgba(255,255,255,0.11);
}

#services,
#work,
#studio,
.process,
#contact {
  scroll-margin-top: var(--nav-scroll-offset);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: var(--black);
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__mark {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  animation: loaderPulse 1.35s ease-in-out infinite;
}

.loader__mark img {
  width: 52px;
  height: 52px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 22px 0;
  background: rgba(21, 20, 20, 0.45);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s ease, padding 0.3s ease;
}

.site-header.is-scrolled {
  padding: 14px 0;
  background: rgba(21, 20, 20, 0.9);
}

.header-shell {
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(210px, auto) auto auto 38px;
  align-items: center;
  gap: clamp(18px, 2.4vw, 42px);
}

.brand,
.footer-brand,
.menu-overlay__brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 1000;
  text-transform: uppercase;
  font-size: 1.18rem;
  line-height: 1;
}

.brand__icon,
.footer-brand__icon,
.menu-overlay__brand img {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  flex: 0 0 auto;
}

.brand__icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.header-email,
.desktop-nav,
.button,
.dot-menu,
.menu-overlay__close {
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.05;
}

.header-email {
  color: var(--white);
  justify-self: end;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(14px, 1.5vw, 24px);
  color: var(--soft);
}

.desktop-nav a,
.header-email {
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.header-email:hover {
  color: var(--color-gray-secondary);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 27px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.58);
  overflow: hidden;
  white-space: nowrap;
  transition: color 0.24s ease, border-color 0.24s ease, transform 0.24s ease, box-shadow 0.24s ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gradient-gray-main);
  transition: transform 0.28s ease;
}

.button:hover {
  color: var(--white);
  border-color: var(--color-gray-highlight);
  box-shadow: 0 16px 44px rgba(179,179,179,0.18);
}

.button:hover::before {
  transform: scaleX(1);
}

.button--solid {
  background: var(--gradient-gray-main);
  color: var(--white);
  border-color: rgba(179,179,179,0.58);
  box-shadow: 0 16px 48px rgba(179,179,179,0.2);
}

.button--solid::before {
  background: var(--gradient-gray-strong);
  transform: scaleX(1);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.button--solid:hover {
  transform: translateY(-2px);
}

.button--solid:hover::before {
  opacity: 1;
}

.dot-menu {
  width: 38px;
  height: 38px;
  display: grid;
  grid-template-columns: repeat(2, 5px);
  place-content: center;
  gap: 9px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.dot-menu span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  display: block;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 36px var(--pad);
  background: rgba(5,5,5,0.96);
  transform: translateY(-100%);
  transition: transform 0.55s cubic-bezier(.19,1,.22,1);
}

.menu-overlay.is-open {
  transform: translateY(0);
}

.menu-overlay__close {
  justify-self: end;
  min-height: 42px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.28);
  background: transparent;
  border-radius: 999px;
  padding: 0 20px;
  cursor: pointer;
}

.menu-overlay__nav {
  display: grid;
  align-content: center;
  gap: 8px;
}

.menu-overlay__nav a {
  width: fit-content;
  font-size: 5.8rem;
  line-height: 0.9;
  font-weight: 1000;
  text-transform: uppercase;
}

.menu-overlay__brand {
  color: var(--soft);
}

.hero {
  position: relative;
  padding: 84px 0 72px;
  overflow: hidden;
}

.hero::before,
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(21,20,20,0.82), rgba(49,48,48,0.36) 48%, rgba(21,20,20,0.66)),
    radial-gradient(ellipse at 30% 45%, rgba(49,48,48,0.38), transparent 58%);
}

.hero > *,
.contact > * {
  position: relative;
  z-index: 1;
}

.hero__grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  align-items: center;
  gap: clamp(42px, 5vw, 86px);
}

.hero__display {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 34px;
  color: var(--color-light-gray);
  font-size: 0.84rem;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-title,
.studio__copy h2,
.contact__copy h3 {
  margin: 0;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 0.82;
}

.hero-title {
  font-size: clamp(5.2rem, 9.8vw, 10.8rem);
  max-width: 100%;
  text-shadow: 0 24px 80px rgba(0,0,0,0.32);
}

.hero-title span,
.studio__copy h2 span {
  display: block;
}

.hero-statement {
  max-width: 600px;
  margin: 30px 0 0;
  color: var(--white);
  font-size: clamp(1.15rem, 2vw, 2rem);
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.hero__intro {
  align-self: end;
  min-width: 0;
  padding: 80px 0 76px;
}

.intro-logo {
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.hero__intro h2 {
  margin: 0 0 22px;
  text-transform: uppercase;
  font-size: 1.34rem;
  line-height: 1.08;
  font-weight: 1000;
}

.hero__intro p,
.section-copy,
.studio__description,
.contact__copy p,
.process-step p {
  color: var(--soft);
  line-height: 1.48;
}

.hero__intro p {
  max-width: 350px;
  margin: 0;
  color: #000000;
  font-weight: 800;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero__micro {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.hero__micro span,
.skill-pills span,
.tags span,
.service-labels span {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.24);
  padding: 0 13px;
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase {
  padding: 22px 0 0;
}

.showcase__wrap {
  position: relative;
  padding-top: 88px;
}

.badge {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  width: 214px;
  height: 214px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--color-carbon-black), #080808 58%, rgba(179,179,179,0.42));
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);
}

.badge > svg {
  width: 100%;
  height: 100%;
  animation: slowRotate 20s linear infinite;
}

.badge circle {
  fill: none;
  stroke: rgba(255,255,255,0.86);
  stroke-width: 3;
}

.badge text {
  fill: var(--white);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 1000;
  letter-spacing: 0.2em;
}

.badge__center {
  position: absolute;
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.86);
  background: rgba(21,20,20,0.72);
}

.badge__center img {
  width: 46px;
  height: 46px;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.reel-frame {
  position: relative;
  height: 570px;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.16);
  background: #080808;
  box-shadow: 0 28px 100px rgba(0,0,0,0.52);
}

.reel-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-slider {
  position: absolute;
  inset: 0;
}

.reel-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 1.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 6.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-slider img.is-active {
  opacity: 1;
  transform: scale(1.08);
}

.reel-slider__indicator {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 2vw, 28px);
  right: clamp(18px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 26px);
  height: 1px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
}

.reel-slider__indicator::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  background: rgba(255,255,255,0.72);
  animation: reelProgress 5.6s linear infinite;
}

.project-visual,
.service-card,
.studio-object {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.13);
  background-color: var(--card);
  isolation: isolate;
}

.project-visual::before,
.service-card::before,
.studio-object::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 32%, rgba(255,255,255,0.12) 33%, transparent 42%),
    radial-gradient(circle at 70% 35%, rgba(179,179,179,0.56), transparent 26%),
    radial-gradient(circle at 30% 80%, rgba(255,255,255,0.12), transparent 24%),
    linear-gradient(135deg, #070707, #191919);
  transform: rotate(-8deg);
}

.project-visual::after,
.service-card::after,
.studio-object::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.22;
}

.project-visual span,
.service-card small,
.studio-object span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 2;
  color: rgba(255,255,255,0.82);
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.project-visual--noir::before {
  background:
    radial-gradient(circle at 64% 31%, rgba(255,255,255,0.35), transparent 16%),
    var(--gradient-gray-strong);
}

.status-strip {
  padding: 44px 0 144px;
}

.status-strip__inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: tickerMove 26s linear infinite;
  will-change: transform;
}

.ticker__set {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 76px);
  min-width: max-content;
  padding-right: clamp(28px, 4vw, 76px);
}

.ticker__set i {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--gradient-gray-main);
  box-shadow: 0 0 18px rgba(179,179,179,0.62);
}

.section-kicker {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 90px;
}

.section-kicker::before,
.section-kicker::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.12), rgba(179,179,179,0.36), rgba(255,255,255,0.12));
}

.section-kicker h2,
.section-kicker span {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1;
  font-weight: 1000;
  text-transform: uppercase;
}

.section-kicker span {
  color: var(--muted);
  font-size: 1.7rem;
}

.section-kicker--services {
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "left line right"
    "title title title";
  row-gap: 28px;
  column-gap: 28px;
  margin-bottom: 70px;
}

.section-kicker--services::before,
.section-kicker--services::after {
  content: none;
}

.section-kicker--services .kicker-mark:first-child {
  grid-area: left;
}

.section-kicker--services .kicker-mark:last-of-type {
  grid-area: right;
}

.section-kicker--services .kicker-line {
  grid-area: line;
  align-self: center;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.12), rgba(179,179,179,0.36), rgba(255,255,255,0.12));
}

.section-kicker--services h2 {
  grid-area: title;
  justify-self: center;
}

.section-kicker--works,
.section-kicker--process,
.section-kicker--contact {
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "left line right"
    "title title title";
  row-gap: 28px;
  column-gap: 28px;
  margin-bottom: 70px;
}

.section-kicker--works::before,
.section-kicker--works::after,
.section-kicker--process::before,
.section-kicker--process::after,
.section-kicker--contact::before,
.section-kicker--contact::after {
  content: none;
}

.section-kicker--works .kicker-mark:first-child,
.section-kicker--process .kicker-mark:first-child,
.section-kicker--contact .kicker-mark:first-child {
  grid-area: left;
}

.section-kicker--works .kicker-mark:last-of-type,
.section-kicker--process .kicker-mark:last-of-type,
.section-kicker--contact .kicker-mark:last-of-type {
  grid-area: right;
}

.section-kicker--works .kicker-line,
.section-kicker--process .kicker-line,
.section-kicker--contact .kicker-line {
  grid-area: line;
  align-self: center;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.12), rgba(179,179,179,0.36), rgba(255,255,255,0.12));
}

.section-kicker--works h2,
.section-kicker--process h2,
.section-kicker--contact h2 {
  grid-area: title;
  justify-self: center;
}

.services {
  padding: 70px 0 160px;
  background: rgba(21,20,20,0.3);
  backdrop-filter: blur(4px);
}

.services__stage {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.service-words {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(24px, 3.4vw, 48px);
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(3.9rem, 6.7vw, 8.1rem);
  line-height: 0.84;
  font-weight: 1000;
}

.service-word {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: clamp(14px, 2vw, 30px);
  align-items: baseline;
  width: 100%;
  max-width: 1180px;
  padding: 0;
  border: 0;
  color: rgba(255,255,255,0.12);
  background: transparent;
  font: inherit;
  line-height: inherit;
  text-align: center;
  text-transform: inherit;
  cursor: pointer;
  transition: color 0.42s ease, opacity 0.42s ease, text-shadow 0.42s ease, transform 0.42s ease;
}

.service-word:hover,
.service-word:focus-visible,
.service-word.is-active {
  color: var(--white);
  opacity: 1;
  text-shadow: 0 0 54px rgba(179,179,179,0.22);
}

.service-word:hover,
.service-word:focus-visible {
  z-index: 4;
}

.service-word__index {
  color: rgba(179,179,179,0.72);
  font-size: 0.22em;
  line-height: 1;
  transform: translateY(-0.24em);
}

.service-word__title {
  min-width: 0;
  white-space: nowrap;
}

.service-word__copy {
  position: absolute;
  top: calc(100% + 8px);
  left: clamp(58px, 7.4vw, 126px);
  max-width: 620px;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  pointer-events: none;
  color: rgba(255,255,255,0.78);
  font-size: 1.02rem;
  line-height: 1.38;
  font-weight: 800;
  text-transform: none;
  opacity: 0;
  transform: translateY(-12px);
  transition: max-height 0.44s ease, margin-top 0.44s ease, opacity 0.34s ease, transform 0.44s ease;
}

.service-word:hover .service-word__copy,
.service-word:focus-visible .service-word__copy {
  max-height: 120px;
  margin-top: 0;
  opacity: 1;
  transform: translateY(0);
}

.service-word:focus-visible {
  outline: 1px solid rgba(255,255,255,0.48);
  outline-offset: 8px;
}

.service-card {
  width: 240px;
  height: 160px;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  transition: transform 0.82s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease, border-color 0.4s ease, filter 0.4s ease;
  will-change: transform, opacity;
}

.service-card::before {
  transform: none;
}

.service-card--one {
  left: 5%;
  top: 10%;
}

.service-card--two {
  right: 5%;
  top: 18%;
}

.service-card--three {
  left: 58%;
  bottom: 9%;
}

.services__stage[data-active-service="product"] .service-card--one {
  transform: translate(0, 0) scale(1.04);
}

.services__stage[data-active-service="product"] .service-card--two {
  transform: translate(-64vw, 320px) scale(0.96);
}

.services__stage[data-active-service="product"] .service-card--three {
  transform: translate(18vw, -440px) scale(1.02);
}

.services__stage[data-active-service="motion"] .service-card--one {
  transform: translate(68vw, 250px) scale(0.98);
}

.services__stage[data-active-service="motion"] .service-card--two {
  transform: translate(0, 0) scale(1.05);
}

.services__stage[data-active-service="motion"] .service-card--three {
  transform: translate(-56vw, -360px) scale(0.97);
}

.services__stage[data-active-service="direction"] .service-card--one {
  transform: translate(43vw, 460px) scale(0.96);
}

.services__stage[data-active-service="direction"] .service-card--two {
  transform: translate(-70vw, -40px) scale(0.98);
}

.services__stage[data-active-service="direction"] .service-card--three {
  transform: translate(-38vw, 0) scale(1.05);
}

.service-card[data-visual="product"]::before {
  background:
    radial-gradient(circle at 28% 58%, rgba(255,255,255,0.18), transparent 24%),
    linear-gradient(115deg, rgba(179,179,179,0.52), transparent 34%),
    linear-gradient(135deg, #080808, #313030 58%, #080808);
}

.service-card[data-visual="motion"]::before {
  background:
    linear-gradient(90deg, transparent, rgba(179,179,179,0.42), transparent),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.09) 0 1px, transparent 1px 22px),
    linear-gradient(135deg, #080808, #151515);
}

.service-card[data-visual="branding"]::before {
  background:
    radial-gradient(circle at 70% 36%, rgba(255,255,255,0.2), transparent 19%),
    var(--gradient-gray-strong);
}

.service-card[data-visual="direction"]::before {
  background:
    radial-gradient(circle at 50% 50%, rgba(179,179,179,0.34), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.14), transparent 40%),
    linear-gradient(130deg, #313030, #080808 62%, #0b0b0b);
}

.service-labels {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.works {
  padding: 72px 0 170px;
  background: rgba(21,20,20,0.24);
  backdrop-filter: blur(3px);
}

.section-copy {
  max-width: 470px;
  margin: -40px auto 110px;
  text-align: center;
  font-weight: 700;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 88px 58px;
  align-items: start;
}

.project-card {
  grid-column: span 5;
  position: relative;
}

.project-card--large {
  grid-column: 1 / span 7;
}

.project-card--offset {
  grid-column: 2 / span 5;
  margin-top: 70px;
}

.project-card--wide {
  grid-column: 5 / span 8;
}

.project-visual {
  position: relative;
  width: 100%;
  height: 310px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, #171616, #0f0f0f);
  transition: transform 0.45s ease, border-color 0.3s ease;
}

.project-card--large .project-visual,
.project-card--wide .project-visual {
  height: 460px;
}

.project-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-visual::before,
.project-visual::after {
  content: none;
}

.project-info {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  margin-top: 24px;
}

.project-info h3 {
  grid-column: 1 / 2;
  margin: 0;
  font-size: 2rem;
  line-height: 0.9;
  font-weight: 1000;
  text-transform: uppercase;
}

.tags {
  grid-column: 1 / 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.arrow-link {
  grid-column: 2 / 3;
  grid-row: 1 / span 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.52);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 300;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.arrow-link img {
  width: 22px;
  height: 22px;
  display: block;
  filter: invert(1);
  pointer-events: none;
}

.project-card:hover .project-visual {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(179,179,179,0.54);
}

.project-card:hover .arrow-link {
  color: var(--white);
  background: var(--gradient-gray-main);
  border-color: var(--color-gray-highlight);
}

.studio {
  padding: 72px 0 170px;
  background: rgba(21,20,20,0.34);
  backdrop-filter: blur(5px);
}

.studio__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  column-gap: clamp(64px, 7vw, 120px);
  row-gap: 32px;
  align-items: stretch;
}

.studio__copy h2 {
  font-size: clamp(4.25rem, 5.7vw, 6.45rem);
  line-height: 0.88;
}

.studio__copy {
  display: flex;
  flex-direction: column;
}

.skill-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.studio__visual {
  position: relative;
  align-self: stretch;
  height: auto;
  min-height: 100%;
}

.studio-object {
  inset: 0;
  height: 100%;
  min-height: 100%;
  border-radius: 10px;
  background: #090909;
  overflow: hidden;
}

.studio-object::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.72));
}

.studio-object::after {
  content: none;
}

.studio-object img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-founder-label {
  position: absolute;
  left: 28px;
  bottom: 26px;
  z-index: 2;
  color: var(--white);
  font-size: 0.78rem;
  line-height: 1;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 0 8px 24px rgba(0,0,0,0.55);
}

.studio__description {
  max-width: 560px;
  margin: clamp(56px, 7vw, 108px) 0 0;
  padding-top: 0;
  color: rgba(255,255,255,0.76);
  font-size: 1.02rem;
  line-height: 1.58;
  font-weight: 750;
}

.process,
.contact {
  padding: 72px 0 150px;
}

.process {
  background: rgba(21,20,20,0.32);
  backdrop-filter: blur(5px);
}


.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.process-step {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 24px;
}

.process-step span {
  display: block;
  margin-bottom: 52px;
  color: var(--color-gray-secondary);
  font-size: 3.2rem;
  line-height: 0.9;
  font-weight: 1000;
}

.process-step h3 {
  margin: 0 0 14px;
  text-transform: uppercase;
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 1000;
}

.process-step p {
  margin: 0;
  max-width: 28ch;
}

.contact {
  position: relative;
  overflow: hidden;
}

.section-kicker--contact {
  margin-bottom: clamp(56px, 5.5vw, 84px);
}

.contact__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(48px, 6vw, 70px);
  align-items: start;
  min-height: 320px;
}

.contact__copy h3 {
  font-size: clamp(5.2rem, 8vw, 7rem);
}

.contact__details {
  display: grid;
  justify-items: start;
  gap: 9px;
  color: var(--white);
  font-style: normal;
  text-align: left;
  text-transform: uppercase;
  font-size: 0.9rem;
  line-height: 1.2;
  font-weight: 400;
}

.contact__note {
  margin: 0 0 32px;
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.2;
  font-weight: 800;
}

.contact__name {
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 500;
}

.contact__role,
.contact__location {
  color: var(--white);
  font-weight: 400;
}

.contact__email {
  margin-top: 22px;
  color: var(--white);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding: 30px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-brand {
  color: var(--white);
  font-size: 0.86rem;
}

.footer-brand__icon {
  background: var(--black);
  border-color: rgba(255,255,255,0.18);
}

.footer-brand__icon img {
  width: 28px;
  height: 28px;
  display: block;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.site-footer a {
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: var(--color-gray-secondary);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes loaderPulse {
  0%, 100% { transform: scale(0.94); opacity: 0.72; }
  50% { transform: scale(1); opacity: 1; }
}

@keyframes slowRotate {
  to { transform: rotate(360deg); }
}

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

@keyframes reelProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@keyframes vegaGradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

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

  .site-gradient-bg {
    animation: none !important;
  }

  .ticker__track {
    animation: none !important;
  }
}

@media (max-width: 1280px) {
  :root {
    --pad: 34px;
  }

  .header-shell {
    grid-template-columns: minmax(280px, 1fr) minmax(190px, auto) auto auto 38px;
    gap: 20px;
  }

  .header-email {
    display: none;
  }

  .service-words {
    font-size: clamp(4.7rem, 5.9vw, 6rem);
  }

  .studio__copy h2 {
    font-size: clamp(4rem, 5.8vw, 5.1rem);
  }

  .contact__copy h3 {
    font-size: clamp(4.8rem, 7.4vw, 6.5rem);
  }
}

@media (max-width: 1120px) {
  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    align-items: start;
    gap: 56px;
  }

  .hero__intro {
    align-self: auto;
    max-width: 520px;
    padding: 0 0 36px;
  }

  .hero__intro p {
    max-width: 520px;
  }

  .hero-title {
    font-size: clamp(4.7rem, 13vw, 8rem);
  }
}

@media (max-width: 1110px) {
  .work-grid {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .project-card,
  .project-card--large,
  .project-card--offset,
  .project-card--wide {
    grid-column: auto;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .project-info {
    order: 1;
    margin-top: 0;
    margin-bottom: 22px;
  }

  .project-visual {
    order: 2;
  }

  .project-card--large .project-visual,
  .project-card--wide .project-visual,
  .project-visual {
    height: clamp(280px, 45vw, 430px);
  }
}

@media (max-width: 980px) {
  .header-shell {
    grid-template-columns: 1fr auto;
    gap: 18px;
  }

  .desktop-nav {
    display: none;
  }

  .header-email {
    display: none;
  }

  .site-header .button {
    display: none;
  }

  .hero {
    padding-top: 58px;
  }

  .studio__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .showcase__wrap {
    padding-top: 68px;
  }

  .badge {
    width: 166px;
    height: 166px;
  }

  .badge__center {
    width: 72px;
    height: 72px;
  }

  .reel-frame {
    height: 470px;
  }

  .status-strip {
    padding-bottom: 104px;
  }

  .status-strip__inner {
    font-size: 0.74rem;
  }

  .services__stage {
    min-height: 620px;
  }

  .service-words {
    font-size: clamp(3.25rem, 5.65vw, 4.4rem);
  }

  .service-card {
    width: 190px;
    height: 128px;
  }

  .services__stage {
    place-items: center;
    align-content: center;
  }

  .service-card--one {
    left: 2%;
    top: 12%;
  }

  .service-card--two {
    right: 2%;
    top: 18%;
  }

  .service-card--three {
    left: 58%;
    bottom: 12%;
  }

  .studio__copy {
    min-height: auto;
  }

  .studio__visual {
    height: 520px;
  }

  .studio__description {
    max-width: 620px;
    margin: 34px 0 0;
    padding-top: 0;
  }

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



  .contact__copy h3 {
    font-size: clamp(4rem, 8.2vw, 5rem);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-scroll-offset: 92px;
  }

  .services__stage {
    min-height: auto;
    margin-bottom: 46px;
    display: grid;
    gap: 24px;
  }

  .service-words {
    text-align: left;
    font-size: clamp(2.25rem, 8.2vw, 3.45rem);
    line-height: 0.96;
  }

  .service-word {
    text-align: left;
  }

  .service-word__copy {
    position: static;
    grid-column: 2;
    max-width: 560px;
  }

  .service-card,
  .services__stage[data-active-service] .service-card {
    display: none;
  }

}

@media (max-width: 680px) {
  :root {
    --pad: 18px;
  }

  .site-gradient-bg {
    background-size: 520% 520%;
    animation-duration: 14s;
  }

  .site-grid-overlay {
    opacity: 0.14;
    background-size: 48px 48px;
  }

  .site-header {
    padding: 14px 0;
  }

  .brand {
    gap: 10px;
    font-size: 1rem;
  }

  .brand__icon {
    width: 38px;
    height: 38px;
  }

  .brand__icon img {
    width: 25px;
    height: 25px;
  }

  .menu-overlay {
    padding: 22px var(--pad);
  }

  .menu-overlay__nav a {
    font-size: 3.45rem;
  }

  .hero__grid {
    gap: 42px;
  }

  .hero-title {
    font-size: clamp(3.45rem, 16vw, 4.8rem);
    line-height: 0.86;
  }

  .eyebrow {
    margin-bottom: 22px;
  }

  .reel-frame {
    height: 390px;
    border-radius: 18px;
  }

  .status-strip {
    padding: 30px 0 76px;
  }

  .status-strip__inner {
    font-size: 0.72rem;
  }

  .ticker__track {
    animation-duration: 22s;
  }

  .ticker__set {
    gap: 28px;
    padding-right: 28px;
  }

  .ticker__set i {
    width: 7px;
    height: 7px;
  }

  .section-kicker {
    gap: 14px;
    margin-bottom: 54px;
  }

  .section-kicker--contact {
    margin-bottom: 42px;
  }

  .section-kicker--services {
    row-gap: 22px;
  }

  .section-kicker h2 {
    font-size: 0.88rem;
  }

  .section-kicker span {
    font-size: 1.1rem;
  }

  .services,
  .works,
  .studio,
  .process,
  .contact {
    padding: 56px 0 92px;
  }

  .section-copy {
    margin: -28px 0 62px;
    text-align: left;
  }

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

  .project-card--wide {
    grid-column: auto;
  }

  .project-card--large .project-visual,
  .project-card--wide .project-visual,
  .project-visual {
    height: 280px;
  }

  .project-info {
    grid-template-columns: 1fr 46px;
  }

  .project-info h3 {
    font-size: 1.62rem;
  }

  .arrow-link {
    width: 46px;
    height: 46px;
  }

  .studio__grid {
    gap: 44px;
  }

  .studio__copy {
    min-height: auto;
  }

  .studio__copy h2,
  .contact__copy h3 {
    font-size: clamp(2.7rem, 12.4vw, 3.25rem);
    line-height: 0.92;
  }

  .studio__visual {
    height: 390px;
  }

  .studio-founder-label {
    left: 20px;
    bottom: 20px;
    font-size: 0.68rem;
  }

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

  .process-step span {
    margin-bottom: 26px;
    font-size: 2.5rem;
  }

  .contact__grid {
    gap: 42px;
  }

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

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

@media (max-width: 390px) {
  .hero-title,
  .studio__copy h2,
  .contact__copy h3 {
    font-size: 2.75rem;
  }

  .service-words {
    font-size: clamp(2rem, 7.6vw, 2.45rem);
  }
}


/* Premium dark editorial visual refinement */
:root {
  --color-carbon-gray: #636363;
  --color-light-gray: #B3B3B3;
  --color-primary-gray: #B3B3B3;
  --color-black: #030303;
  --color-surface: #111111;
  --color-surface-soft: #181818;
  --color-white: #FFFFFF;
  --black: #030303;
  --bg: #050505;
  --charcoal: #0b0b0b;
  --card: #111111;
  --border: rgba(255,255,255,0.075);
  --muted: #636363;
  --soft: #B3B3B3;
  --white: #FFFFFF;
  --gray: #B3B3B3;
  --light-gray: #B3B3B3;
  --color-gray-secondary: #B3B3B3;
  --color-gray-highlight: #D7D7D7;
  --color-gray-glow: rgba(179,179,179,0.16);
  --gradient-gray-main: linear-gradient(135deg, #B3B3B3 0%, #D7D7D7 100%);
  --gradient-gray-strong: linear-gradient(135deg, #636363 0%, #B3B3B3 54%, #FFFFFF 100%);
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

html,
body {
  background: #030303;
}

body {
  color: #FFFFFF;
  text-rendering: geometricPrecision;
}

body::before {
  opacity: 0.72;
  background:
    radial-gradient(circle at 54% 12%, rgba(255,255,255,0.055), transparent 22%),
    radial-gradient(circle at 18% 42%, rgba(179,179,179,0.09), transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(179,179,179,0.075), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.025), transparent 18%, rgba(0,0,0,0.4));
  mix-blend-mode: screen;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    radial-gradient(rgba(255,255,255,0.35) 0.6px, transparent 0.7px),
    linear-gradient(180deg, transparent, rgba(179,179,179,0.08) 72%, transparent);
  background-size: 3px 3px, 100% 100%;
  mix-blend-mode: overlay;
}

.site-gradient-bg {
  background:
    radial-gradient(ellipse 72% 40% at 50% 100%, rgba(179,179,179,0.34), transparent 58%),
    radial-gradient(ellipse 42% 34% at 18% 18%, rgba(179,179,179,0.10), transparent 62%),
    radial-gradient(ellipse 40% 30% at 84% 48%, rgba(211,211,211,0.08), transparent 62%),
    linear-gradient(180deg, #050505 0%, #030303 48%, #050505 100%);
  background-size: 100% 100%;
  animation: none;
}

.site-gradient-bg::before {
  content: "";
  position: absolute;
  inset: auto -10% -26% -10%;
  height: 48vh;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 70%, rgba(179,179,179,0.42), transparent 58%),
    linear-gradient(0deg, rgba(179,179,179,0.18), transparent 82%);
  filter: blur(34px);
}

.site-gradient-bg::after {
  opacity: 0.11;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(rgba(255,255,255,0.22) 0.55px, transparent 0.65px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.045) 0 1px, transparent 1px 72px);
  background-size: 3px 3px, 100% 100%;
}

.site-grid-overlay {
  opacity: 0.055;
  mix-blend-mode: screen;
  background-size: 96px 96px;
}

.section-line {
  border-top-color: rgba(255,255,255,0.075);
}

.site-header {
  background: rgba(3,3,3,0.58);
  border-bottom-color: rgba(255,255,255,0.075);
  box-shadow: 0 18px 70px rgba(0,0,0,0.32);
  transition: background 0.45s var(--ease-premium), padding 0.45s var(--ease-premium), border-color 0.45s var(--ease-premium);
}

.site-header.is-scrolled {
  background: rgba(3,3,3,0.86);
  border-bottom-color: rgba(179,179,179,0.14);
}

.brand,
.footer-brand,
.menu-overlay__brand,
.desktop-nav,
.header-email,
.contact__details,
.section-kicker h2,
.section-kicker span {
  letter-spacing: 0;
}

.brand__icon,
.footer-brand__icon,
.menu-overlay__brand img,
.loader__mark {
  background: #050505;
  border-color: rgba(255,255,255,0.10);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), 0 16px 40px rgba(0,0,0,0.35);
}

.desktop-nav a,
.header-email,
.footer__inner,
.service-word__index,
.section-kicker span,
.contact__role,
.contact__location {
  color: #B3B3B3;
}

.desktop-nav a,
.header-email,
.site-footer a,
.service-word,
.arrow-link,
.button {
  transition: color 0.42s var(--ease-premium), border-color 0.42s var(--ease-premium), background 0.42s var(--ease-premium), box-shadow 0.42s var(--ease-premium), transform 0.42s var(--ease-premium), opacity 0.42s var(--ease-premium);
}

.desktop-nav a:hover,
.header-email:hover,
.site-footer a:hover {
  color: #FFFFFF;
}

.button {
  border-radius: 999px;
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.045);
  color: #FFFFFF;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 14px 34px rgba(0,0,0,0.24);
}

.button::before {
  background: linear-gradient(135deg, rgba(179,179,179,0.92), rgba(211,211,211,0.74));
}

.button:hover {
  border-color: rgba(179,179,179,0.55);
  box-shadow: 0 18px 54px rgba(179,179,179,0.20), inset 0 1px 0 rgba(255,255,255,0.12);
  transform: translateY(-1px);
}

.button--solid {
  background: #FFFFFF;
  color: #050505;
  border-color: rgba(255,255,255,0.82);
  box-shadow: 0 20px 54px rgba(255,255,255,0.08), 0 18px 52px rgba(179,179,179,0.14);
}

.button--solid:hover {
  color: #FFFFFF;
}

.hero::before,
.contact::before {
  opacity: 0.76;
  background:
    radial-gradient(circle at 72% 18%, rgba(179,179,179,0.10), transparent 32%),
    radial-gradient(circle at 30% 92%, rgba(179,179,179,0.18), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,0.035), transparent 36%);
}

.hero-title,
.studio__copy h2,
.contact__copy h3,
.service-words,
.project-info h3 {
  color: #FFFFFF;
  text-shadow: 0 20px 80px rgba(0,0,0,0.42);
}

.hero-statement,
.hero__intro p,
.section-copy,
.studio__description,
.process-step p,
.contact__note {
  color: #B3B3B3;
}

.eyebrow,
.hero__intro h2,
.section-kicker h2,
.project-info h3,
.process-step h3,
.contact__name {
  color: #FFFFFF;
}

.hero__intro {
  color: #FFFFFF;
}

.hero__intro p {
  color: #B3B3B3;
}

.hero__micro span,
.skill-pills span,
.tags span,
.service-labels span {
  color: #B3B3B3;
  background: rgba(255,255,255,0.045);
  border-color: rgba(255,255,255,0.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.hero__micro span:hover,
.tags span:hover {
  color: #FFFFFF;
  border-color: rgba(179,179,179,0.35);
  background: rgba(179,179,179,0.075);
}

.section-kicker::before,
.section-kicker::after,
.section-kicker--services .kicker-line,
.section-kicker--works .kicker-line,
.section-kicker--process .kicker-line,
.section-kicker--contact .kicker-line {
  background: linear-gradient(90deg, rgba(255,255,255,0.055), rgba(179,179,179,0.42), rgba(255,255,255,0.055));
}

.services,
.works,
.process,
.contact,
.studio {
  position: relative;
}

.services,
.process {
  background: rgba(3,3,3,0.34);
  backdrop-filter: blur(7px);
}

.works::before,
.studio::before,
.process::before,
.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 24%, rgba(179,179,179,0.09), transparent 30%),
    radial-gradient(circle at 14% 84%, rgba(179,179,179,0.075), transparent 34%);
  opacity: 0.75;
}

.works > *,
.studio > *,
.process > *,
.contact > * {
  position: relative;
  z-index: 1;
}

.reel-frame,
.project-visual,
.service-card,
.studio-object {
  background:
    radial-gradient(circle at 50% 110%, rgba(179,179,179,0.22), transparent 46%),
    linear-gradient(135deg, #151515, #090909 58%, #050505);
  border-color: rgba(255,255,255,0.075);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.045),
    inset 0 -70px 120px rgba(0,0,0,0.28),
    0 28px 80px rgba(0,0,0,0.42),
    0 0 70px rgba(179,179,179,0.055);
}

.reel-frame {
  border-radius: 28px;
}

.project-visual,
.service-card {
  transition: transform 0.7s var(--ease-premium), border-color 0.7s var(--ease-premium), box-shadow 0.7s var(--ease-premium), background 0.7s var(--ease-premium);
}

.project-card:hover .project-visual,
.service-card:hover {
  border-color: rgba(179,179,179,0.32);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.055),
    0 34px 90px rgba(0,0,0,0.52),
    0 0 90px rgba(179,179,179,0.14);
}

.service-card::after,
.project-visual::after,
.studio-object::after {
  opacity: 0.10;
  mix-blend-mode: soft-light;
}

.service-word {
  color: rgba(255,255,255,0.36);
}

.service-word:hover,
.service-word.is-active,
.service-word:focus-visible {
  color: #FFFFFF;
  text-shadow: 0 0 34px rgba(179,179,179,0.18);
}

.service-word__copy {
  color: #B3B3B3;
}

.project-info {
  border-top-color: rgba(255,255,255,0.08);
}

.project-info h3 {
  font-weight: 1000;
}

.arrow-link,
.dot-menu,
.menu-overlay__close {
  background: rgba(255,255,255,0.045);
  border-color: rgba(255,255,255,0.11);
  color: #FFFFFF;
}

.arrow-link:hover,
.project-card:hover .arrow-link,
.dot-menu:hover,
.menu-overlay__close:hover {
  background: #FFFFFF;
  color: #050505;
  border-color: rgba(255,255,255,0.72);
  box-shadow: 0 18px 42px rgba(255,255,255,0.08), 0 18px 50px rgba(179,179,179,0.14);
}

.studio-object {
  border-radius: 12px;
}

.studio-founder-label {
  background: rgba(3,3,3,0.62);
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 18px 42px rgba(0,0,0,0.34);
  backdrop-filter: blur(12px);
}

.process-step {
  border-top-color: rgba(255,255,255,0.10);
}

.process-step span {
  color: #B3B3B3;
  text-shadow: 0 0 38px rgba(179,179,179,0.18);
}

.contact__note,
.contact__name,
.contact__role,
.contact__location,
.contact__email {
  color: #FFFFFF;
}

.contact__email {
  text-shadow: 0 0 28px rgba(179,179,179,0.16);
}

.site-footer {
  border-top-color: rgba(255,255,255,0.08);
  background: rgba(3,3,3,0.34);
}

.footer-brand__icon {
  background: #050505;
  border-color: rgba(255,255,255,0.12);
}

.menu-overlay {
  background:
    radial-gradient(circle at 70% 80%, rgba(179,179,179,0.18), transparent 34%),
    rgba(3,3,3,0.96);
}

::selection {
  color: #FFFFFF;
  background: rgba(179,179,179,0.72);
}

@media (max-width: 768px) {
  .site-gradient-bg::before {
    height: 36vh;
    filter: blur(28px);
  }

  .button,
  .arrow-link,
  .dot-menu {
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.045), 0 12px 28px rgba(0,0,0,0.24);
  }

  .reel-frame,
  .project-visual,
  .studio-object {
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.045),
      0 24px 64px rgba(0,0,0,0.42),
      0 0 52px rgba(179,179,179,0.06);
  }
}


/* Flat monochrome trame background refinement */
html,
body {
  background: #030303;
}

body::before,
.hero::before,
.contact::before,
.works::before,
.studio::before,
.process::before,
.contact::after,
.site-gradient-bg::before {
  content: none;
  display: none;
}

.site-gradient-bg {
  background: #030303;
  background-image: none;
  animation: none;
}

.site-gradient-bg::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.36;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle, rgba(179,179,179,0.32) 0 0.62px, transparent 0.9px),
    linear-gradient(rgba(179,179,179,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(179,179,179,0.08) 1px, transparent 1px);
  background-size: 4px 4px, 22px 22px, 22px 22px;
  background-position: 0 0, 0 0, 0 0;
}

.site-grid-overlay {
  opacity: 0.2;
  mix-blend-mode: screen;
  background-image:
    radial-gradient(circle, rgba(179,179,179,0.14) 0 0.55px, transparent 0.78px),
    radial-gradient(circle, rgba(99,99,99,0.26) 0 0.55px, transparent 0.78px);
  background-size: 8px 8px, 16px 16px;
  background-position: 0 0, 4px 4px;
}

@media (max-width: 768px) {
  .site-gradient-bg::after {
    opacity: 0.3;
    background-size: 4px 4px, 20px 20px, 20px 20px;
  }

  .site-grid-overlay {
    opacity: 0.16;
    background-size: 8px 8px, 14px 14px;
  }
}


/* Subtle monochrome bottom haze */
.site-gradient-bg::before {
  content: "";
  display: block;
  position: fixed;
  left: -10vw;
  right: -10vw;
  bottom: -20vh;
  height: 44vh;
  pointer-events: none;
  opacity: 0.34;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(179,179,179,0.22) 0%, rgba(99,99,99,0.12) 34%, transparent 68%),
    radial-gradient(ellipse at 18% 92%, rgba(179,179,179,0.10) 0%, transparent 54%),
    radial-gradient(ellipse at 82% 94%, rgba(99,99,99,0.12) 0%, transparent 56%);
  filter: blur(34px);
  transform: translateZ(0);
  mix-blend-mode: screen;
}

@media (max-width: 768px) {
  .site-gradient-bg::before {
    bottom: -16vh;
    height: 38vh;
    opacity: 0.26;
    filter: blur(28px);
  }
}


/* Visible fixed bottom atmospheric haze */
.site-grid-overlay::after {
  content: "";
  position: fixed;
  left: -8vw;
  right: -8vw;
  bottom: -10vh;
  height: 42vh;
  pointer-events: none;
  opacity: 0.72;
  background:
    radial-gradient(ellipse 76% 72% at 50% 100%, rgba(179,179,179,0.34) 0%, rgba(99,99,99,0.24) 34%, rgba(99,99,99,0.10) 56%, transparent 78%),
    radial-gradient(ellipse 40% 54% at 22% 100%, rgba(179,179,179,0.14) 0%, transparent 70%),
    radial-gradient(ellipse 40% 54% at 78% 100%, rgba(179,179,179,0.12) 0%, transparent 70%);
  filter: blur(28px);
  transform: translateZ(0);
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(to top, #000 0%, #000 44%, rgba(0,0,0,0.74) 62%, transparent 100%);
  mask-image: linear-gradient(to top, #000 0%, #000 44%, rgba(0,0,0,0.74) 62%, transparent 100%);
}

@media (max-width: 768px) {
  .site-grid-overlay::after {
    left: -18vw;
    right: -18vw;
    bottom: -8vh;
    height: 34vh;
    opacity: 0.56;
    filter: blur(22px);
  }
}


/* Dedicated visible bottom haze layer */
.site-grid-overlay::after {
  content: none;
  display: none;
}

body::after {
  content: "";
  position: fixed;
  left: 50%;
  bottom: -34px;
  width: 138vw;
  height: 420px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
  opacity: 1;
  background:
    radial-gradient(
      ellipse at center,
      rgba(179,179,179,0.86) 0%,
      rgba(179,179,179,0.48) 30%,
      rgba(99,99,99,0.28) 56%,
      rgba(0,0,0,0) 78%
    );
  filter: blur(26px);
  mix-blend-mode: screen;
}

@media (max-width: 768px) {
  body::after {
    bottom: -28px;
    width: 160vw;
    height: 330px;
    opacity: 0.94;
    filter: blur(24px);
  }
}


/* Dedicated global bottom haze element */
.bottom-haze {
  position: fixed;
  left: 50%;
  bottom: -72px;
  width: 140vw;
  height: 420px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
  opacity: 0.95;
  background:
    radial-gradient(
      ellipse at center,
      rgba(179,179,179,0.72) 0%,
      rgba(179,179,179,0.42) 30%,
      rgba(99,99,99,0.24) 54%,
      rgba(0,0,0,0) 76%
    );
  filter: blur(30px);
  mix-blend-mode: screen;
}

@media (max-width: 768px) {
  .bottom-haze {
    bottom: -58px;
    width: 160vw;
    height: 320px;
    opacity: 0.82;
    filter: blur(26px);
  }
}


/* Clean premium dark background correction */
:root {
  --color-primary-mono: #FFFFFF;
  --color-mono-primary: #FFFFFF;
  --color-mono-secondary: #FFFFFF;
  --color-mono-highlight: #B3B3B3;
  --gradient-mono-main: linear-gradient(135deg, #FFFFFF 0%, #B3B3B3 100%);
  --gradient-mono-strong: linear-gradient(135deg, #636363 0%, #FFFFFF 100%);
}

html,
body {
  background: #030303 !important;
}

body::before,
body::after,
.site-gradient-bg::before,
.site-gradient-bg::after,
.site-grid-overlay,
.site-grid-overlay::before,
.site-grid-overlay::after,
.bottom-haze,
.hero::before,
.contact::before,
.works::before,
.studio::before,
.process::before,
.contact::after {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
  filter: none !important;
  opacity: 0 !important;
  mix-blend-mode: normal !important;
}

.site-gradient-bg {
  display: block;
  background: #030303 !important;
  background-image: none !important;
  animation: none !important;
}

body,
.hero,
.works,
.studio,
.process,
.contact,
.services {
  background-color: transparent;
  background-image: none !important;
}

.process,
.contact,
.services,
.works,
.studio {
  background: transparent !important;
  backdrop-filter: none !important;
}

.section-line {
  border-top-color: rgba(255,255,255,0.06);
}

.site-header {
  background: rgba(3,3,3,0.78);
  border-bottom-color: rgba(255,255,255,0.075);
  box-shadow: 0 18px 52px rgba(0,0,0,0.34);
}

.site-header.is-scrolled {
  background: rgba(3,3,3,0.92);
  border-bottom-color: rgba(255,255,255,0.1);
}

.reel-frame,
.project-visual,
.service-card,
.studio-object {
  background: #111111 !important;
  border-color: rgba(255,255,255,0.06) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35) !important;
}

.project-card:hover .project-visual,
.service-card:hover {
  border-color: rgba(255,255,255,0.14) !important;
  box-shadow: 0 24px 70px rgba(0,0,0,0.42) !important;
}

.service-card::before,
.project-visual::before,
.studio-object::before,
.service-card::after,
.project-visual::after,
.studio-object::after {
  background-image: none !important;
  opacity: 0 !important;
}

.service-card {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  opacity: 0.3 !important;
}

.services__stage[data-active-service="product"] .service-card--one {
  background-image: url("MEDIA/SERVICES/product-cgi-01.png") !important;
}

.services__stage[data-active-service="product"] .service-card--two {
  background-image: url("MEDIA/SERVICES/motion-design-01.jpg") !important;
}

.services__stage[data-active-service="product"] .service-card--three {
  background-image: url("MEDIA/SERVICES/visual-direction-01.png") !important;
}

.services__stage[data-active-service="motion"] .service-card--one {
  background-image: url("MEDIA/SERVICES/motion-design-02.jpg") !important;
}

.services__stage[data-active-service="motion"] .service-card--two {
  background-image: url("MEDIA/SERVICES/product-cgi-02.png") !important;
}

.services__stage[data-active-service="motion"] .service-card--three {
  background-image: url("MEDIA/SERVICES/visual-direction-02.png") !important;
}

.services__stage[data-active-service="direction"] .service-card--one {
  background-image: url("MEDIA/SERVICES/motion-design-03.jpg") !important;
}

.services__stage[data-active-service="direction"] .service-card--two {
  background-image: url("MEDIA/SERVICES/product-cgi-03.png") !important;
}

.services__stage[data-active-service="direction"] .service-card--three {
  background-image: url("MEDIA/SERVICES/visual-direction-03.png") !important;
}

.section-kicker::before,
.section-kicker::after,
.section-kicker--services .kicker-line,
.section-kicker--works .kicker-line,
.section-kicker--process .kicker-line,
.section-kicker--contact .kicker-line {
  background: rgba(255,255,255,0.12) !important;
}

.process-step {
  border-top-color: rgba(255,255,255,0.08);
}

.process-step span {
  color: #B3B3B3;
  text-shadow: none;
}

.hero-statement,
.hero__intro p,
.section-copy,
.studio__description,
.process-step p,
.contact__note,
.contact__role,
.contact__location,
.footer__inner,
.tags span,
.hero__micro span {
  color: #B3B3B3;
}

.tags span,
.hero__micro span,
.skill-pills span,
.service-labels span {
  background: rgba(255,255,255,0.035);
  border-color: rgba(255,255,255,0.07);
  box-shadow: none;
}

.button {
  background: rgba(255,255,255,0.045);
  border-color: rgba(255,255,255,0.12);
  box-shadow: none;
}

.button::before {
  background: #FFFFFF;
}

.button:hover {
  border-color: rgba(179,179,179,0.45);
  box-shadow: 0 16px 42px rgba(0,0,0,0.36);
}

.button--solid {
  background: #FFFFFF;
  color: #030303;
  border-color: rgba(255,255,255,0.8);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.button--solid:hover {
  color: #FFFFFF;
}

.arrow-link:hover,
.project-card:hover .arrow-link,
.dot-menu:hover,
.menu-overlay__close:hover {
  background: #FFFFFF;
  color: #FFFFFF;
  border-color: rgba(179,179,179,0.42);
  box-shadow: 0 16px 42px rgba(0,0,0,0.38);
}

.contact__email {
  text-shadow: none;
}

.site-footer {
  background: transparent;
  border-top-color: rgba(255,255,255,0.08);
}


/* Ticker overflow containment */
.status-strip,
.status-strip__inner {
  overflow: hidden;
}


/* Global horizontal overflow guard */
html,
body {
  overflow-x: hidden;
}


/* Refined premium tramado background */
body::before {
  content: "" !important;
  display: block !important;
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18 !important;
  background-image:
    radial-gradient(circle, rgba(179,179,179,0.11) 0 0.48px, transparent 0.62px),
    radial-gradient(circle, rgba(99,99,99,0.08) 0 0.42px, transparent 0.58px) !important;
  background-size: 6px 6px, 12px 12px !important;
  background-position: 0 0, 3px 3px !important;
  background-color: transparent !important;
  filter: none !important;
  mix-blend-mode: soft-light !important;
}

.site-gradient-bg {
  background: #030303 !important;
  background-image: none !important;
}

.site-gradient-bg::before,
.site-gradient-bg::after,
.site-grid-overlay,
.site-grid-overlay::before,
.site-grid-overlay::after,
.bottom-haze,
body::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 768px) {
  body::before {
    opacity: 0.14 !important;
    background-size: 6px 6px, 14px 14px !important;
  }
}


/* Visible premium tramado technical fix */
html,
body {
  background-color: #030303 !important;
  overflow-x: hidden;
}

body {
  position: relative;
}

body::before {
  content: "" !important;
  display: block !important;
  position: fixed !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 2 !important;
  opacity: 0.32 !important;
  background-color: transparent !important;
  background-image: radial-gradient(circle, rgba(255,255,255,0.16) 1px, transparent 1px) !important;
  background-size: 7px 7px !important;
  background-position: 0 0 !important;
  background-repeat: repeat !important;
  mix-blend-mode: normal !important;
  filter: none !important;
}

body::after,
.site-gradient-bg::before,
.site-gradient-bg::after,
.site-grid-overlay,
.site-grid-overlay::before,
.site-grid-overlay::after,
.bottom-haze {
  content: none !important;
  display: none !important;
}

.site-gradient-bg {
  display: block !important;
  background-color: #030303 !important;
  background-image: none !important;
  animation: none !important;
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 3;
}

section,
.hero,
.services,
.works,
.studio,
.process,
.contact {
  background-color: transparent !important;
  background-image: none !important;
}

.hero::before,
.contact::before,
.works::before,
.studio::before,
.process::before,
.contact::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 768px) {
  body::before {
    opacity: 0.20 !important;
    background-size: 7px 7px !important;
  }
}


/* Restore clean top and isolate tramado */
body::before,
body::after,
.site-gradient-bg::before,
.site-gradient-bg::after,
.site-grid-overlay,
.site-grid-overlay::before,
.site-grid-overlay::after,
.bottom-haze,
.hero::before,
.hero::after {
  content: none !important;
  display: none !important;
  background: none !important;
  background-image: none !important;
  opacity: 0 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

html,
body,
.hero {
  background: #030303 !important;
  background-image: none !important;
}

.site-gradient-bg {
  display: block !important;
  background: #030303 !important;
  background-image: none !important;
  animation: none !important;
}

.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 100 !important;
  background: rgba(3,3,3,0.96) !important;
  backdrop-filter: none !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 16px 46px rgba(0,0,0,0.34) !important;
}

.site-header::before,
.site-header::after {
  content: none !important;
  display: none !important;
}

main,
.site-footer {
  position: relative;
  z-index: 3;
}

.hero,
.hero > * {
  position: relative;
}

.hero {
  z-index: 1;
}

.hero > * {
  z-index: 2;
}

.works,
.studio,
.process,
#contact {
  position: relative;
  overflow: hidden;
  background-color: transparent !important;
  background-image: none !important;
}

.works::before,
.studio::before,
.process::before,
#contact::before {
  content: "" !important;
  display: block !important;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.20 !important;
  background-image: radial-gradient(circle, rgba(255,255,255,0.14) 1px, transparent 1px) !important;
  background-size: 7px 7px !important;
  background-position: 0 0 !important;
  background-repeat: repeat !important;
  mix-blend-mode: normal !important;
  filter: none !important;
}

.works > *,
.studio > *,
.process > *,
#contact > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .works::before,
  .studio::before,
  .process::before,
  #contact::before {
    opacity: 0.18 !important;
  }
}

/* Sticky header overflow fix */
html,
body {
  overflow-x: clip !important;
  overflow-y: visible !important;
}

/* Layout bug fix: keep mobile menu overlay out of page flow */
.menu-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 150 !important;
  transform: translateY(-100%);
  visibility: hidden;
  pointer-events: none;
}

.menu-overlay.is-open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

/* Top spacing bug fix: keep header flush with viewport */
html,
body {
  margin: 0 !important;
  padding: 0 !important;
}

.site-gradient-bg,
.site-grid-overlay,
.bottom-haze,
.loader,
.menu-overlay {
  margin: 0 !important;
}

.site-header {
  margin: 0 !important;
  margin-top: 0 !important;
  top: 0 !important;
  transform: none !important;
}

/* Top spacing bug fix: keep hidden loader out of page flow */
.loader {
  position: fixed !important;
  inset: 0 !important;
  margin: 0 !important;
}

/* Interaction refinement: monochrome button states */
.button,
button,
a.button,
.arrow-link,
.dot-menu,
.menu-overlay__close {
  transition:
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.button,
.button--ghost,
.menu-overlay__close {
  background: rgba(255,255,255,0.045) !important;
  color: #FFFFFF !important;
  border-color: rgba(255,255,255,0.14) !important;
}

.button--solid {
  background: #FFFFFF !important;
  color: #030303 !important;
  border-color: #FFFFFF !important;
}

.button::before,
.button--solid::before {
  background: transparent !important;
  opacity: 0 !important;
  transform: none !important;
}

.button:hover,
.button:focus-visible,
.button:active,
.button.is-active,
.button--solid:hover,
.button--solid:focus-visible,
.button--solid:active,
.button--solid.is-active {
  background: #030303 !important;
  color: #FFFFFF !important;
  border-color: #FFFFFF !important;
  box-shadow: 0 16px 42px rgba(0,0,0,0.36) !important;
}

.button--ghost:hover,
.button--ghost:focus-visible,
.button--ghost:active,
.button--ghost.is-active,
.menu-overlay__close:hover,
.menu-overlay__close:focus-visible,
.menu-overlay__close:active,
.menu-overlay__close.is-active,
.arrow-link:hover,
.arrow-link:focus-visible,
.arrow-link:active,
.arrow-link.is-active,
.project-card:hover .arrow-link,
.dot-menu:hover,
.dot-menu:focus-visible,
.dot-menu:active,
.dot-menu.is-active {
  background: #FFFFFF !important;
  color: #030303 !important;
  border-color: #FFFFFF !important;
  box-shadow: 0 16px 42px rgba(0,0,0,0.32) !important;
}

/* Background pattern refinement: page texture below clean header */
body::before {
  content: "" !important;
  display: block !important;
  position: fixed !important;
  top: 92px !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  opacity: 0.20 !important;
  background-image:
    radial-gradient(circle, rgba(179,179,179,0.14) 0 1px, transparent 1.2px),
    radial-gradient(circle, rgba(99,99,99,0.12) 0 0.9px, transparent 1.12px) !important;
  background-size: 8.05px 8.05px, 16.1px 16.1px !important;
  background-position: 0 0, 4.025px 4.025px !important;
  background-repeat: repeat !important;
  mix-blend-mode: normal !important;
  filter: none !important;
}

.site-header {
  isolation: isolate;
  z-index: 100 !important;
  background: rgba(3,3,3,0.98) !important;
}

.site-header::before,
.site-header::after {
  content: none !important;
  display: none !important;
}

main,
.site-footer {
  position: relative;
  z-index: 3;
}

@media (max-width: 768px) {
  body::before {
    top: 74px !important;
    opacity: 0.18 !important;
    background-size: 8.05px 8.05px, 16.1px 16.1px !important;
  }
}

/* Hero video background */
.hero {
  position: relative;
  overflow: hidden;
  background: #000 !important;
}

.hero-video-bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 0 !important;
  pointer-events: none !important;
}

.hero-video-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  background: #000 !important;
  opacity: 0.7 !important;
}

.hero__grid {
  position: relative;
  z-index: 3 !important;
}

/* Hero video bottom fade */
.hero-video-bottom-fade {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  height: 42% !important;
  z-index: 2 !important;
  pointer-events: none !important;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.45) 48%,
    #000 100%
  ) !important;
}

.hero__grid {
  position: relative;
  z-index: 3 !important;
}

/* Featured Works: curated three-project composition */
@media (min-width: 1111px) {
  .work-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 86px 58px;
  }

  .work-grid .project-card:nth-child(1) {
    grid-column: 1 / span 7;
  }

  .work-grid .project-card:nth-child(2) {
    grid-column: 8 / span 5;
    margin-top: clamp(84px, 8vw, 128px);
  }

  .work-grid .project-card:nth-child(3) {
    grid-column: 3 / span 8;
    margin-top: 0;
  }
}

/* Featured Works: equal three-card layout */
@media (min-width: 1111px) {
  .work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 58px !important;
    align-items: start;
  }

  .work-grid .project-card,
  .work-grid .project-card:nth-child(1),
  .work-grid .project-card:nth-child(2),
  .work-grid .project-card:nth-child(3) {
    grid-column: auto !important;
    margin-top: 0 !important;
    width: 100%;
  }

  .work-grid .project-visual,
  .work-grid .project-card--large .project-visual,
  .work-grid .project-card--wide .project-visual {
    height: 360px !important;
    border-radius: 24px !important;
  }
}

/* Featured Works project detail overlay */
.project-card[data-project] {
  cursor: pointer;
}

.project-card[data-project]:focus-visible {
  outline: 1px solid rgba(255,255,255,0.72);
  outline-offset: 10px;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 42px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 360ms cubic-bezier(0.16, 1, 0.3, 1), visibility 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

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

.project-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1600px, 94vw);
  max-height: min(88vh, 980px);
  overflow: auto;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  background: #050505;
  color: #fff;
  box-shadow: 0 36px 120px rgba(0,0,0,0.68), 0 0 70px rgba(179,179,179,0.08);
  opacity: 0;
  transition: opacity 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-modal.is-open .project-modal__panel {
  opacity: 1;
}

.project-modal__close {
  position: sticky;
  top: 18px;
  left: calc(100% - 112px);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin: 18px 18px -60px auto;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: rgba(3,3,3,0.78);
  color: #fff;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.project-modal__close:hover,
.project-modal__close:focus-visible {
  background: #fff;
  color: #030303;
}

.project-modal__hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(320px, 48vw, 560px);
  margin: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: radial-gradient(circle at 50% 68%, rgba(179,179,179,0.18), transparent 42%), linear-gradient(135deg, #161616, #050505);
  overflow: hidden;
}

.project-modal__hero--gumlet {
  min-height: 0;
  aspect-ratio: auto;
  background: #000;
}

.project-modal__gumlet-frame {
  width: 100%;
  background: #000;
}

.project-modal__gumlet-frame iframe {
  display: block;
}

.project-modal__hero img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-modal__hero video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 2;
  background: #000;
  object-fit: contain;
}

.project-modal__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  gap: clamp(34px, 5vw, 72px);
  padding: clamp(28px, 5vw, 72px);
}

.project-modal__eyebrow {
  margin: 0 0 22px;
  color: #B3B3B3;
  text-transform: uppercase;
  font-size: 0.82rem;
  line-height: 1.2;
  font-weight: 900;
}

.project-modal__intro h2 {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.4vw, 20px);
  margin: 0 0 24px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0;
}

.project-modal__title-main {
  display: block;
  font-size: clamp(3.2rem, 8vw, 7.8rem);
  line-height: 0.84;
  font-weight: 1000;
}

.project-modal__title-subtitle {
  display: block;
  max-width: 100%;
  font-size: clamp(1.25rem, 2.35vw, 2.55rem);
  line-height: 0.95;
  font-weight: 1000;
  white-space: nowrap;
}

.project-modal__intro p {
  max-width: 760px;
  margin: 0;
  color: #B3B3B3;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.45;
}

.project-modal__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.project-modal__tags span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  padding: 0 12px;
  color: #B3B3B3;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 900;
}

.project-modal__meta {
  margin: 0;
  display: grid;
  align-content: start;
  gap: 22px;
  padding-top: 6px;
}

.project-modal__meta div {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 14px;
}

.project-modal__meta dt {
  color: #636363;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 900;
}

.project-modal__meta dd {
  margin: 8px 0 0;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.88rem;
  line-height: 1.25;
  font-weight: 800;
}

.project-modal__sections {
  grid-column: 1 / -1;
  display: grid;
  gap: clamp(22px, 4vw, 44px);
  margin-top: clamp(18px, 3vw, 34px);
}

.project-modal__case-section {
  position: relative;
  display: grid;
  gap: clamp(20px, 4vw, 52px);
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.045), rgba(255,255,255,0.012)), #080808;
  overflow: hidden;
}

.project-modal__case-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 80% 20%, rgba(179,179,179,0.09), transparent 32%);
  opacity: 0.75;
}

.project-modal__case-section > * {
  position: relative;
  z-index: 1;
}

.project-modal__section-number,
.project-modal__section-kicker {
  color: #636363;
  text-transform: uppercase;
  font-size: 0.76rem;
  line-height: 1;
  font-weight: 900;
}

.project-modal__case-section h3 {
  margin: 0 0 14px;
  color: #fff;
  text-transform: uppercase;
  font-size: clamp(1.55rem, 3vw, 3.35rem);
  line-height: 0.88;
  font-weight: 1000;
  letter-spacing: 0;
}

.project-modal__case-section p {
  max-width: 760px;
  margin: 0;
  color: #B3B3B3;
  font-size: clamp(0.96rem, 1.25vw, 1.1rem);
  line-height: 1.5;
}

.project-modal__case-section p + p {
  margin-top: 14px;
}

.project-modal__section-copy {
  display: grid;
  align-content: center;
  gap: 16px;
}

.project-modal__media-frame {
  position: relative;
  min-height: clamp(220px, 30vw, 420px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 78%, rgba(179,179,179,0.16), transparent 42%),
    linear-gradient(135deg, #181818, #070707 68%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.025), 0 24px 70px rgba(0,0,0,0.36);
  overflow: hidden;
}

.project-modal__media-frame img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-modal__media-frame video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-modal__media-frame:has(img),
.project-modal__media-frame:has(video) {
  background: #080808;
}

.project-modal__media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 0.8px, transparent 0.9px);
  background-size: 9px 9px;
  opacity: 0.12;
}

.project-modal__media-frame span {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  color: rgba(255,255,255,0.62);
  text-transform: uppercase;
  font-size: 0.68rem;
  line-height: 1.1;
  font-weight: 900;
}

.project-modal__media-frame--tall {
  min-height: clamp(360px, 48vw, 620px);
}

.project-modal__media-frame--wide {
  min-height: clamp(280px, 36vw, 520px);
}

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

.project-modal__motion-grid .project-modal__media-frame {
  min-height: clamp(240px, 28vw, 420px);
}

.project-modal__case-section--overview {
  grid-template-columns: minmax(54px, 0.12fr) minmax(0, 1fr);
  background: #050505;
}

.project-modal__case-section--overview h3 {
  max-width: 920px;
  font-size: clamp(2.4rem, 6vw, 6.5rem);
}

.project-modal__case-section--split,
.project-modal__case-section--outcome {
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  align-items: stretch;
}

.project-modal__case-section--moodboard,
.project-modal__case-section--gallery,
.project-modal__case-section--wide-media,
.project-modal__case-section--applications {
  grid-template-columns: 1fr;
}

.project-modal__moodboard {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: minmax(150px, 12vw);
  gap: clamp(14px, 2vw, 24px);
}

.project-modal__moodboard .project-modal__media-frame:first-child {
  grid-column: span 4;
  grid-row: span 2;
}

.project-modal__moodboard .project-modal__media-frame {
  min-height: 0;
}

.project-modal__moodboard .project-modal__media-frame:nth-child(2),
.project-modal__moodboard .project-modal__media-frame:nth-child(3) {
  grid-column: span 2;
}

.project-modal__moodboard .project-modal__media-frame:nth-child(4) {
  grid-column: span 3;
  grid-row: span 2;
}

.project-modal__moodboard .project-modal__media-frame:nth-child(5),
.project-modal__moodboard .project-modal__media-frame:nth-child(6) {
  grid-column: span 3;
}

.project-modal__moodboard .project-modal__media-frame:nth-child(7),
.project-modal__moodboard .project-modal__media-frame:nth-child(8) {
  grid-column: span 3;
  min-height: clamp(180px, 18vw, 280px);
}

.project-modal__case-section--statement {
  min-height: clamp(360px, 48vw, 620px);
  align-content: center;
  background: #030303;
}

.project-modal__case-section--statement h3 {
  margin-bottom: clamp(18px, 3vw, 34px);
}

.project-modal__case-section--statement p {
  max-width: 780px;
  color: rgba(255,255,255,0.72);
  text-transform: none;
  font-size: clamp(1rem, 1.25vw, 1.35rem);
  line-height: 1.55;
  font-weight: 500;
}

.project-modal__visual-grid {
  --key-visual-gap: clamp(18px, 2.2vw, 32px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--key-visual-gap);
  align-items: stretch;
}

.project-modal__visual-grid .project-modal__media-frame {
  flex: 0 1 calc((100% - var(--key-visual-gap) - var(--key-visual-gap)) / 3);
  min-height: 0;
  border-radius: 18px;
}

.project-modal__visual-grid .project-modal__media-frame--aspect {
  aspect-ratio: 16 / 9;
}

.project-modal__visual-grid .project-modal__media-frame--aspect img {
  object-fit: cover;
  object-position: center;
}

.project-modal__visual-grid .project-modal__media-frame span {
  display: none;
}

.project-modal__application-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
}

.project-modal__application-list span {
  display: grid;
  min-height: clamp(120px, 16vw, 180px);
  place-items: end start;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: #111;
  color: #fff;
  text-transform: uppercase;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  line-height: 0.95;
  font-weight: 1000;
}

body.project-modal-open {
  overflow: hidden !important;
}

@media (max-width: 820px) {
  .project-modal {
    padding: 12px;
  }

  .project-modal__panel {
    max-height: 92vh;
    border-radius: 16px;
  }

  .project-modal__hero {
    min-height: 280px;
  }

  .project-modal__hero--gumlet {
    min-height: 0;
  }

  .project-modal__body {
    grid-template-columns: 1fr;
    padding: 28px 20px 24px;
  }

  .project-modal__title-subtitle {
    white-space: normal;
  }

  .project-modal__case-section,
  .project-modal__case-section--overview,
  .project-modal__case-section--split,
  .project-modal__case-section--outcome {
    grid-template-columns: 1fr;
  }

  .project-modal__moodboard,
  .project-modal__motion-grid,
  .project-modal__application-list {
    grid-template-columns: 1fr;
  }

  .project-modal__visual-grid {
    display: flex;
  }

  .project-modal__moodboard .project-modal__media-frame:first-child,
  .project-modal__moodboard .project-modal__media-frame:nth-child(2),
  .project-modal__moodboard .project-modal__media-frame:nth-child(3),
  .project-modal__moodboard .project-modal__media-frame:nth-child(4),
  .project-modal__moodboard .project-modal__media-frame:nth-child(5),
  .project-modal__moodboard .project-modal__media-frame:nth-child(6),
  .project-modal__moodboard .project-modal__media-frame:nth-child(7),
  .project-modal__moodboard .project-modal__media-frame:nth-child(8) {
    grid-column: auto;
    grid-row: auto;
  }

  .project-modal__visual-grid .project-modal__media-frame {
    flex-basis: calc((100% - var(--key-visual-gap)) / 2);
  }

  .project-modal__moodboard .project-modal__media-frame {
    min-height: clamp(220px, 62vw, 340px);
  }

  .project-modal__case-section--statement p {
    font-size: clamp(1rem, 4.5vw, 1.2rem);
  }
}

@media (max-width: 560px) {
  .project-modal__visual-grid {
    display: flex;
  }

  .project-modal__visual-grid .project-modal__media-frame {
    flex-basis: 100%;
  }
}
