:root {
	--bg: #06131c;
	--gold: #d9aa72;
	--gold-2: #f0cf9d;
	--text: #f5f7f8;
	--muted: #b6c0c7;
	--line: rgba(240, 207, 157, .28);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--bg);
	color: var(--text);
	font-family: Montserrat, Arial, sans-serif;
	letter-spacing: 0;
}

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

p {
	color: var(--muted);
	font-size: 15px;
	line-height: 1.8;
	margin: 25px 0;
}

h1,
h2,
h3 {
	margin: 0;
	text-transform: uppercase;
}

h1 {
	font-size: clamp(38px, 5vw, 62px);
	line-height: 1.1;
	max-width: 680px;
}

h2 {
	font-size: clamp(24px, 3vw, 36px);
	line-height: 1.15;
}

.container {
	width: calc(100% - (min(6vw, 72px) * 2));
	margin: 0 auto;
}

.site-header {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 34px min(6vw, 72px);
}

.brand,
.footer-brand {
	display: inline-flex;
	align-items: center;
	gap: 14px;
}

.brand-logo {
	/* height: 40px; */
	object-fit: cover;
}

.nav {
	position: absolute;
	top: 82px;
	left: 20px;
	right: 20px;
	display: none;
	flex-direction: column;
	gap: 18px;
	padding: 20px;
	border: 1px solid var(--line);
	background: rgba(3, 13, 19, .97);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.3px;
	text-transform: uppercase;
}

.nav a {
	color: rgba(255, 255, 255, .86);
}

.nav a.active,
.nav a:hover {
	color: var(--gold-2);
}

.nav.open {
	display: flex;
}

.menu-toggle {
	display: inline-flex;
	border: 1px solid var(--line);
	background: rgba(4, 16, 24, .9);
	color: var(--gold-2);
	padding: 10px 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.section,
.section-bg {
	border-bottom: 1px solid var(--line);
}

.hero {
	position: relative;
	min-height: 650px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--bg);
}

.hero-content {
	position: relative;
	z-index: 1;
	padding-top: 80px;
}

.background-video,
.background-image,
.photo-panel img,
.photo-panel video,
.about-bg img,
.hub-photo img,
.map-card img,
.map-card video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.background-video,
.background-image {
	position: absolute;
	inset: 0;
}

.hero p {
	max-width: 540px;
	margin: 0 0 35px;
	font-size: 18px;
}

.gold-line {
	display: block;
	width: 45px;
	height: 2px;
	margin: 25px 0 25px;
	background: var(--gold);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 160px;
	height: 50px;
	border: 1px solid var(--gold);
	color: var(--gold-2);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}

.btn:hover {
	background: var(--gold);
	color: #071019;
}

.section {
	padding: 56px 0;
}

.two-cols {
	display: grid;
	grid-template-columns: 1fr;
	gap: 42px;
	align-items: center;
}

.eyebrow {
	display: inline-block;
	margin-bottom: 20px;
	color: var(--gold-2);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1.7px;
	text-transform: uppercase;
}

.about p {
	margin: 25px 0;
}

.about,
.about-bg {
	position: relative;
	overflow: hidden;
}

.about-bg {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.about-bg {
	background-image: url("img/about-bg.jpg");
}

.hub-copy {
	position: relative;
	overflow: hidden;
}

.hub-copy {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.hub-copy {
	background-image: url("img/hub-bg.jpg");
}

.hero::before,
.about::before,
.hub-copy::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 100%;
	background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 90%);
	pointer-events: none;
	z-index: 1;
}

.about-content,
.hub-copy>*,
.hubs>* {
	position: relative;
	z-index: 1;
}

.about-content {
	min-height: 600px;
	display: flex;
	align-items: center;
	padding: 55px 0;
}

.text-link {
	color: var(--gold-2);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.text-link span {
	margin-left: 15px;
	font-size: 21px;
}

.split-section {
	display: grid;
	grid-template-columns: 1fr;
	border-bottom: 1px solid var(--line);
}

.work {
	grid-template-columns: 1fr;
}

.photo-panel {
	min-height: 280px;
	position: relative;
	overflow: hidden;
}

.photo-panel::after,
.hub-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(0, 0, 0, .18), rgba(0, 0, 0, .3));
}

