:root {
	--el-color-red: #d62828;
	--el-color-red-hover: #b91f24;
	--el-color-black: #0d0e10;
	--el-color-charcoal: #17191d;
	--el-color-surface: #222429;
	--el-color-white: #fff;
	--el-color-light: #f4f5f6;
	--el-color-muted: #6b7280;
	--el-color-border: #3b3e45;
	--el-content-width: 1200px;
	--el-radius-sm: 4px;
	--el-radius-md: 8px;
	--el-space-xs: 8px;
	--el-space-sm: 12px;
	--el-space-md: 24px;
	--el-space-lg: 32px;
	--el-space-xl: 48px;
	--el-space-2xl: 64px;
	--el-space-section: 96px;
	--el-font-sans: inter, "Arial Narrow", arial, sans-serif;
}

.el-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 14px 26px;
	border: 1px solid transparent;
	border-radius: var(--el-radius-sm);
	background: var(--el-color-red);
	color: var(--el-color-white);
	font-family: var(--el-font-sans);
	font-size: 0.875rem;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition:
		background-color 160ms ease,
		border-color 160ms ease,
		transform 160ms ease;
}

.el-button:hover {
	background: var(--el-color-red-hover);
	color: var(--el-color-white);
	transform: translateY(-1px);
}

.el-button:focus-visible {
	outline: 2px solid var(--el-color-white);
	outline-offset: 3px;
	box-shadow: 0 0 0 5px var(--el-color-red);
}

.el-button--secondary {
	border-color: var(--el-color-border);
	background: transparent;
}

.el-button--secondary:hover {
	border-color: var(--el-color-white);
	background: var(--el-color-surface);
}

.el-eyebrow {
	margin: 0 0 var(--el-space-sm);
	color: var(--el-color-red);
	font-family: var(--el-font-sans);
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-transform: uppercase;
}

.el-heading {
	margin: 0;
	font-family: var(--el-font-sans);
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 900;
	letter-spacing: -0.025em;
	line-height: 0.98;
	text-transform: uppercase;
}

@media (max-width: 767px) {

	:root {
		--el-space-section: 64px;
	}

	.el-button {
		width: 100%;
	}
}
