:root {
	--mme-display-font: "Montserrat", "Segoe UI", system-ui, sans-serif;
	--mme-body-font: "Montserrat", "Segoe UI", system-ui, sans-serif;
	--mme-black: #070707;
	--mme-bg: #090909;
	--mme-surface: #101010;
	--mme-surface-2: #161616;
	--mme-cream: #f3f1ee;
	--mme-white: #ffffff;
	--mme-muted: #aaa5a1;
	--mme-border: rgba(255,255,255,0.10);
	--mme-border-strong: rgba(255,255,255,0.18);
	--mme-red: #e52323;
	--mme-red-deep: #a80000;
	--mme-red-shadow: #660000;
	--mme-red-glow: rgba(229,35,35,0.22);
	--mme-max: 1280px;
	--mme-radius-sm: 8px;
	--mme-radius-md: 16px;
	--mme-radius-lg: 28px;
}

* { box-sizing: border-box; }
html {
	overflow-x: hidden;
	scroll-behavior: smooth;
}
body {
	margin: 0;
	overflow-x: hidden;
	background: var(--mme-bg);
	color: var(--mme-cream);
	font-family: var(--mme-body-font);
	font-size: 16px;
	line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 2px solid var(--mme-red); outline-offset: 4px; }

.mme-skip-link {
	position: absolute;
	left: 16px;
	top: -80px;
	z-index: 1000;
	padding: 10px 14px;
	background: var(--mme-red);
	color: var(--mme-white);
}
.mme-skip-link:focus { top: 16px; }
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px,1px,1px,1px);
}

.mme-container {
	width: min(calc(100% - 40px), var(--mme-max));
	margin-inline: auto;
}
.mme-header {
	position: fixed;
	inset: 0 0 auto;
	z-index: 100;
	background: transparent;
	border-bottom: 1px solid transparent;
	transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.mme-header.is-scrolled,
body:not(.home) .mme-header {
	background: rgba(7,7,7,.86);
	backdrop-filter: blur(16px);
	border-color: var(--mme-border);
}
.mme-header__inner {
	width: min(calc(100% - 32px), var(--mme-max));
	min-height: 78px;
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}
.mme-logo {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: var(--mme-display-font);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}
.mme-logo img { width: 52px; height: 52px; object-fit: contain; }
.mme-nav ul {
	display: flex;
	align-items: center;
	gap: 26px;
	margin: 0;
	padding: 0;
	list-style: none;
}
.mme-nav a {
	color: var(--mme-muted);
	font-size: 14px;
	transition: color .2s ease;
}
.mme-nav a:hover,
.mme-nav .current-menu-item > a { color: var(--mme-white); }
.mme-nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--mme-border);
	border-radius: var(--mme-radius-sm);
	background: var(--mme-surface);
	color: var(--mme-white);
}
.mme-nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 20px;
	height: 2px;
	margin: 4px auto;
	background: currentColor;
}

