@font-face {
  font-family: "Crystal Variable";
  src: url("/media/shared/fonts/crystal-variable.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 100 900;
}

:root {
  /* Foundations */
  --colour-ink: #080808;
  --colour-paper: #fffdf8;
  --colour-dark-surface: #000;
  --colour-cursor: #fff;
  --colour-line: #080808;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Crystal Variable", Arial, sans-serif;
  --font-stat: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "B612 Mono", "Courier New", monospace;

  /* 12-column layout */
  --page-margin: 25px;
  --grid-gutter: 20px;
  --section-space: clamp(100px, 12vw, 180px);

  /* Type system */
  --type-h1: 50px;
  --type-h2: 40px;
  --type-body: 14px;
  --type-body-leading: 24px;
  --type-body-large: 16px;
  --type-body-large-leading: 26px;
  --type-label: 0.75rem;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--colour-ink);
  background: var(--colour-paper);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

img {
  border-radius: 4px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gutter);
  box-sizing: border-box;
  width: min(100%, 1600px);
  margin-inline: auto;
  padding-inline: var(--page-margin);
}

.portfolio-grid > * {
  min-width: 0;
}

.grid-overlay {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: none;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--grid-gutter);
  box-sizing: border-box;
  width: min(100%, 1600px);
  margin-inline: auto;
  padding-inline: var(--page-margin);
  pointer-events: none;
}

.is-grid-visible .grid-overlay {
  display: grid;
}

.home-page.is-grid-visible .home-flow-item {
  outline: 2px solid rgba(255, 45, 85, 0.9);
  outline-offset: 0;
}

.home-page.is-grid-visible .home-testimonial-card {
  outline: none;
}

.home-page.is-grid-visible .home-testimonial__bounds {
  outline: 2px solid rgba(255, 45, 85, 0.9);
  outline-offset: 0;
}

.grid-overlay__column {
  height: 100vh;
  border-inline: 1px solid rgba(255, 45, 85, 0.45);
  background: rgba(255, 45, 85, 0.1);
}

.type-h1,
.type-h2 {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.type-h1 {
  font-size: var(--type-h1);
  text-transform: uppercase;
}

.type-h2 {
  font-size: var(--type-h2);
}

.type-body {
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: var(--type-body-leading);
}

.type-body-large {
  font-family: var(--font-body);
  font-size: var(--type-body-large);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: var(--type-body-large-leading);
}

.type-label {
  font-family: var(--font-body);
  font-size: var(--type-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.floating-menu {
  position: fixed;
  top: 25px;
  left: 0;
  z-index: 1000;
  width: 100%;
  pointer-events: none;
}

html.is-presentation-mode .floating-menu,
html.is-presentation-mode .floating-menu__pentagon--blend,
html.is-presentation-mode .mobile-site-nav,
html.is-presentation-mode .case-project-nav {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

html.is-presentation-mode .case-project-nav {
  display: grid !important;
  height: var(--presentation-project-nav-space, 260px);
  min-height: 0;
  padding-top: 0;
  overflow: hidden;
}

.floating-menu__inner {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: max-content;
  margin-inline: auto;
  pointer-events: auto;
}

.floating-menu__pentagon {
  position: absolute;
  z-index: 0;
  top: 54.65%;
  left: 54.6%;
  width: 191.9%;
  aspect-ratio: 1;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    top 420ms var(--ease-out),
    opacity 240ms var(--ease-out);
}

.floating-menu:not(.floating-menu--home) .floating-menu__pentagon,
.floating-menu--home.is-compact .floating-menu__pentagon {
  top: calc(54.65% - 15px);
}

body[data-home-title-treatment="pentagon"] .floating-menu--home:not(.is-compact) .floating-menu__pentagon {
  mix-blend-mode: multiply;
  opacity: 1;
}

body[data-home-title-treatment="pentagon"] .floating-menu--home:not(.is-compact) .floating-menu__pentagon::before {
  background: var(--colour-dark-surface);
}

.floating-menu__pentagon::before {
  position: absolute;
  /* The colour layers multiply with one another beneath the central mark.
     Keeping black above them avoids multiply turning the colour edges black. */
  z-index: 10;
  inset: 0.86% 3.09% 9.55%;
  -webkit-mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  background: var(--colour-paper);
  content: "";
  transform: rotate(25deg) scale(0.808);
}

.floating-menu__title-colour {
  position: absolute;
  z-index: var(--title-colour-stack);
  top: calc(0.86% + var(--title-colour-y));
  right: calc(3.09% - var(--title-colour-x));
  bottom: calc(9.55% - var(--title-colour-y));
  left: calc(3.09% + var(--title-colour-x));
  -webkit-mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  background: var(--title-colour);
  mix-blend-mode: multiply;
  opacity: 1;
  transform: rotate(var(--title-colour-rotation)) scale(0.808);
  transform-origin: center;
  transition: opacity 420ms var(--intro-ease-out, var(--ease-out));
}

.floating-menu__pentagon--blend {
  display: none;
}

@media (min-width: 768px) {
  /* The visible desktop polygon stack sits outside the fixed nav stacking
     context so it can blend with cursor-spawned work images at page level. */
  .floating-menu__pentagon--blend {
    position: fixed;
    z-index: 999;
    display: block;
    mix-blend-mode: multiply;
    opacity: 0;
    transform: none;
    transition: opacity 240ms var(--ease-out);
  }

  .floating-menu__pentagon--blend::before {
    background: var(--colour-dark-surface);
  }

  html.has-home-title-blend-ready body[data-home-title-treatment="pentagon"] .floating-menu--home:not(.is-compact) .floating-menu__pentagon {
    opacity: 0;
  }

  html.has-home-title-blend-ready body[data-home-title-treatment="pentagon"] .floating-menu--home:not(.is-compact) + .floating-menu__pentagon--blend {
    opacity: 1;
  }

  .floating-menu--home.is-compact + .floating-menu__pentagon--blend {
    opacity: 0;
  }
}

@media (max-width: 767.98px) {
  /* Keep the colour stack outside the transformed title navigation so Safari
     can multiply it with the moving showreel rather than flattening the group. */
  .floating-menu__pentagon--blend {
    position: fixed;
    z-index: 999;
    display: block;
    mix-blend-mode: multiply;
    opacity: 0;
    transform: none;
    transition: opacity 240ms var(--ease-out);
  }

  .floating-menu__pentagon--blend::before {
    background: var(--colour-dark-surface);
  }

  html.has-home-title-blend-ready body[data-home-title-treatment="pentagon"] .floating-menu--home:not(.is-compact) .floating-menu__pentagon {
    opacity: 0;
  }

  html.has-home-title-blend-ready body[data-home-title-treatment="pentagon"] .floating-menu--home:not(.is-compact) + .floating-menu__pentagon--blend {
    opacity: 1;
  }
}

/* DEPT interview map */
.dept-page {
  background:
    radial-gradient(circle at 50% 520px, rgb(8 8 8 / 2.5%) 0 1px, transparent 1.2px) center top / 20px 20px,
    var(--colour-paper);
}

.dept-page__main {
  padding: 180px 0 140px;
}

.dept-page__hero {
  min-height: 500px;
  align-content: end;
  padding-bottom: 80px;
  row-gap: 28px;
}

.dept-page__hero-title {
  grid-column: 2 / 12;
}

.dept-page__kicker {
  margin-bottom: 12px !important;
}

.dept-page__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2em;
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.92;
}

.dept-page__title-lead {
  font-variation-settings: "wdth" 1.65, "wght" 648, "ital" 0;
}

.dept-page__title-tail {
  font-variation-settings: "wdth" 17, "wght" 100, "ital" 0;
}

.dept-page__instruction {
  grid-column: 2 / 7;
  max-width: 650px;
}

.dept-brief {
  box-sizing: border-box;
  width: min(820px, calc(100% - (2 * var(--page-margin))));
  margin: 0 auto;
  padding: clamp(52px, 7vw, 96px) clamp(28px, 6vw, 76px);
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 24px 80px rgb(38 32 22 / 8%);
  font-family: var(--font-body);
  font-size: var(--type-body);
  letter-spacing: 0.055em;
  line-height: var(--type-body-leading);
}

.dept-brief__masthead {
  padding-bottom: 44px;
  border-bottom: 2px solid var(--colour-line);
  margin-bottom: 52px;
}

.dept-brief__masthead .dept-brief__label {
  margin-bottom: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dept-brief__masthead h2 {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  font-variation-settings: "wdth" 1.65, "wght" 648, "ital" 0;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.96;
  white-space: nowrap;
}

.dept-brief__title-detail {
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-variation-settings: normal;
  font-weight: 400;
  letter-spacing: 0.055em;
  line-height: var(--type-body-leading);
}

.dept-brief p {
  margin: 0 0 24px;
}

.dept-brief__section {
  margin-top: 64px;
}

.dept-brief__section h3 {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: var(--type-h2);
  font-variation-settings: "wdth" 1.65, "wght" 648, "ital" 0;
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1;
  text-transform: uppercase;
}

.dept-brief__section ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 1.4em;
}

.dept-brief__section li {
  padding-left: 0.2em;
}

.dept-brief__section--why {
  padding-top: 60px;
  border-top: 2px solid var(--colour-line);
}

.dept-highlight {
  --dept-highlight-primary-size: 100% 92%;
  --dept-highlight-secondary-size: 99% 84%;
  position: relative;
  display: inline;
  margin: 0 -0.12em;
  padding: 0.08em 0.12em 0.02em;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  background-image:
    linear-gradient(
      178deg,
      transparent 0 18%,
      rgb(218 255 44 / 72%) 20% 78%,
      transparent 81%
    ),
    linear-gradient(
      182deg,
      transparent 0 28%,
      rgb(218 255 44 / 44%) 30% 83%,
      transparent 86%
    );
  background-position: left 68%;
  background-repeat: no-repeat;
  background-size: 0% 92%, 0% 84%;
  box-decoration-break: clone;
  color: inherit;
  cursor: pointer;
  font: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: left;
  transition: background-size 760ms var(--ease-out);
  -webkit-box-decoration-break: clone;
}

.dept-highlight.is-highlight-drawn {
  background-size: var(--dept-highlight-primary-size), var(--dept-highlight-secondary-size);
}

.dept-highlight[data-dept-highlight="craft-story"],
.dept-highlight[data-dept-highlight="find-opportunity"],
.dept-highlight[data-dept-highlight="team-scale"] {
  background-image:
    linear-gradient(
      183deg,
      transparent 0 20%,
      rgb(218 255 44 / 70%) 23% 79%,
      transparent 82%
    ),
    linear-gradient(
      176deg,
      transparent 0 31%,
      rgb(218 255 44 / 46%) 33% 82%,
      transparent 85%
    );
  background-position-y: 65%;
  --dept-highlight-primary-size: 100% 94%;
  --dept-highlight-secondary-size: 98% 86%;
}

.dept-highlight[data-dept-highlight="consultative-ai"] {
  background-image:
    linear-gradient(
      176deg,
      transparent 0 19%,
      rgb(218 255 44 / 72%) 21% 80%,
      transparent 83%
    ),
    linear-gradient(
      184deg,
      transparent 0 30%,
      rgb(218 255 44 / 42%) 32% 81%,
      transparent 85%
    );
}

.dept-highlight.is-highlight-drawn:hover,
.dept-highlight.is-highlight-drawn:focus-visible {
  background-size: 100% 96%, 99% 90%;
  outline: 0;
}

.dept-highlight:focus-visible {
  box-shadow: 0 0 0 2px var(--colour-ink);
}

.dept-evidence-dialog {
  width: min(1500px, calc(100% - 30px));
  max-width: none;
  height: min(94svh, 1040px);
  max-height: none;
  margin: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  background: var(--colour-paper);
  color: var(--colour-ink);
  opacity: 0;
  transition:
    display 320ms allow-discrete,
    overlay 320ms allow-discrete,
    opacity 320ms var(--ease-out),
    transform 320ms var(--ease-out);
  transform: translateY(22px) scale(0.985);
}

.dept-evidence-dialog[open] {
  opacity: 1;
  transform: none;
}

@starting-style {
  .dept-evidence-dialog[open] {
    opacity: 0;
    transform: translateY(22px) scale(0.985);
  }
}

.dept-evidence-dialog::backdrop {
  background: rgb(8 8 8 / 72%);
  opacity: 0;
  transition:
    display 320ms allow-discrete,
    overlay 320ms allow-discrete,
    opacity 320ms var(--ease-out);
}

.dept-evidence-dialog[open]::backdrop {
  opacity: 1;
}

@starting-style {
  .dept-evidence-dialog[open]::backdrop {
    opacity: 0;
  }
}

html.is-dept-evidence-open,
html.is-dept-evidence-open body {
  overflow: hidden;
}

.dept-evidence-dialog__surface {
  display: grid;
  height: 100%;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.dept-evidence-dialog__header,
.dept-evidence-dialog__nav {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 30px;
  background: var(--colour-paper);
}

.dept-evidence-dialog__header {
  border-bottom: 2px solid var(--colour-line);
}

.dept-evidence-dialog__heading {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 24px;
}

.dept-evidence-dialog__eyebrow,
.dept-evidence-dialog__requirement {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--type-body);
  letter-spacing: 0.08em;
  line-height: var(--type-body-leading);
}

.dept-evidence-dialog__eyebrow {
  flex: 0 0 auto;
  font-weight: 700;
}

.dept-evidence-dialog__requirement {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dept-evidence-dialog__close {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.dept-evidence-dialog__close .material-symbols-outlined {
  font-size: 27px;
  font-variation-settings: "wght" 300;
}

.dept-evidence-dialog__viewport {
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.dept-evidence {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 56px var(--grid-gutter);
  box-sizing: border-box;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(54px, 6vw, 88px) 30px 90px;
  animation: dept-evidence-enter 480ms var(--ease-out) both;
}

.dept-evidence[hidden] {
  display: none;
}

.dept-evidence__intro {
  grid-column: 1 / 8;
}

.dept-evidence__title {
  max-width: 920px;
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: clamp(44px, 5vw, 76px);
  font-variation-settings: "wdth" 1.65, "wght" 648, "ital" 0;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.94;
  text-transform: uppercase;
}

.dept-evidence__answer {
  max-width: 780px;
  font-family: var(--font-body);
  font-size: var(--type-body-large);
  letter-spacing: 0.07em;
  line-height: var(--type-body-large-leading);
}

.dept-evidence__answer p {
  margin: 0 0 20px;
}

.dept-evidence__answer p:last-child {
  margin-bottom: 0;
}

.dept-evidence__detail {
  grid-column: 9 / 13;
  align-self: end;
}

.dept-evidence__label {
  margin: 0 0 18px;
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: var(--type-body-leading);
  text-transform: uppercase;
}

.dept-evidence__points ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 1.2em;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 21px;
}

.dept-evidence__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.dept-evidence__proof li {
  padding: 7px 12px 6px;
  border-radius: 999px;
  background: var(--colour-ink);
  color: var(--colour-paper);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.07em;
  line-height: 17px;
}

.dept-evidence__diagram {
  grid-column: 1 / 13;
  margin: 12px 0 0;
  padding: 38px 32px 42px;
  background: rgb(118 105 82 / 9%);
}

.dept-evidence__diagram figcaption {
  margin-bottom: 32px;
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: var(--type-body-leading);
}

.dept-evidence__diagram ol {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 42px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.dept-evidence__diagram li {
  position: relative;
  z-index: 1;
  display: grid;
  width: clamp(116px, 10vw, 148px);
  flex: 0 1 148px;
  aspect-ratio: 515.908 / 492.613;
  place-items: center;
  color: var(--colour-paper);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 18px;
  text-align: center;
  transform: rotate(calc((var(--dept-diagram-index) - 2.5) * 1.15deg));
}

.dept-evidence__diagram li::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--colour-ink);
  content: "";
  -webkit-mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
}

.dept-evidence__diagram li:not(:last-child)::after {
  position: absolute;
  z-index: -2;
  top: 50%;
  left: calc(100% - 2px);
  width: clamp(22px, 3.3vw, 58px);
  border-top: 2px solid var(--colour-ink);
  content: "";
  transform: rotate(calc((var(--dept-diagram-index) - 2.5) * -1.15deg));
  transform-origin: left center;
}

.dept-evidence__diagram li span {
  max-width: 78%;
  transform: translateY(2px) rotate(calc((var(--dept-diagram-index) - 2.5) * -1.15deg));
}

.dept-evidence__media {
  display: grid;
  grid-column: 1 / 13;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px var(--grid-gutter);
}

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

.dept-evidence__media--five {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.dept-evidence__media--five .dept-evidence-card {
  grid-column: span 3;
}

.dept-evidence__media--five .dept-evidence-card:nth-child(n + 3) {
  grid-column: span 2;
}

.dept-evidence-card {
  margin: 0;
}

.dept-evidence-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  background: rgb(118 105 82 / 12%);
}

.dept-evidence-card__media img,
.dept-evidence-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dept-evidence-card__placeholder {
  display: grid;
  height: 100%;
  box-sizing: border-box;
  place-items: center;
  align-content: center;
  gap: 16px;
  padding: 34px;
  border: 2px dashed #ff2d75;
  border-radius: 4px;
  color: #d90055;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.06em;
  line-height: 21px;
  text-align: center;
}

.dept-evidence-card__placeholder .material-symbols-outlined {
  font-size: 30px;
  font-variation-settings: "wght" 300;
}

.dept-evidence-card figcaption {
  display: grid;
  gap: 5px;
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 19px;
}

.dept-evidence-card figcaption strong {
  font-weight: 700;
}

.dept-evidence-card figcaption a {
  width: fit-content;
  margin-top: 5px;
  border-bottom: 2px solid currentColor;
  text-decoration: none;
}

.dept-evidence-card--placeholder figcaption {
  margin-top: 16px;
}

.dept-evidence-dialog__nav {
  border-top: 2px solid var(--colour-line);
}

.dept-evidence-dialog__nav button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 24px;
}

.dept-evidence-dialog__nav button:hover,
.dept-evidence-dialog__nav button:focus-visible,
.dept-evidence-dialog__close:hover,
.dept-evidence-dialog__close:focus-visible {
  opacity: 0.55;
  outline: 0;
}

.dept-evidence-dialog__nav .material-symbols-outlined {
  font-size: 21px;
  font-variation-settings: "wght" 300;
}

@keyframes dept-evidence-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991.98px) {
  .dept-page__hero-title,
  .dept-page__instruction {
    grid-column: 1 / 13;
  }

  .dept-evidence__intro {
    grid-column: 1 / 9;
  }

  .dept-evidence__detail {
    grid-column: 9 / 13;
  }

  .dept-evidence__diagram ol {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dept-evidence__diagram li {
    width: min(100%, 150px);
    justify-self: center;
  }

  .dept-evidence__diagram li::after {
    display: none;
  }

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

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

  .dept-evidence__media--five .dept-evidence-card,
  .dept-evidence__media--five .dept-evidence-card:nth-child(n + 3) {
    grid-column: auto;
  }
}

@media (max-width: 767.98px) {
  .dept-page__main {
    padding: 130px 0 80px;
  }

  .dept-page__hero {
    min-height: 430px;
    padding-top: 150px;
    padding-bottom: 54px;
  }

  .dept-page__title {
    display: block;
    font-size: clamp(42px, 13vw, 58px);
    line-height: 0.98;
  }

  .dept-page__title-lead,
  .dept-page__title-tail {
    display: block;
  }

  .dept-page__instruction {
    grid-column: 1 / 5;
  }

  .dept-brief {
    width: calc(100% - 30px);
    padding: 44px 20px 60px;
    letter-spacing: 0.035em;
  }

  .dept-brief__masthead {
    margin-bottom: 40px;
    padding-bottom: 34px;
  }

  .dept-brief__masthead h2 {
    font-size: 40px;
  }

  .dept-brief__section {
    margin-top: 52px;
  }

  .dept-brief__section h3 {
    font-size: 30px;
  }

  .dept-highlight {
    background-size: 100% 82%;
  }

  .dept-evidence-dialog {
    width: 100%;
    height: 100svh;
  }

  .dept-evidence-dialog__header,
  .dept-evidence-dialog__nav {
    padding: 16px 15px;
  }

  .dept-evidence-dialog__heading {
    display: block;
  }

  .dept-evidence-dialog__requirement {
    max-width: calc(100vw - 100px);
  }

  .dept-evidence {
    display: block;
    padding: 42px 15px 64px;
  }

  .dept-evidence__title {
    font-size: 42px;
  }

  .dept-evidence__detail,
  .dept-evidence__diagram,
  .dept-evidence__media {
    margin-top: 46px;
  }

  .dept-evidence__diagram {
    padding: 28px 15px 34px;
  }

  .dept-evidence__diagram ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .dept-evidence__diagram li {
    width: min(100%, 132px);
  }

  .dept-evidence__media,
  .dept-evidence__media--three,
  .dept-evidence__media--five {
    grid-template-columns: 1fr;
  }

  .dept-evidence-dialog__nav button {
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dept-evidence-dialog,
  .dept-evidence-dialog::backdrop,
  .dept-evidence {
    animation: none;
    transition: none;
  }
}

/* DEPT evidence documents */
.dept-evidence-dialog {
  width: min(1120px, calc(100% - 50px));
  height: min(86svh, 900px);
  overflow: visible;
  border-radius: 4px;
  outline: 0;
  background: #fff;
  box-shadow: 0 24px 80px rgb(38 32 22 / 20%);
  transform: translateY(18px) scale(0.99);
}

.dept-evidence-dialog[open] {
  transform: none;
}

@starting-style {
  .dept-evidence-dialog[open] {
    opacity: 0;
    transform: translateY(18px) scale(0.99);
  }
}

.dept-evidence-dialog::backdrop {
  background: transparent;
}

.dept-evidence-dialog__surface {
  position: relative;
  overflow: hidden;
  border-radius: inherit;
  grid-template-rows: minmax(0, 1fr);
}

.dept-evidence-dialog__close {
  position: absolute;
  z-index: 10;
  top: 18px;
  right: 18px;
  border-radius: 50%;
  background: rgb(255 255 255 / 88%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.dept-evidence-dialog__viewport {
  grid-row: 1;
  border-radius: inherit;
  background: #fff;
}

.dept-evidence-dialog .site-cursor {
  mix-blend-mode: normal;
}

.dept-evidence-dialog .site-cursor:not(.is-explore) .site-cursor__shape {
  background: #000;
}

.dept-evidence {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 42px;
  width: 100%;
  max-width: none;
  min-height: 100%;
  padding: 64px 56px 62px;
  animation: none;
}

.dept-evidence__simple-title,
.dept-evidence-card,
.dept-evidence-diagram,
.dept-evidence__points {
  opacity: 0;
  transform: translateY(18px);
}

.dept-evidence.is-entering .dept-evidence__simple-title,
.dept-evidence.is-entering .dept-evidence-card,
.dept-evidence.is-entering .dept-evidence-diagram,
.dept-evidence.is-entering .dept-evidence__points {
  animation: dept-popup-element-enter 620ms var(--ease-out) both;
  animation-delay: calc(90ms + (var(--dept-reveal-index, 0) * 105ms));
}

@keyframes dept-popup-element-enter {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dept-evidence__simple-title {
  max-width: 850px;
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-variation-settings: normal;
  font-weight: 400;
  letter-spacing: 0.055em;
  line-height: var(--type-body-leading);
}

.dept-evidence__simple-title-highlight {
  cursor: default;
  font: inherit;
  pointer-events: none;
}

.dept-evidence__media {
  display: grid;
  grid-column: auto;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 44px 20px;
  margin: 0;
  align-items: start;
}

.dept-evidence__media--single {
  display: grid;
}

.dept-evidence-card {
  grid-column: span 6;
}

.dept-evidence__media--single .dept-evidence-card,
.dept-evidence__media--three .dept-evidence-card--wide {
  grid-column: 3 / 11;
}

.dept-evidence__media:not(.dept-evidence__media--single) .dept-evidence-card:nth-child(even) {
  margin-top: 54px;
}

#dept-evidence-lead-inspire .dept-evidence-card:nth-child(even) {
  margin-top: 0;
}

#dept-evidence-lead-inspire .dept-evidence__media {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 900px);
  margin-inline: auto;
}

#dept-evidence-lead-inspire .dept-evidence-card {
  grid-column: span 4;
}

#dept-evidence-lead-inspire .dept-evidence-card:nth-child(2) {
  margin-top: 0;
}

#dept-evidence-lead-inspire .dept-evidence-card:nth-child(4) {
  grid-column: 3 / span 4;
}

#dept-evidence-lead-inspire .dept-evidence-card:nth-child(5) {
  grid-column: 7 / span 4;
  margin-top: 0;
}

.dept-evidence-card__media {
  aspect-ratio: auto;
  background: rgb(118 105 82 / 9%);
}

.dept-evidence-card__case-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.dept-evidence-card__media img,
.dept-evidence-card__media video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.dept-evidence-card__media--pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  background: transparent;
}

