@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inconsolata:wght@400;500;700&display=swap');

@font-face {
  font-family: 'Imperfetto Four';
  src: url('assets/4-imperfetto-four.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #050506;
  --panel: rgba(6, 7, 9, 0.88);
  --line: rgba(210, 212, 220, 0.45);
  --text: rgba(230, 230, 226, 0.9);
  --muted: rgba(185, 188, 200, 0.68);
  --quiet: rgba(185, 188, 200, 0.42);
  --blue: #8ea8ff;
  --magenta: #f04aa7;
  --yellow: #efe6ad;
  --theme-accent: var(--magenta);
  --theme-accent-rgb: 240, 74, 167;
  --menu-width: 16.8rem;
  --frame-pad: 1.85rem;
  --content-pad: 2.1rem;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
  color: var(--text);
  font-family: 'Inconsolata', Consolas, 'Liberation Mono', monospace;
  scrollbar-color: rgba(235, 235, 230, 0.9) rgba(0, 0, 0, 0.96);
}

body {
  min-height: 100vh;
  margin: 0;
  background: radial-gradient(circle at 62% 36%, rgba(78, 91, 122, 0.16), transparent 34rem), #050506;
  color: var(--text);
}

body.has-custom-cursor,
body.has-custom-cursor * {
  cursor: none !important;
}

.custom-cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 0.9rem;
  height: 1.08rem;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-100px, -100px, 0);
  transition: opacity 120ms ease;
}

.custom-cursor::before,
.custom-cursor::after {
  content: "";
  position: absolute;
  clip-path: polygon(0 0, 0 100%, 100% 62%);
  transition: background-color 120ms ease;
}

.custom-cursor::before {
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 0.25rem 0.8rem rgba(0, 0, 0, 0.28));
}

.custom-cursor::after {
  left: 1px;
  top: 2px;
  width: calc(100% - 3px);
  height: calc(100% - 4px);
  background: rgba(0, 0, 0, 0.92);
}

.custom-cursor.is-inverted::before {
  background: rgba(0, 0, 0, 0.92);
}

.custom-cursor.is-inverted::after {
  background: rgba(255, 255, 255, 0.94);
}

.custom-cursor.is-visible {
  opacity: 1;
}

body::selection {
  background: rgba(var(--theme-accent-rgb), 0.45);
}

body::-webkit-scrollbar,
html::-webkit-scrollbar,
.site-nav::-webkit-scrollbar,
.lightbox-panel::-webkit-scrollbar {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 0;
}

body::-webkit-scrollbar-track,
html::-webkit-scrollbar-track,
.site-nav::-webkit-scrollbar-track,
.lightbox-panel::-webkit-scrollbar-track,
body::-webkit-scrollbar-track-piece,
html::-webkit-scrollbar-track-piece,
.site-nav::-webkit-scrollbar-track-piece,
.lightbox-panel::-webkit-scrollbar-track-piece {
  background: rgba(0, 0, 0, 0.96);
  border-radius: 0;
}

body::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb,
.site-nav::-webkit-scrollbar-thumb,
.lightbox-panel::-webkit-scrollbar-thumb {
  background: rgba(235, 235, 230, 0.9);
  border: 2px solid rgba(0, 0, 0, 0.96);
  border-radius: 0;
}

body::-webkit-scrollbar-thumb:window-inactive,
html::-webkit-scrollbar-thumb:window-inactive,
.site-nav::-webkit-scrollbar-thumb:window-inactive,
.lightbox-panel::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(235, 235, 230, 0.62);
  border-radius: 0;
}

body::-webkit-scrollbar-corner,
html::-webkit-scrollbar-corner,
.site-nav::-webkit-scrollbar-corner,
.lightbox-panel::-webkit-scrollbar-corner {
  background: rgba(0, 0, 0, 0.96);
  border-radius: 0;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.site-frame {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
  width: var(--menu-width);
  padding: var(--frame-pad);
  border-right: 1px solid rgba(210, 212, 220, 0.22);
  background: linear-gradient(90deg, rgba(3, 3, 4, 0.96), rgba(3, 3, 4, 0.78));
}

.site-brand {
  display: block;
  width: fit-content;
  max-width: 100%;
  color: inherit;
  text-decoration: none;
}

.site-name {
  margin: 0;
  color: rgba(222, 222, 218, 0.92);
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 3.35rem;
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.site-brand.is-brand-hovered .site-name {
  color: var(--theme-accent);
}

.site-role {
  margin: 0.5rem 0 0;
  color: var(--theme-accent);
  font-family: 'Imperfetto Four', 'Brush Script MT', cursive;
  font-size: 1.55rem;
  line-height: 0.92;
}

.site-rule {
  width: min(100%, 17.4rem);
  height: 0.18rem;
  margin: 1rem 0 1.4rem;
  background: rgba(214, 214, 208, 0.78);
  box-shadow: 0 0 8px rgba(214, 214, 208, 0.28);
}

.site-nav {
  display: grid;
  gap: 1.16rem;
  color: rgba(202, 202, 198, 0.78);
  font-size: 0.78rem;
  line-height: 1.12;
}

.nav-title {
  display: block;
  margin-bottom: 0.1rem;
  color: rgba(225, 225, 220, 0.9);
  font-size: 1.08em;
  font-weight: 700;
  font-style: italic;
}

.site-nav a {
  display: table;
  margin-left: 0.5rem;
  color: inherit;
  text-decoration: none;
}

.site-nav .nav-title {
  display: table;
  margin-left: 0;
  text-decoration: none;
}

.site-nav .nav-home-link {
  display: none;
}

.site-nav a[aria-current='page'],
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--theme-accent);
  outline: none;
}

.menu-toggle {
  position: fixed;
  z-index: 40;
  display: none;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(222, 222, 218, 0.88);
  transition: color 140ms ease, transform 120ms ease;
}

