:root {
	--mf-yellow: #ffc400;
	--mf-black: #111111;
	--mf-charcoal: #333333;
	--mf-graphite: #222222;
	--mf-paper: #f2f2f2;
	--mf-line: #d8d8d8;
	--mf-white: #ffffff;
	--mf-text: #111111;
	--mf-muted: #666666;
	--mf-font-body: "Montserrat", Arial, sans-serif;
	--mf-font-title: "Anton", Impact, sans-serif;
	--mf-width: 1280px;
	--mf-pad: 32px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--mf-white);
	color: var(--mf-text);
	font-family: var(--mf-font-body);
	font-size: 16px;
	line-height: 1.55;
	text-rendering: geometricPrecision;
}

body.is-mf-nav-open {
	overflow: hidden;
}

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

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

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

button {
	cursor: pointer;
}

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

.skip-link:focus {
	z-index: 1000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: var(--mf-yellow);
	color: var(--mf-black);
	font-weight: 800;
	text-transform: uppercase;
}

.site {
	min-height: 100vh;
	background: var(--mf-white);
}

.site-header {
	position: sticky;
	z-index: 50;
	top: 0;
	background: var(--mf-black);
	color: var(--mf-white);
	border-bottom: 1px solid rgba(255, 196, 0, 0.18);
}

.site-header__inner {
	display: grid;
	grid-template-columns: minmax(180px, 260px) 1fr auto;
	align-items: center;
	width: min(100%, var(--mf-width));
	min-height: 69px;
	margin: 0 auto;
	padding: 0 var(--mf-pad);
	gap: 28px;
}

.mf-brand {
	display: inline-flex;
	align-items: center;
	width: min(100%, 220px);
}

.mf-brand__logo {
	display: block;
	width: 100%;
	height: auto;
}

.mf-brand--footer {
	width: min(100%, 250px);
}

.primary-navigation__list,
.site-footer__menu {
	display: flex;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-navigation__list {
	justify-content: flex-end;
	gap: 20px;
}

.primary-navigation__list a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 69px;
	color: var(--mf-white);
	font-family: var(--mf-font-title);
	font-size: 12px;
	letter-spacing: 0;
	text-transform: uppercase;
	opacity: 0.92;
}

.primary-navigation__list a::after,
.primary-navigation__list .current-menu-item > a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 18px;
	left: 0;
	height: 2px;
	background: var(--mf-yellow);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
}

.primary-navigation__list a:hover::after,
.primary-navigation__list a:focus-visible::after,
.primary-navigation__list .current-menu-item > a::after {
	transform: scaleX(1);
}

.site-header__quote {
	white-space: nowrap;
}

.site-header__toggle {
	display: none;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.18);
	background: transparent;
	color: var(--mf-white);
}

.site-header__toggle span[aria-hidden="true"],
.site-header__toggle span[aria-hidden="true"]::before,
.site-header__toggle span[aria-hidden="true"]::after {
	display: block;
	width: 18px;
	height: 2px;
	margin: 0 auto;
	background: currentColor;
	content: "";
	transition: transform 180ms ease, opacity 180ms ease;
}

.site-header__toggle span[aria-hidden="true"]::before {
	transform: translateY(-7px);
}

.site-header__toggle span[aria-hidden="true"]::after {
	transform: translateY(5px);
}

.site-header.is-nav-open .site-header__toggle span[aria-hidden="true"] {
	background: transparent;
}

.site-header.is-nav-open .site-header__toggle span[aria-hidden="true"]::before {
	transform: translateY(2px) rotate(45deg);
}

.site-header.is-nav-open .site-header__toggle span[aria-hidden="true"]::after {
	transform: translateY(0) rotate(-45deg);
}

.button,
.wp-block-button__link,
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: 4px;
	font-family: var(--mf-font-title);
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
	transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible,
.wp-block-button__link:hover,
.wp-block-button__link:focus-visible,
input[type="submit"]:hover,
input[type="submit"]:focus-visible {
	transform: translateY(-1px);
}

.button--primary,
.wp-block-button__link,
input[type="submit"] {
	background: var(--mf-yellow);
	color: var(--mf-black);
}

.button--primary:hover,
.button--primary:focus-visible,
.wp-block-button__link:hover,
.wp-block-button__link:focus-visible,
input[type="submit"]:hover,
input[type="submit"]:focus-visible {
	background: #f0b800;
	color: var(--mf-black);
}

.button--quote {
	min-height: 38px;
	padding: 0 22px;
	border-radius: 19px;
	background: var(--mf-yellow);
	color: var(--mf-black);
}