.mme-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: flex-end;
	padding: 150px 0 96px;
	background: var(--mme-black);
	background-size: cover;
	background-position: center;
	overflow: hidden;
	--mme-hero-x: 50%;
	--mme-hero-y: 50%;
	--mme-hero-shift-x: 0px;
	--mme-hero-shift-y: 0px;
	perspective: 1200px;
	transform-style: preserve-3d;
}
.mme-hero::before,
.mme-hero::after {
	content: "";
	position: absolute;
	pointer-events: none;
}
.mme-hero::before {
	inset: -30px;
	z-index: 0;
	background-image: var(--mme-hero-image);
	background-size: cover;
	background-position: calc(50% + var(--mme-hero-shift-x)) calc(50% + var(--mme-hero-shift-y));
	filter: brightness(.58) contrast(1.08) saturate(.88);
	transform: translate3d(calc(var(--mme-hero-shift-x) * -0.45), calc(var(--mme-hero-shift-y) * -0.45), -36px) scale(1.08);
	transition: transform .28s ease, background-position .28s ease, filter .28s ease;
}
.mme-hero::after {
	inset: 0;
	z-index: 1;
	background: radial-gradient(circle at var(--mme-hero-x) var(--mme-hero-y), rgba(229,35,35,.22), transparent 24%);
	opacity: 0;
	transition: opacity .25s ease;
}
.mme-hero.is-pointer-active::before {
	filter: brightness(.64) contrast(1.12) saturate(.95);
	transform: translate3d(calc(var(--mme-hero-shift-x) * -0.55), calc(var(--mme-hero-shift-y) * -0.55), -22px) scale(1.11);
}
.mme-hero.is-pointer-active::after { opacity: 1; }
.mme-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	background:
		linear-gradient(90deg, rgba(7,7,7,.94), rgba(7,7,7,.72) 44%, rgba(7,7,7,.42)),
		linear-gradient(0deg, var(--mme-bg), transparent 38%);
}
.mme-hero__content {
	position: relative;
	z-index: 3;
	width: min(calc(100vw - 40px), 900px);
	max-width: min(calc(100vw - 40px), 900px);
	transform: translateZ(56px);
	transition: transform .28s ease;
}
.mme-hero.is-pointer-active .mme-hero__content { transform: translateZ(78px); }
.wp-block-cover.mme-hero {
	min-height: 100vh;
	padding: 150px 0 96px;
	align-items: flex-end;
}
.wp-block-cover.mme-hero .wp-block-cover__inner-container {
	position: relative;
	z-index: 3;
	color: inherit;
	width: 100%;
}
.wp-block-cover.mme-hero .wp-block-cover__image-background {
	filter: brightness(.58) contrast(1.08) saturate(.88);
	transform: translate3d(calc(var(--mme-hero-shift-x) * -0.45), calc(var(--mme-hero-shift-y) * -0.45), -36px) scale(1.08);
	transition: transform .28s ease, filter .28s ease;
	will-change: transform;
}
.wp-block-cover.mme-hero.is-pointer-active .wp-block-cover__image-background {
	filter: brightness(.64) contrast(1.12) saturate(.95);
	transform: translate3d(calc(var(--mme-hero-shift-x) * -0.55), calc(var(--mme-hero-shift-y) * -0.55), -22px) scale(1.11);
}
.mme-hero__content,
.mme-hero__content * {
	opacity: 1;
}
.mme-eyebrow {
	margin: 0 0 18px;
	color: var(--mme-red);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}
h1, h2, h3 {
	margin: 0;
	color: var(--mme-white);
	font-family: var(--mme-display-font);
	line-height: 1.04;
	letter-spacing: 0;
	overflow-wrap: anywhere;
}
h1 { max-width: 920px; font-size: clamp(48px, 7vw, 106px); }
h2 { font-size: clamp(32px, 4vw, 58px); }
h3 { font-size: 24px; }
p { color: var(--mme-muted); }
.mme-hero p:not(.mme-eyebrow) {
	max-width: 760px;
	margin: 24px 0 0;
	font-size: clamp(18px, 2vw, 22px);
}
.mme-hero h1 {
  max-width: 840px;
  font-size: clamp(42px, 5vw, 78px);
}
.mme-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.mme-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 20px;
	border: 1px solid var(--mme-red);
	border-radius: var(--mme-radius-sm);
	background: var(--mme-red);
	color: var(--mme-white);
	font-weight: 800;
	overflow-wrap: anywhere;
	box-shadow: 0 16px 44px var(--mme-red-glow);
	transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.mme-button:hover { transform: translateY(-2px); background: var(--mme-red-deep); border-color: var(--mme-red-deep); }