.menu-toggle span {
  display: block;
  width: 1.55rem;
  height: 0.16rem;
  margin: 0.11rem 0;
  background: currentColor;
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.menu-toggle:active,
body.menu-open .menu-toggle {
  color: var(--theme-accent);
  outline: none;
}

.menu-toggle:active {
  transform: translateY(2px) scale(0.96);
}

.page-main {
  min-height: 100vh;
  margin-left: var(--menu-width);
  padding: var(--frame-pad) var(--content-pad) 0;
}

.page-header {
  max-width: 64rem;
  margin-bottom: clamp(1.7rem, 4vw, 3.6rem);
}

.page-kicker {
  margin: 0 0 0.35rem;
  color: var(--theme-accent);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-title {
  margin: 0;
  color: rgba(235, 235, 232, 0.94);
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.86;
  text-transform: uppercase;
}

.page-intro {
  max-width: 42rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.25rem);
}

.page-breadcrumb,
.theater-breadcrumb,
.hire-reel-breadcrumb {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.theater-breadcrumb {
  margin-bottom: 0;
  padding-left: 0;
  margin-left: -0.45rem;
}

.page-breadcrumb a,
.theater-breadcrumb a,
.hire-reel-breadcrumb a {
  color: var(--theme-accent);
  text-decoration: none;
}

.page-breadcrumb a:hover,
.page-breadcrumb a:focus-visible,
.theater-breadcrumb a:hover,
.theater-breadcrumb a:focus-visible,
.hire-reel-breadcrumb a:hover,
.hire-reel-breadcrumb a:focus-visible {
  color: var(--theme-accent);
  outline: none;
}

.gallery-grid {
  width: 100%;
  max-width: none;
  column-count: 3;
  column-gap: 0.62rem;
  padding-bottom: 4rem;
}

.gallery-card {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 0.62rem;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(210, 212, 220, 0.2);
  background: rgba(255, 255, 255, 0.055);
  color: inherit;
  cursor: pointer;
  break-inside: avoid;
}

.gallery-card img,
.thumb-video,
.gallery-placeholder {
  display: block;
  width: 100%;
  height: auto;
  transition: opacity 820ms ease, transform 260ms ease;
}

.gallery-card img.is-awaiting-reveal {
  opacity: 0;
}

.gallery-card img.is-awaiting-reveal.is-loaded {
  opacity: 1;
}

.gallery-card:hover img,
.gallery-card:focus-visible img,
.gallery-card:hover .thumb-video,
.gallery-card:focus-visible .thumb-video,
.gallery-card:hover .gallery-placeholder,
.gallery-card:focus-visible .gallery-placeholder {
  transform: scale(1.06);
}

.thumb-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
}

.gallery-card.is-video-playing .thumb-video {
  opacity: 1;
}

.gallery-placeholder {
  min-height: var(--placeholder-height, 16rem);
  background:
    linear-gradient(135deg, transparent 49.4%, rgba(240, 74, 167, 0.18) 50%, transparent 50.6%),
    linear-gradient(45deg, transparent 49.4%, rgba(142, 168, 255, 0.18) 50%, transparent 50.6%),
    rgba(180, 184, 195, 0.09);
}

.thumb-bar {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0.55rem;
  background: rgba(5, 5, 6, 0.78);
  color: rgba(221, 221, 216, 0.82);
  font-size: 0.92rem;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 160ms ease, transform 160ms ease;
}

.gallery-card:hover .thumb-bar,
.gallery-card:focus-visible .thumb-bar {
  opacity: 1;
  transform: translateY(0);
}

.thumb-info {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 1.28rem;
  height: 1.28rem;
  border: 1px solid rgba(222, 222, 218, 0.58);
  border-radius: 999px;
  color: rgba(222, 222, 218, 0.86);
  font-weight: 700;
  text-transform: lowercase;
}

.gallery-info-popover {
  position: absolute;
  right: 0;
  bottom: 2.2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  width: min(50%, 18rem);
  max-height: calc(100% - 2.2rem);
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(150, 152, 156, 0.48);
  background: rgba(4, 5, 8, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 0.65rem 1.8rem rgba(0, 0, 0, 0.28);
  color: #c8c8c0;
  font-family: 'Inconsolata', Consolas, 'Liberation Mono', monospace;
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1.45;
  text-align: right;
  text-transform: none;
  white-space: normal;
  opacity: 0;
  transform: translateY(0.25rem);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.gallery-info-popover span {
  display: block;
}

.gallery-card.is-info-visible .gallery-info-popover,
.gallery-card:focus-visible .gallery-info-popover {
  opacity: 1;
  transform: translateY(0);
}

.theater-main {
  margin-left: 0;
  padding-top: clamp(8rem, 16vh, 11rem);
}

.page-theater .page-header {
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: none;
  margin-left: -50vw;
  padding: 0 var(--frame-pad);
}

.page-theater .site-frame {
  position: absolute;
  inset: 0 0 auto 0;
  width: 100%;
  right: auto;
  bottom: auto;
  border-right: 0;
  background: transparent;
  pointer-events: none;
}

.page-theater .site-brand,
.page-theater .menu-toggle,
.page-theater .site-nav {
  pointer-events: auto;
}

.page-theater .site-rule {
  display: none;
}

.page-theater .site-nav {
  position: absolute;
  top: calc(var(--frame-pad) + 3.35rem);
  right: var(--frame-pad);
  left: auto;
  display: grid;
  width: min(24rem, calc(100vw - 2 * var(--frame-pad)));
  max-height: calc(100vh - 11rem);
  overflow: auto;
  padding: 1rem;
  border: 1px solid rgba(210, 212, 220, 0.26);
  background: rgba(4, 4, 5, 0.94);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.4rem);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.page-theater .menu-toggle {
  display: grid;
  position: absolute;
  top: var(--frame-pad);
  right: var(--frame-pad);
  left: auto;
  transform: none;
}

.page-theater .menu-toggle:active {
  transform: translateY(2px) scale(0.96);
}

.page-theater.menu-open .site-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.theater-stage {
  width: min(calc(100vw - 2 * var(--frame-pad)), 150vh);
  max-width: none;
  margin: 0 auto;
}

.video-shell {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: #000;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.42);
}

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

.video-link-fallback {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  color: rgba(235, 235, 230, 0.86);
  text-decoration: none;
  background: #000;
}

.video-link-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: grayscale(0.2) contrast(1.08);
}

.video-link-fallback span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0.45rem 0.68rem;
  border: 1px solid rgba(var(--theme-accent-rgb), 0.58);
  background: rgba(0, 0, 0, 0.72);
  color: rgba(235, 235, 230, 0.9);
  font: 700 0.9rem/1.1 var(--mono);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.video-link-fallback:hover span,
.video-link-fallback:focus-visible span {
  border-color: rgba(251, 239, 160, 0.8);
  color: var(--theme-accent);
}

.slideshow {
  position: relative;
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr) 3rem;
  align-items: center;
  width: min(78rem, 100%);
  min-height: clamp(22rem, 62vh, 44rem);
  margin-bottom: 2rem;
  outline: none;
}

.slideshow-stage {
  position: relative;
  min-height: inherit;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.55);
}

