:root {
  --paper: #f4f1ec;
  --ink: #050505;
  --muted: #3c3a36;
  --acid: #00e021;
  --line: #171717;
  --max: none;
  --gutter: clamp(28px, 3.9vw, 56px);
  --font-main: "polymath", "Arial Rounded MT Bold", Arial, Helvetica, sans-serif;
  --font-display: "polymath-display", "Arial Rounded MT Bold", Arial, Helvetica, sans-serif;
  --font-text: "polymath-text", "Arial Rounded MT Bold", Arial, Helvetica, sans-serif;
  --weight-regular: 400;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-heavy: 900;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: var(--weight-regular);
  font-style: normal;
  line-height: 1.1;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px var(--gutter) 0;
  background: var(--paper);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 2px solid var(--line);
  padding-bottom: 22px;
}

.brand {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
  font-size: clamp(16px, 1.45vw, 20px);
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.brand:hover,
.brand:focus-visible,
.nav a:hover,
.nav a:focus-visible {
  color: var(--acid);
}

.brand strong {
  font-weight: var(--weight-bold);
}

.brand span {
  margin-left: 4px;
  text-transform: none;
  font-weight: var(--weight-regular);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 4vw, 56px);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: var(--weight-bold);
}

.nav a {
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 160ms ease, border-color 160ms ease;
}

.nav a:hover,
.nav a.is-active {
  border-color: var(--acid);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 0 auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-toggle span + span {
  margin-top: 5px;
}

.menu-toggle:hover,
.menu-toggle:focus-visible,
.site-header.is-menu-open .menu-toggle {
  border-color: var(--line);
  background: var(--acid);
  box-shadow: 0 4px 0 var(--line);
}

.site-header.is-menu-open .menu-toggle {
  transform: translateY(-2px);
}

.site-header.is-menu-open .menu-toggle span:first-child {
  transform: translateY(8px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}

.page-shell {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  background: var(--paper);
}

.section-line {
  border-bottom: 2px solid var(--line);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(540px, 1.12fr);
  gap: 0;
  min-height: clamp(390px, 32.4vw, 470px);
  overflow: hidden;
  padding: clamp(42px, 3.7vw, 55px) var(--gutter) 0;
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: clamp(34px, 3vw, 48px);
}

.hero h1,
.page-intro h1,
.contact-page h1,
.project-detail h1 {
  position: relative;
  z-index: 4;
  margin: 0;
  font-family: var(--font-main);
  max-width: min(76vw, 1120px);
  font-size: clamp(131px, 13.55vw, 225px);
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: var(--weight-heavy);
  font-style: normal;
}

.hero p {
  max-width: 470px;
  margin: 22px 0 38px;
  font-family: var(--font-text);
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: var(--weight-regular);
}

.button-row,
.contact-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  border: 0;
  font: inherit;
  font-weight: var(--weight-bold);
  text-transform: none;
  cursor: pointer;
  font-size: clamp(15px, 1.25vw, 18px);
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.arrow-icon {
  display: inline-block;
  width: 1.05em;
  height: 1.05em;
  object-fit: contain;
  vertical-align: -0.12em;
}

.button-primary {
  border-radius: 999px;
  background: var(--acid);
  color: var(--ink);
  padding: 11px 28px;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--ink);
  color: var(--acid);
  transform: translateY(-2px);
  box-shadow: 0 7px 0 var(--acid);
}

.button-primary:hover .arrow-icon,
.button-primary:focus-visible .arrow-icon {
  filter: invert(1);
}

.button-link,
.text-link,
.section-link,
.footer-link {
  background: transparent;
  color: var(--ink);
  font-weight: var(--weight-bold);
  transition: color 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.button-link:hover,
.button-link:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.section-link:hover,
.section-link:focus-visible {
  color: var(--acid);
  transform: translateY(-2px);
}

.button-link:hover .arrow-icon,
.button-link:focus-visible .arrow-icon,
.text-link:hover .arrow-icon,
.text-link:focus-visible .arrow-icon {
  filter: invert(54%) sepia(99%) saturate(1889%) hue-rotate(97deg) brightness(101%) contrast(107%);
}

.hero-media {
  position: relative;
  z-index: 1;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  min-height: clamp(390px, 32.4vw, 470px);
}

.hero-media img {
  width: min(126%, 940px);
  height: auto;
  max-height: 112%;
  margin-left: auto;
  margin-right: calc(var(--gutter) * -1);
  object-fit: contain;
  object-position: bottom right;
}

.section-heading {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 44px var(--gutter) 24px;
}

.section-heading-left {
  grid-template-columns: auto 1fr;
  gap: 26px;
  padding: 0 0 20px;
}

.section-heading h2,
.section-heading h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 3.45vw, 45px);
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: var(--weight-bold);
  font-style: normal;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: var(--weight-bold);
}

