:root {
	--lb-ink: #111318;
	--lb-charcoal: #181b20;
	--lb-steel: #2f3742;
	--lb-muted: #68707a;
	--lb-line: rgba(17, 19, 24, .14);
	--lb-paper: #f6f2ea;
	--lb-white: #fff;
	--lb-amber: #f2b705;
	--lb-copper: #c86f22;
	--lb-blue: #2f6f9f;
	--lb-shadow: 0 24px 70px rgba(17, 19, 24, .16);
	--lb-radius: 6px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	background: var(--lb-paper);
	color: var(--lb-ink);
	font-family: "Inter", Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
	min-width: 320px;
}

body,
button,
input,
textarea,
select {
	font-family: "Inter", Arial, sans-serif;
}

a {
	color: inherit;
}

img,
svg {
	display: block;
	max-width: 100%;
}

.lb-shell {
	margin: 0 auto;
	max-width: 1240px;
	padding-left: 28px;
	padding-right: 28px;
	width: 100%;
}

.lb-header {
	background: rgba(246, 242, 234, .94);
	border-bottom: 1px solid var(--lb-line);
	left: 0;
	position: sticky;
	right: 0;
	top: 0;
	z-index: 50;
}

.lb-header__inner {
	align-items: center;
	display: grid;
	gap: 24px;
	grid-template-columns: auto 1fr auto;
	min-height: 82px;
}

.lb-logo {
	align-items: center;
	display: inline-flex;
	gap: 12px;
	text-decoration: none;
}

.lb-logo__mark {
	align-items: center;
	background: var(--lb-charcoal);
	color: var(--lb-amber);
	display: inline-flex;
	font-family: "Manrope", Arial, sans-serif;
	font-weight: 900;
	height: 44px;
	justify-content: center;
	width: 44px;
}

.lb-logo strong,
.lb-logo small {
	display: block;
	line-height: 1.05;
}

.lb-logo strong {
	font-family: "Manrope", Arial, sans-serif;
	font-size: 21px;
	font-weight: 900;
}

.lb-logo small {
	color: var(--lb-muted);
	font-size: 12px;
	font-weight: 800;
	margin-top: 4px;
	text-transform: uppercase;
}

.lb-nav {
	align-items: center;
	display: flex;
	gap: 24px;
	justify-content: center;
}

.lb-nav a {
	color: var(--lb-steel);
	font-size: 14px;
	font-weight: 800;
	text-decoration: none;
}

.lb-nav a:hover,
.lb-nav a[aria-current="page"] {
	color: var(--lb-copper);
}

.lb-header__actions {
	align-items: center;
	display: flex;
	gap: 12px;
	justify-content: flex-end;
}

.lb-header__phone {
	font-size: 14px;
	font-weight: 900;
	text-decoration: none;
	white-space: nowrap;
}

.lb-button {
	align-items: center;
	background: var(--lb-amber);
	border: 1px solid var(--lb-amber);
	color: var(--lb-ink);
	display: inline-flex;
	font-size: 14px;
	font-weight: 900;
	justify-content: center;
	min-height: 52px;
	padding: 0 22px;
	text-decoration: none;
	transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.lb-button:hover {
	background: #ffd447;
	border-color: #ffd447;
	transform: translateY(-1px);
}

.lb-button--dark {
	background: var(--lb-charcoal);
	border-color: var(--lb-charcoal);
	color: var(--lb-white);
}

.lb-button--dark:hover {
	background: var(--lb-steel);
	border-color: var(--lb-steel);
}

.lb-button--ghost {
	background: transparent;
	border-color: rgba(255,255,255,.44);
	color: var(--lb-white);
}

.lb-button--ghost:hover {
	background: rgba(255,255,255,.12);
	border-color: rgba(255,255,255,.68);
	color: var(--lb-white);
}

.lb-button--small {
	min-height: 44px;
	padding: 0 16px;
}

.lb-nav-toggle,
.lb-nav-button {
	display: none;
}

.lb-hero {
	background:
		linear-gradient(90deg, rgba(17,19,24,.90), rgba(17,19,24,.62) 44%, rgba(17,19,24,.18)),
		url("../images/projects/lukbud-hero-renovation.png") center center / cover no-repeat;
	color: var(--lb-white);
	min-height: 720px;
	position: relative;
}

.lb-hero__inner {
	align-items: end;
	display: grid;
	min-height: 720px;
	padding-bottom: 70px;
	padding-top: 92px;
}

.lb-hero__copy {
	max-width: 720px;
}

.lb-kicker {
	align-items: center;
	display: inline-flex;
	font-size: 12px;
	font-weight: 900;
	gap: 10px;
	margin: 0 0 18px;
	text-transform: uppercase;
}

.lb-kicker::before {
	background: var(--lb-amber);
	content: "";
	height: 3px;
	width: 42px;
}

.lb-hero h1,
.lb-section h2,
.lb-page-hero h1,
.lb-cta h2 {
	font-family: "Manrope", Arial, sans-serif;
	font-weight: 900;
	line-height: 1.02;
	margin: 0;
}

.lb-hero h1 {
	font-size: 74px;
	max-width: 780px;
}

.lb-hero__lead {
	color: rgba(255,255,255,.88);
	font-size: 20px;
	margin: 24px 0 0;
	max-width: 650px;
}

.lb-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 34px;
}

