@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("./fonts/outfit-latin.woff2") format("woff2");
}

:root {
  --ink: #080808;
  --ink-soft: #111111;
  --bone: #f0eee7;
  --bone-dim: #b6b4ad;
  --line: rgba(240, 238, 231, 0.19);
  --accent: #f04f35;
  --brand-blue: #1552e8;
  --page-pad: clamp(1.25rem, 4vw, 4.5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--bone);
  font-family: "Outfit", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

a {
  text-decoration: none;
}

.skip-link {
  position: fixed;
  z-index: 110;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  background: var(--bone);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-progress {
  position: fixed;
  z-index: 105;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.site-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  min-height: 4.85rem;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.15rem var(--page-pad);
  border-bottom: 1px solid rgba(240, 238, 231, 0.14);
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.75), rgba(8, 8, 8, 0));
  font-size: 0.86rem;
  transition:
    min-height 350ms var(--ease),
    background-color 350ms ease,
    backdrop-filter 350ms ease;
}

.site-header.is-scrolled {
  min-height: 4.1rem;
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  width: fit-content;
  min-height: 2.75rem;
  align-items: center;
}

.brand-plate {
  position: relative;
  display: block;
  width: 7.4rem;
  aspect-ratio: 3.616 / 1;
  overflow: hidden;
}

.brand-logo-crop img {
  position: absolute;
  top: -122.22%;
  left: -22.27%;
  display: block;
  width: 144.55%;
  height: auto;
  max-width: none;
  filter: grayscale(1) contrast(1000%) invert(1);
}

.ui-arrow {
  display: inline-flex;
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  line-height: 1;
  vertical-align: middle;
}

.ui-arrow svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ui-arrow-left svg {
  transform: scaleX(-1);
}

.site-nav {
  display: flex;
  gap: clamp(1.1rem, 3vw, 3.2rem);
  color: var(--bone-dim);
}

