:root {
	--bg: #060606;
	--bg-soft: #0f0f0f;
	--panel: rgba(14, 14, 14, 0.9);
	--panel-soft: rgba(18, 18, 18, 0.74);
	--line: rgba(231, 182, 73, 0.2);
	--text: #f3ecde;
	--muted: #cab998;
	--gold: #d19b39;
	--gold-soft: #f3cf86;
	--radius: 26px;
	--shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
	--shell: min(1180px, calc(100vw - 40px));
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	color: var(--text);
	line-height: 1.6;
	background:
		radial-gradient(circle at 78% 8%, rgba(209, 155, 57, 0.16), transparent 24%),
		linear-gradient(180deg, #050505 0%, #0b0b0b 58%, #070707 100%);
}

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

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

.shell {
	width: var(--shell);
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(5, 5, 5, 0.82);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(255, 224, 154, 0.08);
}

.site-header__inner,
.site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 0;
}

.brand-mark,
.site-footer__meta,
.contact-panel__details,
.hero__actions,
.hero__strip,
.trust-points {
	display: flex;
}

.brand-mark {
	align-items: center;
	gap: 14px;
}

.brand-mark__media {
	display: flex;
	align-items: center;
}

.brand-mark__logo img,
.custom-logo {
	max-height: 56px;
	width: auto;
}