.lb-hero__stats {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: 46px;
	max-width: 760px;
}

.lb-hero__stats div {
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.16);
	padding: 18px;
}

.lb-hero__stats strong {
	color: var(--lb-amber);
	display: block;
	font-family: "Manrope", Arial, sans-serif;
	font-size: 31px;
	line-height: 1;
}

.lb-hero__stats span {
	color: rgba(255,255,255,.78);
	display: block;
	font-size: 13px;
	font-weight: 800;
	margin-top: 8px;
	text-transform: uppercase;
}

.lb-section {
	padding: 92px 0;
}

.lb-section--dark {
	background: var(--lb-charcoal);
	color: var(--lb-white);
}

.lb-section--white {
	background: var(--lb-white);
}

.lb-section-heading {
	align-items: end;
	display: grid;
	gap: 28px;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, .7fr);
	margin-bottom: 44px;
}

.lb-section-heading h2,
.lb-page-hero h1,
.lb-cta h2 {
	font-size: 48px;
}

.lb-section-heading p {
	color: var(--lb-muted);
	margin: 0;
}

.lb-section--dark .lb-section-heading p {
	color: rgba(255,255,255,.72);
}

.lb-service-grid {
	display: grid;
	gap: 14px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lb-service {
	background: var(--lb-white);
	border: 1px solid var(--lb-line);
	min-height: 290px;
	padding: 28px;
	position: relative;
}

.lb-service::before {
	background: var(--lb-amber);
	content: "";
	height: 4px;
	left: 28px;
	position: absolute;
	right: 28px;
	top: 0;
}

.lb-service span {
	color: var(--lb-copper);
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.lb-service h3 {
	font-family: "Manrope", Arial, sans-serif;
	font-size: 26px;
	line-height: 1.14;
	margin: 18px 0 12px;
}

.lb-service p {
	color: var(--lb-muted);
	margin: 0;
}

.lb-service ul,
.lb-scope ul {
	display: grid;
	gap: 8px;
	list-style: none;
	margin: 22px 0 0;
	padding: 0;
}

.lb-service li,
.lb-scope li {
	align-items: center;
	display: flex;
	gap: 9px;
}

.lb-service li::before,
.lb-scope li::before {
	background: var(--lb-blue);
	content: "";
	height: 7px;
	width: 7px;
}

.lb-proof {
	display: grid;
	gap: 1px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lb-proof div {
	background: var(--lb-charcoal);
	color: var(--lb-white);
	padding: 30px;
}

.lb-proof strong {
	color: var(--lb-amber);
	display: block;
	font-size: 13px;
	margin-bottom: 16px;
}

.lb-proof b {
	display: block;
	font-family: "Manrope", Arial, sans-serif;
	font-size: 22px;
	line-height: 1.16;
}

.lb-split {
	align-items: center;
	display: grid;
	gap: 54px;
	grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.lb-split__media {
	aspect-ratio: 4 / 3;
	background:
		linear-gradient(135deg, rgba(242,183,5,.82), rgba(47,111,159,.72)),
		url("../images/projects/lukbud-hero-renovation.png") center center / cover no-repeat;
	box-shadow: var(--lb-shadow);
}

.lb-split h2 {
	font-family: "Manrope", Arial, sans-serif;
	font-size: 48px;
	line-height: 1.05;
	margin: 0 0 24px;
}

.lb-split p {
	color: var(--lb-muted);
	margin: 0 0 18px;
}

.lb-scope {
	background: var(--lb-white);
	border: 1px solid var(--lb-line);
	padding: 28px;
}

.lb-project-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lb-project {
	background: var(--lb-white);
	border: 1px solid var(--lb-line);
	box-shadow: 0 14px 36px rgba(17, 19, 24, .08);
	overflow: hidden;
}

.lb-project__image {
	aspect-ratio: 1 / 1;
	background:
		linear-gradient(160deg, rgba(17,19,24,.1), rgba(17,19,24,.46)),
		url("../images/projects/lukbud-hero-renovation.png") center center / cover no-repeat;
}

.lb-project:nth-child(2) .lb-project__image {
	background-position: 78% center;
}

.lb-project:nth-child(3) .lb-project__image {
	background-position: 42% center;
}

.lb-project div:last-child {
	padding: 24px;
}

.lb-project h3 {
	font-family: "Manrope", Arial, sans-serif;
	font-size: 24px;
	margin: 0 0 8px;
}

.lb-project p {
	color: var(--lb-muted);
	margin: 0;
}

.lb-review-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lb-review {
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.14);
	padding: 28px;
}

.lb-review p {
	color: rgba(255,255,255,.82);
	margin: 0 0 22px;
}

.lb-review strong {
	color: var(--lb-amber);
}

.lb-cta {
	background:
		linear-gradient(90deg, rgba(24,27,32,.96), rgba(24,27,32,.76)),
		url("../images/projects/lukbud-hero-renovation.png") center center / cover no-repeat;
	color: var(--lb-white);
	padding: 90px 0;
}

.lb-cta__inner {
	align-items: center;
	display: grid;
	gap: 36px;
	grid-template-columns: minmax(0, 1fr) auto;
}

.lb-cta p {
	color: rgba(255,255,255,.74);
	margin: 18px 0 0;
	max-width: 660px;
}

.lb-page-hero {
	background: var(--lb-charcoal);
	color: var(--lb-white);
	padding: 96px 0 74px;
}

.lb-page-hero p {
	color: rgba(255,255,255,.74);
	font-size: 19px;
	margin: 22px 0 0;
	max-width: 760px;
}

.lb-two-column {
	display: grid;
	gap: 48px;
	grid-template-columns: minmax(0, .75fr) minmax(0, 1fr);
}

.lb-contact-card,
.lb-form-card,
.lb-policy,
.lb-empty {
	background: var(--lb-white);
	border: 1px solid var(--lb-line);
	box-shadow: 0 14px 36px rgba(17, 19, 24, .08);
	padding: 30px;
}

.lb-contact-list {
	display: grid;
	gap: 20px;
	margin: 28px 0 0;
}

.lb-contact-list a,
.lb-contact-list span {
	display: block;
	font-weight: 800;
	text-decoration: none;
}

.lb-contact-list small {
	color: var(--lb-muted);
	display: block;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.lb-form {
	display: grid;
	gap: 18px;
}

.lb-form-row {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lb-field label,
.lb-field > span {
	display: block;
	font-size: 13px;
	font-weight: 900;
	margin-bottom: 8px;
}

.lb-field input,
.lb-field select,
.lb-field textarea {
	background: #fbfaf6;
	border: 1px solid var(--lb-line);
	border-radius: 0;
	color: var(--lb-ink);
	font-size: 16px;
	min-height: 50px;
	padding: 12px 14px;
	width: 100%;
}

.lb-field textarea {
	min-height: 150px;
	resize: vertical;
}

.lb-checkbox {
	align-items: flex-start;
	display: flex;
	gap: 10px;
}

.lb-checkbox input {
	margin-top: 6px;
}

.lb-alert {
	background: #fff2e8;
	border-left: 4px solid var(--lb-copper);
	margin-bottom: 22px;
	padding: 14px 16px;
}

.lb-fineprint {
	color: var(--lb-muted);
	font-size: 13px;
	margin: 0;
}

.lb-policy {
	max-width: 900px;
}

.lb-policy h2 {
	font-family: "Manrope", Arial, sans-serif;
	margin: 34px 0 10px;
}

.lb-policy h2:first-child {
	margin-top: 0;
}

.lb-policy p,
.lb-policy li {
	color: var(--lb-muted);
}

.lb-footer {
	background: #101216;
	color: var(--lb-white);
	padding: 62px 0 26px;
}

.lb-footer__top {
	display: grid;
	gap: 46px;
	grid-template-columns: minmax(260px, .8fr) minmax(0, 1fr);
}

.lb-footer p {
	color: rgba(255,255,255,.68);
	margin: 20px 0 0;
	max-width: 420px;
}

.lb-footer .lb-logo__mark {
	background: var(--lb-amber);
	color: var(--lb-ink);
}

.lb-footer .lb-logo small {
	color: rgba(255,255,255,.58);
}

.lb-footer__links {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lb-footer__links strong,
.lb-footer__links a,
.lb-footer__links span {
	display: block;
}

.lb-footer__links strong {
	color: var(--lb-amber);
	font-size: 12px;
	margin-bottom: 14px;
	text-transform: uppercase;
}

.lb-footer__links a,
.lb-footer__links span {
	color: rgba(255,255,255,.72);
	font-size: 14px;
	margin-top: 9px;
	text-decoration: none;
}

.lb-footer__links a:hover {
	color: var(--lb-white);
}

.lb-footer__bottom {
	border-top: 1px solid rgba(255,255,255,.12);
	color: rgba(255,255,255,.56);
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: space-between;
	margin-top: 46px;
	padding-top: 22px;
}

.lb-honeypot {
	height: 0;
	left: -9999px;
	overflow: hidden;
	position: absolute;
}

.lb-empty {
	text-align: center;
}

@media (max-width: 1020px) {
	.lb-header__inner {
		grid-template-columns: auto auto;
	}

	.lb-nav-button {
		align-items: center;
		cursor: pointer;
		display: inline-flex;
		gap: 6px;
		justify-self: end;
	}

	.lb-nav-button span {
		background: var(--lb-ink);
		display: block;
		height: 2px;
		width: 22px;
	}

	.lb-nav-button b {
		font-size: 13px;
	}

	.lb-nav,
	.lb-header__actions {
		background: var(--lb-paper);
		border-top: 1px solid var(--lb-line);
		display: none;
		grid-column: 1 / -1;
		justify-content: flex-start;
		padding: 18px 0;
	}

	.lb-nav {
		align-items: flex-start;
		flex-direction: column;
	}

	.lb-header__actions {
		align-items: flex-start;
		flex-direction: column;
		padding-top: 0;
	}

	.lb-nav-toggle:checked ~ .lb-nav,
	.lb-nav-toggle:checked ~ .lb-header__actions {
		display: flex;
	}

	.lb-service-grid,
	.lb-project-grid,
	.lb-review-grid,
	.lb-proof,
	.lb-footer__links {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.lb-section-heading,
	.lb-split,
	.lb-two-column,
	.lb-cta__inner,
	.lb-footer__top {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 720px) {
	.lb-shell {
		padding-left: 20px;
		padding-right: 20px;
	}

	.lb-hero {
		min-height: 680px;
	}

	.lb-hero__inner {
		min-height: 680px;
		padding-bottom: 46px;
	}

	.lb-hero h1,
	.lb-section-heading h2,
	.lb-page-hero h1,
	.lb-split h2,
	.lb-cta h2 {
		font-size: 38px;
	}

	.lb-hero__lead,
	.lb-page-hero p {
		font-size: 17px;
	}

	.lb-hero__stats,
	.lb-service-grid,
	.lb-project-grid,
	.lb-review-grid,
	.lb-proof,
	.lb-form-row,
	.lb-footer__links {
		grid-template-columns: 1fr;
	}

	.lb-section,
	.lb-cta {
		padding: 64px 0;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: .01ms !important;
	}
}