.slideshow-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.slideshow-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.slideshow-slide img,
.slideshow-slide iframe,
.slideshow-slide .video-link-fallback {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
}

.video-slide iframe {
  height: 100%;
  max-height: none;
  background: #000;
}

.slideshow-slide figcaption {
  position: absolute;
  right: 0.8rem;
  bottom: 0.75rem;
  padding: 0.25rem 0.45rem;
  background: rgba(0, 0, 0, 0.72);
  color: var(--muted);
  font-size: 0.86rem;
}

.slideshow-arrow {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 4rem;
  border: 1px solid rgba(210, 212, 220, 0.24);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(225, 225, 220, 0.78);
  cursor: pointer;
}

.slideshow-arrow:hover,
.slideshow-arrow:focus-visible {
  border-color: rgba(var(--theme-accent-rgb), 0.72);
  color: var(--theme-accent);
  outline: none;
}

.video-placeholder,
.embed-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 1.2rem;
  color: rgba(185, 188, 200, 0.72);
  text-align: center;
}

.theater-slideshow {
  width: 100%;
  min-height: 0;
  margin-bottom: 1.35rem;
}

.theater-slideshow .slideshow-stage {
  aspect-ratio: 16 / 9;
  min-height: 0;
  height: auto;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.42);
}

.project-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.1rem;
  max-width: 74rem;
  padding-bottom: 4rem;
}

.project-block {
  border-top: 1px solid rgba(210, 212, 220, 0.22);
  padding: 1.1rem 0 0;
}

.page-theater .project-block {
  border-top: 0;
  padding-top: 0.4rem;
}

.project-block h2 {
  margin: 0 0 0.55rem;
  color: rgba(230, 230, 226, 0.9);
  font-size: 1.15rem;
  text-transform: uppercase;
}

.project-block p {
  max-width: 46rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.project-block img {
  display: block;
  width: min(100%, 42rem);
  height: auto;
}

.portfolio-index-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13.5rem, 1fr));
  gap: 0.72rem;
  max-width: 78rem;
  padding-bottom: 4rem;
}

.portfolio-index-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 18rem;
  overflow: hidden;
  border-top: 1px solid rgba(210, 212, 220, 0.22);
  color: rgba(230, 230, 226, 0.9);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.025);
}

.portfolio-index-card img,
.portfolio-index-card .gallery-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
  transition: transform 260ms ease, filter 260ms ease;
}

.portfolio-index-card:hover img,
.portfolio-index-card:focus-visible img,
.portfolio-index-card:hover .gallery-placeholder,
.portfolio-index-card:focus-visible .gallery-placeholder {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.08);
}

.portfolio-index-copy {
  padding: 0.9rem 0.85rem 0.75rem;
}

.portfolio-index-copy h2 {
  margin: 0 0 0.25rem;
  color: rgba(230, 230, 226, 0.92);
  font-family: 'Inconsolata', Consolas, 'Liberation Mono', monospace;
  font-size: 1.04rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.portfolio-index-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.28;
}

.basic-content {
  max-width: 48rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.45;
}

.page-bio .basic-content {
  max-width: 72rem;
}

.bio-layout {
  display: grid;
  grid-template-columns: minmax(18rem, 30rem) minmax(16rem, 36rem);
  align-items: center;
  gap: clamp(1.6rem, 5vw, 4rem);
}

.bio-head-stage {
  position: relative;
  min-height: clamp(22rem, 54vh, 34rem);
  border: 0;
  background: transparent;
  overflow: visible;
}