.section-link span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--acid);
  padding: 6px;
  transition: transform 160ms ease, background-color 160ms ease;
}

.section-link:hover span,
.section-link:focus-visible span {
  background: var(--ink);
  transform: rotate(8deg) scale(1.08);
}

.section-link:hover .arrow-icon,
.section-link:focus-visible .arrow-icon {
  filter: invert(54%) sepia(99%) saturate(1889%) hue-rotate(97deg) brightness(101%) contrast(107%);
}

.section-link .arrow-icon {
  width: 100%;
  height: 100%;
}

.green-mark,
.green-slash {
  height: 22px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.green-mark-work {
  background-image: url("../images/electric-mark-1.svg");
}

.green-mark-about {
  background-image: url("../images/electric-mark-1.svg");
}

.green-mark-wide {
  max-width: 420px;
}

.green-mark-about-home {
  width: min(31vw, 360px);
  max-width: none;
  background-position: left center;
}

.project-grid {
  display: grid;
  gap: 28px;
  padding: 0 var(--gutter) 38px;
}

.project-grid-featured {
  grid-template-columns: repeat(6, 1fr);
}

.project-grid-all {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 0;
}

.project-card {
  position: relative;
  display: block;
  min-height: 260px;
  overflow: hidden;
  background: #000;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.project-card-large {
  grid-column: span 3;
  aspect-ratio: 1.78;
}

.project-card-small {
  grid-column: span 2;
  aspect-ratio: 1.42;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.project-card:hover img {
  transform: scale(1.03);
}

.project-card:hover,
.project-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 9px 0 var(--acid);
}

.project-meta {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  color: #fff;
  transform: translateY(42px);
  transition: transform 180ms ease;
}

.project-meta strong,
.project-meta small {
  display: block;
}

.project-meta strong {
  font-size: clamp(17px, 1.55vw, 21px);
  font-family: var(--font-main);
  font-weight: var(--weight-bold);
  line-height: 1;
}

.project-meta small {
  font-size: clamp(13px, 1.05vw, 15px);
  font-family: var(--font-text);
  font-weight: var(--weight-regular);
  line-height: 1.08;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.project-summary {
  margin-top: 6px;
}

.project-categories {
  margin-top: 6px;
}

.project-card:hover .project-meta small,
.project-card:focus-visible .project-meta small {
  opacity: 1;
  transform: translateY(0);
}

.project-card:hover .project-meta,
.project-card:focus-visible .project-meta {
  transform: translateY(0);
}

.about-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(345px, 0.72fr);
  gap: clamp(46px, 4.2vw, 64px);
  padding: 48px var(--gutter) 44px;
  scroll-margin-top: 92px;
}

.about-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.rich-text {
  font-family: var(--font-text);
  font-size: clamp(17px, 1.35vw, 21px);
  font-weight: var(--weight-regular);
}

.rich-text p {
  margin: 0 0 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
  font-size: clamp(16px, 1.35vw, 20px);
}

.about-copy > .text-link {
  margin-top: auto;
}

.about-media {
  position: relative;
  align-self: start;
  overflow: hidden;
  background: #0a0a0a;
  aspect-ratio: 959 / 960;
}

.about-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0a0a0a;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 24px var(--gutter);
  gap: 0;
}

.fact {
  display: grid;
  grid-template-columns: clamp(54px, 5vw, 72px) 1fr;
  align-items: center;
  gap: 16px;
  min-height: 94px;
  border-right: 1px solid #9d9991;
  padding: 0 20px;
}

.fact:first-child {
  padding-left: 0;
}

.fact:last-child {
  border-right: 0;
  padding-right: 0;
}

.fact img {
  width: clamp(46px, 4.8vw, 64px);
  height: clamp(46px, 4.8vw, 64px);
  object-fit: contain;
}

.fact p {
  margin: 0;
  font-family: var(--font-text);
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: var(--weight-regular);
}

.site-footer {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  background: #000;
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 1.25fr 0.7fr 0.6fr 1fr;
  align-items: center;
  gap: 24px;
  min-height: 130px;
  padding: 28px var(--gutter);
}

.footer-inner p {
  margin: 0;
  text-transform: uppercase;
  font-weight: var(--weight-regular);
}

.footer-link {
  border: 0;
  padding: 0;
  color: #fff;
  font: inherit;
  font-weight: var(--weight-regular);
  font-size: clamp(14px, 1.15vw, 17px);
  cursor: pointer;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--acid);
  transform: translateY(-2px);
}

.footer-contact-button {
  display: none;
}

.green-slash {
  height: 18px;
  max-width: 96px;
}

.green-slash-left {
  background-image: url("../images/electric-mark-3.svg");
}

.green-slash-right {
  background-image: url("../images/electric-mark-4.svg");
}

.inner-page {
  min-height: 70vh;
}

.page-intro,
.contact-page {
  padding: 58px var(--gutter);
}

