:root {
  --ink: #080808;
  --ink-2: #101010;
  --paper: #f2efe8;
  --muted: #a7a49d;
  --line: rgba(242, 239, 232, 0.14);
  --red: #ff3b30;
  --red-dark: #9e120d;
  --lime: #d9ff43;
  --max: 1480px;
  --gutter: clamp(20px, 4.2vw, 72px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% -8%, rgba(255, 59, 48, 0.12), transparent 31rem),
    var(--ink);
  color: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

button {
  color: inherit;
}

::selection {
  background: var(--red);
  color: white;
}

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 200;
  padding: 11px 16px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: none;
}

#ambient-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.75;
}

.noise {
  position: fixed;
  inset: -50%;
  z-index: 100;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
  animation: noise-jump 220ms steps(2) infinite;
}

@keyframes noise-jump {
  0% { transform: translate3d(-2%, -2%, 0); }
  25% { transform: translate3d(2%, 1%, 0); }
  50% { transform: translate3d(-1%, 2%, 0); }
  75% { transform: translate3d(1%, -1%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 150;
  height: 2px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
  box-shadow: 0 0 18px rgba(255, 59, 48, 0.75);
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - 32px), var(--max));
  min-height: 66px;
  padding: 9px 12px 9px 16px;
  border: 1px solid rgba(242, 239, 232, 0.11);
  border-radius: 18px;
  background: rgba(9, 9, 9, 0.72);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px) saturate(140%);
  transform: translateX(-50%);
  transition: background 300ms ease, border-color 300ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(242, 239, 232, 0.18);
  background: rgba(9, 9, 9, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  justify-self: start;
  width: max-content;
}

.brand__plate {
  display: block;
  width: 122px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  line-height: 0;
}

.site-header .brand__plate {
  width: 144px;
}

.brand__plate img {
  display: block;
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  gap: clamp(20px, 3vw, 48px);
  justify-self: center;
}

.desktop-nav a,
.site-footer nav a {
  position: relative;
  color: #bab7b1;
  font-size: 13px;
  transition: color 180ms ease;
}

.desktop-nav a::after,
.site-footer nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 360ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.site-footer nav a:hover {
  color: var(--paper);
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 45px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: color 250ms ease, background 250ms ease, border-color 250ms ease, transform 250ms var(--ease);
}

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

.header-cta:hover,
.button--primary:hover {
  background: var(--paper);
  color: var(--ink);
}

.button--ghost {
  border-color: rgba(242, 239, 232, 0.25);
  background: rgba(242, 239, 232, 0.02);
}

.button--ghost:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: var(--paper);
  transition: transform 300ms var(--ease);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  align-content: center;
  padding: 116px var(--gutter) 48px;
  background: rgba(7, 7, 7, 0.97);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-18px);
  transition: opacity 300ms ease, transform 500ms var(--ease);
}

.menu-panel[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.menu-panel nav {
  display: grid;
}

.menu-panel nav a {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(2.4rem, 10vw, 5.6rem);
  font-weight: 600;
  letter-spacing: -0.06em;
}

.menu-panel nav a span {
  color: var(--red);
  font: 400 10px/1 "DM Mono", monospace;
  letter-spacing: 0.1em;
}

.menu-panel > p {
  margin: 34px 0 0;
  color: var(--muted);
  font: 400 11px/1.5 "DM Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.page {
  animation: page-in 700ms var(--ease) both;
}

@keyframes page-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

.shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--muted);
  font: 400 10px/1.2 "DM Mono", monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
  content: "";
}

.section-head {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 0.42fr);
  align-items: end;
  gap: 48px;
  margin-bottom: clamp(36px, 5vw, 76px);
}

.section-head h2,
.page-hero h1,
.cta-block h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5.5vw, 6.3rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.35vw, 1.15rem);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  color: var(--paper);
  font-size: 13px;
  font-weight: 700;
}

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

