@font-face {
	font-family: "Sora";
	src: url("../fonts/sora-variable.woff2") format("woff2");
	font-style: normal;
	font-weight: 100 800;
	font-display: swap;
}

@font-face {
	font-family: "Manrope";
	src: url("../fonts/manrope-variable.woff2") format("woff2");
	font-style: normal;
	font-weight: 200 800;
	font-display: swap;
}

:root {
	--apex-crimson: #a61b2b;
	--apex-crimson-dark: #751420;
	--apex-carbon: #17191c;
	--apex-carbon-soft: #24282d;
	--apex-bone: #f7f2e9;
	--apex-stone: #e7ded1;
	--apex-graphite: #50555b;
	--apex-white: #fffefc;
	--apex-border: #d2c7b8;
	--apex-success: #235a39;
	--apex-error: #8d1725;
	--apex-heading: Sora, Arial, sans-serif;
	--apex-body: Manrope, Arial, sans-serif;
	--apex-container: 1280px;
	--apex-gutter: clamp(1.25rem, 3vw, 3rem);
	--apex-section: clamp(5.5rem, 10vw, 10rem);
	--apex-header-height: 5.25rem;
	--apex-radius-xs: 3px;
	--apex-radius-sm: 6px;
	--apex-radius-md: 12px;
	--apex-shadow: 0 24px 70px rgb(23 25 28 / 12%);
	--apex-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	text-size-adjust: 100%;
}

body {
	margin: 0;
	min-width: 320px;
	background: var(--apex-bone);
	color: var(--apex-carbon);
	font-family: var(--apex-body);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

body.is-menu-open {
	overflow: hidden;
}

img,
picture,
svg,
video {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

button,
input,
textarea,
select {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.2em;
}

p,
ul,
ol,
blockquote,
figure {
	margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child,
blockquote:last-child,
figure:last-child {
	margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: var(--apex-heading);
	font-weight: 700;
	line-height: 1.02;
	letter-spacing: -0.045em;
	text-wrap: balance;
}

h1 {
	font-size: clamp(3.35rem, 7.3vw, 7.35rem);
	font-weight: 800;
	line-height: 0.93;
}

h2 {
	font-size: clamp(2.6rem, 5.7vw, 5.5rem);
	line-height: 0.96;
}

h3 {
	font-size: clamp(1.65rem, 2.6vw, 2.65rem);
	line-height: 1.05;
}

h4 {
	font-size: clamp(1.3rem, 2vw, 1.9rem);
}

h5 {
	font-size: 1.15rem;
}

h6 {
	font-size: 1rem;
}

::selection {
	background: var(--apex-crimson);
	color: var(--apex-white);
}

::-moz-selection {
	background: var(--apex-crimson);
	color: var(--apex-white);
}

.apex-section--crimson ::selection {
	background: var(--apex-white);
	color: var(--apex-crimson-dark);
}

.apex-section--crimson ::-moz-selection {
	background: var(--apex-white);
	color: var(--apex-crimson-dark);
}

:focus-visible {
	outline: 3px solid var(--apex-crimson);
	outline-offset: 4px;
}

.apex-section--dark :focus-visible,
.apex-section--crimson :focus-visible,
.apex-site-footer :focus-visible {
	outline-color: var(--apex-white);
}

.screen-reader-text {
	position: absolute !important;
	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: 0.5rem;
	left: 0.5rem;
	z-index: 100000;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	clip: auto;
	background: var(--apex-white);
	color: var(--apex-carbon);
}

.apex-skip-link {
	position: fixed;
	top: 0;
	left: 50%;
	z-index: 10000;
	padding: 0.8rem 1.2rem;
	background: var(--apex-white);
	color: var(--apex-carbon);
	font-weight: 700;
	transform: translate(-50%, -130%);
	transition: transform 180ms ease;
}

.apex-skip-link:focus {
	transform: translate(-50%, 0.5rem);
}

.apex-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	margin-bottom: 1.25rem;
	color: var(--apex-crimson-dark);
	font-size: 0.73rem;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.apex-eyebrow::before {
	width: 1.45rem;
	height: 2px;
	background: currentcolor;
	content: "";
}

.apex-eyebrow--light {
	color: var(--apex-white);
}

.apex-button,
.apex-header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	min-height: 3.5rem;
	padding: 0.9rem 1.35rem;
	border: 1px solid var(--apex-crimson);
	border-radius: var(--apex-radius-xs);
	background: var(--apex-crimson);
	color: var(--apex-white);
	font-size: 0.84rem;
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: 0.035em;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 240ms ease, border-color 240ms ease, color 240ms ease, transform 240ms var(--apex-ease);
}

.apex-button .apex-icon,
.apex-header-cta .apex-icon {
	width: 1.15rem;
	flex: 0 0 auto;
}

.apex-button:hover,
.apex-header-cta:hover {
	border-color: var(--apex-crimson-dark);
	background: var(--apex-crimson-dark);
}

.apex-button--light {
	border-color: var(--apex-white);
	background: var(--apex-white);
	color: var(--apex-crimson-dark);
}

.apex-button--light:hover {
	border-color: var(--apex-carbon);
	background: var(--apex-carbon);
	color: var(--apex-white);
}

.apex-button--light:hover .apex-icon {
	filter: brightness(0) invert(1);
}

.apex-icon {
	display: block;
	flex: 0 0 auto;
}

.apex-text-link {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	color: var(--apex-crimson-dark);
	font-weight: 800;
	text-decoration: underline;
	text-decoration-color: rgb(117 20 32 / 30%);
	transition: color 180ms ease, text-decoration-color 180ms ease;
}

.apex-text-link:hover {
	color: var(--apex-crimson);
	text-decoration-color: currentcolor;
}

.apex-text-link--dark {
	color: var(--apex-carbon);
}

.apex-button-group {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
}

.apex-honeypot {
	position: absolute;
	left: -9999px;
}

.entry-content > * {
	margin-block-start: 0;
	margin-block-end: 1.5rem;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-block-start: 2.5rem;
}

.entry-content a {
	color: var(--apex-crimson-dark);
}

.entry-content img {
	border-radius: var(--apex-radius-sm);
}
