:root {
	--ink: #11100e;
	--paper: #f4efe6;
	--surface: #fbf8f2;
	--rule: #cfc3ae;
	--muted: #5e574e;
	--accent: #8f1515;
	--max: 76rem;
	--font-d: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", Times, serif;
	--font-s: Georgia, "Iowan Old Style", "Times New Roman", Times, serif;
	--font-b: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	* { animation: none !important; transition: none !important; }
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-b);
	font-size: 1.0625rem;
	line-height: 1.55;
}

img, svg { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }

a { color: var(--accent); text-underline-offset: 0.12em; }
a:focus-visible,
button:focus-visible,
input:focus-visible {
	outline: 3px solid var(--accent);
	outline-offset: 2px;
}

.skip-link {
	position: absolute;
	left: 0.75rem;
	top: -4rem;
	background: var(--ink);
	color: var(--paper);
	padding: 0.5rem 0.8rem;
	z-index: 200;
}
.skip-link:focus { top: 0.5rem; }

.lp-wrap {
	max-width: var(--max);
	margin: 0 auto;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}

.lp-header { background: var(--surface); }

.lp-topbar {
	border-bottom: 1px solid var(--rule);
	background: var(--ink);
	color: var(--paper);
	font-size: 0.78rem;
	letter-spacing: 0.04em;
}
.lp-topbar a { color: var(--paper); text-decoration: none; }
.lp-topbar a:hover { color: #fff; }
.lp-topbar__inner {
	display: flex;
	align-items: center;
	gap: 1rem;
	min-height: 2.4rem;
}
.lp-topbar__meta { margin: 0; color: #d8d0c4; }
.lp-topbar__links {
	display: flex;
	gap: 1rem;
	margin-left: auto;
}
.lp-topbar .lp-search { max-width: 14rem; }

.lp-brand {
	border-bottom: 1px solid var(--ink);
	padding: 1.75rem 0 1.15rem;
	text-align: center;
}
.lp-brand__inner { display: flex; flex-direction: column; align-items: center; gap: 0.45rem; }
.lp-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	text-decoration: none;
	color: var(--ink);
}
.lp-logo__mark {
	width: 2.4rem !important;
	height: 2.4rem !important;
	object-fit: cover;
	border-radius: 3px;
}
.lp-logo--masthead .lp-logo__text {
	font-family: var(--font-d);
	font-size: clamp(2.6rem, 6.4vw, 4.6rem);
	font-weight: 700;
	letter-spacing: -0.05em;
	line-height: 0.88;
}
.lp-logo__word {
	height: 2.6rem;
	width: auto;
	max-width: 16rem;
	object-fit: contain;
}
.lp-brand__line {
	margin: 0;
	font-size: 0.82rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted);
}

.lp-navwrap {
	border-bottom: 3px double var(--ink);
	background: var(--surface);
}
.lp-navwrap.is-stuck {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid var(--ink);
}
.lp-navwrap__inner {
	display: flex;
	align-items: center;
	min-height: 2.85rem;
}
.lp-nav-toggle {
	display: none;
	background: transparent;
	border: 1px solid var(--ink);
	padding: 0.28rem 0.7rem;
	font: inherit;
	font-size: 0.8rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
}
.lp-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0 1.25rem;
	width: 100%;
}
.lp-nav a {
	display: block;
	color: var(--ink);
	text-decoration: none;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 0.8rem 0 0.65rem;
	border-bottom: 2px solid transparent;
	white-space: nowrap;
}
.lp-nav a:hover,
.lp-nav .current-menu-item > a,
.lp-nav .current-menu-ancestor > a,
.lp-nav .current-post-ancestor > a,
.lp-nav .current-post-parent > a {
	color: var(--accent);
	border-bottom-color: var(--accent);
}
.lp-nav .sub-menu { display: none; }