.bio-head-stage canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.bio-copy {
  max-width: 38rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 38rem;
  margin-top: 1.8rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field label {
  color: rgba(230, 230, 226, 0.88);
  font-size: 0.98rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(210, 212, 220, 0.26);
  background: rgba(0, 0, 0, 0.36);
  color: var(--text);
  padding: 0.65rem 0.75rem;
}

.contact-form textarea {
  min-height: 11rem;
  resize: vertical;
}

.contact-form button {
  justify-self: start;
  border: 1px solid rgba(210, 212, 220, 0.32);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(225, 225, 220, 0.78);
  padding: 0.65rem 0.85rem;
  cursor: pointer;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  border-color: rgba(var(--theme-accent-rgb), 0.72);
  color: var(--theme-accent);
  outline: none;
}

.page-hire .site-frame,
.page-client-work .site-frame,
.page-client-project .site-frame,
.page-all-work .site-frame {
  position: fixed;
  inset: 0 0 auto auto;
  width: auto;
  padding: 1rem;
  border-right: 0;
  background: transparent;
  pointer-events: none;
}

.page-hire .site-brand,
.page-hire .site-rule,
.page-client-work .site-brand,
.page-client-work .site-rule,
.page-client-project .site-brand,
.page-client-project .site-rule,
.page-all-work .site-brand,
.page-all-work .site-rule {
  display: none;
}

.page-hire .menu-toggle,
.page-hire .site-nav,
.page-client-work .menu-toggle,
.page-client-work .site-nav,
.page-client-project .menu-toggle,
.page-client-project .site-nav,
.page-all-work .menu-toggle,
.page-all-work .site-nav {
  pointer-events: auto;
}

.page-hire .menu-toggle,
.page-client-work .menu-toggle,
.page-client-project .menu-toggle,
.page-all-work .menu-toggle {
  display: grid;
  position: fixed;
  top: 1rem;
  right: 1rem;
  left: auto;
  transform: none;
}

.page-hire .site-nav,
.page-client-work .site-nav,
.page-client-project .site-nav,
.page-all-work .site-nav {
  position: fixed;
  top: 4.15rem;
  right: 1rem;
  left: auto;
  display: grid;
  width: min(24rem, calc(100vw - 2rem));
  max-height: calc(100vh - 10.6rem);
  overflow: auto;
  padding: 1rem;
  border: 1px solid rgba(210, 212, 220, 0.26);
  background: rgba(4, 4, 5, 0.94);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.4rem);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.page-hire.menu-open .site-nav,
.page-client-work.menu-open .site-nav,
.page-client-project.menu-open .site-nav,
.page-all-work.menu-open .site-nav {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-hire .site-nav .nav-home-link,
.page-client-work .site-nav .nav-home-link,
.page-client-project .site-nav .nav-home-link,
.page-all-work .site-nav .nav-home-link,
.page-theater .site-nav .nav-home-link {
  display: table;
}

.hire-main {
  margin-left: 0;
  padding: 0;
}

.client-work-main {
  margin-left: 0;
  padding: clamp(8.4rem, 15vh, 10rem) var(--frame-pad) 0;
}

.all-work-main {
  margin-left: 0;
  padding: clamp(8.4rem, 15vh, 10rem) var(--frame-pad) 0;
}

.client-work-header {
  width: 100%;
  max-width: none;
}

.client-work-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: none;
}

.page-client-work .site-frame,
.page-client-project .site-frame,
.page-all-work .site-frame {
  position: fixed;
  inset: 0 0 auto 0;
  width: 100%;
  padding: var(--frame-pad) var(--frame-pad) 0;
  border-right: 0;
  background: rgba(0, 0, 0, 0.9);
  pointer-events: none;
}

.page-client-work .site-brand,
.page-client-project .site-brand,
.page-all-work .site-brand {
  display: block;
  width: max-content;
  pointer-events: auto;
}

.page-client-work .site-rule,
.page-client-project .site-rule,
.page-all-work .site-rule {
  display: block;
  width: min(22rem, calc(100vw - 2 * var(--frame-pad)));
}

.page-client-work .site-rule {
  display: none;
}

.page-client-work .site-frame,
.page-client-project .site-frame {
  padding-bottom: 1.15rem;
}

.page-client-project .site-rule {
  display: none;
}

.client-work-breadcrumb {
  margin-bottom: 1.5rem;
}

.client-work-breadcrumb a {
  color: rgba(205, 207, 212, 0.72);
}

.client-work-breadcrumb a:hover,
.client-work-breadcrumb a:focus-visible {
  color: var(--theme-accent);
}

.page-client-project .page-main {
  margin-left: 0;
  padding-top: clamp(8.4rem, 15vh, 10rem);
}

.page-client-project .page-header {
  max-width: none;
  margin: clamp(1.6rem, 4vw, 3rem) 0 clamp(1.6rem, 4vw, 3rem);
}

.page-client-project .page-title {
  margin-bottom: 1rem;
}

.page-client-project .page-breadcrumb {
  margin: 0 0 1.2rem;
}

.page-client-project .page-breadcrumb a {
  color: rgba(205, 207, 212, 0.72);
}

.page-client-project .page-breadcrumb a:hover,
.page-client-project .page-breadcrumb a:focus-visible {
  color: var(--theme-accent);
}

.client-project-main {
  max-width: none;
}

.client-project-hero {
  width: 100%;
  margin: 0 0 clamp(1.7rem, 4vw, 3rem);
}

.client-project-video {
  width: 100%;
  max-width: none;
  border: 0;
  background: #000;
}

.client-project-video .embed-placeholder {
  min-height: clamp(18rem, 56vw, 44rem);
  border: 1px solid rgba(210, 212, 220, 0.18);
}

.page-client-project .page-intro {
  max-width: 64rem;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.5;
}

.client-project-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  padding-bottom: 4rem;
}

.client-project-shot {
  margin: 0;
  min-width: 0;
  cursor: pointer;
}

.client-project-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #000;
}

.client-project-shot:hover img,
.client-project-shot:focus-visible img {
  filter: brightness(1.12) contrast(1.04);
}

.client-project-shot:focus-visible {
  outline: 1px solid rgba(var(--theme-accent-rgb), 0.7);
  outline-offset: 3px;
}

.client-work-card {
  position: relative;
  display: block;
  aspect-ratio: 1;
  min-height: 0;
  border-top: 0;
}

.client-work-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.client-work-card .portfolio-index-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.52rem 0.6rem;
  background: rgba(5, 5, 6, 0.78);
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 160ms ease, transform 160ms ease;
}

.client-work-card:hover .portfolio-index-copy,
.client-work-card:focus-visible .portfolio-index-copy {
  opacity: 1;
  transform: translateY(0);
}

.hire-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1rem, 2.5vw, 1.8rem);
  align-items: start;
  min-height: auto;
  padding: clamp(4.35rem, 8vh, 5.8rem) var(--frame-pad) clamp(2.2rem, 4vw, 4rem);
  background:
    radial-gradient(circle at 82% 28%, rgba(var(--theme-accent-rgb), 0.16), transparent 28rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 34%),
    #050506;
}

.hire-hero-copy {
  width: min(calc(100vw - 2 * var(--frame-pad)), 150vh);
  max-width: none;
  margin: 0 auto;
}

.hire-hero h1,
.hire-section h2 {
  margin: 0;
  color: rgba(235, 235, 232, 0.94);
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hire-hero h1 {
  max-width: 78rem;
  font-size: clamp(4rem, 8.2vw, 9rem);
  line-height: 0.84;
}

.hire-hero-copy p:not(.page-kicker),
.hire-lede,
.hire-section p {
  color: rgba(205, 207, 212, 0.78);
}

.hire-hero-copy p:not(.page-kicker) {
  max-width: 34rem;
  margin: 1rem 0 0;
  font-size: clamp(1.02rem, 1.4vw, 1.28rem);
  line-height: 1.35;
}

.hire-reel {
  position: relative;
  width: min(calc(100vw - 2 * var(--frame-pad)), 150vh);
  margin: 0 auto;
  overflow: hidden;
  background: #000;
  box-shadow: 0 0 3rem rgba(0, 0, 0, 0.48);
}

.hire-reel-breadcrumb {
  position: absolute;
  top: 0.8rem;
  left: 0.9rem;
  z-index: 3;
  margin: 0;
  padding: 0.35rem 0.45rem;
  background: rgba(0, 0, 0, 0.56);
}

.hire-reel video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(0.82) contrast(1.04);
}