.dept-evidence-card--placeholder .dept-evidence-card__media {
  aspect-ratio: 4 / 3;
}

.dept-evidence-card figcaption {
  max-width: 62ch;
  gap: 8px;
  margin-top: 13px;
  color: rgb(8 8 8 / 82%);
  font-size: var(--type-body);
  letter-spacing: 0.055em;
  line-height: var(--type-body-leading);
  overflow: visible;
  text-overflow: clip;
  white-space: normal;
}

.dept-evidence-card figcaption a {
  margin-top: 1px;
}

.dept-evidence-card__placeholder {
  min-height: 100%;
  background: rgb(255 45 117 / 3%);
  font-size: var(--type-body);
  line-height: var(--type-body-leading);
}

.dept-evidence__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 34px;
  margin: 0;
  padding: 0 0 0 1.2em;
  font-family: var(--font-body);
  font-size: var(--type-body);
  letter-spacing: 0.06em;
  line-height: var(--type-body-leading);
}

.dept-evidence__points li {
  padding-left: 4px;
}

.dept-evidence-diagram {
  margin: 0;
}

.dept-evidence-diagram figcaption {
  width: min(100%, 680px);
  margin: 30px auto 0;
  color: rgb(8 8 8 / 82%);
  font-family: var(--font-body);
  font-size: var(--type-body);
  letter-spacing: 0.06em;
  line-height: var(--type-body-leading);
  text-align: center;
}

.dept-diagram-node {
  --node-fill: var(--colour-ink);
  --node-text: #fff;
  position: relative;
  z-index: 1;
  display: grid;
  aspect-ratio: 515.908 / 492.613;
  place-items: center;
  color: var(--node-text);
  font-family: var(--font-body);
  font-size: var(--type-body);
  letter-spacing: 0.055em;
  line-height: 20px;
  text-align: center;
}

.dept-diagram-node::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: var(--node-fill);
  content: "";
  transform: rotate(var(--node-rotation, 0deg));
  -webkit-mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
}

.dept-diagram-node > span:not(.dept-diagram-node__visual) {
  max-width: 74%;
  transform: translateY(2px);
}

.dept-diagram-node--root {
  --node-rotation: -3deg;
  width: 158px;
  margin: 0 auto;
}

.dept-org-chart {
  --dept-org-child-size: 118px;
  --dept-org-child-gap: 16px;
  --dept-org-child-centre-offset: 67px;
  padding: 4px 18px 0;
}

.dept-org-chart__branches {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  margin-top: 76px;
}

.dept-org-chart__branches::before {
  position: absolute;
  top: -39px;
  right: calc(16.666% - 16px);
  left: calc(16.666% - 16px);
  border-top: 1px solid var(--colour-ink);
  content: "";
}

.dept-diagram-node--root::after {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  height: 25px;
  border-left: 1px solid var(--colour-ink);
  content: "";
}

.dept-org-chart__branch {
  position: relative;
}

.dept-org-chart__branch:nth-child(1) {
  --dept-branch-rotation: -5deg;
}

.dept-org-chart__branch:nth-child(2) {
  --dept-branch-rotation: 4deg;
}

.dept-org-chart__branch:nth-child(3) {
  --dept-branch-rotation: -4deg;
}

.dept-org-chart__branch:nth-child(4) {
  --dept-branch-rotation: 5deg;
}

.dept-org-chart__branch:nth-child(5) {
  --dept-branch-rotation: -3deg;
}

.dept-org-chart__branch::before {
  position: absolute;
  top: -39px;
  left: 50%;
  height: 27px;
  border-left: 1px solid var(--colour-ink);
  content: "";
}

.dept-diagram-node--branch {
  --node-rotation: var(--dept-branch-rotation, 0deg);
  width: 140px;
  margin: 0 auto;
}

.dept-org-chart__children {
  position: relative;
  display: flex;
  justify-content: center;
  gap: var(--dept-org-child-gap);
  padding-top: 66px;
}

.dept-org-chart__children::before {
  position: absolute;
  top: 32px;
  right: calc(50% - var(--dept-org-child-centre-offset));
  left: calc(50% - var(--dept-org-child-centre-offset));
  border-top: 1px solid var(--colour-ink);
  content: "";
}

.dept-org-chart__children:has(> :only-child)::before {
  right: 50%;
  left: 50%;
}

.dept-diagram-node--branch::after {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  height: 20px;
  border-left: 1px solid var(--colour-ink);
  content: "";
}

.dept-diagram-node--child {
  --node-rotation: calc(var(--dept-branch-rotation, 0deg) + (var(--child-index) - 0.5) * 1.8deg);
  width: var(--dept-org-child-size);
}

.dept-diagram-node--child::after {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  height: 22px;
  border-left: 1px solid var(--colour-ink);
  content: "";
}

.dept-partner-chart {
  position: relative;
  padding-top: 4px;
}

.dept-partner-chart__leaders,
.dept-partner-chart__partners {
  position: relative;
  display: flex;
  justify-content: center;
}

.dept-partner-chart__leaders {
  gap: 64px;
}

.dept-partner-chart__partners {
  gap: 12px;
  margin-top: 88px;
}

.dept-partner-chart__leaders::after {
  position: absolute;
  top: calc(100% + 28px);
  left: 50%;
  height: 28px;
  border-left: 1px solid var(--colour-ink);
  content: "";
}

.dept-partner-chart__partners::before {
  position: absolute;
  top: -33px;
  right: calc(7.14% - 3px);
  left: calc(7.14% - 3px);
  border-top: 1px solid var(--colour-ink);
  content: "";
}

.dept-diagram-node--leader {
  --node-rotation: calc((var(--node-index) - 1) * 4deg);
  width: 142px;
}

.dept-diagram-node--partner {
  --node-rotation: calc((var(--node-index) - 3) * 1.4deg);
  width: min(13.7%, 126px);
  flex: 0 1 126px;
}

.dept-diagram-node--partner::after {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  height: 21px;
  border-left: 1px solid var(--colour-ink);
  content: "";
}

.dept-rituals {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px 20px;
}

.dept-ritual {
  display: grid;
  justify-items: center;
}

.dept-diagram-node--ritual {
  --node-rotation: -5deg;
  width: 142px;
}

.dept-ritual:nth-child(5n + 1) .dept-diagram-node--ritual {
  --node-rotation: -5deg;
}

.dept-ritual:nth-child(5n + 2) .dept-diagram-node--ritual {
  --node-rotation: 4deg;
}

.dept-ritual:nth-child(5n + 3) .dept-diagram-node--ritual {
  --node-rotation: -3deg;
}

.dept-ritual:nth-child(5n + 4) .dept-diagram-node--ritual {
  --node-rotation: 5deg;
}

.dept-ritual:nth-child(5n + 5) .dept-diagram-node--ritual {
  --node-rotation: -4deg;
}

.dept-ritual p {
  max-width: 230px;
  margin: 16px 0 0;
  font-family: var(--font-body);
  font-size: var(--type-body);
  letter-spacing: 0.055em;
  line-height: var(--type-body-leading);
  text-align: center;
}

.dept-sequence {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(24px, 3.4vw, 40px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.dept-sequence li {
  position: relative;
  flex: 0 1 132px;
}

.dept-sequence li:not(:last-child)::after {
  position: absolute;
  z-index: 0;
  top: 82px;
  left: calc(100% - 3px);
  width: clamp(30px, 4.2vw, 52px);
  border-top: 1px solid var(--colour-ink);
  content: "";
}

.dept-sequence__timing {
  display: block;
  height: 25px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 19px;
  text-align: center;
  text-transform: uppercase;
}

.dept-diagram-node--sequence {
  --node-rotation: -4deg;
  width: 132px;
}

.dept-diagram-node--colour-stack::before {
  display: none;
}

.dept-diagram-node__visual {
  position: absolute;
  z-index: -1;
  inset: 0;
  transform: rotate(calc(var(--node-rotation) - 25deg));
  transform-origin: center;
}

.dept-diagram-node__colour,
.dept-diagram-node__shape {
  position: absolute;
  -webkit-mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  transform-origin: center;
}

.dept-diagram-node__colour {
  z-index: calc(1 + var(--process-colour-stack));
  top: var(--process-colour-y);
  right: calc(0% - var(--process-colour-x));
  bottom: calc(0% - var(--process-colour-y));
  left: var(--process-colour-x);
  background: var(--process-colour);
  mix-blend-mode: multiply;
  transform: rotate(var(--process-colour-rotation));
}

.dept-diagram-node__shape {
  z-index: 10;
  inset: 0;
  background: var(--colour-ink);
  transform: rotate(25deg);
}

.dept-sequence li:nth-child(5n + 1) .dept-diagram-node--sequence {
  --node-rotation: -4deg;
}

.dept-sequence li:nth-child(5n + 2) .dept-diagram-node--sequence {
  --node-rotation: 4deg;
}

.dept-sequence li:nth-child(5n + 3) .dept-diagram-node--sequence {
  --node-rotation: -3deg;
}

.dept-sequence li:nth-child(5n + 4) .dept-diagram-node--sequence {
  --node-rotation: 5deg;
}

.dept-sequence li:nth-child(5n + 5) .dept-diagram-node--sequence {
  --node-rotation: -4deg;
}

.dept-evidence-diagram--sequence + .dept-evidence-diagram--sequence {
  padding-top: 22px;
}

@media (max-width: 991.98px) {
  .dept-evidence {
    padding-inline: 36px;
  }

  .dept-evidence__points {
    grid-template-columns: 1fr;
  }

  .dept-org-chart__branches {
    gap: 20px;
  }

  .dept-org-chart__branches::before {
    right: calc(16.666% - 7px);
    left: calc(16.666% - 7px);
  }

  .dept-partner-chart__leaders {
    gap: 30px;
  }

  .dept-partner-chart__partners {
    flex-wrap: wrap;
  }

  .dept-partner-chart__partners::before,
  .dept-diagram-node--partner::after {
    display: none;
  }

  .dept-diagram-node--partner {
    width: 108px;
    flex-basis: 108px;
  }

  .dept-sequence {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 126px));
  }

  .dept-sequence li::after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .dept-evidence-dialog {
    width: calc(100% - 20px);
    height: calc(100svh - 20px);
  }

  .dept-evidence {
    display: grid;
    gap: 42px;
    padding: 56px 18px 48px;
  }

  .dept-evidence__media,
  .dept-evidence__media--three {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .dept-evidence__media--single .dept-evidence-card,
  .dept-evidence__media--three .dept-evidence-card--wide {
    grid-column: 1 / -1;
  }

  .dept-evidence-card {
    grid-column: 1 / -1;
  }

  #dept-evidence-lead-inspire .dept-evidence-card,
  #dept-evidence-lead-inspire .dept-evidence-card:nth-child(4),
  #dept-evidence-lead-inspire .dept-evidence-card:nth-child(5) {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .dept-evidence__media:not(.dept-evidence__media--single) .dept-evidence-card:nth-child(even) {
    margin-top: 0;
  }

  .dept-evidence-card figcaption {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  .dept-org-chart {
    overflow-x: auto;
    padding: 4px 10px 16px;
  }

  .dept-org-chart__branches {
    width: 660px;
  }

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

  .dept-partner-chart__leaders {
    gap: 8px;
  }

  .dept-diagram-node--leader {
    width: 108px;
    font-size: 10px;
  }

  .dept-sequence {
    grid-template-columns: repeat(2, minmax(0, 126px));
  }

}

.floating-menu__name,
.floating-menu__links a {
  font-family: "Crystal Variable", var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  text-decoration: none;
  text-transform: uppercase;
}

.floating-menu__name {
  position: relative;
  z-index: 2;
  display: block;
  width: max-content;
  border-bottom: 2px solid transparent;
  font-size: 49.714px;
  font-variation-settings: "wdth" 1.65, "wght" 658, "ital" 0;
  line-height: 1.08;
  white-space: nowrap;
}

.floating-menu__name::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 420ms var(--ease-out);
}

.floating-menu__links-mask {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: -5px;
  overflow: hidden;
}

.floating-menu__links {
  position: relative;
  display: flex;
  width: 100%;
  align-items: baseline;
  justify-content: space-between;
  font-family: "Crystal Variable", var(--font-display);
  font-size: 40px;
  font-variation-settings: "wdth" 2.84, "wght" 658, "ital" 0;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-transform: uppercase;
  transform: translateY(0);
  transition: transform 500ms var(--ease-out);
  will-change: transform;
  white-space: nowrap;
}

.floating-menu.is-links-hidden .floating-menu__links {
  transform: translateY(-115%);
}

.floating-menu__links a {
  position: relative;
  display: inline-block;
  font-size: inherit;
  font-variation-settings: inherit;
  line-height: inherit;
  white-space: nowrap;
}

.floating-menu__indicator {
  position: absolute;
  bottom: calc(-0.08em + 4px);
  left: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  pointer-events: none;
  transform: translateX(0);
}

.floating-menu__links.is-ready .floating-menu__indicator {
  transition:
    width 240ms ease-in-out,
    transform 240ms ease-in-out;
}

/* Homepage navigation morph */
.floating-menu--home .floating-menu__inner {
  position: relative;
  transform: translateY(290px);
  transition:
    opacity 620ms var(--ease-out),
    transform 860ms var(--ease-out);
  will-change: transform;
}

.floating-menu--home .floating-menu__name {
  font-size: 81.916px;
  letter-spacing: 0.02em;
  transition:
    font-size 420ms var(--ease-out),
    letter-spacing 420ms var(--ease-out);
}

.home-page .floating-menu--home:not(.is-compact) .floating-menu__name,
.home-page .floating-menu--home:not(.is-compact) .floating-menu__role {
  color: var(--colour-ink);
  mix-blend-mode: normal;
}

body[data-home-title-treatment="pentagon"] .floating-menu--home:not(.is-compact) .floating-menu__name,
body[data-home-title-treatment="pentagon"] .floating-menu--home:not(.is-compact) .floating-menu__role {
  color: var(--colour-paper);
}

body[data-home-title-treatment="difference"] .floating-menu--home:not(.is-compact) {
  mix-blend-mode: difference;
}

body[data-home-title-treatment="difference"] .floating-menu--home:not(.is-compact) .floating-menu__name,
body[data-home-title-treatment="difference"] .floating-menu--home:not(.is-compact) .floating-menu__role {
  color: #fff;
}

.home-page .floating-menu--home:not(.is-compact) .floating-menu__inner:hover .floating-menu__name,
.home-page .floating-menu--home:not(.is-compact) .floating-menu__inner:hover .floating-menu__role,
.home-page .floating-menu--home:not(.is-compact) .floating-menu__inner:hover .floating-menu__links,
.home-page .floating-menu--home:not(.is-compact) .floating-menu__inner:focus-within .floating-menu__name,
.home-page .floating-menu--home:not(.is-compact) .floating-menu__inner:focus-within .floating-menu__role,
.home-page .floating-menu--home:not(.is-compact) .floating-menu__inner:focus-within .floating-menu__links {
  mix-blend-mode: normal;
}

.home-page .floating-menu--home:not(.is-compact) .floating-menu__name::after {
  background: currentColor;
  transform: translateY(-3px);
}

.floating-menu__role {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 88px;
  margin-top: -10px;
  contain: inline-size;
  clip-path: inset(0 0 0 0);
  font-family: "Crystal Variable", var(--font-display);
  font-size: 84px;
  font-variation-settings: "wdth" 1.65, "wght" 648, "ital" 0;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
  text-align: center;
  transform: translateY(0);
  transition:
    height 420ms var(--ease-out),
    margin-top 420ms var(--ease-out),
    font-size 420ms var(--ease-out),
    line-height 420ms var(--ease-out),
    clip-path 520ms var(--ease-out),
    transform 520ms var(--ease-out);
  white-space: nowrap;
}

