.ld-page {
	width: 1260px;
	margin: 30px auto 0;
}

.ld-page .blockgr1 {
	width: 100%;
	box-sizing: border-box;
}

.ld-hero {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	min-height: 640px;
}

.ld-hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ld-hero__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.2) 100%);
}

.ld-hero__inner {
	position: relative;
	z-index: 2;
	padding: 48px 50px 56px;
	color: #fff;
	max-width: 820px;
}

.ld-hero h1 {
	margin: 0 0 18px;
	font-size: 48px;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 1.15;
}

.ld-hero p {
	margin: 0 0 14px;
	font-size: 18px;
	line-height: 1.55;
}

.ld-hero__lead {
	font-size: 22px !important;
	font-weight: 500;
}

.ld-elements {
	display: flex;
	gap: 18px;
	margin: 28px 0 32px;
}

.ld-element {
	flex: 1;
	text-align: center;
	text-decoration: none;
	color: #fff;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 16px;
	padding: 10px 8px 14px;
	transition: transform 0.2s, background 0.2s;
}

.ld-element:hover,
.ld-element.is-current {
	transform: translateY(-4px);
	background: rgba(255, 255, 255, 0.22);
}

.ld-element.is-current {
	outline: 2px solid rgba(255, 255, 255, 0.55);
}

.ld-element img {
	width: 100%;
	max-width: 140px;
	height: auto;
	display: block;
	margin: 0 auto 8px;
}

.title-landscape {
	display: inline-block;
	padding-bottom: 6px;
	font-size: 18px;
	font-weight: 600;
}

.stone-title-landscape {
	color: #d8d8d8;
	border-bottom: 2px solid #828282;
}

.tree-title-landscape {
	color: #9adf9a;
	border-bottom: 2px solid #006600;
}

.fire-title-landscape {
	color: #F28A1B;
	border-bottom: 2px solid #F28A1B;
}

.water-title-landscape {
	color: #5ec8f0;
	border-bottom: 2px solid #0CA2DA;
}

.ld-cta {
	display: inline-block;
	background: #026702;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	border-radius: 100px;
	padding: 16px 36px;
	font-size: 16px;
	font-weight: 500;
	transition: background 0.2s;
}

.ld-cta:hover {
	background: #000;
	color: #fff;
}

.ld-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 8px;
}

.ld-cta--ghost {
	background: transparent;
	border: 1px solid #fff;
	color: #fff;
}

.ld-cta--ghost:hover {
	background: #fff;
	color: #026702;
}

.ld-section {
	margin-top: 50px;
}

.ld-section h2,
.ld-gallery h2 {
	font-size: 36px;
	font-weight: 500;
	text-transform: uppercase;
	color: #1f3b1c;
	margin: 0 0 24px;
}

.ld-price-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	border: 1px solid #026702;
	border-radius: 16px;
	padding: 18px 24px;
	margin-bottom: 14px;
	background: #fff;
}

.ld-price-row__text span {
	display: block;
	color: #6c757d;
	font-size: 14px;
	margin-top: 4px;
}

.ld-price-row__sum {
	color: #026702;
	font-weight: 700;
	font-size: 20px;
	white-space: nowrap;
}

.ld-accordion {
	border: 1px solid #026702;
	border-radius: 16px;
	background: #f8f9fa;
	overflow: hidden;
}

.ld-accordion summary {
	list-style: none;
	cursor: pointer;
	padding: 18px 24px;
	font-size: 20px;
	font-weight: 600;
	color: #026702;
}

.ld-accordion summary::-webkit-details-marker {
	display: none;
}

.ld-accordion__body {
	padding: 0 24px 20px;
}

.ld-accordion__body ul {
	margin: 0 0 18px;
	padding-left: 20px;
	font-size: 16px;
	line-height: 1.7;
}

.ld-accordion__body .ld-price-row {
	background: #fff;
}

.ld-process__grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 30px;
	align-items: start;
}

.ld-steps {
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: ld-step;
}

.ld-steps li {
	counter-increment: ld-step;
	position: relative;
	padding: 0 0 22px 72px;
}

.ld-steps li::before {
	content: counter(ld-step, decimal-leading-zero);
	position: absolute;
	left: 0;
	top: 0;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #026702;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 16px;
}

.ld-steps h3 {
	margin: 8px 0 8px;
	font-size: 22px;
	font-weight: 600;
	color: #1f3b1c;
}

.ld-steps p {
	margin: 0;
	font-size: 16px;
	line-height: 1.55;
	color: #333;
}

.ld-process__photos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.ld-process__photos img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: 16px;
	display: block;
}

.ld-gallery {
	margin-top: 50px;
	margin-bottom: 20px;
}

#gallery-anchor {
	scroll-margin-top: 20px;
}

#ld-zayavka {
	scroll-margin-top: 20px;
}

@media (max-width: 1280px) {
	.ld-page {
		width: auto;
		margin: 20px 16px 0;
	}
}

@media (max-width: 768px) {
	.ld-hero {
		min-height: 0;
	}

	.ld-hero__inner {
		padding: 24px 16px 28px;
		max-width: none;
	}

	.ld-hero h1 {
		font-size: 28px;
	}

	.ld-hero p,
	.ld-hero__lead {
		font-size: 16px !important;
	}

	.ld-elements {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.ld-element img {
		max-width: 110px;
	}

	.ld-cta {
		width: 100%;
		text-align: center;
		box-sizing: border-box;
	}

	.ld-section h2,
	.ld-gallery h2,
	.works-gallery h2 {
		font-size: 24px;
	}

	.ld-price-row {
		flex-direction: column;
		align-items: flex-start;
		padding: 14px 16px;
	}

	.ld-process__grid {
		grid-template-columns: 1fr;
	}

	.ld-steps li {
		padding-left: 60px;
	}

	.ld-process__photos img {
		height: 140px;
	}
}