.hire-reel-trigger {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  min-height: 2.35rem;
  padding: 0.58rem 0.76rem;
  border: 1px solid rgba(235, 235, 230, 0.46);
  background: rgba(0, 0, 0, 0.56);
  color: rgba(235, 235, 230, 0.9);
  text-transform: uppercase;
  cursor: pointer;
}

.hire-reel-trigger:hover,
.hire-reel-trigger:focus-visible {
  border-color: rgba(var(--theme-accent-rgb), 0.78);
  color: var(--theme-accent);
  outline: none;
}

.reel-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  place-items: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.96);
}

.reel-lightbox.is-open {
  display: grid;
}

.reel-lightbox video {
  display: block;
  width: min(calc(100vw - 4rem), calc((100vh - 4rem) * 16 / 9));
  max-height: calc(100vh - 4rem);
  background: #000;
}

.reel-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid rgba(210, 212, 220, 0.45);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: var(--text);
  cursor: pointer;
}

.reel-lightbox-close:hover,
.reel-lightbox-close:focus-visible {
  border-color: rgba(var(--theme-accent-rgb), 0.72);
  color: var(--theme-accent);
  outline: none;
}

.hire-section {
  padding: clamp(3rem, 7vw, 6rem) var(--frame-pad);
}

.hire-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: end;
  border-top: 1px solid rgba(210, 212, 220, 0.18);
  border-bottom: 1px solid rgba(210, 212, 220, 0.18);
}

.hire-lede {
  max-width: 70rem;
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 3.35rem);
  line-height: 1.02;
}

.hire-cta {
  display: inline-grid;
  place-items: center;
  min-height: 2.55rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(210, 212, 220, 0.32);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(235, 235, 230, 0.88);
  text-decoration: none;
  text-transform: uppercase;
}

.hire-cta:hover,
.hire-cta:focus-visible {
  border-color: rgba(var(--theme-accent-rgb), 0.72);
  color: var(--theme-accent);
  outline: none;
}

.hire-section-heading {
  max-width: 54rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.hire-section h2 {
  max-width: 58rem;
  font-size: clamp(2.8rem, 6vw, 6.4rem);
  line-height: 0.88;
}

.hire-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
}

.hire-service-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 28rem;
  border-top: 1px solid rgba(210, 212, 220, 0.24);
  background: rgba(255, 255, 255, 0.025);
}

.hire-service-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05);
}

.hire-service-card div {
  padding: 0.95rem 0.85rem 1.05rem;
}

.hire-service-card h3 {
  margin: 0 0 0.55rem;
  color: rgba(235, 235, 230, 0.92);
  font-size: clamp(1.1rem, 1.5vw, 1.45rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.hire-service-card h3 a {
  color: inherit;
  text-decoration: none;
}

.hire-service-card h3 a:hover,
.hire-service-card h3 a:focus-visible {
  color: var(--theme-accent);
  outline: none;
}

.hire-service-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.35;
}

.hire-client-preview {
  display: grid;
  grid-template-columns: minmax(18rem, 0.42fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: end;
  border-top: 1px solid rgba(210, 212, 220, 0.18);
}

.hire-client-preview .hire-section-heading {
  margin-bottom: 0;
}

.hire-client-preview .hire-section-heading p:not(.page-kicker) {
  max-width: 32rem;
  margin: 1rem 0 1.2rem;
  font-size: 1.05rem;
  line-height: 1.38;
}

.hire-client-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.62rem;
}

.hire-client-strip a {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  color: rgba(230, 230, 226, 0.92);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.025);
}

.hire-client-strip img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 260ms ease, filter 260ms ease;
}

.hire-client-strip span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.48rem 0.55rem;
  background: rgba(5, 5, 6, 0.78);
  color: rgba(221, 221, 216, 0.82);
  font-size: 0.9rem;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 160ms ease, transform 160ms ease;
}

.hire-client-strip a:hover img,
.hire-client-strip a:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.08);
}

.hire-client-strip a:hover span,
.hire-client-strip a:focus-visible span {
  opacity: 1;
  transform: translateY(0);
}

