@font-face {
  font-family: "GT Pressura";
  src: url("assets/fonts/gt-pressura-light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GT Pressura";
  src: url("assets/fonts/gt-pressura-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GT Pressura";
  src: url("assets/fonts/gt-pressura-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #000;
  --white: #fff;
  --muted: #8d8d8d;
  --accent: #01ff00;
  --pink: #ff7bab;
  --orange: #ff921e;
  --green: #7ac843;
  --blue: #3fa8f4;
  --red: #ff1d25;
  --desktop-gutter: 80px;
  --header-height: 112px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "GT Pressura", Arial, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

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

button {
  color: inherit;
  font: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  width: 100%;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--desktop-gutter);
  background: var(--black);
}

.brand-button {
  width: 230px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.brand-logo {
  width: auto;
  height: 45px;
  object-fit: contain;
}

.brand-logo--media {
  display: none;
}

body[data-current-view="company"] .brand-logo--studio {
  display: none;
}

body[data-current-view="company"] .brand-logo--media {
  display: block;
}

.desktop-nav {
  display: flex;
  align-self: stretch;
  align-items: center;
  gap: 48px;
}

.nav-link {
  position: relative;
  align-self: stretch;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 32px;
  left: 0;
  height: 7px;
  border-radius: 99px;
  background: var(--white);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.contact-button {
  display: none;
}

.site-view {
  display: none;
}

.site-view.is-visible {
  display: block;
}

.site-view--work {
  min-height: calc(100vh - var(--header-height));
  padding: 75px var(--desktop-gutter) 76px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, 394px);
  justify-content: center;
  gap: 12px;
}

.work-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 1.775 / 1;
  overflow: hidden;
  border: 0;
  border-radius: 6px;
  background: #222;
}

button.work-card {
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.work-card img,
.work-card picture {
  width: 100%;
  height: 100%;
}

.work-card img {
  object-fit: cover;
  transition: transform 300ms ease;
}

.work-card img.work-card-image--trim-top {
  position: relative;
  top: -4px;
  height: calc(100% + 4px);
}

.work-card img.work-card-image--trim-top-strong {
  top: -2%;
  height: 102%;
}

.work-card:hover img,
.work-card:focus-visible img {
  transform: scale(1.025);
}

.work-card > span:not(.play-mark) {
  position: absolute;
  right: 16px;
  bottom: 13px;
  left: 16px;
  z-index: 2;
  overflow: hidden;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  text-overflow: ellipsis;
  text-shadow: 0 1px 4px rgb(0 0 0 / 80%);
  white-space: nowrap;
}

.play-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 90px;
  height: 90px;
  translate: -50% -50%;
  place-items: center;
  border: 3px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 180ms ease;
}

.play-mark::after {
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 24px solid var(--accent);
  content: "";
  translate: 3px 0;
}

.work-card--video:hover .play-mark,
.work-card--video:focus-visible .play-mark {
  opacity: 1;
}

.colour-card--pink {
  background: var(--pink);
}

.colour-card--orange {
  background: var(--orange);
}

.colour-card--green {
  background: var(--green);
}

.colour-card--blue {
  background: var(--blue);
}

.colour-card--red {
  background: var(--red);
}

.site-view--company {
  padding-top: 148px;
}

.company-intro {
  display: grid;
  grid-template-columns: 110px minmax(0, 880px);
  gap: 60px;
  padding: 0 var(--desktop-gutter);
}

.intro-copy {
  grid-column: 2;
  font-size: 28px;
  line-height: 1.22;
}

.intro-copy p {
  position: relative;
  margin: 0 0 54px;
}

.intro-brand-icon {
  position: absolute;
  top: -69px;
  left: 0;
  display: block;
  width: 36px;
  height: 34px;
  overflow: hidden;
}

.intro-brand-icon img {
  width: auto;
  max-width: none;
  height: 36px;
}

.intro-brand-icon--studio img {
  height: 32px;
}

.intro-brand-icon--media {
  top: -70px;
  width: 44px;
  height: 36px;
}

.intro-lead {
  font-weight: 700;
}

.intro-copy .intro-lead {
  margin-bottom: 128px;
}

.services-section {
  margin-top: 106px;
  padding: 0 var(--desktop-gutter);
}

.services-section h2,
.archives h2 {
  margin: 0 0 28px;
  color: var(--accent);
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
}

.mobile-break {
  display: none;
}

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

.service-card {
  min-width: 0;
}

.service-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.service-heading {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  padding: 17px 0 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.service-heading > span:first-child {
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
}

.service-toggle {
  display: none;
  color: var(--accent);
  font-size: 26px;
  line-height: 1;
}

.service-card p {
  max-width: 96%;
  margin: 18px 0 0;
  font-size: 18px;
  line-height: 1.24;
}

.services-section--media {
  margin-top: 144px;
}

.archives {
  margin-top: 132px;
}

.archives h2 {
  padding: 0 var(--desktop-gutter);
  color: var(--white);
}

.archive-grid {
  display: grid;
  height: 1050px;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 6px;
}

.archive-block {
  display: block;
}

.block-a {
  grid-area: 1 / 1 / 4 / 3;
}

.block-b {
  grid-area: 1 / 3 / 3 / 6;
}

.block-c {
  grid-area: 1 / 6 / 3 / 9;
}

.block-d {
  grid-area: 1 / 9 / 4 / 11;
}

.block-e {
  grid-area: 1 / 11 / 3 / 13;
}

.block-f {
  grid-area: 3 / 3 / 5 / 5;
}

.block-g {
  grid-area: 3 / 5 / 5 / 7;
}

.block-h {
  grid-area: 3 / 7 / 5 / 10;
}

.block-i {
  grid-area: 4 / 1 / 6 / 4;
}

.block-j {
  grid-area: 5 / 4 / 7 / 8;
}

.block-k {
  grid-area: 4 / 10 / 6 / 13;
}

.block-l {
  grid-area: 5 / 8 / 7 / 10;
}

.site-footer {
  display: grid;
  min-height: 72px;
  grid-template-columns: repeat(7, auto);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 var(--desktop-gutter);
  background: var(--black);
  color: #b5b5b5;
  font-size: 14px;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:nth-child(4) {
  text-decoration: underline;
}

.site-footer strong {
  color: #c8c8c8;
  font-weight: 700;
}

body[data-current-view="work"] {
  overflow: hidden;
}

body[data-current-view="work"] .site-footer {
  position: fixed;
  z-index: 30;
  right: 0;
  bottom: 0;
  left: 0;
}

.mobile-nav {
  display: none;
}

.overlay {
  max-width: none;
  max-height: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
}

.overlay::backdrop {
  background: rgb(0 0 0 / 84%);
}

.dialog-close {
  position: fixed;
  z-index: 3;
  top: 22px;
  right: 28px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 45px;
  font-weight: 300;
  line-height: 1;
}

.overlay--contact {
  width: min(480px, 100vw);
  height: min(740px, 100dvh);
  background: var(--black);
}

.overlay--contact[open] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 33px;
  text-align: center;
}

.contact-dialog-logo {
  width: 225px;
  height: auto;
  margin-bottom: 12px;
}

.contact-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 22px;
  line-height: 1.2;
}

.contact-group a,
.contact-address {
  color: var(--white);
  text-decoration: none;
}

.contact-group strong {
  font-weight: 700;
}

.contact-address {
  margin-top: 10px;
  font-size: 18px;
  text-decoration: underline;
}

.overlay--project {
  width: min(1100px, calc(100vw - 64px));
  height: min(1160px, calc(100dvh - 128px));
  overflow: visible;
  border: 1px solid #333;
  border-radius: 5px;
  background: var(--black);
}

.project-panel {
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}

.project-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  padding: 72px 78px 76px;
}

.project-copy h2 {
  margin: 0;
  font-size: 60px;
  line-height: 0.98;
}

.project-copy p {
  margin: 4px 0 0;
  font-size: 20px;
  line-height: 1.45;
}

.project-panel > img {
  width: 100%;
}

.project-panel > img:first-of-type {
  aspect-ratio: 1.48 / 1;
  object-fit: cover;
}

.project-spacer {
  height: 85px;
}

.project-back {
  display: none;
}

.dialog-mobile-header {
  display: none;
}

.overlay--video {
  width: min(1100px, calc(100vw - 64px));
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 4px solid #08ece9;
  background: #08ece9;
}

.video-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 102px;
  height: 102px;
  translate: -50% -50%;
  place-items: center;
  border: 3px solid var(--accent);
  border-radius: 50%;
  background: rgb(0 0 0 / 86%);
  cursor: pointer;
}

.video-play span {
  margin-left: 7px;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 31px solid var(--accent);
}

.rotate-hint {
  display: none;
}

.notice {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  max-width: 320px;
  padding: 13px 18px;
  border-radius: 4px;
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

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

@media (min-width: 1600px) {
  .company-intro {
    grid-template-columns: 110px minmax(0, 1050px);
  }

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

  .services-section {
    margin-top: 106px;
  }

  .archive-grid {
    height: 1050px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 68px;
  }

  body {
    padding-bottom: 70px;
  }

  body[data-current-view="work"] {
    overflow-x: hidden;
    overflow-y: auto;
  }

  body.has-dialog {
    overflow: hidden;
  }

  .site-header {
    position: sticky;
    top: 0;
    height: var(--header-height);
    padding: 0 8px;
  }

  .brand-button {
    width: auto;
    margin-left: 19px;
    transform: translateY(6px);
  }

  .brand-logo,
  .brand-logo--media {
    width: auto;
    height: 30px;
  }

  body[data-current-view="company"] .brand-logo--media {
    height: 31px;
  }

  .desktop-nav {
    display: none;
  }

  .contact-button {
    display: block;
    width: 47px;
    height: 47px;
    padding: 7px 19px 7px 7px;
    border: 0;
    background: transparent;
    cursor: pointer;
    transform: translateY(6px);
  }

  .contact-button img {
    width: 21px;
    height: auto;
    object-fit: contain;
  }

  .site-view--work {
    min-height: 100vh;
    padding: 12px 10px 0;
  }

  .work-grid {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 4px;
  }

  .work-card {
    flex: 0 0 auto;
    width: 100%;
    height: 192px;
    aspect-ratio: auto;
    border-radius: 5px;
  }

  .work-card > span:not(.play-mark) {
    right: 11px;
    bottom: 12px;
    left: 11px;
    font-size: 16px;
  }

  .work-card--video .play-mark {
    width: 74px;
    height: 74px;
    opacity: 1;
  }

  .colour-card {
    height: 220px;
  }

  .site-view--company {
    padding-top: 96px;
  }

  .company-intro {
    display: block;
    padding: 0 25px;
  }

  .intro-copy {
    width: 292px;
    font-size: 20px;
    line-height: 1.4;
  }

  .intro-copy p {
    width: 292px;
    margin: 0 0 42px;
    padding-left: 17px;
  }

  .intro-brand-icon {
    top: 6px;
    left: 0;
    width: 15px;
    height: 15px;
  }

  .intro-brand-icon img {
    height: 14px;
  }

  .intro-brand-icon--studio img,
  .intro-brand-icon--media img {
    height: 14px;
  }

  .intro-brand-icon--media {
    width: 16px;
  }

  .intro-copy .intro-lead {
    margin-bottom: 112px;
  }

  .services-section {
    margin-top: 87px;
    padding: 0;
  }

  .services-section h2,
  .archives h2 {
    margin: 0 25px 30px;
    font-size: 60px;
    line-height: 0.91;
  }

  .mobile-break {
    display: inline;
  }

  .services-grid {
    display: block;
  }

  .service-card {
    margin-bottom: 25px;
  }

  .service-card img {
    width: 100%;
    height: 200px;
    aspect-ratio: auto;
  }

  .service-heading {
    min-height: 61px;
    padding: 14px 25px 8px;
    cursor: pointer;
  }

  .service-heading > span:first-child {
    max-width: 285px;
    font-size: 36px;
    line-height: 0.96;
  }

  .service-toggle {
    display: block;
  }

  .service-card p {
    display: none;
    max-width: none;
    margin: 0;
    padding: 0 25px 7px;
    font-size: 18px;
    line-height: 1.28;
  }

  .service-card.is-open p {
    display: block;
  }

  .services-section--media {
    margin-top: 68px;
  }

  .archives {
    margin-top: 79px;
  }

  .archives h2 {
    color: var(--white);
  }

  .archive-grid {
    height: 660px;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(8, 1fr);
    gap: 4px;
  }

  .block-a {
    grid-area: 1 / 1 / 4 / 3;
  }

  .block-b {
    grid-area: 1 / 3 / 3 / 5;
  }

  .block-c {
    grid-area: 1 / 5 / 3 / 7;
  }

  .block-d {
    grid-area: 4 / 1 / 7 / 3;
  }

  .block-e {
    grid-area: 3 / 3 / 5 / 5;
  }

  .block-f {
    grid-area: 3 / 5 / 5 / 7;
  }

  .block-g {
    grid-area: 5 / 3 / 7 / 5;
  }

  .block-h {
    grid-area: 5 / 5 / 7 / 7;
  }

  .block-i {
    grid-area: 7 / 1 / 9 / 3;
  }

  .block-j {
    grid-area: 7 / 3 / 9 / 5;
  }

  .block-k {
    grid-area: 7 / 5 / 9 / 7;
  }

  .block-l {
    display: none;
  }

  .site-footer {
    display: none;
  }

  .mobile-nav {
    position: fixed;
    z-index: 40;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    height: 70px;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    padding: 12px 8px 0;
    background: var(--black);
  }

  .mobile-nav-link {
    height: 35px;
    min-width: 97px;
    padding: 0 15px;
    justify-self: center;
    border: 0;
    border-radius: 99px;
    background: transparent;
    color: #777;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
  }

  .mobile-nav-link.is-active {
    background: var(--white);
    color: var(--black);
  }

  .overlay--contact {
    position: fixed;
    inset: 0 0 auto;
    width: 100vw;
    height: calc(100dvh - 70px);
    margin: 0;
  }

  .overlay--contact::backdrop,
  .overlay--project::backdrop,
  .overlay--video::backdrop {
    background: transparent;
  }

  .overlay--contact[open] {
    justify-content: flex-start;
    padding-top: 234px;
  }

  .overlay--contact .dialog-close {
    top: 74px;
    right: 3px;
    width: 30px;
    height: 30px;
    font-size: 30px;
  }

  .overlay--contact .contact-dialog-logo {
    margin-bottom: 7px;
  }

  .dialog-close {
    top: 14px;
    right: 15px;
  }

  .contact-dialog-logo {
    width: 210px;
  }

  .overlay--project {
    position: fixed;
    inset: 0 0 auto;
    width: 100vw;
    height: calc(100dvh - 70px);
    margin: 0;
    border: 0;
    border-radius: 0;
  }

  .project-panel {
    padding-top: 133px;
  }

  .project-copy {
    display: block;
    padding: 39px 34px 44px;
  }

  .project-copy h2 {
    font-size: 36px;
    line-height: 0.96;
  }

  .project-copy p {
    margin-top: 31px;
    font-size: 18px;
    line-height: 1.35;
  }

  .project-panel > img:first-of-type {
    height: 270px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .project-spacer {
    height: 28px;
  }

  .project-back {
    position: fixed;
    z-index: 4;
    top: 112px;
    left: 27px;
    display: grid;
    width: 36px;
    height: 36px;
    padding: 0;
    place-items: center;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: var(--black);
    cursor: pointer;
    font-size: 25px;
    line-height: 1;
  }

  .overlay--video {
    position: fixed;
    inset: 0 0 auto;
    width: 100vw;
    height: calc(100dvh - 70px);
    margin: 0;
    background: var(--black);
  }

  .dialog-mobile-header {
    position: fixed;
    z-index: 5;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    height: 68px;
    align-items: flex-start;
    justify-content: space-between;
    padding: 27px 27px 0;
    background: var(--black);
  }

  .dialog-mobile-header img:first-child {
    width: auto;
    height: 27px;
  }

  .dialog-mobile-header img:last-child {
    width: 21px;
    height: 25px;
    object-fit: contain;
  }

  .overlay--video > .dialog-close {
    display: none;
  }

  .video-frame {
    position: absolute;
    top: 178px;
    width: 100%;
    border: 0;
  }

  .video-play {
    top: calc(100% + 105px);
    width: 78px;
    height: 78px;
  }

  .rotate-hint {
    position: absolute;
    top: 458px;
    left: 50%;
    display: block;
    width: 92px;
    height: 105px;
    translate: -50% 0;
    color: var(--accent);
  }

  .rotate-phone {
    position: absolute;
    top: 31px;
    left: 34px;
    width: 25px;
    height: 44px;
    border: 4px solid var(--accent);
    border-radius: 6px;
    rotate: -25deg;
  }

  .rotate-phone::after {
    position: absolute;
    top: 15px;
    left: 6px;
    width: 6px;
    height: 9px;
    border: 2px solid var(--accent);
    content: "";
  }

  .rotate-arrow {
    position: absolute;
    font-size: 40px;
    line-height: 1;
  }

  .rotate-arrow--top {
    top: 0;
    left: 0;
    rotate: -65deg;
  }

  .rotate-arrow--bottom {
    right: 0;
    bottom: 0;
    rotate: 115deg;
  }

  .notice {
    right: 12px;
    bottom: 82px;
    left: 12px;
    max-width: none;
    text-align: center;
  }
}

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

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