/*
 * Lumina Literati Publisher Homepage
 * A theme-independent, fully scoped editorial design.
 */

:root {
	--llh-ink: #15242b;
	--llh-ink-soft: #536066;
	--llh-navy: #0b1f2a;
	--llh-navy-light: #173744;
	--llh-cream: #f3eee4;
	--llh-paper: #fffdf8;
	--llh-gold: #d8b66b;
	--llh-gold-deep: #aa7a28;
	--llh-sage: #b8c4b2;
	--llh-line: rgba(21, 36, 43, 0.16);
	--llh-serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
	--llh-sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

html {
	scroll-behavior: smooth;
}

body.llh-template {
	margin: 0 !important;
	background: var(--llh-paper);
	color: var(--llh-ink);
}

body.llh-template .llh-site,
body.llh-template .llh-site button,
body.llh-template .llh-site input {
	font-family: var(--llh-sans);
}

body.llh-template .llh-site {
	min-width: 320px;
	overflow: clip;
	background: var(--llh-paper);
	color: var(--llh-ink);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

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

.llh-site h1,
.llh-site h2,
.llh-site h3,
.llh-site p,
.llh-site ol,
.llh-site ul,
.llh-site dl,
.llh-site dd,
.llh-site blockquote {
	margin: 0;
}

.llh-site h1,
.llh-site h2,
.llh-site h3 {
	color: inherit;
	font-family: var(--llh-serif);
	font-style: normal;
	font-weight: 500;
	letter-spacing: -0.035em;
	line-height: 1.04;
	text-wrap: balance;
}

.llh-site a {
	color: inherit;
	text-decoration: none;
}

.llh-site img {
	display: block;
	max-width: 100%;
}

.llh-site button,
.llh-site a {
	-webkit-tap-highlight-color: transparent;
}

.llh-site :where(a, button):focus-visible {
	border-radius: 2px;
	outline: 3px solid #f0c86f;
	outline-offset: 4px;
}

.llh-container {
	width: min(1180px, calc(100% - 48px));
	margin-inline: auto;
}

.llh-skip-link {
	position: fixed;
	z-index: 100000;
	top: 12px;
	left: 12px;
	padding: 12px 18px;
	transform: translateY(-150%);
	border-radius: 3px;
	background: var(--llh-paper);
	color: var(--llh-navy);
	font: 700 14px/1 var(--llh-sans);
	transition: transform 160ms ease;
}

.llh-skip-link:focus {
	transform: translateY(0);
}

.llh-announcement {
	position: relative;
	z-index: 41;
	border-bottom: 1px solid rgba(255, 255, 255, 0.09);
	background: #06151d;
	color: #d9e0de;
	font-size: 12px;
	font-weight: 650;
	letter-spacing: 0.075em;
	line-height: 1.35;
	text-transform: uppercase;
}

.llh-announcement__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 38px;
	gap: 24px;
}

.llh-announcement a {
	color: var(--llh-gold);
	text-transform: none;
}

.llh-announcement a:hover {
	color: #f4d99b;
}

.llh-header {
	position: sticky;
	z-index: 40;
	top: 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(11, 31, 42, 0.96);
	color: #fffdf8;
	backdrop-filter: blur(14px);
}

.admin-bar .llh-header {
	top: 32px;
}

.llh-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 82px;
	gap: 34px;
}

.llh-brand {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 13px;
}

.llh-brand__mark {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	overflow: hidden;
	border: 1px solid rgba(216, 182, 107, 0.52);
	border-radius: 50%;
	background: #f4ead5;
}

.llh-brand__logo {
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important;
	object-fit: cover;
}

.llh-brand__type {
	display: flex;
	flex-direction: column;
	gap: 2px;
	line-height: 1;
}

.llh-brand__type strong {
	color: #fffdf8;
	font-family: var(--llh-serif);
	font-size: 19px;
	font-weight: 600;
	letter-spacing: 0.01em;
}

.llh-brand__type small {
	color: var(--llh-gold);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.31em;
	text-transform: uppercase;
}

.llh-nav {
	display: flex;
	align-items: center;
	gap: clamp(20px, 3vw, 40px);
}

.llh-nav ul {
	display: flex;
	align-items: center;
	gap: clamp(18px, 2.2vw, 32px);
	padding: 0;
	list-style: none;
}

