*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}

body {
	margin: 0;
	font-family: var(--bm-body);
	font-size: var(--bm-fs-base);
	font-weight: 400;
	line-height: 1.65;
	color: var(--bm-text);
	background: var(--bm-white);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition: opacity var(--bm-duration) var(--bm-ease), color var(--bm-duration) var(--bm-ease);
}

a:hover {
	opacity: 0.85;
}

:focus-visible {
	outline: 2px solid var(--bm-ink);
	outline-offset: 3px;
}

.bm-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 10000;
	background: var(--bm-ink);
	color: var(--bm-white);
	padding: 0.75rem 1rem;
}

.bm-skip:focus {
	left: 1rem;
	top: 1rem;
}

.bm-container {
	width: min(100% - (var(--bm-gutter) * 2), var(--bm-container));
	margin-inline: auto;
}

.bm-section {
	padding-block: clamp(1.75rem, 4vw, 3.25rem);
}

.bm-section--paper {
	background: var(--bm-white);
}

.bm-section--dark {
	background: var(--bm-ink);
	color: var(--bm-white);
}

.bm-section--dark h1,
.bm-section--dark h2,
.bm-section--dark h3 {
	color: var(--bm-white);
}

h1, h2, h3, h4 {
	font-family: var(--bm-display);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--bm-ink);
	margin: 0 0 0.75em;
}

h1 { font-size: var(--bm-fs-hero); }
h2 { font-size: var(--bm-fs-2xl); }
h3 { font-size: var(--bm-fs-xl); }
h4 { font-size: var(--bm-fs-lg); }

p {
	margin: 0 0 1.1em;
}

.bm-lede {
	font-size: clamp(1rem, 1.5vw, 1.125rem);
	color: var(--bm-muted);
	max-width: 40rem;
	margin-inline: auto;
	text-align: center;
}

.bm-eyebrow {
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--bm-muted);
	margin: 0 0 0.75rem;
}

.bm-reveal {
	opacity: 0;
	transform: translateY(16px);
	transition: opacity 0.6s var(--bm-ease), transform 0.6s var(--bm-ease);
}

.bm-reveal.is-visible {
	opacity: 1;
	transform: none;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

body.has-sticky-cta {
	padding-bottom: 5.25rem;
}

@media (min-width: 769px) {
	body.has-sticky-cta {
		padding-bottom: 0;
	}
}