.page-intro h1,
.contact-page h1,
.project-detail h1 {
  font-size: clamp(56px, 8vw, 100px);
}

.page-intro p,
.contact-page p,
.project-detail p {
  max-width: 720px;
  margin: 22px 0 0;
  font-family: var(--font-text);
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: var(--weight-regular);
}

.copy-status {
  min-height: 20px;
}

.contact-shell {
  min-height: auto;
}

.contact-page {
  position: relative;
  display: grid;
  gap: clamp(28px, 4vw, 58px);
  padding: clamp(52px, 5vw, 74px) var(--gutter) clamp(24px, 3vw, 42px);
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 260px);
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
}

.contact-hero h1 {
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(118px, 11.5vw, 180px);
  font-weight: var(--weight-heavy);
  line-height: 0.8;
  text-transform: uppercase;
}

.contact-symbol {
  justify-self: end;
  width: 350px;
  height: 350px;
  object-fit: contain;
  transform: translateX(-50px);
}

.contact-symbol {
  padding: 38px;
}

.contact-list {
  display: grid;
  gap: clamp(14px, 1.5vw, 22px);
  margin-top: 0;
}

.contact-row {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 32px;
  min-height: clamp(32px, 2.8vw, 44px);
}

.contact-row-link {
  cursor: pointer;
}

.contact-row h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.55vw, 34px);
  font-weight: var(--weight-bold);
  line-height: 0.95;
  text-transform: uppercase;
}

.contact-value {
  justify-self: end;
  text-align: right;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-family: var(--font-main);
  font-size: clamp(26px, 2.55vw, 34px);
  font-weight: var(--weight-regular);
  line-height: 0.95;
  cursor: pointer;
  transition: color 160ms ease, transform 160ms ease;
}

.contact-value:hover,
.contact-value:focus-visible {
  color: var(--acid);
  transform: translateY(-3px);
}

.contact-value.is-copied,
.footer-link.is-copied {
  color: var(--acid);
}

.contact-cv {
  justify-self: start;
  margin-top: -18px;
}

.contact-page .copy-status {
  position: absolute;
  left: var(--gutter);
  bottom: 10px;
  min-height: 0;
  margin: 0;
  font-family: var(--font-text);
  font-size: clamp(14px, 1.2vw, 17px);
}

.contact-footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.55fr 1.7fr 0.55fr 1fr;
  align-items: center;
  gap: 30px;
  min-height: 182px;
  padding: 34px var(--gutter);
}

.contact-footer-inner p {
  margin: 0;
  color: #fff;
  font-family: var(--font-main);
  font-size: clamp(19px, 1.55vw, 27px);
  font-weight: var(--weight-regular);
  line-height: 1.12;
  text-transform: uppercase;
}

.contact-footer-inner p:nth-child(3) {
  justify-self: center;
  text-align: center;
}

.contact-footer-inner p:last-child {
  justify-self: end;
  text-transform: none;
}

.project-detail {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  padding: 58px var(--gutter);
}

.project-detail-copy {
  align-self: end;
}

.project-detail img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  background: #000;
}

.project-page {
  min-height: 0;
}

.case-study {
  display: grid;
  gap: 18px;
  padding: 28px var(--gutter) 18px;
}

.case-content {
  display: grid;
  gap: 18px;
  scroll-margin-top: 88px;
}

.case-journey {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  margin: 8px 0 10px;
}

.case-journey-step {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 168px;
  border-right: 1px solid #bdb8ae;
  padding: 22px 22px 24px;
}

.case-journey-step:last-child {
  border-right: 0;
}

.case-journey-step span,
.case-section-label {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  line-height: 0.95;
  text-transform: uppercase;
}

.case-journey-step span {
  font-size: clamp(23px, 2.1vw, 34px);
}

.case-journey-step p {
  margin: 0;
  font-family: var(--font-text);
  font-size: clamp(15px, 1.08vw, 17px);
  font-weight: var(--weight-regular);
  line-height: 1.22;
}

.case-section-label {
  margin: 12px 0 0;
  padding-top: 0;
  font-size: clamp(28px, 3vw, 42px);
}

.case-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: stretch;
}

.case-hero-image,
.case-media {
  width: 100%;
  background: #000;
}

.case-hero-image {
  aspect-ratio: 1401 / 1047;
  height: 100%;
  object-fit: cover;
}

.case-hero-copy {
  display: grid;
  gap: 18px;
  align-content: start;
  padding-top: 18px;
}

.case-hero-copy h1 {
  margin: 0;
  font-family: var(--font-main);
  font-size: clamp(54px, 6vw, 88px);
  font-weight: var(--weight-heavy);
  line-height: 0.9;
}

.case-hero-copy dl {
  display: grid;
  gap: 11px;
  margin: 8px 0 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #bdb8ae;
}

.case-hero-copy dl div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
}