.floating-menu__links-mask--home {
  position: absolute;
  top: 166px;
  left: 50%;
  height: 52px;
  margin-top: 0;
  transform: translateX(-50%);
  transition:
    top 420ms var(--ease-out),
    height 420ms var(--ease-out),
    width 420ms var(--ease-out);
}

.floating-menu__links-mask--home .floating-menu__links {
  transform: translateY(-115%);
}

.floating-menu--home:not(.is-compact) .floating-menu__links-mask--home .floating-menu__links {
  color: var(--colour-ink);
  mix-blend-mode: normal;
  transform: translateY(-115%);
}

.floating-menu--home:not(.is-compact) .floating-menu__links-mask--home {
  top: calc(50.6875px - 290px);
  width: 60.69%;
  visibility: hidden;
  pointer-events: none;
}

.floating-menu--home.is-compact .floating-menu__inner {
  transform: translateY(0);
}

.floating-menu--home.is-compact .floating-menu__name {
  font-size: 49.714px;
  letter-spacing: -0.01em;
}

.floating-menu--home.is-compact .floating-menu__role {
  height: 46px;
  margin-top: -5px;
  clip-path: inset(100% 0 0 0);
  font-size: 50.978px;
  line-height: 1.08;
  transform: translateY(-100%);
}

.floating-menu--home.is-compact .floating-menu__links-mask--home {
  top: 50.6875px;
  height: 46px;
  visibility: visible;
  pointer-events: auto;
}

.floating-menu--home.is-compact .floating-menu__links-mask--home .floating-menu__links {
  transform: translateY(0);
  transition-delay: 600ms;
}

.floating-menu--home.is-compact.is-home-nav-settled .floating-menu__links-mask--home .floating-menu__links {
  transition-delay: 0ms;
}

.floating-menu--home.is-compact.is-home-role-masked .floating-menu__links-mask--home .floating-menu__links {
  transition-delay: 0ms;
}

.floating-menu--home.is-compact:not(.is-home-role-masked) .floating-menu__links-mask--home .floating-menu__links {
  transform: translateY(-115%);
  transition-delay: 0ms;
}

.floating-menu--home.is-compact.is-links-hidden .floating-menu__links-mask--home .floating-menu__links {
  transform: translateY(-115%);
  transition-delay: 0ms;
}

.floating-menu--home.is-compact.is-home-initial-links-held .floating-menu__links-mask--home .floating-menu__links {
  transform: translateY(0);
  transition-delay: 0ms;
}

.floating-menu:not(.floating-menu--home),
.floating-menu--home.is-compact {
  mix-blend-mode: difference;
}

.floating-menu:not(.floating-menu--home) .floating-menu__name,
.floating-menu:not(.floating-menu--home) .floating-menu__links,
.floating-menu--home.is-compact .floating-menu__name,
.floating-menu--home.is-compact .floating-menu__role,
.floating-menu--home.is-compact .floating-menu__links {
  color: #fff;
}

.mobile-site-nav {
  display: none;
}

.case-header {
  position: relative;
  display: grid;
  height: auto;
  min-height: 419px;
  align-content: start;
  padding-top: 256px;
  padding-bottom: 77px;
  row-gap: 8px;
}

.case-header--has-process {
  min-height: 380px;
  padding-bottom: 30px;
}

.case-header--followed-by-process {
  min-height: 0;
  padding-bottom: 40px;
}

.case-header__title {
  position: static;
  grid-column: 1 / -1;
}

.case-header .type-h1 {
  display: flex;
  align-items: baseline;
  font-family: "Crystal Variable", var(--font-display);
  font-size: var(--type-h1);
  font-variation-settings: "wdth" 1.65, "wght" 648, "ital" 0;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: normal;
}

.reveal-enabled .case-header .type-h1 > .reveal-text__inner {
  display: flex;
  align-items: baseline;
  gap: 0.2em;
}

.case-header__client {
  font-variation-settings: "wdth" 1.65, "wght" 648, "ital" 0;
}

.case-header__project {
  font-variation-settings: "wdth" 17, "wght" 100, "ital" 0;
}

.allstreet-hash {
  display: inline-block;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1em;
  font-style: normal;
  font-variation-settings: normal;
  font-weight: 100;
  letter-spacing: 0;
  line-height: inherit;
}

.case-header__description {
  position: static;
  grid-column: 1 / 7;
  grid-row: 2;
  width: auto;
  max-width: 690px;
  align-self: start;
  font-size: var(--type-body);
  letter-spacing: 0.08em;
  line-height: var(--type-body-leading);
  overflow-wrap: anywhere;
}

.case-header__tags {
  position: static;
  grid-column: 7 / 13;
  grid-row: 2;
  width: 100%;
  max-width: 540px;
  align-self: end;
  justify-self: end;
  justify-content: flex-end;
  text-align: right;
}

.case-header__process-toggle {
  grid-column: 1 / 7;
  grid-row: 3;
  width: max-content;
  margin-top: 32px;
  padding: 0 0 2px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--colour-ink);
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: var(--type-body-leading);
  text-transform: none;
}

.case-header__process-toggle,
.process-diagram__close {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
}

.process-diagram__close {
  width: max-content;
  margin: 58px auto 0;
  padding: 0 0 2px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--colour-ink);
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: var(--type-body-leading);
}

.case-header__process-toggle:focus-visible,
.process-diagram__close:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.process-diagram {
  --process-line: rgba(0, 0, 0, 0.52);
  --process-connector: 48px;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition:
    grid-template-rows 525ms var(--ease-out),
    opacity 240ms var(--ease-out),
    visibility 0s linear 525ms;
}

.process-diagram.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.process-diagram__clip {
  grid-column: 1 / 13;
  min-height: 0;
  overflow: hidden;
}

.process-diagram__content {
  padding: 54px 0 30px;
}

.process-tree {
  width: 100%;
  margin-inline: auto;
}

.process-tree ul {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: var(--process-connector) 0 0;
}

.process-tree__root {
  padding-top: 0 !important;
}

.process-tree__children::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: var(--process-connector);
  border-left: 1px solid var(--process-line);
  opacity: 0;
  transition: opacity 225ms var(--ease-out);
  content: "";
}

.process-tree__branch {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  padding: var(--process-connector) 8px 0;
  list-style: none;
  text-align: center;
}

.process-tree__branch::before,
.process-tree__branch::after {
  position: absolute;
  top: 0;
  right: 50%;
  width: 50%;
  height: var(--process-connector);
  border-top: 1px solid var(--process-line);
  opacity: 0;
  transition: opacity 225ms var(--ease-out);
  content: "";
}

.process-tree__branch::after {
  right: auto;
  left: 50%;
  border-left: 1px solid var(--process-line);
}

.process-tree__branch:first-child::before,
.process-tree__branch:last-child::after {
  border: 0;
}

.process-tree__branch:last-child::before {
  border-right: 1px solid var(--process-line);
}

.process-tree__branch:only-child::before {
  right: auto;
  left: 50%;
  width: 0;
  border: 0;
  border-left: 1px solid var(--process-line);
}

.process-tree__branch:only-child::after {
  display: none;
}

.process-tree__root > .process-tree__branch {
  padding-top: 0;
}

.process-tree__root > .process-tree__branch::before,
.process-tree__root > .process-tree__branch::after {
  display: none;
}

.process-tree__leadership {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100%, 780px);
  margin-inline: auto;
  column-gap: 66px;
}

.process-tree__leadership-side {
  display: flex;
  min-width: 0;
}

.process-tree__leadership-side--left {
  justify-content: flex-end;
}

.process-tree__leadership-side--right {
  justify-content: flex-start;
}

.process-tree__node {
  position: relative;
  z-index: 1;
  display: grid;
  width: 136px;
  aspect-ratio: 515.908 / 492.613;
  margin-inline: auto;
  place-items: center;
  color: var(--process-text, var(--colour-paper));
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 315ms var(--ease-out),
    transform 490ms var(--ease-out);
}

.process-diagram.is-open .process-tree__node {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--process-node-delay, 0ms);
}

.process-diagram.is-open .process-tree__children::before,
.process-diagram.is-open .process-tree__children > .process-tree__branch::before,
.process-diagram.is-open .process-tree__children > .process-tree__branch::after {
  opacity: 1;
  transition-delay: var(--process-line-delay, 0ms);
}

.process-tree__node--depth-0 {
  width: 178px;
}

.process-tree__node--depth-1 {
  width: 154px;
}

.process-tree__node--depth-2 {
  width: 128px;
}

.process-tree__node--companion {
  width: 178px;
}

.process-tree__node::before {
  position: absolute;
  z-index: 0;
  inset: -5px;
  background: var(--colour-paper);
  -webkit-mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  transform: rotate(var(--process-angle));
  transform-origin: center;
  content: "";
}

.process-tree__shape {
  position: absolute;
  z-index: 10;
  inset: 0;
  background: var(--process-fill, var(--colour-ink));
  -webkit-mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  transform: rotate(var(--process-angle));
  transform-origin: center;
}

.process-tree__colour {
  position: absolute;
  z-index: calc(1 + var(--process-colour-stack));
  top: var(--process-colour-y);
  right: calc(0% - var(--process-colour-x));
  bottom: calc(0% - var(--process-colour-y));
  left: var(--process-colour-x);
  -webkit-mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  background: var(--process-colour);
  mix-blend-mode: multiply;
  transform: rotate(var(--process-colour-rotation));
  transform-origin: center;
}

.process-tree__team-layer {
  position: absolute;
  inset: 0;
  background: #fff;
  -webkit-mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  transform: translate(var(--process-team-offset), var(--process-team-offset)) rotate(var(--process-angle));
  transform-origin: center;
}

.process-tree__team-layer::after,
.process-tree__node--team .process-tree__shape::after {
  position: absolute;
  inset: 1px;
  background: var(--process-fill, var(--colour-ink));
  -webkit-mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  content: "";
}

.process-tree__team-layer--back {
  z-index: 8;
  --process-team-offset: 10px;
}

.process-tree__team-layer--back::after {
  background: color-mix(in oklab, var(--process-fill, var(--colour-ink)) 76%, white);
}

.process-tree__team-layer--middle {
  z-index: 9;
  --process-team-offset: 5px;
}

.process-tree__team-layer--middle::after {
  background: color-mix(in oklab, var(--process-fill, var(--colour-ink)) 88%, white);
}

.process-tree__node--team .process-tree__shape {
  background: #fff;
}

.process-tree__node--outline .process-tree__shape::after {
  position: absolute;
  inset: 1px;
  background: var(--colour-paper);
  -webkit-mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  content: "";
}

.process-tree__label {
  position: relative;
  z-index: 11;
  width: 72%;
  transform: translateY(5px);
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 20px;
  overflow-wrap: normal;
}

.process-sequence-section {
  row-gap: 0;
  padding-block: 0 30px;
}

.process-sequence__intro {
  grid-column: 1 / 7;
  margin-bottom: 40px !important;
}

.process-sequence__toggle {
  display: inline-flex;
  grid-column: 1 / 7;
  width: max-content;
  margin: 0;
  justify-self: start;
  padding: 0 0 2px;
  align-items: baseline;
  gap: 9px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--colour-ink);
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: var(--type-body-leading);
}

.process-sequence__toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.process-sequence__panel {
  position: relative;
  left: 50%;
  display: grid;
  grid-column: 1 / 13;
  grid-template-rows: 0fr;
  width: 100vw;
  opacity: 0;
  transform: translateX(-50%);
  visibility: hidden;
  transition:
    grid-template-rows 525ms var(--ease-out),
    opacity 240ms var(--ease-out),
    visibility 0s linear 525ms;
}

.process-sequence__panel.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.expandable-media {
  padding-bottom: 80px;
}

.expandable-media__toggle {
  display: inline-flex;
  grid-column: 1 / 7;
  width: max-content;
  margin: 0;
  justify-self: start;
  padding: 0 0 2px;
  align-items: baseline;
  gap: 9px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--colour-ink);
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: var(--type-body-leading);
}

.expandable-media__toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 5px;
}

.expandable-media__panel {
  position: relative;
  left: 50%;
  display: grid;
  grid-column: 1 / 13;
  grid-template-rows: 0fr;
  width: 100vw;
  opacity: 0;
  transform: translateX(-50%);
  visibility: hidden;
  transition:
    grid-template-rows 525ms var(--ease-out),
    opacity 240ms var(--ease-out),
    visibility 0s linear 525ms;
}

.expandable-media__panel.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.expandable-media__clip {
  min-height: 0;
  overflow: hidden;
}

.expandable-media__surface {
  min-height: clamp(270px, 27vw, 430px);
  margin-top: 20px;
  background: #ddd8cf;
}

.expandable-media__inner {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  box-sizing: border-box;
  width: min(100%, 1600px);
  min-height: inherit;
  margin-inline: auto;
  padding: 40px var(--page-margin);
  align-content: start;
  gap: var(--grid-gutter);
}

.expandable-media__title {
  grid-column: 1 / 7;
}

.expandable-media__assets {
  display: grid;
  grid-column: 1 / 13;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--grid-gutter);
}

.expandable-media__asset {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  clip-path: inset(0 round 4px);
}

.expandable-media__asset img,
.expandable-media__asset video {
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: contain;
}

.process-sequence__clip {
  min-height: 0;
  overflow: hidden;
}

.process-sequence__content {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  box-sizing: border-box;
  width: min(100%, 1600px);
  margin-inline: auto;
  padding: 60px var(--page-margin) 0;
  column-gap: var(--grid-gutter);
}

.process-sequence {
  --process-sequence-node-size: clamp(144px, 11vw, 178px);
  display: flex;
  grid-column: 1 / 13;
  box-sizing: border-box;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  align-items: flex-start;
  isolation: isolate;
  list-style: none;
}

.process-sequence__item {
  display: flex;
  min-width: 0;
  flex: 1 1 0;
  align-items: flex-start;
}

.process-sequence__item:last-child {
  flex: 0 0 auto;
}

.process-sequence__step {
  display: flex;
  width: var(--process-sequence-node-size);
  flex: 0 0 var(--process-sequence-node-size);
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 315ms var(--ease-out),
    transform 490ms var(--ease-out);
  transition-delay: calc(var(--process-step-index, 0) * 90ms);
}

.process-sequence__panel.is-open .process-sequence__step {
  opacity: 1;
  transform: translateY(0);
}

.process-sequence__node {
  position: relative;
  z-index: 1;
  display: grid;
  width: var(--process-sequence-node-size);
  aspect-ratio: 515.908 / 492.613;
  flex: 0 0 auto;
  place-items: center;
  color: var(--colour-paper);
}

.process-sequence__node--interactive {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  appearance: none;
}

.process-sequence__node--interactive:focus-visible {
  outline: 2px solid var(--colour-ink);
  outline-offset: 7px;
}

.process-sequence__media-icon {
  position: absolute;
  z-index: 11;
  bottom: 24px;
  left: 50%;
  color: currentColor;
  font-size: 18px;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 20;
  transform: translateX(-50%);
}

.process-sequence__visual {
  position: absolute;
  inset: 0;
  transform: rotate(calc(var(--process-angle) - 25deg));
  transform-origin: center;
}

.process-sequence__colour {
  position: absolute;
  z-index: calc(1 + var(--process-colour-stack));
  top: var(--process-colour-y);
  right: calc(0% - var(--process-colour-x));
  bottom: calc(0% - var(--process-colour-y));
  left: var(--process-colour-x);
  background: var(--process-colour);
  -webkit-mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  mix-blend-mode: multiply;
  transform: rotate(var(--process-colour-rotation));
  transform-origin: center;
}

.process-sequence__shape {
  position: absolute;
  z-index: 10;
  inset: 0;
  background: var(--colour-ink);
  -webkit-mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  transform: rotate(25deg);
  transform-origin: center;
}

.process-sequence__node--outline {
  color: var(--colour-ink);
}

.process-sequence__node--outline .process-sequence__shape::after {
  position: absolute;
  inset: 1px;
  background: var(--colour-paper);
  -webkit-mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  content: "";
}

.process-sequence__label {
  position: relative;
  z-index: 11;
  width: 74%;
  transform: translateY(5px);
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 20px;
  text-align: center;
}

.process-sequence__caption {
  display: block;
  min-height: var(--type-body-leading);
  margin-bottom: 20px;
  color: var(--colour-ink);
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: var(--type-body-leading);
  text-align: center;
}

.process-sequence__caption.is-empty {
  visibility: hidden;
}

.process-sequence__description {
  margin-top: 20px;
  color: var(--colour-ink);
  font-family: var(--font-body);
  font-size: calc(var(--type-body) - 2px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 20px;
  text-align: center;
}

.process-sequence__connector {
  position: relative;
  z-index: 0;
  height: 1px;
  min-width: 8px;
  flex: 1 1 auto;
  margin-top: calc(var(--process-sequence-node-size) * 0.4774);
  margin-inline: 5px;
  background: var(--process-line, rgba(0, 0, 0, 0.52));
  opacity: 0;
  transition: opacity 225ms var(--ease-out);
  transition-delay: calc((var(--process-step-index, 0) * 90ms) + 53ms);
}

.process-sequence__item--has-caption .process-sequence__connector {
  margin-top: calc(var(--type-body-leading) + 20px + (var(--process-sequence-node-size) * 0.4774));
}

.process-sequence__panel.is-open .process-sequence__connector {
  opacity: 1;
}

.process-sequence__explorations {
  position: relative;
  left: 50%;
  display: grid;
  grid-column: 1 / 13;
  grid-template-rows: 0fr;
  width: 100vw;
  opacity: 0;
  transform: translateX(-50%);
  transition:
    grid-template-rows 420ms var(--ease-out),
    opacity 260ms var(--ease-out);
}

.process-sequence__explorations.has-active {
  grid-template-rows: 1fr;
  opacity: 1;
}

.process-sequence__explorations-clip {
  min-height: 0;
  overflow: hidden;
}

.process-sequence__exploration {
  padding-top: 60px;
}

.process-sequence__gallery-shell {
  --process-gallery-media-height: clamp(270px, 27vw, 430px);
  --process-gallery-grid-edge: max(
    var(--page-margin),
    calc((100vw - 1600px) / 2 + var(--page-margin))
  );
  position: relative;
  left: 50%;
  height: var(--process-gallery-media-height);
  width: 100vw;
  overflow: hidden;
  transform: translateX(-50%);
}

.process-sequence__gallery-shell.is-overflowing {
  height: calc(var(--process-gallery-media-height) + 50px);
}

.process-sequence__gallery {
  display: flex;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  gap: var(--grid-gutter);
  align-items: center;
  justify-content: center;
  overflow-x: auto;
  background: #ddd8cf;
  padding-block: 20px;
  padding-inline: var(--process-gallery-grid-edge);
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-padding-inline: var(--process-gallery-grid-edge);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.process-sequence__gallery::-webkit-scrollbar {
  display: none;
}

.process-sequence__gallery-shell.is-overflowing .process-sequence__gallery {
  height: var(--process-gallery-media-height);
  justify-content: flex-start;
}

.process-sequence__gallery-item {
  position: relative;
  width: auto;
  height: 100%;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  clip-path: inset(0 round 4px);
  background: #d7d7d4;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 300ms var(--ease-out),
    transform 460ms var(--ease-out);
  transition-delay: calc(var(--process-image-index, 0) * 85ms);
  scroll-snap-align: center;
}

.process-sequence__gallery-item:only-child {
  margin-inline: auto;
}

.process-sequence__gallery-item--video {
  aspect-ratio: 2 / 1;
}

.process-sequence__exploration.is-active .process-sequence__gallery-item {
  opacity: 1;
  transform: translateY(0);
}

.process-sequence__gallery-item > img,
.process-sequence__gallery-item > video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: contain;
}

.process-sequence__gallery-controls {
  position: absolute;
  z-index: 5;
  right: var(--process-gallery-grid-edge);
  bottom: 10px;
  display: flex;
  gap: 6px;
}

.process-sequence__gallery-controls[hidden] {
  display: none;
}

.process-sequence__gallery-arrow {
  display: grid;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--colour-ink);
  place-items: center;
  transition: opacity 180ms var(--ease-out);
}

.process-sequence__gallery-arrow:disabled {
  opacity: 0.22;
}

