:root {
	--ink: #263238;
	--muted: #5c6f76;
	--paper: #f7fbf8;
	--surface: #ffffff;
	--blue-soft: #e7f6fc;
	--green-soft: #eef8e9;
	--yellow-soft: #fff5c7;
	--coral-soft: #ffe8e1;
	--blue: #24739a;
	--green: #4f8f43;
	--yellow: #c28a00;
	--coral: #c94f3c;
	--line: #dfe9e5;
	--shadow: 0 16px 40px rgba(38, 50, 56, 0.08);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--paper);
	font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
	font-size: 17px;
	line-height: 1.65;
}

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

a {
	color: var(--blue);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

a:hover {
	color: #174d68;
}

a:focus-visible,
button:focus-visible {
	outline: 3px solid #1f8bb9;
	outline-offset: 3px;
}

h1,
h2,
h3,
p {
	margin-top: 0;
}

h1,
h2,
h3 {
	line-height: 1.15;
}

h1 {
	max-width: 860px;
	margin-right: auto;
	margin-left: auto;
	font-size: 3.9rem;
}

h2 {
	margin-bottom: 0.65rem;
	font-size: 2.55rem;
}

h3 {
	margin-bottom: 0.55rem;
	font-size: 1.18rem;
}

ul {
	padding-left: 1.25rem;
}

.container {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.96);
	border-bottom: 1px solid var(--line);
}

.header-inner {
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: 74px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--ink);
	font-weight: 800;
	text-decoration: none;
}

.brand img {
	width: 132px;
}

.brand span {
	font-size: 1.15rem;
}

.site-nav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 4px;
	margin-left: auto;
}

.site-nav a {
	padding: 8px 10px;
	color: var(--ink);
	border-radius: 8px;
	font-size: 0.95rem;
	font-weight: 700;
	text-decoration: none;
}

.site-nav a:hover {
	background: var(--blue-soft);
}

.menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	margin-left: auto;
	color: var(--ink);
	background: var(--surface);
	border: 2px solid var(--line);
	border-radius: 8px;
	cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
	display: block;
	width: 20px;
	height: 2px;
	background: currentColor;
	border-radius: 2px;
}

.menu-lines {
	position: relative;
}

.menu-lines::before,
.menu-lines::after {
	position: absolute;
	left: 0;
	content: "";
}

.menu-lines::before {
	top: -6px;
}

.menu-lines::after {
	top: 6px;
}

.hero {
	padding: clamp(34px, 6vw, 70px) 0 clamp(24px, 4vw, 46px);
	text-align: center;
	background: var(--blue-soft);
	border-bottom: 1px solid var(--line);
}

.hero-logo {
	width: min(1000px, 100%);
	margin: 0 auto 22px;
	border-radius: 8px;
}