.lp-search { display: flex; align-items: stretch; flex-shrink: 0; }
.lp-search input {
	width: 8.5rem;
	border: 1px solid #3a3530;
	border-right: 0;
	background: #1c1a17;
	color: var(--paper);
	padding: 0.28rem 0.5rem;
	font: inherit;
	font-size: 0.8rem;
}
.lp-search input::placeholder { color: #a39a8c; }
.lp-search button {
	background: var(--paper);
	color: var(--ink);
	border: 0;
	padding: 0 0.65rem;
	cursor: pointer;
	font: inherit;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.lp-main .lp-search input {
	background: var(--surface);
	color: var(--ink);
	border-color: var(--rule);
}
.lp-main .lp-search button {
	background: var(--ink);
	color: var(--paper);
}

.lp-main { min-height: 55vh; padding-bottom: 4rem; }

.lp-spotlight {
	display: grid;
	grid-template-columns: 1.35fr 0.9fr;
	gap: 2.25rem;
	padding: 2.25rem 0 2.5rem;
	border-bottom: 1px solid var(--rule);
}
.lp-feature__link { text-decoration: none; color: inherit; display: block; }
.lp-feature__media { margin-bottom: 1.1rem; overflow: hidden; background: #e7dfd0; }
.lp-feature__media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}
.lp-feature h2 {
	font-family: var(--font-d);
	font-size: clamp(2.15rem, 3.6vw, 3.4rem);
	line-height: 1.06;
	margin: 0.15rem 0 0.7rem;
	font-weight: 700;
	letter-spacing: -0.035em;
}
.lp-dek {
	margin: 0 0 0.85rem;
	font-family: var(--font-s);
	font-size: 1.15rem;
	line-height: 1.45;
	color: #3a352e;
	max-width: 38rem;
}
.lp-kicker {
	margin: 0 0 0.3rem;
	text-transform: uppercase;
	letter-spacing: 0.16em;
	font-size: 0.7rem;
	color: var(--accent);
	font-weight: 700;
}
.lp-meta { color: var(--muted); font-size: 0.88rem; margin: 0; }
.lp-meta a { color: inherit; }

.lp-stack { display: flex; flex-direction: column; border-top: 1px solid var(--rule); }
.lp-stack .lp-item { border-bottom: 1px solid var(--rule); }
.lp-stack .lp-item a { padding: 1rem 0; }

.lp-item { margin: 0; }
.lp-item a {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-rows: auto auto;
	column-gap: 1.25rem;
	row-gap: 0.15rem;
	padding: 0.85rem 0;
	text-decoration: none;
	color: inherit;
}
.lp-item .lp-kicker { grid-column: 1; }
.lp-item h3 {
	grid-column: 1;
	font-family: var(--font-d);
	font-size: 1.12rem;
	font-weight: 600;
	margin: 0;
	line-height: 1.28;
	overflow-wrap: anywhere;
}
.lp-item time {
	grid-column: 2;
	grid-row: 1 / span 2;
	align-self: center;
	color: var(--muted);
	font-size: 0.78rem;
	white-space: nowrap;
}
.lp-item a:hover h3,
.lp-feature a:hover h2,
.lp-media a:hover h3 { color: var(--accent); }

.lp-rails {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem 2.25rem;
	padding: 2.25rem 0;
	border-bottom: 1px solid var(--rule);
}
.lp-rail__head {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	border-bottom: 2px solid var(--ink);
	margin-bottom: 0.15rem;
	padding-bottom: 0.4rem;
}
.lp-rail__head h2,
.lp-mosaic-block h2 {
	font-family: var(--font-d);
	margin: 0;
	font-size: 1.45rem;
}
.lp-rail__head a {
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 700;
}
.lp-empty { color: var(--muted); font-size: 0.95rem; margin: 0.9rem 0 0; }

.lp-mosaic-block { padding: 2.25rem 0 0.5rem; }
.lp-mosaic {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.35rem;
	margin-top: 1.1rem;
}
.lp-mosaic--archive { grid-template-columns: repeat(3, 1fr); }
.lp-media a { text-decoration: none; color: inherit; display: block; }
.lp-media figure { margin-bottom: 0.65rem; overflow: hidden; background: #e7dfd0; }
.lp-media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}
.lp-media h3 {
	font-family: var(--font-d);
	font-size: 1.05rem;
	margin: 0;
	line-height: 1.25;
}

.lp-pagehead { padding: 2rem 0 1.25rem; max-width: 44rem; }
.lp-pagehead h1 {
	font-family: var(--font-d);
	font-size: clamp(2.1rem, 4.2vw, 3.4rem);
	line-height: 1.08;
	margin: 0 0 0.6rem;
	letter-spacing: -0.03em;
}
.lp-pagehead .lp-lede { margin-top: 0.5rem; }
.lp-pagehead .lp-lede p { margin: 0 0 0.7rem; color: var(--muted); font-size: 1.05rem; line-height: 1.55; }
.lp-pagehead .lp-lede p:last-child { margin-bottom: 0; }

.lp-sections {
	margin: 0 0 1.75rem;
	padding: 0.65rem 0 0.2rem;
	border-top: 1px solid var(--rule);
	max-width: 52rem;
}
.lp-sections ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.15rem;
}
.lp-sections a {
	display: block;
	color: var(--ink);
	text-decoration: none;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.35rem 0.55rem;
	border: 1px solid transparent;
}
.lp-sections a:hover,
.lp-sections .is-current a {
	color: var(--accent);
	border-color: var(--rule);
}

.lp-related {
	margin-top: 2.75rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--rule);
	max-width: 42rem;
}
.lp-related h2 {
	font-family: var(--font-d);
	font-size: 1.35rem;
	margin: 0 0 0.75rem;
}

.lp-author-photo,
.lp-article .wp-block-image {
	max-width: 14rem;
	margin: 0 0 1.25rem;
}

.lp-article { padding-bottom: 3rem; }
.lp-article__hero { margin: 0 0 1.75rem; max-width: 48rem; }
.lp-article__hero img { width: 100%; }