.process-sequence__gallery-arrow .material-symbols-outlined {
  font-size: 24px;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.case-media-stack {
  display: grid;
  gap: 20px;
}

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  clip-path: inset(0 round 4px);
  background: var(--colour-paper);
}

.media-frame--wide {
  grid-column: 1 / 13;
  aspect-ratio: var(--media-frame-aspect-ratio, 16 / 9);
}

.media-frame img,
.media-frame video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  object-fit: cover;
}

.managed-video {
  isolation: isolate;
}

.managed-video__poster,
.managed-video__media {
  position: absolute;
  inset: 0;
  border-radius: 4px;
}

.presentation-video-replay {
  position: absolute;
  z-index: 5;
  top: 16px;
  right: 16px;
  display: none;
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgb(0 0 0 / 48%);
  color: #fff;
  place-items: center;
}

html.is-presentation-mode .presentation-video-replay {
  display: grid;
}

.presentation-video-replay .material-symbols-outlined {
  font-size: 24px;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
}

.managed-video__poster {
  z-index: 1;
  opacity: 1;
  transition: opacity 1000ms var(--ease-out);
}

.managed-video__media {
  z-index: 2;
  opacity: 0;
  transition: opacity 1000ms var(--ease-out);
}

.managed-video.is-video-ready .managed-video__poster {
  opacity: 0;
}

.managed-video.is-video-ready .managed-video__media {
  opacity: 1;
}

.managed-video__status,
.managed-video__play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 20px;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

.managed-video__status {
  background: var(--colour-paper);
  color: var(--colour-ink);
  pointer-events: none;
}

.managed-video__play {
  background: var(--colour-ink);
  color: var(--colour-paper);
  cursor: pointer;
}

.managed-video__spinner,
.managed-video__play-icon {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  -webkit-mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  background: currentColor;
}

.managed-video__spinner {
  animation: managed-video-spinner 2400ms linear infinite;
}

.managed-video__play-icon {
  position: relative;
}

.managed-video__play-icon::after {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid var(--colour-ink);
  content: "";
  transform: translate(-50%, -50%);
}

@keyframes managed-video-spinner {
  to {
    transform: rotate(360deg);
  }
}

.media-placeholder {
  display: grid;
  aspect-ratio: var(--placeholder-aspect-ratio, 16 / 9);
  place-items: center;
  background: #d5d5d0;
}

.media-placeholder__label {
  padding: 20px;
  color: rgb(8 8 8 / 55%);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.two-image-media {
  --two-image-aspect-ratio: 16 / 9;
}

.two-image-media__item {
  grid-column: span 6;
  aspect-ratio: var(--two-image-aspect-ratio);
}

.results-section {
  padding-block: 100px;
}

.awards-section {
  padding-block: 80px 100px;
}

.section-heading {
  margin: 0 0 20px;
  font-family: "Crystal Variable", var(--font-display);
  font-size: var(--type-h2);
  font-variation-settings: "wdth" 1.65, "wght" 648, "ital" 0;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: normal;
  text-align: center;
}

.results-section .section-heading {
  grid-column: 3 / 11;
}

.awards-section .section-heading {
  grid-column: 2 / 12;
}

.case-section-heading {
  padding-bottom: 40px;
}

.case-section-heading .section-heading {
  display: flex;
  grid-column: 3 / 11;
  align-items: baseline;
  justify-content: center;
  gap: 0.2em;
}

.reveal-enabled .case-section-heading .section-heading > .reveal-text__inner {
  display: flex;
  align-items: baseline;
  gap: 0.2em;
}

.section-heading__tail {
  font-variation-settings: "wdth" 17, "wght" 100, "ital" 0;
}

.case-section-heading--feature {
  padding-top: 60px;
  padding-bottom: 36px;
}

.case-section-heading--feature .section-heading {
  grid-column: 1 / 13;
  flex-wrap: wrap;
  justify-content: flex-start;
  font-size: var(--type-h1);
  line-height: normal;
  text-align: left;
}

.case-section-heading--feature .section-heading__lead {
  font-variation-settings: "wdth" 1.65, "wght" 648, "ital" 0;
}

.results-list {
  display: grid;
  grid-column: 3 / 11;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  grid-template-rows: minmax(0, 1fr) auto;
  column-gap: var(--grid-gutter);
  row-gap: 0;
  align-items: stretch;
  background: transparent;
}

.result {
  display: grid;
  grid-row: 1 / 3;
  grid-template-rows: subgrid;
  min-width: 0;
  align-items: end;
  justify-items: center;
  padding-inline: 20px;
  background: var(--colour-paper);
  text-align: center;
}

.result:nth-child(1) {
  grid-column: 1 / 3;
}

.result:nth-child(2) {
  grid-column: 4 / 6;
}

.result:nth-child(3) {
  grid-column: 7 / 9;
}

.results-section[data-result-count="2"] .results-list {
  grid-column: 4 / 10;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: calc((100% + var(--grid-gutter)) * 5 / 6 - var(--grid-gutter));
  justify-self: center;
}

.results-section[data-result-count="2"] .results-note {
  grid-column: 4 / 10;
  width: calc((100% + var(--grid-gutter)) * 5 / 6 - var(--grid-gutter));
  justify-self: center;
}

.results-section[data-result-count="2"] .result:nth-child(1) {
  grid-column: 1 / 3;
}

.results-section[data-result-count="2"] .result:nth-child(2) {
  grid-column: 4 / 6;
}

.result__value {
  font-family: var(--font-stat);
  font-size: clamp(4.5rem, 7.8vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.72;
  -webkit-text-stroke: 0.35px currentColor;
  white-space: nowrap;
}

.result__value-group {
  display: inline-flex;
  align-items: center;
  gap: 0.071em;
}

.result__lowercase {
  display: inline-block;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
  font-size: 1em;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: inherit;
  -webkit-text-stroke: 0;
}

.result__trend {
  width: 0.143em;
  height: 0.714em;
  flex: 0 0 auto;
  margin-top: 0;
  transform: translateY(-3px);
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 2px;
}

.result__trend path {
  vector-effect: non-scaling-stroke;
}

.result__label {
  max-width: 19ch;
  margin-top: 8px;
  letter-spacing: 0.04em;
  text-align: center;
}

.results-note {
  grid-column: 3 / 11;
  margin-top: 0;
  padding-top: 14px;
  border-top: 2px solid var(--colour-line);
  text-align: center;
}

.awards-list {
  display: grid;
  grid-column: var(--case-award-grid-start, 2) / var(--case-award-grid-end, 12);
  grid-template-columns: repeat(var(--case-award-count, 5), minmax(0, 1fr));
  gap: 20px;
  align-items: end;
}

.award {
  --award-max-height: 55px;

  position: relative;
  display: flex;
  align-self: end;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
}

.award[data-award="one-show"],
.award[data-award="bima"] {
  --award-max-height: 85px;
}

.award[data-award="cannes-lions"],
.award[data-award="w3"],
.award[data-award="dare"] {
  --award-max-height: 70px;
}

.award[data-award="d-and-ad"] {
  --award-max-height: 110px;
}

.award img {
  width: auto;
  max-width: 100%;
  max-height: var(--award-max-height);
  object-fit: contain;
  object-position: center bottom;
  transform-origin: center bottom;
  will-change: transform;
}

.award__artwork {
  --award-logo-scale: 1;

  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: center;
  transform: scale(var(--award-logo-scale));
  transform-origin: center bottom;
}

.award[data-award="cannes-lions"] .award__artwork { --award-logo-scale: 0.95; }
.award[data-award="d-and-ad"] .award__artwork { --award-logo-scale: 0.89; }
.award[data-award="one-show"] .award__artwork { --award-logo-scale: 0.92; }
.award[data-award="bima"] .award__artwork { --award-logo-scale: 0.91; }
.award[data-award="the-drum"] .award__artwork { --award-logo-scale: 0.98; }
.award[data-award="shorty"] .award__artwork { --award-logo-scale: 0.93; }
.award[data-award="w3"] .award__artwork { --award-logo-scale: 0.93; }
.award[data-award="phnx"] .award__artwork { --award-logo-scale: 0.93; }
.award[data-award="creativepool"] .award__artwork { --award-logo-scale: 0.89; }
.award[data-award="lovies"] .award__artwork { --award-logo-scale: 0.89; }

.award.is-celebrating img {
  animation: award-joy-jump 920ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.award-particles {
  position: absolute;
  z-index: 4;
  inset: 0;
  overflow: visible;
  pointer-events: none;
}

.award-particle {
  position: absolute;
  top: var(--particle-origin-y);
  left: var(--particle-origin-x);
  width: var(--particle-size);
  height: var(--particle-size);
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%);
  background: var(--colour-ink);
  opacity: 0;
  animation: award-particle-burst 680ms var(--ease-out) var(--particle-delay) both;
}

@keyframes award-joy-jump {
  0% {
    transform: translateY(0) rotate(0) scale(1);
  }

  14% {
    transform: translateY(3px) rotate(0) scale(1.04, 0.93);
  }

  42% {
    transform: translateY(-38px) rotate(var(--award-jump-tilt)) scale(0.98, 1.04);
  }

  60% {
    transform: translateY(-24px) rotate(var(--award-jump-tilt-soft)) scale(1);
  }

  74% {
    transform: translateY(2px) rotate(-1deg) scale(1.05, 0.92);
  }

  84% {
    transform: translateY(-8px) rotate(0.6deg) scale(0.99, 1.025);
  }

  93% {
    transform: translateY(1px) rotate(-0.25deg) scale(1.01, 0.98);
  }

  100% {
    transform: translateY(0) rotate(0) scale(1);
  }
}

@keyframes award-particle-burst {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.2);
  }

  14% {
    opacity: 1;
  }

  58% {
    opacity: 1;
    transform: translate(calc(-50% + var(--particle-x)), calc(-50% + var(--particle-y))) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(calc(-50% + var(--particle-x)), calc(-50% + var(--particle-land-y))) scale(0.35);
  }
}

.awards-rule {
  grid-column: var(--case-award-grid-start, 2) / var(--case-award-grid-end, 12);
  border-top: 2px solid var(--colour-line);
}

/* Homepage */
.home-intro-loader {
  --intro-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --intro-item-size: min(12vw, 300px);
  position: fixed;
  z-index: 3000;
  inset: 0;
  overflow: hidden;
  background: var(--colour-paper);
  opacity: 1;
  transition: opacity 620ms var(--intro-ease-out);
}

.home-intro-loader[hidden] {
  display: none;
}

.has-seen-home-intro .home-intro-loader {
  display: none;
}

.home-intro-loader__sequence {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 60px);
  padding-inline: var(--page-margin);
}

.home-intro-loader__item {
  position: relative;
  z-index: var(--intro-stack);
  width: var(--intro-item-size);
  aspect-ratio: 515.908 / 492.613;
  flex: 0 0 auto;
  mix-blend-mode: multiply;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  transform-origin: center;
  transition:
    opacity 420ms var(--intro-ease-out),
    transform 1250ms var(--intro-ease-out);
  will-change: transform;
}

.home-intro-loader__mask {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(100% 0 0 0);
}

.home-intro-loader__shape,
.home-intro-loader__centre-shape {
  position: absolute;
  inset: 0;
  display: block;
  -webkit-mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
}

.home-intro-loader__shape {
  background: var(--intro-colour);
  transform: rotate(var(--intro-rotation)) scale(0.79);
  transform-origin: center;
  transition:
    inset 1250ms var(--intro-ease-out),
    transform 1250ms var(--intro-ease-out);
}

.home-intro-loader__label {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  color: #fff;
  font-family: "Crystal Variable", var(--font-display);
  font-size: clamp(18px, 2.15vw, 52px);
  font-variation-settings: "wdth" 1.65, "wght" 648, "ital" 0;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: normal;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  transition: opacity 300ms var(--intro-ease-out);
  white-space: nowrap;
}

.home-intro-loader.is-merging .home-intro-loader__item {
  transform:
    translate3d(var(--intro-merge-x), var(--intro-merge-y), 0)
    scale(var(--intro-merge-scale));
}

.home-intro-loader.is-merging .home-intro-loader__label {
  opacity: 0;
}

.home-intro-loader.is-merging .home-intro-loader__shape {
  /* The item already has the pentagon asset's 515.908 / 492.613 aspect ratio.
     Reapplying the square target's inset here compressed the coloured shapes
     vertically, making the identically sized black pentagon look too large. */
  inset: 0;
  transform: translateY(-4.55%) rotate(var(--intro-final-rotation)) scale(0.7581);
}

.home-intro-loader.is-formed .home-intro-loader__item {
  opacity: 0;
}

.home-intro-loader__target {
  position: fixed;
  z-index: 10;
  top: 50%;
  left: 50%;
  width: min(48.75vw, 702px);
  aspect-ratio: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.home-intro-loader.is-leaving {
  opacity: 0;
  pointer-events: none;
}

.is-home-intro-active,
.is-home-intro-active body {
  overflow: hidden;
  overscroll-behavior: none;
}

.home-page .floating-menu--home {
  transition: opacity 320ms var(--ease-out);
}

@media (min-width: 768px) {
  .home-page--showreel .floating-menu--home:not(.is-compact) .floating-menu__inner {
    transform: translateY(calc(50svh - 77px));
  }
}

html.is-home-display-font-pending .home-page .floating-menu--home,
html.is-home-display-font-pending .home-page .floating-menu__pentagon--blend {
  opacity: 0 !important;
  pointer-events: none;
}

.is-home-intro-active .mobile-site-nav--home,
.is-home-intro-active .site-cursor {
  opacity: 0 !important;
}

.is-home-intro-active .floating-menu--home {
  z-index: 3100;
  opacity: 1 !important;
  pointer-events: none;
}

@media (min-width: 768px) {
  .is-home-intro-active .floating-menu__pentagon--blend {
    /* Above the opaque loader for the crossfade, but below the title copy. */
    z-index: 3050;
  }
}

html.is-home-intro-active:not(.is-home-intro-formed) .floating-menu--home .floating-menu__name,
html.is-home-intro-active:not(.is-home-intro-formed) .floating-menu--home .floating-menu__role {
  opacity: 0;
}

html.is-home-intro-active:not(.is-home-intro-formed) .floating-menu--home .floating-menu__title-colour,
html.is-home-intro-active:not(.is-home-intro-formed) .floating-menu--home .floating-menu__pentagon::before,
html.is-home-intro-active:not(.is-home-intro-formed) .floating-menu__pentagon--blend .floating-menu__title-colour,
html.is-home-intro-active:not(.is-home-intro-formed) .floating-menu__pentagon--blend::before {
  opacity: 0;
}

.is-home-intro-active .floating-menu--home .floating-menu__pentagon {
  opacity: 1;
  transition: top 420ms var(--ease-out);
}

.is-home-intro-active .floating-menu--home .floating-menu__pentagon::before {
  transition: opacity 420ms var(--intro-ease-out, var(--ease-out));
}

.is-home-intro-active .floating-menu__pentagon--blend::before {
  transition: opacity 420ms var(--intro-ease-out, var(--ease-out));
}

.is-home-intro-active .floating-menu--home .floating-menu__name,
.is-home-intro-active .floating-menu--home .floating-menu__role {
  transition:
    opacity 480ms var(--ease-out) 160ms,
    font-size 420ms var(--ease-out),
    letter-spacing 420ms var(--ease-out);
}

.home-hero {
  position: relative;
  height: 1155px;
  overflow: clip;
}

.home-dark-stage {
  position: relative;
  isolation: isolate;
  background: var(--colour-dark-surface);
}

.home-dark-stage__background {
  position: sticky;
  z-index: 0;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: var(--colour-dark-surface);
  pointer-events: none;
}

.home-dark-stage__content {
  position: relative;
  z-index: 1;
  margin-top: -100svh;
}

.home-dark-stage__background::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image: radial-gradient(circle, rgb(255 255 255 / 15%) 0 1px, transparent 1.05px);
  background-position: center;
  background-size: 30px 30px;
  content: "";
  opacity: 0;
  transition: opacity 720ms var(--ease-out);
}

.is-career-intro-separated .home-dark-stage__background::before {
  opacity: 1;
}

.home-dark-stage__media {
  position: absolute;
  z-index: 0;
  inset: 0;
  opacity: var(--career-intro-showreel-opacity, 1);
  will-change: opacity;
}

.home-dark-stage__media::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: rgb(0 0 0 / 12%);
  content: "";
}

.home-dark-stage__poster,
.home-dark-stage__media video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-dark-stage__media video {
  z-index: 1;
}

.home-dark-stage .career-intro,
.home-dark-stage .career-intro__sticky,
.home-dark-stage .home-hero__intro {
  background: transparent;
}

.home-dark-stage .career-intro__sticky::before {
  display: none;
}

.home-dark-stage .career-intro__sequence {
  opacity: 0;
  transition: opacity 180ms var(--ease-out);
}

.home-dark-stage .career-intro.is-separated .career-intro__sequence {
  opacity: 1;
}

.home-page--showreel .home-hero {
  height: calc(100svh + 305px);
}

.home-hero__showreel {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  background: var(--colour-ink);
}

.home-hero__showreel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero__trail {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.home-mobile-stage {
  display: none;
}

.home-trail-image {
  position: absolute;
  width: min(27.7vw, 399px);
  aspect-ratio: 16 / 9;
  opacity: 0;
  object-fit: cover;
  transform: translate(-50%, -50%) scale(0.96);
  transition:
    opacity 160ms var(--ease-out),
    transform 220ms var(--ease-out);
  will-change: opacity, transform;
}

.home-trail-image.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.home-trail-image.is-leaving {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.98);
}

.home-hero__intro {
  position: relative;
  z-index: 20;
  height: 100%;
  align-content: start;
  padding-top: 850px;
  pointer-events: none;
}

.home-page--showreel .home-hero__intro {
  min-height: 0;
  height: auto;
  padding-block: 0 var(--home-intro-release-space, 240px);
  align-content: start;
  background: transparent;
}

.home-page--showreel .home-hero__panel {
  padding: 0 20px;
  background: transparent;
  color: var(--colour-paper);
}

.home-page--showreel .home-hero__copy,
.home-page--showreel .home-hero__intro .portfolio-unlock-form {
  color: var(--colour-paper);
}

.home-page--showreel .home-hero__intro .portfolio-unlock-form__input,
.home-page--showreel .home-hero__intro .portfolio-unlock-form__submit {
  border-color: var(--colour-paper);
}

.home-page--showreel .home-hero__intro .portfolio-unlock-form__input {
  background: transparent;
  color: var(--colour-paper);
}

.home-page--showreel .home-hero__intro .portfolio-unlock-form__input::placeholder {
  color: var(--colour-paper);
}

.home-page--showreel .home-hero__intro .portfolio-unlock-form__input:focus {
  box-shadow: inset 0 0 0 1px var(--colour-paper);
}

.home-page--showreel .home-hero__intro .portfolio-unlock-form__submit {
  background: var(--colour-paper);
  color: var(--colour-dark-surface);
}

.home-hero__panel {
  display: block;
  grid-column: 4 / 10;
  box-sizing: border-box;
  width: calc(100% + 40px);
  max-width: 730px;
  padding: 20px;
  justify-self: center;
  border-radius: 10px;
  background: var(--colour-paper);
  pointer-events: auto;
}

.home-hero__copy {
  width: 100%;
  max-width: 690px;
  margin-inline: auto;
  justify-self: center;
  color: var(--colour-ink);
  mix-blend-mode: normal;
  text-align: center;
}

.home-hero__about-link {
  margin-top: 20px !important;
  color: inherit;
  line-height: var(--type-body-leading);
  text-align: center;
}

.home-hero__about-link a {
  border-bottom: 2px solid currentColor;
  color: inherit;
  text-decoration: none;
}

.home-hero__unlock {
  width: min(100%, 690px);
  margin: 40px auto 0;
  justify-self: center;
  pointer-events: auto;
}

.portfolio-unlock-form--home {
  text-align: center;
}

.portfolio-unlock-form--home .portfolio-unlock-form__fields {
  margin-inline: auto;
}

.home-projects {
  position: relative;
  height: calc(4463.3125px + min(28.125vw, 450px));
  margin-top: 100px;
}

.home-section-heading {
  font-family: "Crystal Variable", var(--font-display);
  font-size: var(--type-h2);
  font-variation-settings: "wdth" 1.65, "wght" 648, "ital" 0;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: normal;
  text-align: center;
}

h1.home-section-heading {
  font-size: var(--type-h1);
}