.button--outline {
	border-color: var(--mf-black);
	background: transparent;
	color: var(--mf-black);
}

.button--outline:hover,
.button--outline:focus-visible {
	background: var(--mf-black);
	color: var(--mf-white);
}

.button--dark {
	border-color: var(--mf-yellow);
	background: var(--mf-black);
	color: var(--mf-yellow);
}

.button--dark:hover,
.button--dark:focus-visible {
	background: var(--mf-yellow);
	color: var(--mf-black);
}

.mf-hero {
	position: relative;
	min-height: 640px;
	overflow: hidden;
	background: var(--mf-black);
	color: var(--mf-white);
}

.mf-hero__media {
	position: absolute;
	inset: 0;
}

.mf-hero__media::before {
	content: "";
	position: absolute;
	z-index: 1;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(17, 17, 17, 0.98) 0%, rgba(17, 17, 17, 0.86) 33%, rgba(17, 17, 17, 0.34) 70%, rgba(17, 17, 17, 0.72) 100%),
		linear-gradient(0deg, rgba(17, 17, 17, 0.75), rgba(17, 17, 17, 0.04) 42%, rgba(17, 17, 17, 0.4));
}

.mf-hero__media picture,
.mf-hero__media img {
	width: 100%;
	height: 100%;
}

.mf-hero__media img {
	object-fit: cover;
	object-position: 72% 50%;
	filter: saturate(1.08) contrast(1.08);
}

.mf-hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(100%, var(--mf-width));
	min-height: 640px;
	margin: 0 auto;
	padding: 76px var(--mf-pad) 64px;
	gap: 40px;
}

.mf-hero__copy {
	width: min(100%, 560px);
}

.mf-kicker,
.mf-eyebrow {
	margin: 0 0 14px;
	color: var(--mf-yellow);
	font-family: var(--mf-font-title);
	font-size: 13px;
	letter-spacing: 0;
	text-transform: uppercase;
}

.mf-kicker::before {
	content: "";
	display: inline-block;
	width: 44px;
	height: 2px;
	margin-right: 18px;
	vertical-align: middle;
	background: var(--mf-yellow);
}

.mf-hero h1,
.mf-section-copy h2,
.mf-section-head h2,
.page-shell__header h1 {
	margin: 0;
	font-family: var(--mf-font-title);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 0.98;
	text-transform: uppercase;
}

.mf-hero h1 {
	max-width: 560px;
	font-size: 72px;
}

.mf-hero h1 span,
.mf-section-copy h2 span,
.mf-section-head h2 span {
	color: var(--mf-yellow);
}

.mf-hero__copy > p:not(.mf-kicker) {
	max-width: 400px;
	margin: 24px 0 28px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 22px;
	line-height: 1.35;
}

.mf-compact-mark {
	display: block;
	align-self: flex-end;
	width: 92px;
	flex: 0 0 92px;
}

.mf-compact-mark__logo {
	width: 100%;
	height: auto;
}

.mf-trust {
	background: #151515;
	color: var(--mf-white);
}

.mf-trust__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	width: min(100%, var(--mf-width));
	margin: 0 auto;
	padding: 30px var(--mf-pad);
	gap: 36px;
}

.mf-trust__item {
	display: grid;
	grid-template-columns: 48px 1fr;
	align-items: center;
	gap: 18px;
	min-width: 0;
}

.mf-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: var(--mf-yellow);
}

.mf-icon svg {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.mf-icon--small {
	width: 30px;
	height: 30px;
}

.mf-trust h2,
.mf-service-card h3 {
	margin: 0;
	font-family: var(--mf-font-title);
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.05;
	text-transform: uppercase;
}

.mf-trust p,
.mf-service-card p {
	margin: 7px 0 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
	line-height: 1.4;
}

.section-pad {
	padding: 86px var(--mf-pad);
}

.section-pad--dark {
	background: var(--mf-black);
	color: var(--mf-white);
}

.mf-section-grid,
.mf-services__layout,
.mf-work,
.mf-clients,
.mf-style-slice,
.page-shell {
	width: min(100%, var(--mf-width));
	margin: 0 auto;
}

.mf-section-grid {
	display: grid;
	align-items: center;
	gap: 70px;
}

.mf-section-grid--about {
	grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.25fr);
}

.mf-section-grid--story {
	grid-template-columns: minmax(270px, 0.72fr) minmax(440px, 1.28fr);
}

.mf-section-copy h2,
.mf-section-head h2,
.page-shell__header h1 {
	font-size: 52px;
}

.mf-section-copy p:not(.mf-eyebrow),
.mf-section-head p {
	max-width: 490px;
	margin: 22px 0 28px;
	color: var(--mf-charcoal);
	font-size: 16px;
}

