/* MTT Page Hero — Frontend styles */

.mtt-page-hero {
	position: relative;
	background: #131d3a;
	padding: 88px 0 80px;
	overflow: hidden;
}

/* Background image */
.mtt-page-hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.18;
}

/* Gradient overlay */
.mtt-page-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(19, 29, 58, 0.85) 0%, rgba(38, 55, 101, 0.7) 100%);
}

/* Content */
.mtt-page-hero-content {
	position: relative;
	z-index: 1;
	color: #fff;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
}

/* Logo — top-right corner of content */
.mtt-page-hero .mtt-page-hero-logo {
	position: absolute;
	top: 0;
	right: 32px;
	width: 200px;
	height: auto;
	z-index: 2;
}

/* Eyebrow */
.mtt-page-hero .mtt-page-hero-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
	padding: 8px 16px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 999px;
	margin-bottom: 24px;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

.mtt-page-hero-pulse {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: oklch(0.78 0.12 75);
	box-shadow: 0 0 0 0 oklch(0.78 0.12 75);
	animation: mtt-page-hero-pulse 2s infinite;
}

@keyframes mtt-page-hero-pulse {
	0% { box-shadow: 0 0 0 0 rgba(232, 178, 92, 0.6); }
	70% { box-shadow: 0 0 0 10px rgba(232, 178, 92, 0); }
	100% { box-shadow: 0 0 0 0 rgba(232, 178, 92, 0); }
}

/* Title */
.mtt-page-hero h1.mtt-page-hero-title {
	font-family: 'Fraunces', Georgia, serif;
	font-size: clamp(44px, 6vw, 72px);
	font-weight: 400;
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: #fff;
	margin: 0 0 18px 0;
}

.mtt-page-hero h1.mtt-page-hero-title em {
	font-style: normal;
	color: oklch(0.78 0.12 75);
	font-weight: 400;
}

/* Subtitle */
.mtt-page-hero p.mtt-page-hero-sub {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.82);
	max-width: 560px;
	line-height: 1.6;
	margin: 0;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Responsive */
@media (max-width: 1024px) {
	/* Logo stacks under the eyebrow */
	.mtt-page-hero .mtt-page-hero-logo {
		position: static;
		display: block;
		width: 175px;
		margin: 0 0 24px;
	}
}

@media (max-width: 640px) {
	.mtt-page-hero {
		padding: 60px 0 56px;
	}

	.mtt-page-hero-content {
		padding: 0 20px;
	}

	.mtt-page-hero h1.mtt-page-hero-title {
		font-size: clamp(32px, 8vw, 44px);
	}

	.mtt-page-hero p.mtt-page-hero-sub {
		font-size: 16px;
	}

	.mtt-page-hero .mtt-page-hero-logo {
		width: 150px;
	}
}