.mme-button--ghost { background: transparent; border-color: var(--mme-border-strong); box-shadow: none; }
.mme-button--ghost:hover { border-color: var(--mme-red); background: rgba(229,35,35,.08); }
.wp-block-button.mme-button {
	padding: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
}
.wp-block-button.mme-button .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 20px;
	border: 1px solid var(--mme-red);
	border-radius: var(--mme-radius-sm);
	background: var(--mme-red);
	color: var(--mme-white);
	font-weight: 800;
	box-shadow: 0 18px 50px var(--mme-red-glow);
	transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.mme-page-hero {
	padding: 170px 0 70px;
	background: radial-gradient(circle at 20% 10%, rgba(229,35,35,.13), transparent 28%), var(--mme-black);
	border-bottom: 1px solid var(--mme-border);
}
.mme-page-hero h1 {
	max-width: 980px;
	font-size: clamp(42px, 5.7vw, 82px);
}
.mme-page-hero p { max-width: 760px; font-size: 19px; }
.mme-section { padding: 96px 0; }
.mme-section--surface { background: var(--mme-surface); border-block: 1px solid var(--mme-border); }
.mme-split {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
	gap: 64px;
	align-items: start;
}
.mme-split > p { margin-top: 0; font-size: 19px; }
.mme-card-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-top: 34px;
}
.mme-card-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mme-card {
	min-width: 0;
	border: 1px solid var(--mme-border);
	border-radius: var(--mme-radius-sm);
	background: linear-gradient(180deg, var(--mme-surface-2), var(--mme-surface));
	overflow: hidden;
	transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.mme-card:hover {
	transform: translateY(-4px);
	border-color: rgba(229,35,35,.42);
	box-shadow: 0 22px 60px rgba(0,0,0,.32);
}
.mme-card h2,
.mme-card h3,
.mme-card p,
.mme-card a { margin-inline: 22px; }
.mme-card h2,
.mme-card h3 { margin-top: 22px; }
.mme-card p { margin-bottom: 22px; }
.mme-card a { display: inline-block; margin-bottom: 22px; color: var(--mme-red); font-weight: 800; }
.mme-solution-card img,
.mme-project-card img,
.mme-post-grid img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	filter: saturate(.82) contrast(1.08) brightness(.74);
}
.mme-feature-list,
.mme-capability-list {
	display: grid;
	gap: 12px;
}
.mme-feature,
.mme-capability-list div,
.mme-pill-grid span,
.mme-pill-grid p,
.mme-pill-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  align-items: stretch;
}

.mme-pill-grid > p,
.mme-pill-grid > span {
  width: 100%;
  min-height: 88px;
  margin: 0;
  padding: 22px 26px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  border: 1px solid var(--mme-border);
  border-radius: var(--mme-radius-sm);
  background: var(--mme-surface);
  color: var(--mme-cream);
  line-height: 1.35;
}

.mme-pill-grid > p:hover,
.mme-pill-grid > span:hover,
.mme-pill-grid > p:focus-within,
.mme-pill-grid > span:focus-within {
  transform: translateY(-4px);
  border-color: rgba(229,35,35,.42);
  background: linear-gradient(180deg, var(--mme-surface-2), var(--mme-surface));
  box-shadow: 0 22px 60px rgba(0,0,0,.32), 0 0 34px rgba(229,35,35,.08);
  color: var(--mme-white);
}
.mme-placeholder-card,
.mme-empty {
	border: 1px solid var(--mme-border);
	border-radius: var(--mme-radius-sm);
	background: var(--mme-surface);
	padding: 18px;
	color: var(--mme-cream);
	transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}