.section-pad--dark .mf-section-copy p:not(.mf-eyebrow),
.section-pad--dark .mf-section-head p,
.mf-services__intro p:not(.mf-eyebrow) {
	color: rgba(255, 255, 255, 0.78);
}

.mf-about {
	background: var(--mf-white);
}

.mf-about__image,
.mf-story__image {
	position: relative;
	overflow: hidden;
	min-height: 300px;
	background: var(--mf-paper);
}

.mf-about__image::before,
.mf-story__image::before {
	content: "";
	position: absolute;
	z-index: 1;
	inset: 0;
	border: 1px solid rgba(17, 17, 17, 0.08);
	pointer-events: none;
}

.mf-about__image picture,
.mf-about__image img,
.mf-story__image picture,
.mf-story__image img {
	width: 100%;
	height: 100%;
}

.mf-about__image img,
.mf-story__image img {
	object-fit: cover;
	filter: grayscale(1) contrast(1.05);
}

.mf-services__layout {
	display: grid;
	grid-template-columns: minmax(250px, 0.42fr) minmax(680px, 1fr);
	gap: 34px;
}

.mf-services__intro {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 10px 0;
}

.mf-services__intro h2 {
	margin: 0;
	font-family: var(--mf-font-title);
	font-size: 48px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1;
	text-transform: uppercase;
}

.mf-services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.mf-service-card {
	position: relative;
	min-height: 204px;
	overflow: hidden;
	background: #1d1d1d;
	color: var(--mf-white);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.mf-service-card__image {
	position: absolute;
	inset: 0;
}

.mf-service-card__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(17, 17, 17, 0.08) 0%, rgba(17, 17, 17, 0.8) 76%);
}

.mf-service-card__image img,
.mf-service-card__image source {
	width: 100%;
	height: 100%;
}

.mf-service-card__image img {
	object-fit: cover;
	filter: saturate(0.9) contrast(1.05);
}

.mf-service-card__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 204px;
	padding: 18px;
}

.mf-service-card--light {
	background: var(--mf-white);
	color: var(--mf-black);
}

.mf-service-card--light .mf-service-card__image::after {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.9) 68%);
}

.mf-service-card--light p {
	color: var(--mf-charcoal);
}

.mf-story {
	background: var(--mf-white);
	border-bottom: 1px solid var(--mf-line);
}

.mf-story .mf-eyebrow {
	margin-bottom: 0;
	color: var(--mf-black);
}

.mf-story h2 {
	color: var(--mf-yellow);
}

.mf-timeline {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	width: min(100%, var(--mf-width));
	margin: 46px auto 0;
	border-top: 1px solid var(--mf-line);
	border-bottom: 1px solid var(--mf-line);
}

.mf-timeline__item {
	min-height: 106px;
	padding: 24px 28px;
	border-right: 1px solid var(--mf-line);
}

.mf-timeline__item:last-child {
	border-right: 0;
}

.mf-timeline__item strong {
	display: block;
	margin-bottom: 10px;
	font-family: var(--mf-font-title);
	font-size: 23px;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: uppercase;
}

.mf-timeline__item b {
	display: block;
	margin-bottom: 7px;
	font-family: var(--mf-font-title);
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.1;
	text-transform: uppercase;
}

.mf-timeline__item span {
	display: block;
	color: var(--mf-charcoal);
	font-size: 13px;
	line-height: 1.4;
}

.mf-timeline--wide {
	grid-template-columns: repeat(7, minmax(0, 1fr));
}

.mf-work {
	background: var(--mf-white);
}

.mf-section-head {
	max-width: 620px;
	margin-bottom: 30px;
}

.mf-section-head .mf-eyebrow {
	margin-bottom: 0;
}

.mf-section-head--compact {
	max-width: none;
	margin-bottom: 24px;
}

.mf-filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 26px;
}

.mf-filter {
	min-width: 92px;
	min-height: 32px;
	padding: 0 18px;
	border: 1px solid var(--mf-line);
	border-radius: 16px;
	background: var(--mf-white);
	color: var(--mf-black);
	font-family: var(--mf-font-title);
	font-size: 12px;
	letter-spacing: 0;
	line-height: 1;
	text-transform: uppercase;
	transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.mf-filter:hover,
.mf-filter:focus-visible,
.mf-filter.is-active {
	border-color: var(--mf-yellow);
	background: var(--mf-yellow);
	color: var(--mf-black);
}

.mf-gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 10px;
}

