:root {
	--lbt-cream: #fbebc8;
	--lbt-sand: #c7a68a;
	--lbt-brown: #81654d;
	--lbt-ink: #464646;
	--lbt-muted: #74706b;
	--lbt-white: #ffffff;
	--lbt-shadow: 0 22px 70px rgba(70, 70, 70, 0.14);
	--lbt-radius: 26px;
	--lbt-container: min(1120px, calc(100vw - 40px));
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--lbt-cream);
	color: var(--lbt-ink);
	font-family: Raleway, Roboto, "Helvetica Neue", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

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

a {
	color: inherit;
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

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

.skip-link:focus {
	clip: auto;
	height: auto;
	left: 1rem;
	padding: 0.75rem 1rem;
	top: 1rem;
	width: auto;
	z-index: 1000;
	background: var(--lbt-white);
}

.lbt-container {
	width: var(--lbt-container);
	margin-inline: auto;
}

.lbt-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 1px 20px rgba(70, 70, 70, 0.1);
	backdrop-filter: blur(14px);
}

.lbt-header__inner {
	display: flex;
	align-items: center;
	gap: clamp(0.8rem, 2vw, 1.4rem);
	margin-inline: auto;
	min-height: 82px;
	width: var(--lbt-container);
}

.lbt-brand {
	align-items: center;
	display: inline-flex;
	gap: 0.85rem;
	margin-right: auto;
	text-decoration: none;
}

.lbt-brand__mark {
	width: 58px;
}

.lbt-brand__text {
	color: var(--lbt-brown);
	display: grid;
	font-family: Dosis, Raleway, sans-serif;
	font-size: clamp(1.15rem, 2vw, 1.55rem);
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.1;
	text-transform: uppercase;
}

.lbt-brand__text small {
	color: var(--lbt-muted);
	font-family: Raleway, Arial, sans-serif;
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	text-transform: none;
}

.lbt-nav {
	display: flex;
}

.lbt-nav-list,
.lbt-nav-list .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lbt-nav-list {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0.05rem;
}

.lbt-nav-list > li {
	position: relative;
}

.lbt-nav-list > li > a {
	align-items: center;
	border-radius: 999px;
	color: var(--lbt-ink);
	display: inline-flex;
	font-size: 0.95rem;
	font-weight: 700;
	gap: 0.25rem;
	padding: 0.45rem 0.78rem;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
	white-space: nowrap;
}

.lbt-nav-list > li > a:hover,
.lbt-nav-list > li > a:focus,
.lbt-nav-list > li.current-menu-item > a,
.lbt-nav-list > li.current-menu-ancestor > a,
.lbt-nav-list > li.current_page_item > a {
	background: rgba(199, 166, 138, 0.2);
	color: var(--lbt-brown);
}

.lbt-nav-list .menu-item-has-children > a::after {
	border-bottom: 2px solid currentColor;
	border-right: 2px solid currentColor;
	content: "";
	display: inline-block;
	height: 0.42em;
	margin-left: 0.2rem;
	transform: rotate(45deg) translateY(-2px);
	transition: transform 0.2s ease;
	width: 0.42em;
}

.lbt-nav-list > .menu-item-has-children:hover > a::after,
.lbt-nav-list > .menu-item-has-children:focus-within > a::after {
	transform: rotate(225deg) translateY(2px);
}

.lbt-nav-list .sub-menu {
	background: var(--lbt-white);
	border-radius: 18px;
	box-shadow: 0 22px 60px rgba(70, 70, 70, 0.16);
	display: grid;
	gap: 0.1rem;
	left: 0;
	min-width: 290px;
	opacity: 0;
	padding: 0.55rem;
	pointer-events: none;
	position: absolute;
	top: calc(100% + 6px);
	transform: translateY(8px);
	transition: opacity 0.18s ease, transform 0.18s ease;
	z-index: 30;
}

.lbt-nav-list .sub-menu::before {
	content: "";
	height: 12px;
	left: 0;
	position: absolute;
	right: 0;
	top: -12px;
}