.mme-feature:hover,
.mme-feature:focus-within,
.mme-capability-list div:hover,
.mme-capability-list div:focus-within,
.mme-pill-grid span:hover,
.mme-pill-grid span:focus-within,
.mme-pill-grid p:hover,
.mme-pill-grid p:focus-within,
.mme-placeholder-card:hover,
.mme-placeholder-card:focus-within,
.mme-empty:hover,
.mme-empty:focus-within {
	transform: translateY(-4px);
	border-color: rgba(229,35,35,.42);
	background: linear-gradient(180deg, var(--mme-surface-2), var(--mme-surface));
	box-shadow: 0 22px 60px rgba(0,0,0,.32), 0 0 34px rgba(229,35,35,.08);
	color: var(--mme-white);
}
.mme-feature span {
	display: inline-block;
	width: 9px;
	height: 9px;
	margin-right: 12px;
	border-radius: 50%;
	background: var(--mme-red);
	box-shadow: 0 0 24px var(--mme-red-glow);
	transition: transform .22s ease, box-shadow .22s ease;
}
.mme-feature:hover span,
.mme-feature:focus-within span {
	transform: scale(1.2);
	box-shadow: 0 0 30px var(--mme-red-glow);
}
.mme-metrics,
.mme-process,
.mme-pill-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 30px;
}
.mme-client-wall {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 1px;
	margin-top: 30px;
	border: 1px solid var(--mme-border);
	background: var(--mme-border);
}
.mme-client-wall__item {
	display: grid;
	min-height: 110px;
	place-items: center;
	background: var(--mme-surface);
	padding: 20px;
	border: 1px solid transparent;
	transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.mme-client-wall__item img {
	max-width: 130px;
	max-height: 58px;
	object-fit: contain;
	filter: grayscale(1) brightness(1.4);
	opacity: .82;
	transition: filter .2s ease, opacity .2s ease, transform .2s ease;
}
.mme-client-wall__item:hover img {
	filter: none;
	opacity: 1;
	transform: translateY(-2px);
}
.mme-client-wall__item:hover,
.mme-client-wall__item:focus-within {
	transform: translateY(-4px);
	border-color: rgba(229,35,35,.42);
	background: var(--mme-surface-2);
	box-shadow: 0 22px 60px rgba(0,0,0,.32), 0 0 34px rgba(229,35,35,.08);
}
.mme-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	margin-top: 30px;
}
.mme-testimonial {
	display: grid;
	grid-template-columns: 82px 1fr;
	gap: 18px;
	padding: 22px;
}
.mme-testimonial img {
	width: 82px;
	height: 82px;
	border-radius: 50%;
	object-fit: cover;
	filter: saturate(.9) contrast(1.05);
}
.mme-testimonial blockquote {
	margin: 0;
	color: var(--mme-cream);
}
.mme-testimonial cite {
	display: block;
	margin-top: 14px;
	color: var(--mme-muted);
	font-style: normal;
}
.mme-metrics div,
.mme-process article {
	border-top: 1px solid var(--mme-border-strong);
	padding-top: 20px;
	transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease, padding .22s ease;
}
.mme-metrics div:hover,
.mme-metrics div:focus-within,
.mme-process article:hover,
.mme-process article:focus-within {
	transform: translateY(-4px);
	border-color: rgba(229,35,35,.58);
	background: rgba(255,255,255,.025);
	box-shadow: 0 22px 60px rgba(0,0,0,.28), 0 0 34px rgba(229,35,35,.08);
	padding-inline: 14px;
}
.mme-metrics strong {
	display: block;
	color: var(--mme-white);
	font-size: 56px;
	line-height: 1;
}
.mme-metrics div:hover strong,
.mme-metrics div:focus-within strong,
.mme-process article:hover span,
.mme-process article:focus-within span {
	color: var(--mme-red);
	text-shadow: 0 0 26px var(--mme-red-glow);
}
.mme-metrics span,
.mme-process span { color: var(--mme-muted); }
.mme-process h3 { margin-top: 16px; }
.mme-pill-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mme-contact-layout {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: 30px;
}
.mme-contact-cards { display: grid; gap: 16px; align-content: start; }
.mme-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	padding: 24px;
	border: 1px solid var(--mme-border);
	border-radius: var(--mme-radius-sm);
	background: var(--mme-surface);
}
.mme-form label { color: var(--mme-cream); font-weight: 700; }
.mme-form input,
.mme-form select,
.mme-form textarea {
	width: 100%;
	margin-top: 8px;
	border: 1px solid var(--mme-border-strong);
	border-radius: var(--mme-radius-sm);
	background: var(--mme-black);
	color: var(--mme-white);
	padding: 12px 13px;
}
.mme-form__wide,
.mme-consent,
.mme-form__error,
.mme-form button { grid-column: 1 / -1; }
.mme-consent { display: flex; gap: 10px; align-items: flex-start; color: var(--mme-muted); }
.mme-consent input { width: auto; margin-top: 7px; }
.mme-honeypot { position: absolute; left: -9999px; }
.mme-form__error { padding: 12px; border: 1px solid var(--mme-red); color: var(--mme-white); background: rgba(229,35,35,.12); }
.mme-filter {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.mme-filter button {
	border: 1px solid var(--mme-border);
	border-radius: 999px;
	background: transparent;
	color: var(--mme-muted);
	padding: 9px 14px;
	cursor: pointer;
}
.mme-filter button.is-active {
	border-color: var(--mme-red);
	color: var(--mme-white);
	background: rgba(229,35,35,.12);
}
.mme-content {
	max-width: 900px;
}
.mme-content a { color: var(--mme-red); text-decoration: underline; }
.mme-featured-image img { border-radius: var(--mme-radius-sm); margin-top: 40px; }
.mme-post-card img,
.mme-project-card img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}
.mme-cta {
	padding: 72px 0;
	background: linear-gradient(135deg, var(--mme-red-shadow), var(--mme-black) 48%, var(--mme-surface));
	border-block: 1px solid var(--mme-border);
}
.mme-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}
.mme-cta h2 { max-width: 760px; }
.mme-footer {
	background: var(--mme-black);
	border-top: 1px solid var(--mme-border);
}
.mme-footer__inner {
	width: min(calc(100% - 40px), var(--mme-max));
	margin-inline: auto;
	padding: 54px 0;
	display: grid;
	grid-template-columns: 1fr 1fr .7fr;
	gap: 34px;
}
.mme-footer__nav ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.mme-footer__bottom {
	width: min(calc(100% - 40px), var(--mme-max));
	margin-inline: auto;
	padding: 18px 0;
	border-top: 1px solid var(--mme-border);
	color: var(--mme-muted);
	font-size: 14px;
}