.llh-nav li a {
	position: relative;
	display: inline-block;
	padding-block: 8px;
	color: #d9e1df;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.035em;
}

.llh-nav li a::after {
	position: absolute;
	right: 0;
	bottom: 2px;
	left: 0;
	height: 1px;
	transform: scaleX(0);
	transform-origin: right;
	background: var(--llh-gold);
	content: "";
	transition: transform 180ms ease;
}

.llh-nav li a:hover {
	color: #fff;
}

.llh-nav li a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.llh-nav__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 43px;
	padding: 10px 16px;
	gap: 10px;
	border: 1px solid var(--llh-gold);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition: background-color 180ms ease, color 180ms ease;
}

.llh-nav__cta:hover {
	background: var(--llh-gold);
	color: var(--llh-navy);
}

.llh-menu-toggle {
	display: none;
	align-items: center;
	padding: 10px 0 10px 12px;
	gap: 11px;
	border: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
}

.llh-menu-toggle__label {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.llh-menu-toggle__icon {
	position: relative;
	display: block;
	width: 25px;
	height: 16px;
}

.llh-menu-toggle__icon i {
	position: absolute;
	right: 0;
	width: 25px;
	height: 1px;
	background: currentColor;
	transition: top 180ms ease, transform 180ms ease;
}

.llh-menu-toggle__icon i:first-child {
	top: 4px;
}

.llh-menu-toggle__icon i:last-child {
	top: 12px;
}

.llh-menu-toggle[aria-expanded="true"] .llh-menu-toggle__icon i:first-child {
	top: 8px;
	transform: rotate(45deg);
}

.llh-menu-toggle[aria-expanded="true"] .llh-menu-toggle__icon i:last-child {
	top: 8px;
	transform: rotate(-45deg);
}

.llh-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background:
		radial-gradient(circle at 15% 12%, rgba(59, 101, 111, 0.3), transparent 29%),
		linear-gradient(125deg, #102d39 0%, var(--llh-navy) 58%, #071820 100%);
	color: #fff;
}

.llh-hero::before {
	position: absolute;
	z-index: -1;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 68px 68px;
	content: "";
	mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.llh-hero__texture {
	position: absolute;
	z-index: -1;
	top: -160px;
	right: -190px;
	width: 670px;
	height: 670px;
	border: 1px solid rgba(216, 182, 107, 0.12);
	border-radius: 50%;
}

.llh-hero__texture::before,
.llh-hero__texture::after {
	position: absolute;
	border: 1px solid rgba(216, 182, 107, 0.08);
	border-radius: inherit;
	content: "";
}

.llh-hero__texture::before {
	inset: 68px;
}

.llh-hero__texture::after {
	inset: 134px;
}

.llh-hero__inner {
	display: grid;
	min-height: 700px;
	align-items: center;
	padding-block: clamp(72px, 9vw, 126px);
	grid-template-columns: minmax(0, 1.08fr) minmax(400px, 0.92fr);
	gap: clamp(38px, 6vw, 90px);
}

.llh-hero__copy {
	position: relative;
	z-index: 2;
}

.llh-eyebrow,
.llh-kicker {
	display: flex;
	align-items: center;
	margin-bottom: 26px !important;
	gap: 12px;
	color: var(--llh-gold-deep);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.19em;
	line-height: 1.3;
	text-transform: uppercase;
}

.llh-eyebrow {
	color: var(--llh-gold);
}

.llh-eyebrow span {
	width: 31px;
	height: 1px;
	background: currentColor;
}

.llh-hero h1 {
	max-width: 770px;
	color: #fffdf8;
	font-size: clamp(3.75rem, 6.15vw, 6.3rem);
	line-height: 0.96;
}

.llh-hero__intro {
	max-width: 670px;
	margin-top: 30px !important;
	color: #cfdbd9;
	font-size: clamp(1.04rem, 1.4vw, 1.22rem);
	line-height: 1.72;
}

.llh-button-row {
	display: flex;
	align-items: center;
	margin-top: 37px;
	gap: 27px;
}

.llh-button {
	display: inline-flex;
	min-height: 55px;
	align-items: center;
	justify-content: center;
	padding: 14px 22px;
	gap: 28px;
	border: 1px solid transparent;
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.075em;
	line-height: 1.2;
	text-transform: uppercase;
	transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.llh-button span,
.llh-text-link span {
	font-size: 1.25em;
	transition: transform 180ms ease;
}

.llh-button:hover {
	transform: translateY(-2px);
}

.llh-button:hover span,
.llh-text-link:hover span {
	transform: translateX(3px);
}

.llh-button--gold {
	background: var(--llh-gold);
	color: var(--llh-navy);
}

.llh-button--gold:hover {
	background: #e6c987;
}

.llh-button--ivory {
	background: var(--llh-paper);
	color: var(--llh-navy);
}

.llh-button--ivory:hover {
	background: var(--llh-gold);
}

.llh-text-link {
	display: inline-flex;
	align-items: center;
	padding-block: 6px;
	gap: 10px;
	border-bottom: 1px solid currentColor;
	color: var(--llh-ink);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.06em;
	line-height: 1.35;
	text-transform: uppercase;
	transition: color 180ms ease;
}

.llh-text-link:hover {
	color: var(--llh-gold-deep);
}

.llh-text-link--light {
	color: #fff;
}

.llh-text-link--light:hover {
	color: var(--llh-gold);
}

.llh-hero__facts {
	display: grid;
	max-width: 660px;
	margin-top: 58px !important;
	padding-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.llh-hero__facts div {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.llh-hero__facts dt {
	color: #fff;
	font-family: var(--llh-serif);
	font-size: clamp(1.35rem, 2vw, 1.85rem);
	font-weight: 500;
	letter-spacing: -0.02em;
	line-height: 1.15;
}

.llh-hero__facts dd {
	color: #aebdbb;
	font-size: 10px;
	font-weight: 750;
	letter-spacing: 0.09em;
	line-height: 1.4;
	text-transform: uppercase;
}

.llh-book-stage {
	position: relative;
	height: 540px;
	align-self: center;
}

.llh-book-stage::before {
	position: absolute;
	right: 5%;
	bottom: 18px;
	width: 82%;
	height: 38px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.38);
	content: "";
	filter: blur(24px);
}

.llh-book-stage__label {
	position: absolute;
	z-index: 8;
	top: 8px;
	right: 0;
	padding-left: 12px;
	color: var(--llh-gold);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	writing-mode: vertical-rl;
}

.llh-book-stage__line {
	position: absolute;
	z-index: 1;
	top: 44px;
	right: 25px;
	bottom: 45px;
	width: 1px;
	background: rgba(216, 182, 107, 0.34);
}

.llh-hero-book {
	position: absolute;
	display: block;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: #172a32;
	box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
	transition: transform 250ms ease, filter 250ms ease;
}

.llh-hero-book img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.llh-hero-book--1 {
	z-index: 5;
	top: 38px;
	left: 30%;
	width: 48%;
	height: 436px;
}

.llh-hero-book--2 {
	z-index: 3;
	top: 112px;
	left: 1%;
	width: 39%;
	height: 350px;
	transform: rotate(-5deg);
	filter: saturate(0.82) brightness(0.82);
}

.llh-hero-book--3 {
	z-index: 2;
	top: 102px;
	right: -4%;
	width: 37%;
	height: 338px;
	transform: rotate(5deg);
	filter: saturate(0.72) brightness(0.72);
}

.llh-hero-book--1:hover {
	transform: translateY(-7px);
}

.llh-hero-book--2:hover {
	z-index: 6;
	transform: translateY(-5px) rotate(-3deg);
	filter: none;
}

.llh-hero-book--3:hover {
	z-index: 6;
	transform: translateY(-5px) rotate(3deg);
	filter: none;
}

.llh-book-stage__caption {
	position: absolute;
	z-index: 7;
	right: 3%;
	bottom: 0;
	left: 29%;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	padding-top: 15px;
	gap: 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.llh-book-stage__caption span {
	flex: 0 0 auto;
	color: #91a4a4;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.llh-book-stage__caption strong {
	max-width: 210px;
	color: #fff;
	font-family: var(--llh-serif);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.25;
	text-align: right;
}

.llh-principles {
	border-bottom: 1px solid var(--llh-line);
	background: var(--llh-cream);
}

.llh-principles ul {
	display: grid;
	padding: 0;
	list-style: none;
	grid-template-columns: repeat(3, 1fr);
}

.llh-principles li {
	display: flex;
	min-height: 92px;
	align-items: center;
	justify-content: center;
	padding: 18px 28px;
	gap: 18px;
	border-right: 1px solid var(--llh-line);
	color: var(--llh-ink);
	font-family: var(--llh-serif);
	font-size: 17px;
	font-weight: 600;
}

.llh-principles li:first-child {
	border-left: 1px solid var(--llh-line);
}

.llh-principles li span {
	color: var(--llh-gold-deep);
	font-family: var(--llh-sans);
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.15em;
}

.llh-section {
	padding-block: clamp(82px, 9vw, 132px);
}

.llh-section-heading {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: clamp(44px, 5vw, 72px);
	gap: 48px;
}

.llh-section-heading h2 {
	max-width: 780px;
	font-size: clamp(2.6rem, 4.7vw, 4.7rem);
}

.llh-kicker {
	margin-bottom: 18px !important;
}

.llh-kicker--light {
	color: var(--llh-gold);
}

.llh-book-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(18px, 2.4vw, 32px);
}

.llh-book-card {
	min-width: 0;
}

.llh-book-card__cover {
	position: relative;
	display: block;
	overflow: hidden;
	aspect-ratio: 2 / 3;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.09), transparent),
		var(--llh-navy);
	box-shadow: 0 18px 34px rgba(17, 31, 37, 0.14);
}

.llh-book-card__cover::after {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.22);
	content: "";
	pointer-events: none;
}

.llh-book-card__cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 350ms ease;
}