.lp-prose {
	max-width: 42rem;
	font-family: var(--font-s);
	font-size: 1.15rem;
	line-height: 1.7;
}
.lp-prose p { margin: 0 0 1.1rem; }
.lp-prose h2,
.lp-prose h3 {
	font-family: var(--font-d);
	font-size: 1.55rem;
	margin: 2.1rem 0 0.7rem;
	line-height: 1.2;
}
.lp-prose h3 { font-size: 1.25rem; }
.lp-prose ul,
.lp-prose ol { margin: 0 0 1.1rem; padding-left: 1.25rem; }
.lp-prose li { margin: 0 0 0.35rem; }
.lp-prose blockquote {
	margin: 0 0 1.1rem;
	padding: 0.2rem 0 0.2rem 1rem;
	border-left: 3px solid var(--rule);
	color: var(--muted);
}
.lp-article .lp-prose > p:first-child::first-letter {
	font-family: var(--font-d);
	font-size: 3.4rem;
	float: left;
	line-height: 0.8;
	padding: 0.12rem 0.45rem 0 0;
	font-weight: 700;
}

.lp-codes { width: 100%; max-width: 48rem; border-collapse: collapse; font-size: 0.95rem; margin: 0 0 1.5rem; }
.lp-codes th, .lp-codes td { border-bottom: 1px solid var(--rule); text-align: left; padding: 0.55rem 0.4rem; }
.lp-codes code { font-size: 0.9rem; }

.lp-list--roomy .lp-item { border-bottom: 1px solid var(--rule); }

.navigation.pagination { margin-top: 2rem; }
.navigation.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.navigation.pagination .page-numbers {
	display: inline-block;
	padding: 0.3rem 0.6rem;
	text-decoration: none;
	color: var(--ink);
	border: 1px solid var(--rule);
	font-size: 0.9rem;
}
.navigation.pagination .page-numbers.current,
.navigation.pagination a.page-numbers:hover {
	background: var(--ink);
	color: var(--paper);
	border-color: var(--ink);
}

.lp-contact label { display: block; font-weight: 700; margin-bottom: 0.25rem; font-family: var(--font-b); }
.lp-contact p { margin: 0 0 0.9rem; }
.lp-contact input,
.lp-contact textarea {
	width: 100%;
	max-width: 36rem;
	border: 1px solid var(--rule);
	padding: 0.55rem;
	font: inherit;
	background: var(--surface);
}
.lp-contact button {
	background: var(--accent);
	color: #fff;
	border: 0;
	padding: 0.65rem 1.2rem;
	font: inherit;
	cursor: pointer;
}
.lp-hp { position: absolute; left: -9999px; }
.lp-form-notice--ok { color: #1f6b3a; }
.lp-form-notice--err { color: var(--accent); }

.lp-footer {
	border-top: 3px double var(--ink);
	background: var(--surface);
	padding: 2.5rem 0 2rem;
}
.lp-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 0.8fr 1.1fr;
	gap: 2rem;
	margin-bottom: 1.75rem;
}
.lp-footer__name {
	font-family: var(--font-d);
	font-size: 1.8rem;
	font-weight: 700;
	margin: 0 0 0.5rem;
	letter-spacing: -0.03em;
}
.lp-footer__label {
	font-size: 0.72rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 700;
	margin: 0 0 0.7rem;
	border-bottom: 1px solid var(--ink);
	padding-bottom: 0.35rem;
}
.lp-footer ul { list-style: none; padding: 0; margin: 0; }
.lp-footer li { margin: 0 0 0.4rem; }
.lp-footer a { color: var(--ink); text-decoration: none; }
.lp-footer a:hover { color: var(--accent); }
.lp-copy { color: var(--muted); font-size: 0.82rem; margin: 0; border-top: 1px solid var(--rule); padding-top: 1rem; }

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
	width: 1px;
}

@media (max-width: 980px) {
	.lp-spotlight,
	.lp-rails,
	.lp-footer__grid { grid-template-columns: 1fr 1fr; }
	.lp-mosaic,
	.lp-mosaic--archive { grid-template-columns: 1fr 1fr; }
	.lp-rails .lp-rail:last-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
	.lp-topbar__inner { flex-wrap: wrap; padding-top: 0.45rem; padding-bottom: 0.45rem; }
	.lp-topbar .lp-search { width: 100%; max-width: none; }
	.lp-topbar .lp-search input { width: 100%; }
	.lp-topbar__links { margin-left: 0; }
	.lp-nav-toggle { display: inline-block; margin: 0.55rem 0; }
	.lp-nav { display: none; width: 100%; }
	.lp-nav.is-open { display: block; }
	.lp-nav ul { flex-direction: column; gap: 0; padding-bottom: 0.6rem; }
	.lp-nav a { padding: 0.5rem 0; }
	.lp-spotlight,
	.lp-rails,
	.lp-footer__grid,
	.lp-mosaic,
	.lp-mosaic--archive { grid-template-columns: 1fr; }
	.lp-item a { grid-template-columns: 1fr; }
	.lp-item time { grid-column: 1; grid-row: auto; }
	.lp-logo--masthead .lp-logo__text { font-size: 2.3rem; }
}