.case-hero-copy dt,
.case-hero-copy dd {
  margin: 0;
  font-family: var(--font-text);
  font-size: clamp(15px, 1.18vw, 18px);
  line-height: 1.15;
}

.case-hero-copy dt {
  font-weight: var(--weight-bold);
}

.case-hero-copy dd {
  justify-self: end;
  text-align: right;
  font-weight: var(--weight-regular);
}

.case-intro {
  display: grid;
  gap: 6px;
  padding-top: 4px;
}

.scroll-indicator {
  align-self: end;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-family: var(--font-main);
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: var(--weight-bold);
  line-height: 1;
  text-transform: uppercase;
  transition: color 160ms ease, transform 160ms ease;
}

.scroll-indicator span:last-child {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--acid);
  color: #000;
  font-size: 24px;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.scroll-indicator:hover,
.scroll-indicator:focus-visible {
  color: var(--acid);
  transform: translateY(3px);
}

.scroll-indicator:hover span:last-child,
.scroll-indicator:focus-visible span:last-child {
  transform: translateY(3px);
  box-shadow: 0 -4px 0 #000;
}

.case-intro h2,
.case-section-copy h2 {
  margin: 0;
  font-family: var(--font-text);
  font-size: 22px;
  font-weight: var(--weight-bold);
  line-height: 1;
}

.case-intro p,
.case-section-copy p {
  margin: 0;
  font-family: var(--font-text);
  font-size: 19px;
  font-weight: var(--weight-regular);
  line-height: 1.28;
}

.case-section {
  display: grid;
}

.case-divider {
  width: 100%;
  border-top: 2px solid var(--line);
  margin: 8px 0;
}

.case-media {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--paper);
}

.case-media:has(.case-media-placeholder) {
  background: #000;
}

.case-media-wide {
  aspect-ratio: 3.2 / 1;
}

.case-study-tuborg .case-media-wide {
  aspect-ratio: 1876 / 671;
}

.case-study-stumo .case-media-wide:has(img[src$="colours.jpg"]) {
  aspect-ratio: 1875 / 182;
}

.case-study-stumo .case-media-wide:has(img[src$="research.jpg"]) {
  aspect-ratio: 1875 / 550;
}

.case-study-stumo .case-media-wide:has(img[src$="barriers.jpg"]) {
  aspect-ratio: 1875 / 664;
}

.case-study-stumo .case-media-wide:has(img[src$="typography.jpg"]) {
  aspect-ratio: 1875 / 561;
}

.case-study-stumo .case-section-split .case-media,
.case-study-stumo .case-half-item .case-media {
  aspect-ratio: 1051 / 679;
}

.case-study-perch .case-half-item .case-media {
  aspect-ratio: 1016 / 679;
}

.case-study-perch .case-half-item .case-media:has(img[src$="signage-1.jpg"]) {
  aspect-ratio: 1004 / 555;
}

.case-study-perch .case-half-item .case-media:has(img[src$="signage-2.jpg"]) {
  aspect-ratio: 974 / 548;
}

.case-study-perch .case-third-item .case-media,
.case-study-perch .case-section-split .case-media {
  aspect-ratio: 1051 / 679;
}

.case-study-perch .case-media-wide:has(img[src$="event-1.jpg"]) {
  aspect-ratio: 1875 / 181;
}

.case-study-perch .case-media-wide:has(img[src$="event-2.jpg"]) {
  aspect-ratio: 1875 / 561;
}

.case-study-the-neighbourhood-brand-refresh .case-media-wide:has(img[src$="brand-system.jpg"]),
.case-study-the-neighbourhood-brand-refresh .case-media-wide:has(img[src$="brand-system.jpg"]) {
  aspect-ratio: 2460 / 1001;
}

.case-study-the-neighbourhood-brand-refresh .case-media-wide:has(img[src$="applications.jpg"]),
.case-study-the-neighbourhood-brand-refresh .case-media-wide:has(img[src$="applications.jpg"]) {
  aspect-ratio: 2460 / 4665;
}

.case-study-the-neighbourhood-brand-refresh .case-section-split .case-media {
  aspect-ratio: 16 / 9;
}

.case-study-the-neighbourhood-brand-refresh .case-media-wide:has(img[src$="digital.jpg"]),
.case-study-the-neighbourhood-brand-refresh .case-media-wide:has(img[src$="digital.jpg"]),
.case-study-the-neighbourhood-brand-refresh .case-media-wide:has(img[src$="touchpoints.jpg"]),
.case-study-the-neighbourhood-brand-refresh .case-media-wide:has(img[src$="touchpoints.jpg"]) {
  aspect-ratio: 2049 / 1001;
}

.case-study-the-neighbourhood-brand-refresh .case-half-item .case-media {
  aspect-ratio: 1051 / 848;
}

.case-study-zine .case-media {
  background: #fff;
}