.text-link:hover span {
  transform: translate(4px, -3px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  width: min(100%, var(--max));
  min-height: min(690px, 74svh);
  margin: 0 auto;
  padding: 122px var(--gutter) 52px;
  overflow: hidden;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.55rem, 6.6vw, 6.4rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.hero h1 em {
  color: var(--red);
  font-style: normal;
}

[data-split] .word {
  display: inline-block;
  margin-right: 0.2em;
  opacity: 0;
  transform: translateY(1.1em) rotate(3deg);
  animation: word-up 900ms var(--ease) forwards;
  animation-delay: calc(var(--i) * 75ms + 80ms);
}

@keyframes word-up {
  to { opacity: 1; transform: none; }
}

.hero__sub {
  max-width: 560px;
  margin: 27px 0 0;
  color: #b1aea8;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.65;
}

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

.hero__studio {
  position: relative;
  z-index: 2;
  width: min(38vw, 510px);
  justify-self: end;
  perspective: 1000px;
}

.studio-window {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(13, 13, 13, 0.94);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.45), 0 0 70px rgba(255, 59, 48, 0.08);
  transform: rotateY(-4deg) rotateX(1deg);
  animation: studio-float 6s var(--ease) infinite alternate;
}

@keyframes studio-float {
  to { transform: translateY(-10px) rotateY(-1deg) rotateX(0); }
}

.studio-window__bar,
.studio-window__bar span,
.studio-window__bar b,
.studio-platforms {
  display: flex;
  align-items: center;
}

.studio-window__bar {
  justify-content: space-between;
  min-height: 38px;
  padding: 0 5px 10px;
  font: 500 9px/1 "DM Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.studio-window__bar span { gap: 8px; }
.studio-window__bar span img { width: 20px; height: 20px; }
.studio-window__bar b { gap: 7px; color: #96928b; font-weight: 400; }
.studio-window__bar b i { width: 6px; height: 6px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 5px rgba(255, 59, 48, 0.1); animation: rec-pulse 1.4s ease infinite; }

@keyframes rec-pulse { 50% { opacity: 0.35; } }

.studio-preview {
  position: relative;
  height: clamp(230px, 22vw, 290px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: #050505;
}

.studio-filmstrip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 72%;
  gap: 2px;
}

.studio-filmstrip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) brightness(0.72);
  animation: studio-zoom 9s var(--ease) infinite alternate;
}

.studio-filmstrip img:nth-child(2) { animation-delay: -3s; }
.studio-filmstrip img:nth-child(3) { animation-delay: -6s; }

@keyframes studio-zoom { to { transform: scale(1.08); filter: saturate(1) brightness(0.9); } }

.studio-play {
  position: absolute;
  top: 36%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
}

.studio-play span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #080808;
}

.studio-caption {
  position: absolute;
  bottom: 32px;
  left: 16px;
  display: grid;
  gap: 4px;
}

.studio-caption strong { font-size: 14px; }
.studio-caption span { color: #8f8b85; font: 400 9px/1 "DM Mono", monospace; text-transform: uppercase; }

.studio-timeline {
  position: absolute;
  right: 14px;
  bottom: 13px;
  left: 14px;
  display: grid;
  grid-template-columns: 1fr 0.7fr 1.25fr;
  gap: 3px;
  height: 7px;
}

.studio-timeline i { background: #343434; }
.studio-timeline i:first-child { background: var(--red); }
.studio-timeline b { position: absolute; top: -5px; left: 44%; width: 1px; height: 17px; background: white; }

.studio-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 12px 0 0;
  list-style: none;
}

.studio-flow li {
  position: relative;
  display: grid;
  gap: 7px;
  padding: 0 8px;
  border-right: 1px solid var(--line);
  color: #aaa69f;
  font: 400 8px/1 "DM Mono", monospace;
  text-transform: uppercase;
}

.studio-flow li:last-child { border-right: 0; color: white; }
.studio-flow li b { color: #605d58; font-weight: 400; }

.studio-platforms {
  gap: 12px;
  margin-top: 13px;
  padding: 12px 8px 3px;
  border-top: 1px solid var(--line);
}

.studio-platforms span { margin-right: auto; color: #74716c; font: 400 8px/1 "DM Mono", monospace; text-transform: uppercase; }
.studio-platforms img { width: 18px; height: 18px; object-fit: contain; opacity: 0.72; }

section[id] { scroll-margin-top: 92px; }

.hero--video {
  min-height: clamp(650px, 78svh, 820px);
}

.hero--video .hero__content {
  max-width: 670px;
}

.hero--video h1 {
  max-width: 660px;
  font-size: clamp(3.45rem, 5.55vw, 5.8rem);
}

.hero__video {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.04);
}

.hero__video-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #080808 0%, rgba(8, 8, 8, 0.98) 22%, rgba(8, 8, 8, 0.76) 43%, rgba(8, 8, 8, 0.08) 72%, rgba(8, 8, 8, 0.2) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.1) 68%, #080808 100%);
}

.logo-runway {
  position: relative;
  padding: 44px 0 52px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.68);
}

.logo-runway__label {
  width: min(100%, var(--max));
  margin: 0 auto 34px;
  padding: 0 var(--gutter);
  color: #aaa69f;
  font: 600 clamp(1.55rem, 3vw, 2.7rem)/1.05 "Manrope", sans-serif;
  letter-spacing: -0.045em;
  text-align: center;
}