.site-nav a,
.header-cta {
  position: relative;
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 1px;
  background: var(--bone);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  color: var(--bone);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a.is-active {
  color: var(--bone);
}

.header-cta {
  justify-self: end;
}

.header-cta span {
  display: inline-block;
  margin-left: 0.3rem;
  transition: transform 260ms var(--ease);
}

.header-cta:hover span,
.header-cta:focus-visible span {
  transform: translate(0.18rem, -0.18rem);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  --hero-shift: 0px;
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  padding: clamp(7.4rem, 12vh, 9rem) var(--page-pad) clamp(2.5rem, 5vw, 4.5rem);
  background:
    radial-gradient(circle at 82% 13%, rgba(79, 94, 108, 0.2), transparent 28%),
    radial-gradient(circle at 14% 44%, rgba(240, 79, 53, 0.045), transparent 24%),
    var(--ink);
}

.hero::before {
  position: absolute;
  top: 0;
  left: 33.333%;
  width: 1px;
  height: 100%;
  background: rgba(240, 238, 231, 0.08);
  content: "";
}

.hero-kicker {
  display: flex;
  justify-content: space-between;
  margin-left: 34.5%;
  color: var(--bone-dim);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: hero-meta-enter 800ms var(--ease) 80ms both;
}

.hero-heading-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(15rem, 1fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: end;
  margin-top: clamp(2.7rem, 6vh, 5.25rem);
}

.hero-title,
.section-intro h2,
.project-name h3,
.service-copy h3 {
  margin: 0;
  font-family: "Outfit", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.065em;
}

.hero-title {
  display: grid;
  max-width: 14ch;
  font-size: clamp(3.75rem, 7.75vw, 8.65rem);
  line-height: 0.84;
}

.hero-line-mask {
  display: block;
  overflow: visible;
  clip-path: inset(0 -40% 0 0);
  margin-block: -0.08em -0.12em;
  padding-block: 0.08em 0.12em;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero-letter-group {
  display: inline;
}

.hero-word {
  display: inline-block;
  white-space: nowrap;
}

.hero-character {
  display: inline-block;
  transform-origin: 50% 10%;
}

.hero-title.is-letter-ready .hero-character {
  animation: hero-character-fall 780ms cubic-bezier(0.16, 1, 0.3, 1) calc(150ms + var(--character-index) * 22ms) both;
  will-change: transform, opacity, filter;
}

.hero-title.is-letter-ready .hero-character:nth-child(3n) {
  --character-rotation: 3.2deg;
}

.hero-title.is-letter-ready .hero-character:nth-child(3n + 1) {
  --character-rotation: -2.6deg;
}

.hero-character-space {
  width: 0.24em;
}

.hero-amp {
  display: inline-block;
  color: var(--brand-blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.7em;
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
}

.hero-place {
  display: inline-block;
  margin-left: 0.12em;
  color: var(--bone-dim);
  font-size: 0.33em;
  letter-spacing: -0.035em;
  vertical-align: 0.18em;
  white-space: nowrap;
}

.hero-intro {
  padding-bottom: 0.4rem;
}

.hero-intro p {
  max-width: 24rem;
  margin: 0 0 2rem;
  color: #d0cec7;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.48;
  animation: hero-copy-enter 850ms var(--ease) 1.42s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-actions .button {
  animation: hero-control-enter 750ms var(--ease) 1.56s backwards;
}

.hero-actions .button:nth-child(2) {
  animation-delay: 1.66s;
}

@media (min-width: 1121px) {
  .hero-intro {
    align-self: start;
    padding-top: 0.25rem;
  }

  .hero-actions {
    flex-wrap: nowrap;
  }

  .hero-actions .button {
    min-width: 0;
    flex: 1 1 0;
    gap: clamp(0.65rem, 1vw, 1.15rem);
  }
}

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.button-solid {
  border-color: var(--bone);
  background: var(--bone);
  color: var(--ink);
  transition:
    background-color 280ms ease,
    border-color 280ms ease,
    color 280ms ease,
    transform 280ms var(--ease);
}

.button-solid:hover,
.button-solid:focus-visible {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--bone);
  transform: translateY(-2px);
}

.button-solid span {
  transition: transform 280ms var(--ease);
}

.button-solid:hover span,
.button-solid:focus-visible span {
  transform: translateY(0.18rem);
}

.button-ghost {
  transition:
    border-color 280ms ease,
    background-color 280ms ease,
    transform 280ms var(--ease);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--bone);
  background: rgba(240, 238, 231, 0.07);
  transform: translateY(-2px);
}

.button-ghost span {
  transition: transform 280ms var(--ease);
}

.button-ghost:hover span,
.button-ghost:focus-visible span {
  transform: translate(0.18rem, -0.18rem);
}

.hero-media {
  --media-x: 0px;
  --media-y: 0px;
  position: relative;
  z-index: 1;
  width: min(100%, 88rem);
  margin: clamp(3rem, 7vh, 6.2rem) auto 0;
  transform: translateY(var(--hero-shift));
  animation: hero-media-enter 1.25s var(--ease) 1.66s both;
}

.hero-film {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #151719;
  box-shadow: 0 3.5rem 8rem rgba(0, 0, 0, 0.4);
}

.hero-film::after {
  position: absolute;
  z-index: 9;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background: rgba(117, 158, 255, 0.88);
  box-shadow: 0 0 2rem rgba(21, 82, 232, 0.85);
  content: "";
  opacity: 0;
  pointer-events: none;
  animation: hero-scan-enter 1.1s var(--ease) 1.9s both;
}

@keyframes hero-meta-enter {
  from {
    opacity: 0;
    transform: translateY(-0.7rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-character-fall {
  0% {
    opacity: 0;
    filter: blur(7px);
    transform: translate3d(0, -1.3em, 0) rotate(var(--character-rotation, 1.5deg));
  }
  72% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0.06em, 0) rotate(-0.4deg);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(0);
  }
}

@keyframes hero-copy-enter {
  from {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes hero-control-enter {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-media-enter {
  from {
    opacity: 0;
    clip-path: inset(12% 0 52% 0);
  }
  to {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes hero-scan-enter {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  15% {
    opacity: 1;
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(calc(min(100vw, 88rem) - 1px));
  }
}

.hero-poster-picture {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
}

.hero-poster,
.hero-video {
  position: absolute;
  inset: -1.5%;
  width: 103%;
  height: 103%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(var(--media-x), var(--media-y), 0) scale(1.015);
  transition: transform 900ms var(--ease), opacity 500ms ease;
}

.hero-poster {
  z-index: 1;
}

.hero-video {
  z-index: 2;
  opacity: 0;
}

.hero-video-trigger {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(5.5rem, 8vw, 7.5rem);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(240, 238, 231, 0.72);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.5);
  backdrop-filter: blur(12px);
  color: var(--bone);
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  transition: background-color 260ms ease, border-color 260ms ease, transform 360ms var(--ease);
}

.hero-video-trigger:hover,
.hero-video-trigger:focus-visible {
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  transform: translate(-50%, -50%) scale(1.06);
}

.hero-film.has-video .hero-video-trigger {
  opacity: 0;
  pointer-events: none;
}

.hero-film.has-video:not(.is-loop-resetting):not(.video-fallback) .hero-poster {
  opacity: 0;
}

.hero-film.has-video:not(.is-loop-resetting):not(.video-fallback) .hero-video {
  opacity: 1;
}

.hero-film.is-loop-resetting .hero-poster,
.hero-film.video-fallback .hero-poster {
  opacity: 1;
}

.hero-film.is-loop-resetting .hero-video,
.hero-film.video-fallback .hero-video {
  opacity: 0;
}

.film-scrim {
  position: absolute;
  z-index: 5;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 8, 0.42), transparent 40%, rgba(5, 7, 8, 0.08)),
    linear-gradient(180deg, rgba(5, 7, 8, 0.08), transparent 54%, rgba(5, 7, 8, 0.55));
  pointer-events: none;
}

.film-frame {
  position: absolute;
  z-index: 7;
  inset: 1.1rem;
  pointer-events: none;
}

.film-frame i {
  position: absolute;
  width: 2rem;
  height: 2rem;
  border-color: rgba(240, 238, 231, 0.58);
  border-style: solid;
}

.film-frame i:nth-child(1) {
  top: 0;
  left: 0;
  border-width: 1px 0 0 1px;
}

.film-frame i:nth-child(2) {
  top: 0;
  right: 0;
  border-width: 1px 1px 0 0;
}

.film-frame i:nth-child(3) {
  right: 0;
  bottom: 0;
  border-width: 0 1px 1px 0;
}

.film-frame i:nth-child(4) {
  bottom: 0;
  left: 0;
  border-width: 0 0 1px 1px;
}

.film-meta {
  position: absolute;
  z-index: 8;
  right: 1.45rem;
  bottom: 1.35rem;
  left: 1.45rem;
  display: flex;
  justify-content: space-between;
  color: rgba(240, 238, 231, 0.78);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.film-status {
  position: absolute;
  z-index: 8;
  top: 1.45rem;
  right: 1.45rem;
  padding: 0.5rem 0.68rem;
  border: 1px solid rgba(240, 238, 231, 0.48);
  background: rgba(8, 8, 8, 0.22);
  backdrop-filter: blur(10px);
  color: rgba(240, 238, 231, 0.84);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-media-note {
  margin: 0.8rem 0 0;
  color: #77746f;
  font-size: 0.7rem;
  text-align: right;
}

.work-section,
.services-section {
  position: relative;
  padding: clamp(6rem, 11vw, 10.5rem) var(--page-pad);
}

.work-section {
  background: var(--bone);
  color: var(--ink);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(3rem, 0.7fr) minmax(20rem, 4.8fr) minmax(15rem, 2fr);
  gap: clamp(1rem, 3vw, 3.5rem);
  align-items: start;
  margin-bottom: clamp(4rem, 8vw, 7.5rem);
}

.section-index,
.eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-index {
  padding-top: 0.35rem;
  color: #6c6a65;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-weight: 700;
}

.section-intro h2 {
  font-size: clamp(3rem, 6.1vw, 7rem);
  line-height: 0.88;
}

.section-copy {
  max-width: 24rem;
  margin: 2rem 0 0;
  color: #5e5c58;
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.5;
}

.projects {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(5rem, 10vw, 9rem) 1.2rem;
}

.project {
  --pointer-x: 50%;
  --pointer-y: 50%;
  --project-x: 0px;
  --project-y: 0px;
  grid-column: 1 / -1;
  content-visibility: auto;
  contain-intrinsic-size: auto 56rem;
}

.project-left {
  grid-column: 1 / span 8;
}

.project-right {
  grid-column: 5 / -1;
}

.project-visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--project-end);
}

.project-left .project-visual,
.project-right .project-visual {
  aspect-ratio: 4 / 3;
}

.project-visual-inner {
  position: absolute;
  inset: -1.5%;
  overflow: hidden;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), color-mix(in srgb, var(--project-accent) 42%, transparent), transparent 20%),
    linear-gradient(145deg, var(--project-start), var(--project-end));
  transform: translate3d(var(--project-x), var(--project-y), 0) scale(1.035);
  transition: transform 900ms var(--ease);
}

.project-has-media .project-visual {
  cursor: pointer;
  background: #071226;
}

.project-has-reels .project-visual {
  cursor: pointer;
  background: #07090e;
}

.project-reel-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 28%, rgba(29, 85, 238, 0.42), transparent 24%),
    linear-gradient(135deg, #080a0f 0 48%, #101521 100%);
}

.project-reel-stage::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240, 238, 231, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240, 238, 231, 0.055) 1px, transparent 1px);
  background-size: clamp(2.5rem, 5vw, 4.5rem) clamp(2.5rem, 5vw, 4.5rem);
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.project-reel-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(29, 85, 238, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.project-reel-orbit::before,
.project-reel-orbit::after {
  position: absolute;
  border: 1px solid rgba(240, 238, 231, 0.1);
  border-radius: 50%;
  content: "";
}

.project-reel-orbit::before {
  inset: 14%;
}

.project-reel-orbit::after {
  inset: 30%;
}

.project-reel-brand {
  position: absolute;
  top: 12%;
  left: -1.5%;
  color: rgba(240, 238, 231, 0.08);
  font-size: clamp(5rem, 12vw, 12rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.7;
}

.project-reel-event {
  position: absolute;
  right: 4%;
  bottom: 4%;
  color: var(--bone);
  font-size: clamp(2.2rem, 5vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.82;
}

.project-reel-event b {
  display: block;
  color: var(--brand-blue);
  font: inherit;
  text-align: right;
}

.project-reel-pair {
  position: absolute;
  z-index: 2;
  inset: 10% 14%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 1.8rem);
}

.project-reel-window {
  position: relative;
  height: 88%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(240, 238, 231, 0.45);
  background: #0c111c;
  box-shadow: 0 1.6rem 4rem rgba(0, 0, 0, 0.38);
  transition: border-color 350ms ease, transform 650ms var(--ease);
}

.project-reel-window-1 {
  transform: translateY(-4%) rotate(-2.2deg);
}

.project-reel-window-2 {
  transform: translateY(4%) rotate(2.2deg);
}

.project-dialog-reels .project-reel-window.is-active {
  border-color: var(--brand-blue);
}

.project-has-reels:hover .project-reel-window-1,
.project-has-reels:focus-within .project-reel-window-1 {
  border-color: var(--brand-blue);
  transform: translateY(-2%) rotate(-0.5deg);
}

.project-has-reels:hover .project-reel-window-2,
.project-has-reels:focus-within .project-reel-window-2 {
  border-color: var(--brand-blue);
  transform: translateY(2%) rotate(0.5deg);
}

.project-reel-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(0.75rem, 1.4vw, 1.3rem);
  background:
    linear-gradient(180deg, rgba(29, 85, 238, 0.9), rgba(4, 10, 25, 0.42) 45%, #06080c),
    radial-gradient(circle at 50% 34%, rgba(240, 238, 231, 0.25), transparent 20%);
  color: var(--bone);
  text-transform: uppercase;
}

.project-reel-window-2 .project-reel-placeholder {
  background:
    linear-gradient(180deg, rgba(240, 238, 231, 0.9), rgba(59, 72, 110, 0.35) 42%, #06080c),
    radial-gradient(circle at 58% 32%, rgba(29, 85, 238, 0.42), transparent 24%);
  color: var(--bone);
}

.project-reel-window-2 .project-reel-placeholder > span {
  color: var(--ink);
}

.project-reel-placeholder > span,
.project-reel-placeholder small {
  font-size: clamp(0.52rem, 0.8vw, 0.7rem);
  font-weight: 600;
  letter-spacing: 0.11em;
}

.project-reel-window-2 .project-reel-placeholder small {
  color: var(--bone);
}

.project-reel-placeholder strong {
  margin: auto 0;
  font-size: clamp(1.15rem, 2.7vw, 2.7rem);
  letter-spacing: -0.055em;
  line-height: 0.88;
  text-transform: none;
}

.project-reel-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-reel-caption {
  position: absolute;
  z-index: 2;
  right: 0.65rem;
  bottom: 0.55rem;
  left: 0.65rem;
  overflow: hidden;
  color: rgba(240, 238, 231, 0.8);
  font-size: clamp(0.45rem, 0.6vw, 0.58rem);
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.project-reel-placeholder + .project-reel-caption {
  display: none;
}

.project-has-reels .project-view {
  top: 50%;
  left: 50%;
  width: clamp(5.5rem, 8vw, 7rem);
  background: var(--brand-blue);
  color: white;
  opacity: 1;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%) scale(1);
}

.project-has-reels:hover .project-view,
.project-has-reels:focus-within .project-view {
  background: var(--bone);
  color: var(--ink);
  transform: translate(-50%, -50%) scale(1.06);
}

.project-poster-picture {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.project-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: filter 700ms ease, transform 1.1s var(--ease);
}

.project-media-scrim {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 11, 24, 0.58), transparent 33%),
    linear-gradient(90deg, rgba(4, 11, 24, 0.36), transparent 58%),
    linear-gradient(0deg, rgba(4, 11, 24, 0.8), transparent 58%);
  pointer-events: none;
}

.project-media-title {
  position: absolute;
  z-index: 4;
  bottom: 7%;
  left: 4.5%;
  display: flex;
  flex-direction: column;
  color: var(--bone);
  font-size: clamp(4.8rem, 10.8vw, 11rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.72;
  text-shadow: 0 0.08em 0.28em rgba(2, 7, 18, 0.2);
  pointer-events: none;
}

.project-media-title span:last-child {
  margin-left: 0.32em;
}

.project-mfcc .project-media-title {
  bottom: 7.5%;
  font-size: clamp(2.8rem, 5.5vw, 6.2rem);
  letter-spacing: -0.055em;
  line-height: 0.82;
}

.project-mfcc .project-media-title span:last-child {
  margin-left: 0;
}

.project-has-media:hover .project-poster,
.project-has-media:focus-within .project-poster {
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.045);
}

.project-has-media .project-visual-top {
  color: var(--bone);
}

.project-has-media .project-visual-top span:first-child {
  border-bottom-color: rgba(240, 238, 231, 0.58);
}

.project-has-media .project-view {
  top: 66%;
  left: 38%;
  width: clamp(6rem, 9vw, 8.5rem);
  background: var(--bone);
  color: var(--ink);
  font-size: 0.8rem;
  opacity: 1;
  box-shadow: 0 1rem 3rem rgba(1, 8, 22, 0.18);
  transform: translate(-50%, -50%) scale(1);
  transition: background-color 300ms ease, color 300ms ease, transform 350ms var(--ease);
}

.project-open-surface {
  position: absolute;
  z-index: 7;
  inset: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.project-open-surface:focus-visible {
  outline: 2px solid var(--brand-blue);
  outline-offset: -4px;
}

.project-open-surface:focus-visible .project-view {
  background: var(--brand-blue);
  color: white;
  transform: translate(-50%, -50%) scale(1.07);
}

.project-instagram-link {
  position: absolute;
  z-index: 8;
  right: 1.2rem;
  bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(240, 238, 231, 0.42);
  background: rgba(4, 7, 15, 0.45);
  color: var(--bone);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  transition: border-color 220ms ease, background-color 220ms ease, transform 220ms ease;
}

.project-instagram-link:hover,
.project-instagram-link:focus-visible {
  border-color: var(--brand-blue);
  background: var(--brand-blue);
  transform: translateY(-2px);
}

.project-has-media:hover .project-view {
  background: var(--brand-blue);
  color: white;
  transform: translate(-50%, -50%) scale(1.07);
}

.project.is-visible .project-visual-inner {
  transform: translate3d(var(--project-x), var(--project-y), 0) scale(1.01);
}

.project-visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(color-mix(in srgb, var(--project-accent) 9%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--project-accent) 9%, transparent) 1px, transparent 1px);
  background-size: 10% 12.5%;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
}