.llh-book-card__cover > span {
	position: absolute;
	z-index: 2;
	right: 12px;
	bottom: 12px;
	left: 12px;
	padding: 8px 10px;
	transform: translateY(10px);
	background: rgba(7, 24, 32, 0.88);
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.1em;
	opacity: 0;
	text-align: center;
	text-transform: uppercase;
	transition: opacity 220ms ease, transform 220ms ease;
	backdrop-filter: blur(8px);
}

.llh-book-card:hover .llh-book-card__cover img {
	transform: scale(1.025);
}

.llh-book-card:hover .llh-book-card__cover > span {
	transform: translateY(0);
	opacity: 1;
}

.llh-book-card__body {
	padding: 22px 2px 0;
}

.llh-book-card__subject {
	margin-bottom: 10px !important;
	color: var(--llh-gold-deep);
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.llh-book-card h3 {
	font-size: clamp(1.45rem, 2.1vw, 1.9rem);
	line-height: 1.08;
}

.llh-book-card h3 a {
	background-image: linear-gradient(currentColor, currentColor);
	background-position: 100% 100%;
	background-repeat: no-repeat;
	background-size: 0 1px;
	transition: background-size 220ms ease, background-position 0s 220ms;
}

.llh-book-card h3 a:hover {
	background-position: 0 100%;
	background-size: 100% 1px;
}

.llh-book-card__subtitle {
	min-height: 44px;
	margin-top: 8px !important;
	color: var(--llh-ink-soft);
	font-family: var(--llh-serif);
	font-size: 13px;
	font-style: italic;
	line-height: 1.45;
}

.llh-book-card__authors {
	margin-top: 16px !important;
	color: #303f45;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.45;
}

.llh-book-card__meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 19px;
	padding-top: 13px;
	gap: 10px;
	border-top: 1px solid var(--llh-line);
	color: #6d777a;
	font-size: 9px;
	font-weight: 750;
	letter-spacing: 0.04em;
}