.logo-rail {
  position: relative;
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.logo-rail + .logo-rail {
  margin-top: 26px;
}

.logo-track {
  display: flex;
  flex: none;
  align-items: center;
  gap: clamp(56px, 6vw, 96px);
  min-width: max-content;
  padding-right: clamp(56px, 6vw, 96px);
  animation: logo-left 40s linear infinite;
}

.logo-rail--reverse .logo-track {
  animation-name: logo-right;
  animation-duration: 46s;
}

.logo-runway:hover .logo-track,
.logo-rail:focus-within .logo-track {
  animation-play-state: paused;
}

.logo-item {
  display: grid;
  place-items: center;
  width: 174px;
  height: 66px;
}

.logo-item img {
  max-width: 164px;
  max-height: 58px;
  object-fit: contain;
  opacity: 0.82;
  filter: grayscale(1) contrast(1.05);
  transition: opacity 220ms ease, filter 220ms ease, transform 220ms var(--ease);
}

.logo-item img[data-invert="true"] {
  filter: grayscale(1) brightness(0) invert(1);
}

.logo-item:hover img {
  opacity: 1;
  filter: none;
  transform: scale(1.06);
}

.logo-item:hover img[data-invert="true"] {
  filter: brightness(0) invert(1);
}

@keyframes logo-left {
  to { transform: translateX(-100%); }
}

@keyframes logo-right {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

.work-section,
.services-preview,
.manifesto,
.page-section {
  padding-block: clamp(90px, 11vw, 170px);
}

.work-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 115px;
  gap: 14px;
}

.work-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  grid-column: span 4;
  grid-row: span 3;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(242, 239, 232, 0.12);
  border-radius: 24px;
  background: #131313;
  isolation: isolate;
  transform-style: preserve-3d;
  transition: transform 450ms var(--ease), border-color 250ms ease;
}

.work-card::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.14), transparent 35%);
  content: "";
  opacity: 0;
  transition: opacity 250ms ease;
  pointer-events: none;
}

.work-card:hover {
  border-color: rgba(242, 239, 232, 0.28);
}

.work-card:hover::before {
  opacity: 1;
}

.work-card--feature {
  grid-column: span 7;
  grid-row: span 5;
  min-height: 560px;
}

.work-card--tall {
  grid-column: span 5;
  grid-row: span 5;
  min-height: 560px;
}

.work-card--wide {
  grid-column: span 8;
  grid-row: span 3;
}

.work-card__media,
.work-card__wash {
  position: absolute;
  inset: 0;
}

.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 700ms ease, transform 1s var(--ease);
}

.work-card:hover .work-card__media img {
  transform: scale(1.045);
}

.work-card__wash {
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.04), rgba(5, 5, 5, 0.2) 42%, rgba(5, 5, 5, 0.92) 100%);
}