.mf-gallery-card {
	position: relative;
	min-height: 176px;
	margin: 0;
	overflow: hidden;
	background: var(--mf-paper);
	border: 1px solid rgba(17, 17, 17, 0.08);
	transition: opacity 160ms ease, transform 160ms ease;
}

.mf-gallery-card.is-hidden {
	display: none;
}

.mf-gallery-card:hover,
.mf-gallery-card:focus-within {
	transform: translateY(-2px);
}

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

.mf-gallery-card img {
	object-fit: cover;
	aspect-ratio: 4 / 3;
}

.mf-gallery-card figcaption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 38px 14px 12px;
	background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.84) 56%);
	color: var(--mf-white);
	font-family: var(--mf-font-title);
	font-size: 15px;
	letter-spacing: 0;
	line-height: 1.08;
	text-transform: uppercase;
}

.mf-clients {
	background: var(--mf-white);
}

.mf-section-head--split {
	display: grid;
	grid-template-columns: minmax(280px, 0.74fr) minmax(280px, 0.5fr);
	align-items: end;
	max-width: none;
	gap: 40px;
}

.mf-section-head--split > p {
	margin: 0;
	color: var(--mf-charcoal);
	font-size: 16px;
	line-height: 1.55;
}

.mf-logo-wall {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0;
	margin-top: 32px;
	background: var(--mf-white);
	border-top: 1px solid var(--mf-line);
	border-left: 1px solid var(--mf-line);
	box-shadow: 0 22px 60px rgba(17, 17, 17, 0.06);
}

.mf-logo-card {
	position: relative;
	display: grid;
	place-items: center;
	min-width: 0;
	min-height: 132px;
	padding: 28px 26px;
	background: var(--mf-white);
	border-right: 1px solid var(--mf-line);
	border-bottom: 1px solid var(--mf-line);
	overflow: hidden;
	transition: background-color 160ms ease, box-shadow 160ms ease;
}

.mf-logo-card::after {
	position: absolute;
	right: 22px;
	bottom: 18px;
	left: 22px;
	height: 2px;
	background: var(--mf-yellow);
	content: "";
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 160ms ease;
}

.mf-logo-card:hover,
.mf-logo-card:focus-within {
	background: #fafafa;
	box-shadow: inset 0 0 0 1px rgba(255, 196, 0, 0.12);
}

.mf-logo-card:hover::after,
.mf-logo-card:focus-within::after {
	transform: scaleX(1);
}

.mf-logo-card__logo {
	display: block;
	width: auto;
	height: auto;
	max-width: min(78%, 200px);
	max-height: 58px;
	object-fit: contain;
	opacity: 0.86;
	filter: grayscale(1);
	transition: filter 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.mf-logo-card:hover .mf-logo-card__logo,
.mf-logo-card:focus-within .mf-logo-card__logo {
	opacity: 1;
	filter: none;
	transform: translateY(-1px);
}

.mf-logo-card--wide .mf-logo-card__logo {
	max-width: min(86%, 230px);
	max-height: 64px;
}

.mf-logo-card--mark .mf-logo-card__logo {
	max-width: min(56%, 96px);
	max-height: 66px;
}

.mf-logo-card--crest .mf-logo-card__logo {
	max-width: min(62%, 106px);
	max-height: 74px;
}

.mf-logo-card--roundel .mf-logo-card__logo {
	width: 74px;
	height: 74px;
	max-width: none;
	max-height: none;
	border-radius: 50%;
	object-fit: cover;
}

.mf-logo-card--light-logo .mf-logo-card__logo {
	max-width: min(70%, 160px);
	max-height: 68px;
	opacity: 0.86;
	filter: brightness(0) grayscale(1);
}

.mf-logo-card--light-wide .mf-logo-card__logo {
	max-width: min(86%, 230px);
	max-height: 64px;
	opacity: 0.86;
	filter: brightness(0) grayscale(1);
}

.mf-logo-card--light-logo:hover .mf-logo-card__logo,
.mf-logo-card--light-logo:focus-within .mf-logo-card__logo,
.mf-logo-card--light-wide:hover .mf-logo-card__logo,
.mf-logo-card--light-wide:focus-within .mf-logo-card__logo {
	filter: brightness(0);
}

.mf-clients__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 24px;
}

.mf-clients__actions span {
	color: var(--mf-muted);
	font-size: 13px;
	font-weight: 700;
}

.mf-style-slice {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: 42px;
	padding: 34px var(--mf-pad) 74px;
}

.mf-style-slice__images {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	min-width: 0;
}

.mf-style-slice__images picture,
.mf-style-slice__images img {
	width: 100%;
	height: 100%;
}