.hire-process {
  display: grid;
  grid-template-columns: minmax(15rem, 0.5fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  border-top: 1px solid rgba(210, 212, 220, 0.18);
}

.hire-process ol {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hire-process li {
  display: grid;
  grid-template-columns: 3.2rem 8rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: baseline;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(210, 212, 220, 0.16);
}

.hire-process li span {
  color: var(--theme-accent);
  font-weight: 700;
}

.hire-process li strong {
  color: rgba(235, 235, 230, 0.9);
  text-transform: uppercase;
}

.hire-process li p {
  margin: 0;
}

.hire-contact {
  max-width: 72rem;
  margin: 0 auto;
  text-align: center;
}

.hire-contact h2 {
  margin: 0 auto;
}

.hire-contact p:not(.page-kicker) {
  max-width: 42rem;
  margin: 1rem auto 1.25rem;
  font-size: 1.12rem;
  line-height: 1.45;
}

.page-hire .site-footer,
.page-client-work .site-footer,
.page-all-work .site-footer {
  margin: 0;
  padding: 1.2rem var(--frame-pad);
}

.form-status {
  min-height: 1.3em;
  margin: 0;
  color: var(--quiet);
  font-size: 0.95rem;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(12rem, 1fr) auto;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.2rem);
  margin: 5rem calc(-1 * var(--content-pad)) 0;
  padding: 1.2rem var(--content-pad);
  border-top: 1px solid rgba(210, 212, 220, 0.18);
  color: var(--quiet);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem;
}

.social-links a,
.email-signup button,
.download-button {
  border: 1px solid rgba(210, 212, 220, 0.32);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(225, 225, 220, 0.78);
  text-decoration: none;
}

.social-links a {
  display: grid;
  place-items: center;
  min-width: 2.25rem;
  min-height: 2.25rem;
  padding: 0.35rem 0.55rem;
}

.email-signup {
  display: flex;
  gap: 0.45rem;
  justify-self: center;
  min-width: 0;
  width: min(21rem, 100%);
}

.email-signup input {
  flex: 1 1 0;
  min-width: 0;
  border: 1px solid rgba(210, 212, 220, 0.26);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  padding: 0.55rem 0.65rem;
}

.email-signup button,
.download-button {
  padding: 0.55rem 0.7rem;
  cursor: pointer;
}

.social-links a:hover,
.social-links a:focus-visible,
.email-signup button:hover,
.email-signup button:focus-visible,
.download-button:hover,
.download-button:focus-visible {
  border-color: rgba(var(--theme-accent-rgb), 0.72);
  color: var(--theme-accent);
  outline: none;
}

.social-links a[data-social="ig"]:hover,
.social-links a[data-social="ig"]:focus-visible {
  border-color: rgba(239, 230, 173, 0.82);
  background: linear-gradient(135deg, rgba(239, 230, 173, 0.24), rgba(var(--theme-accent-rgb), 0.28));
  color: #fff0c2;
}

.social-links a[data-social="fb"]:hover,
.social-links a[data-social="fb"]:focus-visible {
  border-color: rgba(85, 210, 255, 0.76);
  background: rgba(85, 210, 255, 0.09);
  color: #8ee7ff;
}

.social-links a[data-social="yt"]:hover,
.social-links a[data-social="yt"]:focus-visible {
  border-color: rgba(240, 74, 167, 0.78);
  background: rgba(240, 74, 167, 0.1);
  color: #f04aa7;
}

.copyright {
  text-align: left;
  white-space: nowrap;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(16rem, 25rem);
  background: rgba(0, 0, 0, 0.94);
}

.lightbox.is-open {
  display: grid;
}

.lightbox-media {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 2rem 4.35rem;
  grid-column: 1;
  grid-row: 1;
}

.lightbox-media img,
.lightbox-media video {
  max-width: 100%;
  max-height: calc(100vh - 4rem);
  object-fit: contain;
}

.lightbox-media video {
  width: min(100%, 74rem);
}

.lightbox-panel {
  overflow: auto;
  padding: 2rem;
  border-left: 1px solid rgba(210, 212, 220, 0.2);
  background: rgba(5, 5, 6, 0.96);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid rgba(210, 212, 220, 0.45);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: var(--text);
  cursor: pointer;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 3.55rem;
  border: 1px solid rgba(210, 212, 220, 0.22);
  background: rgba(0, 0, 0, 0.32);
  color: rgba(225, 225, 220, 0.76);
  font: 700 1.15rem/1 var(--mono);
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color 140ms ease, color 140ms ease, background 140ms ease, transform 140ms ease;
}

.lightbox-prev {
  left: 0.8rem;
}

.lightbox-next {
  right: calc(25rem + 0.8rem);
}

.lightbox-arrow:hover,
.lightbox-arrow:focus-visible {
  border-color: rgba(var(--theme-accent-rgb), 0.72);
  background: rgba(0, 0, 0, 0.52);
  color: var(--theme-accent);
  outline: none;
}

.lightbox-arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.lightbox-arrow[hidden] {
  display: none;
}

@media (max-width: 760px), (max-height: 650px) {
  .site-frame {
    position: fixed;
    right: 0;
    bottom: auto;
    width: auto;
    padding: 1rem 1rem 0;
    border-right: 0;
    background: rgba(0, 0, 0, 0.9);
  }

  .site-name {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .site-role {
    font-size: clamp(1.2rem, 6vw, 1.7rem);
  }

  .page-gallery .page-title {
    font-size: clamp(1.7rem, 8vw, 2.45rem);
    line-height: 0.9;
  }

  .site-rule {
    width: calc(100% + 2rem);
    margin-right: -1rem;
    margin-left: -1rem;
    margin-bottom: 0;
  }

  .menu-toggle {
    display: grid;
    position: fixed;
    top: 1rem;
    right: 1rem;
    left: auto;
    transform: none;
  }

  .menu-toggle:active {
    transform: translateY(2px) scale(0.96);
  }

  .site-nav,
  .page-theater .site-nav {
    position: fixed;
    top: 4.15rem;
    right: 1rem;
    left: auto;
    display: grid;
    width: min(24rem, calc(100vw - 2rem));
    max-height: calc(100vh - 10.6rem);
    overflow: auto;
    padding: 1rem;
    border: 1px solid rgba(210, 212, 220, 0.26);
    background: rgba(4, 4, 5, 0.94);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-0.4rem);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .page-theater .site-frame,
  .page-theater .menu-toggle,
  .page-theater .site-nav {
    position: absolute;
  }

  body.menu-open .site-nav,
  .page-theater.menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-title {
    margin-bottom: 0.2rem;
    font-size: 1.18rem;
  }

  .site-nav a {
    display: block;
    min-height: 2.35rem;
    margin-left: 0;
    padding: 0.48rem 0 0.48rem 0.5rem;
  }

  .site-nav .nav-home-link {
    display: block;
  }

  .page-main,
  .theater-main {
    margin-left: 0;
    padding: clamp(8.1rem, 22vh, 9.35rem) 1rem 0;
  }

  .page-hire .hire-main {
    margin-left: 0;
    padding: 0;
  }

  .page-theater .page-header {
    width: 100%;
    margin-left: 0;
  }

  .theater-stage {
    width: 100%;
  }

  .gallery-grid {
    column-count: 2;
    column-width: auto;
  }

  .slideshow {
    grid-template-columns: 2.35rem minmax(0, 1fr) 2.35rem;
    min-height: clamp(18rem, 52vh, 34rem);
  }

  .slideshow-arrow {
    width: 2rem;
  }

  .bio-layout {
    grid-template-columns: 1fr;
  }

  .bio-head-stage {
    min-height: clamp(18rem, 46vh, 26rem);
  }

  .thumb-bar {
    opacity: 1;
    transform: none;
  }

  .page-gallery .thumb-bar {
    position: static;
    background: rgba(5, 5, 6, 0.9);
  }

  .page-gallery .gallery-info-popover {
    bottom: 2.35rem;
  }

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

  .lightbox-media {
    min-height: 54vh;
    padding: 3.25rem 3.25rem 1rem;
  }

  .lightbox-prev {
    left: 0.55rem;
  }

  .lightbox-next {
    right: 0.55rem;
  }

  .lightbox-panel {
    border-top: 1px solid rgba(210, 212, 220, 0.2);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  .page-hire .site-frame {
    background: transparent;
  }

  .page-hire .hire-main {
    margin-left: 0;
    padding: 0;
  }

  .page-client-work .client-work-main {
    margin-left: 0;
    padding: 8.8rem 1rem 0;
  }

  .page-client-project .page-main {
    margin-left: 0;
    padding: 8.8rem 1rem 0;
  }

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

  .page-all-work .all-work-main {
    margin-left: 0;
    padding: 8.8rem 1rem 0;
  }

  .client-work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.62rem;
  }

  .client-project-gallery {
    gap: 0.62rem;
  }

  .hire-hero {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
    padding: 4.8rem 1rem 2rem;
  }

  .hire-hero-copy {
    width: 100%;
    order: 2;
  }

  .hire-reel {
    width: 100%;
    order: 1;
  }

  .hire-intro,
  .hire-process,
  .hire-client-preview {
    grid-template-columns: 1fr;
  }

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

  .hire-section {
    padding: 3rem 1rem;
  }

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

  .hire-service-card {
    min-height: 0;
  }

  .hire-process li {
    grid-template-columns: 2.5rem 1fr;
  }

  .hire-process li p {
    grid-column: 2;
  }

  .page-hire .site-footer,
  .page-client-work .site-footer,
  .page-all-work .site-footer {
    margin: 0;
    padding: 1.2rem 1rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    margin-right: -1rem;
    margin-left: -1rem;
  }

  .social-links {
    justify-content: flex-start;
  }

  .copyright {
    text-align: left;
  }

  .email-signup {
    flex-direction: column;
    justify-self: stretch;
    width: 100%;
  }
}

/* Hire page dynamic layout */
.page-hire {
  background: #050506;
}

.page-hire .site-frame {
  z-index: 40;
}

.hire-main {
  overflow: clip;
}

.hire-reveal {
  opacity: 0;
  transform: translateY(1.6rem);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: calc(var(--delay-index, 0) * 70ms);
}

.hire-reveal.is-visible,
.hire-hero.hire-reveal {
  opacity: 1;
  transform: none;
}

.hire-hero {
  position: relative;
  display: block;
  min-height: 100svh;
  padding: 0;
  background: #000;
}

.hire-hero .hire-reel {
  width: 100%;
  height: 100svh;
  margin: 0;
  overflow: hidden;
  box-shadow: none;
}

.hire-hero .hire-reel::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, transparent 28%, rgba(0, 0, 0, 0.64) 72%, #000 100%),
    radial-gradient(circle at 50% 100%, rgba(var(--theme-accent-rgb), 0.2), transparent 32rem);
}

.hire-hero .hire-reel video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.98) contrast(1.08);
}

