.df-hero--home {
	align-items: stretch;
	justify-content: flex-start;
	height: 100vh;
	height: 100dvh;
	max-height: 100vh;
	max-height: 100dvh;
	min-height: 100vh;
	min-height: 100dvh;
	overflow: hidden;
}

.df-hero--home .df-hero__media,
.df-hero--home picture,
.df-hero--home .df-hero__image {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}

.df-hero--home .df-hero__image {
	object-fit: cover;
	object-position: center;
}

.df-hero--home .df-hero__overlay {
	display: block;
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		180deg,
		rgba(17, 17, 17, 0.12) 0%,
		rgba(17, 17, 17, 0.28) 45%,
		rgba(17, 17, 17, 0.75) 100%
	);
	pointer-events: none;
}

.df-hero--home .df-hero__content {
	align-items: flex-start;
	justify-content: flex-end;
	flex: 1 1 auto;
	width: 100%;
	height: 100%;
	max-height: 100%;
	min-height: 0;
	max-width: 1440px;
	margin: 0 auto;
	padding: 5rem 1.5rem 100px;
	text-align: left;
}

.df-hero--home .df-hero__brand {
	margin: 0;
	max-width: none;
	color: #fff;
	font-family: "ChangAnunitype", sans-serif;
	font-size: clamp(2.75rem, 4.5vw, 3.5rem);
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1.15;
	text-transform: uppercase;
	white-space: normal;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.df-hero--home .df-hero__copy {
	max-width: 52rem;
}

.df-hero--home .df-hero__title {
	margin: 0;
	max-width: 48rem;
	color: #fff;
	font-family: "ChangAnunitype", sans-serif;
	font-size: var(--df-fs-body, 1rem);
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.45;
	text-transform: none;
	opacity: 0.95;
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.df-hero__perks {
	display: block;
	width: 100%;
	max-width: none;
	margin: 0.75rem 0 1.75rem;
	padding: 0 0 0 1.2rem;
	color: #fff;
	list-style-type: disc;
}

.df-hero__perks li {
	position: static;
	padding-left: 0;
	margin: 0 0 0.35rem;
	color: #fff;
	font-family: "ChangAnunitype", sans-serif;
	font-size: var(--df-fs-body, 1rem);
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0;
}

.df-hero__perks li::before {
	content: none;
}

.df-hero--home .df-hero__btn {
	align-self: flex-start;
	margin-top: 0;
}

/* ——— Services grid ——— */
.df-services {
	background-color: #fff;
	background-image: linear-gradient(
		180deg,
		#ffffff 0%,
		#e8f0f7 42%,
		#dfeaf4 55%,
		#ffffff 100%
	);
	background-repeat: no-repeat;
	background-size: cover;
	font-family: "ChangAnunitype", sans-serif;
	color: #111111;
}

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

.df-services__inner {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: var(--df-section-y, 4rem) var(--df-section-x, 1.5rem);
}

.df-services__title {
	margin: 0 0 2rem;
	color: #111111;
	font-family: "ChangAnunitype", sans-serif;
	font-size: var(--df-title-size, 2.5rem);
	font-weight: 400;
	line-height: 1.3;
	text-align: center;
}

.df-services__list {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 0.75rem;
}

.df-services__card:last-child:nth-child(odd) {
	grid-column: 1 / -1;
	width: 100%;
	max-width: calc(50% - 0.375rem);
	justify-self: center;
}

.df-services__card {
	position: relative;
	display: block;
	min-width: 0;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	border-radius: 0;
	background: #111111;
	color: #fff;
	text-decoration: none;
}

.df-services__card:hover,
.df-services__card:focus {
	color: #fff;
	text-decoration: none;
}

.df-services__media {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.df-services__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: transform 0.7s ease;
}

.df-services__card:hover .df-services__image,
.df-services__card:focus .df-services__image {
	transform: scale(1.08);
}

.df-services__shade {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to bottom,
		rgba(11, 69, 127, 0.55) 0%,
		rgba(17, 17, 17, 0.2) 40%,
		rgba(17, 17, 17, 0.65) 100%
	);
	z-index: 1;
	transition: background 0.35s ease;
}

.df-services__card:hover .df-services__shade {
	background: linear-gradient(
		to bottom,
		rgba(11, 69, 127, 0.7) 0%,
		rgba(17, 17, 17, 0.25) 42%,
		rgba(17, 17, 17, 0.72) 100%
	);
}

.df-services__content {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	bottom: 1.25rem;
	left: 1.25rem;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem;
}

.df-services__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
	min-width: 0;
}

.df-services__caption {
	margin: 0;
	color: #fff;
	font-family: "ChangAnunitype", sans-serif;
	font-size: var(--df-fs-sub, 2rem);
	font-weight: 400;
	line-height: 1.25;
}

