/* Sitewide typography and layout */
body {
	margin: 0;
	font-family: "Helvetica Neue", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #1a1a1a;
	background-color: #f5f7fa;
	display: flex;
	align-items: stretch;
	min-height: 100vh;
}

a {
	color: #0c4da2;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

hr {
	border: 0;
	border-top: 1px solid #d7dbe2;
	margin: 1.5rem 0;
}

/* Navigation column */
#nav {
	flex: 0 0 260px;
	min-height: 100vh;
	box-sizing: border-box;
	padding: 3rem 2.5rem;
	background-color: #ffffff;
	border-right: 1px solid #d7dbe2;
	display: flex;
	flex-direction: column;
}

#nav h1 {
	margin: 0 0 1rem;
	font-size: 2.75rem;
	letter-spacing: 0.2rem;
	text-transform: uppercase;
	color: #111111;
}

#nav h1 span {
	border: 3px solid #111111;
	display: inline-block;
	padding: 0.35rem 0.75rem;
}

#nav ul {
	list-style: none;
	padding: 0;
	margin: 2.5rem 0 2rem;
}

#nav ul li {
	margin-bottom: 0.85rem;
}

#nav ul li a {
	display: inline-block;
	font-weight: 600;
	color: #1a1a1a;
}

#nav ul li a.selected {
	color: #c0392b;
}

#nav .contact,
#nav .footer {
	font-size: 0.85rem;
	color: #61687a;
}

#nav .footer a {
	color: #61687a;
}

#subnav {
	flex: 0 0 220px;
	min-height: 100vh;
	box-sizing: border-box;
	padding: 3rem 2rem;
	background-color: #f8fafc;
	border-right: 1px solid #d7dbe2;
}

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

#subnav li {
	margin-bottom: 0.85rem;
}

#subnav li a {
	color: #1a1a1a;
	font-weight: 600;
}

#subnav li a.selected {
	color: #c0392b;
}

#subnav li.liheading {
	margin-top: 2rem;
}

#subnav li.liheading h2 {
	margin: 0 0 0.5rem;
	font-size: 0.9rem;
	letter-spacing: 0.18rem;
	text-transform: uppercase;
	color: #61687a;
}

#subnav li.liheading span {
	display: inline-block;
	padding: 0.15rem 0;
}

/* Content area */
#content {
	flex: 1 1 600px;
	padding: 3rem 4rem;
	max-width: 960px;
}

#content .story h2 {
	margin: 0 0 0.75rem;
	font-size: 1.9rem;
	letter-spacing: 0.12rem;
	text-transform: uppercase;
	color: #2b2b2b;
}

#content .story p {
	margin-bottom: 1.25rem;
}

#content .story strong {
	font-weight: 700;
}

#content .story a {
	font-weight: 600;
}

/* Image placeholders */
#content .images {
	margin-top: 2.5rem;
}

#content .images ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
}

#content .images li {
	width: 200px;
	height: 150px;
	background-color: #d7dbe2;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #61687a;
	font-size: 0.85rem;
	text-transform: uppercase;
}

/* Footer utility styles */
.clear {
	clear: both;
}

/* Responsive adjustments */
@media (max-width: 960px) {
	body {
		flex-direction: column;
	}

	#nav {
		width: 100%;
		border-right: 0;
		border-bottom: 1px solid #d7dbe2;
		padding: 2.5rem 2rem;
	}

	#subnav {
		width: 100%;
		border-right: 0;
		border-bottom: 1px solid #d7dbe2;
		padding: 2.5rem 2rem;
	}

	#content {
		padding: 2.5rem 2rem;
	}

	#content .images ul {
		justify-content: center;
	}
}
