:root {
	--ink: #151b2d;
	--muted: #4d5868;
	--navy: #101728;
	--blue: #1669d8;
	--sage: #d8e8d5;
	--mist: #eef6ed;
	--line: rgba(21, 27, 45, 0.14);
	--shadow: 0 24px 70px rgba(21, 27, 45, 0.14);
	--wide: 1162 / 482;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--mist);
	color: var(--ink);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.55;
}

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

a {
	color: inherit;
	text-decoration: none;
}

p,
h1,
h2,
h3 {
	margin-top: 0;
}

.container {
	width: min(100% - 48px, 1480px);
	margin: 0 auto;
}

.text-container {
	width: min(100% - 48px, 1180px);
	margin: 0 auto;
}

.topbar {
	background: var(--navy);
	color: rgba(255, 255, 255, 0.82);
	font-size: 12px;
	font-weight: 800;
}

.topbar .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 34px;
	gap: 20px;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: rgba(238, 246, 237, 0.94);
	border-bottom: 1px solid var(--line);
	backdrop-filter: blur(16px);
}

.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 82px;
	gap: 28px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 13px;
	font-weight: 950;
	line-height: 1;
	text-transform: uppercase;
}

.brand-mark {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	background: linear-gradient(145deg, #303a48, #6a7480);
	color: #fff;
	clip-path: polygon(50% 0, 96% 25%, 96% 75%, 50% 100%, 4% 75%, 4% 25%);
	font-size: 22px;
	font-weight: 950;
}

.brand small {
	display: block;
	margin-top: 5px;
	color: var(--muted);
	font-size: 10px;
	letter-spacing: 0.16em;
}

.site-nav {
	display: flex;
	align-items: center;
	font-size: 13px;
	font-weight: 900;
}

.site-nav .menu {
	display: flex;
	align-items: center;
	gap: 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav a {
	padding: 8px 0;
	color: #243044;
}

.site-nav a[aria-current="page"],
.site-nav .current-menu-item > a,
.site-nav .current_page_item > a {
	color: var(--blue);
}

.site-nav .nav-cta {
	padding: 14px 18px;
	background: var(--blue);
	color: #fff;
	border-radius: 4px;
}

.eyebrow {
	margin-bottom: 14px;
	color: var(--blue);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	border-radius: 4px;
	font-weight: 950;
}

.button--primary {
	background: var(--blue);
	color: #fff;
	box-shadow: 0 18px 34px rgba(22, 105, 216, 0.24);
}

.button--dark {
	background: var(--navy);
	color: #fff;
}

.button--outline {
	border: 1px solid rgba(255, 255, 255, 0.46);
	color: #fff;
}

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

.hero-media {
	position: relative;
	width: 100%;
}

.hero-media img {
	width: 100%;
	aspect-ratio: var(--wide);
	object-fit: cover;
}

.hero-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(8, 18, 31, 0.9), rgba(8, 18, 31, 0.62) 44%, rgba(8, 18, 31, 0.14));
}

.hero-copy {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: grid;
	align-items: center;
	pointer-events: none;
}

.hero-copy .text-container {
	pointer-events: auto;
}

.hero-content {
	max-width: 690px;
	padding: 60px 0;
}

h1 {
	margin-bottom: 22px;
	font-size: clamp(48px, 6.4vw, 92px);
	line-height: 0.94;
	letter-spacing: -0.05em;
}

.hero-content > p {
	max-width: 620px;
	color: rgba(255, 255, 255, 0.82);
	font-size: 20px;
}

.hero-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	max-width: 650px;
	margin-top: 42px;
	border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-stats div {
	padding: 22px 22px 0 0;
}

.hero-stats strong {
	display: block;
	font-size: 34px;
	line-height: 1;
}

.hero-stats span {
	color: rgba(255, 255, 255, 0.62);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.section {
	padding: 92px 0;
}

.section--white {
	background: #fff;
}

.section--dark {
	background: var(--navy);
	color: #fff;
}

.intro-grid,
.section-title {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
	gap: 52px;
	align-items: end;
}

.section-title {
	margin-bottom: 42px;
}

h2 {
	margin-bottom: 0;
	font-size: clamp(34px, 4.5vw, 62px);
	line-height: 1;
	letter-spacing: -0.045em;
}

.lead,
.section-title p,
.intro-grid p {
	color: var(--muted);
	font-size: 17px;
	font-weight: 750;
}

.section--dark .lead,
.section--dark .section-title p {
	color: rgba(255, 255, 255, 0.68);
}

.wide-image {
	width: 100%;
	aspect-ratio: var(--wide);
	object-fit: cover;
	background: #cbd8c8;
}

.wide-image--framed {
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.service-showcase {
	display: grid;
	gap: 78px;
}

.service-panel {
	display: grid;
	grid-template-columns: minmax(360px, 0.43fr) minmax(0, 1fr);
	gap: 38px;
	align-items: center;
}

.service-panel:nth-child(even) {
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.43fr);
}

.service-panel:nth-child(even) .service-copy {
	order: 2;
}

.service-copy {
	max-width: 510px;
}

.service-copy h2 {
	margin-bottom: 18px;
	font-size: clamp(30px, 3vw, 44px);
}

.service-copy p {
	color: var(--muted);
	font-weight: 750;
}

.service-copy .button-row {
	margin-top: 24px;
}

.service-links {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-top: 34px;
}

.service-link {
	padding: 24px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 6px;
	box-shadow: 0 12px 34px rgba(21, 27, 45, 0.08);
	font-weight: 950;
}

.check-list {
	display: grid;
	gap: 14px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.check-list li {
	padding: 16px 18px;
	background: rgba(22, 105, 216, 0.08);
	border-left: 4px solid var(--blue);
	border-radius: 5px;
	color: #2b384a;
	font-weight: 850;
}

.feature-band {
	position: relative;
	overflow: hidden;
	padding: 0;
	background: var(--navy);
	color: #fff;
}

.feature-band img {
	width: 100%;
	aspect-ratio: var(--wide);
	object-fit: cover;
	opacity: 0.46;
}

.feature-band .text-container {
	position: absolute;
	inset: 0;
	display: grid;
	align-items: center;
}

.feature-copy {
	max-width: 660px;
}

.feature-copy p {
	color: rgba(255, 255, 255, 0.76);
	font-size: 18px;
	font-weight: 750;
}

.stats-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-top: 36px;
}

.stats-row div {
	padding: 22px;
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 6px;
}

.stats-row strong {
	display: block;
	font-size: 34px;
}

.page-hero {
	background: var(--navy);
	color: #fff;
}

.page-hero .text-container {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
	gap: 48px;
	align-items: end;
	padding: 74px 0 42px;
}

.page-hero p {
	color: rgba(255, 255, 255, 0.72);
	font-size: 18px;
	font-weight: 750;
}

.page-hero .wide-image {
	opacity: 0.92;
}

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
}