.llh-book-card__meta span:first-child {
	color: var(--llh-ink);
}

.llh-mission {
	position: relative;
	overflow: hidden;
	background: var(--llh-navy);
	color: #fff;
}

.llh-mission::after {
	position: absolute;
	right: -160px;
	bottom: -340px;
	width: 640px;
	height: 640px;
	border: 1px solid rgba(216, 182, 107, 0.13);
	border-radius: 50%;
	content: "";
	box-shadow:
		0 0 0 80px rgba(216, 182, 107, 0.025),
		0 0 0 160px rgba(216, 182, 107, 0.018);
}

.llh-mission__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
	gap: 58px clamp(48px, 8vw, 118px);
}

.llh-mission__statement h2 {
	max-width: 780px;
	color: #fffdf8;
	font-size: clamp(3rem, 5vw, 5.2rem);
}

.llh-mission__copy {
	align-self: end;
	padding-bottom: 8px;
	color: #c8d3d1;
}

.llh-mission__copy p {
	margin-bottom: 28px !important;
}

.llh-mission__note {
	grid-column: 1 / -1;
	padding-top: 46px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.llh-mission blockquote {
	max-width: 860px;
	padding-left: 30px;
	border-left: 2px solid var(--llh-gold);
	color: #eef2ee;
	font-family: var(--llh-serif);
	font-size: clamp(1.35rem, 2.2vw, 2rem);
	font-style: italic;
	line-height: 1.45;
}

.llh-disciplines {
	background: var(--llh-cream);
}

.llh-disciplines__grid {
	display: grid;
	align-items: start;
	grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
	gap: clamp(55px, 10vw, 150px);
}

.llh-disciplines h2 {
	font-size: clamp(2.8rem, 4.5vw, 4.6rem);
}

.llh-disciplines__grid > div > p:not(.llh-kicker) {
	max-width: 490px;
	margin-top: 25px !important;
	color: var(--llh-ink-soft);
}

.llh-disciplines__grid > div .llh-text-link {
	margin-top: 30px;
}

.llh-discipline-list {
	padding: 0;
	border-top: 1px solid var(--llh-line);
	list-style: none;
}

.llh-discipline-list li {
	display: grid;
	min-height: 69px;
	align-items: center;
	padding-block: 13px;
	border-bottom: 1px solid var(--llh-line);
	font-family: var(--llh-serif);
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	font-weight: 500;
	grid-template-columns: 56px 1fr;
}

.llh-discipline-list span {
	color: var(--llh-gold-deep);
	font-family: var(--llh-sans);
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.1em;
}

.llh-process {
	background: var(--llh-paper);
}

.llh-section-heading--compact {
	align-items: end;
}

.llh-section-heading--compact h2 {
	max-width: 670px;
}

.llh-section-heading--compact > p {
	max-width: 330px;
	padding-bottom: 5px;
	color: var(--llh-ink-soft);
}

.llh-process__steps {
	display: grid;
	padding: 0;
	border-top: 1px solid var(--llh-line);
	border-bottom: 1px solid var(--llh-line);
	list-style: none;
	grid-template-columns: repeat(4, 1fr);
}

.llh-process__steps li {
	position: relative;
	min-height: 320px;
	padding: 29px 25px 32px;
	border-right: 1px solid var(--llh-line);
}

.llh-process__steps li:first-child {
	border-left: 1px solid var(--llh-line);
}

.llh-process__steps li::after {
	position: absolute;
	right: 24px;
	bottom: 23px;
	width: 8px;
	height: 8px;
	border-top: 1px solid var(--llh-gold-deep);
	border-right: 1px solid var(--llh-gold-deep);
	content: "";
}

.llh-process__steps li > span {
	display: block;
	margin-bottom: 75px;
	color: var(--llh-gold-deep);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.12em;
}

.llh-process__steps h3 {
	font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.llh-process__steps p {
	margin-top: 15px !important;
	color: var(--llh-ink-soft);
	font-size: 13px;
	line-height: 1.65;
}

.llh-submit {
	padding-top: 0;
	background: var(--llh-paper);
}

.llh-submit__panel {
	position: relative;
	isolation: isolate;
	display: grid;
	overflow: hidden;
	align-items: end;
	padding: clamp(45px, 7vw, 88px);
	background:
		linear-gradient(110deg, rgba(23, 55, 68, 0.68), transparent 58%),
		var(--llh-navy);
	color: #fff;
	grid-template-columns: 1fr auto;
	gap: 42px 70px;
}

.llh-submit__panel::before {
	position: absolute;
	z-index: -1;
	inset: 0;
	background:
		linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, 0.06) 50%, transparent 50.2%),
		linear-gradient(transparent 49.8%, rgba(255, 255, 255, 0.06) 50%, transparent 50.2%);
	background-size: 90px 90px;
	content: "";
	mask-image: linear-gradient(90deg, transparent, #000);
}

.llh-submit__monogram {
	position: absolute;
	z-index: -1;
	top: -95px;
	right: 7%;
	color: rgba(216, 182, 107, 0.075);
	font-family: var(--llh-serif);
	font-size: 440px;
	line-height: 1;
}

.llh-submit__copy {
	max-width: 730px;
}

.llh-submit h2 {
	color: #fffdf8;
	font-size: clamp(2.8rem, 5vw, 5rem);
}

.llh-submit__copy > p:last-child {
	max-width: 650px;
	margin-top: 23px !important;
	color: #c7d2d0;
}

.llh-submit__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
}