.case-study-zine .case-half-item .case-media {
  aspect-ratio: 4 / 3;
}

.case-study-zine .case-media-image {
  object-position: center;
}

.case-study-keith-haring-website-redesign .case-media-wide:has(img[src$="pages.jpg"]),
.case-study-keith-haring-website-redesign .case-media-wide:has(img[src$="pages.jpg"]) {
  aspect-ratio: 2460 / 10572;
}

.case-study-keith-haring-website-redesign .case-third-item .case-media {
  aspect-ratio: 751 / 1001;
}

.case-study-keith-haring-website-redesign .case-third-item .case-media:has(img[src$="poster.jpg"]),
.case-study-keith-haring-website-redesign .case-third-item .case-media:has(img[src$="poster.jpg"]) {
  aspect-ratio: 763 / 1018;
}

.case-media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-media-image[src$=".png"] {
  object-fit: contain;
}

.case-media-placeholder {
  color: #fff;
  font-family: var(--font-main);
  font-size: clamp(28px, 2.7vw, 44px);
  font-weight: var(--weight-semibold);
  line-height: 1;
}

.case-section-split {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 1fr);
  gap: 18px;
  align-items: start;
}

.case-section-split .case-media {
  aspect-ratio: 1.55 / 1;
}

.case-section-copy {
  display: grid;
  gap: 13px;
  align-content: start;
  min-height: 100%;
}

.case-section-split:not(.case-section-split-right) .case-section-copy {
  padding-top: 14px;
}

.case-section-split-right .case-section-copy {
  padding-top: 14px;
}

.case-half-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.case-half-item .case-media {
  aspect-ratio: 1.58 / 1;
}

.case-study-bpj-fusion .case-half-item .case-media {
  aspect-ratio: 1401 / 1047;
}

.case-third-item .case-media {
  aspect-ratio: 1.55 / 1;
}

.case-study-spenny .case-third-item .case-media {
  aspect-ratio: 1051 / 679;
}

.case-study-protect-wendovers-rural-identity .case-third-item .case-media {
  aspect-ratio: 595 / 679;
}

.case-study .back-to-top {
  margin: 28px auto 10px;
}

.work-page {
  --work-side: clamp(34px, 3.2vw, 48px);
}

.work-page .site-footer {
  margin-top: 0;
}

.work-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 260px);
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
  padding: clamp(52px, 5vw, 74px) var(--work-side) clamp(30px, 3.6vw, 48px);
}

.work-hero h1 {
  font-family: var(--font-main);
  font-size: clamp(118px, 11.5vw, 180px);
  font-weight: var(--weight-heavy);
  line-height: 0.8;
  text-transform: uppercase;
}

.work-spark {
  justify-self: end;
  width: 350px;
  height: 350px;
  object-fit: contain;
  transform: translateX(-50px);
  transform-origin: center;
}

.all-work {
  padding: 0 var(--work-side) 20px;
}

.work-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 28px;
}

.filter-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--acid);
  color: var(--ink);
  padding: 10px 18px 11px;
  font: inherit;
  font-family: var(--font-text);
  font-size: 15px;
  font-weight: var(--weight-bold);
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 0 var(--line);
}

.filter-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  padding: 9px 15px 10px;
  font: inherit;
  font-family: var(--font-text);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: var(--weight-bold);
  line-height: 1;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active {
  background: var(--acid);
  transform: translateY(-2px);
}

.filter-button.is-active {
  box-shadow: 0 4px 0 var(--line);
}

.work-count {
  margin: 0;
  font-family: var(--font-text);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: var(--weight-bold);
  white-space: nowrap;
}

.all-work .project-grid-all {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  gap: 34px 26px;
}

.work-card {
  display: grid;
  grid-template-rows: auto auto;
  gap: 0;
  background: var(--paper);
  color: var(--ink);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.work-card > img {
  width: 100%;
  aspect-ratio: 1.78;
  object-fit: cover;
  background: #000;
  transition: transform 180ms ease;
}

.work-card-preview {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1.78;
  overflow: hidden;
  background: #f8f2df;
  color: #050505;
}

.work-card-preview-keith {
  border: 12px solid #050505;
}

.work-card-preview-keith::before,
.work-card-preview-keith::after {
  content: "";
  position: absolute;
  inset: 11%;
  border: 5px solid #050505;
  transform: rotate(-5deg);
}

.work-card-preview-keith::after {
  inset: 22%;
  transform: rotate(6deg);
}

.keith-preview-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 5px;
  text-align: center;
  text-transform: uppercase;
}

.keith-preview-copy span {
  font-family: var(--font-text);
  font-size: clamp(18px, 1.7vw, 28px);
  font-weight: var(--weight-bold);
  line-height: 1;
}

.keith-preview-copy strong {
  font-size: clamp(34px, 4vw, 68px);
  font-weight: var(--weight-heavy);
  line-height: 0.88;
}