.gallery-item {
	position: relative;
	overflow: hidden;
	background: #d3dfd1;
	border-radius: 8px;
	box-shadow: 0 18px 44px rgba(21, 27, 45, 0.11);
}

.gallery-item img {
	width: 100%;
	aspect-ratio: var(--wide);
	object-fit: cover;
	transition: transform 0.25s ease;
}

.gallery-item:hover img {
	transform: scale(1.025);
}

.gallery-item strong {
	position: absolute;
	left: 18px;
	right: 18px;
	bottom: 18px;
	padding: 13px 15px;
	background: rgba(255, 255, 255, 0.94);
	border-left: 4px solid var(--blue);
	border-radius: 4px;
}

.about-grid {
	display: grid;
	grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
	gap: 60px;
	align-items: start;
}

.about-copy p,
.about-panel p {
	color: var(--muted);
	font-weight: 750;
}

.about-panel {
	display: grid;
	gap: 18px;
}

.about-note {
	padding: 24px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 8px;
}

.about-note h3 {
	margin-bottom: 10px;
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
	gap: 50px;
	align-items: start;
}

.contact-card,
.contact-form {
	padding: 34px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: 0 16px 42px rgba(21, 27, 45, 0.08);
}

.contact-card h2,
.contact-form h2 {
	margin-bottom: 16px;
	font-size: 34px;
}

.contact-card p {
	color: var(--muted);
	font-weight: 750;
}

.contact-list {
	display: grid;
	gap: 18px;
	margin-top: 28px;
}

.contact-list div {
	padding-top: 18px;
	border-top: 1px solid var(--line);
}

.contact-list strong {
	display: block;
	margin-bottom: 5px;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.field {
	display: grid;
	gap: 8px;
	font-weight: 900;
}

.field--full {
	grid-column: 1 / -1;
}

input,
textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 4px;
	background: #f7faf5;
	color: var(--ink);
	font: inherit;
	padding: 14px 15px;
}

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

.cta {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(238, 246, 237, 0.98), rgba(238, 246, 237, 0.78)),
		url("../images/wide-metal-building.jpg") center / cover;
}

.cta-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 36px;
	align-items: center;
	padding: 52px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.cta-card h2 {
	margin-bottom: 14px;
}

.cta-card p {
	max-width: 680px;
	margin-bottom: 0;
	color: var(--muted);
	font-weight: 750;
}

.site-footer {
	padding: 58px 0 32px;
	background: #07101b;
	color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.2fr repeat(3, 1fr);
	gap: 34px;
	padding-bottom: 42px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer h3 {
	margin-bottom: 14px;
	color: #fff;
	font-size: 16px;
}

.site-footer p {
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 700;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding-top: 26px;
	font-size: 12px;
	font-weight: 800;
}

@media (max-width: 1020px) {
	.site-nav {
		display: none;
	}

	.intro-grid,
	.section-title,
	.service-panel,
	.service-panel:nth-child(even),
	.page-hero .text-container,
	.about-grid,
	.contact-layout,
	.cta-card {
		grid-template-columns: 1fr;
	}

	.service-panel:nth-child(even) .service-copy {
		order: 0;
	}

	.service-copy {
		max-width: 760px;
	}

	.service-links,
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 700px) {
	.container,
	.text-container {
		width: min(100% - 32px, 1480px);
	}

	.topbar .container,
	.footer-bottom {
		display: grid;
	}

	.brand small {
		display: none;
	}

	.hero-copy {
		position: static;
		background: var(--navy);
	}

	.hero-media::after {
		background: linear-gradient(0deg, rgba(8, 18, 31, 0.28), rgba(8, 18, 31, 0));
	}

	.hero-content {
		padding: 42px 0;
	}

	h1 {
		font-size: 44px;
	}

	.hero-stats,
	.stats-row,
	.service-links,
	.gallery-grid,
	.footer-grid,
	.form-grid {
		grid-template-columns: 1fr;
	}

	.section {
		padding: 62px 0;
	}

	.feature-band .text-container {
		position: static;
		padding: 42px 0;
	}

	.feature-band img {
		opacity: 0.9;
	}

	.cta-card,
	.contact-card,
	.contact-form {
		padding: 26px;
	}
}
