/* ============================================================================
   Service pages — overview + detail, plus reusable CTA band
   ============================================================================ */

/* ---- Page hero additions (buttons + lead variant) ------------------------ */
.page-hero__inner {
	max-width: var(--measure-wide);
}

.page-hero--lead {
	padding-block: clamp(var(--space-8), 7vw, var(--space-10)) clamp(var(--space-7), 5vw, var(--space-9));
}

.page-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-4);
	margin-top: var(--space-7);
}

.page-hero__actions .btn svg {
	transition: transform var(--dur-base) var(--ease-out);
}

.page-hero__actions .btn:hover svg {
	transform: translateX(4px);
}

/* Service detail: "Services" back link in the eyebrow */
.service-hero__back {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	color: var(--accent-strong);
	text-decoration: none;
}

.service-hero__back::before {
	content: "←";
	font-size: 1em;
	line-height: 1;
}

.service-hero__back:hover {
	color: var(--color-ember);
}

/* ---- Services overview: content under the grid --------------------------- */
.services-overview__content {
	margin-top: clamp(var(--space-7), 5vw, var(--space-8));
}

/* ---- Service detail: "What's included" ----------------------------------- */
.service-includes__grid {
	align-items: start;
	gap: clamp(var(--space-6), 4vw, var(--space-8));
}

.service-features {
	display: grid;
	gap: var(--space-3);
	margin: 0;
	padding: 0;
	list-style: none;
	max-inline-size: none;
}

.service-feature {
	display: flex;
	align-items: flex-start;
	gap: var(--space-3);
	padding: var(--space-4) var(--space-5);
	background: var(--bg-surface);
	border: var(--border-hairline) solid var(--border-default);
	border-radius: var(--radius-md);
	font-size: var(--fs-body);
	color: var(--text-primary);
	transition: border-color var(--dur-base) var(--ease-standard),
		transform var(--dur-base) var(--ease-out);
}

.service-feature:hover {
	border-color: var(--color-graphite);
	transform: translateX(3px);
}

.service-feature__check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	inline-size: 26px;
	block-size: 26px;
	flex-shrink: 0;
	border-radius: var(--radius-pill);
	background: var(--accent-wash);
	color: var(--accent-strong);
}

/* ---- Service body prose -------------------------------------------------- */
.service-body .prose > :first-child { margin-top: 0; }

/* ============================================================================
   Reusable CTA band (Ink)
   ============================================================================ */
.cta-band {
	position: relative;
	overflow: hidden;
}

.cta-band::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(45% 60% at 88% 15%, color-mix(in srgb, var(--accent) 20%, transparent), transparent 70%);
	pointer-events: none;
}

.cta-band__inner {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: clamp(var(--space-5), 4vw, var(--space-8));
}

.cta-band__copy {
	flex: 1 1 34ch;
}

.cta-band__title {
	margin: 0 0 var(--space-3);
	font-family: var(--font-display);
	font-size: var(--fs-h2);
	font-weight: var(--fw-bold);
	line-height: var(--lh-tight);
	letter-spacing: var(--tracking-tight);
	color: var(--color-paper);
	text-wrap: balance;
}

.cta-band__text {
	margin: 0;
	max-width: 54ch;
	font-size: var(--fs-body-lg);
	line-height: var(--lh-body);
	color: var(--color-stone);
}

.cta-band__action .btn svg {
	transition: transform var(--dur-base) var(--ease-out);
}

.cta-band__action .btn:hover svg {
	transform: translateX(4px);
}

@media (max-width: 560px) {
	.page-hero__actions { flex-direction: column; align-items: stretch; }
	.page-hero__actions .btn { inline-size: 100%; }
	.cta-band__action,
	.cta-band__action .btn { inline-size: 100%; }
}