.work-card--graphic .work-card__wash {
  background:
    radial-gradient(circle at 76% 24%, rgba(255, 59, 48, 0.35), transparent 26%),
    linear-gradient(140deg, #2c0b0a, #0c0c0d 64%);
}

.work-card--light .work-card__wash {
  background:
    radial-gradient(circle at 78% 28%, rgba(217, 255, 67, 0.25), transparent 25%),
    linear-gradient(140deg, #1a1b14, #0c0c0d 68%);
}

.work-card__content {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  display: grid;
  gap: 15px;
  padding: clamp(22px, 3.2vw, 42px);
}

.work-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.68);
  font: 400 9px/1.4 "DM Mono", monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.work-card__topline b {
  color: var(--red);
  font-weight: 500;
}

.work-card h3 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.work-card:not(.work-card--feature) h3 {
  font-size: clamp(1.45rem, 2.25vw, 2.6rem);
}

.work-card__result {
  margin: 0;
  color: #d0ccc4;
  font-size: clamp(0.9rem, 1.2vw, 1.03rem);
  line-height: 1.5;
}

.work-card__metric {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.work-card__metric span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  color: white;
  font: 500 10px/1 "DM Mono", monospace;
  backdrop-filter: blur(12px);
}

.work-card__mark {
  position: absolute;
  top: 26px;
  right: 28px;
  z-index: 2;
  color: rgba(255, 255, 255, 0.07);
  font-size: clamp(7rem, 14vw, 14rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.1em;
}

.work-card__avatars {
  position: absolute;
  inset: 13% 8% auto;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.work-card__avatars img {
  width: clamp(100px, 14vw, 190px);
  aspect-ratio: 1;
  border: 8px solid #111;
  border-radius: 50%;
  object-fit: cover;
  filter: saturate(0.85);
}

.work-card__avatars img + img {
  margin-left: -12%;
}

.services-preview {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #050505;
  color: var(--paper);
}

.service-blocks {
  display: grid;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.service-block {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: #0b0b0b;
  outline: none;
  isolation: isolate;
  grid-column: span 4;
  transition: transform 450ms var(--ease), border-color 350ms ease;
}

.service-block:nth-last-child(-n + 2) {
  min-height: 310px;
  grid-column: span 6;
}

.service-block::before,
.service-block::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.service-block::before {
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 25%, rgba(0, 0, 0, 0.88) 100%);
}

.service-block::after {
  z-index: 2;
  background: linear-gradient(145deg, #ff4a3e, #d92b23);
  transform: translateY(102%);
  transform-origin: bottom;
  transition: transform 520ms var(--ease);
}

.service-block__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 550ms ease, transform 750ms var(--ease);
}

.service-block__content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: inherit;
  padding: 19px;
  flex-direction: column;
  color: white;
}

.service-block__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.service-block__num {
  font: 500 10px/1 "DM Mono", monospace;
  letter-spacing: 0.1em;
  opacity: 0.72;
}

.service-block__expand {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  font-size: 17px;
  line-height: 1;
  place-items: center;
  transition: background 350ms ease, color 350ms ease, transform 450ms var(--ease);
}

.service-block__copy {
  margin-top: auto;
}

.service-block h3 {
  max-width: 440px;
  margin: 0;
  font-size: clamp(1.5rem, 1.9vw, 2.2rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.service-block p {
  max-width: 420px;
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 14px;
  line-height: 1.55;
  transform: translateY(18px);
  transition: margin 400ms ease, max-height 500ms var(--ease), opacity 300ms ease, transform 500ms var(--ease);
}

.service-block ul {
  display: grid;
  max-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  list-style: none;
  gap: 6px;
  transform: translateY(20px);
  transition: margin 400ms ease, max-height 560ms var(--ease), opacity 320ms ease, transform 560ms var(--ease);
}

.service-block li {
  font: 500 13px/1.35 "Manrope", sans-serif;
  letter-spacing: 0;
}

.service-block:hover,
.service-block:focus-visible {
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-6px);
}

.service-block:hover::after,
.service-block:focus-visible::after {
  transform: translateY(0);
}

.service-block:hover .service-block__image,
.service-block:focus-visible .service-block__image {
  filter: saturate(0.7) contrast(1.08);
  transform: scale(1.055);
}

.service-block:hover .service-block__expand,
.service-block:focus-visible .service-block__expand {
  background: white;
  color: #e03229;
  transform: rotate(45deg);
}

.service-block:hover p,
.service-block:focus-visible p {
  max-height: 70px;
  margin-top: 13px;
  opacity: 0.92;
  transform: translateY(0);
}

.service-block:hover ul,
.service-block:focus-visible ul {
  max-height: 150px;
  margin-top: 17px;
  opacity: 0.9;
  transform: translateY(0);
}

.section-head--direct {
  align-items: end;
}

.section-head--direct h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.proof-list {
  border-top: 1px solid var(--line);
}

.project-proof {
  border-bottom: 1px solid var(--line);
  transition: background 300ms ease;
}

.project-proof:hover,
.project-proof[open] {
  background: rgba(255, 255, 255, 0.025);
}

.project-proof summary {
  display: grid;
  grid-template-columns: minmax(310px, 0.82fr) 1fr 34px;
  align-items: center;
  gap: 34px;
  min-height: 150px;
  padding: 18px 18px 18px 0;
  list-style: none;
  cursor: pointer;
}

.project-proof summary::-webkit-details-marker { display: none; }

.project-proof__identity {
  display: grid;
  grid-template-columns: 26px 72px 1fr;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.project-proof__identity > b {
  color: #66635e;
  font: 400 9px/1 "DM Mono", monospace;
}

.project-proof__identity > span:last-child {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.project-proof__identity small {
  overflow: hidden;
  color: #77746e;
  font: 400 8px/1 "DM Mono", monospace;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.project-proof__identity strong {
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.project-proof__thumb {
  position: relative;
  display: flex;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #151515;
}

.project-proof__thumb > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-proof__thumb--logo {
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.project-proof__thumb--logo img {
  height: auto;
  max-height: 42px;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1);
}

.project-proof__thumb--group img {
  width: 50%;
  height: 100%;
  margin-right: -17%;
  border-right: 2px solid #111;
  object-fit: cover;
}

.project-proof__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(90px, 1fr));
  gap: 22px;
}

.project-proof__metrics > span {
  display: grid;
  gap: 6px;
}

.project-proof__metrics strong {
  font-size: clamp(1.5rem, 2.8vw, 2.9rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.project-proof__metrics small {
  color: #85817b;
  font: 400 9px/1.35 "DM Mono", monospace;
  text-transform: uppercase;
}

.project-proof__toggle {
  display: grid;
  place-items: center;
  width: 32px;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #aaa69f;
  font-size: 19px;
  transition: transform 350ms var(--ease), background 350ms ease, color 350ms ease;
}

.project-proof[open] .project-proof__toggle {
  background: white;
  color: black;
  transform: rotate(45deg);
}

.project-proof__detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 52px 28px 114px;
}

.project-proof__detail p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.channel-section-head {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: center;
  flex-direction: column;
}

.channel-section-head > span {
  padding: 7px 12px;
  border: 1px solid rgba(255, 59, 48, 0.34);
  border-radius: 999px;
  color: #d1837e;
  font: 500 9px/1 "DM Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.channel-section-head h2 {
  font-size: clamp(3.2rem, 5.5vw, 6rem);
}

.channel-section-head p {
  max-width: 660px;
  color: #817e78;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.55;
}

.channel-grid__more-note {
  margin: 34px 0 0;
  color: #77736d;
  font: 500 12px/1 "DM Mono", monospace;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.channel-card {
  display: grid;
  min-width: 0;
  min-height: 370px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #0d0d0d;
  color: var(--paper);
  grid-template-rows: 220px 150px;
  transition: transform 350ms var(--ease), border-color 250ms ease, background 250ms ease;
}

.channel-card:hover {
  border-color: rgba(242, 239, 232, 0.32);
  background: #111;
  transform: translateY(-5px);
}

.channel-card__visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, #57201a, #1b1110);
}

.channel-card:nth-child(2) .channel-card__visual { background: linear-gradient(145deg, #4e596d, #1a1d24); }
.channel-card:nth-child(3) .channel-card__visual { background: linear-gradient(145deg, #74291f, #21110f); }
.channel-card:nth-child(4) .channel-card__visual { background: linear-gradient(145deg, #3e4851, #15181b); }
.channel-card:nth-child(5) .channel-card__visual { background: linear-gradient(145deg, #67503e, #1e1713); }
.channel-card:nth-child(6) .channel-card__visual { background: linear-gradient(145deg, #60232a, #1e1013); }

.channel-card__visual::before {
  position: absolute;
  width: 250px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.channel-card__body {
  display: flex;
  width: 100%;
  min-height: 150px;
  padding: 24px;
  flex-direction: column;
}

.channel-card__avatar {
  position: relative;
  z-index: 2;
  display: grid;
  width: 122px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: #171717;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  place-items: center;
}

.channel-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.channel-card__avatar img.is-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.channel-card__avatar--logo {
  border-color: rgba(255, 255, 255, 0.36);
  background: white;
}

.channel-card__title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.channel-card__arrow {
  display: grid;
  width: 34px;
  aspect-ratio: 1;
  flex: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--red);
  place-items: center;
}

.channel-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.channel-card__body > p {
  display: -webkit-box;
  min-height: 0;
  margin: 18px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.home-section {
  padding-block: clamp(90px, 11vw, 170px);
  border-top: 1px solid var(--line);
}

.home-about {
  overflow: hidden;
  background: #050505;
}

.about-intro {
  display: grid;
  align-items: start;
  margin-bottom: clamp(48px, 6vw, 82px);
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(48px, 8vw, 130px);
}

.about-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 30px;
  color: #d8d4ce;
  font: 500 11px/1 "DM Mono", monospace;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.about-kicker span {
  width: 40px;
  height: 1px;
  background: var(--red);
}

.about-title h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(4rem, 7vw, 7.4rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.about-title h2 b {
  color: var(--red);
  font-size: 1.08em;
  font-weight: 700;
}

.about-rule {
  position: relative;
  width: 100%;
  height: 1px;
  margin-top: clamp(42px, 6vw, 76px);
  background: linear-gradient(90deg, rgba(242, 239, 232, 0.38), rgba(242, 239, 232, 0.08));
}

.about-rule i {
  position: absolute;
  top: 50%;
  left: 44%;
  width: 62px;
  height: 1px;
  background: white;
  box-shadow: 0 0 12px 3px rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
}

.about-copy {
  padding-top: clamp(44px, 6vw, 72px);
}

.about-copy h3 {
  margin: 0 0 24px;
  color: #f0ede7;
  font-size: clamp(1.65rem, 2.5vw, 2.7rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.045em;
}

.about-copy p {
  max-width: 560px;
  margin: 0 0 18px;
  color: #a7a39c;
  font-size: clamp(0.9rem, 1.15vw, 1.05rem);
  line-height: 1.65;
}

.about-copy strong {
  color: #f1eee8;
  font-size: 1.06em;
  font-weight: 600;
}

.about-pillars {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0 0 38px 38px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-pillar {
  min-height: 285px;
  padding: 34px;
}

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

.about-pillar > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.about-pillar span {
  color: #d0ccc5;
  font: 400 14px/1 "DM Mono", monospace;
}

.about-pillar svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: #b7b2ab;
  stroke-width: 1;
}

.about-pillar h3 {
  margin: 56px 0 20px;
  color: #f1eee8;
  font-size: clamp(1.5rem, 2.3vw, 2.45rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-pillar > i {
  display: block;
  width: 30px;
  height: 1px;
  margin-bottom: 20px;
  background: #85817a;
}

.about-pillar p {
  max-width: 340px;
  margin: 0;
  color: #aaa69f;
  font-size: 14px;
  line-height: 1.6;
}

.about-closing {
  position: relative;
  display: grid;
  min-height: 180px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0 0 38px 38px;
  place-items: center;
  text-align: center;
}

.about-closing::before {
  position: absolute;
  top: -1px;
  left: 50%;
  width: 130px;
  height: 1px;
  background: white;
  box-shadow: 0 0 18px 4px rgba(255, 255, 255, 0.22);
  content: "";
  transform: translateX(-50%);
}

.about-closing p {
  margin: 0;
  color: #d5d1cb;
  font-size: clamp(2rem, 4.2vw, 4.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.about-closing strong {
  color: white;
  font-weight: 700;
}

.home-contact {
  background: #0d0d0d;
}

.contact-channel {
  display: grid;
  gap: 9px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.contact-channel > span {
  color: #77746e;
  font: 400 9px/1 "DM Mono", monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-channel a,
.contact-channel strong {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  letter-spacing: -0.04em;
}

.contact-channel small {
  color: #85817b;
  line-height: 1.5;
}

.contact-placeholder {
  color: #77746e;
}

.manifesto {
  min-height: 70vh;
  overflow: hidden;
}

.manifesto__line {
  margin: 0;
  color: rgba(242, 239, 232, 0.14);
  font-size: clamp(4rem, 10vw, 11rem);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.08em;
  white-space: nowrap;
  transform: translateX(var(--shift, 0));
  transition: color 650ms ease;
}

.manifesto__line:nth-child(2) {
  color: var(--paper);
  text-align: right;
}

.manifesto__line em {
  color: var(--red);
  font-style: normal;
}

.manifesto__copy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  max-width: 980px;
  margin: clamp(55px, 8vw, 110px) 0 0 auto;
}

.manifesto__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.manifesto__copy b {
  display: block;
  margin-bottom: 10px;
  color: var(--paper);
  font: 500 10px/1 "DM Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.42fr);
  align-items: end;
  gap: 56px;
  width: min(100%, var(--max));
  min-height: 55svh;
  margin: 0 auto;
  padding: 150px var(--gutter) 76px;
  border-bottom: 1px solid var(--line);
}

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

.page-hero__aside {
  padding-bottom: 9px;
}

.page-hero__aside p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.compact-work-grid,
.work-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.compact-work-grid .work-card,
.work-page-grid .work-card {
  grid-column: auto !important;
  grid-row: auto !important;
  min-height: 390px;
}

.compact-work-grid .work-card__media,
.work-page-grid .work-card__media {
  inset: 0 0 auto;
  height: 50%;
}

.compact-work-grid .work-card__avatars,
.work-page-grid .work-card__avatars {
  inset: 9% 8% auto;
}

.compact-work-grid .work-card__avatars img,
.work-page-grid .work-card__avatars img {
  width: clamp(74px, 9vw, 118px);
  border-width: 5px;
}

.compact-work-grid .work-card__mark,
.work-page-grid .work-card__mark {
  top: 22px;
  right: 25px;
  font-size: clamp(3.5rem, 6vw, 6.2rem);
}

.compact-work-grid .work-card__content,
.work-page-grid .work-card__content {
  gap: 10px;
  padding: 24px;
}

.compact-work-grid .work-card h3,
.work-page-grid .work-card h3,
.compact-work-grid .work-card:not(.work-card--feature) h3,
.work-page-grid .work-card:not(.work-card--feature) h3 {
  font-size: clamp(1.55rem, 2.15vw, 2.35rem);
}

.compact-work-grid .work-card__result,
.work-page-grid .work-card__result {
  font-size: 13px;
}

.service-accordion {
  border-top: 1px solid var(--line);
}

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

.service-accordion summary {
  display: grid;
  grid-template-columns: 70px 1fr 48px;
  align-items: center;
  min-height: 116px;
  list-style: none;
  cursor: pointer;
}

.service-accordion summary::-webkit-details-marker {
  display: none;
}

.service-accordion summary span:first-child {
  color: var(--red);
  font: 400 10px/1 "DM Mono", monospace;
}

.service-accordion summary strong {
  font-size: clamp(1.45rem, 3vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.045em;
}

.service-accordion summary i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-style: normal;
  transition: color 250ms ease, background 250ms ease, transform 350ms var(--ease);
}

.service-accordion details[open] summary i {
  background: var(--red);
  color: white;
  transform: rotate(45deg);
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 0 0 50px 70px;
}

.service-detail > p {
  margin: 0;
  color: #c2bfb8;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.72;
}

.service-detail ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-detail li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.service-detail li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.belief-grid,
.culture-grid,
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}

.belief-card,
.culture-card,
.engagement-card {
  position: relative;
  grid-column: span 6;
  min-height: 320px;
  padding: clamp(28px, 4vw, 52px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
}

.belief-card:nth-child(3),
.culture-card:nth-child(3) {
  grid-column: span 7;
}

.belief-card:nth-child(4),
.culture-card:nth-child(4) {
  grid-column: span 5;
}

.belief-card span,
.culture-card span,
.engagement-card span {
  color: var(--red);
  font: 400 10px/1 "DM Mono", monospace;
}

.belief-card h2,
.culture-card h2,
.engagement-card h2 {
  max-width: 650px;
  margin: 70px 0 18px;
  font-size: clamp(1.8rem, 3.4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.belief-card p,
.culture-card p,
.engagement-card p {
  max-width: 590px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.ticker-word {
  padding: 28px 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.ticker-word__track {
  display: flex;
  gap: 34px;
  width: max-content;
  color: rgba(242, 239, 232, 0.11);
  font-size: clamp(5rem, 12vw, 12rem);
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.07em;
  text-transform: uppercase;
  animation: logo-left 28s linear infinite;
}

.ticker-word__track em {
  color: var(--red);
  font-style: normal;
}

.talent-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.talent-card {
  display: grid;
  align-content: space-between;
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 300ms ease, color 300ms ease;
}

.talent-card:hover {
  background: var(--paper);
  color: var(--ink);
}

.talent-card span {
  color: var(--red);
  font: 400 10px/1 "DM Mono", monospace;
}

.talent-card h3 {
  margin: 60px 0 0;
  font-size: clamp(1.35rem, 2.2vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.65fr 1fr;
  gap: clamp(50px, 9vw, 140px);
}

.contact-note {
  position: sticky;
  top: 130px;
  align-self: start;
}

.contact-note h2 {
  margin: 0 0 25px;
  font-size: clamp(2.4rem, 4vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.contact-note p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
}

.field {
  display: grid;
  gap: 9px;
}

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

.field label {
  color: #8e8b85;
  font: 400 9px/1 "DM Mono", monospace;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(242, 239, 232, 0.2);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--paper);
  font-size: 16px;
  transition: border-color 220ms ease;
}

.field input,
.field select {
  height: 52px;
}

.field textarea {
  min-height: 130px;
  padding: 15px 0;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--red);
}

.field select {
  color-scheme: dark;
}

.form-foot {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
}

.form-foot small {
  max-width: 440px;
  color: #77746e;
  line-height: 1.5;
}

.form-success {
  grid-column: 1 / -1;
  display: none;
  padding: 24px;
  border: 1px solid rgba(217, 255, 67, 0.42);
  border-radius: 16px;
  background: rgba(217, 255, 67, 0.07);
  color: var(--lime);
}

.form-success.is-visible {
  display: block;
}

.cta-block {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 46px;
  margin-top: clamp(80px, 12vw, 180px);
  padding: clamp(45px, 7vw, 90px);
  overflow: hidden;
  border-radius: 30px;
  background: var(--red);
}

.cta-block::after {
  position: absolute;
  top: -60%;
  right: -8%;
  width: 48%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 50px rgba(255, 255, 255, 0.04), 0 0 0 100px rgba(255, 255, 255, 0.025);
}

.cta-block h2 {
  position: relative;
  z-index: 1;
  max-width: 930px;
  font-size: clamp(2.7rem, 6vw, 7rem);
}

.cta-block .button {
  position: relative;
  z-index: 1;
  border-color: var(--ink);
  background: var(--ink);
}

.site-footer {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 46px var(--gutter) 34px;
}

.footer__statement {
  padding-bottom: 80px;
  font-size: clamp(3.5rem, 8.5vw, 9rem);
  line-height: 0.82;
  letter-spacing: -0.075em;
}

.footer__statement span,
.footer__statement strong {
  display: block;
}

.footer__statement span {
  color: rgba(242, 239, 232, 0.18);
}

.footer__statement strong {
  font-weight: 700;
}

.footer__bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer__bottom nav {
  display: flex;
  gap: 28px;
}

.footer__bottom nav span {
  color: #8b8780;
  font-size: 12px;
}

.footer__bottom > p {
  justify-self: end;
  margin: 0;
  color: #77746e;
  font: 400 9px/1 "DM Mono", monospace;
  letter-spacing: 0.1em;
}

.reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

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

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 180;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(242, 239, 232, 0.55);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 220ms ease, height 220ms ease, background 220ms ease, border-color 220ms ease, opacity 180ms ease;
  mix-blend-mode: difference;
}

.cursor span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: white;
  transform: translate(-50%, -50%);
}

.cursor.is-active {
  width: 62px;
  height: 62px;
  border-color: white;
  background: white;
}

.noscript {
  position: fixed;
  inset: auto 16px 16px;
  z-index: 300;
  padding: 14px;
  background: var(--red);
  color: white;
}

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

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

  .hero__studio {
    width: min(42vw, 390px);
  }

  .project-proof summary {
    grid-template-columns: 1fr 34px;
  }

  .project-proof__metrics {
    grid-column: 1 / -1;
    padding-left: 114px;
  }

  .project-proof__toggle {
    grid-column: 2;
    grid-row: 1;
  }

  .service-blocks,
  .channel-grid,
  .compact-work-grid,
  .work-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-block,
  .service-block:nth-last-child(-n + 2) {
    grid-column: auto;
    min-height: 360px;
  }

  .service-block:last-child {
    grid-column: 1 / -1;
    min-height: 315px;
  }

  .about-intro {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-copy {
    max-width: 720px;
    padding-top: 52px;
  }

  .work-card--feature,
  .work-card--tall {
    grid-column: span 6;
  }

  .work-card--wide {
    grid-column: span 7;
  }

  .work-card:not(.work-card--feature):not(.work-card--tall):not(.work-card--wide) {
    grid-column: span 5;
  }

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

  .page-hero {
    grid-template-columns: 1fr;
    min-height: 48svh;
  }

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

  .footer__bottom {
    grid-template-columns: 1fr auto;
  }

  .footer__bottom nav {
    grid-column: 1 / -1;
    grid-row: 1;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 20px;
  }

  .logo-runway {
    padding: 34px 0 40px;
  }

  .logo-runway__label {
    margin-bottom: 26px;
    font-size: 1.65rem;
  }

  .logo-rail + .logo-rail {
    margin-top: 18px;
  }

  .logo-track {
    gap: 38px;
    padding-right: 38px;
  }

  .logo-item {
    width: 144px;
    height: 56px;
  }

  .logo-item img {
    max-width: 136px;
    max-height: 48px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 58px;
    border-radius: 15px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 116px;
    padding-bottom: 60px;
  }

  .hero h1 {
    max-width: 590px;
    font-size: clamp(3.35rem, 16vw, 5.4rem);
  }

  .hero__sub {
    max-width: 450px;
  }

  .hero--video {
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero--video h1 {
    font-size: clamp(3.2rem, 15vw, 4.9rem);
  }

  .hero__video {
    display: none;
  }

  .hero__studio {
    width: 100%;
    max-width: 420px;
    margin-top: 38px;
    justify-self: start;
  }

  .studio-window {
    transform: none;
  }

  .studio-window__bar b {
    display: none;
  }

  .studio-preview {
    height: 165px;
  }

  .studio-play {
    width: 44px;
  }

  .studio-flow {
    display: none;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-head h2,
  .page-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.8rem);
  }

  .work-bento,
  .channel-grid,
  .compact-work-grid,
  .work-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .work-card,
  .work-card--feature,
  .work-card--tall,
  .work-card--wide,
  .work-card:not(.work-card--feature):not(.work-card--tall):not(.work-card--wide),
  .compact-work-grid .work-card,
  .work-page-grid .work-card,
  .work-page-grid .work-card:nth-child(n) {
    grid-column: 1;
    grid-row: auto;
    min-height: 350px;
  }

  .channel-card {
    min-height: 330px;
    grid-template-rows: 200px 130px;
  }

  .channel-card__body {
    min-height: 130px;
    padding: 20px;
  }

  .channel-card__avatar {
    width: 106px;
  }

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

  .service-block,
  .service-block:nth-last-child(-n + 2),
  .service-block:last-child {
    min-height: 340px;
    grid-column: 1;
  }

  .service-block h3 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .service-block__content {
    padding: 22px;
  }

  .project-proof summary {
    grid-template-columns: 1fr 32px;
    gap: 18px;
    min-height: 0;
    padding: 22px 0;
  }

  .project-proof__identity {
    grid-template-columns: 20px 58px 1fr;
    gap: 12px;
  }

  .project-proof__thumb {
    width: 58px;
    height: 58px;
  }

  .project-proof__metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding-left: 0;
  }

  .project-proof__metrics strong {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .project-proof__metrics small {
    font-size: 7px;
  }

  .project-proof__detail {
    align-items: flex-start;
    padding: 0 0 24px;
    flex-direction: column;
  }

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

  .about-pillar {
    min-height: 235px;
    padding: 26px;
  }

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

  .about-pillar h3 {
    margin-top: 38px;
  }

  .about-closing {
    min-height: 150px;
    padding: 32px 18px;
  }

  .manifesto {
    min-height: auto;
  }

  .manifesto__line {
    font-size: clamp(4rem, 20vw, 7rem);
  }

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

  .page-hero {
    min-height: 440px;
    padding-top: 130px;
  }

  .service-accordion summary {
    grid-template-columns: 38px 1fr 42px;
    min-height: 96px;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 0 40px 38px;
  }

  .belief-grid,
  .culture-grid,
  .engagement-grid {
    grid-template-columns: 1fr;
  }

  .belief-card,
  .culture-card,
  .engagement-card,
  .belief-card:nth-child(n),
  .culture-card:nth-child(n) {
    grid-column: 1;
    min-height: 270px;
  }

  .talent-list {
    grid-template-columns: 1fr;
  }

  .talent-card {
    min-height: 210px;
  }

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

  .contact-note {
    position: static;
  }

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

  .field--wide,
  .form-foot,
  .form-success {
    grid-column: 1;
  }

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

  .cta-block {
    grid-template-columns: 1fr;
    padding: 42px 26px;
  }

  .cta-block .button {
    justify-self: start;
  }

  .footer__statement {
    padding-bottom: 55px;
  }

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

  .footer__bottom nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column: 1;
  }

  .footer__bottom > p {
    justify-self: start;
  }

  .cursor {
    display: none;
  }
}

@media (hover: none) {
  .service-block::after {
    background: linear-gradient(180deg, rgba(226, 47, 38, 0) 24%, rgba(226, 47, 38, 0.96) 100%);
    transform: translateY(0);
  }

  .service-block p {
    max-height: 70px;
    margin-top: 14px;
    opacity: 0.92;
    transform: translateY(0);
  }

  .service-block ul,
  .service-block__expand {
    display: none;
  }
}

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

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

  .logo-rail {
    overflow: visible;
    mask-image: none;
  }

  .logo-track {
    flex-wrap: wrap;
    min-width: 0;
    padding: 0 var(--gutter);
  }

  .logo-track[aria-hidden="true"] {
    display: none;
  }

  .reveal,
  [data-split] .word {
    opacity: 1;
    transform: none;
  }

  #ambient-canvas,
  .cursor,
  .noise {
    display: none;
  }
}