.hire-hero-actions {
  position: absolute;
  right: 0;
  bottom: clamp(2rem, 6vh, 4.5rem);
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  padding: 0 1rem;
}

.hire-hero-actions .hire-cta,
.hire-hero-actions .hire-reel-trigger {
  position: static;
  display: inline-grid;
  place-items: center;
  min-width: 8.4rem;
  min-height: 2.55rem;
  margin: 0;
  border: 1px solid rgba(222, 222, 218, 0.42);
  background: rgba(0, 0, 0, 0.48);
  color: rgba(235, 235, 230, 0.82);
  font: 700 0.88rem/1 var(--mono);
  text-decoration: none;
  text-transform: uppercase;
  transform: none;
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.hire-hero-actions .hire-cta:hover,
.hire-hero-actions .hire-cta:focus-visible,
.hire-hero-actions .hire-reel-trigger:hover,
.hire-hero-actions .hire-reel-trigger:focus-visible {
  border-color: rgba(var(--theme-accent-rgb), 0.78);
  color: var(--theme-accent);
  outline: none;
}

.hire-motion {
  background:
    radial-gradient(circle at 82% 18%, rgba(var(--theme-accent-rgb), 0.12), transparent 32rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 34%),
    #050506;
}

.hire-motion {
  min-height: 72svh;
  display: grid;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(5rem, 12vh, 8rem) var(--frame-pad);
  background: #000;
}

.hire-copy-block {
  max-width: 58rem;
}

.page-hire .hire-section h2,
.hire-modeling h2 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(3.1rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0;
}

.hire-motion p:not(.page-kicker),
.hire-contact-panel p:not(.page-kicker) {
  max-width: 46rem;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.45;
}

.motion-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.motion-service-card {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-width: 0;
}

.motion-service-card .gallery-card {
  aspect-ratio: 1;
  margin: 0;
}

.motion-service-card .gallery-card img,
.motion-service-card .thumb-video {
  height: 100%;
  object-fit: cover;
}

.motion-service-card h3 {
  margin: 0;
  color: rgba(235, 235, 230, 0.9);
  font-size: 1.04rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.motion-service-card p {
  margin: 0;
  color: rgba(205, 207, 212, 0.72);
  font-size: 0.96rem;
  line-height: 1.35;
}

.hire-modeling {
  position: relative;
  padding: 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(142, 231, 255, 0.1), transparent 32rem),
    radial-gradient(circle at 84% 72%, rgba(var(--theme-accent-rgb), 0.12), transparent 30rem),
    #050506;
}

.hire-modeling-intro {
  position: sticky;
  top: 1.2rem;
  z-index: 4;
  padding: 1.2rem var(--frame-pad) 0;
  pointer-events: none;
}

.modeling-scroll {
  height: 390svh;
  position: relative;
}

.modeling-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
}

.modeling-path {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.modeling-path circle {
  fill: rgba(222, 222, 218, 0.28);
  filter: drop-shadow(0 0 8px rgba(var(--theme-accent-rgb), 0.1));
}

.model-station {
  position: absolute;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(8rem, 16rem) minmax(12rem, 20rem);
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.2rem);
  opacity: clamp(0, calc(var(--station-activity, 0) * 1.1), 1);
  transform: translateY(calc((1 - var(--station-activity, 0)) * 1rem)) scale(calc(0.92 + var(--station-activity, 0) * 0.1));
  transition: opacity 180ms linear, transform 180ms linear, filter 180ms linear;
  filter: saturate(calc(0.78 + var(--station-activity, 0) * 0.42));
}