@media (pointer: fine) {
	body.mme-custom-cursor,
	body.mme-custom-cursor a,
	body.mme-custom-cursor button,
	body.mme-custom-cursor input,
	body.mme-custom-cursor select,
	body.mme-custom-cursor textarea,
	body.mme-custom-cursor label,
	body.mme-custom-cursor .mme-card,
	body.mme-custom-cursor .mme-feature,
	body.mme-custom-cursor .mme-filter button {
		cursor: none;
	}
	.mme-cursor,
	.mme-cursor-dot {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 100000;
		pointer-events: none;
		opacity: 1;
		transition: width .18s ease, height .18s ease, border-color .18s ease, background .18s ease, opacity .18s ease;
		will-change: transform;
	}
	.mme-cursor {
		width: 28px;
		height: 28px;
		border: 1px solid rgba(243,241,238,.62);
		border-radius: 999px;
		box-shadow: 0 0 22px rgba(229,35,35,.12);
	}
	.mme-cursor-dot {
		width: 4px;
		height: 4px;
		border-radius: 999px;
		background: var(--mme-red);
	}
	body.is-cursor-hovering .mme-cursor {
		width: 46px;
		height: 46px;
		border-color: rgba(229,35,35,.82);
		background: rgba(229,35,35,.08);
		box-shadow: 0 0 34px rgba(229,35,35,.2);
	}
	body.is-cursor-clicking .mme-cursor {
		width: 22px;
		height: 22px;
		border-color: var(--mme-red);
	}
	body.is-cursor-hidden .mme-cursor,
	body.is-cursor-hidden .mme-cursor-dot { opacity: 0; }
}

@media (max-width: 900px) 
{
	.mme-nav-toggle { display: block; }
	.mme-nav {
		position: fixed;
		inset: 78px 16px auto;
		display: none;
		padding: 18px;
		border: 1px solid var(--mme-border);
		border-radius: var(--mme-radius-sm);
		background: rgba(7,7,7,.96);
	}
	.mme-nav.is-open { display: block; }
	.mme-nav ul { display: grid; gap: 16px; }
	.mme-split,
	.mme-contact-layout,
	.mme-cta__inner,
	.mme-footer__inner { grid-template-columns: 1fr; display: grid; }
	.mme-card-grid,
	.mme-card-grid--two,
	.mme-metrics,
	.mme-process,
	.mme-pill-grid,
	.mme-client-wall,
	.mme-testimonial-grid { grid-template-columns: 1fr; }
	.mme-testimonial { grid-template-columns: 1fr; }
	.mme-form { grid-template-columns: 1fr; }
	.mme-pill-grid {
    grid-template-columns: 1fr;
  }
  .mme-pill-grid > p,
  .mme-pill-grid > span {
    min-height: auto;
  }
}

@media (max-width: 480px) {
	.mme-container { width: min(calc(100% - 28px), var(--mme-max)); }
	.mme-logo span { max-width: 150px; line-height: 1.2; }
	.mme-hero { min-height: 92vh; padding: 118px 0 64px; }
	.mme-hero__content {
		width: calc(100vw - 28px);
		max-width: calc(100vw - 28px);
	}
	h1,
	.mme-page-hero h1 { font-size: 34px; }
	.mme-hero p:not(.mme-eyebrow) { font-size: 16px; }
	.mme-section { padding: 70px 0; }
	.mme-actions { flex-direction: column; align-items: stretch; }
	.mme-button { width: 100%; }
}