.mf-style-slice__images picture {
	overflow: hidden;
	min-height: 132px;
	background: var(--mf-paper);
}

.mf-style-slice__images img {
	object-fit: cover;
}

.mf-style-slice__actions,
.site-footer__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.site-footer {
	background: var(--mf-black);
	color: var(--mf-white);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(260px, 1fr) minmax(360px, 1.1fr) auto;
	align-items: center;
	width: min(100%, var(--mf-width));
	margin: 0 auto;
	padding: 54px var(--mf-pad);
	gap: 36px;
}

.site-footer__brand p {
	max-width: 360px;
	margin: 18px 0 0;
	color: rgba(255, 255, 255, 0.72);
}

.site-footer__menu {
	justify-content: center;
	flex-wrap: wrap;
	gap: 18px 26px;
}

.site-footer__menu a {
	color: rgba(255, 255, 255, 0.78);
	font-family: var(--mf-font-title);
	font-size: 13px;
	letter-spacing: 0;
	text-transform: uppercase;
}

.site-footer__menu a:hover,
.site-footer__menu a:focus-visible {
	color: var(--mf-yellow);
}

.site-footer__legal {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__legal p {
	width: min(100%, var(--mf-width));
	margin: 0 auto;
	padding: 18px var(--mf-pad);
	color: rgba(255, 255, 255, 0.55);
	font-size: 12px;
}

.page-shell {
	padding: 82px var(--mf-pad);
}

.mf-page {
	background: var(--mf-white);
}

.mf-page-hero {
	display: grid;
	grid-template-columns: minmax(280px, 0.88fr) minmax(420px, 1.12fr);
	align-items: center;
	width: min(100%, var(--mf-width));
	margin: 0 auto;
	padding: 82px var(--mf-pad);
	gap: 58px;
}

.mf-page-hero--dark,
.mf-page-hero--founder {
	background: var(--mf-black);
	color: var(--mf-white);
}

.mf-page-hero--dark {
	width: 100%;
	max-width: none;
	padding-right: max(var(--mf-pad), calc((100% - var(--mf-width)) / 2 + var(--mf-pad)));
	padding-left: max(var(--mf-pad), calc((100% - var(--mf-width)) / 2 + var(--mf-pad)));
}

.mf-page-hero--founder {
	position: relative;
	overflow: hidden;
}

.mf-page-hero--founder::after {
	content: "";
	position: absolute;
	right: 8%;
	bottom: -62px;
	width: 290px;
	height: 290px;
	border: 42px solid rgba(255, 196, 0, 0.08);
	border-radius: 50%;
	pointer-events: none;
}

.mf-page-hero__copy {
	position: relative;
	z-index: 1;
	max-width: 720px;
}

.mf-page-hero h1 {
	margin: 0;
	font-family: var(--mf-font-title);
	font-size: 58px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1;
	text-transform: uppercase;
}

.mf-page-hero p:not(.mf-eyebrow) {
	margin: 22px 0 0;
	color: var(--mf-charcoal);
	font-size: 18px;
	line-height: 1.45;
}

.mf-page-hero .button {
	margin-top: 28px;
}

.mf-page-hero--dark p:not(.mf-eyebrow),
.mf-page-hero--founder p:not(.mf-eyebrow) {
	color: rgba(255, 255, 255, 0.8);
}

.mf-page-hero__media {
	min-height: 290px;
	overflow: hidden;
	background: var(--mf-paper);
	border: 1px solid rgba(17, 17, 17, 0.08);
}

.mf-page-hero--dark .mf-page-hero__media {
	border-color: rgba(255, 255, 255, 0.12);
}

.mf-page-hero__media picture,
.mf-page-hero__media img {
	width: 100%;
	height: 100%;
}

.mf-page-hero__media img {
	object-fit: cover;
	filter: grayscale(0.2) contrast(1.04);
}

.mf-founder-card {
	position: relative;
	z-index: 1;
	padding: 34px;
	background: var(--mf-yellow);
	color: var(--mf-black);
}

.mf-founder-card p {
	margin: 0;
	font-family: var(--mf-font-title);
	font-size: 32px;
	letter-spacing: 0;
	line-height: 1.08;
	text-transform: uppercase;
}

.mf-narrative {
	display: grid;
	gap: 0;
}

.mf-narrative__block {
	display: grid;
	grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
	gap: 48px;
	padding: 34px 0;
	border-top: 1px solid var(--mf-line);
}

.mf-narrative__block:last-child {
	border-bottom: 1px solid var(--mf-line);
}

.mf-narrative__block h2,
.mf-detail-card h2,
.mf-quote-panel h2,
.mf-contact-card h2 {
	margin: 0;
	font-family: var(--mf-font-title);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.05;
	text-transform: uppercase;
}

.mf-narrative__block h2 {
	font-size: 34px;
}

.mf-narrative__block p {
	max-width: 780px;
	margin: 0 0 15px;
	color: var(--mf-charcoal);
	font-size: 17px;
}

.mf-narrative__block p:last-child {
	margin-bottom: 0;
}

.mf-founder-quote {
	margin: 46px 0 0;
	padding: 34px;
	background: var(--mf-black);
	color: var(--mf-white);
	border-left: 8px solid var(--mf-yellow);
}

.mf-founder-quote p {
	margin: 0;
	font-family: var(--mf-font-title);
	font-size: 34px;
	letter-spacing: 0;
	line-height: 1.08;
	text-transform: uppercase;
}

.mf-services-detail {
	background: var(--mf-paper);
}

.mf-detail-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	width: min(100%, var(--mf-width));
	margin: 0 auto;
}

