/**
* @license
* MyFonts Webfont Build ID 3867246, 2020-12-16T11:57:38-0500
* 
* The fonts listed in this notice are subject to the End User License
* Agreement(s) entered into by the website owner. All other parties are 
* explicitly restricted from using the Licensed Webfonts(s).
* 
* You may obtain a valid license at the URLs below.
* 
* Webfont: Titling Gothic FB Skyline Medium by Font Bureau
* URL: https://www.myfonts.com/collections/font-bureau-foundry

* © 2026 MyFonts Inc. */

@font-face {
	font-family: "TitlingGothicFBSkylineMedium";
	src:
		url("fonts/TitlingGothicFBSkylineMedium/font.woff2") format("woff2"),
		url("fonts/TitlingGothicFBSkylineMedium/font.woff") format("woff");
	font-display: block;
}


/* CSS RESET ===================================================== */

*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
}

ol,
ul {
	list-style: none;
}

button {
	background: none;
	cursor: pointer;
	font: inherit;
	color: inherit;
}


/* SKIP TO MAIN CONTENT ===================================================== */

.skip {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.skip:focus {
	position: static;
	width: auto;
	height: auto;
	font-size: var(--type-1);
}


/* BASE ===================================================== */

:root {
	/* COLOUR */
	--black: rgb(0, 0, 0);
	--white: rgb(255, 255, 255);
	--overlay: rgb(244, 245, 247);
	--grey: rgb(119, 128, 143);
	--light-grey: rgb(192, 192, 192);

	/* GRID */
	--grid-0-25: 0.9rem;
	--grid-0-5: 1.8rem;
	--grid-0-75: 2.7rem;
	--grid-1: 3.6rem;
	--grid-1-25: 4.5rem;
	--grid-1-5: 5.4rem;
	--grid-2: 7.2rem;
	--grid-3: 10.8rem;
	--grid-3-5: 12.6rem;
	--grid-4: 14.4rem;
	--grid-5: 18rem;

	/* GRID MINUS 1PX BORDER */
	--grid-0-5-border: 1.7rem;
	--grid-1-border: 3.5rem;
	--grid-1-5-border: 5.3rem;

	/* @link https://utopia.fyi/type/calculator?c=500,18.4,1.125,2520,23,1.2,7,2,&s=0.75|0.5|0.25,1.5|2|3|4|6,s-l&g=s,l,xl,12 */
	--type--3: 1.3rem;
	--type--2: 1.6rem;
	--type--1: 1.9rem;
	--type-1: 2.3rem;
	--type-2: 2.8rem;
	--type-3: clamp(2.9rem, 2.7681rem + 0.2111vw, 3.3rem);
	--type-4: clamp(3.3rem, 3.0691rem + 0.3694vw, 4rem);
	--type-5: clamp(3.7rem, 3.3372rem + 0.5805vw, 4.8rem);
	/* --type-6: clamp(4.1rem, 3.5723rem + 0.8443vw, 5.7rem); */
	/* --type-7: clamp(4.7rem, 3.9744rem + 1.1609vw, 6.9rem); */
	/* --type-8: clamp(5.2rem, 4.2106rem + 1.5831vw, 8.2rem); */
}

html {
	font-size: clamp(50%, 46.91% + 0.099vw, 62.5%); /* 8px at 500px → 10px at 2520px */
}

body {
	font-family: acumin-pro, sans-serif;
	font-variant-ligatures: common-ligatures;
	color: var(--black);
	background-color: var(--white);
	text-rendering: optimizeLegibility;
	padding-bottom: var(--grid-1);
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	/* background-image: url("images/column-grid.png");
	background-size: 2376px 360px;
	background-position: center top;
	background-repeat: repeat-y; */
}

a:link, a:visited { color: var(--black); text-decoration: none; }
a:hover, a:active { color: var(--grey); text-decoration: none; }


/* STRUCTURE ===================================================== */

.wrapper {
	width: 100%;
	max-width: 252rem;
	margin: 0 auto;
	padding: 0 clamp(var(--grid-0-75), 1.58608rem + 2.2277vw, var(--grid-2)); /* 500px → 2520px */
}

.poster {
	min-height: calc(100vh - var(--grid-2));
	min-height: calc(100svh - var(--grid-2));
	display: flex;
	align-items: flex-end;
	margin-bottom: var(--grid-5);
}

.grid-layout {
	display: grid;
	column-gap: clamp(var(--grid-0-75), 1.58608rem + 2.2277vw, var(--grid-2)); /* 500px → 2520px */
}

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

.grid-four-columns {
	grid-template-columns: repeat(4, 1fr);
}


/* IMAGES ===================================================== */

img,
video,
picture {
	display: block;
	width: 100%;
	height: auto;
}

video {
	cursor: pointer;
}

.border {
	border: 1px solid var(--light-grey);
}

.image-second-column {
	grid-column: 2;
}


/* HEADER ===================================================== */

header {
	background-color: var(--white);
}

header.fixed-to-top {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

header.fixed-to-top + main {
	padding-top: var(--grid-2);
}

.header-content {
	height: var(--grid-2);
	border-bottom: 1px solid;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo {
	width: var(--grid-3-5);
}

.nav-button {
	display: none;
	border-bottom: 1px solid transparent;
}

.nav-button,
nav ul li {
	font-size: var(--type--1);
}

nav ul {
	display: flex;
	column-gap: var(--grid-0-5);
}

nav a:hover, nav a:active,
.nav-button:hover, .nav-button:active {
	color: var(--black);
	border-bottom: 1px solid;
}

.active-page {
	border-bottom: 1px solid;
}


/* TYPOGRAPHY ===================================================== */

.heading {
	font-size: clamp(4.5rem, 3.3456rem + 1.847vw, 8rem);
	font-weight: 500;
	letter-spacing: -0.035em;
	line-height: 1.2375em;
	padding: var(--grid-2) 0 4.725em 0;
}

.masthead,
.sub-heading,
.running-head {
	font-family: "TitlingGothicFBSkylineMedium", Impact, Haettenschweiler, sans-serif;
	font-weight: 400;
	text-transform: uppercase;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.masthead {
	font-size: clamp(9.5rem, 3.7282rem + 9.2348vw, 27rem); /* 500px → 2520px */
	line-height: 0.88em;
	padding: 5vh 0 0.1em 0;
	border-bottom: 0.1em solid;
	margin-bottom: 0.1em;
}

.running-head {
	font-size: var(--type-5);
	line-height: 1.5em;
	padding: 0.7em 0;
}

.sub-heading {
	font-size: clamp(6.75rem, 6.3377rem + 0.6596vw, 8rem);
	line-height: 1.35em;
	padding: 1.8em 0 0.475em 0;
}

.sub-sub-heading {
	font-size: var(--type-1);
	font-weight: 400;
	line-height: var(--grid-1);
	padding-bottom: var(--grid-1);
}

p {
	font-size: var(--type-1);
	line-height: var(--grid-1);
	padding-bottom: var(--grid-1);
}

.body-text {
	grid-column: 2;
}

.body-content {
	padding-bottom: calc(var(--grid-4) - 1px);
	border-bottom: 1px solid;
}

.body-content section {
	margin-top: var(--grid-4);
	border-top: 1px solid;
	padding-top: var(--grid-1-border);
}

.body-content section:first-of-type {
	margin-top: 0;
}

.caption {
	font-size: var(--type--2);
	padding-bottom: var(--grid-2);
}

section .caption:last-of-type {
	padding-bottom: 0;
}

.body-content ul,
.body-content ol {
	font-size: var(--type-1);
	line-height: var(--grid-1);
	list-style-position: outside;
	margin: 0 0 var(--grid-1) 1em;
}

.body-content ul {
	list-style-type: disc;
}

.body-content ol {
	list-style-type: decimal;
}

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

.services:not(:last-child)::after {
	content: " /";
}

.tint {
	color: var(--grey);
}

.body-content a { border-bottom: 1px solid var(--light-grey); }


/* BIG NUMBER COUNTER ===================================================== */

body {
	counter-reset: bigNumber; /* Initialize the counter */
}

.big-numbers::before {
	counter-increment: bigNumber; /* Increment the counter */
	content: counter(bigNumber) "."; /* Display the counter */
}


/* HOMEPAGE ===================================================== */

.registered-symbol {
	width: clamp(1.3rem, 1.00297rem + 0.5941vw, 2.5rem); /* 500px → 2520px */
	display: inline;
	vertical-align: top;
	margin: 0.03em 0 0 0.05em;
	fill: currentColor;
}

.home-poster {
	border-top: 1px solid;
	padding-top: var(--grid-1-border);
	min-height: 100vh;
}

.homepage .heading,
.homepage .running-head {
	padding-top: 0;
}


/* TABLES ===================================================== */

table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: var(--grid-1);
}

td,
th {
	font-size: var(--type-1);
	font-weight: 400;
	line-height: var(--grid-0-75);
	padding: var(--grid-0-5-border) var(--grid-0-25) var(--grid-0-5) var(--grid-0-25);
	text-align: left;
	border: 1px solid;
}


/* FILTER ===================================================== */

.filter {
	display: flex;
	column-gap: var(--grid-0-5);
	font-size: var(--type--1);
	line-height: var(--grid-1-border);
	padding: var(--grid-0-5) 0;
}

.filter button:hover, .filter button:active,
.filter button[aria-pressed="true"] {
	border-bottom: 1px solid;
}


/* PORTFOLIO LIST ===================================================== */

.portfolio {
	border-top: 1px solid;
}

.portfolio li {
	padding: var(--grid-1) 0 var(--grid-1-border) 0;
	border-bottom: 1px solid;
}

.portfolio li:first-of-type {
	padding-top: var(--grid-1-border);
}

.portfolio li a {
	align-items: center;
}

.portfolio p,
.insights-list p {
	font-size: var(--type-4);
	letter-spacing: -0.02em;
	line-height: 1.125em;
	padding-bottom: 0;
	grid-column: 2 / -1;
}

.portfolio a:hover, .portfolio a:active,
.portfolio-text a:hover, .portfolio-text a:active,
.insights-list a:hover, .insights-list a:active { color: var(--black); background-color: var(--overlay); }


/* PORTFOLIO TEXT LIST ===================================================== */

.portfolio-heading {
	padding-top: calc(var(--grid-1) * 10);
}

.portfolio-text a {
	padding: var(--grid-1-border) 0 var(--grid-1) 0;
	border-top: 1px solid;
}

.portfolio-text li:last-child a {
	padding-bottom: var(--grid-1-border);
	border-bottom: 1px solid;
}

.portfolio-text p {
	font-size: var(--type-2);
	padding-bottom: 0;
}


/* INSIGHTS LIST ===================================================== */

.insights-list a {
	padding: var(--grid-1-5-border) 0 var(--grid-1-5) 0;
	border-top: 1px solid;
	display: block;
}

.insights-list li:last-child a {
	padding-bottom: var(--grid-1-5-border);
	border-bottom: 1px solid;
}


/* FOOTER ===================================================== */

.footer-logo {
	padding-top: calc(var(--grid-1) * 8);
}

.footer-content {
	margin-top: var(--grid-1);
	border-top: 1px solid;
	padding-top: var(--grid-0-5-border);
}

.footer-content p {
	font-size: var(--type--1);
	line-height: var(--grid-0-75);
	padding-bottom: var(--grid-0-75);
}

.smallprint p {
	font-size: var(--type--3);
	line-height: var(--grid-0-5);
	padding-bottom: 0;
}


/* RESPONSIVE ===================================================== */

@media screen and (max-width: 1400px) {

	.pitch-break {
		display: none;
	}
}

@media screen and (max-width: 1023px) {

	.nav-button {
		display: block;
	}

	nav {
		display: none;
	}

	body.nav-shown nav {
		display: block;
		position: fixed;
		top: var(--grid-2);
		left: 0;
		right: 0;
		bottom: 0;
		padding: 0 clamp(var(--grid-0-75), 1.58608rem + 2.2277vw, var(--grid-2)); /* 500px → 2520px */
		background-color: var(--white);
		overflow-y: auto;
	}

	nav ul {
		display: block;
		padding: var(--grid-1) 0;
	}

	nav ul li {
		font-family: "TitlingGothicFBSkylineMedium", Impact, Haettenschweiler, sans-serif;
		text-transform: uppercase;
		font-size: clamp(9rem, 21vw, 16rem);
		line-height: 0.9em;
		overflow: hidden;
	}

	nav a:hover, nav a:active { color: var(--grey); border-bottom: none; }
	
	.active-page {
		border-bottom: none;
	}

	.grid-layout {
		display: block;
	}

	.portfolio p {
		padding: var(--grid-0-5) 0;
	}

	.portfolio-text li p:nth-of-type(2) {
		color: var(--grey);
	}

	.caption {
		padding-bottom: var(--grid-1);
	}

	.footer-logo {
		width: 50%;
	}
}

@media screen and (max-width: 400px) {

	.filter {
		flex-direction: column;
	}
}