.home-projects > .home-section-heading {
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.home-flow-item {
  position: absolute;
  top: var(--home-project-top);
  right: 0;
  left: 0;
  grid-column: var(--home-project-column);
}

.home-project-card > a {
  display: block;
  text-decoration: none;
}

.private-project-listing {
  display: none;
}

.is-portfolio-unlocked .private-project-listing {
  display: block;
}

.home-testimonial-card {
  display: none;
}

.is-portfolio-unlocked .home-testimonial-card {
  display: block;
}

/* Reusable scroll-driven Three.js image cloud */
.image-cloud {
  --image-cloud-dark: var(--colour-dark-surface);
  --image-cloud-blackout: 0;
  --image-cloud-canvas-opacity: 0;
  --image-cloud-title-reveal-opacity: 0;
  --image-cloud-title-focus-opacity: 1;
  --image-cloud-pentagon-size: min(32vw, 460px);
  --image-cloud-pentagon-scale: 1.25;
  --image-cloud-pentagon-rotation: 25deg;
  width: 100%;
  height: 370svh;
  background: var(--colour-paper);
}

.home-image-cloud {
  z-index: 20;
  grid-column: 1 / -1;
  width: 100vw;
  margin-left: calc((100% - 100vw) / 2);
}

.case-image-cloud {
  position: relative;
  z-index: 20;
  margin-top: 140px;
}

.image-cloud--light .image-cloud__pentagon {
  display: none;
}

.image-cloud--light .image-cloud__blackout {
  background: var(--colour-paper);
  opacity: 1;
}

.image-cloud--light .image-cloud__viewport::before {
  display: none;
}

.image-cloud--light .image-cloud__info-cursor {
  color: var(--colour-paper);
}

.image-cloud--light .image-cloud__info-cursor-shape {
  background: var(--colour-ink);
}

.image-cloud__viewport {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  /* During entry the pentagon is allowed to grow into the protected spacing
     above the component. It is clipped again as soon as the viewport docks. */
  overflow: visible;
  background: var(--colour-paper);
  isolation: isolate;
}

.image-cloud.is-cloud-docked .image-cloud__viewport {
  overflow: hidden;
}

.image-cloud__viewport::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image: radial-gradient(circle, rgb(255 255 255 / 15%) 0 1px, transparent 1.05px);
  background-position: center;
  background-size: 30px 30px;
  content: "";
  opacity: var(--image-cloud-blackout);
  pointer-events: none;
  will-change: opacity;
}

.image-cloud__pentagon {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: rotate(var(--image-cloud-pentagon-rotation)) scale(var(--image-cloud-pentagon-scale));
  transform-origin: center;
  will-change: transform;
}

.image-cloud__pentagon-shape {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: var(--image-cloud-pentagon-size);
  aspect-ratio: 515.908 / 492.613;
  background: var(--image-cloud-dark);
  -webkit-mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  transform: translate(-50%, -55.24%);
}

.image-cloud__blackout {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: var(--image-cloud-dark);
  opacity: var(--image-cloud-blackout);
  pointer-events: none;
  will-change: opacity;
}

.image-cloud__canvas {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: var(--image-cloud-canvas-opacity);
  will-change: opacity;
}

.image-cloud__canvas {
  display: block;
  pointer-events: none;
}

.is-cloud-interactive .image-cloud__canvas {
  pointer-events: auto;
}

.image-cloud__title {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  color: #fff;
  font-family: "Crystal Variable", var(--font-display);
  font-size: var(--type-h2);
  font-variation-settings: "wdth" 1.65, "wght" 648, "ital" 0;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.86;
  mix-blend-mode: difference;
  opacity: calc(var(--image-cloud-title-reveal-opacity) * var(--image-cloud-title-focus-opacity));
  pointer-events: none;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  will-change: opacity;
}

.image-cloud__info-cursor {
  --image-cloud-pointer-x: -100px;
  --image-cloud-pointer-y: -100px;
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  display: grid;
  width: 28px;
  aspect-ratio: 515.908 / 492.613;
  place-items: center;
  color: var(--colour-ink);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(var(--image-cloud-pointer-x), var(--image-cloud-pointer-y), 0) translate(-50%, -50%);
  transition: opacity 120ms var(--ease-out);
  will-change: opacity, transform;
}

.image-cloud__info-cursor.is-visible {
  opacity: 1;
}

.image-cloud__info-cursor-shape {
  position: absolute;
  inset: 0;
  background: var(--colour-paper);
  -webkit-mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  transform: rotate(-34deg) scale(0.82);
  transform-origin: center;
  will-change: transform;
}

.image-cloud__info-cursor.is-visible .image-cloud__info-cursor-shape {
  transform: rotate(-25deg) scale(1);
}

.image-cloud__info-cursor.is-visible.is-entering .image-cloud__info-cursor-shape {
  animation: image-cloud-info-expand-spin 700ms var(--ease-out) both;
}

.image-cloud__info-cursor-mark {
  position: relative;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  opacity: 0;
  text-rendering: geometricPrecision;
  transform: translateY(1px) scale(0.82);
  transition: opacity 120ms var(--ease-out), transform 320ms var(--ease-out);
  white-space: nowrap;
}

.image-cloud__info-cursor.is-visible .image-cloud__info-cursor-mark {
  opacity: 1;
  transform: translateY(1px) scale(1);
  transition-delay: 60ms;
}

@keyframes image-cloud-info-expand-spin {
  from {
    transform: rotate(-34deg) scale(0.82);
  }

  to {
    transform: rotate(-25deg) scale(1);
  }
}

.image-cloud__tooltip {
  position: absolute;
  z-index: 4;
  width: min(300px, calc(100vw - 40px));
  box-sizing: border-box;
  padding: 16px 18px 17px;
  border-radius: 4px;
  background: var(--colour-paper);
  color: var(--colour-ink);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.22);
  font-family: var(--font-body);
  opacity: 1;
  pointer-events: auto;
}

.image-cloud__tooltip[hidden] {
  display: none;
}

.image-cloud__description {
  font-size: var(--type-body);
  line-height: var(--type-body-leading);
}

.image-cloud__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  line-height: 18px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

html.is-cloud-card-hovered .site-cursor {
  opacity: 0 !important;
}

.home-project-card__media {
  aspect-ratio: 16 / 9;
}

.home-project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-tags {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
}

.project-tags__item {
  display: flex;
  height: 30px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--colour-ink);
  color: #fff;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: none;
}

.project-tags--thumbnail {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 16px;
  max-width: calc(100% - 32px);
  justify-content: flex-end;
  color: #fff;
  pointer-events: none;
}

.project-awards {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 16px;
  display: flex;
  max-width: calc(100% - 32px);
  align-items: flex-end;
  justify-content: flex-end;
  gap: 9px;
  pointer-events: none;
}

.media-frame .project-awards__icon {
  width: auto;
  height: auto;
  max-width: 60px;
  max-height: 29px;
  object-fit: contain;
  object-position: right bottom;
  filter: brightness(0) invert(1);
}

.home-project-card__title {
  margin-top: 8px;
  line-height: var(--type-body-leading);
}

.home-testimonial {
  position: relative;
  display: grid;
  width: 100%;
  height: var(--testimonial-flow-height, clamp(500px, calc(44.5vw - 60px), 581px));
  margin: 0;
  overflow: visible;
  color: #000;
  place-items: start center;
}

.home-testimonial__stage {
  position: absolute;
  top: var(--testimonial-stage-top, 30px);
  left: 50%;
  width: min(515.908px, 100%);
  aspect-ratio: 515.908 / 492.613;
  transform: translateX(calc(-50% + var(--testimonial-stage-x, 0px)));
}

.home-testimonial__bounds {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 50%;
  display: block;
  width: var(--testimonial-bounds-width, 0px);
  height: var(--testimonial-flow-height, 0px);
  transform: translateX(-50%);
  pointer-events: none;
}

.home-testimonial__pentagon {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  background: var(--colour-paper);
  -webkit-mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  transform: rotate(var(--testimonial-angle));
  transform-origin: center;
}

.home-testimonial__pentagon::after {
  position: absolute;
  inset: 0;
  display: block;
  background: #000;
  content: "";
  -webkit-mask-image:
    url("/media/shared/nav-pentagon.svg"),
    url("/media/shared/nav-pentagon.svg");
  -webkit-mask-position: center, center;
  -webkit-mask-repeat: no-repeat, no-repeat;
  -webkit-mask-size: 100% 100%, calc(100% - 2px) calc(100% - 2px);
  -webkit-mask-composite: xor;
  mask-image:
    url("/media/shared/nav-pentagon.svg"),
    url("/media/shared/nav-pentagon.svg");
  mask-position: center, center;
  mask-repeat: no-repeat, no-repeat;
  mask-size: 100% 100%, calc(100% - 2px) calc(100% - 2px);
  mask-composite: exclude;
  pointer-events: none;
}

.home-testimonial__content {
  position: absolute;
  z-index: 1;
  top: calc(50% + var(--testimonial-centre-y));
  left: calc(50% + var(--testimonial-centre-x));
  display: flex;
  width: min(370px, calc(100% - 60px));
  align-items: center;
  flex-direction: column;
  text-align: center;
  transform: translate(-50%, -50%);
}

.home-testimonial__mark,
.home-testimonial__quote,
.home-testimonial__attribution {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
}

.home-testimonial__mark {
  font-size: 30px;
  letter-spacing: 2.4px;
  line-height: 26px;
}

.home-testimonial__quote {
  width: 100%;
  margin-top: 20px !important;
  font-size: var(--type-body);
  letter-spacing: 0.08em;
  line-height: var(--type-body-leading);
}

.home-testimonial__attribution {
  margin-top: 18px;
  font-size: 12px;
  letter-spacing: 0.96px;
  line-height: 20px;
}

.home-testimonial__attribution span {
  display: block;
}

.material-icons,
.material-symbols-outlined {
  font-feature-settings: "liga";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  text-rendering: optimizeLegibility;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
}

.project-lock-state {
  position: absolute;
  z-index: 4;
  top: 16px;
  right: 16px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--colour-ink);
  color: #fff;
  transition: color 240ms var(--ease-out);
}

.project-lock-state__icon {
  font-size: 18px;
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 20;
}

.project-lock-state.is-unlocked {
  transform: none;
}

.is-portfolio-unlocked .project-lock-state {
  display: none;
}

/* Shared portfolio unlock */
.portfolio-unlock-form {
  width: 100%;
}

.portfolio-unlock-form__prompt {
  line-height: var(--type-body-leading);
}

.portfolio-unlock-form__fields {
  display: flex;
  width: 100%;
  max-width: 520px;
  margin-top: 12px;
}

.portfolio-unlock-form__input,
.portfolio-unlock-form__submit {
  height: 42px;
  border: 2px solid var(--colour-line);
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.08em;
}

.portfolio-unlock-form__input {
  min-width: 0;
  flex: 1;
  padding: 0 12px;
  border-radius: 999px 0 0 999px;
  outline: 0;
  background: var(--colour-paper);
  color: var(--colour-ink);
}

.portfolio-unlock-form__input:focus {
  box-shadow: inset 0 0 0 1px var(--colour-line);
}

.portfolio-unlock-form__input::placeholder {
  color: var(--colour-ink);
  opacity: 0.55;
}

.portfolio-unlock-form__submit {
  min-width: 112px;
  margin-left: -2px;
  padding-inline: 18px;
  border-radius: 0 999px 999px 0;
  background: var(--colour-ink);
  color: var(--colour-paper);
  transition: opacity 180ms var(--ease-out);
}

.portfolio-unlock-form__submit:disabled {
  opacity: 0.5;
}

.portfolio-unlock-form__status {
  min-height: var(--type-body-leading);
  margin-top: 8px;
  line-height: var(--type-body-leading);
}

.portfolio-unlock-form__access {
  margin-top: 12px;
  line-height: var(--type-body-leading);
  text-align: center;
}

.portfolio-unlock-form__access a {
  border-bottom: 2px solid currentColor;
  text-decoration: none;
}

.portfolio-unlock-form__status:empty {
  min-height: 0;
  margin-top: 0;
}

.portfolio-unlock-form__status.is-error {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.is-portfolio-unlocked .portfolio-unlock-form__fields,
.is-portfolio-unlocked .portfolio-unlock-form__access {
  display: none;
}

.unlock-dialog {
  width: min(620px, calc(100% - 30px));
  max-width: none;
  margin: auto;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--colour-paper);
  color: var(--colour-ink);
  opacity: 0;
  transition:
    display 280ms allow-discrete,
    overlay 280ms allow-discrete,
    opacity 280ms var(--ease-out);
}

.unlock-dialog[open] {
  opacity: 1;
}

@starting-style {
  .unlock-dialog[open] {
    opacity: 0;
  }
}

.unlock-dialog::backdrop {
  background: rgb(8 8 8 / 42%);
  opacity: 0;
  transition:
    display 280ms allow-discrete,
    overlay 280ms allow-discrete,
    opacity 280ms var(--ease-out);
}

.unlock-dialog[open]::backdrop {
  opacity: 1;
}

@starting-style {
  .unlock-dialog[open]::backdrop {
    opacity: 0;
  }
}

.unlock-dialog__inner {
  position: relative;
  z-index: 1;
  padding: 64px 40px 40px;
  transform: translateY(24px);
  transition: transform 280ms var(--ease-out);
}

.unlock-dialog[open] .unlock-dialog__inner {
  transform: translateY(0);
}

@starting-style {
  .unlock-dialog[open] .unlock-dialog__inner {
    transform: translateY(24px);
  }
}

.unlock-dialog__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--colour-ink);
}

.unlock-dialog__close .material-icons {
  font-size: 24px;
}

.unlock-dialog__eyebrow {
  margin-bottom: 6px !important;
}

.unlock-dialog__title {
  font-family: "Crystal Variable", var(--font-display);
  font-size: var(--type-h2);
  font-variation-settings: "wdth" 1.65, "wght" 648, "ital" 0;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: normal;
}

.portfolio-unlock-form--modal {
  margin-top: 40px;
}

.site-cursor {
  position: fixed;
  z-index: 3000;
  top: 0;
  left: 0;
  display: flex;
  width: 120px;
  height: 120px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  opacity: 0;
  background: transparent;
  color: #000;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.08em;
  mix-blend-mode: difference;
  pointer-events: none;
  transition: opacity 120ms var(--ease-out);
  will-change: opacity, transform;
}

.site-cursor__graphic {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86.25%;
  aspect-ratio: 515.908 / 492.613;
  transform: translate(-50%, -50%) scale(0.2174);
  transition: transform 320ms var(--ease-out);
  will-change: transform;
}

.site-cursor__shape {
  position: absolute;
  inset: 0;
  display: block;
}

.site-cursor__shape--solid {
  -webkit-mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  background: var(--colour-cursor);
  opacity: 1;
  animation: cursor-pentagon-idle 6s ease-in-out infinite alternate;
  transition: opacity 180ms var(--ease-out);
}

.site-cursor__shape--outline {
  /* The graphic is rendered at 0.2174 scale in the standard link-hover state.
     An 18.4px mask inset produces a visible 2px outline after that scale. */
  --site-cursor-outline-inset: 18.4px;

  background: var(--colour-cursor);
  opacity: 0;
  transition: opacity 180ms var(--ease-out);
  -webkit-mask-image:
    url("/media/shared/nav-pentagon.svg"),
    url("/media/shared/nav-pentagon.svg");
  -webkit-mask-position: center, center;
  -webkit-mask-repeat: no-repeat, no-repeat;
  -webkit-mask-size:
    100% 100%,
    calc(100% - var(--site-cursor-outline-inset)) calc(100% - var(--site-cursor-outline-inset));
  -webkit-mask-composite: xor;
  mask-image:
    url("/media/shared/nav-pentagon.svg"),
    url("/media/shared/nav-pentagon.svg");
  mask-position: center, center;
  mask-repeat: no-repeat, no-repeat;
  mask-size:
    100% 100%,
    calc(100% - var(--site-cursor-outline-inset)) calc(100% - var(--site-cursor-outline-inset));
  mask-composite: exclude;
}

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

.is-using-image-trail .site-cursor {
  opacity: 0;
}

.is-nav-hovered .site-cursor {
  opacity: 1;
}

.is-link-hovered .site-cursor:not(.is-explore) {
  width: 120px;
  height: 120px;
}

.is-link-hovered .site-cursor:not(.is-explore) .site-cursor__shape--solid {
  opacity: 0;
  animation: cursor-pentagon-link-spin 520ms var(--ease-out) both;
}

.is-link-hovered .site-cursor:not(.is-explore) .site-cursor__shape--outline {
  opacity: 1;
  animation: cursor-pentagon-link-spin 520ms var(--ease-out) both;
}

.site-cursor.is-explore {
  border-radius: 0;
  background: transparent;
  color: #fff;
  mix-blend-mode: normal;
}

.site-cursor.is-explore .site-cursor__graphic {
  transform: translate(-50%, -50%) scale(1);
}

.site-cursor.is-explore.is-compact-action .site-cursor__graphic {
  transform: translate(-50%, -50%) scale(0.8);
}

.site-cursor.is-explore.is-case-study-action .site-cursor__graphic {
  transform: translate(-50%, -50%) scale(0.82);
}

.site-cursor.is-explore.is-case-study-action .site-cursor__label {
  width: 46px;
  font-size: 12px;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
}

.site-cursor.is-explore .site-cursor__shape--solid {
  background: #000;
  animation: cursor-pentagon-expand-spin 700ms var(--ease-out) both;
}

.site-cursor__label {
  position: relative;
  z-index: 1;
  opacity: 0;
  line-height: 1;
  letter-spacing: 1px;
  text-rendering: geometricPrecision;
  transform: translateY(3px);
  transition: opacity 120ms var(--ease-out);
  white-space: nowrap;
}

.site-cursor.is-explore .site-cursor__label {
  opacity: 1;
  transition-delay: 60ms;
}

@keyframes cursor-pentagon-idle {
  from {
    transform: rotate(-55deg);
  }

  to {
    transform: rotate(-35deg);
  }
}

@keyframes cursor-pentagon-expand-spin {
  from {
    transform: rotate(-45deg);
  }

  to {
    transform: rotate(-25deg);
  }
}

@keyframes cursor-pentagon-link-spin {
  from {
    transform: rotate(-45deg);
  }

  to {
    transform: rotate(315deg);
  }
}

.home-awards {
  padding-block: 150px 50px;
}

.awards-section--home {
  padding-block: 0;
}

.awards-section--home .section-heading {
  grid-column: 3 / 11;
  margin-bottom: 40px;
}

.awards-list--home {
  display: grid;
  grid-column: 3 / 11;
  grid-template-columns: 1fr;
  gap: 40px;
}

.awards-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  min-height: 110px;
  align-items: end;
  padding-bottom: 20px;
}

.awards-row--short .award:first-child {
  grid-column: 2;
}

.home-clients {
  align-content: start;
  padding-top: 220px;
  row-gap: 80px;
}

.home-clients .home-section-heading {
  grid-column: 3 / 11;
}

.home-clients__logos {
  display: grid;
  grid-column: 3 / 11;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  column-gap: var(--grid-gutter);
  row-gap: 0;
}

.client-logo {
  grid-column: span 2;
  min-width: 0;
  aspect-ratio: 440 / 260;
  overflow: hidden;
  mix-blend-mode: multiply;
}

.client-logo img {
  width: 100%;
  height: 100%;
  filter: contrast(1.5);
  object-fit: contain;
  transform: scale(1.27);
  transform-origin: center;
}

.client-logo--svg img,
.career-chapter__client.career-chapter__client--svg img {
  --client-logo-scale: 0.62;
  --client-logo-edge-soften: 0.2px;

  filter: blur(var(--client-logo-edge-soften));
  transform: scale(var(--client-logo-scale));
}