.project-axis {
  position: absolute;
  z-index: 2;
  top: 12%;
  bottom: 12%;
  left: 50%;
  width: 1px;
  background: color-mix(in srgb, var(--project-accent) 32%, transparent);
  transform: rotate(18deg);
  transition: transform 900ms var(--ease);
}

.project-axis-b {
  top: 50%;
  right: 10%;
  bottom: auto;
  left: 10%;
  width: auto;
  height: 1px;
  transform: rotate(-8deg);
}

.project-disc {
  position: absolute;
  z-index: 2;
  top: 18%;
  left: 30%;
  width: 38%;
  aspect-ratio: 1;
  border: 1px solid color-mix(in srgb, var(--project-accent) 52%, transparent);
  border-radius: 50%;
  box-shadow: 0 0 5rem color-mix(in srgb, var(--project-accent) 14%, transparent);
  transition: transform 900ms var(--ease);
}

.project-strip {
  position: absolute;
  z-index: 3;
  right: 5%;
  bottom: 10%;
  display: grid;
  width: 44%;
  grid-template-columns: 2fr 0.7fr 1.4fr 0.5fr;
  gap: 0.4rem;
  transform: rotate(-4deg);
}

.project-strip i {
  display: block;
  height: clamp(0.5rem, 1.2vw, 1rem);
  background: color-mix(in srgb, var(--project-accent) 58%, transparent);
}

.project-number {
  position: absolute;
  z-index: 1;
  top: -0.08em;
  right: 0.02em;
  color: color-mix(in srgb, var(--project-accent) 18%, transparent);
  font-size: clamp(10rem, 28vw, 34rem);
  font-weight: 700;
  letter-spacing: -0.12em;
  line-height: 0.8;
}

.project-visual-title {
  position: absolute;
  z-index: 4;
  bottom: 7%;
  left: 6%;
  max-width: 7ch;
  color: var(--project-accent);
  font-size: clamp(3rem, 7.6vw, 8.4rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.78;
  mix-blend-mode: screen;
}

.project-visual-top {
  position: absolute;
  z-index: 6;
  top: 1.2rem;
  right: 1.2rem;
  left: 1.2rem;
  display: flex;
  justify-content: space-between;
  color: var(--project-accent);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-visual-top span:first-child {
  padding-bottom: 0.35rem;
  border-bottom: 1px solid color-mix(in srgb, var(--project-accent) 58%, transparent);
}

.project-view {
  position: absolute;
  z-index: 7;
  top: var(--pointer-y);
  left: var(--pointer-x);
  display: grid;
  width: 4.75rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--bone);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.76);
  transition: opacity 220ms ease, transform 350ms var(--ease);
}

.project:hover .project-view {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.project:hover .project-disc {
  transform: translate3d(4%, -3%, 0) scale(1.06);
}

.project:hover .project-axis-a {
  transform: rotate(12deg);
}

.project-souq .project-disc {
  top: 8%;
  left: 8%;
  width: 58%;
  border-radius: 0;
  transform: rotate(8deg);
}

.project-souq .project-strip {
  right: 8%;
  bottom: 16%;
  width: 58%;
  transform: rotate(90deg);
  transform-origin: right bottom;
}

.project-energy .project-disc {
  top: 22%;
  left: 58%;
  width: 24%;
  border-width: clamp(0.5rem, 1.4vw, 1.4rem);
  border-color: color-mix(in srgb, var(--project-accent) 26%, transparent);
}

.project-energy .project-axis {
  left: 24%;
  transform: rotate(0deg);
}

.project-energy .project-axis-b {
  top: 22%;
  right: 18%;
  left: 18%;
  transform: rotate(0deg);
}

.project-identity .project-disc {
  top: 12%;
  left: 42%;
  width: 42%;
  border-radius: 18% 50% 18% 50%;
  transform: rotate(-16deg);
}

.project-identity .project-strip {
  right: auto;
  bottom: 16%;
  left: 6%;
  width: 36%;
  transform: rotate(6deg);
}

.project-coastline .project-disc {
  top: -25%;
  left: 15%;
  width: 72%;
  border-width: 1px;
  box-shadow:
    0 3rem 0 color-mix(in srgb, var(--project-accent) 9%, transparent),
    0 6rem 0 color-mix(in srgb, var(--project-accent) 6%, transparent);
}

.project-coastline .project-axis-a {
  left: 64%;
  transform: rotate(-24deg);
}

.project-details {
  display: grid;
  grid-template-columns: minmax(12rem, 1.45fr) minmax(21rem, 2fr) auto;
  gap: 1.2rem;
  align-items: end;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(8, 8, 8, 0.68);
}

.project-name p {
  margin: 0 0 0.28rem;
  color: #6f6c66;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-name h3 {
  font-size: clamp(1.8rem, 3.2vw, 3.3rem);
  line-height: 1;
}

.project-meta {
  display: grid;
  grid-template-columns: 1.15fr 1.55fr 0.5fr;
  gap: 1rem;
  margin: 0;
}

.project-meta div {
  min-width: 0;
}

.project-meta dt {
  margin-bottom: 0.24rem;
  color: #85817a;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-meta dd {
  margin: 0;
  overflow: hidden;
  font-size: 0.78rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-link {
  position: relative;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
  padding: 0 0 0.45rem;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
  font-size: 0.82rem;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 1px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms var(--ease);
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.text-link span {
  transition: transform 280ms var(--ease);
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translate(0.18rem, -0.18rem);
}

.work-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-top: clamp(5rem, 9vw, 8.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(8, 8, 8, 0.24);
}

.text-link-large {
  gap: 5rem;
  font-size: clamp(1.5rem, 2.6vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.work-footer > span {
  max-width: 18rem;
  color: #6e6b65;
  font-size: 0.75rem;
  text-align: right;
}

.services-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(72, 90, 96, 0.12), transparent 28%),
    var(--ink);
  color: var(--bone);
}

.service-intro .section-copy {
  color: var(--bone-dim);
}

.service-intro .section-index {
  color: #77746f;
}

.service-split {
  display: flex;
  min-height: min(74vh, 52rem);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0d0d0d;
}

.service-panel {
  position: relative;
  isolation: isolate;
  display: flex;
  min-width: 0;
  flex: 0.82;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(1.3rem, 3vw, 3rem);
  cursor: pointer;
  outline: none;
  transition: flex 850ms var(--ease), filter 550ms ease;
}

.service-panel::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.02), rgba(5, 5, 5, 0.58));
  content: "";
}