.brand-mark__icon {
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	border-radius: 18px;
	font-size: 2rem;
	font-weight: 700;
	color: #160d02;
	background: linear-gradient(180deg, #ffdfa0 0%, var(--gold) 100%);
	box-shadow: inset 0 0 0 1px rgba(255, 247, 214, 0.5);
}

.brand-mark__name {
	display: block;
	font-size: 1.08rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.brand-mark__tag {
	margin: 4px 0 0;
	font: 0.74rem/1.4 Arial, Helvetica, sans-serif;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--muted);
}

.site-nav__menu {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 18px;
	font: 600 0.9rem/1 Arial, Helvetica, sans-serif;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.site-nav__menu a,
.site-footer__meta a,
.contact-panel__details a {
	color: rgba(243, 236, 222, 0.88);
}

.site-nav__menu a:hover,
.site-footer__meta a:hover,
.contact-panel__details a:hover {
	color: var(--gold-soft);
}

.hero,
.about,
.services,
.projects,
.process,
.trust,
.contact,
.content-area--default {
	padding: 36px 0 80px;
}

.hero {
	position: relative;
	padding-top: 72px;
	overflow: clip;
}

.hero__backdrop {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(3, 3, 3, 0.95) 0%, rgba(5, 5, 5, 0.78) 52%, rgba(5, 5, 5, 0.36) 100%),
		radial-gradient(circle at 80% 20%, rgba(255, 197, 90, 0.24), transparent 24%);
}

.hero__layout {
	position: relative;
	display: grid;
	grid-template-columns: 1.08fr 0.92fr;
	gap: 32px;
	align-items: center;
	min-height: 78vh;
}

.eyebrow {
	margin: 0 0 16px;
	font: 0.82rem/1 Arial, Helvetica, sans-serif;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	color: var(--gold-soft);
}

.hero h1,
.section-heading h2,
.trust-panel h2,
.contact-panel h2,
.entry-card__title {
	margin: 0;
	line-height: 0.96;
	text-transform: uppercase;
}

.hero h1 {
	max-width: 11ch;
	font-size: clamp(3.2rem, 6vw, 6rem);
	background: linear-gradient(180deg, #fff2cf 0%, #edc56b 42%, #bb7d1a 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.hero__lede,
.section-note,
.about-card p,
.service-card p,
.project-card p,
.process-step p,
.trust-point,
.contact-panel p,
.site-footer__copy,
.entry-card__content {
	font-family: Arial, Helvetica, sans-serif;
}

.hero__lede {
	max-width: 38rem;
	margin: 24px 0 0;
	font-size: 1.08rem;
	color: rgba(243, 236, 222, 0.84);
}

.hero__actions {
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 30px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 22px;
	border-radius: 999px;
	border: 1px solid rgba(255, 224, 154, 0.18);
	font: 700 0.88rem/1 Arial, Helvetica, sans-serif;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	transition: transform 180ms ease, border-color 180ms ease;
}

.button:hover {
	transform: translateY(-2px);
}

.button--solid {
	color: #1b1002;
	background: linear-gradient(180deg, #ffe4a9 0%, var(--gold) 100%);
}

.button--ghost {
	background: rgba(255, 255, 255, 0.02);
}

.hero__strip {
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 34px;
}

.hero__stat,
.metric-box,
.service-card,
.project-card,
.process-step,
.trust-panel,
.contact-panel,
.entry-card,
.about-card {
	background: linear-gradient(180deg, rgba(18, 18, 18, 0.96), rgba(10, 10, 10, 0.96));
	border: 1px solid var(--line);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.hero__stat {
	min-width: 170px;
	padding: 16px 18px;
}

.hero__stat-value,
.metric-box__value {
	display: block;
	font-size: 1.2rem;
	color: var(--gold-soft);
}

.hero__stat-label,
.metric-box__label {
	display: block;
	margin-top: 6px;
	font: 0.86rem/1.5 Arial, Helvetica, sans-serif;
	color: var(--muted);
}

.hero__visual {
	position: relative;
	height: min(700px, 72vh);
	border-radius: 36px;
	overflow: hidden;
	border: 1px solid rgba(255, 224, 154, 0.12);
	background:
		radial-gradient(circle at 72% 14%, rgba(255, 202, 104, 0.58), transparent 22%),
		linear-gradient(180deg, rgba(36, 24, 9, 0.16), rgba(0, 0, 0, 0.82));
	box-shadow: var(--shadow);
}

.hero__visual--image,
.project-card__visual--image {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.hero__visual--image::after,
.project-card__visual--image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8, 8, 8, 0.08), rgba(8, 8, 8, 0.46));
}

.hero-skyline {
	position: absolute;
	inset: 8% 7% 10%;
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 14px;
}

.hero-tower {
	position: relative;
	display: block;
	width: 13%;
	border-radius: 10px 10px 0 0;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)),
		repeating-linear-gradient(90deg, rgba(255, 206, 116, 0.16) 0 2px, transparent 2px 10px),
		linear-gradient(180deg, #253240 0%, #091018 100%);
	box-shadow: inset 0 0 0 1px rgba(255, 226, 155, 0.08);
}

.hero-tower::before {
	content: "";
	position: absolute;
	left: 50%;
	top: -70px;
	width: 2px;
	height: 70px;
	background: linear-gradient(180deg, rgba(255, 225, 147, 0.82), transparent);
	transform: translateX(-50%);
}

.hero-tower--1 { height: 42%; }
.hero-tower--2 { height: 56%; }
.hero-tower--3 { height: 86%; }
.hero-tower--4 { height: 98%; }
.hero-tower--5 { height: 74%; }
.hero-tower--6 { height: 64%; }

.hero-road {
	position: absolute;
	right: -6%;
	bottom: -10%;
	width: 86%;
	height: 32%;
	border-top: 1px solid rgba(255, 220, 145, 0.2);
	border-radius: 58% 0 0 0;
	transform: rotate(-10deg);
	background:
		radial-gradient(circle at 46% 28%, rgba(255, 186, 74, 0.24), transparent 36%),
		linear-gradient(165deg, rgba(11, 11, 11, 0.94), rgba(50, 50, 50, 0.74));
}

.hero-road::before,
.hero-road::after {
	content: "";
	position: absolute;
	inset: 22% 10%;
	border-top: 2px solid rgba(255, 198, 94, 0.7);
}

.hero-road::after {
	inset: 54% 14% auto;
}

.section-heading {
	display: grid;
	gap: 12px;
	margin-bottom: 28px;
}

.section-heading--row {
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: 24px;
}

.section-heading h2,
.trust-panel h2,
.contact-panel h2,
.entry-card__title {
	max-width: 14ch;
	font-size: clamp(2rem, 4vw, 3.6rem);
	color: #f8ecd0;
}

.section-note {
	max-width: 28rem;
	margin: 0;
	color: rgba(243, 236, 222, 0.68);
}

.about-grid,
.service-grid,
.project-grid,
.process-grid {
	display: grid;
	gap: 20px;
}

.about-grid {
	grid-template-columns: 1.1fr 0.9fr;
}

.about-card,
.contact-panel,
.entry-card {
	padding: 28px;
}

.about-card p {
	margin: 0 0 16px;
	color: rgba(243, 236, 222, 0.76);
}

.about-card p:last-child {
	margin-bottom: 0;
}

.about-card--metrics {
	display: grid;
	gap: 16px;
}

.metric-box {
	padding: 18px;
}

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

.service-card,
.process-step,
.project-card {
	padding: 24px;
}

.service-card__index,
.process-step__number {
	display: inline-block;
	margin-bottom: 18px;
	font: 700 0.86rem/1 Arial, Helvetica, sans-serif;
	letter-spacing: 0.14em;
	color: var(--gold-soft);
}

.service-card h3,
.project-card h3,
.process-step h3 {
	margin: 0 0 12px;
	font-size: 1.2rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.service-card p,
.project-card p,
.process-step p,
.contact-panel p,
.site-footer__copy,
.entry-card__content {
	margin: 0;
	color: rgba(243, 236, 222, 0.74);
}

.project-grid {
	grid-template-columns: 1.1fr 0.9fr 0.9fr;
}

.project-card {
	padding: 0;
	overflow: hidden;
}

.project-card__visual {
	position: relative;
	height: 240px;
	background:
		radial-gradient(circle at 74% 22%, rgba(255, 205, 112, 0.42), transparent 22%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.22));
}

.project-card--tall .project-card__visual {
	height: 320px;
}

.project-card__visual--district {
	background:
		linear-gradient(180deg, rgba(255, 225, 155, 0.08), rgba(0, 0, 0, 0.28)),
		linear-gradient(90deg, transparent 12%, rgba(255, 214, 126, 0.18) 12% 16%, transparent 16% 24%, rgba(255, 214, 126, 0.2) 24% 28%, transparent 28% 42%, rgba(255, 214, 126, 0.18) 42% 48%, transparent 48% 100%),
		linear-gradient(180deg, #32210a 0%, #0a0a0a 100%);
}

.project-card__visual--bridge {
	background:
		linear-gradient(145deg, transparent 56%, rgba(255, 214, 126, 0.32) 56% 58%, transparent 58% 100%),
		radial-gradient(circle at 80% 18%, rgba(255, 214, 126, 0.36), transparent 22%),
		linear-gradient(180deg, #2d1d07 0%, #090909 100%);
}

.project-card__visual--industrial {
	background:
		radial-gradient(circle at 76% 18%, rgba(255, 214, 126, 0.4), transparent 24%),
		linear-gradient(0deg, rgba(255, 214, 126, 0.12) 0 8%, transparent 8% 100%),
		linear-gradient(180deg, #281b08 0%, #090909 100%);
}

.project-card__body {
	padding: 24px;
}

.project-card__tag {
	margin: 0 0 10px;
	font: 700 0.8rem/1 Arial, Helvetica, sans-serif;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold-soft);
}

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

.trust-panel {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 24px;
	padding: 30px;
}

.trust-points {
	flex-wrap: wrap;
	gap: 14px;
}

.trust-point {
	padding: 14px 16px;
	border: 1px solid rgba(255, 224, 154, 0.12);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.02);
	color: rgba(243, 236, 222, 0.82);
}

.contact-panel {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 24px;
	align-items: center;
}

.contact-panel__details,
.site-footer__meta {
	flex-direction: column;
	gap: 10px;
	font: 0.98rem/1.5 Arial, Helvetica, sans-serif;
}

.site-footer {
	border-top: 1px solid rgba(255, 224, 154, 0.08);
	background: rgba(5, 5, 5, 0.94);
}

.site-footer__brand {
	margin: 0;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.site-footer__copy {
	margin: 8px 0 0;
	color: rgba(243, 236, 222, 0.66);
}

.entry-card__title {
	margin-bottom: 18px;
}

@media (max-width: 1080px) {
	.hero__layout,
	.about-grid,
	.section-heading--row,
	.project-grid,
	.trust-panel,
	.contact-panel {
		grid-template-columns: 1fr;
	}

	.service-grid,
	.process-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero__visual {
		height: 460px;
	}
}

@media (max-width: 760px) {
	.site-header__inner,
	.site-footer__inner {
		display: grid;
		justify-content: unset;
	}

	.site-nav__menu,
	.hero__actions,
	.hero__strip,
	.trust-points {
		flex-wrap: wrap;
	}

	.service-grid,
	.process-grid {
		grid-template-columns: 1fr;
	}

	.hero {
		padding-top: 52px;
	}

	.hero h1,
	.section-heading h2,
	.trust-panel h2,
	.contact-panel h2,
	.entry-card__title {
		max-width: none;
	}

	.hero__visual {
		height: 340px;
	}
}
