:root {
	--hwm-blue: #0057d9;
	--hwm-blue-dark: #003d99;
	--hwm-accent: #00a3ff;
	--hwm-ink: #111827;
	--hwm-muted: #5f6b7a;
	--hwm-line: #dfe6ef;
	--hwm-bg: #f7f9fc;
	--hwm-paper: #ffffff;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--hwm-paper);
	color: var(--hwm-ink);
	font-family: "Montserrat", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

a {
	color: inherit;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

img {
	display: block;
	height: auto;
	max-width: 100%;
}

.container {
	margin: 0 auto;
	max-width: 1180px;
	padding: 0 24px;
	width: 100%;
}

.skip-link,
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.skip-link:focus {
	clip: auto;
	background: var(--hwm-ink);
	color: #fff;
	height: auto;
	left: 16px;
	padding: 10px 14px;
	top: 16px;
	width: auto;
	z-index: 1000;
}

.site-header {
	background: #fff;
	border-bottom: 1px solid var(--hwm-line);
	position: sticky;
	top: 0;
	z-index: 50;
}

.header-inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	min-height: 84px;
}

.site-title {
	color: var(--hwm-blue);
	font-size: 1.25rem;
	font-weight: 800;
	text-decoration: none;
	text-transform: uppercase;
}

.custom-logo {
	max-height: 58px;
	width: auto;
}

.primary-nav ul,
.footer-menu {
	display: flex;
	gap: 28px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-nav a {
	color: var(--hwm-ink);
	font-size: .92rem;
	font-weight: 700;
	text-decoration: none;
}

.primary-nav a:hover {
	color: var(--hwm-blue);
}

.nav-toggle {
	background: transparent;
	border: 0;
	display: none;
	flex-direction: column;
	gap: 5px;
	padding: 8px;
}

.nav-toggle span:not(.screen-reader-text) {
	background: var(--hwm-blue);
	display: block;
	height: 3px;
	width: 26px;
}

.hero {
	background: linear-gradient(135deg, var(--hwm-blue), var(--hwm-blue-dark));
	color: #fff;
	overflow: hidden;
	padding: 92px 0 84px;
}

.hero-grid {
	align-items: center;
	display: grid;
	gap: 56px;
	grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
}

.eyebrow,
.section-kicker,
.footer-kicker,
.entry-meta {
	color: var(--hwm-accent);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: 0;
	margin: 0 0 12px;
	text-transform: uppercase;
}

.hero .eyebrow {
	color: #bfe8ff;
}

h1,
h2,
h3 {
	line-height: 1.12;
	margin: 0;
}

h1 {
	font-size: clamp(2.7rem, 6vw, 5.7rem);
	font-weight: 800;
	max-width: 760px;
}

h2 {
	font-size: clamp(2rem, 4vw, 3.6rem);
	font-weight: 800;
}

h3 {
	font-size: 1.25rem;
	font-weight: 800;
}

.hero-text {
	color: #e7f3ff;
	font-size: 1.16rem;
	margin: 26px 0 34px;
	max-width: 690px;
}

.button {
	align-items: center;
	border-radius: 4px;
	display: inline-flex;
	font-weight: 800;
	justify-content: center;
	min-height: 48px;
	padding: 12px 20px;
	text-decoration: none;
}

.button-light {
	background: #fff;
	color: var(--hwm-blue);
}

.print-panel {
	aspect-ratio: 1 / .78;
	position: relative;
}

.print-sheet {
	background: #fff;
	box-shadow: 0 30px 80px rgba(0, 20, 64, .34);
	position: absolute;
}

.sheet-one {
	inset: 10% 12% 6% 8%;
}

.sheet-two {
	inset: 0 4% 20% 24%;
	opacity: .9;
	transform: rotate(5deg);
}

.sheet-three {
	inset: 24% 30% 0 0;
	opacity: .86;
	transform: rotate(-7deg);
}

.print-sheet::before,
.print-sheet::after {
	content: "";
	display: block;
	margin: 12%;
}

.print-sheet::before {
	background: var(--hwm-blue);
	height: 10%;
}

.print-sheet::after {
	background: repeating-linear-gradient(to bottom, #d8e2ef 0 7px, transparent 7px 18px);
	height: 42%;
}

.services-section,
.posts-section,
.content-section {
	padding: 82px 0;
}

.services-section {
	background: var(--hwm-bg);
}

.services-grid {
	align-items: end;
	display: grid;
	gap: 42px;
	grid-template-columns: .9fr 1.1fr;
}

.services-grid p:last-child {
	color: var(--hwm-muted);
	font-size: 1.08rem;
	margin: 0;
}

.service-list {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(3, 1fr);
	margin-top: 44px;
}

.service-list article,
.post-card {
	background: #fff;
	border: 1px solid var(--hwm-line);
	border-radius: 8px;
}

.service-list article {
	padding: 28px;
}

.service-list p {
	color: var(--hwm-muted);
	margin: 12px 0 0;
}

.section-heading {
	margin-bottom: 30px;
}

.post-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, 1fr);
}

.post-card {
	overflow: hidden;
	transition: transform .18s ease, box-shadow .18s ease;
}

.post-card:hover {
	box-shadow: 0 18px 38px rgba(0, 36, 96, .12);
	transform: translateY(-3px);
}

.post-card-link {
	display: block;
	height: 100%;
	text-decoration: none;
}

.post-card-image,
.post-card-placeholder {
	aspect-ratio: 16 / 10;
	background: linear-gradient(135deg, var(--hwm-blue), var(--hwm-accent));
}

.post-card-image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.post-card-body {
	padding: 24px;
}

.post-card-body p:last-child {
	color: var(--hwm-muted);
	margin-bottom: 0;
}

.archive-header {
	background: var(--hwm-bg);
	padding: 70px 0;
}

.narrow-content {
	max-width: 820px;
}

.entry-content {
	margin-top: 28px;
}

.entry-content p,
.entry-content li {
	color: #2e3642;
}

.entry-content a {
	color: var(--hwm-blue);
	font-weight: 700;
}

.entry-image {
	margin-top: 30px;
}

.entry-image img {
	border-radius: 8px;
}

.post-nav,
.pagination-wrap {
	margin-top: 42px;
}

.post-nav {
	display: flex;
	gap: 20px;
	justify-content: space-between;
}

.site-footer {
	background: #071d3d;
	color: #fff;
	padding: 62px 0 24px;
}

.footer-grid {
	display: grid;
	gap: 32px;
	grid-template-columns: 1fr 1fr;
}

.footer-kicker {
	color: #8ad7ff;
}

address {
	color: #c7d7ec;
	font-style: normal;
	margin-top: 18px;
}

.footer-actions {
	justify-self: end;
}

.footer-menu {
	flex-wrap: wrap;
	justify-content: flex-end;
}

.footer-menu a {
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}

.footer-widgets {
	color: #c7d7ec;
	margin-top: 24px;
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,.16);
	color: #9eb4cf;
	margin-top: 42px;
	padding-top: 20px;
}