.llh-submit__actions > a:last-child {
	border-bottom: 1px solid rgba(255, 255, 255, 0.44);
	color: #d8e0de;
	font-size: 12px;
}

.llh-submit__actions > a:last-child:hover {
	color: var(--llh-gold);
}

.llh-footer {
	padding-top: clamp(60px, 7vw, 95px);
	background: #07171f;
	color: #cad5d2;
}

.llh-footer__top {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding-bottom: 44px;
	gap: 38px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.llh-brand--footer .llh-brand__mark {
	width: 55px;
	height: 55px;
}

.llh-brand--footer .llh-brand__type strong {
	font-size: 23px;
}

.llh-footer__top > p {
	max-width: 350px;
	color: #91a3a1;
	font-family: var(--llh-serif);
	font-size: 17px;
	font-style: italic;
	text-align: right;
}

.llh-footer__grid {
	display: grid;
	padding-block: 52px 66px;
	grid-template-columns: repeat(3, 1fr) 1.35fr;
	gap: 35px;
}

.llh-footer h2 {
	margin-bottom: 19px !important;
	color: var(--llh-gold);
	font-family: var(--llh-sans);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.llh-footer ul {
	padding: 0;
	list-style: none;
}

.llh-footer li + li {
	margin-top: 8px;
}

.llh-footer li a,
.llh-footer__contact a {
	color: #b8c5c2;
	font-size: 13px;
	transition: color 160ms ease;
}

.llh-footer li a:hover,
.llh-footer__contact a:hover {
	color: #fff;
}

.llh-footer__contact {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.llh-footer__contact a:first-of-type {
	margin-bottom: 9px;
	color: #fff;
	font-family: var(--llh-serif);
	font-size: 18px;
}

.llh-footer__bottom {
	display: flex;
	min-height: 76px;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #788d8c;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.llh-footer__bottom a {
	color: #b7c4c1;
}

.llh-footer__bottom a:hover {
	color: var(--llh-gold);
}

@media (max-width: 1080px) {
	.llh-hero__inner {
		grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
		gap: 30px;
	}

	.llh-hero h1 {
		font-size: clamp(3.45rem, 6vw, 5.2rem);
	}

	.llh-book-stage {
		height: 500px;
	}

	.llh-hero-book--1 {
		height: 400px;
	}

	.llh-hero-book--2,
	.llh-hero-book--3 {
		height: 315px;
	}

	.llh-book-card__meta {
		flex-direction: column;
		align-items: flex-start;
	}

	.llh-submit__panel {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	.llh-header__inner {
		min-height: 74px;
	}

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

	.llh-nav {
		position: absolute;
		z-index: 50;
		top: 100%;
		right: 0;
		left: 0;
		display: grid;
		padding: 22px 24px 28px;
		border-top: 1px solid rgba(255, 255, 255, 0.08);
		border-bottom: 1px solid rgba(255, 255, 255, 0.14);
		background: #0a202b;
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
		gap: 18px;
	}

	.js .llh-nav[hidden] {
		display: none;
	}

	.no-js .llh-header__inner {
		flex-wrap: wrap;
		padding-block: 12px;
	}

	.no-js .llh-nav {
		position: static;
		width: 100%;
	}

	.llh-nav ul {
		display: grid;
		align-items: stretch;
		gap: 0;
	}

	.llh-nav li {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}

	.llh-nav li a {
		display: block;
		padding: 12px 0;
		font-size: 15px;
	}

	.llh-nav li a::after {
		display: none;
	}

	.llh-nav__cta {
		justify-self: start;
	}

	.llh-hero__inner {
		min-height: auto;
		grid-template-columns: 1fr;
		gap: 58px;
	}

	.llh-hero__copy {
		max-width: 790px;
	}

	.llh-hero h1 {
		font-size: clamp(3.7rem, 10vw, 6.2rem);
	}

	.llh-book-stage {
		width: min(610px, 100%);
		height: 560px;
		margin-inline: auto;
	}

	.llh-hero-book--1 {
		height: 450px;
	}

	.llh-hero-book--2,
	.llh-hero-book--3 {
		height: 360px;
	}

	.llh-book-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 50px 30px;
	}

	.llh-book-card__subtitle {
		min-height: 0;
	}

	.llh-mission__grid {
		grid-template-columns: 1fr;
		gap: 35px;
	}

	.llh-mission__copy {
		max-width: 680px;
	}

	.llh-disciplines__grid {
		grid-template-columns: 1fr;
		gap: 58px;
	}

	.llh-process__steps {
		grid-template-columns: repeat(2, 1fr);
	}

	.llh-process__steps li {
		border-bottom: 1px solid var(--llh-line);
	}

	.llh-process__steps li:nth-child(odd) {
		border-left: 1px solid var(--llh-line);
	}

	.llh-footer__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 45px 30px;
	}
}

@media (max-width: 782px) {
	.admin-bar .llh-header {
		top: 46px;
	}
}

@media (max-width: 640px) {
	.llh-container {
		width: min(100% - 32px, 1180px);
	}

	.llh-announcement__inner {
		justify-content: center;
		min-height: 34px;
	}

	.llh-announcement p {
		overflow: hidden;
		max-width: 100%;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.llh-announcement a {
		display: none;
	}

	.llh-brand__mark {
		width: 42px;
		height: 42px;
	}

	.llh-brand__type strong {
		font-size: 16px;
	}

	.llh-brand__type small {
		font-size: 8px;
	}

	.llh-header__inner {
		min-height: 68px;
	}

	.llh-hero__inner {
		padding-block: 64px 74px;
		gap: 42px;
	}

	.llh-hero h1 {
		font-size: clamp(3.15rem, 16vw, 4.65rem);
	}

	.llh-hero__intro {
		margin-top: 23px !important;
		font-size: 1rem;
	}

	.llh-button-row {
		align-items: stretch;
		flex-direction: column;
		margin-top: 30px;
		gap: 17px;
	}

	.llh-button-row .llh-button {
		justify-content: space-between;
	}

	.llh-button-row .llh-text-link {
		align-self: flex-start;
	}

	.llh-hero__facts {
		grid-template-columns: 1fr 1fr;
		margin-top: 42px !important;
		gap: 21px;
	}

	.llh-hero__facts div:last-child {
		grid-column: 1 / -1;
	}

	.llh-book-stage {
		height: 405px;
	}

	.llh-hero-book--1 {
		top: 25px;
		left: 26%;
		width: 53%;
		height: 330px;
	}

	.llh-hero-book--2 {
		top: 88px;
		width: 43%;
		height: 265px;
	}

	.llh-hero-book--3 {
		top: 83px;
		right: -7%;
		width: 42%;
		height: 255px;
	}

	.llh-book-stage__caption {
		left: 24%;
	}

	.llh-book-stage__caption strong {
		font-size: 12px;
	}

	.llh-principles ul {
		grid-template-columns: 1fr;
	}

	.llh-principles li,
	.llh-principles li:first-child {
		min-height: 66px;
		justify-content: flex-start;
		padding-inline: 0;
		border-right: 0;
		border-bottom: 1px solid var(--llh-line);
		border-left: 0;
	}

	.llh-principles li:last-child {
		border-bottom: 0;
	}

	.llh-section {
		padding-block: 76px;
	}

	.llh-section-heading,
	.llh-section-heading--compact {
		align-items: flex-start;
		flex-direction: column;
		margin-bottom: 42px;
		gap: 24px;
	}

	.llh-section-heading h2,
	.llh-disciplines h2 {
		font-size: clamp(2.45rem, 12vw, 3.5rem);
	}

	.llh-book-grid {
		grid-template-columns: 1fr;
		gap: 55px;
	}

	.llh-book-card {
		max-width: 430px;
	}

	.llh-book-card__meta {
		flex-direction: row;
		align-items: center;
	}

	.llh-mission__statement h2,
	.llh-submit h2 {
		font-size: clamp(2.65rem, 13vw, 4rem);
	}

	.llh-mission__note {
		padding-top: 34px;
	}

	.llh-mission blockquote {
		padding-left: 20px;
	}

	.llh-discipline-list li {
		grid-template-columns: 40px 1fr;
	}

	.llh-process__steps {
		border-bottom: 0;
		grid-template-columns: 1fr;
	}

	.llh-process__steps li,
	.llh-process__steps li:nth-child(odd),
	.llh-process__steps li:first-child {
		min-height: 0;
		padding: 28px 20px 50px;
		border-right: 1px solid var(--llh-line);
		border-bottom: 1px solid var(--llh-line);
		border-left: 1px solid var(--llh-line);
	}

	.llh-process__steps li > span {
		margin-bottom: 37px;
	}

	.llh-submit {
		padding-top: 0;
	}

	.llh-submit .llh-container {
		width: 100%;
	}

	.llh-submit__panel {
		padding: 64px 24px;
	}

	.llh-submit__actions {
		align-items: stretch;
	}

	.llh-submit__actions .llh-button {
		justify-content: space-between;
	}

	.llh-footer__top {
		align-items: flex-start;
		flex-direction: column;
	}

	.llh-footer__top > p {
		text-align: left;
	}

	.llh-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.llh-footer__contact {
		grid-column: 1 / -1;
	}

	.llh-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
		justify-content: center;
		padding-block: 22px;
	}
}

@media (max-width: 420px) {
	.llh-brand__type small {
		letter-spacing: 0.22em;
	}

	.llh-menu-toggle__label {
		display: none;
	}

	.llh-book-stage {
		height: 365px;
	}

	.llh-hero-book--1 {
		height: 295px;
	}

	.llh-hero-book--2,
	.llh-hero-book--3 {
		height: 230px;
	}

	.llh-book-stage__label,
	.llh-book-stage__line {
		display: none;
	}

	.llh-footer__grid {
		grid-template-columns: 1fr;
	}

	.llh-footer__contact {
		grid-column: auto;
	}
}

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

	.llh-site *,
	.llh-site *::before,
	.llh-site *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}

	.llh-button:hover,
	.llh-hero-book--1:hover {
		transform: none;
	}

	.llh-hero-book--2:hover {
		transform: rotate(-5deg);
	}

	.llh-hero-book--3:hover {
		transform: rotate(5deg);
	}
}