.model-station.is-visible {
  opacity: max(0.32, clamp(0, calc(var(--station-activity, 0) * 1.1), 1));
}

.model-station.is-active {
  filter: saturate(1.18) drop-shadow(0 0 1.8rem rgba(var(--theme-accent-rgb), 0.2));
}

.modeling-scroll.has-completed-sequence .model-station.is-visible:hover,
.modeling-scroll.has-completed-sequence .model-station.is-visible:focus-within {
  opacity: 1;
  transform: translateY(0) scale(1.02);
  filter: saturate(1.18) drop-shadow(0 0 1.8rem rgba(var(--theme-accent-rgb), 0.2));
}

.modeling-scroll.has-completed-sequence .model-station.is-visible:hover .model-station-copy,
.modeling-scroll.has-completed-sequence .model-station.is-visible:focus-within .model-station-copy {
  opacity: 1;
  transform: translateY(0);
}

.model-station-a {
  top: 19%;
  left: 8%;
}

.model-station-b {
  top: 30%;
  right: 7%;
  grid-template-columns: minmax(12rem, 20rem) minmax(8rem, 16rem);
}

.model-station-b .model-canvas-wrap {
  grid-column: 2;
}

.model-station-b .model-station-copy {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}

.model-station-c {
  bottom: 14%;
  left: 9%;
}

.model-station-d {
  right: 10%;
  bottom: 5%;
  grid-template-columns: minmax(12rem, 20rem) minmax(8rem, 16rem);
}

.model-station-d .model-canvas-wrap {
  grid-column: 2;
}

.model-station-d .model-station-copy {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}

.model-canvas-wrap {
  width: min(22vw, 17rem);
  min-width: 11rem;
  aspect-ratio: 1;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.model-canvas-wrap canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
}

.model-canvas-wrap canvas:active {
  cursor: grabbing;
}

.model-station-copy {
  opacity: var(--station-activity, 0);
  transform: translateY(calc((1 - var(--station-activity, 0)) * 0.7rem));
  transition: opacity 160ms linear, transform 160ms linear;
}

.model-station-copy h3,
.other-service-card h3 {
  margin: 0 0 0.45rem;
  color: rgba(235, 235, 230, 0.9);
  font-size: 1.04rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.model-station-copy p {
  margin: 0;
  color: rgba(205, 207, 212, 0.74);
  line-height: 1.35;
}

.hire-other-services {
  padding: clamp(5rem, 11vh, 8rem) var(--frame-pad);
}

.other-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(1.4rem, 3vw, 2.4rem);
}

.other-service-card {
  display: grid;
  align-content: start;
  gap: 0.75rem;
  min-width: 0;
}

.other-service-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: grayscale(0.08) contrast(1.02);
}

.other-service-card p {
  margin: 0;
  color: rgba(205, 207, 212, 0.72);
  font-size: 0.96rem;
  line-height: 1.35;
}

.hire-contact-panel {
  display: grid;
  grid-template-columns: minmax(16rem, 0.78fr) minmax(18rem, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(5rem, 11vh, 8rem) var(--frame-pad);
}

.hire-contact-copy {
  max-width: 34rem;
}

.hire-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.hire-contact-links a {
  border: 1px solid rgba(210, 212, 220, 0.3);
  background: rgba(255, 255, 255, 0.035);
  color: rgba(225, 225, 220, 0.76);
  padding: 0.5rem 0.62rem;
  text-decoration: none;
}

.hire-contact-links a:hover,
.hire-contact-links a:focus-visible {
  border-color: rgba(var(--theme-accent-rgb), 0.72);
  color: var(--theme-accent);
  outline: none;
}

.hire-contact-panel .contact-form {
  max-width: none;
  margin: 0;
}

@media (max-width: 920px) {
  .motion-service-grid,
  .other-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hire-contact-panel {
    grid-template-columns: 1fr;
  }

  .model-station {
    grid-template-columns: minmax(7rem, 10rem) minmax(9rem, 1fr);
    gap: 0.8rem;
  }

  .model-station-b,
  .model-station-d {
    grid-template-columns: minmax(9rem, 1fr) minmax(7rem, 10rem);
  }

  .model-canvas-wrap {
    width: 12rem;
    min-width: 8.5rem;
  }
}

@media (max-width: 760px) {
  .hire-hero,
  .hire-hero .hire-reel {
    min-height: 100svh;
    height: 100svh;
  }

  .hire-hero-actions {
    bottom: 2rem;
    flex-direction: column;
    align-items: center;
  }

  .hire-hero-actions .hire-cta,
  .hire-hero-actions .hire-reel-trigger {
    width: min(15rem, calc(100vw - 2rem));
  }

  .hire-motion,
  .hire-other-services,
  .hire-contact-panel {
    padding: 4rem 1rem;
  }

  .hire-modeling-intro {
    position: relative;
    top: auto;
    padding: 4rem 1rem 0;
    pointer-events: auto;
  }

  .modeling-scroll {
    height: auto;
    padding: 2rem 1rem 4rem;
  }

  .modeling-stage {
    position: relative;
    display: grid;
    gap: 2rem;
    height: auto;
    overflow: visible;
  }

  .modeling-path {
    display: none;
  }

  .model-station,
  .model-station-b,
  .model-station-d {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    grid-template-columns: minmax(6.5rem, 8.5rem) 1fr;
    opacity: 1;
    transform: none;
  }

  .model-station-b .model-canvas-wrap,
  .model-station-d .model-canvas-wrap {
    grid-column: 1;
  }

  .model-station-b .model-station-copy,
  .model-station-d .model-station-copy {
    grid-column: 2;
    text-align: left;
  }

  .model-station-copy {
    opacity: 1;
    transform: none;
  }

  .model-canvas-wrap {
    width: 9.5rem;
    min-width: 0;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  .hire-reveal,
  .model-station,
  .model-station-copy {
    transition: none;
  }
}
