/* About Us — full-page layout matching design screenshot */

.mkaacf-about-us {
	--about-ink: #111;
	--about-muted: #5c5c5c;
	--about-line: #e8e8e8;
	--about-band: #f3f3f3;
	display: block;
	width: 100%;
	background: #fff;
	color: var(--about-ink);
}

.mkaacf-about-us__hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	display: block;
	width: 100%;
	max-width: 100%;
	min-height: clamp(420px, 62vh, 640px);
	background-color: #0a0a0a;
	color: #fff;
}

.mkaacf-about-us__hero-img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: right center;
	pointer-events: none;
}

.mkaacf-about-us__hero-shade {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.28) 68%, rgba(0, 0, 0, 0.12) 100%),
		linear-gradient(0deg, rgba(0, 0, 0, 0.25), transparent 45%);
	pointer-events: none;
}

.mkaacf-about-us__hero-inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 1180px;
	min-height: clamp(420px, 62vh, 640px);
	margin: 0 auto;
	padding: clamp(72px, 10vw, 120px) clamp(16px, 3vw, 48px);
	box-sizing: border-box;
}

.mkaacf-about-us__hero-copy {
	max-width: 560px;
	width: 100%;
}

.mkaacf-about-us__hero-title {
	margin: 0 0 12px;
	font-size: clamp(2.25rem, 5vw, 3.5rem);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.05;
}

.mkaacf-about-us__hero-tagline {
	margin: 0 0 22px;
	font-size: clamp(1rem, 1.6vw, 1.25rem);
	font-weight: 600;
	letter-spacing: 0.01em;
	color: rgba(255, 255, 255, 0.92);
}

.mkaacf-about-us__hero-body .mkaacf-about-us__text {
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.9375rem;
	line-height: 1.7;
}

.mkaacf-about-us__hero-body .mkaacf-about-us__text + .mkaacf-about-us__text {
	margin-top: 14px;
}

.mkaacf-about-us__row {
	padding: clamp(56px, 8vw, 96px) 0;
	border-bottom: 1px solid var(--about-line);
}

.mkaacf-about-us__inner {
	width: min(1180px, calc(100% - clamp(32px, 6vw, 96px)));
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(28px, 5vw, 72px);
	align-items: center;
}

.mkaacf-about-us__copy {
	max-width: 520px;
}

.mkaacf-about-us__row--image-text .mkaacf-about-us__copy {
	justify-self: start;
}

.mkaacf-about-us__row--text-image .mkaacf-about-us__copy {
	justify-self: start;
}

.mkaacf-about-us__heading {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
}

.mkaacf-about-us__icon {
	display: inline-flex;
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	color: #111;
}

.mkaacf-about-us__icon svg {
	width: 100%;
	height: 100%;
}

.mkaacf-about-us__title {
	margin: 0;
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	font-weight: 800;
	letter-spacing: -0.015em;
	line-height: 1.15;
	color: #111;
}

.mkaacf-about-us__text {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.75;
	color: var(--about-muted);
}

.mkaacf-about-us__text + .mkaacf-about-us__text {
	margin-top: 14px;
}

.mkaacf-about-us__text strong {
	color: #111;
	font-weight: 700;
}

.mkaacf-about-us__media {
	min-width: 0;
}

.mkaacf-about-us__img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 2px;
	background: #ececec;
}

.mkaacf-about-us__commitment {
	background: var(--about-band);
	padding: clamp(56px, 8vw, 96px) 0;
}

.mkaacf-about-us__commitment-inner {
	width: min(1180px, calc(100% - clamp(32px, 6vw, 96px)));
	margin: 0 auto;
	display: grid;
	grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(28px, 5vw, 64px);
	align-items: center;
}

.mkaacf-about-us__commitment-img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 11;
	object-fit: cover;
	border-radius: 2px;
	background: #ddd;
}

.mkaacf-about-us__commitment-copy .mkaacf-about-us__title {
	margin-bottom: 18px;
}

@media (max-width: 900px) {
	.mkaacf-about-us__hero {
		min-height: 480px;
	}

	.mkaacf-about-us__hero-img {
		object-position: 70% center;
	}

	.mkaacf-about-us__hero-shade {
		background:
			linear-gradient(180deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.78) 55%, rgba(0, 0, 0, 0.88) 100%),
			linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 80%);
	}

	.mkaacf-about-us__inner,
	.mkaacf-about-us__commitment-inner {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.mkaacf-about-us__row--image-text .mkaacf-about-us__media {
		order: -1;
	}

	.mkaacf-about-us__copy {
		max-width: none;
	}
}