@media print {
	.llh-announcement,
	.llh-header,
	.llh-submit,
	.llh-footer {
		display: none !important;
	}

	.llh-hero,
	.llh-mission {
		background: #fff !important;
		color: #000 !important;
	}

	.llh-hero *,
	.llh-mission * {
		color: #000 !important;
	}

	.llh-section {
		padding-block: 32px;
	}
}

/*
 * Compatibility with the site's legacy WordPress Additional CSS.
 *
 * That stylesheet targets the old homepage with broad selectors such as
 * `body.home h1` and `[class*="book"] !important`. The latter also matches
 * every `llh-book-*` component. These higher-specificity rules restore this
 * template without changing the legacy theme or any other page.
 */
body.llh-template .llh-site h1,
body.llh-template .llh-site h2,
body.llh-template .llh-site h3 {
	color: inherit !important;
	font-family: var(--llh-serif) !important;
	font-style: normal !important;
	font-weight: 500 !important;
	letter-spacing: -0.035em !important;
	line-height: 1.04 !important;
}

body.llh-template .llh-site [class*="llh-book"],
body.llh-template .llh-site [class*="llh-hero-book"] {
	background: transparent !important;
}

body.llh-template .llh-site .llh-hero-book {
	background: #172a32 !important;
}

body.llh-template .llh-site .llh-book-stage__line {
	background: rgba(216, 182, 107, 0.34) !important;
}