.mf-detail-card {
	display: grid;
	grid-template-rows: 190px 1fr;
	min-width: 0;
	background: var(--mf-white);
	border: 1px solid var(--mf-line);
}

.mf-detail-card__media {
	overflow: hidden;
	background: var(--mf-black);
}

.mf-detail-card__media picture,
.mf-detail-card__media img {
	width: 100%;
	height: 100%;
}

.mf-detail-card__media img {
	object-fit: cover;
	filter: contrast(1.04) saturate(0.92);
}

.mf-detail-card__content {
	padding: 24px;
}

.mf-detail-card h2 {
	margin-top: 14px;
	font-size: 30px;
}

.mf-detail-card h3 {
	margin: 22px 0 10px;
	font-family: var(--mf-font-title);
	font-size: 18px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1;
	text-transform: uppercase;
}

.mf-detail-card p {
	margin: 12px 0 18px;
	color: var(--mf-charcoal);
}

.mf-detail-card ul,
.mf-check-list,
.mf-logo-name-grid {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mf-detail-card li,
.mf-check-list li,
.mf-logo-name-grid li {
	position: relative;
	padding-left: 18px;
	color: var(--mf-charcoal);
	font-size: 14px;
	line-height: 1.45;
}

.mf-detail-card li::before,
.mf-check-list li::before,
.mf-logo-name-grid li::before {
	content: "";
	position: absolute;
	top: 0.72em;
	left: 0;
	width: 7px;
	height: 7px;
	background: var(--mf-yellow);
}

.mf-why {
	display: grid;
	grid-template-columns: minmax(280px, 0.7fr) minmax(360px, 1fr);
	align-items: start;
	gap: 42px;
}

.mf-why .mf-section-head,
.mf-why .mf-check-list,
.mf-why .mf-quote-panel {
	width: min(100%, var(--mf-width));
}

.mf-check-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px 24px;
}

.mf-check-list li {
	color: rgba(255, 255, 255, 0.82);
	font-weight: 700;
}

.mf-quote-panel {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: minmax(260px, 0.4fr) 1fr auto;
	align-items: center;
	gap: 26px;
	margin-top: 20px;
	padding: 30px;
	background: #191919;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.mf-quote-panel h2 {
	color: var(--mf-yellow);
	font-size: 34px;
}

.mf-quote-panel p {
	margin: 0;
	color: rgba(255, 255, 255, 0.75);
}

.mf-gallery-grid--large {
	grid-template-columns: repeat(5, 1fr);
}

.mf-gallery-grid--large .mf-gallery-card {
	min-height: 210px;
}

.mf-clients-page {
	background: var(--mf-paper);
}

.mf-clients-page .mf-section-head--split,
.mf-logo-wall--page {
	width: min(100%, var(--mf-width));
	margin-right: auto;
	margin-left: auto;
}

.mf-logo-wall--page {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mf-logo-name-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px 20px;
	width: min(100%, var(--mf-width));
	margin: 28px auto 0;
	padding: 26px;
	background: var(--mf-white);
	border: 1px solid var(--mf-line);
}

.mf-logo-name-grid li {
	font-weight: 700;
}

.mf-contact {
	background: var(--mf-paper);
}

.mf-contact__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	width: min(100%, var(--mf-width));
	margin: 0 auto;
}

.mf-contact-card {
	min-height: 150px;
	padding: 24px;
	background: var(--mf-white);
	border: 1px solid var(--mf-line);
}

.mf-contact-card h2 {
	margin-bottom: 16px;
	color: var(--mf-yellow);
	font-size: 24px;
}