:is(.client-logo--svg, .career-chapter__client--svg) img[src$="/Client_BBC.svg"] { --client-logo-scale: 0.47; }
:is(.client-logo--svg, .career-chapter__client--svg) img[src$="/Client_BMW.svg"] { --client-logo-scale: 0.5; }
:is(.client-logo--svg, .career-chapter__client--svg) img[src$="/Client_BNY.svg"] { --client-logo-scale: 0.58; }
:is(.client-logo--svg, .career-chapter__client--svg) img[src$="/Client_Camper.svg"] { --client-logo-scale: 0.43; }
:is(.client-logo--svg, .career-chapter__client--svg) img[src$="/Client_Cancer_Research.svg"] { --client-logo-scale: 0.66; }
:is(.client-logo--svg, .career-chapter__client--svg) img[src$="/Client_Converse.svg"] { --client-logo-scale: 1.02; }
:is(.client-logo--svg, .career-chapter__client--svg) img[src$="/Client_Disney.svg"] { --client-logo-scale: 0.48; }
:is(.client-logo--svg, .career-chapter__client--svg) img[src$="/Client_Diageo.svg"] { --client-logo-scale: 0.61; }
:is(.client-logo--svg, .career-chapter__client--svg) img[src$="/Client_Doctor_Who.svg"] { --client-logo-scale: 0.52; }
:is(.client-logo--svg, .career-chapter__client--svg) img[src$="/Client_Green_And_Blacks.svg"] { --client-logo-scale: 0.53; }
:is(.client-logo--svg, .career-chapter__client--svg) img[src$="/Client_INFINITI.svg"] { --client-logo-scale: 0.56; }
:is(.client-logo--svg, .career-chapter__client--svg) img[src$="/Client_HP.svg"] { --client-logo-scale: 0.44; }
:is(.client-logo--svg, .career-chapter__client--svg) img[src$="/Client_Jack_Daniels.svg"] { --client-logo-scale: 0.64; }
:is(.client-logo--svg, .career-chapter__client--svg) img[src$="/Client_Konami.svg"] { --client-logo-scale: 0.56; }
:is(.client-logo--svg, .career-chapter__client--svg) img[src$="/Client_McLaren.svg"] { --client-logo-scale: 0.77; }
:is(.client-logo--svg, .career-chapter__client--svg) img[src$="/Client_Mercedes.svg"] { --client-logo-scale: 0.64; }
:is(.client-logo--svg, .career-chapter__client--svg) img[src$="/Client_Nike.svg"] { --client-logo-scale: 0.5; }
:is(.client-logo--svg, .career-chapter__client--svg) img[src$="/Client_O2.svg"] { --client-logo-scale: 0.48; }
:is(.client-logo--svg, .career-chapter__client--svg) img[src$="/Client_Playstation.svg"] { --client-logo-scale: 0.43; }
:is(.client-logo--svg, .career-chapter__client--svg) img[src$="/Client_Smirnoff.svg"] { --client-logo-scale: 0.92; }
:is(.client-logo--svg, .career-chapter__client--svg) img[src$="/Client_Sonos.svg"] { --client-logo-scale: 0.51; }
:is(.client-logo--svg, .career-chapter__client--svg) img[src$="/Client_Spotify.svg"] { --client-logo-scale: 0.57; }
:is(.client-logo--svg, .career-chapter__client--svg) img[src$="/Client_Tropicana.svg"] { --client-logo-scale: 0.5; }
:is(.client-logo--svg, .career-chapter__client--svg) img[src$="/Client_Vodafone.svg"] { --client-logo-scale: 0.44; }

@media (hover: hover) and (pointer: fine) {
  html,
  body,
  a,
  button,
  input,
  textarea,
  select,
  [role="button"] {
    cursor: none;
  }
}

.case-media-stack--lower {
  padding-bottom: 20px;
}

.quote-component {
  margin-bottom: 20px;
}

.quote-component__text {
  grid-column: 1 / 7;
}

/* Masked entry motion */
.reveal-enabled .reveal-text {
  clip-path: inset(-0.35em -0.1em 0 -0.1em);
}

.reveal-enabled .reveal-text > .reveal-text__inner {
  display: block;
  transform: translateY(110%);
  transition: transform 900ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: transform;
}

.reveal-enabled .reveal-text.is-revealed > .reveal-text__inner {
  transform: translateY(0);
}

.reveal-enabled .reveal-text.reveal-complete {
  clip-path: none;
}

.reveal-enabled .reveal-text.reveal-complete > .reveal-text__inner {
  will-change: auto;
}

.reveal-enabled .reveal-award {
  clip-path: inset(100% 0 0 0);
  transform: translateY(32px);
  transition:
    clip-path 900ms var(--ease-out),
    transform 900ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: clip-path, transform;
}

.reveal-enabled .reveal-award.is-revealed {
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

.reveal-enabled .reveal-award.reveal-complete {
  clip-path: none;
  will-change: auto;
}

.reveal-enabled .reveal-tag {
  clip-path: inset(100% 0 0 0);
  transform: translateY(12px);
  transition:
    clip-path 700ms var(--ease-out),
    transform 700ms var(--ease-out);
  will-change: clip-path, transform;
}

.reveal-enabled .reveal-tag.is-revealed {
  clip-path: inset(0);
  transform: translateY(0);
}

.reveal-enabled .reveal-tag.reveal-complete {
  will-change: auto;
}

.reveal-enabled .reveal-image {
  opacity: 0;
  transition: opacity 1800ms var(--ease-out);
  will-change: opacity;
}

.reveal-enabled .reveal-image.is-revealed {
  opacity: 1;
}

.reveal-enabled .reveal-image.reveal-complete {
  will-change: auto;
}

/* Work index and standard pages */
.listing-header,
.standard-header {
  min-height: 420px;
  align-content: end;
  padding-bottom: 52px;
}

.listing-title,
.standard-title {
  grid-column: 1 / 7;
  font-family: "Crystal Variable", var(--font-display);
  font-size: var(--type-h1);
  font-variation-settings: "wdth" 1.65, "wght" 648, "ital" 0;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: normal;
}

.listing-intro,
.standard-intro {
  grid-column: 1 / 7;
}

.work-list {
  row-gap: 100px;
  padding-bottom: 100px;
}

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

.work-card > a {
  display: block;
  text-decoration: none;
}

.work-card__media {
  aspect-ratio: 16 / 9;
}

.work-card__title {
  display: flex;
  gap: 0.2em;
  margin-top: 20px;
  font-family: "Crystal Variable", var(--font-display);
  font-size: var(--type-h2);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: normal;
}

.reveal-enabled .work-card__title > .reveal-text__inner {
  display: flex;
  align-items: baseline;
  gap: 0.2em;
}

.work-card__client {
  font-variation-settings: "wdth" 1.65, "wght" 648, "ital" 0;
}

.work-card__project {
  font-variation-settings: "wdth" 17, "wght" 100, "ital" 0;
}

.work-other-projects {
  align-items: start;
  padding-bottom: 100px;
  row-gap: 32px;
}

.work-other-projects__title {
  grid-column: 1 / 5;
  grid-row: 1;
  margin: 0;
  font-family: "Crystal Variable", var(--font-display);
  font-size: var(--type-h2);
  font-variation-settings: "wdth" 1.65, "wght" 648, "ital" 0;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: normal;
}

.work-other-projects__card {
  grid-column: 1 / 7;
  grid-row: 2;
}

/* Previous and next case studies */
.case-project-nav {
  padding-top: 100px;
}

.case-project-nav__item {
  grid-column: span 6;
  color: inherit;
  text-decoration: none;
}

.case-project-nav__media {
  aspect-ratio: 16 / 9;
}

.case-project-nav__copy {
  display: grid;
  gap: 3px;
  margin-top: 20px;
}

.case-project-nav__cta {
  font-family: var(--font-body);
  font-size: var(--type-body);
  letter-spacing: 0.08em;
  line-height: var(--type-body-leading);
}

.case-project-nav__title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2em;
  font-family: "Crystal Variable", var(--font-display);
  font-size: var(--type-h2);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: normal;
  text-transform: uppercase;
}

.reveal-enabled .case-project-nav__title > .reveal-text__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2em;
}

.case-project-nav__client {
  font-variation-settings: "wdth" 1.65, "wght" 648, "ital" 0;
}

.case-project-nav__project {
  font-variation-settings: "wdth" 17, "wght" 100, "ital" 0;
}

.case-project-nav__item--next .case-project-nav__copy {
  text-align: right;
}

@media (min-width: 768px) {
  .case-project-nav__item--next .case-project-nav__title,
  .reveal-enabled .case-project-nav__item--next .case-project-nav__title > .reveal-text__inner {
    justify-content: flex-end;
  }
}

@media (max-width: 767.98px) {
  .case-project-nav__item--next .case-project-nav__copy {
    text-align: left;
  }
}

.standard-content {
  min-height: 50vh;
  align-content: start;
  padding-block: 100px;
}

.standard-content__heading {
  grid-column: 1 / 4;
  margin: 0;
  font-family: "Crystal Variable", var(--font-display);
  font-size: var(--type-h2);
  font-variation-settings: "wdth" 1.65, "wght" 648, "ital" 0;
  font-weight: 400;
  line-height: normal;
}

.standard-content__copy {
  grid-column: 5 / 11;
}

/* Contact details and shared footer */
.contact-details {
  min-height: 480px;
  align-content: start;
  padding-block: 100px;
  row-gap: 40px;
}

.contact-details--footer {
  margin-top: 100px;
  padding-top: 0;
  row-gap: 0;
}

.contact-details__rule {
  grid-column: 3 / 11;
  border-top: 2px solid var(--colour-line);
}

.contact-details--footer .contact-details__title {
  margin-top: 100px;
}

.contact-details--footer .contact-details__list {
  margin-top: 40px;
}

.contact-details__title {
  grid-column: 3 / 11;
  margin: 0;
  font-family: "Crystal Variable", var(--font-display);
  font-size: var(--type-h2);
  font-variation-settings: "wdth" 1.65, "wght" 648, "ital" 0;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: normal;
  text-align: center;
}

.contact-details__list {
  display: grid;
  grid-column: 3 / 11;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.is-portfolio-unlocked .contact-details__list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-details__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  font-size: var(--type-body);
  letter-spacing: 0.08em;
  line-height: var(--type-body-leading);
  text-align: center;
}

.contact-details__item > .reveal-text__inner {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}

.contact-details__item--private {
  display: none;
}

.is-portfolio-unlocked .contact-details__item--private.is-loaded {
  display: flex;
}

.contact-details__label {
  display: block;
  margin-bottom: 8px;
  font-weight: 400;
}

.contact-details__item a {
  display: block;
  border-bottom: 2px solid currentColor;
  text-decoration: none;
  text-transform: lowercase;
}

/* About page */
.about-main {
  min-height: 1874px;
}

.about-career-page__main {
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .about-career-page .floating-menu {
    transition: opacity 320ms var(--ease-out);
  }

  html:not(.is-career-intro-separated) .about-career-page .floating-menu {
    opacity: 0;
    pointer-events: none;
  }
}

.career-intro {
  --career-intro-item-size: clamp(145px, 17vw, 255px);
  --career-intro-lockup-size: min(50.665vw, 729.578px);
  --career-intro-lockup-x: 17.48px;
  --career-intro-lockup-y: 40.05px;
  --career-intro-title-y: -7.82px;
  --career-intro-transition: 860ms cubic-bezier(0.16, 1, 0.3, 1);

  position: relative;
  z-index: 1;
  height: 345svh;
  min-height: 990px;
  background: var(--colour-dark-surface);
}

.career-intro__sticky {
  position: sticky;
  z-index: 1;
  top: 0;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: var(--colour-dark-surface);
  isolation: isolate;
}

/* The dots arrive with the separated coloured pentagons, rather than
   competing with the initial title lockup. */
.career-intro__sticky::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-image: radial-gradient(circle, rgb(255 255 255 / 15%) 0 1px, transparent 1.05px);
  background-position: center;
  background-size: 30px 30px;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 720ms var(--ease-out);
}

.career-intro.is-separated .career-intro__sticky::before {
  opacity: 1;
}

.career-intro__showreel {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: var(--colour-dark-surface);
  opacity: var(--career-intro-showreel-opacity, 1);
  pointer-events: none;
  will-change: opacity;
}

.career-intro__showreel::after {
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 12%);
  content: "";
}

.career-intro__showreel-poster,
.career-intro__showreel video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.career-intro__showreel video {
  z-index: 1;
}

.career-intro__sequence {
  --career-intro-gap: clamp(22px, 2.75vw, 48px);

  position: absolute;
  z-index: 3;
  inset: 0;
  gap: var(--career-intro-gap);
  mix-blend-mode: multiply;
  padding-inline: var(--page-margin);
}

.career-intro__satellite-layer,
.career-intro__satellite-group,
.career-intro__connectors {
  position: absolute;
  inset: 0;
}

.career-intro__satellite-layer {
  z-index: 4;
  overflow: hidden;
  pointer-events: none;
}

.career-intro__connectors {
  z-index: 0;
  display: block;
}

.career-intro__connector {
  position: absolute;
  display: block;
  height: 2px;
  clip-path: inset(0 100% 0 0);
  background: repeating-linear-gradient(
    90deg,
    var(--career-intro-colour) 0 2px,
    transparent 2px 6px
  );
  opacity: 0;
  transform: translateY(-50%) rotate(var(--satellite-line-angle, 0deg));
  transform-origin: 0 50%;
  transition:
    clip-path 220ms var(--ease-out),
    opacity 180ms var(--ease-out);
  will-change: clip-path, opacity;
}

.career-intro__satellite-group.is-active .career-intro__connector {
  clip-path: inset(0);
  opacity: 0.92;
  transition-delay: calc(var(--satellite-index) * 18ms);
}

.career-intro__satellite-group.is-preparing .career-intro__connector,
.career-intro__satellite-group.is-preparing .career-intro__satellite {
  transition: none;
}

.career-intro__satellite {
  position: absolute;
  z-index: 1;
  display: inline-flex;
  min-height: 30px;
  padding: 7px 13px 5px;
  align-items: center;
  border-radius: 999px;
  background: var(--career-intro-colour);
  color: var(--career-intro-tag-text, #000);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  line-height: 18px;
  opacity: 0;
  text-align: center;
  transform:
    translate(-50%, -50%)
    translate3d(var(--satellite-from-x, 0), var(--satellite-from-y, 0), 0)
    scale(0.72);
  transform-origin: center;
  transition:
    opacity 220ms var(--ease-out) calc(var(--satellite-index) * 8ms),
    transform 240ms var(--ease-out) calc(var(--satellite-index) * 8ms);
  white-space: nowrap;
  will-change: opacity, transform;
}

.career-intro__satellite-group.is-active .career-intro__satellite {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition:
    opacity 420ms cubic-bezier(0.16, 1, 0.3, 1) calc(60ms + var(--satellite-index) * 18ms),
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1) calc(60ms + var(--satellite-index) * 18ms);
}

.career-intro.is-separated .career-intro__sequence {
  mix-blend-mode: normal;
}

.career-intro__item {
  position: absolute;
  z-index: var(--career-intro-stack);
  top: calc(50% + var(--career-intro-lockup-y));
  left: calc(50% + var(--career-intro-lockup-x));
  width: var(--career-intro-lockup-size);
  aspect-ratio: 1;
  mix-blend-mode: multiply;
  transform:
    translate(
      calc(-50% + var(--career-intro-final-x)),
      calc(-50% + var(--career-intro-final-y))
    )
    scale(1);
  transform-origin: center center;
  will-change: transform;
}

.career-intro--ready .career-intro__item {
  transition: transform var(--career-intro-transition);
}

.career-intro.is-separated .career-intro__item {
  transform:
    translate(
      calc(-50% + var(--career-intro-separated-x) + var(--career-intro-pointer-x, 0px) + var(--career-intro-drift-x, 0px)),
      calc(-50% + var(--career-intro-separated-y) + var(--career-intro-pointer-y, 0px) + var(--career-intro-drift-y, 0px))
    )
    scale(var(--career-intro-separated-scale));
}

.career-intro.is-separated.is-separated-settled .career-intro__item {
  transition: transform 380ms var(--ease-out);
}

.career-intro__shape,
.career-intro__black-shape {
  position: absolute;
  top: 0.86%;
  right: 3.09%;
  bottom: 9.55%;
  left: 3.09%;
  display: block;
  transform-origin: center;
}

.career-intro__shape {
  transform-origin: 50% 55.267%;
  transform: rotate(calc(var(--career-intro-final-rotation) * 1deg)) scale(0.808);
  filter: none;
  transition:
    filter 260ms var(--ease-out),
    transform var(--career-intro-transition);
  will-change: filter, transform;
}

.career-intro__shape::before,
.career-intro__shape::after {
  --career-intro-pulse-inset: calc(3px / var(--career-intro-separated-scale, 1));

  position: absolute;
  z-index: 3;
  inset: 0;
  background: var(--career-intro-colour);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: scale(1);
  transform-origin: 50% 55.267%;
  -webkit-mask-image:
    url("/media/shared/nav-pentagon.svg"),
    url("/media/shared/nav-pentagon.svg");
  -webkit-mask-position: center, center;
  -webkit-mask-repeat: no-repeat, no-repeat;
  -webkit-mask-size:
    100% 100%,
    calc(100% - var(--career-intro-pulse-inset)) calc(100% - var(--career-intro-pulse-inset));
  -webkit-mask-composite: xor;
  mask-image:
    url("/media/shared/nav-pentagon.svg"),
    url("/media/shared/nav-pentagon.svg");
  mask-position: center, center;
  mask-repeat: no-repeat, no-repeat;
  mask-size:
    100% 100%,
    calc(100% - var(--career-intro-pulse-inset)) calc(100% - var(--career-intro-pulse-inset));
  mask-composite: exclude;
}

.career-intro__shape::after {
  background: var(--career-intro-next-colour);
}

.career-intro__item.is-satellite-reacting .career-intro__shape {
  animation: career-intro-satellite-bump 960ms both;
}

.career-intro__item.is-satellite-reacting .career-intro__shape::before {
  animation: career-intro-satellite-pulse 1050ms both;
}

.career-intro__item.is-satellite-reacting .career-intro__shape::after {
  animation: career-intro-satellite-pulse 1050ms 110ms both;
}

@keyframes career-intro-satellite-bump {
  0% {
    scale: 1;
    animation-timing-function: cubic-bezier(0.12, 1, 0.22, 1);
  }
  18% {
    scale: 1.085;
    animation-timing-function: cubic-bezier(0.2, 0.72, 0.2, 1);
  }
  68% {
    scale: 0.992;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }
  100% { scale: 1; }
}