.lbt-nav-list > .menu-item-has-children:hover > .sub-menu,
.lbt-nav-list > .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.lbt-nav-list .sub-menu a {
	border-radius: 12px;
	color: var(--lbt-ink);
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	padding: 0.55rem 0.8rem;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

.lbt-nav-list .sub-menu a:hover,
.lbt-nav-list .sub-menu a:focus,
.lbt-nav-list .sub-menu .current-menu-item > a {
	background: rgba(199, 166, 138, 0.18);
	color: var(--lbt-brown);
}

.lbt-header__cta,
.lbt-button {
	align-items: center;
	background: var(--lbt-brown);
	border: 1px solid var(--lbt-brown);
	border-radius: 999px;
	color: var(--lbt-white);
	display: inline-flex;
	flex-shrink: 0;
	font-size: 0.95rem;
	font-weight: 800;
	justify-content: center;
	min-height: 44px;
	padding: 0.6rem 1.1rem;
	text-decoration: none;
	transition: transform 0.2s ease, background 0.2s ease;
}

.lbt-header__cta:hover,
.lbt-button:hover {
	background: #674f3b;
	transform: translateY(-1px);
}

.lbt-button--ghost {
	background: rgba(255, 255, 255, 0.68);
	color: var(--lbt-brown);
}

.lbt-menu-toggle {
	background: transparent;
	border: 0;
	display: none;
	padding: 0.5rem;
}

.lbt-menu-toggle span:not(.screen-reader-text) {
	background: var(--lbt-brown);
	display: block;
	height: 2px;
	margin: 5px 0;
	width: 26px;
}

.lbt-hero {
	min-height: clamp(560px, 75vh, 760px);
	position: relative;
	display: grid;
	place-items: center;
	overflow: hidden;
	background: var(--lbt-sand);
}

.lbt-hero__media {
	inset: 0;
	position: absolute;
}

.lbt-hero__media::after {
	background: linear-gradient(90deg, rgba(251, 235, 200, 0.96), rgba(251, 235, 200, 0.72), rgba(251, 235, 200, 0.18));
	content: "";
	inset: 0;
	position: absolute;
}

.lbt-hero__media img {
	height: 100%;
	inset: 0;
	object-fit: cover;
	opacity: 0;
	position: absolute;
	transition: opacity 1s ease;
	width: 100%;
}

.lbt-hero__media img.is-active {
	opacity: 1;
}

.lbt-hero__content {
	position: relative;
	width: var(--lbt-container);
	padding: clamp(4rem, 8vw, 7rem) 0;
}

.lbt-hero h1,
.lbt-page-hero h1 {
	color: var(--lbt-brown);
	font-family: Dosis, Raleway, sans-serif;
	font-size: clamp(2.8rem, 7vw, 5.8rem);
	letter-spacing: 0.08em;
	line-height: 0.98;
	margin: 0;
	text-transform: uppercase;
}

.lbt-eyebrow {
	color: var(--lbt-brown);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	margin: 0 0 0.8rem;
	text-transform: uppercase;
}

.lbt-hero blockquote {
	background: rgba(255, 255, 255, 0.55);
	border-left: 5px solid var(--lbt-brown);
	color: var(--lbt-brown);
	font-size: clamp(1.1rem, 2vw, 1.35rem);
	font-style: italic;
	margin: 1.6rem 0 0;
	max-width: 560px;
	padding: 1.2rem 1.4rem;
}

.lbt-hero cite {
	display: block;
	font-style: normal;
	font-weight: 800;
	margin-top: 0.45rem;
}

.lbt-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-top: 1.5rem;
}

.lbt-section {
	background: var(--lbt-white);
	padding: clamp(4rem, 7vw, 6rem) 0;
}

.lbt-section--warm {
	background: var(--lbt-cream);
}