.service-panel + .service-panel {
  border-left: 1px solid var(--line);
}

.service-panel[data-active="true"] {
  flex: 1.9;
}

.service-panel[data-active="false"] {
  filter: saturate(0.66) brightness(0.75);
}

.service-production {
  background: linear-gradient(145deg, #171f21 0%, #0a0f11 63%, #172a2d 100%);
}

.service-marketing {
  background: linear-gradient(145deg, #281913 0%, #100b09 60%, #391a12 100%);
}

.service-technology {
  background: linear-gradient(145deg, #10212b 0%, #070d12 60%, #123147 100%);
}

.service-topline {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  color: rgba(240, 238, 231, 0.62);
  font-size: 0.68rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.service-visual {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
}

.service-visual::before {
  position: absolute;
  top: 13%;
  right: -15%;
  width: min(62vw, 48rem);
  aspect-ratio: 1;
  border: 1px solid rgba(240, 238, 231, 0.15);
  border-radius: 50%;
  content: "";
  transition: transform 1s var(--ease);
}

.service-panel[data-active="true"] .service-visual::before {
  transform: translateX(-8%) scale(1.12);
}

.service-visual > span {
  position: absolute;
  top: 18%;
  right: -0.05em;
  color: rgba(240, 238, 231, 0.055);
  font-size: clamp(8rem, 21vw, 24rem);
  font-weight: 700;
  letter-spacing: -0.12em;
  line-height: 0.7;
  white-space: nowrap;
}

.service-visual i {
  position: absolute;
  top: 24%;
  left: 50%;
  width: 1px;
  height: 60%;
  background: rgba(240, 238, 231, 0.13);
  transform: rotate(24deg);
  transition: transform 1s var(--ease);
}

.service-visual i:nth-of-type(2) {
  left: 64%;
  transform: rotate(-18deg);
}

.service-visual i:nth-of-type(3) {
  top: 58%;
  left: 18%;
  width: 65%;
  height: 1px;
  transform: none;
}

.service-visual b {
  position: absolute;
  top: 34%;
  left: 42%;
  width: 22%;
  aspect-ratio: 1;
  border: 1px solid rgba(240, 238, 231, 0.18);
  transform: rotate(45deg);
  transition: transform 900ms var(--ease);
}

.service-panel[data-active="true"] .service-visual b {
  transform: rotate(56deg) scale(1.16);
}

.service-copy {
  position: relative;
  z-index: 2;
  max-width: 43rem;
}

.service-copy h3 {
  max-width: 8ch;
  font-size: clamp(3.2rem, 7.5vw, 8.2rem);
  line-height: 0.79;
  transition: font-size 750ms var(--ease);
}

.service-panel[data-active="false"] .service-copy h3 {
  font-size: clamp(2.6rem, 4.7vw, 5.3rem);
}

.service-detail {
  max-height: 22rem;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition:
    max-height 700ms var(--ease),
    opacity 380ms ease,
    transform 700ms var(--ease);
}

.service-panel[data-active="false"] .service-detail {
  max-height: 8.5rem;
  opacity: 0.42;
  transform: translateY(1rem);
}

.service-detail > p {
  max-width: 31rem;
  margin: 1.4rem 0 1.8rem;
  color: rgba(240, 238, 231, 0.74);
  font-size: clamp(1rem, 1.25vw, 1.14rem);
}

.service-detail ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  margin: 0 0 2.1rem;
  padding: 0;
  list-style: none;
}

.service-detail li {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(240, 238, 231, 0.28);
  color: rgba(240, 238, 231, 0.8);
  font-size: 0.74rem;
}

.service-action {
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
  padding-bottom: 0.48rem;
  border-bottom: 1px solid rgba(240, 238, 231, 0.55);
  font-size: 0.82rem;
  font-weight: 600;
}

.service-action span {
  transition: transform 280ms var(--ease);
}

.service-action:hover span,
.service-action:focus-visible span {
  transform: translate(0.2rem, -0.2rem);
}

.about-section,
.clients-section,
.contact-section,
.site-footer {
  position: relative;
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
}

.about-section {
  padding-top: clamp(6rem, 11vw, 10.5rem);
  padding-bottom: clamp(6rem, 11vw, 10.5rem);
  background: var(--bone);
  color: var(--ink);
}

.about-heading {
  display: grid;
  grid-template-columns: minmax(3rem, 0.7fr) minmax(20rem, 4.8fr) minmax(15rem, 2fr);
  gap: clamp(1rem, 3vw, 3.5rem);
  align-items: start;
}

.about-heading h2,
.clients-heading h2,
.contact-inner h2 {
  margin: 0;
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.about-heading h2 {
  max-width: 10ch;
  font-size: clamp(3rem, 6.1vw, 7rem);
}

.about-copy {
  padding-top: 1.75rem;
}

.about-copy p {
  max-width: 30rem;
  margin: 0;
  color: #55534f;
  font-size: clamp(1rem, 1.22vw, 1.16rem);
  line-height: 1.55;
}

.about-copy p + p {
  margin-top: 1.2rem;
}

.about-principles {
  margin-top: clamp(5rem, 9vw, 8.5rem);
  border-top: 1px solid rgba(8, 8, 8, 0.7);
}

.about-principle {
  display: grid;
  grid-template-columns: minmax(3rem, 0.7fr) minmax(14rem, 3fr) minmax(16rem, 3fr);
  gap: clamp(1rem, 3vw, 3.5rem);
  align-items: baseline;
  padding: clamp(1.4rem, 3vw, 2.5rem) 0;
  border-bottom: 1px solid rgba(8, 8, 8, 0.22);
}

.about-principle > span {
  color: #6c6a65;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.about-principle h3 {
  margin: 0;
  font-size: clamp(1.8rem, 3.6vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  transition: color 260ms ease, transform 420ms var(--ease);
}

.about-principle p {
  max-width: 30rem;
  margin: 0;
  color: #5d5b56;
  font-size: 0.92rem;
  line-height: 1.55;
}

.about-principle:hover h3 {
  color: var(--accent);
  transform: translateX(0.35rem);
}

.clients-section {
  padding-top: clamp(5rem, 8vw, 8rem);
  padding-bottom: clamp(6rem, 10vw, 9rem);
  border-top: 1px solid rgba(8, 8, 8, 0.2);
  background: #d9d7d0;
  color: var(--ink);
}

.clients-heading {
  display: grid;
  grid-template-columns: minmax(3rem, 0.7fr) minmax(0, 6.8fr);
  gap: clamp(1rem, 3vw, 3.5rem);
  margin-bottom: clamp(4rem, 7vw, 6.5rem);
}

.clients-heading h2 {
  max-width: 10ch;
  font-size: clamp(3rem, 6.6vw, 7.4rem);
}

.clients-heading .eyebrow {
  margin: 0 0 1rem;
  color: #6b6964;
}

.clients-heading #clients-copy {
  max-width: 34rem;
  margin: 1.6rem 0 0;
  color: #5a5853;
  font-size: clamp(1rem, 1.22vw, 1.16rem);
  line-height: 1.5;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(8, 8, 8, 0.5);
  border-left: 1px solid rgba(8, 8, 8, 0.5);
}

.client-card {
  position: relative;
  display: flex;
  min-height: clamp(15rem, 22vw, 20rem);
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(1rem, 1.6vw, 1.5rem);
  border-right: 1px solid rgba(8, 8, 8, 0.5);
  border-bottom: 1px solid rgba(8, 8, 8, 0.5);
  transition:
    background-color 350ms ease,
    color 350ms ease;
  content-visibility: auto;
  contain-intrinsic-size: auto 18rem;
}

.client-card::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms var(--ease);
}

.client-number {
  position: relative;
  z-index: 2;
  color: #706e68;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.client-logo-window {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(8rem, 11vw, 10rem);
}

.client-logo-window img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  image-rendering: auto;
  transform: scale(1.02);
  transform-origin: center;
  transition: transform 500ms var(--ease);
}

.client-logo-window .client-logo--monochrome {
  filter: brightness(0);
}

.client-card h3 {
  position: relative;
  z-index: 2;
  margin: 1.1rem 0 0;
  color: #575550;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.015em;
  line-height: 1.25;
  transition: color 350ms ease;
}

.client-card:hover::after {
  transform: scaleX(1);
}

.client-card:hover .client-logo-window img {
  transform: scale(1.07);
}

.client-card:hover h3 {
  color: var(--ink);
}

.contact-section {
  overflow: hidden;
  padding-top: clamp(6rem, 11vw, 11rem);
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
  background:
    radial-gradient(circle at 91% 18%, rgba(21, 82, 232, 0.25), transparent 27%),
    radial-gradient(circle at 12% 76%, rgba(76, 92, 98, 0.14), transparent 30%),
    var(--ink);
  color: var(--bone);
}

.contact-section::before {
  position: absolute;
  top: -22vw;
  right: -18vw;
  width: min(70vw, 58rem);
  aspect-ratio: 1;
  border: 1px solid rgba(93, 137, 244, 0.24);
  border-radius: 50%;
  content: "";
}

.contact-rule {
  position: absolute;
  top: 0;
  left: var(--page-pad);
  width: min(22vw, 18rem);
  height: 2px;
  background: var(--brand-blue);
}

.contact-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(7rem, 0.7fr) minmax(22rem, 4.8fr) minmax(16rem, 2fr);
  gap: clamp(1rem, 3vw, 3.5rem);
  align-items: start;
}

.contact-label {
  padding-top: 0.55rem;
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-inner h2 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 6.9vw, 7.8rem);
}

