.services-page {
	overflow: hidden;
}

.services-label {
	margin: 0 0 18px;
	color: var(--primary);
	font-size: 12px;
	font-weight: 700;
	line-height: 14px;
	letter-spacing: 4px;
	text-transform: uppercase;
}

.services-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 520px;
	padding: 115px 24px 55px;
	overflow: hidden;
	background-color: #080807;
	background-image: radial-gradient(120% 80% at 50% -10%, oklch(30% 0.03 60 / 0.55), transparent 60%), radial-gradient(90% 70% at 100% 110%, oklch(28% 0.06 55 / 0.45), transparent 65%);
	color: #ffffff;
}

.services-hero__particles {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.services-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: min(100%, 1216px);
	margin-inline: auto;
}

.services-hero__content {
	position: relative;
	z-index: 2;
	max-width: 760px;
}

.services-hero h1 {
	margin: 0 0 26px;
	font-size: 76px;
	font-weight: 800;
	line-height: 84px;
	letter-spacing: 1px;
}

.services-cta h2 span {
	background: linear-gradient(120deg, var(--primary-deep), var(--primary) 55%, oklch(86% 0.13 78));
	background-clip: text;
	color: transparent;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.services-hero h1 span {
	color: #ffffff;
}

.services-hero__intro {
	max-width: 690px;
	margin: 0;
	color: #aaa49d;
	font-size: 18px;
	line-height: 30px;
}

.services-hero__lion {
	position: absolute;
	right: -55px;
	bottom: -105px;
	width: 330px;
	opacity: 0.5;
	filter: grayscale(1) brightness(0.55);
}

.reveal-up {
	opacity: 0;
	transform: translate3d(0, 34px, 0);
	transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay), transform 800ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay);
}

.hero.is-ready .reveal-up {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

[data-scroll-reveal] {
	opacity: 0;
	transform: translate3d(0, 34px, 0);
	transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms), transform 700ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}

[data-scroll-reveal="right"] {
	transform: translate3d(38px, 0, 0);
}

[data-scroll-reveal].is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.services-list {
	background-color: #ffffff;
	color: #111111;
}

.service-row {
	padding: 100px 24px;
	border-bottom: 1px solid #e9e5df;
}

.service-row__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
	gap: 88px;
	width: min(100%, 1216px);
	margin-inline: auto;
}