.df-services__lead {
	margin: 0;
	max-width: 32rem;
	color: #fff;
	font-family: "ChangAnunitype", sans-serif;
	font-size: var(--df-fs-body, 1rem);
	font-weight: 400;
	line-height: 1.45;
	opacity: 0.92;
}

.df-services__more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-end;
	min-width: 10rem;
	margin-top: auto;
	padding: 0.65rem 1.75rem;
	background-color: transparent;
	color: #fff !important;
	font-family: "ChangAnunitype", sans-serif;
	font-size: var(--df-fs-btn, 1.25rem);
	font-weight: 400;
	line-height: 1.2;
	text-decoration: none;
	border: 2px solid #fff;
	border-radius: 0;
	transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.df-services__card:hover .df-services__more,
.df-services__card:focus .df-services__more {
	background-color: #1174D0;
	border-color: #1174D0;
	color: #fff !important;
}

/* ——— Highlights: 3 vertical cards ——— */
.df-highlights {
	background-color: #fff;
	background-image: linear-gradient(
		180deg,
		#ffffff 0%,
		#e8f0f7 42%,
		#dfeaf4 55%,
		#ffffff 100%
	);
	background-repeat: no-repeat;
	background-size: cover;
	font-family: "ChangAnunitype", sans-serif;
	color: #111111;
}

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

.df-highlights__inner {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: var(--df-section-y, 4rem) var(--df-section-x, 1.5rem);
}

.df-detailing--home .df-highlights__inner {
	padding-top: 0;
}

.df-highlights__heading {
	margin: 0 0 2.5rem;
	color: #111111;
	font-family: "ChangAnunitype", sans-serif;
	font-size: var(--df-title-size, 2.5rem);
	font-weight: 400;
	line-height: 1.3;
	text-align: center;
}

.df-highlights__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2rem 1.75rem;
	width: 100%;
}

.df-highlights__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-width: 0;
	margin: 0;
	padding: 0;
	background: transparent;
	border: none;
}

.df-highlights__media {
	position: relative;
	width: 100%;
	margin: 0 0 1.25rem;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	background: #111111;
}

.df-highlights__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.df-highlights__card:hover .df-highlights__image {
	transform: scale(1.04);
}

.df-highlights__title {
	margin: 0 0 0.75rem;
	color: #111111;
	font-family: "ChangAnunitype", sans-serif;
	font-size: var(--df-fs-sub, 1.5rem);
	font-weight: 400;
	line-height: 1.3;
	text-align: left;
}

.df-highlights__text {
	margin: 0;
	color: #111111;
	font-family: "ChangAnunitype", sans-serif;
	font-size: var(--df-fs-body, 1rem);
	font-weight: 400;
	line-height: 1.5;
	text-align: left;
}

@media (max-width: 1024px) {
	.df-highlights__list {
		gap: 1.75rem 1.25rem;
	}

	.df-highlights__title {
		font-size: 1.25rem;
	}
}

@media (max-width: 767px) {
	.df-highlights__heading {
		margin-bottom: 1.75rem;
	}

	.df-highlights__list {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.df-highlights__media {
		margin-bottom: 1rem;
		aspect-ratio: 16 / 9;
	}

	.df-highlights__title {
		margin-bottom: 0.5rem;
		font-size: 1.25rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.df-highlights__image,
	.df-highlights__card:hover .df-highlights__image {
		transform: none;
		transition: none;
	}
}

.df-features--embed {
	background: transparent;
}

.df-features--embed .df-features__inner {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0 0 3rem;
}

.df-home-video {
	background: #fff;
}

.df-home-video__inner {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 var(--df-section-x, 1.5rem) var(--df-section-y, 4rem);
}

.df-home-video__media {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	object-fit: cover;
	background: #111111;
	pointer-events: none;
}

@media (max-width: 767px) {
	.df-hero--home .df-hero__content {
		padding: 5rem 1rem 100px;
	}

	.df-hero--home,
	.df-hero.df-hero--home {
		height: 100svh !important;
		min-height: 100svh !important;
		max-height: 100svh !important;
	}

	.df-hero--home .df-hero__brand {
		font-size: 2rem;
	}

	.df-services__list {
		grid-template-columns: 1fr;
		gap: 0.5rem;
	}

	.df-services__card:last-child:nth-child(odd) {
		max-width: none;
	}

	.df-services__caption {
		font-size: 1.25rem;
	}

	.df-services__lead {
		font-size: 1rem;
	}

	.df-services__more {
		display: none;
	}

	.df-services__card {
		aspect-ratio: auto;
		min-height: 13.75rem;
	}

	.df-services__content {
		position: relative;
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
		justify-content: flex-start;
		min-height: 13.75rem;
		padding: 1.25rem 1rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.df-services__image,
	.df-services__more {
		transition: none;
	}

	.df-services__card:hover .df-services__image {
		transform: none;
	}
}