body.llh-template .llh-site .llh-book-card__cover {
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.09), transparent),
		var(--llh-navy) !important;
}

body.llh-template .llh-site .llh-book-card h3,
body.llh-template .llh-site .llh-book-card h3 a {
	color: var(--llh-ink) !important;
	-webkit-text-fill-color: var(--llh-ink) !important;
	line-height: 1.08 !important;
}

body.llh-template .llh-site .llh-book-stage__label {
	color: var(--llh-gold) !important;
}

body.llh-template .llh-site .llh-book-card__subject {
	color: var(--llh-gold-deep) !important;
}

body.llh-template .llh-site .llh-book-card__subtitle {
	color: var(--llh-ink-soft) !important;
}

body.llh-template .llh-site .llh-book-card__authors {
	color: #303f45 !important;
}

body.llh-template .llh-site .llh-footer h2 {
	color: var(--llh-gold) !important;
	font-family: var(--llh-sans) !important;
	font-size: 10px !important;
	font-weight: 850 !important;
	letter-spacing: 0.15em !important;
	line-height: 1.3 !important;
}

@media print {
	body.llh-template .llh-site .llh-hero h1,
	body.llh-template .llh-site .llh-mission h2 {
		color: #000 !important;
		-webkit-text-fill-color: #000 !important;
	}
}