.footer-bottom p {
	margin: 0;
}

input[type="search"],
input[type="text"],
input[type="email"],
textarea {
	border: 1px solid var(--hwm-line);
	border-radius: 4px;
	font: inherit;
	padding: 12px 14px;
	width: 100%;
}

input[type="submit"],
button[type="submit"] {
	background: var(--hwm-blue);
	border: 0;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-weight: 800;
	padding: 12px 18px;
}

@media (max-width: 860px) {
	.header-inner {
		min-height: 72px;
	}

	.nav-toggle {
		display: flex;
	}

	.primary-nav {
		background: #fff;
		border-top: 1px solid var(--hwm-line);
		display: none;
		left: 0;
		padding: 18px 24px;
		position: absolute;
		right: 0;
		top: 72px;
	}

	.primary-nav.is-open {
		display: block;
	}

	.primary-nav ul {
		flex-direction: column;
		gap: 14px;
	}

	.hero {
		padding: 64px 0;
	}

	.hero-grid,
	.services-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.print-panel {
		min-height: 260px;
	}

	.service-list,
	.post-grid {
		grid-template-columns: 1fr;
	}

	.footer-actions {
		justify-self: start;
	}

	.footer-menu {
		justify-content: flex-start;
	}
}

@media (max-width: 520px) {
	.container {
		padding: 0 18px;
	}

	h1 {
		font-size: 2.55rem;
	}

	.services-section,
	.posts-section,
	.content-section {
		padding: 58px 0;
	}
}