.keith-shape {
  position: absolute;
  display: block;
  border: 5px solid #050505;
}

.keith-shape-red {
  left: 7%;
  top: 12%;
  width: 25%;
  height: 31%;
  background: #ef3c2d;
  transform: rotate(9deg);
}

.keith-shape-yellow {
  right: 8%;
  top: 11%;
  width: 22%;
  height: 38%;
  background: #f7d437;
  transform: rotate(-12deg);
}

.keith-shape-blue {
  left: 15%;
  bottom: 10%;
  width: 20%;
  height: 23%;
  background: #1d72d8;
  transform: rotate(-8deg);
}

.work-card-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1.78;
  background: #000;
  color: #fff;
  padding: 28px;
  font-family: var(--font-main);
  font-size: clamp(26px, 3vw, 48px);
  font-weight: var(--weight-heavy);
  line-height: 0.95;
  text-align: center;
  text-transform: uppercase;
}

.work-card:hover > img,
.work-card:focus-visible > img,
.work-card:hover .work-card-preview,
.work-card:focus-visible .work-card-preview,
.work-card:hover .work-card-placeholder,
.work-card:focus-visible .work-card-placeholder {
  transform: none;
}

.work-card-info {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 66px;
  background: var(--paper);
  border-bottom: 1px solid #c7c1b8;
  padding: 14px 20px 17px;
  transition: border-color 160ms ease;
}

.work-card:hover,
.work-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 9px 0 var(--acid);
}

.work-card-info strong,
.work-card-info small {
  display: block;
}

.work-card-info strong {
  font-size: clamp(18px, 1.45vw, 23px);
  font-weight: var(--weight-bold);
  line-height: 1;
}

.work-card-info small {
  margin-top: 5px;
  font-family: var(--font-text);
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: var(--weight-regular);
}

.work-card-info .arrow-icon {
  width: 33px;
  height: 33px;
  transition: transform 160ms ease, filter 160ms ease;
}

.work-card:hover .work-card-info .arrow-icon,
.work-card:focus-visible .work-card-info .arrow-icon {
  filter: invert(54%) sepia(99%) saturate(1889%) hue-rotate(97deg) brightness(101%) contrast(107%);
  transform: translate(3px, -3px);
}

.work-card-coming-soon {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 100%;
  background: var(--paper);
  place-items: center;
  text-align: center;
  border: 1px dashed #9d9991;
  padding: 28px;
}

.work-card-coming-soon span {
  font-family: var(--font-main);
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: var(--weight-heavy);
  line-height: 1;
  text-transform: uppercase;
}

.work-card-coming-soon small {
  font-family: var(--font-text);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
}

.work-card-coming-soon:hover,
.work-card-coming-soon:focus-visible {
  transform: none;
  box-shadow: none;
}

.back-to-top {
  display: block;
  width: max-content;
  margin: 20px auto 0;
  font-family: var(--font-text);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 300;
  transition: color 160ms ease, transform 160ms ease;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--acid);
  transform: translateY(-2px);
}

.project-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.project-nav a {
  display: grid;
  gap: 7px;
  min-height: 92px;
  align-content: center;
  border-top: 2px solid var(--line);
  padding: 16px 0;
  transition: color 160ms ease, transform 160ms ease;
}

.project-nav a:nth-child(2) {
  text-align: center;
}

.project-nav a:last-child {
  text-align: right;
}

.project-nav a:hover,
.project-nav a:focus-visible {
  color: var(--acid);
  transform: translateY(-3px);
}

.project-nav span {
  font-family: var(--font-text);
  font-size: clamp(12px, 0.95vw, 14px);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
}

.project-nav strong {
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1;
}

