
:root {
  --background: #101112;
  --foreground: #f2f3ec;
  --muted: #a4a7a3;
  --accent: #d8fd5a;
  --line: #323532;
  color-scheme: dark;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}
.wrap {
  max-width: 1440px;
  margin: auto;
  padding-left: 5.5%;
  padding-right: 5.5%;
}
.header {
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  font-weight: 700;
  font-size: 27px;
  letter-spacing: -1.2px;
}
.brand span {
  color: var(--accent);
}
nav {
  display: flex;
  gap: 38px;
  font-size: 14px;
}
nav a:last-child {
  color: var(--accent);
}
.hero {
  padding-top: 86px;
}
.eyebrow {
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 12px;
  letter-spacing: 1.4px;
  line-height: 1.6;
  color: var(--muted);
}
h1 {
  font-size: clamp(56px, 7.9vw, 118px);
  line-height: 1.02;
  letter-spacing: -0.066em;
  font-weight: 500;
  margin: 35px 0 40px;
}
h1 em {
  font-family: Georgia, serif;
  color: var(--accent);
  font-weight: 400;
  letter-spacing: -0.065em;
}
.hero-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.hero-bottom p {
  font-size: 20px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}
.round-link {
  display: flex;
  gap: 25px;
  align-items: center;
  font-size: 14px;
}
.round-link span,
.circle {
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-size: 23px;
}
.signal {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 120px;
  border-bottom: 1px solid var(--line);
  margin-top: 30px;
  overflow: hidden;
}
.signal i {
  flex: 1;
  min-width: 2px;
  background: var(--accent);
  opacity: 0.5;
}
.work {
  padding-top: 65px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
h2 {
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -0.045em;
  margin: 0;
}
.feature {
  display: block;
  position: relative;
  overflow: hidden;
}
.feature > img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.feature:after {
  content: '';
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  pointer-events: none;
}
.feature-caption {
  position: absolute;
  bottom: 36px;
  left: 36px;
  right: 36px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.feature-caption .eyebrow {
  color: #e2e5d9;
}
.feature-caption h3 {
  font-size: 36px;
  letter-spacing: -1.2px;
  font-weight: 500;
  margin: 8px 0 0;
}
.feature:hover > img {
  transform: scale(1.025);
}
.feature .circle {
  background: var(--accent);
  border: 0;
  color: #111;
}
.about {
  padding-top: 110px;
  padding-bottom: 100px;
}
.about h2 {
  margin: 30px 0;
}
.about > p:last-child {
  max-width: 640px;
  line-height: 1.8;
  font-size: 20px;
  color: var(--muted);
}
footer {
  padding-top: 65px;
  padding-bottom: 50px;
  border-top: 1px solid var(--line);
}
footer h2 {
  margin: 25px 0;
}
footer > a {
  color: var(--accent);
  font-size: 20px;
}
@media (max-width: 650px) {
  .header {
    height: 84px;
  }
  .brand {
    font-size: 23px;
  }
  nav {
    gap: 18px;
  }
  nav a:first-child {
    display: none;
  }
  .hero {
    padding-top: 55px;
  }
  .eyebrow {
    font-size: 12px;
    letter-spacing: 1px;
  }
  h1 {
    font-size: clamp(47px, 10vw, 65px);
    margin: 28px 0;
  }
  .hero-bottom {
    display: block;
  }
  .hero-bottom p {
    font-size: 18px;
  }
  .round-link {
    margin-top: 25px;
  }
  .signal {
    height: 95px;
    gap: 3px;
  }
  .section-heading {
    display: block;
  }
  .section-heading h2 {
    margin-top: 16px;
  }
  .feature > img {
    height: 370px;
  }
  .feature-caption {
    left: 20px;
    right: 20px;
    bottom: 22px;
  }
  .feature-caption h3 {
    font-size: 28px;
    max-width: 220px;
  }
  .feature-caption .eyebrow {
    max-width: 230px;
  }
  .about {
    padding-top: 70px;
    padding-bottom: 55px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
.skip {
  position: fixed;
  top: 8px;
  left: 10px;
  z-index: 20;
  background: var(--accent);
  color: #111;
  padding: 12px;
  transform: translateY(-150%);
}
.skip:focus {
  transform: none;
}
.project-description {
  color: var(--muted);
  line-height: 1.65;
  margin: 16px 0 0;
  max-width: 760px;
}
.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 58px 30px;
  margin-top: 55px;
}
.project-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #202320;
}
.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.project-image:hover img {
  transform: scale(1.035);
}
.project > .eyebrow {
  margin: 22px 0 10px;
}
h3 {
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.2;
  margin: 0;
}
.project h3 a {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.project h3 span {
  color: var(--accent);
}
.more-work {
  margin-top: 100px;
}
.more-work > h2 {
  margin-bottom: 35px;
}
.work-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 34px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.work-row > img {
  width: 180px;
  height: 135px;
  object-fit: cover;
}
.work-row .eyebrow {
  margin: 0 0 10px;
}
.work-row p:not(.eyebrow) {
  color: var(--muted);
  max-width: 680px;
  line-height: 1.65;
  margin: 12px 0;
}
.text-links {
  display: flex;
  gap: 14px 25px;
  flex-wrap: wrap;
}
.text-links a,
.text-link {
  font-size: 14px;
  color: var(--accent);
  display: inline-block;
  line-height: 1.8;
}
.text-links a:hover,
.text-link:hover,
.socials a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.screen-work {
  padding-top: 95px;
}
.film-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.film-grid h3 {
  font-size: 28px;
}
.film-grid .eyebrow {
  margin: 26px 0 10px;
}
.film-grid .text-link {
  margin-top: 14px;
}
.media {
  min-width: 0;
}
.media iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  background: #1c201e;
  border: 1px solid var(--line);
}
.media-fallback {
  display: inline-block;
  color: var(--muted);
  font-size: 14px;
  margin-top: 11px;
}
.music iframe {
  aspect-ratio: auto;
  height: 350px;
}
.draft-link {
  margin-top: 75px;
  padding: 35px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.draft-link .eyebrow {
  margin-top: 0;
}
.draft-link .circle {
  color: var(--accent);
  flex-shrink: 0;
}
.about {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
}
.about h2 {
  line-height: 1.15;
}
.about h2 em,
footer h2 em {
  font-family: Georgia, serif;
  color: var(--accent);
  font-weight: 400;
}
.about p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 580px;
}
.about figure {
  margin: 0;
  align-self: center;
}
.about figure img {
  width: 100%;
  max-height: 640px;
  object-fit: cover;
  display: block;
}
.about figcaption {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
  font-family: ui-monospace, monospace;
}
.facts {
  display: flex;
  gap: 42px;
  margin-top: 35px;
}
.facts strong {
  font-size: 46px;
  letter-spacing: -2px;
  font-weight: 500;
}
.facts span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 7px;
}
.contact-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.contact-heading h2 {
  font-size: clamp(44px, 6vw, 84px);
}
.contact-cta {
  display: flex;
  gap: 30px;
  align-items: center;
  background: var(--accent);
  padding: 20px 28px;
  border-radius: 100px;
  color: #151714;
  font-size: 18px;
  white-space: nowrap;
}
.contact-note {
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  margin-top: 80px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.socials {
  display: flex;
  gap: 20px;
  font-size: 14px;
  flex-wrap: wrap;
}
.copyright {
  font-size: 12px;
  color: var(--muted);
}
.detail {
  padding-top: 40px;
}
.back {
  font-size: 14px;
  color: var(--muted);
  display: inline-block;
  margin-bottom: 65px;
}
.detail > h1 {
  font-size: clamp(46px, 6vw, 84px);
  max-width: 1050px;
  margin: 25px 0;
}
.detail-intro {
  font-size: 22px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 800px;
}
.role-label {
  font-family: ui-monospace, monospace;
  font-size: 14px;
  color: var(--accent);
  margin: 30px 0 40px;
  line-height: 1.7;
}
.detail-cover {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  display: block;
}
.detail-copy {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 70px;
  margin: 70px 0 90px;
}
.detail-copy p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0 0 22px;
}
.detail-copy h2 {
  font-size: 36px;
}
.media-section {
  margin-bottom: 65px;
}
.media-section > h2 {
  margin: 15px 0 30px;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 35px 25px;
}
.video-grid > .media:only-child {
  grid-column: 1/-1;
}
.bottom-back {
  margin: 15px 0 70px;
}
@media (max-width: 900px) {
  .film-grid {
    grid-template-columns: 1fr;
  }
  .film-grid article {
    max-width: 650px;
  }
  .about {
    gap: 35px;
  }
  .footer-bottom {
    align-items: start;
  }
  .socials {
    gap: 18px;
  }
  .detail-copy {
    gap: 35px;
  }
}
@media (max-width: 650px) {
  .project-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 35px;
  }
  .project-image {
    aspect-ratio: 16/10;
  }
  .work-row {
    grid-template-columns: 95px 1fr;
    gap: 18px;
  }
  .work-row > img {
    width: 95px;
    height: 95px;
  }
  .work-row h3 {
    font-size: 23px;
  }
  .work-row .eyebrow {
    font-size: 12px;
  }
  .more-work {
    margin-top: 65px;
  }
  .screen-work {
    padding-top: 65px;
  }
  .draft-link h3 {
    font-size: 25px;
  }
  .about {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about figure img {
    max-height: 500px;
    object-position: 50% 40%;
  }
  .facts {
    gap: 30px;
  }
  .contact-heading {
    display: block;
  }
  .contact-cta {
    width: max-content;
    margin: 30px 0;
  }
  .footer-bottom {
    margin-top: 45px;
    display: block;
  }
  .socials {
    margin: 30px 0;
  }
  .copyright {
    display: block;
  }
  .detail-copy {
    grid-template-columns: 1fr;
    gap: 25px;
    margin: 40px 0 55px;
  }
  .detail-intro {
    font-size: 19px;
  }
  .detail-cover {
    min-height: 220px;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  .back {
    margin-bottom: 40px;
  }
  .detail > h1 {
    overflow-wrap: anywhere;
  }
  .music iframe {
    height: 350px;
  }
}

/* Motion system: progressive, content-led and disabled by reduced-motion. */
:root {
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}
@view-transition {
  navigation: auto;
}
::view-transition-old(root) {
  animation: page-out 0.42s ease both;
}
::view-transition-new(root) {
  animation: page-in 0.72s var(--ease-out) both;
}
::view-transition-group(site-brand) {
  animation-duration: 0.65s;
}
::view-transition-group(*) {
  animation-timing-function: var(--ease-out);
}
.header {
  animation: header-in 0.85s var(--ease-out) both;
}
.hero-kicker {
  animation: hero-in 0.8s 0.08s var(--ease-out) both;
}
.hero h1 > span {
  display: inline-block;
  animation: hero-in 1.05s 0.12s var(--ease-out) both;
}
.hero h1 > span + span {
  animation-delay: 0.2s;
}
.hero-bottom {
  animation: hero-in 0.9s 0.34s var(--ease-out) both;
}
.signal {
  animation: hero-in 1s 0.46s var(--ease-out) both;
}
.signal i {
  transform-origin: center;
  animation: signal-wave 3.2s ease-in-out infinite alternate;
}
.feature {
  height: 540px;
}
.feature > img {
  height: calc(100% + 64px);
  margin-top: -32px;
  transform: translate3d(0, var(--parallax-y, 0), 0)
    scale(var(--image-scale, 1.045));
  transition: transform 0.9s var(--ease-out);
  will-change: transform;
}
.feature:hover > img {
  --image-scale: 1.085;
}
.project-image img {
  height: calc(100% + 44px);
  margin-top: -22px;
  transform: translate3d(0, var(--parallax-y, 0), 0)
    scale(var(--image-scale, 1.04));
  transition: transform 0.85s var(--ease-out);
  will-change: transform;
}
.project-image:hover img {
  --image-scale: 1.09;
}
.feature .circle,
.draft-link .circle,
.contact-cta {
  transition:
    transform 0.5s var(--ease-out),
    background-color 0.3s,
    color 0.3s;
}
.feature:hover .circle,
.draft-link:hover .circle {
  transform: rotate(45deg) scale(1.08);
}
.contact-cta:hover {
  transform: scale(1.045);
}
.row-image {
  width: 180px;
  height: 135px;
  overflow: hidden;
}
.row-image img {
  width: 100%;
  height: calc(100% + 32px);
  margin-top: -16px;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04);
  will-change: transform;
}
.portrait-frame {
  width: 100%;
  height: min(640px, 65vw);
  overflow: hidden;
}
.about figure img {
  width: 100%;
  height: calc(100% + 70px);
  max-height: none;
  margin-top: -35px;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.035);
  will-change: transform;
}
.detail-heading {
  animation: detail-heading-in 0.9s 0.08s var(--ease-out) both;
}
.detail-heading .back {
  margin-bottom: 65px;
}
.detail-heading h1 {
  font-size: clamp(46px, 6vw, 84px);
  max-width: 1050px;
  margin: 25px 0;
}
.detail-cover-shell {
  width: 100%;
  height: min(620px, 54vw);
  min-height: 300px;
  overflow: hidden;
  animation: cover-in 1.1s 0.18s var(--ease-out) both;
}
.detail-cover {
  width: 100%;
  height: calc(100% + 90px);
  max-height: none;
  margin-top: -45px;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.035);
  will-change: transform;
}
html.js [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  transition:
    opacity 0.8s var(--ease-out) var(--reveal-delay, 0ms),
    transform 1s var(--ease-out) var(--reveal-delay, 0ms);
}
html.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}
@keyframes header-in {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(36px);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
@keyframes detail-heading-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes cover-in {
  from {
    opacity: 0.35;
    transform: scale(0.94);
    border-radius: 28px;
  }
  to {
    opacity: 1;
    transform: none;
    border-radius: 0;
  }
}
@keyframes signal-wave {
  0% {
    transform: scaleY(0.58);
    opacity: 0.34;
  }
  50% {
    transform: scaleY(1.08);
    opacity: 0.66;
  }
  100% {
    transform: scaleY(0.76);
    opacity: 0.46;
  }
}
@keyframes page-out {
  to {
    opacity: 0;
    filter: blur(4px);
    transform: scale(0.985);
  }
}
@keyframes page-in {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: scale(1.012);
  }
  to {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
@media (max-width: 650px) {
  .feature {
    height: 370px;
  }
  .row-image {
    width: 95px;
    height: 95px;
  }
  .portrait-frame {
    height: 500px;
  }
  .about figure img {
    max-height: none;
  }
  .detail-cover-shell {
    height: 280px;
    min-height: 220px;
  }
  .detail-heading .back {
    margin-bottom: 40px;
  }
}
@media (prefers-reduced-motion: reduce) {
  @view-transition {
    navigation: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
  html.js [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .feature > img,
  .project-image img,
  .row-image img,
  .about figure img,
  .detail-cover {
    transform: none !important;
  }
}

/* Alignment and optical centering. */
.arrow-icon {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
nav,
nav a,
.socials,
.socials a,
.text-links a,
.text-link,
.media-fallback {
  align-items: center;
}
nav a,
.socials a,
.text-links a,
.text-link,
.media-fallback {
  display: inline-flex;
  gap: 0.34em;
  line-height: 1;
}
nav {
  line-height: 1;
}
nav a {
  min-height: 28px;
}
.circle,
.round-link > span {
  padding: 0;
  line-height: 0;
}
.circle .arrow-icon,
.round-link .arrow-icon {
  width: 18px;
  height: 18px;
}
.contact-cta .arrow-icon {
  width: 17px;
  height: 17px;
}
.socials {
  align-items: center;
}
.socials a {
  min-height: 24px;
}

/* A single 16:9 presentation for game artwork, with restrained focal cropping. */
.artwork-frame {
  background: #171918;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.feature.artwork-frame,
.project-image.artwork-frame,
.detail-cover-shell.artwork-frame {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.row-image.artwork-frame {
  width: 180px;
  height: auto;
  aspect-ratio: 16/9;
}
.portrait-frame.artwork-frame {
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
}
.artwork-frame > img,
.feature.artwork-frame > img,
.project-image.artwork-frame > img,
.row-image.artwork-frame > img,
.portrait-frame.artwork-frame > img,
.detail-cover-shell.artwork-frame > img {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  object-fit: cover;
  object-position: center;
  filter: none;
  transform: none;
  transition: filter 0.5s var(--ease-out);
  will-change: auto;
}
.feature.artwork-frame:hover > img,
.project-image.artwork-frame:hover > img {
  transform: none;
  filter: brightness(0.88) saturate(1.08);
}
.feature.artwork-frame::after {
  z-index: 1;
}
.feature.artwork-frame .feature-caption {
  z-index: 2;
}
.detail-cover-shell.artwork-frame {
  min-height: 0;
}

@media (max-width: 650px) {
  .row-image.artwork-frame {
    width: 95px;
    height: auto;
  }
  .portrait-frame.artwork-frame {
    height: auto;
  }
  .detail-cover-shell.artwork-frame {
    height: auto;
    min-height: 0;
  }
  .socials {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 4px;
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .artwork-frame > img,
  .feature.artwork-frame:hover > img,
  .project-image.artwork-frame:hover > img {
    transform: none !important;
  }
}
