:root {
	--wbtp-red: #b11226;
	--wbtp-orange: #e08a1e;
	--wbtp-cream: #fbf3e4;
	--wbtp-black: #14100b;
	--wbtp-brown: #221206;
}

html {
	scroll-behavior: smooth;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--wbtp-cream);
	color: var(--wbtp-brown);
	font-family: "Archivo", system-ui, sans-serif;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

a {
	color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 3px solid var(--wbtp-orange);
	outline-offset: 3px;
}

::selection {
	background: var(--wbtp-orange);
	color: var(--wbtp-black);
}

.site-main {
	display: block;
	width: 100%;
	min-width: 0;
}

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

.screen-reader-text:focus {
	top: 12px;
	left: 12px;
	z-index: 100000;
	width: auto;
	height: auto;
	padding: 12px 16px;
	margin: 0;
	overflow: visible;
	clip: auto;
	background: var(--wbtp-cream);
	color: var(--wbtp-black);
	font-weight: 800;
	white-space: normal;
}

.wbtp-fallback-header {
	background: var(--wbtp-cream);
	border-bottom: 2px solid var(--wbtp-black);
}

.wbtp-fallback-shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: min(100% - 44px, 1400px);
	min-height: 78px;
	margin-inline: auto;
}

.wbtp-fallback-brand {
	font-family: "Titan One", sans-serif;
	font-size: 1.25rem;
	text-decoration: none;
	text-transform: uppercase;
}

.wbtp-fallback-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 18px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.wbtp-fallback-menu a {
	font-size: 0.8125rem;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
}

.wbtp-fallback-menu a:hover {
	color: var(--wbtp-red);
}

.wbtp-fallback-footer {
	padding: 24px;
	background: var(--wbtp-black);
	color: var(--wbtp-cream);
	text-align: center;
}

.wbtp-fallback-footer p {
	margin: 0;
}

.wbtp-not-found {
	display: grid;
	place-items: center;
	align-content: center;
	min-height: 65vh;
	padding: 64px 22px;
	text-align: center;
}

.wbtp-not-found__eyebrow {
	margin: 0 0 16px;
	color: var(--wbtp-red);
	font-family: "Space Mono", monospace;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
}

.wbtp-not-found h1 {
	max-width: 780px;
	margin: 0;
	font-family: "Titan One", sans-serif;
	font-size: clamp(2.5rem, 8vw, 5.5rem);
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
}

.wbtp-not-found > p:not(.wbtp-not-found__eyebrow) {
	margin: 24px 0;
	font-size: 1.125rem;
}

.wbtp-fallback-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 28px;
	background: var(--wbtp-red);
	border: 2px solid var(--wbtp-black);
	border-radius: 8px;
	box-shadow: 4px 4px 0 var(--wbtp-black);
	color: var(--wbtp-cream);
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
}

@media (max-width: 700px) {
	.wbtp-fallback-shell {
		align-items: flex-start;
		flex-direction: column;
		padding-block: 20px;
	}

	.wbtp-fallback-menu {
		gap: 12px 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}