@keyframes career-intro-satellite-pulse {
  0% {
    opacity: 0;
    transform: scale(0.99);
    animation-timing-function: cubic-bezier(0.12, 1, 0.22, 1);
  }
  10% {
    opacity: 0.5;
    transform: scale(1.015);
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }
  48% {
    opacity: 0.28;
    transform: scale(1.12);
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

.career-intro.is-pentagon-moving .career-intro__item:nth-child(odd) .career-intro__shape {
  filter:
    drop-shadow(6px -2px 1.4px color-mix(in srgb, var(--career-intro-colour) 52%, transparent))
    drop-shadow(-8px 3px 2.4px color-mix(in srgb, var(--career-intro-next-colour) 42%, transparent));
}

.career-intro.is-pentagon-moving .career-intro__item:nth-child(even) .career-intro__shape {
  filter:
    drop-shadow(-6px 2px 1.4px color-mix(in srgb, var(--career-intro-colour) 52%, transparent))
    drop-shadow(8px -3px 2.4px color-mix(in srgb, var(--career-intro-next-colour) 42%, transparent));
}

.career-intro__shape-fill,
.career-intro__shape-outline {
  position: absolute;
  inset: 0;
  display: block;
  background: linear-gradient(
    to top,
    var(--career-intro-colour) 0%,
    color-mix(in srgb, var(--career-intro-next-colour) 12%, var(--career-intro-colour)) 100%
  );
  will-change: opacity;
}

.career-intro__shape-fill {
  opacity: 1;
  -webkit-mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
}

.career-intro__shape-outline {
  --career-intro-outline-inset: calc(4px / var(--career-intro-separated-scale, 1));

  opacity: 0;
  -webkit-mask-image:
    url("/media/shared/nav-pentagon.svg"),
    url("/media/shared/nav-pentagon.svg");
  -webkit-mask-position: center, center;
  -webkit-mask-repeat: no-repeat, no-repeat;
  -webkit-mask-size:
    100% 100%,
    calc(100% - var(--career-intro-outline-inset)) calc(100% - var(--career-intro-outline-inset));
  -webkit-mask-composite: xor;
  mask-image:
    url("/media/shared/nav-pentagon.svg"),
    url("/media/shared/nav-pentagon.svg");
  mask-position: center, center;
  mask-repeat: no-repeat, no-repeat;
  mask-size:
    100% 100%,
    calc(100% - var(--career-intro-outline-inset)) calc(100% - var(--career-intro-outline-inset));
  mask-composite: exclude;
}

.career-intro--ready .career-intro__shape {
  transition:
    filter 260ms var(--ease-out),
    transform var(--career-intro-transition);
}

.career-intro--ready .career-intro__shape-fill,
.career-intro--ready .career-intro__shape-outline {
  transition: opacity 620ms var(--ease-out) 100ms;
}

.career-intro.is-separated .career-intro__shape {
  transform: rotate(calc((var(--career-intro-initial-rotation) + (360 * var(--career-intro-spin-direction)) + (var(--career-intro-scroll-rotation, 0) * var(--career-intro-spin-direction))) * 1deg)) scale(0.808);
}

.career-intro.is-separated .career-intro__shape-fill {
  opacity: 0;
}

.career-intro.is-separated .career-intro__shape-outline {
  opacity: 1;
}

.career-intro.is-separated.is-separated-settled .career-intro__shape {
  transition: filter 260ms var(--ease-out);
}

.career-intro__label {
  position: absolute;
  z-index: 2;
  top: calc(47% + 6px);
  left: 50%;
  color: #fff;
  font-family: "Crystal Variable", var(--font-display);
  font-size: 61px;
  font-variation-settings: "wdth" 2.8, "wght" 330, "ital" 0;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  transform-origin: center;
  white-space: nowrap;
  will-change: opacity;
}

.career-intro--ready .career-intro__label {
  transition:
    color 420ms var(--ease-out) 100ms,
    opacity 420ms var(--ease-out) 180ms,
    transform var(--career-intro-transition);
}

.career-intro.is-separated .career-intro__label {
  color: var(--career-intro-colour);
  opacity: 1;
  transform: translate(-50%, -50%) scale(var(--career-intro-label-scale));
}

.career-intro__lockup {
  position: absolute;
  z-index: 20;
  top: calc(50% + var(--career-intro-lockup-y));
  left: calc(50% + var(--career-intro-lockup-x));
  width: var(--career-intro-lockup-size);
  aspect-ratio: 1;
  opacity: 1;
  pointer-events: none;
  transform: translate(-50%, -50%);
  will-change: opacity;
}

.career-intro--ready .career-intro__lockup {
  transition: opacity 460ms var(--ease-out);
}

.career-intro.is-separated .career-intro__lockup {
  opacity: 0;
}

.career-intro__sr-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.career-intro__black-shape {
  z-index: 1;
  background: var(--colour-dark-surface);
  -webkit-mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  transform: rotate(25deg) scale(0.808);
}

.career-intro__title {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: calc(50% - var(--career-intro-lockup-x));
  display: flex;
  width: 52.11%;
  margin: 0;
  align-items: stretch;
  flex-direction: column;
  color: var(--colour-paper);
  font-family: "Crystal Variable", var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: normal;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%) translateY(var(--career-intro-title-y));
  transition: transform var(--career-intro-transition);
}

.career-intro.is-separated .career-intro__title {
  transform: translate(-50%, -50%) translateY(calc(var(--career-intro-title-y) - 70px));
}

.career-intro__name,
.career-intro__role {
  display: block;
}

.career-intro__name {
  position: relative;
  border-bottom: 2px solid transparent;
  font-size: 81.916px;
  font-variation-settings: "wdth" 1.65, "wght" 658, "ital" 0;
  letter-spacing: 0.02em;
  line-height: 1.08;
  white-space: nowrap;
}

.career-intro__name::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: translateY(-3px);
}

.career-intro__rule {
  display: none;
}

.career-intro__role {
  width: 100%;
  height: 88px;
  margin-top: -10px;
  contain: inline-size;
  font-size: 84px;
  font-variation-settings: "wdth" 1.65, "wght" 648, "ital" 0;
  letter-spacing: 0.02em;
  line-height: 1.05;
  white-space: nowrap;
}

.career-intro--measuring .career-intro__item,
.career-intro--measuring .career-intro__shape,
.career-intro--measuring .career-intro__label,
.career-intro--measuring .career-intro__lockup {
  transition: none !important;
}

.career-story {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  background: var(--colour-paper);
}

.career-story {
  --career-story-gap: clamp(160px, 17vw, 260px);

  display: grid;
  row-gap: var(--career-story-gap);
}

.career-chapter--join-previous-dark {
  margin-top: calc(0px - var(--career-story-gap));
}

.career-chapter--join-previous-dark::before {
  top: 0;
}

.career-chapter {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 40px var(--grid-gutter);
  box-sizing: border-box;
  width: min(100%, 1600px);
  margin-inline: auto;
  padding-inline: var(--page-margin);
}

.career-chapter--adaptive {
  row-gap: 0;
}

.career-chapter--dark {
  color: #fff;
}

.career-chapter--dark::before {
  position: absolute;
  z-index: -1;
  top: calc(var(--career-story-gap) / -2);
  bottom: calc(var(--career-story-gap) / -2);
  left: 50%;
  width: 100vw;
  background: var(--colour-dark-surface);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.career-chapter--dark .career-chapter__client {
  mix-blend-mode: normal;
}

.career-chapter--dark .career-chapter__client img {
  filter: grayscale(1) invert(1) contrast(1.5) blur(var(--client-logo-edge-soften, 0.2px));
  mix-blend-mode: screen;
}

.career-chapter--dark .career-chapter__award {
  filter: grayscale(1) contrast(1.5) brightness(0) invert(1);
}

.career-chapter--dark .career-chapter__award[alt="D&AD Pencil"] {
  filter: none;
}

.career-chapter__header {
  position: relative;
  z-index: 3;
}

.career-chapter--adaptive .career-chapter__header {
  grid-column: 1 / 8;
  grid-row: 1;
  align-self: start;
}

.career-chapter__eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 18px;
  text-transform: uppercase;
}

.career-chapter__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--type-h2);
  font-variation-settings: "wdth" 1.65, "wght" 648, "ital" 0;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.98;
  text-transform: uppercase;
}

.career-chapter__title-lead {
  font-variation-settings: "wdth" 1.65, "wght" 648, "ital" 0;
}

.career-chapter__title-tail {
  font-variation-settings: "wdth" 17, "wght" 100, "ital" 0;
}

.career-chapter__copy {
  margin: 24px 0 0;
  font-size: var(--type-body);
  letter-spacing: 0.08em;
  line-height: var(--type-body-leading);
}

.career-chapter__awards {
  --career-award-gap: 12px;
  --career-award-slot: 85px;

  display: flex;
  align-items: flex-end;
  gap: var(--career-award-gap);
  margin-top: 32px;
}

.career-chapter--adaptive .career-chapter__awards {
  grid-column: 9 / 13;
  grid-row: 1;
  align-self: start;
  width: 100%;
  flex-wrap: nowrap;
  justify-self: end;
  justify-content: flex-end;
  row-gap: 20px;
  margin-top: 0;
}

.career-chapter__award {
  --award-logo-scale: 1;

  flex: 0 1 var(--career-award-slot);
  width: min(
    var(--career-award-slot),
    calc((100% - ((var(--career-award-count) - 1) * var(--career-award-gap))) / var(--career-award-count))
  );
  max-width: var(--career-award-slot);
  height: 62px;
  object-fit: contain;
  transform: scale(var(--award-logo-scale));
  transform-origin: center bottom;
}

.career-chapter__award[src$="/award_cannes_lions.svg"] { --award-logo-scale: 0.95; }
.career-chapter__award[src$="/award_dandad.svg"] { --award-logo-scale: 0.89; }
.career-chapter__award[src$="/award_one_show.svg"] { --award-logo-scale: 0.92; }
.career-chapter__award[src$="/award_bima.svg"] { --award-logo-scale: 0.91; }
.career-chapter__award[src$="/award_drum.svg"] { --award-logo-scale: 0.98; }
.career-chapter__award[src$="/award_shorty.svg"] { --award-logo-scale: 0.93; }
.career-chapter__award[src$="/award_w3.svg"] { --award-logo-scale: 0.93; }
.career-chapter__award[src$="/award_phnx.svg"] { --award-logo-scale: 0.93; }
.career-chapter__award[src$="/award_creativepool.svg"] { --award-logo-scale: 0.89; }
.career-chapter__award[src$="/award_lovies.svg"] { --award-logo-scale: 0.89; }

.career-chapter__award[alt="D&AD Pencil"] {
  height: 62px;
}

.career-chapter__award--text {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(10px, 0.9vw, 14px);
  font-variation-settings: "wdth" 17, "wght" 225, "ital" 0;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.92;
  text-align: center;
  text-transform: uppercase;
}

.career-chapter--compact-awards .career-chapter__awards {
  grid-column: 8 / 13;
  flex-wrap: nowrap;
}

.career-chapter__clients {
  display: grid;
  grid-column: var(--career-client-grid-start) / var(--career-client-grid-end);
  grid-row: 3;
  grid-template-columns: repeat(var(--career-client-count), minmax(0, 1fr));
  align-items: end;
  gap: var(--grid-gutter);
}

.career-chapter--adaptive .career-chapter__clients {
  margin-top: 100px;
}

.career-chapter__client {
  width: 100%;
  aspect-ratio: 440 / 260;
  mix-blend-mode: multiply;
  overflow: hidden;
}

.career-chapter__client img {
  display: block;
  width: 100%;
  height: 100%;
  filter: contrast(1.5);
  mix-blend-mode: multiply;
  object-fit: contain;
  transform: scale(1.27);
  transform-origin: center;
}