@media (max-width: 840px) {
  :root {
    --gutter: clamp(18px, 5vw, 28px);
  }

  body[data-page="contact"] {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
  }

  body[data-page="contact"] .contact-shell {
    flex: 1;
  }

  .site-header {
    padding-top: 14px;
  }

  .header-inner {
    position: relative;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    padding-bottom: 14px;
  }

  .site-header.is-menu-open .header-inner {
    gap: 8px;
    padding-bottom: 8px;
  }

  .brand {
    font-size: 15px;
  }

  .nav {
    display: none;
    width: 100%;
    align-items: stretch;
    gap: 0;
    font-size: 16px;
  }

  .site-header.is-menu-open .nav {
    display: grid;
  }

  .nav a {
    display: block;
    border-bottom: 1px solid #c7c1b8;
    padding: 16px 0;
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .hero,
  .about-preview,
  .project-detail,
  .case-hero,
  .case-section-split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 30px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(74px, 19vw, 130px);
  }

  .hero p {
    max-width: 100%;
    margin: 18px 0 24px;
  }

  .hero-media {
    min-height: 0;
    justify-content: flex-end;
    margin-top: 10px;
    margin-right: calc(var(--gutter) * -1);
    margin-bottom: -2px;
  }

  .hero-media img {
    width: calc(100% + var(--gutter));
    max-width: none;
    max-height: none;
    margin-right: 0;
  }

  .section-heading {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 30px var(--gutter) 20px;
  }

  .section-heading-left {
    padding: 0 0 20px;
  }

  .section-heading h2,
  .section-heading h1 {
    font-size: clamp(30px, 9vw, 42px);
  }

  .section-link {
    justify-self: end;
    font-size: 13px;
  }

  .section-heading .green-mark {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }

  .project-grid-featured,
  .project-grid-all,
  .fact-strip,
  .footer-inner,
  .contact-footer-inner,
  .project-nav {
    grid-template-columns: 1fr;
  }

  .project-grid,
  .project-grid-all {
    gap: 22px;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .about-preview {
    gap: 28px;
    padding-top: 34px;
  }

  .rich-text {
    font-size: 16px;
    line-height: 1.22;
  }

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

  .contact-hero {
    grid-template-columns: minmax(0, auto) auto;
    justify-content: start;
    gap: 14px;
  }

  .contact-page,
  .page-intro {
    padding-top: 36px;
  }

  .contact-hero h1,
  .work-hero h1 {
    font-size: clamp(64px, 18vw, 116px);
  }

  .contact-symbol,
  .contact-value,
  .contact-footer-inner p:last-child {
    justify-self: start;
  }

  .contact-symbol {
    align-self: center;
    width: clamp(70px, 18vw, 92px);
    height: clamp(70px, 18vw, 92px);
    transform: none;
    padding: 8px;
  }

  .contact-row {
    gap: 8px;
    align-items: start;
    padding-bottom: 12px;
    border-bottom: 1px solid #c7c1b8;
  }

  .contact-cv {
    margin-top: 4px;
  }

  .contact-value {
    justify-self: start;
    max-width: 100%;
    text-align: left;
    overflow-wrap: anywhere;
    font-size: clamp(20px, 6vw, 28px);
  }

  .work-hero {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    padding-top: 38px;
    padding-bottom: 24px;
  }

  .work-toolbar {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
  }

  .filter-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
  }

  .filter-group {
    display: none;
    grid-column: 1 / -1;
    gap: 8px;
  }

  .work-toolbar.is-filter-open .filter-group {
    display: flex;
  }

  .work-count {
    justify-self: end;
  }

  .filter-button {
    padding: 8px 12px 9px;
  }

  .case-half-grid,
  .case-third-grid {
    grid-template-columns: 1fr;
  }

  .case-study {
    gap: 14px;
    padding: 20px var(--gutter) 16px;
  }

  .case-content {
    gap: 14px;
    scroll-margin-top: 112px;
  }

  .case-journey {
    grid-template-columns: 1fr;
    margin-top: 2px;
  }

  .case-journey-step {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #bdb8ae;
    padding: 18px 0 20px;
  }

  .case-journey-step:last-child {
    border-bottom: 0;
  }

  .case-section-label {
    margin-top: 8px;
    padding-top: 0;
    font-size: clamp(28px, 8.6vw, 38px);
  }

  .case-hero {
    gap: 18px;
  }

  .case-hero-copy {
    gap: 14px;
    padding-top: 0;
  }

  .case-hero-copy h1 {
    font-size: clamp(42px, 13vw, 72px);
    line-height: 0.92;
  }

  .case-hero-copy dl {
    gap: 13px;
    padding-bottom: 16px;
  }

  .case-hero-copy dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .case-hero-copy dd {
    justify-self: start;
    text-align: left;
  }

  .case-intro h2,
  .case-section-copy h2 {
    font-size: 20px;
    line-height: 1.05;
  }

  .case-intro p,
  .case-section-copy p {
    font-size: 16px;
    line-height: 1.32;
  }

  .case-section-split {
    gap: 12px;
  }

  .case-section-copy,
  .case-section-split:not(.case-section-split-right) .case-section-copy,
  .case-section-split-right .case-section-copy {
    padding: 18px 0 24px;
  }

  .case-section-split-right .case-media {
    order: 1;
  }

  .case-section-split-right .case-section-copy {
    order: 2;
  }

  .case-study-retro-active .case-media-wide:has(img[src$="Lush%203.jpg"]),
  .case-study-retro-active .case-media-wide:has(img[src$="campaign.jpg"]) {
    aspect-ratio: 1051 / 679;
  }

  .case-study-stumo .case-media-wide:has(img[src$="Stumo%202.jpg"]),
  .case-study-stumo .case-media-wide:has(img[src$="research.jpg"]) {
    aspect-ratio: 2.35 / 1;
  }

  .case-study-stumo .case-media-wide:has(img[src$="Stumo%203.jpg"]),
  .case-study-stumo .case-media-wide:has(img[src$="barriers.jpg"]) {
    aspect-ratio: 2.35 / 1;
  }

  .case-study-stumo .case-media-wide:has(img[src$="Stumo%202.jpg"]) .case-media-image,
  .case-study-stumo .case-media-wide:has(img[src$="research.jpg"]) .case-media-image,
  .case-study-stumo .case-media-wide:has(img[src$="Stumo%203.jpg"]) .case-media-image,
  .case-study-stumo .case-media-wide:has(img[src$="barriers.jpg"]) .case-media-image {
    object-position: center;
  }

  .case-study-the-neighbourhood-brand-refresh .case-media-wide:has(img[src$="digital.jpg"]),
  .case-study-the-neighbourhood-brand-refresh .case-media-wide:has(img[src$="digital.jpg"]),
  .case-study-the-neighbourhood-brand-refresh .case-media-wide:has(img[src$="touchpoints.jpg"]),
  .case-study-the-neighbourhood-brand-refresh .case-media-wide:has(img[src$="touchpoints.jpg"]) {
    aspect-ratio: 1.45 / 1;
  }

  .case-study-the-neighbourhood-brand-refresh .case-media-wide:has(img[src$="digital.jpg"]) .case-media-image,
  .case-study-the-neighbourhood-brand-refresh .case-media-wide:has(img[src$="digital.jpg"]) .case-media-image,
  .case-study-the-neighbourhood-brand-refresh .case-media-wide:has(img[src$="touchpoints.jpg"]) .case-media-image,
  .case-study-the-neighbourhood-brand-refresh .case-media-wide:has(img[src$="touchpoints.jpg"]) .case-media-image {
    object-position: center;
  }

  .scroll-indicator {
    justify-self: start;
    margin-top: 6px;
    font-size: 15px;
  }

  .work-spark {
    justify-self: end;
    width: min(32vw, 130px);
    height: auto;
    transform: none;
  }

  .project-card-large,
  .project-card-small {
    grid-column: span 1;
  }

  .fact {
    border-right: 0;
    border-bottom: 1px solid #9d9991;
    padding: 16px 0;
  }

  .fact:last-child {
    border-bottom: 0;
  }

  .footer-inner {
    gap: 16px;
    min-height: 0;
    padding: 28px var(--gutter);
  }

  .footer-link {
    overflow-wrap: anywhere;
  }

  .footer-inner p:first-child,
  .contact-footer-inner p:first-child {
    font-size: clamp(25px, 8vw, 38px);
    font-weight: var(--weight-heavy);
    line-height: 0.9;
  }

  .footer-inner .green-slash {
    display: none;
  }

  .contact-footer-inner .green-slash {
    display: none;
  }

  .footer-inner .footer-link {
    display: none;
  }

  .footer-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    justify-self: start;
    margin-top: 4px;
    padding: 13px 28px 14px;
    font-family: var(--font-text);
    font-size: 16px;
    font-weight: var(--weight-bold);
  }

  .footer-inner p:last-child {
    border-top: 1px solid #333;
    padding-top: 14px;
    color: #d8d8d8;
    font-size: 14px;
    text-transform: none;
  }

  .contact-footer-inner {
    min-height: 0;
    padding: 28px var(--gutter);
  }

  .contact-footer-inner p:nth-child(3) {
    justify-self: start;
    width: auto;
    border-top: 0;
    padding-top: 0;
    text-align: left;
  }

  .contact-footer-inner p:last-child {
    border-top: 1px solid #333;
    padding-top: 14px;
    color: #d8d8d8;
    font-size: 14px;
  }

  .project-nav a,
  .project-nav a:nth-child(2),
  .project-nav a:last-child {
    text-align: left;
  }

  .contact-footer-inner {
    gap: 22px;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .site-header {
    position: sticky;
  }

  .nav {
    font-size: 16px;
  }

  .hero h1,
  .page-intro h1,
  .contact-page h1,
  .project-detail h1 {
    font-size: clamp(52px, 18vw, 78px);
  }

  .work-hero h1,
  .contact-hero h1 {
    font-size: clamp(48px, 16vw, 64px);
  }

  .work-spark {
    align-self: center;
    justify-self: end;
    width: clamp(82px, 24vw, 110px);
  }

  .button-row,
  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-card {
    min-height: 190px;
  }

  .project-meta {
    left: 18px;
    right: 18px;
    bottom: 18px;
    transform: none;
  }

  .project-meta small {
    opacity: 1;
    transform: none;
  }

  .work-card-info {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 13px 0 15px;
  }

  .work-card-info .arrow-icon {
    align-self: center;
    justify-self: end;
    width: 26px;
    height: 26px;
  }

  .case-study-keith-haring-website-redesign .case-media-wide:has(img[src$="pages.jpg"]),
  .case-study-keith-haring-website-redesign .case-media-wide:has(img[src$="pages.jpg"]) {
    aspect-ratio: 2460 / 10572;
  }
}