.contact-inner > p {
  max-width: 28rem;
  margin: 2rem 0 1.9rem;
  color: var(--bone-dim);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.52;
}

#contact-action {
  grid-column: 3;
}

.contact-action {
  display: inline-flex;
  width: min(100%, 18rem);
  min-height: 4rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(240, 238, 231, 0.62);
  background: transparent;
  color: var(--bone);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  transition:
    background-color 280ms ease,
    color 280ms ease,
    transform 320ms var(--ease);
}

.contact-action:hover,
.contact-action:focus-visible {
  background: var(--bone);
  color: var(--ink);
  transform: translateY(-2px);
}

.contact-action span {
  transition: transform 280ms var(--ease);
}

.contact-action:hover span,
.contact-action:focus-visible span {
  transform: translate(0.2rem, -0.2rem);
}

.contact-process {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(4rem, 7vw, 7rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-step {
  min-height: 12rem;
  padding: 1.2rem clamp(1rem, 2vw, 1.8rem) 1.5rem 0;
}

.contact-step + .contact-step {
  padding-left: clamp(1rem, 2vw, 1.8rem);
  border-left: 1px solid var(--line);
}

.contact-step > span {
  color: var(--accent);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.contact-step h3 {
  margin: 2.8rem 0 0.65rem;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.contact-step p {
  max-width: 21rem;
  margin: 0;
  color: #8b8882;
  font-size: 0.82rem;
  line-height: 1.55;
}

.contact-meta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  margin-top: clamp(7rem, 15vw, 14rem);
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: #77746f;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-intro {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(7rem, 0.7fr) minmax(22rem, 4.8fr) minmax(16rem, 2fr);
  gap: clamp(1rem, 3vw, 3.5rem);
  align-items: start;
}

.contact-intro .contact-label {
  color: #78a0ff;
  font-size: 0.75rem;
}

.contact-intro h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(3.2rem, 6.9vw, 7.8rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.contact-intro > p {
  max-width: 28rem;
  margin: 2rem 0 0;
  color: var(--bone-dim);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.52;
}

.contact-workspace {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(15rem, 0.85fr) minmax(32rem, 2.15fr);
  gap: clamp(2rem, 5vw, 6rem);
  margin-top: clamp(4.5rem, 8vw, 8rem);
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.contact-details-kicker,
.form-heading > span {
  color: #78a0ff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-details > div {
  margin-top: 2.6rem;
  border-top: 1px solid rgba(240, 238, 231, 0.16);
}

.contact-detail {
  display: grid;
  gap: 0.45rem;
  padding: 1.05rem 0;
  border-bottom: 1px solid rgba(240, 238, 231, 0.16);
}

.contact-detail span {
  color: #85827c;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-detail strong {
  color: var(--bone);
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

a.contact-detail strong {
  transition: color 220ms ease, transform 280ms var(--ease);
}

a.contact-detail:hover strong,
a.contact-detail:focus-visible strong {
  color: #78a0ff;
  transform: translateX(0.28rem);
}

.contact-detail-social {
  margin-top: 1.2rem;
}

.contact-detail-whatsapp {
  grid-template-columns: 1.65rem minmax(0, 1fr);
  align-items: center;
  gap: 0.8rem;
}

.contact-detail-whatsapp-mark {
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  place-items: center;
  color: #25d366;
}

.contact-detail-whatsapp-mark svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.contact-detail-whatsapp strong {
  min-width: 0;
}

.contact-detail-whatsapp bdi {
  display: inline-block;
  direction: ltr;
  unicode-bidi: isolate;
}

.project-form {
  padding: clamp(1.4rem, 3.4vw, 3.5rem);
  border: 1px solid rgba(240, 238, 231, 0.2);
  background: rgba(240, 238, 231, 0.035);
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.form-heading {
  display: grid;
  grid-template-columns: 1fr minmax(15rem, 0.9fr);
  gap: 2rem;
  align-items: start;
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
  border-bottom: 1px solid rgba(240, 238, 231, 0.18);
}

.form-heading p {
  max-width: 28rem;
  margin: 0;
  color: var(--bone-dim);
  font-size: 1rem;
  line-height: 1.55;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(1.4rem, 3vw, 3.25rem);
}

.form-field {
  display: grid;
  align-content: start;
  padding-top: 1.7rem;
}

.form-field > span {
  margin-bottom: 0.55rem;
  color: #9d9a94;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-field b {
  color: #78a0ff;
  font-weight: 600;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3rem;
  border: 0;
  border-bottom: 1px solid rgba(240, 238, 231, 0.32);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--bone);
  font: inherit;
  font-size: 1rem;
  transition: border-color 220ms ease, background-color 220ms ease;
}

.form-field input,
.form-field select {
  padding: 0.35rem 0;
}

.form-field textarea {
  min-height: 9rem;
  resize: vertical;
  padding: 0.8rem 0;
  line-height: 1.55;
}

.form-field select {
  appearance: none;
  padding-right: 1.7rem;
  background-image:
    linear-gradient(45deg, transparent 50%, #8f8c85 50%),
    linear-gradient(135deg, #8f8c85 50%, transparent 50%);
  background-position:
    calc(100% - 0.62rem) 50%,
    calc(100% - 0.28rem) 50%;
  background-repeat: no-repeat;
  background-size: 0.35rem 0.35rem, 0.35rem 0.35rem;
}

.form-field select option {
  background: #111;
  color: var(--bone);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #78a0ff;
  background: rgba(21, 82, 232, 0.045);
}

.form-field textarea::placeholder {
  color: #74716b;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-submit {
  display: grid;
  grid-template-columns: minmax(14rem, 1fr) minmax(14rem, 0.75fr);
  gap: 2rem;
  align-items: end;
  margin-top: 2.7rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(240, 238, 231, 0.18);
}

.form-submit p {
  max-width: 31rem;
  margin: 0;
  color: #8c8982;
  font-size: 0.78rem;
  line-height: 1.55;
}

.form-submit button {
  display: inline-flex;
  min-height: 4.25rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.15rem;
  border: 1px solid var(--brand-blue);
  background: var(--brand-blue);
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background-color 280ms ease, color 280ms ease, transform 320ms var(--ease);
}

.form-submit button:hover,
.form-submit button:focus-visible {
  background: var(--bone);
  color: var(--ink);
  transform: translateY(-2px);
}

.form-submit button span:last-child {
  transition: transform 280ms var(--ease);
}

.form-submit button:hover span:last-child,
.form-submit button:focus-visible span:last-child {
  transform: translate(0.2rem, -0.2rem);
}

.form-status {
  min-height: 1.4rem;
  margin: 1rem 0 0;
  color: #a9c0ff;
  font-size: 0.82rem;
  line-height: 1.45;
}

.contact-workspace + .contact-process {
  grid-column: auto;
  margin-top: clamp(5rem, 9vw, 9rem);
}

.contact-workspace + .contact-process .contact-step > span {
  color: #78a0ff;
  font-size: 0.75rem;
}

.contact-workspace + .contact-process .contact-step p {
  color: #9a9791;
  font-size: 0.88rem;
}

.contact-workspace ~ .contact-meta {
  color: #94918b;
  font-size: 0.75rem;
}

.site-footer {
  isolation: isolate;
  overflow: hidden;
  padding-top: clamp(4.5rem, 8vw, 8.5rem);
  padding-bottom: 1.4rem;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(21, 82, 232, 0.05), transparent 27%),
    var(--ink);
}

.footer-topline {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  color: #817e78;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-topline span:last-child {
  position: relative;
  padding-left: 1rem;
}

.footer-topline span:last-child::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.38rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--brand-blue);
  box-shadow: 0 0 1rem rgba(21, 82, 232, 0.8);
  content: "";
  transform: translateY(-50%);
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(7rem, 1fr) minmax(0, 5fr);
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: end;
  padding: clamp(4.5rem, 9vw, 9rem) 0 clamp(4.5rem, 7vw, 7rem);
}

.footer-cta.reveal-item {
  filter: none;
  opacity: 1;
  transform: none;
  transition: none;
}

.footer-cta > p {
  align-self: start;
  margin: 0.65rem 0 0;
  color: #8f8c86;
  font-size: 0.76rem;
  opacity: 0;
  transform: translateY(0.8rem);
  transition: opacity 650ms ease 120ms, transform 850ms var(--ease) 120ms;
}

.footer-cta.is-visible > p {
  opacity: 1;
  transform: translateY(0);
}

.footer-cta h2 {
  margin: 0;
  font-size: clamp(4.2rem, 8.6vw, 10rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.78;
}

.footer-title-line {
  display: block;
  overflow: hidden;
  padding: 0.04em 0.08em 0.14em 0;
  margin: -0.04em -0.08em -0.14em 0;
}

.footer-title-line > span {
  display: block;
  opacity: 0;
  transform: translateY(112%);
  transition: opacity 450ms ease, transform 1050ms var(--ease);
}

.footer-cta.is-visible .footer-title-line > span {
  opacity: 1;
  transform: translateY(0);
}

.footer-cta.is-visible .footer-title-line:first-child > span {
  transition-delay: 90ms;
}

.footer-cta.is-visible .footer-title-line:last-child > span {
  transition-delay: 220ms;
}

.footer-cta h2 > span:last-child {
  margin-left: clamp(-2rem, -2vw, -0.6rem);
  color: var(--bone-dim);
}

.footer-cta h2 em {
  color: var(--brand-blue);
  font-style: normal;
}

.footer-project-link {
  position: relative;
  isolation: isolate;
  grid-column: 1 / -1;
  display: flex;
  width: 100%;
  min-height: clamp(5.5rem, 8vw, 7.5rem);
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding: 1rem clamp(1rem, 2vw, 1.8rem);
  border-top: 1px solid rgba(240, 238, 231, 0.24);
  border-bottom: 1px solid rgba(240, 238, 231, 0.24);
  color: var(--bone);
  font-size: clamp(1.35rem, 2.2vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translateY(1.5rem);
  transition:
    color 320ms ease,
    opacity 700ms ease 520ms,
    clip-path 1000ms var(--ease) 430ms,
    transform 900ms var(--ease) 430ms;
}

.footer-project-link::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--brand-blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 650ms var(--ease);
}

.footer-cta.is-visible .footer-project-link {
  opacity: 1;
  clip-path: inset(0);
  transform: translateY(0);
}

.footer-project-link > span:last-child {
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
  font-weight: 400;
  transition: transform 450ms var(--ease);
}

.footer-project-link:hover,
.footer-project-link:focus-visible {
  color: #fff;
}

.footer-project-link:hover::before,
.footer-project-link:focus-visible::before {
  transform: scaleX(1);
}

.footer-project-link:hover > span:last-child,
.footer-project-link:focus-visible > span:last-child {
  transform: translate(0.35rem, -0.35rem);
}

.footer-directory {
  display: grid;
  grid-template-columns: minmax(14rem, 2fr) 1fr 1fr;
  gap: clamp(2rem, 5vw, 7rem);
  padding: 1.8rem 0 clamp(4.5rem, 8vw, 7.5rem);
  border-top: 1px solid var(--line);
}

.footer-column {
  display: grid;
  width: auto;
  justify-self: stretch;
  gap: 0.58rem;
  align-content: start;
  font-size: clamp(0.9rem, 1.1vw, 1.08rem);
}

.footer-column-label {
  margin-bottom: 1.25rem;
  color: #716e68;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  color: var(--bone-dim);
  transition: color 180ms ease, transform 280ms var(--ease);
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--bone);
  transform: translateX(0.22rem);
}

.footer-whatsapp-link {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
}

.footer-whatsapp-icon {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  fill: currentColor;
  color: var(--brand-blue);
}

.footer-social a {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
}

.footer-social a span:last-child {
  color: var(--brand-blue);
  font-size: 0.74rem;
}

.footer-signoff {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(1.75rem, 4vw, 4.5rem);
  align-items: center;
  padding: 1.8rem 0 0.25rem;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: block;
  width: fit-content;
}

.footer-brand .brand-plate {
  width: clamp(8.75rem, 11vw, 11.5rem);
  max-width: none;
  margin: 0;
  transition: transform 600ms var(--ease);
}

.footer-brand:hover .brand-plate,
.footer-brand:focus-visible .brand-plate {
  transform: translateY(-0.18rem);
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.75rem);
  color: #77746f;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-back-top {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  color: var(--bone-dim);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 300ms var(--ease);
}

.footer-back-top span:last-child {
  color: var(--brand-blue);
  font-size: 0.9rem;
}

.footer-back-top:hover,
.footer-back-top:focus-visible {
  color: var(--bone);
  transform: translateY(-0.18rem);
}

.prototype-toast {
  position: fixed;
  z-index: 120;
  right: 1rem;
  bottom: 1rem;
  max-width: min(28rem, calc(100vw - 2rem));
  padding: 0.9rem 1rem;
  border: 1px solid rgba(240, 238, 231, 0.22);
  background: rgba(15, 15, 15, 0.94);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.32);
  color: var(--bone);
  font-size: 0.82rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: opacity 250ms ease, transform 350ms var(--ease);
}

.project-open {
  overflow: hidden;
}

.project-dialog {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: var(--ink);
  color: var(--bone);
}

.project-dialog[open] {
  animation: project-dialog-in 520ms var(--ease) both;
}

.project-dialog::backdrop {
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(10px);
}

.project-dialog-shell {
  min-height: 100%;
  padding-bottom: clamp(5rem, 10vw, 10rem);
}

.project-dialog-bar {
  position: sticky;
  z-index: 5;
  top: 0;
  display: flex;
  min-height: 4.8rem;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.88);
  backdrop-filter: blur(18px);
  color: #77746f;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-dialog-bar button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--bone);
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.project-dialog-bar button span {
  font-size: 1.2rem;
  line-height: 1;
}

.project-dialog-media {
  width: min(100% - (var(--page-pad) * 2), 96rem);
  margin: clamp(1rem, 3vw, 2.5rem) auto 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #02050a;
}

.project-dialog-media video,
.project-dialog-media img {
  display: block;
  width: 100%;
  height: 100%;
  background: #02050a;
  object-fit: cover;
}

.project-dialog-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.project-dialog-media video {
  object-fit: contain;
}

.project-dialog-media.project-dialog-reels {
  position: relative;
  background: #07090e;
}

.project-dialog-reels .project-reel-pair {
  inset: 5% 16%;
}

.project-dialog-reels .project-reel-window {
  height: 94%;
}

.project-dialog-content {
  display: grid;
  width: min(100% - (var(--page-pad) * 2), 82rem);
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem;
  margin: clamp(4rem, 8vw, 8rem) auto 0;
}

.project-dialog-heading {
  grid-column: 1 / span 8;
}

.project-dialog-heading > p,
.project-dialog-content section > span,
.project-dialog-services > span {
  display: block;
  margin: 0 0 1rem;
  color: #77746f;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-dialog-heading h2 {
  max-width: 8ch;
  font-size: clamp(4.2rem, 9vw, 10rem);
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.project-dialog-heading strong {
  display: block;
  max-width: 24ch;
  margin-top: 2rem;
  color: var(--brand-blue);
  font-size: clamp(1.5rem, 2.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.project-dialog-meta {
  grid-column: 9 / -1;
  align-self: end;
  margin: 0;
  border-top: 1px solid var(--line);
}

.project-dialog-meta div {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
}

.project-dialog-meta dt {
  color: #77746f;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-dialog-meta dd {
  margin: 0;
  font-size: 0.82rem;
}

.project-dialog-lead {
  grid-column: 5 / -1;
  margin: clamp(5rem, 10vw, 10rem) 0 clamp(3.5rem, 7vw, 6rem);
  font-size: clamp(1.8rem, 3.5vw, 4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.project-dialog-content section {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.25rem;
  padding: clamp(2rem, 4vw, 3.5rem) 0;
  border-top: 1px solid var(--line);
}

.project-dialog-content section > span {
  grid-column: 1 / span 4;
}

.project-dialog-content section > p,
.project-dialog-content section > ul,
.project-dialog-content section > a {
  grid-column: 5 / -1;
  margin: 0;
  color: var(--bone-dim);
  font-size: clamp(1.05rem, 1.55vw, 1.35rem);
  line-height: 1.55;
}

.project-dialog-deliverables ul {
  padding: 0;
  list-style: none;
}

.project-dialog-deliverables li {
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(240, 238, 231, 0.1);
}

.project-dialog-services > p {
  color: var(--bone);
}

.project-dialog-external > a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.55rem;
  color: var(--brand-blue);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 600;
  text-decoration: none;
}

.project-dialog-external > a:hover,
.project-dialog-external > a:focus-visible {
  color: var(--bone);
}

@keyframes project-dialog-in {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.reveal-item {
  filter: blur(5px);
  opacity: 0;
  transform: translateY(1.35rem);
  transition:
    filter 700ms var(--ease),
    opacity 700ms ease,
    transform 900ms var(--ease);
}

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

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

@media (max-width: 1120px) {
  .hero-heading-wrap {
    grid-template-columns: 1fr;
  }

  .hero-title {
    max-width: 12ch;
    font-size: clamp(3.7rem, 7.4vw, 7rem);
  }

  .hero-line {
    white-space: normal;
  }

  .hero-intro {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: end;
  }

  .hero-intro p {
    margin: 0;
  }
}

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

  .brand-plate {
    width: 6.2rem;
  }

  .site-nav {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.7rem;
    border: 1px solid rgba(240, 238, 231, 0.24);
    background: transparent;
    color: var(--bone);
    cursor: pointer;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .menu-toggle-icon {
    position: relative;
    display: block;
    width: 1.1rem;
    height: 0.7rem;
  }

  .menu-toggle-icon i {
    position: absolute;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform 320ms var(--ease), top 320ms var(--ease);
  }

  .menu-toggle-icon i:first-child {
    top: 0.12rem;
  }

  .menu-toggle-icon i:last-child {
    top: 0.56rem;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-icon i:first-child {
    top: 0.34rem;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-icon i:last-child {
    top: 0.34rem;
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 95;
    inset: 0;
    display: grid;
    grid-template-rows: 1fr auto;
    padding: clamp(7rem, 14vh, 9rem) var(--page-pad) 2rem;
    background:
      radial-gradient(circle at 88% 20%, rgba(240, 79, 53, 0.13), transparent 28%),
      var(--ink);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition:
      opacity 280ms ease,
      transform 480ms var(--ease),
      visibility 0s linear 480ms;
    visibility: hidden;
  }

  .menu-open .mobile-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
    visibility: visible;
  }

  .menu-open {
    overflow: hidden;
  }

  .menu-open .site-header {
    background: rgba(8, 8, 8, 0.96);
    backdrop-filter: blur(18px);
  }

  .mobile-menu nav {
    display: grid;
    align-content: center;
  }

  .mobile-menu nav a {
    display: grid;
    grid-template-columns: 2.4rem 1fr;
    gap: 0.8rem;
    align-items: baseline;
    padding: 0.72rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--bone-dim);
    font-size: clamp(2rem, 7.8vw, 4.8rem);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 0.95;
    transition: color 220ms ease, padding-left 360ms var(--ease);
  }

  .mobile-menu nav a:hover,
  .mobile-menu nav a:focus-visible,
  .mobile-menu nav a.is-active {
    padding-left: 0.45rem;
    color: var(--bone);
  }

  .mobile-menu nav a > span {
    color: var(--accent);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.1em;
  }

  .mobile-menu-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    color: #77746f;
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .hero-heading-wrap {
    grid-template-columns: 1fr;
  }

  .hero-title {
    max-width: 12ch;
    font-size: clamp(3.7rem, 10.4vw, 7rem);
  }

  .hero-line {
    white-space: normal;
  }

  .hero-intro {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: end;
  }

  .hero-intro p {
    margin: 0;
  }

  .section-intro {
    grid-template-columns: 3rem 1fr;
  }

  .section-copy {
    grid-column: 2;
    margin-top: 0;
  }

  .project-left,
  .project-right {
    grid-column: 1 / -1;
  }

  .project-left .project-visual,
  .project-right .project-visual {
    aspect-ratio: 16 / 9;
  }

  .project-details {
    grid-template-columns: 1.1fr 1.7fr;
  }

  .project-link {
    grid-column: 2;
  }

  .service-split {
    min-height: 44rem;
  }

  .about-heading {
    grid-template-columns: 3rem 1fr;
  }

  .about-copy {
    grid-column: 2;
    padding-top: 0;
  }

  .about-principle {
    grid-template-columns: 3rem 1.15fr 1fr;
  }

  .clients-heading {
    grid-template-columns: 3rem 1fr;
  }

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

  .contact-inner {
    grid-template-columns: 3rem 1fr;
  }

  .contact-inner > p,
  #contact-action {
    grid-column: 2;
  }

  .contact-process {
    grid-column: 2;
  }

  .contact-inner > p {
    margin-bottom: 0;
  }

  .contact-intro {
    grid-template-columns: 3rem 1fr;
  }

  .contact-intro > p {
    grid-column: 2;
    margin-top: 0;
  }

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

  .contact-details > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
  }

  .contact-detail-social {
    margin-top: 0;
  }

  .footer-topline {
    justify-content: flex-start;
  }

  .footer-cta {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    padding: clamp(4rem, 8vw, 6rem) 0 clamp(5rem, 9vw, 7rem);
  }

  .footer-cta > p {
    margin: 0;
  }

  .footer-cta h2 {
    font-size: clamp(4rem, 10.6vw, 6.8rem);
    line-height: 0.82;
  }

  .footer-cta h2 > span:last-child {
    margin-top: 0.08em;
    margin-left: 0;
  }

  .text-link,
  .project-instagram-link,
  .service-action,
  .footer-column a,
  .footer-back-top {
    min-height: 2.75rem;
    align-items: center;
  }

  .text-link {
    padding-top: 0.55rem;
  }

  .footer-column a {
    display: inline-flex;
    min-width: 2.75rem;
  }

}

@media (max-width: 700px) {
  .site-header {
    min-height: 4.2rem;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }

  .header-cta {
    font-size: 0.76rem;
  }

  .menu-toggle {
    min-width: 2.75rem;
    justify-content: center;
    padding-right: 0.65rem;
    padding-left: 0.65rem;
  }

  .menu-toggle-label {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 6.5rem;
  }

  .hero::before {
    left: 1.25rem;
  }

  .hero-kicker {
    margin-left: 1.5rem;
  }

  .hero-kicker span:first-child {
    max-width: 9rem;
  }

  .hero-heading-wrap {
    margin-top: 2.8rem;
  }

  .hero-title {
    font-size: clamp(3.25rem, 15.4vw, 5rem);
    line-height: 0.85;
  }

  .hero-place {
    display: block;
    width: fit-content;
    margin-top: 0.35em;
    margin-left: 0;
    font-size: 0.48em;
    vertical-align: initial;
  }

  .hero-intro {
    display: block;
  }

  .hero-intro p {
    margin-bottom: 1.5rem;
  }

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

  .button {
    gap: 0.75rem;
    padding: 0.72rem 0.82rem;
    font-size: 0.78rem;
  }

  .hero-media {
    width: calc(100% + (var(--page-pad) * 2));
    margin-left: calc(var(--page-pad) * -1);
  }

  .hero-film {
    aspect-ratio: 4 / 5;
  }

  .hero-poster,
  .hero-video {
    object-position: 57% center;
  }

  .film-frame {
    inset: 0.85rem;
  }

  .hero-video-trigger {
    width: 5.5rem;
  }

  .film-status {
    top: 1rem;
    right: 1rem;
  }

  .film-meta {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    display: grid;
    gap: 0.25rem;
  }

  .hero-media-note {
    display: none;
  }

  .work-section,
  .services-section {
    padding-top: 6.2rem;
    padding-bottom: 6.2rem;
  }

  .section-intro {
    grid-template-columns: 1fr;
    margin-bottom: 3.7rem;
  }

  .section-index,
  .section-copy {
    grid-column: auto;
  }

  .section-intro h2 {
    font-size: clamp(3rem, 14.5vw, 5rem);
  }

  .projects {
    display: block;
  }

  .project + .project {
    margin-top: 5.3rem;
  }

  .project-visual,
  .project-left .project-visual,
  .project-right .project-visual {
    aspect-ratio: 4 / 5;
  }

  .project-has-media .project-visual {
    aspect-ratio: 16 / 9;
  }

  .project-has-reels .project-visual {
    aspect-ratio: 4 / 5;
  }

  .project-reel-pair {
    inset: 10% 4.5%;
    gap: 0.55rem;
  }

  .project-reel-window {
    height: 62%;
  }

  .project-reel-brand {
    top: 15%;
    font-size: clamp(5rem, 28vw, 7rem);
  }

  .project-reel-event {
    right: 5%;
    bottom: 5%;
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .project-has-reels .project-view {
    display: grid;
    width: 4.7rem;
    font-size: 0.68rem;
  }

  .project-media-title {
    bottom: 9%;
    left: 5%;
    font-size: clamp(3rem, 14vw, 4.5rem);
    line-height: 0.74;
  }

  .project-mfcc .project-media-title {
    bottom: 9%;
    font-size: clamp(2.2rem, 9vw, 3.3rem);
    line-height: 0.86;
  }

  .project-has-media .project-view {
    top: 67%;
    left: 73%;
    display: grid;
    width: clamp(4.5rem, 21vw, 5.2rem);
    font-size: 0.7rem;
  }

  .project-visual-title {
    font-size: clamp(3.2rem, 17vw, 5.5rem);
  }

  .project-visual-top span:last-child {
    display: none;
  }

  .project-view {
    display: none;
  }

  .project-details {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .project-meta {
    grid-template-columns: 1fr 1.2fr 0.55fr;
  }

  .project-link {
    grid-column: auto;
  }

  .project-dialog-bar {
    min-height: 4.2rem;
  }

  .project-dialog-media {
    width: 100%;
    margin-top: 0;
  }

  .project-dialog-media.project-dialog-reels {
    aspect-ratio: 4 / 5;
  }

  .project-dialog-reels .project-reel-pair {
    inset: 7% 4.5%;
  }

  .project-dialog-reels .project-reel-window {
    height: 72%;
  }

  .project-dialog-content {
    width: calc(100% - (var(--page-pad) * 2));
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 3.5rem;
  }

  .project-dialog-heading,
  .project-dialog-meta,
  .project-dialog-lead,
  .project-dialog-content section {
    grid-column: auto;
  }

  .project-dialog-heading h2 {
    font-size: clamp(3.7rem, 18vw, 6rem);
  }

  .project-dialog-meta {
    margin-top: 3rem;
  }

  .project-dialog-lead {
    margin: 4rem 0 3rem;
    font-size: clamp(1.8rem, 9vw, 3rem);
  }

  .project-dialog-content section {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .project-dialog-content section > span,
  .project-dialog-content section > p,
  .project-dialog-content section > ul,
  .project-dialog-content section > a {
    grid-column: auto;
  }

  .work-footer {
    display: grid;
    gap: 1.5rem;
  }

  .work-footer > span {
    text-align: left;
  }

  .service-split {
    min-height: 58rem;
    flex-direction: column;
  }

  .service-panel {
    min-height: 0;
    flex: 0.72;
    padding: 1.25rem;
  }

  .service-panel + .service-panel {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .service-panel[data-active="true"] {
    flex: 1.8;
  }

  .service-copy h3,
  .service-panel[data-active="false"] .service-copy h3 {
    font-size: clamp(2.9rem, 13.8vw, 5.3rem);
  }

  .service-panel[data-active="false"] .service-detail {
    max-height: 0;
    opacity: 0;
    transform: translateY(1rem);
  }

  .service-topline span:last-child {
    display: none;
  }

  .about-section,
  .clients-section,
  .contact-section {
    padding-top: 6.2rem;
    padding-bottom: 6.2rem;
  }

  .about-heading,
  .about-principle,
  .clients-heading,
  .contact-inner,
  .contact-intro {
    grid-template-columns: 1fr;
  }

  .about-heading h2,
  .clients-heading h2,
  .contact-inner h2,
  .contact-intro h2 {
    font-size: clamp(3rem, 14.5vw, 5rem);
  }

  .about-copy,
  .contact-inner > p,
  .contact-intro > p,
  #contact-action,
  .contact-process {
    grid-column: auto;
  }

  .about-copy {
    padding-top: 0.5rem;
  }

  .about-principles {
    margin-top: 4.5rem;
  }

  .about-principle {
    gap: 0.75rem;
  }

  .about-principle p {
    max-width: 34rem;
  }

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

  .client-card {
    min-height: 12rem;
    padding: 1rem;
  }

  .client-card h3 {
    font-size: 0.66rem;
  }

  .contact-inner > p {
    margin-top: 0.5rem;
  }

  .contact-intro > p {
    margin-top: 0.5rem;
  }

  .contact-workspace {
    gap: 3.5rem;
    margin-top: 4rem;
  }

  .contact-details > div {
    display: block;
    margin-top: 1.6rem;
  }

  .contact-detail-social {
    margin-top: 1.2rem;
  }

  .project-form {
    padding: 1.2rem;
  }

  .form-heading,
  .form-grid,
  .form-submit {
    grid-template-columns: 1fr;
  }

  .form-heading,
  .form-submit {
    gap: 1.35rem;
  }

  .form-field-wide {
    grid-column: auto;
  }

  .form-submit button {
    width: 100%;
  }

  .contact-process {
    grid-template-columns: 1fr;
    margin-top: 3.5rem;
  }

  .contact-step {
    min-height: auto;
    padding: 1rem 0 1.4rem;
  }

  .contact-step + .contact-step {
    padding: 1rem 0 1.4rem;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contact-step h3 {
    margin-top: 1.7rem;
  }

  .contact-meta {
    display: grid;
    gap: 0.4rem;
    margin-top: 7rem;
  }

  .site-footer {
    padding-top: 4.8rem;
  }

  .footer-topline {
    justify-content: flex-start;
  }

  .footer-cta {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 4rem 0 5rem;
  }

  .footer-cta > p {
    margin: 0;
  }

  .footer-cta h2 {
    min-width: 0;
    font-size: clamp(3.15rem, 16vw, 6.4rem);
    line-height: 0.82;
  }

  .footer-cta > * {
    min-width: 0;
  }

  .footer-cta h2 > span:last-child {
    margin-top: 0.1em;
    margin-left: 0;
  }

  .footer-project-link {
    min-height: 5.4rem;
    padding-right: 0.9rem;
    padding-left: 0.9rem;
    font-size: 1.2rem;
  }

  .footer-directory {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 1.5rem;
    padding-bottom: 4.5rem;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .footer-signoff {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: end;
    padding-top: 1.8rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand .brand-plate {
    width: 9rem;
    margin: 0;
  }

  .footer-legal {
    display: grid;
    justify-content: start;
    gap: 0.35rem;
  }

  .footer-back-top {
    justify-self: end;
  }
}

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

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

  .reveal-item,
  .project-visual-inner,
  .hero-media {
    transform: none;
  }

  .hero-video {
    display: none;
  }
}