.work-panel {
	padding: 55px 20px;
	background: linear-gradient(120deg, #071722, #041018);
}

.steps {
	display: grid;
	grid-template-columns: 1fr;
	gap: 42px;
	margin-top: 25px;
}

.steps article {
	position: relative;
}

.steps article:not(:last-child)::after {
	display: none;
}

.icon {
	display: flex;
	margin-bottom: 28px;
}

.icon img {
	width: 55px;
	height: 55px;
	object-fit: contain;
}

.steps h3 {
	color: var(--gold-2);
	font-size: 14px;
	margin-bottom: 12px;
}

.steps p {
	font-size: 13px;
	line-height: 1.65;
}

.hubs {
	grid-template-columns: 1fr;
	min-height: 340px;
}

.hub-copy {
	padding: 56px 20px;
}

.hub-list {
	margin: 40px 0;
}

.hub-list p {
	font-size: 13px;
}

.hub-list strong {
	color: var(--text);
	text-transform: uppercase;
}

.hub-photo {
	position: relative;
	min-height: 280px;
	overflow: hidden;
	border-left: 0;
	border-top: 1px solid var(--line);
}

.categories-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 44px;
	align-items: center;
}

.categories ul {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	padding: 0;
	margin: 0;
	list-style: none;
}

.categories li {
	min-height: 112px;
	display: grid;
	place-items: center;
	align-content: center;
	gap: 12px;
	padding: 0 12px;
	border-left: 0;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.35;
	text-align: center;
	text-transform: uppercase;
}

.categories li:not(:first-child) {
	border-top: 1px solid var(--line);
}

.categories li img {
	width: 46px;
	height: 46px;
	object-fit: contain;
}

.contact {
	position: relative;
	padding: 56px 0;
	overflow: hidden;
	background: var(--bg);
}

.contact::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(3, 13, 19, .98), rgba(3, 13, 19, .82));
}

.contact-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 56px;
	align-items: center;
}

address {
	display: grid;
	gap: 18px;
	color: var(--text);
	font-style: normal;
}

address a,
address span {
	display: inline-flex;
	align-items: center;
	gap: 12px;
}

address img {
	width: 20px;
	height: 20px;
	flex: 0 0 20px;
}

.footer-brand {
	flex-wrap: wrap;
	justify-self: start;
	max-width: 310px;
}

.footer-brand p {
	width: 100%;
	margin-top: 10px;
	color: var(--gold-2);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

footer {
	padding: 22px;
	color: var(--muted);
	font-size: 11px;
	letter-spacing: 1.2px;
	text-align: center;
	text-transform: uppercase;
}

@media (min-width: 561px) {

	.steps,
	.categories ul {
		grid-template-columns: repeat(2, 1fr);
	}

	.brand-logo {
		height: 48px;
	}
}

@media (min-width: 981px) {
	.site-header {
		padding: 34px min(6vw, 72px);
	}

	.menu-toggle {
		display: none;
	}

	.nav {
		position: static;
		display: flex;
		flex-direction: row;
		gap: clamp(24px, 5vw, 70px);
		padding: 0;
		border: 0;
		background: transparent;
	}

	.nav.open {
		display: flex;
	}

	.hero {
		min-height: 760px;
	}

	.hero::before,
	.about::before,
	.hub-copy::before {
		background: linear-gradient(90deg, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 70%);
	}

	.section {
		padding: 86px 0;
	}

	.two-cols,
	.work,
	.hubs,
	.categories-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.work {
		grid-template-columns: 1fr 2fr;
	}

	.photo-panel {
		min-height: 360px;
	}

	.work-panel {
		padding: 70px min(6vw, 80px);
	}

	.steps {
		grid-template-columns: repeat(4, 1fr);
	}

	.steps article:not(:last-child)::after {
		content: "";
		position: absolute;
		top: 30px;
		left: 100px;
		width: calc(100% - 80px);
		height: 1px;
		background: var(--line);
		display: block;
	}

	.hubs {
		grid-template-columns: 2fr 1fr;
	}

	.hub-copy {
		padding: 62px min(6vw, 80px);
	}

	.hub-photo {
		min-height: 340px;
		border-top: 0;
		border-left: 1px solid var(--line);
	}

	.about-content>div {
		max-width: 50%;
	}

	.categories-grid {
		grid-template-columns: 1fr 1.5fr;
	}

	.categories ul {
		grid-template-columns: repeat(5, 1fr);
	}

	.categories li:not(:first-child) {
		border-top: 0;
		border-left: 1px solid var(--line);
	}

	.contact {
		padding: 80px 0 58px;
	}

	.contact-grid {
		grid-template-columns: 1fr .5fr 1fr;
	}

	.footer-brand {
		justify-self: end;
	}
}
