:root {
	--ink: #1d2d35;
	--muted: #5e6a70;
	--paper: #f8f7f2;
	--surface: #ffffff;
	--line: #d8ddda;
	--accent: #0e6f68;
	--accent-dark: #07544f;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 17px;
	line-height: 1.6;
}

.site-header {
	color: #fff;
	background: var(--ink);
	border-bottom: 4px solid var(--accent);
}

.site-header__inner,
.site-shell,
.site-footer__inner {
	width: min(1160px, calc(100% - 40px));
	margin: 0 auto;
}

.site-header__inner {
	display: flex;
	align-items: center;
	gap: 38px;
	min-height: 104px;
}

.site-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 0 0 auto;
	color: inherit;
	text-decoration: none;
	font-family: "Trebuchet MS", sans-serif;
}

.site-brand__logo {
	height: 64px;
	width: auto;
}

.site-brand__name {
	display: block;
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.1;
}

.site-brand__type {
	display: block;
	margin-top: 4px;
	color: #c8d7d3;
	font-size: 12px;
	letter-spacing: 0;
	text-transform: uppercase;
}

.site-burger {
	display: none;
	flex: 0 0 auto;
	margin-left: auto;
	padding: 8px;
	color: inherit;
	background: none;
	border: 0;
	cursor: pointer;
}
.site-burger__box {
	display: block;
	position: relative;
	width: 26px;
	height: 20px;
}
.site-burger__box::before,
.site-burger__box::after,
.site-burger__inner {
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background: #fff;
	transition:
		transform 0.2s ease,
		opacity 0.2s ease;
}
.site-burger__box::before {
	top: 0;
}
.site-burger__inner {
	top: 9px;
}
.site-burger__box::after {
	bottom: 0;
}
.site-burger[aria-expanded="true"] .site-burger__box::before {
	transform: translateY(9px) rotate(45deg);
}
.site-burger[aria-expanded="true"] .site-burger__box::after {
	transform: translateY(-9px) rotate(-45deg);
}
.site-burger[aria-expanded="true"] .site-burger__inner {
	opacity: 0;
}

.site-navigation {
	margin-left: auto;
}
.site-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.site-navigation > ul {
	display: flex;
	align-items: center;
	gap: 6px;
}
.site-navigation li {
	position: relative;
	margin-top: 0;
}
.site-navigation a {
	display: block;
	padding: 9px 11px;
	color: #fff;
	font-family: "Trebuchet MS", sans-serif;
	font-size: 14px;
	line-height: 1.25;
	text-decoration: none;
}
.site-navigation > ul > li > a:hover,
.site-navigation > ul > li > a:focus-visible {
	color: #fff;
	background: var(--accent);
}
.site-navigation .sp-dropdown {
	position: absolute;
	z-index: 10;
	top: 100%;
	right: 0;
	display: none;
	width: 280px;
	padding: 7px;
	background: var(--surface);
	border: 1px solid var(--line);
	box-shadow: 0 10px 24px rgb(29 45 53 / 18%);
}
.site-navigation li:hover > .sp-dropdown,
.site-navigation li:focus-within > .sp-dropdown {
	display: block;
}
.site-navigation .sp-dropdown a {
	color: var(--ink);
}
.site-navigation .sp-dropdown a:hover,
.site-navigation .sp-dropdown a:focus-visible {
	color: #fff;
	background: var(--accent);
}
.site-navigation .sp-toggle {
	display: none;
}
.site-navigation a[data-missing-page="true"]::after {
	content: "*";
	margin-left: 3px;
	color: #ffcf70;
}

.site-shell {
	min-height: calc(100vh - 185px);
	padding: 52px 0 70px;
}

h1,
h2,
h3 {
	font-family: "Trebuchet MS", sans-serif;
	line-height: 1.22;
}
h1 {
	max-width: 950px;
	margin: 0 0 28px;
	color: var(--accent-dark);
	font-size: 36px;
}
h2 {
	margin: 35px 0 13px;
	font-size: 25px;
}
h3 {
	margin: 28px 0 10px;
	font-size: 20px;
}
main {
	max-width: 960px;
}
p {
	margin: 0 0 18px;
}
ul,
ol {
	padding-left: 28px;
	margin: 0 0 20px;
}
li + li {
	margin-top: 7px;
}
a {
	color: var(--accent-dark);
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}
a:hover {
	color: var(--accent);
}
table {
	width: 100%;
	margin: 24px 0;
	border-collapse: collapse;
	background: var(--surface);
}
th,
td {
	padding: 10px 12px;
	text-align: left;
	vertical-align: top;
	border: 1px solid var(--line);
}
th {
	font-family: "Trebuchet MS", sans-serif;
	background: #e7f0ed;
}

.notice {
	padding: 20px 24px;
	background: #fff9e9;
	border-left: 4px solid #b77816;
}

.site-footer {
	color: #d9e4e0;
	background: var(--ink);
}
.site-footer__inner {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 22px 0;
	font-family: "Trebuchet MS", sans-serif;
	font-size: 14px;
}
.site-footer a {
	color: #fff;
}

@media (max-width: 820px) {
	.site-header__inner {
		display: flex;
		flex-wrap: wrap;
		padding: 22px 0 12px;
	}
	.site-burger {
		display: block;
	}
	.site-navigation {
		flex-basis: 100%;
		margin: 18px 0 0;
		max-height: 0;
		overflow: hidden;
	}
	.site-navigation.is-open {
		max-height: 2000px;
	}
	.site-navigation > ul {
		flex-direction: column;
		align-items: stretch;
	}
	.site-navigation li {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.site-navigation > ul > li > a {
		flex: 1 1 auto;
	}
	.site-navigation .sp-toggle {
		display: block;
		flex: 0 0 auto;
		width: 40px;
		height: 40px;
		color: #fff;
		background: none;
		border: 0;
		cursor: pointer;
	}
	.site-navigation .sp-toggle::after {
		content: "\25be";
		display: block;
		font-size: 18px;
		transition: transform 0.2s ease;
	}
	.site-navigation li.sp-item--open > .sp-toggle::after {
		transform: rotate(180deg);
	}
	.site-navigation .sp-dropdown {
		position: static;
		flex-basis: 100%;
		display: none;
		width: auto;
		margin-top: 6px;
		box-shadow: none;
	}
	.site-navigation li:hover > .sp-dropdown,
	.site-navigation li:focus-within > .sp-dropdown {
		display: none;
	}
	.site-navigation li.sp-item--open > .sp-dropdown {
		display: block;
	}
	.site-shell {
		padding-top: 36px;
	}
	h1 {
		font-size: 30px;
	}
}

@media (max-width: 520px) {
	body {
		font-size: 16px;
	}
	.site-header__inner,
	.site-shell,
	.site-footer__inner {
		width: min(100% - 28px, 1160px);
	}
	.site-footer__inner {
		display: block;
	}
	.site-footer a {
		display: inline-block;
		margin-top: 8px;
	}
	th,
	td {
		padding: 8px;
	}
}