.mf-contact-card p,
.mf-contact-card a {
	display: block;
	margin: 0;
	color: var(--mf-black);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.35;
}

.mf-contact-card a:hover,
.mf-contact-card a:focus-visible {
	color: var(--mf-yellow);
}

.page-shell--center {
	display: grid;
	place-items: center;
	min-height: 520px;
	text-align: center;
}

.page-shell__header {
	max-width: 820px;
	margin-bottom: 42px;
}

.page-shell__header p:not(.mf-eyebrow) {
	color: var(--mf-charcoal);
}

.entry__thumbnail {
	margin-bottom: 36px;
	overflow: hidden;
	background: var(--mf-paper);
}

.entry__thumbnail img {
	width: 100%;
	max-height: 560px;
	object-fit: cover;
}

.entry-content {
	max-width: 820px;
	font-size: 17px;
}

.entry-content > * {
	margin-top: 0;
	margin-bottom: 1.35em;
}

.entry-content a {
	color: var(--mf-black);
	box-shadow: inset 0 -0.12em 0 var(--mf-yellow);
	font-weight: 700;
}

.entry-content h2,
.entry-content h3,
.comments-area h2 {
	font-family: var(--mf-font-title);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.05;
	text-transform: uppercase;
}

.post-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.post-card {
	background: var(--mf-white);
	border: 1px solid var(--mf-line);
}

.post-card__link {
	display: grid;
	height: 100%;
	color: inherit;
}

.post-card__thumb {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--mf-paper);
}

.post-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card__content {
	padding: 20px;
}

.post-card__content h2 {
	margin: 0 0 10px;
	font-family: var(--mf-font-title);
	font-size: 27px;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.05;
	text-transform: uppercase;
}

.post-card__content p {
	margin: 0;
	color: var(--mf-charcoal);
}

