:root {
	color-scheme: light;
	--ink: #171717;
	--muted: #666a70;
	--line: #dddfe2;
	--paper: #fbfbfa;
	--mbs: #f04b16;
	--max-width: 1240px;
	font-family: Arial, Helvetica, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	min-width: 320px;
	background: var(--paper);
}

body.bischof-transition {
	min-height: 100vh;
	margin: 0;
	color: var(--ink);
	background:
		linear-gradient(
			150deg,
			transparent 0 52%,
			rgba(23, 23, 23, 0.025) 52% 54%,
			transparent 54%
		),
		linear-gradient(
			30deg,
			transparent 0 76%,
			rgba(170, 31, 48, 0.035) 76% 78%,
			transparent 78%
		),
		var(--paper);
	display: flex;
	flex-direction: column;
}

.transition-page {
	width: min(var(--max-width), calc(100% - 48px));
	min-height: calc(100vh - 76px);
	margin: 0 auto;
	display: grid;
	grid-template-columns:
		minmax(180px, 0.72fr)
		minmax(340px, 1.32fr)
		minmax(330px, 1fr);
	align-items: center;
	gap: clamp(34px, 4.6vw, 76px);
	padding: 64px 0;
}

.brand,
.message {
	min-width: 0;
}

.brand--former {
	opacity: 0.78;
}

.brand--future {
	position: relative;
	overflow: hidden;
	padding: clamp(32px, 4vw, 56px);
	color: #fff;
	background:
		radial-gradient(circle at 100% 0%, rgba(240, 75, 22, 0.72), transparent 44%),
		linear-gradient(145deg, #17191d 0%, #252026 58%, #7a2d1b 100%);
	box-shadow: 0 26px 70px rgba(23, 25, 29, 0.18);
}

.brand--future::before {
	position: absolute;
	inset: auto -16% -24% 28%;
	width: 78%;
	aspect-ratio: 1.7;
	border: 1px solid rgba(255, 255, 255, 0.09);
	transform: rotate(-28deg);
	content: "";
	pointer-events: none;
}

.eyebrow {
	margin: 0 0 20px;
	color: var(--muted);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.brand--future .eyebrow,
.brand--future .external-note {
	position: relative;
	color: rgba(255, 255, 255, 0.72);
}

.brand__logo {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.brand__logo--bischof {
	max-width: 210px;
}

.brand__logo--mbs {
	position: relative;
	width: 100%;
	max-width: 390px;
	margin: -5% 0 -2%;
}

h1 {
	max-width: 680px;
	margin: 0;
	font-size: clamp(2.65rem, 5.2vw, 5.5rem);
	font-weight: 600;
	letter-spacing: -0.055em;
	line-height: 0.98;
}

.message__copy {
	max-width: 620px;
	margin: 32px 0 0;
	color: var(--muted);
	font-size: clamp(1rem, 1.25vw, 1.18rem);
	line-height: 1.75;
}

.cta {
	position: relative;
	display: inline-flex;
	min-height: 52px;
	margin-top: 28px;
	padding: 0 24px;
	align-items: center;
	justify-content: center;
	border: 2px solid #fff;
	background: #fff;
	color: #f04b16;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.045em;
	text-decoration: none;
	text-transform: uppercase;
	transition:
		background-color 160ms ease,
		color 160ms ease,
		transform 160ms ease;
}

.cta:hover,
.cta:focus-visible {
	background: transparent;
	color: #fff;
	transform: translateY(-2px);
}

.cta:focus-visible,
.site-footer a:focus-visible {
	outline: 3px solid rgba(240, 75, 22, 0.36);
	outline-offset: 4px;
}

.external-note {
	max-width: 300px;
	margin: 14px 0 0;
	font-size: 0.75rem;
	line-height: 1.5;
}

.site-footer {
	min-height: 76px;
	padding: 20px max(24px, calc((100vw - var(--max-width)) / 2));
	border-top: 1px solid var(--line);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	color: var(--muted);
	font-size: 0.76rem;
}

.site-footer nav {
	display: flex;
	gap: 24px;
}

.site-footer a {
	color: inherit;
	text-underline-offset: 4px;
}

@media (max-width: 980px) {
	.transition-page {
		grid-template-columns: 1fr;
		align-items: start;
		gap: 46px;
		padding: 52px 0 64px;
	}

	.brand--former {
		display: grid;
		grid-template-columns: 1fr auto;
		align-items: center;
		gap: 24px;
		padding-bottom: 30px;
		border-bottom: 1px solid var(--line);
	}

	.brand--former .eyebrow {
		margin: 0;
	}

	.brand__logo--bischof {
		width: 140px;
	}

	.brand--future {
		padding: clamp(30px, 8vw, 56px);
	}

	.brand__logo--mbs {
		max-width: 470px;
	}
}

@media (max-width: 560px) {
	.transition-page {
		width: min(100% - 32px, var(--max-width));
	}

	.brand--former {
		grid-template-columns: 1fr;
	}

	.brand--future {
		margin-inline: -16px;
		padding-inline: 24px;
	}

	.site-footer {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cta {
		transition: none;
	}
}
