:root {
	--tlhf-ink: #211f1b;
	--tlhf-muted: #6d675d;
	--tlhf-line: #ddd6ca;
	--tlhf-paper: #fffdf8;
	--tlhf-soft: #f4eee5;
	--tlhf-sage: #556b5f;
	--tlhf-rose: #9b5d54;
	--tlhf-button: #211f1b;
	--tlhf-max-width: 1180px;
	--tlhf-header-height: 78px;
	--tlhf-brand-font: Georgia, "Times New Roman", serif;
	--tlhf-body-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--tlhf-shadow: 0 24px 80px rgba(32, 28, 22, 0.14);
}

.tlhf-skip-link {
	background: var(--tlhf-ink);
	color: #fff;
	left: 1rem;
	padding: 0.7rem 1rem;
	position: fixed;
	top: -100px;
	z-index: 100000;
}

.tlhf-skip-link:focus {
	top: 1rem;
}

.tlhf-header {
	background: rgba(255, 253, 248, 0.92);
	border-bottom: 1px solid var(--tlhf-line);
	color: var(--tlhf-ink);
	font-family: var(--tlhf-body-font);
	position: sticky;
	top: 0;
	z-index: 9990;
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);
}

.tlhf-header--static {
	position: relative;
}

.tlhf-progress {
	background: var(--tlhf-rose);
	height: 2px;
	left: 0;
	position: absolute;
	top: 0;
	transform: scaleX(0);
	transform-origin: left center;
	width: 100%;
}

.tlhf-header__bar {
	align-items: center;
	display: grid;
	gap: 1rem;
	grid-template-columns: auto minmax(14rem, 1fr) auto auto;
	margin: 0 auto;
	max-width: var(--tlhf-max-width);
	min-height: var(--tlhf-header-height);
	padding: 0 1.25rem;
}

.tlhf-header--split .tlhf-header__bar {
	grid-template-columns: minmax(12rem, auto) 1fr auto;
}

.tlhf-header--compact .tlhf-header__bar {
	min-height: max(56px, calc(var(--tlhf-header-height) - 14px));
}

.tlhf-header--compact .tlhf-brand__tagline {
	display: none;
}

.tlhf-brand {
	color: var(--tlhf-ink);
	display: inline-flex;
	flex-direction: column;
	gap: 0.16rem;
	text-decoration: none;
	width: fit-content;
}

.tlhf-brand__mark,
.tlhf-footer__brand {
	font-family: var(--tlhf-brand-font);
	font-size: clamp(1.72rem, 3vw, 2.6rem);
	font-weight: 400;
	line-height: 0.92;
}