.lbt-section--profile {
	background: linear-gradient(135deg, #fff7e6, #ffffff);
}

.lbt-section__head {
	max-width: 720px;
	margin-bottom: 2rem;
}

.lbt-section h2,
.lbt-cta h2,
.lbt-content h2 {
	color: var(--lbt-ink);
	font-size: clamp(1.8rem, 3vw, 2.55rem);
	line-height: 1.18;
	margin: 0 0 1rem;
	text-transform: uppercase;
}

.lbt-intro {
	display: grid;
	gap: 2rem;
	grid-template-columns: 0.9fr 1.1fr;
	align-items: start;
}

.lbt-checklist {
	display: grid;
	gap: 0.85rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.lbt-checklist li {
	background: rgba(255, 255, 255, 0.6);
	border-radius: 18px;
	padding: 1rem 1rem 1rem 2.65rem;
	position: relative;
}

.lbt-checklist li::before {
	background: var(--lbt-sand);
	border-radius: 999px;
	color: var(--lbt-white);
	content: "✓";
	font-weight: 800;
	height: 1.35rem;
	left: 0.85rem;
	line-height: 1.35rem;
	position: absolute;
	text-align: center;
	top: 1.15rem;
	width: 1.35rem;
}

.lbt-card-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lbt-card {
	background: var(--lbt-sand);
	border-radius: var(--lbt-radius);
	box-shadow: var(--lbt-shadow);
	color: var(--lbt-ink);
	display: grid;
	grid-template-columns: 38% 1fr;
	min-height: 230px;
	overflow: hidden;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lbt-card:hover {
	box-shadow: 0 26px 80px rgba(70, 70, 70, 0.2);
	transform: translateY(-3px);
}

.lbt-card__image {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.lbt-card__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 1.35rem;
}

.lbt-card strong {
	font-size: 1.2rem;
	line-height: 1.25;
	margin-bottom: 0.7rem;
}

.lbt-profile {
	align-items: center;
	display: grid;
	gap: clamp(2rem, 5vw, 4rem);
	grid-template-columns: minmax(240px, 0.8fr) 1.2fr;
}

.lbt-profile__image img {
	aspect-ratio: 4 / 5;
	border-radius: var(--lbt-radius);
	box-shadow: var(--lbt-shadow);
	object-fit: cover;
	width: 100%;
}

.lbt-text-link {
	color: var(--lbt-brown);
	font-weight: 800;
}

.lbt-cta {
	background: var(--lbt-brown);
	color: var(--lbt-white);
	padding: clamp(3rem, 6vw, 5rem) 0;
	text-align: center;
}

.lbt-cta h2 {
	color: var(--lbt-white);
}

.lbt-cta p {
	margin-inline: auto;
	max-width: 650px;
}

.lbt-cta .lbt-button {
	background: var(--lbt-white);
	color: var(--lbt-brown);
	margin-top: 1rem;
}

.lbt-page-hero {
	background: linear-gradient(135deg, var(--lbt-cream), #fff7e8);
	padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
}

.lbt-content {
	background: var(--lbt-white);
	border-radius: var(--lbt-radius);
	box-shadow: var(--lbt-shadow);
	margin-block: -2.4rem clamp(4rem, 7vw, 6rem);
	padding: clamp(1.5rem, 4vw, 3rem);
}

.lbt-content > *:first-child {
	margin-top: 0;
}

.lbt-content img {
	border-radius: 18px;
	margin: 1rem 0;
}

.lbt-content a {
	color: var(--lbt-brown);
	font-weight: 700;
}

.lbt-content ul,
.lbt-content ol {
	padding-left: 1.3rem;
}

.lbt-post-list {
	display: grid;
	gap: 1rem;
	padding: 4rem 0;
}

.lbt-list-card {
	background: var(--lbt-white);
	border-radius: 20px;
	padding: 1.4rem;
}

.lbt-footer {
	background: #1a1c20;
	color: #e8e1d7;
}

.lbt-footer__inner {
	display: grid;
	gap: 2rem;
	grid-template-columns: 1.2fr 1fr 0.8fr;
	margin-inline: auto;
	padding: 3rem 0;
	width: var(--lbt-container);
}

.lbt-footer h2 {
	color: var(--lbt-white);
	margin: 0 0 0.7rem;
}

.lbt-footer address {
	font-style: normal;
}

.lbt-footer a {
	color: inherit;
}

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

.lbt-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	justify-content: space-between;
	margin-inline: auto;
	padding: 1rem 0;
	width: var(--lbt-container);
}

@media (max-width: 1080px) {
	.lbt-menu-toggle {
		display: block;
	}

	.lbt-nav {
		background: var(--lbt-white);
		border-radius: 22px;
		box-shadow: var(--lbt-shadow);
		display: none;
		left: 20px;
		max-height: calc(100vh - 120px);
		overflow-y: auto;
		padding: 1rem;
		position: absolute;
		right: 20px;
		top: calc(100% + 10px);
	}

	.lbt-nav.is-open {
		display: flex;
	}

	.lbt-nav-list {
		align-items: stretch;
		flex-direction: column;
		gap: 0.15rem;
		width: 100%;
	}

	.lbt-nav-list > li > a {
		justify-content: space-between;
		width: 100%;
	}

	.lbt-nav-list .sub-menu {
		background: rgba(199, 166, 138, 0.08);
		box-shadow: none;
		display: grid;
		margin: 0.2rem 0 0.6rem 0.4rem;
		min-width: 0;
		opacity: 1;
		padding: 0.4rem;
		pointer-events: auto;
		position: static;
		transform: none;
	}

	.lbt-nav-list .menu-item-has-children > a::after {
		transform: rotate(45deg);
	}

	.lbt-header__cta {
		display: none;
	}
}

@media (max-width: 760px) {
	:root {
		--lbt-container: min(100vw - 28px, 1120px);
	}

	.lbt-header__inner {
		min-height: 70px;
	}

	.lbt-brand__mark {
		width: 46px;
	}

	.lbt-brand__text {
		font-size: 1rem;
	}

	.lbt-hero {
		min-height: 620px;
	}

	.lbt-hero__media::after {
		background: linear-gradient(180deg, rgba(251, 235, 200, 0.98), rgba(251, 235, 200, 0.7));
	}

	.lbt-intro,
	.lbt-profile,
	.lbt-footer__inner {
		grid-template-columns: 1fr;
	}

	.lbt-card-grid {
		grid-template-columns: 1fr;
	}

	.lbt-card {
		grid-template-columns: 1fr;
	}

	.lbt-card__image {
		aspect-ratio: 16 / 10;
	}

	.lbt-footer__bottom {
		display: grid;
		gap: 0.4rem;
	}
}
