.commercial-remodeling-dark-stage {
	position: relative;
	overflow: clip;
	background: #050c18;
}

.commercial-remodeling-dark-stage__background,
.commercial-remodeling-dark-stage__overlay {
	position: absolute;
	inset: 0;
}

.commercial-remodeling-dark-stage__background {
	position: sticky;
	top: 0;
	height: 100vh;
	background:
		url("../../../images/commercial/commercial-sketch.png") center/contain no-repeat,
		linear-gradient(180deg, #050c18 0%, #050c18 100%);
	opacity: 0.18;
}

.commercial-remodeling-dark-stage__overlay {
	background: linear-gradient(180deg, rgba(5, 12, 24, 0.86) 0%, rgba(5, 12, 24, 0.72) 28%, rgba(5, 12, 24, 0.78) 72%, rgba(5, 12, 24, 0.9) 100%);
	pointer-events: none;
}

.commercial-remodeling-dark-stage__content {
	position: relative;
	z-index: 1;
	margin-top: -100vh;
}

.commercial-remodeling-process {
	min-height: 100svh;
	display: flex;
	align-items: center;
	padding: clamp(3.5rem, 7vw, 5.5rem) 0;
	background: transparent;
}

.commercial-remodeling-process__inner {
	display: grid;
	gap: 1.75rem;
}

.commercial-remodeling-process__intro {
	display: grid;
	justify-items: center;
	text-align: center;
}

.commercial-remodeling-process__heading {
	margin: 0;
	max-width: 18ch;
	font-family: var(--ldg-font-body);
	font-size: clamp(2.2rem, 4vw, 4.1rem);
	font-weight: 500;
	line-height: 0.96;
	letter-spacing: -0.04em;
	text-transform: uppercase;
	color: #f1f2f4;
}

.commercial-remodeling-process__layout {
	display: grid;
	grid-template-columns: 1.2rem minmax(0, 1.15fr) minmax(18rem, 0.85fr);
	align-items: start;
	gap: 1.5rem 2rem;
}

.commercial-remodeling-process__rail {
	position: relative;
	width: 1.2rem;
	min-height: 100%;
}

.commercial-remodeling-process__rail::before {
	content: "";
	position: absolute;
	top: 0.6rem;
	bottom: 0.6rem;
	left: 50%;
	width: 1px;
	background: linear-gradient(180deg, rgba(241, 242, 244, 0.28) 0%, rgba(166, 132, 74, 0.54) 30%, rgba(241, 242, 244, 0.18) 100%);
	transform: translateX(-50%);
}

.commercial-remodeling-process__steps {
	display: grid;
	gap: 1rem;
}

.commercial-remodeling-process-step {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 1rem;
	align-items: start;
}

.commercial-remodeling-process-step__marker {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.commercial-remodeling-process-step__number {
	font-size: 0.76rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	color: var(--ldg-brand-gold);
}

.commercial-remodeling-process-step__content {
	display: grid;
	gap: 0.55rem;
	padding: 1.15rem 1.15rem 1.1rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 1.05rem;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.commercial-remodeling-process-step__title {
	margin: 0;
	font-family: var(--ldg-font-body);
	font-size: 1.08rem;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #f1f2f4;
}

.commercial-remodeling-process-step__description {
	margin: 0;
	font-family: var(--ldg-font-body);
	font-size: 0.95rem;
	line-height: 1.68;
	color: rgba(241, 242, 244, 0.78);
}

.commercial-remodeling-process__visual {
	position: sticky;
	top: clamp(5rem, 10vh, 7rem);
}

.commercial-remodeling-process__visual-card {
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 1.3rem;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

.commercial-remodeling-process__visual-image {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

@media (max-width: 1100px) {
	.commercial-remodeling-process__layout {
		grid-template-columns: 1fr;
	}

	.commercial-remodeling-process__rail {
		display: none;
	}

	.commercial-remodeling-process__visual {
		position: static;
		order: -1;
	}
}

@media (max-width: 780px) {
	.commercial-remodeling-dark-stage__background {
		height: 100svh;
		background-size: 160vw auto, auto;
		background-position: center 14rem, center;
	}

	.commercial-remodeling-dark-stage__content {
		margin-top: calc(-100svh + 1px);
	}

	.commercial-remodeling-process {
		min-height: auto;
		padding: 3rem 0;
	}

	.commercial-remodeling-process__heading {
		font-size: clamp(2rem, 8vw, 3rem);
	}

	.commercial-remodeling-process__steps {
		gap: 0.85rem;
	}

	.commercial-remodeling-process-step {
		grid-template-columns: 1fr;
		gap: 0.7rem;
	}

	.commercial-remodeling-process-step__marker {
		width: 2.65rem;
		height: 2.65rem;
	}

	.commercial-remodeling-process-step__content {
		padding: 1.05rem 1rem 1rem;
	}

	.commercial-remodeling-process-step__description {
		font-size: 0.93rem;
	}

	.commercial-remodeling-process__visual-card {
		padding: 0.8rem;
	}
}