.tlhf-brand__tagline,
.tlhf-footer__tagline,
.tlhf-eyebrow {
	color: var(--tlhf-muted);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.tlhf-nav {
	align-items: center;
	display: flex;
	gap: clamp(0.7rem, 1.4vw, 1.4rem);
	justify-content: center;
}

.tlhf-nav a,
.tlhf-footer a {
	color: var(--tlhf-ink);
	text-decoration: none;
}

.tlhf-nav a {
	font-size: 0.92rem;
	position: relative;
}

.tlhf-nav a::after {
	background: var(--tlhf-rose);
	bottom: -0.42rem;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 180ms ease;
	width: 100%;
}

.tlhf-nav a:hover::after,
.tlhf-nav a:focus-visible::after {
	transform: scaleX(1);
}

.tlhf-actions {
	align-items: center;
	display: flex;
	gap: 0.65rem;
	justify-content: flex-end;
}

.tlhf-text-button,
.tlhf-pill-button,
.tlhf-footer__join,
.tlhf-backtop,
.tlhf-drawer__actions button,
.tlhf-search-form button,
.tlhf-newsletter__form button {
	border: 1px solid var(--tlhf-ink);
	cursor: pointer;
	font: inherit;
	transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.tlhf-text-button {
	background: transparent;
	border-color: transparent;
	color: var(--tlhf-ink);
	padding: 0.55rem 0.25rem;
}

.tlhf-pill-button,
.tlhf-footer__join,
.tlhf-search-form button,
.tlhf-newsletter__form button,
.tlhf-drawer__actions button {
	background: var(--tlhf-button);
	color: #fff;
	padding: 0.68rem 1rem;
}

.tlhf-pill-button:hover,
.tlhf-footer__join:hover,
.tlhf-search-form button:hover,
.tlhf-newsletter__form button:hover,
.tlhf-drawer__actions button:hover {
	background: var(--tlhf-sage);
	border-color: var(--tlhf-sage);
}

.tlhf-icon-button {
	align-items: center;
	background: transparent;
	border: 1px solid var(--tlhf-line);
	color: var(--tlhf-ink);
	cursor: pointer;
	display: inline-flex;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.tlhf-mobile-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
}

.tlhf-mobile-toggle span {
	background: currentColor;
	display: block;
	height: 1px;
	width: 18px;
}

.tlhf-mega {
	border-top: 1px solid transparent;
	box-shadow: var(--tlhf-shadow);
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 100%;
	transform: translateY(-8px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.tlhf-header:hover .tlhf-mega,
.tlhf-header:focus-within .tlhf-mega,
.tlhf-mega.is-open {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.tlhf-mega__inner {
	background: var(--tlhf-paper);
	border-bottom: 1px solid var(--tlhf-line);
	display: grid;
	gap: 2rem;
	grid-template-columns: 1fr minmax(220px, 0.36fr);
	margin: 0 auto;
	max-width: var(--tlhf-max-width);
	padding: 1.5rem 1.25rem 1.75rem;
}

.tlhf-mega__grid {
	display: grid;
	gap: 0.75rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tlhf-mega__item,
.tlhf-latest-list a,
.tlhf-drawer__nav a {
	border-top: 1px solid var(--tlhf-line);
	color: var(--tlhf-ink);
	display: grid;
	gap: 0.35rem;
	padding: 0.85rem 0;
	text-decoration: none;
}

.tlhf-mega__item span,
.tlhf-latest-list span,
.tlhf-drawer__nav span,
.tlhf-muted {
	color: var(--tlhf-muted);
	font-size: 0.88rem;
	line-height: 1.45;
}

.tlhf-latest-list {
	display: grid;
}

.tlhf-latest-list strong {
	font-family: var(--tlhf-brand-font);
	font-size: 1.05rem;
	font-weight: 400;
	line-height: 1.2;
}

.tlhf-drawer,
.tlhf-overlay {
	background: rgba(33, 31, 27, 0.38);
	inset: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	transition: opacity 180ms ease;
	z-index: 10000;
}

.tlhf-drawer.is-open,
.tlhf-overlay.is-open {
	opacity: 1;
	pointer-events: auto;
}

.tlhf-drawer__panel {
	background: var(--tlhf-paper);
	box-shadow: var(--tlhf-shadow);
	display: flex;
	flex-direction: column;
	height: 100%;
	max-width: 420px;
	padding: 1rem;
	transform: translateX(-100%);
	transition: transform 220ms ease;
	width: min(88vw, 420px);
}

.tlhf-drawer.is-open .tlhf-drawer__panel {
	transform: translateX(0);
}

.tlhf-drawer__top {
	align-items: center;
	display: flex;
	font-family: var(--tlhf-brand-font);
	font-size: 1.7rem;
	justify-content: space-between;
}

.tlhf-drawer__nav {
	display: grid;
	margin: 1.25rem 0;
}

.tlhf-drawer__actions {
	display: grid;
	gap: 0.7rem;
	margin-top: auto;
}

.tlhf-overlay {
	align-items: center;
	display: flex;
	justify-content: center;
	padding: 1rem;
}

.tlhf-overlay__panel {
	background: var(--tlhf-paper);
	box-shadow: var(--tlhf-shadow);
	max-width: 680px;
	padding: clamp(1.25rem, 4vw, 2.5rem);
	position: relative;
	transform: translateY(12px);
	transition: transform 180ms ease;
	width: min(100%, 680px);
}

.tlhf-overlay.is-open .tlhf-overlay__panel {
	transform: translateY(0);
}

.tlhf-overlay__close {
	background: transparent;
	border: 1px solid var(--tlhf-line);
	color: var(--tlhf-ink);
	cursor: pointer;
	font-size: 1.7rem;
	height: 42px;
	line-height: 1;
	position: absolute;
	right: 1rem;
	top: 1rem;
	width: 42px;
}

.tlhf-search-form,
.tlhf-newsletter__form {
	display: grid;
	gap: 0.75rem;
	grid-template-columns: minmax(0, 1fr) auto;
	margin-top: 1rem;
}

.tlhf-search-form input,
.tlhf-newsletter__form input {
	background: #fff;
	border: 1px solid var(--tlhf-line);
	color: var(--tlhf-ink);
	font: inherit;
	min-height: 52px;
	padding: 0 1rem;
	width: 100%;
}

.tlhf-newsletter h2 {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(2rem, 5vw, 3.6rem);
	font-weight: 400;
	line-height: 0.98;
	margin: 0.5rem 0 0.8rem;
}

.tlhf-newsletter p {
	color: var(--tlhf-muted);
	font-size: 1.04rem;
	line-height: 1.55;
	max-width: 36rem;
}

.tlhf-newsletter small {
	color: var(--tlhf-muted);
	display: block;
	margin-top: 0.8rem;
}

.tlhf-footer {
	background: var(--tlhf-soft);
	border-top: 1px solid var(--tlhf-line);
	color: var(--tlhf-ink);
	font-family: var(--tlhf-body-font);
	padding: clamp(2rem, 5vw, 4rem) 1.25rem 1.5rem;
}

.tlhf-footer__top,
.tlhf-footer__grid,
.tlhf-footer__bottom {
	margin: 0 auto;
	max-width: var(--tlhf-max-width);
}

.tlhf-footer__top {
	align-items: start;
	border-bottom: 1px solid var(--tlhf-line);
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	padding-bottom: 1.5rem;
}

.tlhf-footer__brand {
	color: var(--tlhf-ink);
	text-decoration: none;
}

.tlhf-backtop {
	background: transparent;
	color: var(--tlhf-ink);
	padding: 0.62rem 0.86rem;
}

.tlhf-backtop:hover {
	background: var(--tlhf-ink);
	color: #fff;
}

.tlhf-footer__grid {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1.2fr 0.7fr 1fr 0.7fr;
	padding: 2rem 0;
}

.tlhf-footer h2 {
	color: var(--tlhf-muted);
	font-size: 0.74rem;
	letter-spacing: 0;
	margin: 0 0 0.85rem;
	text-transform: uppercase;
}

.tlhf-footer p {
	color: var(--tlhf-muted);
	line-height: 1.58;
	margin: 0;
}

.tlhf-footer ul {
	display: grid;
	gap: 0.52rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.tlhf-footer__join {
	margin-top: 1rem;
}

.tlhf-footer__bottom {
	border-top: 1px solid var(--tlhf-line);
	color: var(--tlhf-muted);
	display: flex;
	flex-wrap: wrap;
	font-size: 0.86rem;
	gap: 0.7rem 1rem;
	justify-content: space-between;
	padding-top: 1rem;
}

body.tlhf-lock {
	overflow: hidden;
}

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

@media (max-width: 880px) {
	.tlhf-header__bar {
		grid-template-columns: auto 1fr auto;
		min-height: 68px;
	}

	.tlhf-mobile-toggle {
		display: inline-flex;
	}

	.tlhf-nav {
		display: none;
	}

	.tlhf-brand {
		align-items: center;
		justify-self: center;
		text-align: center;
	}

	.tlhf-brand__tagline {
		display: none;
	}

	.tlhf-actions .tlhf-text-button {
		display: none;
	}

	.tlhf-mega {
		display: none;
	}

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

@media (max-width: 560px) {
	.tlhf-header__bar {
		padding: 0 0.75rem;
	}

	.tlhf-brand__mark {
		font-size: 1.8rem;
	}

	.tlhf-pill-button {
		padding: 0.58rem 0.74rem;
	}

	.tlhf-search-form,
	.tlhf-newsletter__form,
	.tlhf-footer__grid,
	.tlhf-footer__top {
		display: grid;
		grid-template-columns: 1fr;
	}

	.tlhf-footer__bottom {
		display: grid;
	}
}