.service-row__media,
.service-row__content {
	opacity: 0;
	transition: opacity 850ms cubic-bezier(0.16, 1, 0.3, 1), transform 850ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-row__media {
	transform: translate3d(-52px, 0, 0);
}

.service-row__content {
	transform: translate3d(52px, 0, 0);
	transition-delay: 140ms;
}

.service-row--reverse .service-row__media {
	transform: translate3d(52px, 0, 0);
}

.service-row--reverse .service-row__content {
	transform: translate3d(-52px, 0, 0);
}

.service-row.is-visible .service-row__media,
.service-row.is-visible .service-row__content {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.service-row--reverse .service-row__media {
	order: 2;
}

.service-row--reverse .service-row__content {
	order: 1;
}

.service-row__media {
	overflow: hidden;
	border-radius: 24px;
	background-color: #11100f;
	box-shadow: 0 24px 55px rgba(35, 22, 10, 0.14);
}

.service-row__media img,
.service-row__placeholder {
	display: block;
	width: 100%;
	height: 430px;
	object-fit: cover;
}

.service-row__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: radial-gradient(circle at 75% 30%, rgba(255, 148, 24, 0.28), transparent 34%), linear-gradient(145deg, #070707, #21170f);
	color: var(--primary);
}

.service-row__placeholder svg {
	width: 90px;
	height: 90px;
}

.service-row__content {
	max-width: 540px;
}

.service-row__content h2 {
	margin: 0;
	font-size: 48px;
	font-weight: 800;
	line-height: 56px;
	letter-spacing: -1px;
}

.service-row__underline {
	width: 100%;
	height: 2px;
	margin: 14px 0 26px;
	background: linear-gradient(90deg, var(--primary), rgba(255, 148, 24, 0.16));
}

.service-row__summary {
	margin: 0 0 25px;
	color: #66625e;
	font-size: 16px;
	line-height: 28px;
}

.service-row__features {
	display: grid;
	gap: 13px;
	margin: 0 0 30px;
	padding: 0;
	list-style: none;
}

.service-row__features li {
	position: relative;
	min-height: 22px;
	padding-left: 32px;
	color: #4d4945;
	font-size: 15px;
	font-weight: 400;
	line-height: 23px;
	opacity: 0;
	transform: translate3d(0, 12px, 0);
	transition: opacity 480ms ease, transform 480ms ease;
}

.service-row.is-visible .service-row__features li {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

.service-row.is-visible .service-row__features li:nth-child(1) {
	transition-delay: 360ms;
}

.service-row.is-visible .service-row__features li:nth-child(2) {
	transition-delay: 430ms;
}

.service-row.is-visible .service-row__features li:nth-child(3) {
	transition-delay: 500ms;
}

.service-row.is-visible .service-row__features li:nth-child(4) {
	transition-delay: 570ms;
}

.service-row.is-visible .service-row__features li:nth-child(5) {
	transition-delay: 640ms;
}

.service-row.is-visible .service-row__features li:nth-child(n + 6) {
	transition-delay: 710ms;
}

.service-row__features li::before {
	position: absolute;
	top: 1px;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 21px;
	height: 21px;
	border-radius: 50%;
	background-color: #fff0dd;
	color: var(--primary);
	font-size: 12px;
	font-weight: 800;
	line-height: 21px;
	content: "✓";
}

.service-row__link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--primary-deep);
	font-size: 15px;
	font-weight: 700;
	text-decoration: none;
}

.service-row__link span:last-child {
	transition: transform var(--transition);
}

.service-row__link:hover span:last-child {
	transform: translateX(5px);
}

.services-list__empty {
	width: min(100% - 48px, 760px);
	margin-inline: auto;
	padding: 100px 0;
	text-align: center;
}

.services-list__empty h2 {
	margin: 0 0 15px;
	font-size: 42px;
	line-height: 50px;
}

.services-list__empty p {
	margin: 0;
	color: #66625e;
	font-size: 16px;
	line-height: 27px;
}

.services-cta {
	position: relative;
	padding: 105px 24px;
	overflow: hidden;
	background-color: #080807;
	background-image: radial-gradient(70% 110% at 50% 0%, oklch(25% 0.035 58 / 0.45), transparent 70%);
	color: #ffffff;
	text-align: center;
}

.services-cta__inner {
	position: relative;
	z-index: 2;
	max-width: 820px;
	margin-inline: auto;
}

.services-cta h2 {
	margin: 0 0 22px;
	font-size: 58px;
	font-weight: 800;
	line-height: 64px;
	letter-spacing: -2px;
}

.services-cta p {
	max-width: 620px;
	margin: 0 auto 34px;
	color: #aaa49d;
	font-size: 16px;
	line-height: 26px;
}

.services-cta__actions {
	display: flex;
	justify-content: center;
	gap: 14px;
}

.services-cta__actions .button {
	gap: 10px;
	min-height: 54px;
	padding: 0 30px;
	font-size: 14px;
	font-weight: 700;
	transition: color var(--transition), background-color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.services-cta__actions .button:hover {
	opacity: 1;
	transform: translateY(-2px);
}

.services-cta__actions .button span:last-child {
	transition: transform var(--transition);
}

.services-cta__actions .button:hover span:last-child {
	transform: translateX(5px);
}

.services-cta__actions .button:not(.button--outline):hover {
	border-color: #ffffff;
	background-color: #ffffff;
	box-shadow: 0 0 34px rgba(255, 148, 24, 0.25);
}

.services-cta__actions .button--outline {
	border-color: rgba(255, 255, 255, 0.18);
	background-color: transparent;
	color: #ffffff;
}

.services-cta__actions .button--outline:hover {
	border-color: var(--color-primary);
	background-color: transparent;
	color: var(--color-primary);
}

.services-cta__lion {
	position: absolute;
	bottom: -85px;
	width: 240px;
	opacity: 0.34;
}

.services-cta__lion--bronze {
	left: -40px;
}

.services-cta__lion--silver {
	right: -40px;
	filter: grayscale(1) brightness(0.58);
}

@media (max-width: 900px) {
	.services-hero h1 {
		font-size: 62px;
		line-height: 70px;
	}

	.service-row__inner {
		grid-template-columns: 1fr;
		gap: 46px;
	}

	.service-row--reverse .service-row__media,
	.service-row--reverse .service-row__content {
		order: initial;
	}

	.service-row__media,
	.service-row__content {
		width: min(100%, 680px);
		margin-inline: auto;
	}

	.services-cta h2 {
		font-size: 44px;
		line-height: 50px;
		letter-spacing: -1px;
	}
}

@media (max-width: 620px) {
	.services-hero {
		min-height: 560px;
		padding-right: 18px;
		padding-left: 18px;
	}

	.services-hero h1 {
		font-size: 50px;
		line-height: 57px;
	}

	.services-hero__intro {
		font-size: 16px;
		line-height: 27px;
	}

	.services-hero__lion {
		right: -120px;
		width: 280px;
		opacity: 0.27;
	}

	.service-row {
		padding: 72px 18px;
	}

	.service-row__media img,
	.service-row__placeholder {
		height: 300px;
	}

	.service-row__content h2 {
		font-size: 36px;
		line-height: 43px;
	}

	.services-cta {
		padding-right: 18px;
		padding-left: 18px;
	}

	.services-cta h2 {
		font-size: 36px;
		line-height: 42px;
	}

	.services-cta__actions {
		flex-direction: column;
	}

	.services-cta__actions .button {
		width: 100%;
	}

	.services-cta__lion {
		width: 170px;
		opacity: 0.2;
	}
}