.career-chapter__client--text {
  display: grid;
  box-sizing: border-box;
  padding-inline: 8px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 34px);
  font-variation-settings: "wdth" 17, "wght" 100, "ital" 0;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.95;
  place-items: center;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 767.98px) {
  .career-chapter__awards,
  .career-chapter--adaptive .career-chapter__awards,
  .career-chapter--compact-awards .career-chapter__awards {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px var(--grid-gutter);
    justify-content: stretch;
  }

  .career-chapter__award {
    width: 100%;
    max-width: var(--career-award-slot);
    justify-self: center;
  }

  .career-chapter__clients {
    grid-column: 1 / 5;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.career-chapter__media {
  display: grid;
  grid-column: 1 / 13;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto;
  gap: 20px var(--grid-gutter);
  min-height: 620px;
}

.career-chapter--adaptive .career-chapter__media {
  grid-row: 2;
  min-height: 0;
  margin-top: 80px;
  column-gap: var(--grid-gutter);
  row-gap: clamp(80px, 9vw, 140px);
}

.career-chapter__asset {
  --career-parallax-y: 0px;
  align-self: start;
  margin: 0;
  background: #e8e5de;
  transform: translate3d(0, var(--career-parallax-y), 0);
  will-change: transform;
}

.career-chapter--adaptive .career-chapter__asset {
  grid-column: var(--career-column-start) / span var(--career-column-span);
  grid-row: var(--career-media-row);
  align-self: center;
  justify-self: center;
}

.career-chapter--adaptive .career-chapter__asset--video {
  width: 100%;
}

.career-chapter__asset img,
.career-chapter__asset video {
  object-position: center;
}

/* Career-story media keeps the proportions of the source material. The
   layout controls width and position only, so nothing is cropped to a preset
   editorial frame. */
.career-chapter__media .career-chapter__asset:not(.media-placeholder) {
  aspect-ratio: var(--career-media-ratio, auto) !important;
}

.career-chapter__media .career-chapter__asset:not(.media-placeholder):not(.career-chapter__asset--video) {
  width: min(100%, var(--career-source-width, 100%));
  justify-self: start;
}

.career-chapter--adaptive .career-chapter__asset:not(.media-placeholder):not(.career-chapter__asset--video) {
  justify-self: center;
}

.career-chapter__asset:not(.media-placeholder) > img {
  height: auto;
  object-fit: contain;
}

.career-chapter__asset[data-asset-number="336"] > img {
  transform: scale(1.012);
  transform-origin: center;
}

.career-chapter__video {
  position: absolute;
  inset: 0;
}

.career-chapter--feature-offset .career-chapter__header {
  grid-column: 1 / 5;
  grid-row: 1;
  align-self: end;
  margin-bottom: 70px;
}

.career-chapter--feature-offset .career-chapter__media {
  grid-row: 1 / 3;
}

.career-chapter--feature-offset .career-chapter__asset--1 {
  grid-column: 5 / 13;
  aspect-ratio: 16 / 10;
}

.career-chapter--feature-offset .career-chapter__asset--2 {
  grid-column: 1 / 5;
  grid-row: 2;
  aspect-ratio: 4 / 3;
  margin-top: 70px;
}

.career-chapter--feature-offset .career-chapter__asset--3 {
  grid-column: 6 / 9;
  grid-row: 2;
  aspect-ratio: 4 / 5;
  margin-top: 30px;
}

.career-chapter--feature-offset .career-chapter__asset--4 {
  grid-column: 9 / 13;
  grid-row: 2;
  aspect-ratio: 4 / 3;
  margin-top: 100px;
}

.career-chapter--feature-offset .career-chapter__asset--5 {
  grid-column: 4 / 8;
  grid-row: 3;
  margin-top: 80px;
}

.career-chapter--video-feature .career-chapter__header {
  grid-column: 1 / 5;
  grid-row: 1;
  align-self: start;
}

.career-chapter--video-feature .career-chapter__media {
  grid-row: 1 / 3;
}

.career-chapter--video-feature .career-chapter__asset--1 {
  grid-column: 5 / 13;
  aspect-ratio: 16 / 9;
}

.career-chapter--video-feature .career-chapter__asset--2 {
  grid-column: 2 / 7;
  grid-row: 2;
  aspect-ratio: 16 / 10;
  margin-top: 100px;
}

.career-chapter--video-feature .career-chapter__asset--3 {
  grid-column: 8 / 13;
  grid-row: 2;
  aspect-ratio: 16 / 10;
  margin-top: 20px;
}

.career-chapter--video-feature .career-chapter__asset--4 {
  grid-column: 2 / 7;
  grid-row: 3;
  margin-top: 80px;
}

.career-chapter--video-feature .career-chapter__asset--5 {
  grid-column: 8 / 13;
  grid-row: 3;
  margin-top: 80px;
}

.career-chapter--video-feature .career-chapter__asset--6 {
  grid-column: 3 / 11;
  grid-row: 4;
  margin-top: 80px;
}

.career-chapter--split-stack .career-chapter__header {
  grid-column: 8 / 13;
  grid-row: 1;
  align-self: end;
  margin-bottom: 30px;
}

.career-chapter--split-stack .career-chapter__media {
  grid-row: 1 / 3;
  min-height: 760px;
}

.career-chapter--split-stack .career-chapter__asset--1 {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
  aspect-ratio: 4 / 5;
}

.career-chapter--split-stack .career-chapter__asset--2 {
  grid-column: 8 / 13;
  grid-row: 2;
  aspect-ratio: 4 / 3;
  margin-top: 40px;
}

.career-chapter--split-stack .career-chapter__asset--3 {
  grid-column: 8 / 11;
  grid-row: 3;
  aspect-ratio: 3 / 4;
  margin-top: 50px;
}

.career-chapter--split-stack .career-chapter__asset--4 {
  grid-column: 11 / 13;
  grid-row: 3;
  aspect-ratio: 3 / 4;
  margin-top: 110px;
}

.career-chapter--split-stack .career-chapter__asset--5 {
  grid-column: 2 / 7;
  grid-row: 4;
  aspect-ratio: 16 / 11;
  margin-top: 80px;
}

.career-chapter--split-stack .career-chapter__asset--6 {
  grid-column: 7 / 12;
  grid-row: 4;
  aspect-ratio: 16 / 11;
  margin-top: 20px;
}

.career-chapter--editorial-collage .career-chapter__header {
  grid-column: 2 / 7;
}

.career-chapter--editorial-collage .career-chapter__media {
  grid-row: 2;
  margin-top: 35px;
}

.career-chapter--editorial-collage .career-chapter__asset--1 {
  grid-column: 1 / 8;
  aspect-ratio: 16 / 9;
}

.career-chapter--editorial-collage .career-chapter__asset--2 {
  grid-column: 9 / 13;
  aspect-ratio: 4 / 3;
  margin-top: 90px;
}

.career-chapter--editorial-collage .career-chapter__asset--3 {
  grid-column: 4 / 10;
  grid-row: 2;
  aspect-ratio: 16 / 10;
  margin-top: 70px;
}

.career-chapter--paired-detail .career-chapter__header {
  grid-column: 1 / 6;
}

.career-chapter--paired-detail .career-chapter__media {
  grid-row: 2;
  min-height: 680px;
  margin-top: 30px;
}

.career-chapter--paired-detail .career-chapter__asset--1 {
  grid-column: 1 / 7;
  aspect-ratio: 4 / 3;
}

.career-chapter--paired-detail .career-chapter__asset--2 {
  grid-column: 7 / 13;
  aspect-ratio: 4 / 3;
  margin-top: 90px;
}

.career-chapter--paired-detail .career-chapter__asset--3 {
  grid-column: 4 / 10;
  grid-row: 2;
  aspect-ratio: 16 / 9;
  margin-top: 70px;
}

.career-chapter--paired-detail .career-chapter__asset--4 {
  grid-column: 9 / 13;
  grid-row: 2;
  aspect-ratio: 4 / 3;
  margin-top: 150px;
}

.is-grid-visible .career-chapter {
  outline: 2px solid #ff2d75;
  outline-offset: -2px;
}

.is-grid-visible .career-intro {
  outline: 2px solid #ff2d75;
  outline-offset: -2px;
}

.is-grid-visible .career-intro::before,
.is-grid-visible .career-intro::after {
  position: absolute;
  z-index: 10001;
  padding: 4px 7px 3px;
  color: #fff;
  background: #ff2d75;
  content: "";
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 14px;
  pointer-events: none;
  text-transform: uppercase;
}

.is-grid-visible .career-intro::before {
  top: 0;
  left: 0;
  content: "START  " attr(data-component-label);
}

.is-grid-visible .career-intro::after {
  right: 0;
  bottom: 0;
  content: "END  " attr(data-component-label);
}

.is-grid-visible .career-chapter::before,
.is-grid-visible .career-chapter::after {
  position: absolute;
  z-index: 10001;
  padding: 4px 7px 3px;
  color: #fff;
  background: #ff2d75;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 14px;
  pointer-events: none;
  text-transform: uppercase;
}

.is-grid-visible .career-chapter::before {
  top: 0;
  left: 0;
  content: "START  " attr(data-component-label);
}

.is-grid-visible .career-chapter::after {
  right: 0;
  bottom: 0;
  content: "END  " attr(data-component-label);
}

.is-grid-visible .career-chapter__asset[data-asset-number]:not([data-asset-number=""])::after {
  position: absolute;
  z-index: 10001;
  top: 8px;
  left: 8px;
  min-width: 28px;
  padding: 4px 6px 3px;
  color: #ff2d75;
  background: rgba(255, 253, 248, 0.92);
  border-radius: 2px;
  content: attr(data-asset-number);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 16px;
  pointer-events: none;
  text-align: center;
}

.about-layout {
  align-content: start;
  padding-top: 363px;
  row-gap: 20px;
}

.about-page__title {
  position: relative;
  z-index: 2;
  grid-column: 1 / 13;
  margin: 0;
  font-family: "Crystal Variable", var(--font-display);
  font-size: var(--type-h1);
  font-variation-settings: "wdth" 1.65, "wght" 648, "ital" 0;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: normal;
  text-align: center;
}

.about-page__copy {
  position: relative;
  z-index: 2;
  grid-column: 4 / 10;
  font-size: var(--type-body);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: var(--type-body-leading);
}

.about-page__copy p {
  margin: 0 0 26px;
}

.about-page__copy p:last-child {
  margin-bottom: 0;
}

.about-page__cv {
  display: none;
}

.is-portfolio-unlocked .about-page__cv {
  display: block;
}

.about-page__cv-link {
  display: inline-block;
  border-bottom: 2px solid currentColor;
  text-decoration: none;
}

.about-cursor-image {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 247.52px;
  height: 247.52px;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-300px, -300px, 0) translate(-50%, -50%);
  transition: opacity 180ms var(--ease-out);
  will-change: transform;
}

.about-cursor-image__shape {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 75%;
  aspect-ratio: 515.908 / 492.613;
  -webkit-mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  mask: url("/media/shared/nav-pentagon.svg") center / 100% 100% no-repeat;
  overflow: hidden;
  transform: translate(-50%, -50%) rotate(25deg);
}

.about-cursor-image__portrait {
  position: absolute;
  top: calc(50% + 8px);
  left: 50%;
  width: 99.4%;
  height: 99.4%;
  max-width: none;
  object-fit: cover;
  transform: translate(-50%, -50%) rotate(-25deg) scale(1.08);
}

.about-cursor-image.is-visible {
  opacity: 1;
}

.about-page .site-cursor {
  opacity: 0;
}

.is-nav-hovered .about-page .about-cursor-image {
  opacity: 0;
}

.is-nav-hovered .about-page .site-cursor.is-visible {
  opacity: 1;
}

.is-about-contact-hovered .about-page .about-cursor-image {
  opacity: 0;
}

.is-about-contact-hovered .about-page .site-cursor.is-visible {
  opacity: 1;
}

.is-link-hovered .about-page .about-cursor-image {
  opacity: 0;
}

.is-link-hovered .about-page .site-cursor.is-visible {
  opacity: 1;
}

.py-lg-6 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

@media (max-width: 991.98px) {
  :root {
    --page-margin: 15px;
    --section-space: 100px;
  }

  .career-intro__label {
    font-size: 54px;
  }

  .floating-menu {
    top: 15px;
  }

  .floating-menu__inner {
    margin-inline: auto;
  }

  .case-header {
    height: 419px;
  }

  .results-list,
  .results-note {
    grid-column: 3 / 11;
  }

  .about-page__copy {
    grid-column: 3 / 11;
  }

  .py-lg-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

@media (min-width: 768px) and (max-width: 1199.98px) {
  .home-projects {
    align-items: start;
  }
}

@media (max-width: 1023.98px) {
  .home-image-cloud,
  .case-image-cloud {
    display: none;
  }

  .case-header__process-toggle,
  .process-diagram,
  .process-sequence-section {
    display: none;
  }
}

@media (max-width: 767.98px) {
  :root {
    --page-margin: 15px;
    --grid-gutter: 12px;
    --section-space: 80px;
    --type-h1: 44px;
    --type-h2: 32px;
    --type-body: 14px;
  }

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

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

  .grid-overlay__column:nth-child(n + 5) {
    display: none;
  }

  .floating-menu:not(.floating-menu--home) {
    display: none;
  }

  .floating-menu--home {
    position: fixed;
    top: 50svh;
    opacity: 1;
    transition: opacity 220ms var(--ease-out);
  }

  .floating-menu--home .floating-menu__inner {
    width: max-content;
    margin-inline: auto;
    transform: translateY(-50%);
  }

  html.is-career-intro-separated .home-page .floating-menu--home .floating-menu__inner {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(-50% - 70px));
  }

  html.is-career-intro-separated .home-page .floating-menu__pentagon--blend {
    opacity: 0 !important;
    transition: opacity 620ms var(--ease-out);
  }

  .floating-menu__name {
    font-size: 1.05rem;
    line-height: 1.08;
  }

  .floating-menu__name::after {
    bottom: -4px;
  }

  .floating-menu__links-mask {
    margin-top: 5px;
  }

  .floating-menu__links {
    display: flex;
    gap: 0;
    width: 100%;
    height: auto;
    font-size: 1rem;
    white-space: nowrap;
  }

  .floating-menu__links a {
    position: relative;
    font-size: inherit;
    line-height: 1.15;
  }

  .floating-menu--home .floating-menu__name {
    font-size: clamp(32px, 9.5vw, 39px);
  }

  .floating-menu__role {
    height: clamp(35px, 10.25vw, 42px);
    margin-top: -5px;
    font-size: clamp(32px, 9.5vw, 39px);
  }

  .floating-menu__links-mask--home {
    top: 80px;
    height: 28px;
  }

  .floating-menu--home:not(.is-compact) .floating-menu__links-mask--home {
    top: calc(1.05rem * 1.08 + 2px);
    width: 42%;
  }

  .home-hero {
    height: auto;
    overflow: clip;
  }

  .home-page--showreel .home-hero {
    height: auto;
  }

  .home-page--showreel .home-hero__showreel {
    position: relative;
    height: 100svh;
  }

  .home-intro-loader {
    --intro-item-size: min(11.5svh, 27vw);
  }

  .home-intro-loader__sequence {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: clamp(14px, 2.5svh, 24px);
    padding-block: max(24px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-bottom));
    padding-inline: 0;
  }

  .home-intro-loader__label {
    font-size: clamp(15px, 5.4vw, 25px);
  }

  .home-hero__trail {
    display: none;
  }

  .home-mobile-stage {
    position: relative;
    display: block;
    width: 100%;
    height: 100svh;
    min-height: 560px;
    overflow: hidden;
    background: var(--colour-paper);
  }

  .home-mobile-slideshow,
  .home-mobile-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .home-mobile-slide {
    opacity: 0;
    object-fit: cover;
    transition: opacity 420ms var(--ease-out);
    will-change: opacity;
  }

  .home-mobile-slide.is-active {
    opacity: 1;
  }

  .home-hero__intro {
    height: auto;
    padding-top: 80px;
    padding-bottom: 0;
  }

  .home-page--showreel .home-hero__intro {
    padding-block: 0 var(--home-intro-release-space, 160px);
  }

  .home-hero__panel {
    grid-column: 1 / 5;
    width: 100%;
  }

  .home-hero__copy,
  .home-hero__unlock {
    width: 100%;
  }

  .mobile-site-nav {
    position: fixed;
    z-index: 1400;
    inset: 0;
    display: block;
    color: #fff;
    mix-blend-mode: difference;
    opacity: 1;
    pointer-events: none;
    transition: opacity 220ms var(--ease-out);
  }

  .home-page .mobile-site-nav--home {
    opacity: 1;
    visibility: visible;
  }

  .mobile-site-nav__initials {
    position: absolute;
    z-index: 2;
    top: 6px;
    left: 6px;
    display: block;
    width: 50px;
    height: 50px;
    pointer-events: auto;
  }

  .mobile-site-nav__initials img {
    display: block;
    width: 100%;
    height: 100%;
    filter: invert(1);
  }

  .mobile-site-nav.is-open .mobile-site-nav__initials img {
    filter: none;
  }

  .mobile-site-nav__toggle {
    position: absolute;
    z-index: 2;
    top: 11px;
    right: 10px;
    display: grid;
    width: 40px;
    height: 40px;
    padding: 11px 5px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    pointer-events: auto;
    place-content: center;
  }

  .mobile-site-nav__toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background: currentColor;
    transition: transform 260ms var(--ease-out);
  }

  .mobile-site-nav__toggle span + span {
    margin-top: 7px;
  }

  .mobile-site-nav.is-open .mobile-site-nav__toggle span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .mobile-site-nav.is-open .mobile-site-nav__toggle span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-site-nav__panel {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: grid;
    background: var(--colour-paper);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    pointer-events: none;
    transition:
      clip-path 420ms var(--ease-out),
      opacity 220ms var(--ease-out);
    place-items: center;
  }

  .mobile-site-nav.is-open .mobile-site-nav__panel {
    clip-path: inset(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-site-nav.is-open {
    color: var(--colour-ink);
    mix-blend-mode: normal;
  }

  .mobile-site-nav__links {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
  }

  .mobile-site-nav__links a {
    color: inherit;
    font-family: "Crystal Variable", var(--font-display);
    font-size: clamp(56px, 16vw, 76px);
    font-variation-settings: "wdth" 1.65, "wght" 648, "ital" 0;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 0.95;
    text-decoration: none;
    text-transform: uppercase;
  }

  .mobile-site-nav__links a.is-active {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
  }

  .is-mobile-menu-open,
  .is-mobile-menu-open body {
    overflow: hidden;
  }

  .home-projects {
    height: auto;
    row-gap: 0;
    padding-bottom: 0;
  }

  .home-projects > .home-section-heading {
    position: static;
    grid-column: 1 / 5;
    transform: none;
    white-space: normal;
  }

  .home-section-heading {
    font-size: var(--type-h2);
  }

  h1.home-section-heading {
    font-size: var(--type-h1);
  }

  .home-flow-item {
    position: static;
    grid-column: 1 / 5;
    margin-top: 80px;
  }

  .home-projects > .home-flow-item:first-of-type {
    margin-top: 40px;
  }

  .home-testimonial {
    height: var(--testimonial-flow-height, 330px);
  }

  .home-testimonial__stage {
    top: var(--testimonial-stage-top, 20px);
    width: 82%;
  }

  .home-testimonial__content {
    width: min(210px, calc(100% - 60px));
  }

  .home-testimonial__mark {
    font-size: 18px;
    letter-spacing: 1.4px;
    line-height: 17px;
  }

  .home-testimonial__quote {
    margin-top: 9px !important;
    font-size: var(--type-body);
    letter-spacing: 0.08em;
    line-height: var(--type-body-leading);
  }

  .home-testimonial__attribution {
    margin-top: 10px;
    font-size: 9px;
    letter-spacing: 0.65px;
    line-height: 14px;
  }

  .home-awards {
    padding-block: 150px 50px;
  }

  .awards-section--home .section-heading,
  .awards-list--home {
    grid-column: 1 / 5;
  }

  .awards-section--home .section-heading {
    margin-bottom: 40px;
  }

  .awards-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 40px;
  }

  .awards-row--short .award:first-child {
    grid-column: auto;
  }

  .award[data-award="d-and-ad"] {
    --award-max-height: 82px;
  }

  .home-clients {
    padding-top: 160px;
    row-gap: 60px;
  }

  .home-clients .home-section-heading {
    grid-column: 1 / 5;
  }

  .home-clients__logos {
    grid-column: 1 / 5;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .case-header {
    height: auto;
    min-height: 0;
    padding-top: 180px;
    padding-inline: var(--page-margin);
    padding-bottom: 40px;
    row-gap: 0;
  }

  .case-header__title,
  .case-header__description,
  .case-header__tags {
    grid-column: 1 / 5;
    grid-row: auto;
    width: 100%;
  }

  .case-header .type-h1 {
    display: block;
    font-size: var(--type-h1);
    line-height: 1.04;
  }

  .reveal-enabled .case-header .type-h1 > .reveal-text__inner {
    display: block;
  }

  .case-header__client,
  .case-header__project {
    display: inline;
    white-space: normal;
  }

  .case-header__client {
    margin-right: 0.2em;
  }

  .case-header--long .case-header__client,
  .case-header--long .case-header__project {
    display: block;
    width: 100%;
    margin-right: 0;
  }

  .case-header--long .case-header__project {
    overflow-wrap: normal;
  }

  .case-header__description {
    position: static;
    width: 100%;
    margin-top: 16px !important;
  }

  .case-header__tags {
    position: static;
    width: 100%;
    margin-top: 24px;
    justify-self: start;
    justify-content: flex-start;
    text-align: left;
  }

  .project-tags--thumbnail {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
  }

  .media-frame--wide {
    grid-column: 1 / 5;
  }

  .two-image-media__item {
    grid-column: 1 / 5;
  }

  .results-list,
  .results-note {
    grid-column: 1 / 5;
  }

  .results-section[data-result-count="2"] .results-list,
  .results-section[data-result-count="2"] .results-note {
    grid-column: 1 / 5;
    width: 100%;
  }

  .results-section .section-heading,
  .awards-section .section-heading,
  .case-section-heading .section-heading {
    grid-column: 1 / 5;
  }

  .case-section-heading--feature .section-heading {
    grid-column: 1 / 5;
  }

  .section-heading {
    font-size: var(--type-h2);
  }

  .results-list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }

  .results-section[data-result-count="2"] .results-list {
    grid-template-columns: 1fr;
  }

  .results-list > .result {
    display: flex;
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: auto;
    align-items: center;
    flex-direction: column;
    padding: 28px 0;
  }

  .results-section[data-result-count="2"] .result:nth-child(1),
  .results-section[data-result-count="2"] .result:nth-child(2) {
    grid-column: 1 / -1;
  }

  .result__value {
    font-size: clamp(5rem, 27vw, 7rem);
  }

  .awards-list,
  .awards-rule {
    grid-column: 1 / 5;
  }

  .awards-section[data-award-count="1"] .awards-list,
  .awards-section[data-award-count="1"] .awards-rule {
    grid-column: 2 / 4;
  }

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

  .awards-list[data-award-count="1"] .award {
    grid-column: 1 / -1;
  }

  .quote-component__text {
    grid-column: 1 / 5;
  }

  .listing-header {
    min-height: 0;
    align-content: start;
    padding-top: 200px;
    padding-bottom: 52px;
  }

  .standard-header {
    min-height: 610px;
  }

  .listing-title,
  .standard-title,
  .listing-intro,
  .standard-intro,
  .work-card,
  .case-project-nav__item,
  .standard-content__heading,
  .standard-content__copy {
    grid-column: 1 / 5;
  }

  .work-card__title {
    font-size: var(--type-h2);
  }

  .work-other-projects {
    row-gap: 28px;
  }

  .work-other-projects__title,
  .work-other-projects__card {
    grid-column: 1 / 5;
  }

  .case-project-nav {
    row-gap: 40px;
  }

  .project-lock-state {
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
  }

  .project-awards {
    right: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    gap: 7px;
  }

  .media-frame .project-awards__icon {
    max-width: 38px;
    max-height: 18px;
  }

  .project-lock-state__icon {
    font-size: 18px;
  }

  .unlock-dialog__inner {
    padding: 58px 20px 28px;
  }

  .unlock-dialog {
    width: min(420px, calc(100% - 60px));
  }

  .unlock-dialog__title {
    font-size: var(--type-h2);
  }

  .portfolio-unlock-form__fields {
    max-width: none;
  }

  .portfolio-unlock-form__submit {
    min-width: 98px;
    padding-inline: 12px;
  }

  .standard-content {
    row-gap: 40px;
  }

  .contact-details {
    min-height: 520px;
    padding-block: 100px;
    row-gap: 40px;
  }

  .contact-details__title,
  .contact-details__list {
    grid-column: 1 / 5;
  }

  .contact-details__rule {
    grid-column: 1 / 5;
    width: calc((100% - 40px) / 2);
    justify-self: center;
  }

  .contact-details--footer {
    padding-top: 0;
    row-gap: 0;
  }

  .contact-details__title {
    font-size: var(--type-h2);
  }

  .contact-details__list {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .is-portfolio-unlocked .contact-details__list {
    grid-template-columns: 1fr;
  }

  .about-main {
    min-height: 0;
  }

  .about-layout {
    padding-top: 200px;
    padding-bottom: 100px;
    row-gap: 40px;
  }

  .about-cursor-image {
    position: static;
    grid-column: 1 / 5;
    grid-row: 1;
    width: 160px;
    height: 160px;
    margin: 0 auto;
    opacity: 1;
    transform: none;
  }

  .about-page__title,
  .about-page__copy {
    grid-column: 1 / 5;
  }

  .about-page__title {
    grid-row: 2;
    font-size: var(--type-h1);
  }

  .about-page__copy {
    grid-row: 3;
    font-size: var(--type-body);
    line-height: var(--type-body-leading);
  }

  .about-page__copy p {
    margin-bottom: 23px;
  }

  .about-career-page__main {
    padding-bottom: 0;
  }

  .career-intro {
    --career-intro-item-size: min(20svh, 35vw);
    --career-intro-lockup-size: min(84.615vw, 330px);
    --career-intro-lockup-x: 7.91px;
    --career-intro-lockup-y: 3.58px;
    --career-intro-title-y: -3.58px;

    height: 360svh;
    min-height: 980px;
  }

  .career-intro__sticky {
    min-height: 540px;
  }

  .career-intro__sequence {
    --career-intro-gap: clamp(10px, 1.7svh, 16px);

    gap: var(--career-intro-gap);
    padding-block: max(86px, env(safe-area-inset-top)) max(34px, env(safe-area-inset-bottom));
    padding-inline: 0;
  }

  .career-intro__satellite-layer {
    display: none;
  }

  .career-intro__label {
    font-size: clamp(27px, 7.9vw, 35px);
  }

  .career-intro__title {
    width: 52.11%;
    transform: translate(-50%, -50%) translateY(var(--career-intro-title-y));
  }

  .career-intro__name {
    font-size: clamp(32px, 9.5vw, 39px);
  }

  .career-intro__role {
    height: clamp(35px, 10.25vw, 42px);
    margin-top: -5px;
    font-size: clamp(32px, 9.5vw, 39px);
  }

  .career-story {
    padding-top: 70px;
  }

  .career-story {
    --career-story-gap: 130px;
  }

  .career-chapter {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 38px;
  }

  .career-chapter--adaptive {
    row-gap: 38px;
  }

  .career-chapter__header,
  .career-chapter--feature-offset .career-chapter__header,
  .career-chapter--video-feature .career-chapter__header,
  .career-chapter--split-stack .career-chapter__header,
  .career-chapter--editorial-collage .career-chapter__header,
  .career-chapter--paired-detail .career-chapter__header {
    grid-column: 1 / 5;
    grid-row: auto;
    margin: 0;
  }

  .career-chapter--adaptive .career-chapter__header,
  .career-chapter--adaptive .career-chapter__awards {
    grid-column: 1 / 5;
    grid-row: auto;
    justify-self: start;
    margin: 0;
  }

  .career-chapter__media,
  .career-chapter--feature-offset .career-chapter__media,
  .career-chapter--video-feature .career-chapter__media,
  .career-chapter--split-stack .career-chapter__media,
  .career-chapter--editorial-collage .career-chapter__media,
  .career-chapter--paired-detail .career-chapter__media {
    display: grid;
    grid-column: 1 / 5;
    grid-row: auto;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: 0;
    margin-top: 0;
  }

  .career-chapter--adaptive .career-chapter__media {
    grid-row: auto;
    margin-top: 0;
    row-gap: 38px;
  }

  .career-chapter--adaptive .career-chapter__clients {
    grid-row: auto;
    margin-top: 0;
  }

  .career-chapter__media .career-chapter__asset {
    grid-column: 1 / 5;
    grid-row: auto;
    aspect-ratio: 4 / 3;
    margin-top: 0;
    transform: none;
  }

  .career-chapter__media .career-chapter__asset:nth-child(3n + 2) {
    grid-column: 1 / 4;
  }

  .career-chapter__media .career-chapter__asset:nth-child(3n) {
    grid-column: 2 / 5;
  }

}

@media (prefers-reduced-motion: reduce) {
  .managed-video__spinner {
    animation: none;
  }

  .managed-video__poster,
  .managed-video__media {
    transition-duration: 1ms;
  }

  .site-cursor__shape {
    animation: none;
    transform: rotate(-45deg);
  }

  .is-link-hovered .site-cursor:not(.is-explore) .site-cursor__shape {
    animation: none;
  }

  .site-cursor.is-explore .site-cursor__shape--solid {
    animation: none;
    transform: rotate(-25deg);
  }

  .image-cloud__info-cursor.is-visible.is-entering .image-cloud__info-cursor-shape {
    animation: none;
    transform: rotate(-25deg) scale(1);
  }

  .floating-menu--home .floating-menu__inner,
  .floating-menu--home .floating-menu__name,
  .floating-menu__role,
  .floating-menu__links-mask--home {
    transition-duration: 1ms;
  }
}

@media (min-width: 1600px) {
  :root {
    --page-margin: 25px;
  }

  .floating-menu {
    top: 25px;
  }
}

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

  .process-tree__node,
  .process-tree__children::before,
  .process-tree__children > .process-tree__branch::before,
  .process-tree__children > .process-tree__branch::after {
    transition-delay: 0s !important;
  }

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

  .reveal-enabled .reveal-text,
  .reveal-enabled .reveal-award,
  .reveal-enabled .reveal-tag {
    clip-path: none;
    transform: none;
  }

  .reveal-enabled .reveal-text > .reveal-text__inner {
    transform: none;
  }

  .reveal-enabled .reveal-image {
    opacity: 1;
  }

  .dept-evidence__simple-title,
  .dept-evidence-card,
  .dept-evidence-diagram,
  .dept-evidence__points {
    opacity: 1;
    animation: none !important;
    transform: none;
  }

  .dept-highlight {
    background-size: var(--dept-highlight-primary-size), var(--dept-highlight-secondary-size);
  }
}