.eyebrow,
.section-kicker,
.document-type {
	margin-bottom: 0.45rem;
	color: var(--coral);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.lead {
	max-width: 760px;
	margin: 0 auto 1.4rem;
	color: #43545a;
	font-size: 1.24rem;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 10px 16px;
	color: #ffffff;
	background: var(--blue);
	border: 2px solid var(--blue);
	border-radius: 8px;
	font-weight: 800;
	text-decoration: none;
}

.button:hover {
	color: #ffffff;
	background: #185b79;
	border-color: #185b79;
}

.button-secondary {
	color: var(--ink);
	background: var(--surface);
	border-color: var(--line);
}

.button-secondary:hover {
	color: var(--ink);
	background: var(--yellow-soft);
	border-color: #ecd77d;
}

.photo-section {
	padding: 34px 0 42px;
	background: #ffffff;
	border-bottom: 1px solid var(--line);
}

.photo-section .section-header {
	margin-bottom: 18px;
}

.photo-banner {
	overflow: hidden;
	background: var(--green-soft);
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.photo-banner-image {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 7;
	max-height: 520px;
	object-fit: cover;
	background: var(--green-soft);
	transition: opacity 240ms ease;
}

.photo-banner-image.is-fading {
	opacity: 0;
}

.photo-banner-controls {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	padding: 12px;
	background: var(--surface);
	border-top: 1px solid var(--line);
}

.photo-control {
	min-height: 40px;
	padding: 8px 13px;
	color: var(--ink);
	background: var(--blue-soft);
	border: 1px solid #c7e4f0;
	border-radius: 8px;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
}

.photo-control:hover {
	background: var(--yellow-soft);
	border-color: #ecd77d;
}

.quick-facts {
	padding: 18px 0;
	background: var(--surface);
	border-bottom: 1px solid var(--line);
}

.fact-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin: 0;
}

.fact {
	min-height: 112px;
	padding: 16px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-left-width: 6px;
	border-radius: 8px;
}

.fact dt {
	margin-bottom: 0.3rem;
	color: var(--muted);
	font-size: 0.9rem;
	font-weight: 700;
}

.fact dd {
	margin: 0;
	font-size: 1.12rem;
	font-weight: 800;
}

.fact-blue {
	border-left-color: var(--blue);
	background: var(--blue-soft);
}

.fact-green {
	border-left-color: var(--green);
	background: var(--green-soft);
}

.fact-yellow {
	border-left-color: var(--yellow);
	background: var(--yellow-soft);
}

.fact-coral {
	border-left-color: var(--coral);
	background: var(--coral-soft);
}

.section {
	padding: clamp(52px, 8vw, 82px) 0;
	background: var(--paper);
}

.section-soft {
	background: #ffffff;
}

.section-header {
	max-width: 760px;
	margin-bottom: 26px;
}

.section-header p:last-child,
.split p:last-child,
.notice p:last-child,
.contact-panel p:last-child,
.info-card p:last-child,
.document-card p:last-child {
	margin-bottom: 0;
}

.split {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	gap: clamp(24px, 5vw, 54px);
	align-items: start;
}

.notice,
.contact-panel,
.info-card,
.document-card {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.notice,
.contact-panel {
	padding: clamp(20px, 4vw, 30px);
}

.notice {
	border-top: 6px solid var(--coral);
}

.contact-panel {
	border-top: 6px solid var(--green);
}

.info-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.info-card {
	padding: 22px;
}

.info-card:nth-child(1) {
	border-top: 6px solid var(--blue);
}

.info-card:nth-child(2) {
	border-top: 6px solid var(--yellow);
}

.info-card:nth-child(3) {
	border-top: 6px solid var(--green);
}

.document-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.document-card {
	display: flex;
	flex-direction: column;
	min-height: 210px;
	padding: 20px;
}

.document-card h3 {
	font-size: 1.1rem;
}

.document-card h3 a {
	color: var(--ink);
}

.document-card h3 a:hover {
	color: var(--blue);
}

.document-type {
	color: var(--blue);
}

.check-list {
	display: grid;
	gap: 12px;
	padding-left: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding-left: 30px;
}

.check-list li::before {
	position: absolute;
	top: 0.23rem;
	left: 0;
	width: 18px;
	height: 18px;
	color: #ffffff;
	background: var(--green);
	border-radius: 50%;
	content: "";
}

.check-list li::after {
	position: absolute;
	top: 0.42rem;
	left: 6px;
	width: 5px;
	height: 9px;
	border: solid #ffffff;
	border-width: 0 2px 2px 0;
	content: "";
	transform: rotate(45deg);
}

.email-line {
	font-size: 1.12rem;
	font-weight: 800;
}

.site-footer {
	padding: 38px 0;
	color: #ffffff;
	background: #263238;
}

.site-footer a {
	color: #e7f6fc;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr 0.8fr;
	gap: 28px;
}

.footer-logo {
	width: 190px;
	margin-bottom: 12px;
	background: #ffffff;
	border-radius: 8px;
}

.site-footer h2 {
	margin-bottom: 0.75rem;
	font-size: 1.08rem;
}

.footer-links {
	display: grid;
	gap: 8px;
	padding-left: 0;
	list-style: none;
}

@media (max-width: 900px) {
	h1 {
		font-size: 2.75rem;
	}

	h2 {
		font-size: 2.15rem;
	}

	.lead {
		font-size: 1.16rem;
	}

	.fact-grid,
	.info-grid,
	.document-grid,
	.footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.split {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 760px) {
	body {
		font-size: 16px;
	}

	.header-inner {
		flex-wrap: wrap;
		min-height: 66px;
		padding: 10px 0;
	}

	.brand img {
		width: 112px;
	}

	.js .menu-toggle {
		display: inline-flex;
	}

	.site-nav {
		width: 100%;
		justify-content: flex-start;
		margin-left: 0;
	}

	.js .site-nav {
		display: none;
		flex-direction: column;
		align-items: stretch;
		padding-bottom: 10px;
	}

	.js .site-nav.is-open {
		display: flex;
	}

	.site-nav a {
		padding: 11px 10px;
	}

	.hero {
		padding-top: 28px;
	}

	.hero-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.button {
		width: 100%;
	}

	.photo-banner-image {
		aspect-ratio: 4 / 3;
	}
}

@media (max-width: 620px) {
	h1 {
		font-size: 1.95rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	.lead {
		font-size: 1.08rem;
	}

	.container {
		width: min(100% - 24px, 1120px);
	}

	.fact-grid,
	.info-grid,
	.document-grid,
	.footer-grid {
		grid-template-columns: 1fr;
	}

	.fact {
		min-height: auto;
	}

	.section {
		padding: 44px 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}
