.services-page {
	padding: 72px 0 88px;
}

.services-page__header {
	max-width: 760px;
	margin: 0 auto;
}

.services-page .services__wrap {
	row-gap: 40px;
}

.services-page .services__text {
	row-gap: 14px;
}

.services-page__header p {
	width: 100%;
	max-width: 620px;
	line-height: 1.6;
	margin: 0 0 12px;
}

.services-page__intro strong {
	font-weight: 600;
}

.services-page__intro a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.services-page__intro a:hover {
	opacity: 0.85;
}

.services-page__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px;
	width: 100%;
}

.service-card {
	height: 100%;
}

.service-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	background: #f4f4f4;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 12px 30px rgba(66, 53, 41, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card__link:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(66, 53, 41, 0.14);
}

.service-card__img {
	position: relative;
	height: 220px;
	overflow: hidden;
	background: linear-gradient(135deg, #eee8e3 0%, #f4f4f4 100%);
}

.service-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	transition: transform 0.35s ease;
}

.service-card__link:hover .service-card__image {
	transform: scale(1.04);
}

.service-card__placeholder {
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 30% 30%, rgba(255, 216, 0, 0.35), transparent 55%),
		linear-gradient(135deg, #e8e0d8 0%, #f4f4f4 100%);
}

.service-card__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	row-gap: 14px;
	padding: 28px 24px 32px;
	flex: 1 1 auto;
}

.service-card__title {
	margin: 0;
	color: #423c3a;
	font-family: Golos, serif;
	font-size: 17px;
	font-weight: 600;
	text-transform: uppercase;
	line-height: 1.35;
}

.service-card__text {
	margin: 0;
	color: #655e5b;
	font-family: Golos, serif;
	font-size: 15px;
	line-height: 1.55;
	flex: 1 1 auto;
}

.service-card__more {
	display: inline-block;
	margin-top: 4px;
	color: #423c3a;
	font-family: Golos, serif;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	padding: 10px 18px;
	border-radius: 4px;
	background: #ffd800;
	box-shadow: 5.7px 5.7px 14px rgba(66, 53, 41, 0.18), inset 0 0 16px #efbf00;
	transition: transform 0.2s ease;
}

.service-card__link:hover .service-card__more {
	transform: translateY(-1px);
}

.home-services {
	padding: 64px 0 72px;
}

.home-services .services__wrap {
	row-gap: 36px;
}

.home-services .services__text {
	row-gap: 14px;
}

.home-services__grid {
	margin-top: 0;
}

.home-services__footer {
	display: flex;
	justify-content: center;
	margin-top: 32px;
}

.home-services__btn {
	display: inline-block;
	min-width: 220px;
	text-align: center;
	text-decoration: none;
	color: #423c3a;
	font-family: Golos, serif;
	font-weight: 600;
	font-size: 14px;
	text-transform: uppercase;
	padding: 14px 28px;
	border-radius: 4px;
	background: #ffd800;
	box-shadow: 5.7px 5.7px 14px rgba(66, 53, 41, 0.18), inset 0 0 16px #efbf00;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-services__btn:hover {
	transform: translateY(-2px);
	color: #423c3a;
	box-shadow: 0 10px 24px rgba(66, 53, 41, 0.18), inset 0 0 20px #efbf00;
}

.services-page__empty {
	text-align: center;
	color: #655e5b;
	font-family: Golos, serif;
	font-size: 17px;
}

@media (max-width: 1199px) {
	.services-page__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px;
	}
}

@media (max-width: 767px) {
	.services-page {
		padding: 56px 0 72px;
	}

	.home-services {
		padding: 52px 0 60px;
	}

	.home-services .services__wrap,
	.services-page .services__wrap {
		row-gap: 28px;
	}

	.services-page__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.service-card__img {
		height: 200px;
	}

	.service-card__body {
		padding: 22px 18px 26px;
	}
}