.navigation.pagination,
.post-navigation {
	margin-top: 42px;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.nav-links a,
.nav-links span {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0 14px;
	border: 1px solid var(--mf-line);
	font-weight: 800;
}

.nav-links .current,
.nav-links a:hover,
.nav-links a:focus-visible {
	border-color: var(--mf-yellow);
	background: var(--mf-yellow);
	color: var(--mf-black);
}

.search-form {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.search-field,
.comment-form input:not([type="submit"]),
.comment-form textarea {
	width: min(100%, 420px);
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid var(--mf-line);
	border-radius: 0;
	background: var(--mf-white);
	color: var(--mf-black);
}

.comment-form textarea {
	width: 100%;
	min-height: 150px;
}

.comments-area {
	max-width: 820px;
	margin-top: 60px;
	padding-top: 40px;
	border-top: 1px solid var(--mf-line);
}

@media (max-width: 1180px) {
	:root {
		--mf-pad: 24px;
	}

	.site-header__inner {
		grid-template-columns: minmax(180px, 230px) 1fr auto;
		gap: 18px;
	}

	.primary-navigation__list {
		gap: 18px;
	}

	.mf-hero h1 {
		font-size: 62px;
	}

	.mf-services__layout {
		grid-template-columns: 1fr;
	}

	.mf-services__intro {
		max-width: 560px;
	}

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

	.mf-detail-grid,
	.mf-gallery-grid--large {
		grid-template-columns: repeat(3, 1fr);
	}

	.mf-logo-wall,
	.mf-logo-wall--page {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

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

	.site-header__toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		justify-self: end;
	}

	.site-header__quote {
		display: none;
	}

	.primary-navigation {
		position: fixed;
		top: 69px;
		right: 0;
		bottom: 0;
		left: 0;
		display: none;
		padding: 22px var(--mf-pad);
		background: var(--mf-black);
	}

	.site-header.is-nav-open .primary-navigation {
		display: block;
	}

	.primary-navigation__list {
		display: grid;
		justify-content: stretch;
		gap: 0;
	}

	.primary-navigation__list a {
		min-height: 56px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		font-size: 22px;
	}

	.primary-navigation__list a::after {
		bottom: 0;
	}

	.mf-hero,
	.mf-hero__inner {
		min-height: 590px;
	}

	.mf-hero h1 {
		font-size: 54px;
	}

	.mf-hero__copy > p:not(.mf-kicker) {
		font-size: 18px;
	}

	.mf-compact-mark {
		display: none;
	}

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

	.mf-section-grid--about,
	.mf-section-grid--story,
	.mf-page-hero,
	.mf-narrative__block,
	.mf-why,
	.mf-quote-panel {
		grid-template-columns: 1fr;
		gap: 34px;
	}

	.mf-section-copy h2,
	.mf-section-head h2,
	.page-shell__header h1 {
		font-size: 44px;
	}

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

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

	.mf-timeline__item:nth-child(2),
	.mf-timeline--wide .mf-timeline__item:nth-child(even) {
		border-right: 0;
	}

	.mf-timeline__item:nth-child(-n+2),
	.mf-timeline--wide .mf-timeline__item:not(:last-child) {
		border-bottom: 1px solid var(--mf-line);
	}

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

	.mf-section-head--split {
		grid-template-columns: 1fr;
		align-items: start;
		gap: 18px;
	}

	.mf-logo-wall,
	.mf-logo-wall--page {
		grid-template-columns: repeat(3, 1fr);
	}

	.mf-style-slice,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.site-footer__menu {
		justify-content: flex-start;
	}

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

	.mf-page-hero h1 {
		font-size: 46px;
	}

	.mf-detail-grid,
	.mf-gallery-grid--large,
	.mf-contact__grid,
	.mf-logo-name-grid {
		grid-template-columns: repeat(2, 1fr);
	}

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

@media (max-width: 640px) {
	:root {
		--mf-pad: 18px;
	}

	.site-header__inner {
		min-height: 64px;
	}

	.mf-brand {
		width: 180px;
	}

	.primary-navigation {
		top: 64px;
	}

	.button,
	.wp-block-button__link,
	input[type="submit"] {
		width: 100%;
		min-height: 44px;
		padding-right: 16px;
		padding-left: 16px;
	}

	.mf-hero,
	.mf-hero__inner {
		min-height: 570px;
	}

	.mf-hero__inner {
		padding-top: 58px;
		padding-bottom: 50px;
	}

	.mf-hero__media::before {
		background:
			linear-gradient(90deg, rgba(17, 17, 17, 0.96) 0%, rgba(17, 17, 17, 0.78) 58%, rgba(17, 17, 17, 0.55) 100%),
			linear-gradient(0deg, rgba(17, 17, 17, 0.78), rgba(17, 17, 17, 0.16));
	}

	.mf-hero__media img {
		object-position: 62% 50%;
	}

	.mf-kicker::before {
		width: 28px;
		margin-right: 12px;
	}

	.mf-hero h1 {
		font-size: 43px;
	}

	.mf-hero__copy > p:not(.mf-kicker) {
		margin-top: 20px;
		font-size: 16px;
	}

	.mf-trust__grid,
	.mf-services__grid,
	.mf-timeline,
	.mf-gallery-grid,
	.mf-logo-wall,
	.mf-logo-wall--page,
	.post-list,
	.mf-detail-grid,
	.mf-contact__grid,
	.mf-logo-name-grid {
		grid-template-columns: 1fr;
	}

	.mf-trust__grid {
		gap: 24px;
	}

	.section-pad,
	.page-shell {
		padding-top: 58px;
		padding-bottom: 58px;
	}

	.mf-section-copy h2,
	.mf-section-head h2,
	.mf-services__intro h2,
	.page-shell__header h1,
	.mf-page-hero h1 {
		font-size: 36px;
	}

	.mf-page-hero {
		padding-top: 58px;
		padding-bottom: 58px;
	}

	.mf-page-hero__media {
		min-height: 220px;
	}

	.mf-founder-card {
		padding: 24px;
	}

	.mf-founder-card p,
	.mf-founder-quote p {
		font-size: 26px;
	}

	.mf-narrative__block {
		padding: 28px 0;
	}

	.mf-detail-card {
		grid-template-rows: 176px 1fr;
	}

	.mf-quote-panel {
		padding: 24px;
	}

	.mf-about__image,
	.mf-story__image {
		min-height: 230px;
	}

	.mf-service-card,
	.mf-service-card__content {
		min-height: 196px;
	}

	.mf-timeline__item,
	.mf-timeline__item:nth-child(2),
	.mf-timeline__item:last-child {
		border-right: 0;
		border-bottom: 1px solid var(--mf-line);
	}

	.mf-timeline__item:last-child {
		border-bottom: 0;
	}

	.mf-gallery-card {
		min-height: 220px;
	}

	.mf-logo-card {
		min-height: 126px;
		padding: 20px 16px 15px;
	}

	.mf-logo-card__logo {
		max-height: 62px;
	}

	.mf-logo-card--roundel .mf-logo-card__logo {
		width: 68px;
		height: 68px;
	}

	.mf-clients__actions {
		display: grid;
		justify-content: stretch;
	}

	.mf-style-slice__images {
		grid-template-columns: 1fr;
	}

	.site-footer__cta,
	.mf-style-slice__actions {
		display: grid;
	}
}
