:root {
	--mmr-color-bg: #f5f7f8;
	--mmr-color-surface: #ffffff;
	--mmr-color-surface-soft: #eef4f1;
	--mmr-color-text: #17211d;
	--mmr-color-muted: #5b6862;
	--mmr-color-line: #dbe3df;
	--mmr-color-accent: #116149;
	--mmr-color-accent-dark: #0a4936;
	--mmr-color-accent-soft: #dff1e9;
	--mmr-color-warning: #7a4c12;
	--mmr-color-warning-bg: #fff5df;
	--mmr-font-body: "Noto Sans", "Segoe UI", Arial, sans-serif;
	--mmr-font-display: "Aptos Display", "Segoe UI", Arial, sans-serif;
	--mmr-space-1: 0.375rem;
	--mmr-space-2: 0.625rem;
	--mmr-space-3: 0.875rem;
	--mmr-space-4: 1.125rem;
	--mmr-space-5: 1.5rem;
	--mmr-space-6: 2rem;
	--mmr-space-7: 3rem;
	--mmr-space-8: 4.5rem;
	--mmr-radius-sm: 0.5rem;
	--mmr-radius-md: 0.875rem;
	--mmr-radius-lg: 1.25rem;
	--mmr-shadow-sm: 0 0.25rem 1rem rgba(23, 33, 29, 0.06);
	--mmr-shadow-md: 0 0.75rem 2.25rem rgba(23, 33, 29, 0.09);
	--mmr-container: 72rem;
	--mmr-content: 48rem;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	overflow-wrap: break-word;
	background: var(--mmr-color-bg);
	color: var(--mmr-color-text);
	font-family: var(--mmr-font-body);
	font-size: 1rem;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

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

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

img {
	display: block;
}

a {
	color: var(--mmr-color-accent);
	text-underline-offset: 0.16em;
}

a:hover {
	color: var(--mmr-color-accent-dark);
}

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

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

h1,
h2,
h3,
h4 {
	margin-top: 0;
	color: var(--mmr-color-text);
	font-family: var(--mmr-font-display);
	font-weight: 750;
	line-height: 1.18;
	text-wrap: balance;
}

h1 {
	font-size: clamp(2rem, 9vw, 4.25rem);
	letter-spacing: -0.045em;
}

h2 {
	font-size: clamp(1.55rem, 6vw, 2.5rem);
	letter-spacing: -0.03em;
}

h3 {
	font-size: clamp(1.1rem, 4vw, 1.35rem);
}

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

::selection {
	background: var(--mmr-color-accent-soft);
	color: var(--mmr-color-accent-dark);
}

:focus-visible {
	outline: 3px solid #e0a328;
	outline-offset: 3px;
}

.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 {
	z-index: 100000;
	top: 0.5rem;
	left: 0.5rem;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	clip: auto;
	background: var(--mmr-color-surface);
}

