.s92-services-grid {
	--s92-card-bg: var(--s92-section-surface);
	--s92-card-title: var(--s92-section-text);
	--s92-card-muted: var(--s92-section-muted);
	--s92-card-accent: var(--s92-section-accent);
	--s92-card-accent-ink: color-mix(in srgb, var(--s92-card-accent) 56%, var(--s92-card-title));
	--s92-card-line: var(--s92-section-line);
	--s92-card-gap: 18px;
	--s92-card-column-gap: var(--s92-card-column-gap-custom, var(--s92-card-gap));
	--s92-card-row-gap: var(--s92-card-row-gap-custom, var(--s92-card-gap));
	--s92-card-radius: 10px;
	--s92-card-border-width: 1px;
	--s92-card-padding: var(--s92-card-padding-custom, 18px);
	--s92-card-min-height: auto;
	--s92-card-align: start;
	--s92-card-text-align: start;
	--s92-meta-title-gap: 14px;
	--s92-title-description-gap: 10px;
	--s92-content-link-gap: 18px;
	--s92-link-padding-top: 16px;
	--s92-image-position: center center;
	--s92-image-hover-scale: 1.04;
	--s92-intro-max: 840px;
	--s92-eyebrow-title-gap: 14px;
	--s92-heading-description-gap: 18px;
	--s92-intro-cards-gap: clamp(28px, 4vw, 48px);
	--s92-title-line-gap: 0px;
	--s92-card-duration: 475ms;
	--s92-card-stagger: 60ms;
	--s92-columns: var(--s92-columns-desktop, 4);
	--s92-carousel-peek: 0px;
	--s92-carousel-peek-active: 0px;
	--s92-carousel-control-bg: var(--s92-card-bg);
	--s92-carousel-control-ink: var(--s92-card-title);
	--s92-carousel-control-line: var(--s92-card-line);
	--s92-carousel-dot: color-mix(in srgb, var(--s92-card-title) 26%, transparent);
	--s92-carousel-dot-active: var(--s92-card-accent);
	--s92-carousel-controls-gap: 10px;
	--s92-carousel-controls-cards-gap: 18px;
	--s92-carousel-arrow-size: 44px;
	--s92-carousel-arrow-radius: 8px;
	--s92-actions-direction: column;
	--s92-actions-gap: 10px;
	--s92-actions-top-gap: 18px;
	--s92-quote-button-bg: var(--s92-card-accent);
	--s92-quote-button-ink: #111411;
	--s92-quote-button-line: var(--s92-card-accent);
	--s92-quote-button-hover-bg: color-mix(in srgb, var(--s92-card-accent) 86%, white);
	--s92-quote-button-hover-ink: #111411;
	--s92-quote-button-radius: 8px;
	--s92-view-link-ink: var(--s92-card-title);
	--s92-view-link-hover-ink: var(--s92-card-accent-ink);
}

.s92-services-grid--density-comfortable {
	--s92-card-padding: var(--s92-card-padding-custom, 24px);
}

.s92-services-grid .s92-section__intro {
	max-width: var(--s92-intro-max);
	margin-bottom: var(--s92-intro-cards-gap);
}

.s92-services-grid .s92-section__eyebrow {
	margin-bottom: var(--s92-eyebrow-title-gap);
}

.s92-services-grid .s92-section__title {
	display: flex;
	max-width: none;
	flex-direction: column;
	gap: var(--s92-title-line-gap);
	text-wrap: nowrap;
}

.s92-services-grid .s92-section__title-line,
.s92-services-grid .s92-service-card__title-line {
	display: block;
	white-space: nowrap;
}

.s92-services-grid .s92-section__description {
	margin-top: var(--s92-heading-description-gap);
}

.s92-services-grid__stage {
	display: flex;
	min-width: 0;
	flex-direction: column;
}

.s92-services-grid__items {
	display: flex;
	min-width: 0;
	flex-wrap: wrap;
	align-items: stretch;
	column-gap: var(--s92-card-column-gap);
	row-gap: var(--s92-card-row-gap);
}

.s92-service-card {
	position: relative;
	display: grid;
	flex: 1 1 calc(
		(100% - (var(--s92-card-column-gap) * (var(--s92-columns) - 1)))
		/ var(--s92-columns)
	);
	grid-template-rows: auto 1fr;
	min-width: 0;
	min-height: var(--s92-card-min-height);
	overflow: hidden;
	overflow: clip;
	border-radius: var(--s92-card-radius);
	background: var(--s92-card-bg);
	color: var(--s92-card-title);
}

.s92-services-grid--surface-outline .s92-service-card {
	border: var(--s92-card-border-width) solid var(--s92-card-line);
}

.s92-services-grid--surface-flat .s92-service-card {
	border: 0;
	background: color-mix(in srgb, var(--s92-card-bg) 94%, var(--s92-card-accent));
}

.s92-services-grid--surface-elevated .s92-service-card {
	border: var(--s92-card-border-width) solid transparent;
	box-shadow: 0 4px 8px rgb(10 15 12 / 9%);
}

.s92-service-card--highlighted {
	background: color-mix(in srgb, var(--s92-card-bg) 90%, var(--s92-card-accent));
}

.s92-service-card--highlighted::before {
	position: absolute;
	z-index: 3;
	inset: 0 0 auto;
	height: 3px;
	background: var(--s92-card-accent);
	content: "";
}

.s92-service-card__media {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background: color-mix(in srgb, var(--s92-section-bg) 82%, black);
}

.s92-services-grid--ratio-classic .s92-service-card__media {
	aspect-ratio: 4 / 3;
}

.s92-services-grid--ratio-square .s92-service-card__media {
	aspect-ratio: 1;
}

.s92-service-card__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: var(--s92-image-position);
	filter: saturate(0.88) contrast(1.02);
	transition:
		transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
		filter 220ms ease;
}

.s92-service-card__media-label,
.s92-service-card__label {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	max-width: calc(100% - 24px);
	min-height: 26px;
	padding: 5px 9px;
	border-radius: 999px;
	background: var(--s92-card-accent);
	color: #111411;
	font-size: 0.68rem;
	font-weight: 850;
	letter-spacing: 0.045em;
	line-height: 1.1;
}

.s92-service-card__media-label {
	position: absolute;
	z-index: 2;
	inset-block-start: 12px;
	inset-inline-start: 12px;
}

.s92-service-card__body {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: var(--s92-card-align);
	min-width: 0;
	padding: var(--s92-card-padding);
	text-align: var(--s92-card-text-align);
}

.s92-service-card__meta {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: var(--s92-meta-title-gap);
}

.s92-service-card__number {
	color: var(--s92-card-accent-ink);
	font-size: 0.68rem;
	font-weight: 850;
	letter-spacing: 0.1em;
	line-height: 1;
}

.s92-service-card__title,
.s92-service-card__description {
	margin: 0;
}

.s92-service-card__title {
	max-width: 19ch;
	color: var(--s92-card-title);
	font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", sans-serif;
	font-size: clamp(1.18rem, 1.6vw, 1.45rem);
	font-weight: 800;
	letter-spacing: -0.025em;
	line-height: 1.08;
	text-wrap: nowrap;
}

.s92-service-card__description {
	display: -webkit-box;
	max-width: 58ch;
	margin-top: var(--s92-title-description-gap);
	overflow: hidden;
	color: var(--s92-card-muted);
	font-size: 0.88rem;
	line-height: 1.55;
	text-wrap: pretty;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.s92-services-grid--lines-2 .s92-service-card__description {
	-webkit-line-clamp: 2;
}

.s92-services-grid--lines-4 .s92-service-card__description {
	-webkit-line-clamp: 4;
}

.s92-services-grid--lines-all .s92-service-card__description {
	display: block;
	overflow: visible;
}

.s92-service-card__actions {
	display: flex;
	width: 100%;
	flex-direction: var(--s92-actions-direction);
	align-items: stretch;
	gap: var(--s92-actions-gap);
	margin-top: auto;
	padding-top: var(--s92-link-padding-top);
	border-top: 1px solid var(--s92-card-line);
}

.s92-service-card__description + .s92-service-card__actions,
.s92-service-card__title + .s92-service-card__actions {
	margin-top: var(--s92-actions-top-gap);
}

.s92-service-card__link,
.s92-service-card__quote {
	display: inline-flex;
	min-width: 0;
	min-height: 44px;
	flex: 1 1 0;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 11px 12px;
	border-radius: var(--s92-quote-button-radius);
	font-size: 0.78rem;
	font-weight: 850;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition:
		border-color 180ms ease,
		background-color 180ms ease,
		color 180ms ease,
		transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.s92-service-card__link {
	border: 1px solid transparent;
	background: transparent;
	color: var(--s92-view-link-ink);
}

.s92-service-card__quote {
	appearance: none;
	border: 1px solid var(--s92-quote-button-line);
	background: var(--s92-quote-button-bg);
	color: var(--s92-quote-button-ink);
	font: inherit;
	font-size: 0.78rem;
	font-weight: 850;
}

.s92-service-card__quote svg {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.s92-service-card__link:is(:hover, :focus-visible) {
	color: var(--s92-view-link-hover-ink);
}

.s92-service-card__quote:is(:hover, :focus-visible) {
	border-color: var(--s92-quote-button-hover-bg);
	background: var(--s92-quote-button-hover-bg);
	color: var(--s92-quote-button-hover-ink);
	transform: translateY(-1px);
}

.s92-service-card__quote:active {
	transform: translateY(0);
}

.s92-service-card__link:focus-visible,
.s92-service-card__quote:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--s92-card-accent) 72%, white);
	outline-offset: 2px;
}

.s92-service-card__arrow {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	color: var(--s92-card-accent-ink);
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.s92-services-grid--interaction-precise .s92-service-card:is(:hover, :focus-within) .s92-service-card__image,
.s92-services-grid--interaction-accent .s92-service-card:is(:hover, :focus-within) .s92-service-card__image {
	transform: scale(var(--s92-image-hover-scale));
	filter: saturate(1) contrast(1.04);
}

.s92-services-grid--interaction-precise .s92-service-card:is(:hover, :focus-within) .s92-service-card__arrow,
.s92-services-grid--interaction-accent .s92-service-card:is(:hover, :focus-within) .s92-service-card__arrow,
.s92-service-card__quote:is(:hover, :focus-visible) svg {
	transform: translateX(4px);
}

.s92-services-grid--interaction-precise .s92-service-card:is(:hover, :focus-within) {
	border-color: color-mix(in srgb, var(--s92-card-accent) 62%, var(--s92-card-line));
}

.s92-services-grid--interaction-accent .s92-service-card__actions {
	margin-inline: calc(var(--s92-card-padding) * -1);
	margin-bottom: calc(var(--s92-card-padding) * -1);
	width: calc(100% + (var(--s92-card-padding) * 2));
	padding: 12px var(--s92-card-padding) var(--s92-card-padding);
	background: color-mix(in srgb, var(--s92-card-bg) 88%, var(--s92-card-accent));
}

.s92-services-grid--interaction-accent .s92-service-card__arrow {
	color: var(--s92-card-accent-ink);
}

/* Native, manual carousel: scroll-snap keeps touch and keyboard behavior fast. */
.s92-services-grid.is-carousel .s92-services-grid__items {
	flex-wrap: nowrap;
	align-items: stretch;
	padding-bottom: 3px;
	overflow-x: auto;
	overflow-y: hidden;
	overscroll-behavior-inline: contain;
	scroll-behavior: smooth;
	scroll-snap-type: inline mandatory;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}

.s92-services-grid.is-carousel .s92-services-grid__items::-webkit-scrollbar {
	display: none;
}

.s92-services-grid.is-carousel .s92-service-card {
	flex: 0 0 calc(
		(
			100%
			- (var(--s92-card-column-gap) * (var(--s92-columns) - 1))
			- var(--s92-carousel-peek-active)
		)
		/ var(--s92-columns)
	);
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.s92-services-grid.is-carousel.has-carousel-overflow {
	--s92-carousel-peek-active: var(--s92-carousel-peek);
}

.s92-services-grid__items:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--s92-card-accent) 70%, white);
	outline-offset: 4px;
}

.s92-services-carousel__controls {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: var(--s92-carousel-controls-gap);
}

.s92-services-carousel__controls[hidden] {
	display: none;
}

.s92-services-grid--controls-top .s92-services-carousel__controls {
	order: -1;
	margin-bottom: var(--s92-carousel-controls-cards-gap);
}

.s92-services-grid--controls-bottom .s92-services-carousel__controls {
	margin-top: var(--s92-carousel-controls-cards-gap);
}

.s92-services-carousel__arrow {
	appearance: none;
	display: inline-grid;
	width: var(--s92-carousel-arrow-size);
	height: var(--s92-carousel-arrow-size);
	flex: 0 0 var(--s92-carousel-arrow-size);
	place-items: center;
	padding: 0;
	border: 1px solid var(--s92-carousel-control-line);
	border-radius: var(--s92-carousel-arrow-radius);
	background: var(--s92-carousel-control-bg);
	color: var(--s92-carousel-control-ink);
	cursor: pointer;
	transition:
		border-color 180ms ease,
		background-color 180ms ease,
		color 180ms ease,
		transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.s92-services-carousel__arrow svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.7;
}

.s92-services-carousel__arrow:is(:hover, :focus-visible):not(:disabled) {
	border-color: var(--s92-card-accent);
	background: var(--s92-card-accent);
	color: #111411;
	transform: translateY(-1px);
}

.s92-services-carousel__arrow:disabled {
	opacity: 0.34;
	cursor: not-allowed;
}

.s92-services-carousel__dots {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: var(--s92-carousel-arrow-size);
	padding-inline: 4px;
}

.s92-services-carousel__dot {
	appearance: none;
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: var(--s92-carousel-dot);
	cursor: pointer;
	transition:
		width 220ms cubic-bezier(0.22, 1, 0.36, 1),
		background-color 180ms ease;
}

.s92-services-carousel__dot[aria-current="true"] {
	width: 24px;
	background: var(--s92-carousel-dot-active);
}

/* Horizontal cards keep the same data contract and switch composition only. */
.s92-services-grid--layout-horizontal .s92-service-card--has-media {
	grid-template-columns: minmax(132px, 38%) 1fr;
	grid-template-rows: 1fr;
}

.s92-services-grid--layout-horizontal .s92-service-card__media {
	height: 100%;
	min-height: 188px;
	aspect-ratio: auto;
}

.s92-services-grid--layout-horizontal .s92-service-card__image,
.s92-services-grid--layout-visual .s92-service-card__image {
	position: absolute;
	inset: 0;
}

/* The visual variant remains compact while letting photography carry hierarchy. */
.s92-services-grid--layout-visual .s92-service-card--has-media {
	grid-template-rows: minmax(280px, 1fr);
}

.s92-services-grid--layout-visual .s92-service-card--has-media > * {
	grid-area: 1 / 1;
}

.s92-services-grid--layout-visual .s92-service-card__media {
	height: 100%;
	min-height: 280px;
	aspect-ratio: auto;
}

.s92-services-grid--layout-visual .s92-service-card--has-media .s92-service-card__body {
	z-index: 2;
	align-self: stretch;
	justify-content: flex-end;
	background: linear-gradient(180deg, rgb(9 12 10 / 2%) 18%, rgb(9 12 10 / 92%) 86%);
	color: #ffffff;
	--s92-card-title: #ffffff;
	--s92-card-muted: rgb(255 255 255 / 78%);
	--s92-card-accent-ink: var(--s92-card-accent);
	--s92-card-line: rgb(255 255 255 / 24%);
}

.s92-services-grid--layout-visual .s92-service-card--has-media .s92-service-card__number {
	color: var(--s92-card-accent-ink);
}

.s92-services-grid .s92-service-card__link:focus-visible {
	outline-color: var(--s92-card-accent-ink);
}

/* Contextual quote flow. Native dialog provides top-layer focus management. */
.s92-service-quote {
	--s92-quote-panel-width: 520px;
	--s92-quote-panel-padding: clamp(24px, 4vw, 40px);
	--s92-quote-panel-radius: 12px;
	--s92-quote-section-gap: 24px;
	--s92-quote-channel-columns: 2;
	--s92-quote-channel-gap: 10px;
	--s92-quote-control-radius: 8px;
	--s92-quote-overlay: rgb(7 10 8 / 68%);
	--s92-quote-bg: var(--s92-section-surface, #ffffff);
	--s92-quote-title: var(--s92-section-text, #111411);
	--s92-quote-text: color-mix(in srgb, var(--s92-quote-title) 84%, transparent);
	--s92-quote-muted: color-mix(in srgb, var(--s92-quote-title) 66%, transparent);
	--s92-quote-line: color-mix(in srgb, var(--s92-quote-title) 16%, transparent);
	--s92-quote-accent: var(--s92-section-accent, #d4a72c);
	--s92-quote-input-bg: color-mix(in srgb, var(--s92-quote-bg) 96%, var(--s92-quote-title));
	--s92-quote-input-ink: var(--s92-quote-title);
	--s92-quote-input-line: var(--s92-quote-line);
	--s92-quote-channel-bg: color-mix(in srgb, var(--s92-quote-bg) 95%, var(--s92-quote-title));
	--s92-quote-channel-ink: var(--s92-quote-title);
	--s92-quote-covered: #177449;
	--s92-quote-review: #a4690c;
	--s92-quote-outside: #a53a34;
	position: fixed;
	inset: 0 0 0 auto;
	width: min(100%, var(--s92-quote-panel-width));
	max-width: none;
	height: 100dvh;
	max-height: none;
	margin: 0;
	padding: 0;
	overflow: visible;
	border: 0;
	background: transparent;
	color: var(--s92-quote-text);
}

.s92-service-quote:not([open]) {
	display: none;
}

.s92-service-quote::backdrop {
	background: var(--s92-quote-overlay);
	animation: s92-quote-backdrop-in 240ms ease-out both;
}

.s92-service-quote__surface {
	display: flex;
	width: 100%;
	min-height: 100%;
	flex-direction: column;
	padding: var(--s92-quote-panel-padding);
	overflow-x: hidden;
	overflow-y: auto;
	border-radius: var(--s92-quote-panel-radius) 0 0 var(--s92-quote-panel-radius);
	background: var(--s92-quote-bg);
	box-shadow: -6px 0 12px rgb(7 10 8 / 14%);
	overscroll-behavior: contain;
	animation: s92-quote-panel-in 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.s92-service-quote--left {
	inset: 0 auto 0 0;
}

.s92-service-quote--left .s92-service-quote__surface {
	border-radius: 0 var(--s92-quote-panel-radius) var(--s92-quote-panel-radius) 0;
	box-shadow: 6px 0 12px rgb(7 10 8 / 14%);
	animation-name: s92-quote-panel-in-left;
}

.s92-service-quote--center {
	inset: 0;
	width: min(calc(100% - 40px), var(--s92-quote-panel-width));
	height: auto;
	max-height: calc(100dvh - 40px);
	margin: auto;
}

.s92-service-quote--center .s92-service-quote__surface {
	min-height: 0;
	max-height: calc(100dvh - 40px);
	border-radius: var(--s92-quote-panel-radius);
	box-shadow: 0 8px 14px rgb(7 10 8 / 18%);
	animation-name: s92-quote-panel-in-center;
}

.s92-service-quote.is-closing .s92-service-quote__surface {
	animation: s92-quote-panel-out 180ms ease-in both;
}

.s92-service-quote--left.is-closing .s92-service-quote__surface {
	animation-name: s92-quote-panel-out-left;
}

.s92-service-quote--center.is-closing .s92-service-quote__surface {
	animation-name: s92-quote-panel-out-center;
}

.s92-service-quote.is-closing::backdrop {
	animation: s92-quote-backdrop-out 180ms ease-in both;
}

.s92-service-quote__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--s92-quote-line);
}

.s92-service-quote__kicker {
	margin: 0 0 7px;
	color: var(--s92-quote-muted);
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	line-height: 1.2;
	text-transform: uppercase;
}

.s92-service-quote__title,
.s92-service-quote__service-name,
.s92-service-quote__result-title,
.s92-service-quote__channels h3 {
	margin: 0;
	color: var(--s92-quote-title);
	font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", sans-serif;
	font-weight: 800;
	letter-spacing: -0.025em;
	text-wrap: balance;
}

.s92-service-quote__title {
	font-size: clamp(1.6rem, 3.4vw, 2.25rem);
	line-height: 1.02;
}

.s92-service-quote__close {
	appearance: none;
	display: inline-grid;
	width: 44px;
	height: 44px;
	flex: 0 0 44px;
	place-items: center;
	padding: 0;
	border: 1px solid var(--s92-quote-line);
	border-radius: var(--s92-quote-control-radius);
	background: transparent;
	color: var(--s92-quote-title);
	cursor: pointer;
	transition:
		border-color 160ms ease,
		background-color 160ms ease,
		transform 160ms cubic-bezier(0.22, 1, 0.36, 1);
}

.s92-service-quote__close svg {
	width: 19px;
	height: 19px;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-width: 1.8;
}

.s92-service-quote__close:is(:hover, :focus-visible) {
	border-color: var(--s92-quote-accent);
	background: color-mix(in srgb, var(--s92-quote-accent) 12%, transparent);
	transform: rotate(3deg);
}

.s92-service-quote__service {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	align-items: center;
	gap: 14px;
	margin-top: var(--s92-quote-section-gap);
	padding: 12px;
	border: 1px solid var(--s92-quote-line);
	border-radius: var(--s92-quote-control-radius);
}

.s92-service-quote__service-image {
	display: block;
	width: 64px;
	height: 52px;
	object-fit: cover;
	border-radius: max(2px, calc(var(--s92-quote-control-radius) - 3px));
}

.s92-service-quote__service-image[hidden] {
	display: none;
}

.s92-service-quote__service span {
	display: block;
	margin-bottom: 3px;
	color: var(--s92-quote-muted);
	font-size: 0.72rem;
	font-weight: 750;
	line-height: 1.2;
}

.s92-service-quote__service-name {
	font-size: 1.04rem;
	line-height: 1.15;
}

.s92-service-quote__intro {
	max-width: 62ch;
	margin: 16px 0 0;
	color: var(--s92-quote-text);
	font-size: 0.94rem;
	line-height: 1.55;
	text-wrap: pretty;
}

.s92-service-quote__entry,
.s92-service-quote__result {
	margin-top: var(--s92-quote-section-gap);
}

.s92-service-quote__result:focus {
	outline: none;
}

.s92-service-quote__form label {
	display: block;
	margin-bottom: 8px;
	color: var(--s92-quote-title);
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1.25;
}

.s92-service-quote__input-row {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
}

.s92-service-quote__input-row input,
.s92-service-quote__input-row button {
	min-height: 50px;
	border-radius: var(--s92-quote-control-radius);
	font: inherit;
}

.s92-service-quote__input-row input {
	width: 100%;
	padding: 0 14px;
	border: 1px solid var(--s92-quote-input-line);
	background: var(--s92-quote-input-bg);
	color: var(--s92-quote-input-ink);
	font-size: 1rem;
	font-weight: 650;
	letter-spacing: 0.04em;
}

.s92-service-quote__input-row input::placeholder {
	color: color-mix(in srgb, var(--s92-quote-input-ink) 62%, transparent);
	opacity: 1;
}

.s92-service-quote__input-row input[aria-invalid="true"] {
	border-color: var(--s92-quote-outside);
}

.s92-service-quote__input-row button {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 0 18px;
	border: 1px solid var(--s92-quote-accent);
	background: var(--s92-quote-accent);
	color: #111411;
	font-size: 0.82rem;
	font-weight: 850;
	cursor: pointer;
	transition:
		background-color 160ms ease,
		border-color 160ms ease,
		transform 160ms cubic-bezier(0.22, 1, 0.36, 1);
}

.s92-service-quote__input-row button svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.s92-service-quote__input-row button:is(:hover, :focus-visible):not(:disabled) {
	background: color-mix(in srgb, var(--s92-quote-accent) 86%, white);
	transform: translateY(-1px);
}

.s92-service-quote__input-row button:disabled,
.s92-service-quote__input-row input:disabled {
	opacity: 0.58;
	cursor: wait;
}

.s92-service-quote__privacy {
	margin: 10px 0 0;
	color: var(--s92-quote-muted);
	font-size: 0.76rem;
	line-height: 1.45;
}

.s92-service-quote__status-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}

.s92-service-quote__status {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 5px 10px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--s92-quote-state-color) 12%, transparent);
	color: var(--s92-quote-state-color);
	font-size: 0.72rem;
	font-weight: 850;
	line-height: 1.2;
}

.s92-service-quote__status::before {
	width: 7px;
	height: 7px;
	margin-right: 7px;
	border-radius: 50%;
	background: currentcolor;
	content: "";
}

.s92-service-quote.is-covered {
	--s92-quote-state-color: var(--s92-quote-covered);
}

.s92-service-quote.is-review {
	--s92-quote-state-color: var(--s92-quote-review);
}

.s92-service-quote.is-outside {
	--s92-quote-state-color: var(--s92-quote-outside);
}

.s92-service-quote__change {
	appearance: none;
	margin-left: auto;
	padding: 7px 0;
	border: 0;
	background: transparent;
	color: var(--s92-quote-title);
	font: inherit;
	font-size: 0.76rem;
	font-weight: 800;
	text-decoration: underline;
	text-decoration-color: color-mix(in srgb, var(--s92-quote-title) 30%, transparent);
	text-underline-offset: 3px;
	cursor: pointer;
}

.s92-service-quote__result-title {
	margin-top: 18px;
	font-size: clamp(1.35rem, 3vw, 1.8rem);
	line-height: 1.08;
}

.s92-service-quote__result-copy {
	margin: 9px 0 0;
	color: var(--s92-quote-text);
	font-size: 0.92rem;
	line-height: 1.55;
	text-wrap: pretty;
}

.s92-service-quote__place {
	margin: 14px 0 0;
	padding: 11px 12px;
	border-radius: var(--s92-quote-control-radius);
	background: color-mix(in srgb, var(--s92-quote-state-color) 9%, transparent);
	color: var(--s92-quote-title);
	font-size: 0.82rem;
	font-weight: 750;
	line-height: 1.35;
}

.s92-service-quote__channels {
	margin-top: var(--s92-quote-section-gap);
	padding-top: var(--s92-quote-section-gap);
	border-top: 1px solid var(--s92-quote-line);
}

.s92-service-quote__channels h3 {
	margin-bottom: 12px;
	font-size: 1rem;
	line-height: 1.2;
}

.s92-service-quote__channel-grid {
	display: grid;
	grid-template-columns: repeat(var(--s92-quote-channel-columns), minmax(0, 1fr));
	gap: var(--s92-quote-channel-gap);
}

.s92-service-quote__channel {
	appearance: none;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 10px;
	min-height: 52px;
	padding: 10px 12px;
	border: 0;
	border-radius: var(--s92-quote-control-radius);
	background: var(--s92-quote-channel-bg);
	color: var(--s92-quote-channel-ink);
	font: inherit;
	font-size: 0.82rem;
	font-weight: 800;
	text-align: left;
	cursor: pointer;
	transition:
		background-color 180ms ease,
		color 180ms ease,
		transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.s92-service-quote__channel[hidden] {
	display: none;
}

.s92-service-quote__channel > svg:first-child {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.6;
}

.s92-service-quote__channel-arrow {
	width: 17px;
	height: 17px;
	fill: none;
	stroke: currentcolor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
	transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.s92-service-quote__channel:is(:hover, :focus-visible) {
	background: var(--s92-quote-accent);
	color: #111411;
	transform: translateY(-1px);
}

.s92-service-quote__channel:is(:hover, :focus-visible) .s92-service-quote__channel-arrow {
	transform: translateX(3px);
}

.s92-service-quote__empty {
	margin: 0;
	padding: 14px;
	border: 1px solid var(--s92-quote-line);
	border-radius: var(--s92-quote-control-radius);
	color: var(--s92-quote-muted);
	font-size: 0.84rem;
	line-height: 1.5;
}

.s92-service-quote__feedback {
	min-height: 1.35em;
	margin: 14px 0 0;
	color: var(--s92-quote-outside);
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1.35;
}

.s92-service-quote.is-checking .s92-service-quote__feedback {
	color: var(--s92-quote-muted);
}

.s92-service-quote :is(button, input):focus-visible {
	outline: 3px solid color-mix(in srgb, var(--s92-quote-accent) 72%, white);
	outline-offset: 2px;
}

html.s92-service-quote-is-open {
	overflow: hidden;
}

@keyframes s92-quote-backdrop-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes s92-quote-backdrop-out {
	from { opacity: 1; }
	to { opacity: 0; }
}

@keyframes s92-quote-panel-in {
	from {
		opacity: 0.72;
		transform: translateX(32px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes s92-quote-panel-in-left {
	from {
		opacity: 0.72;
		transform: translateX(-32px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes s92-quote-panel-in-center {
	from {
		opacity: 0.72;
		transform: translateY(18px) scale(0.985);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@keyframes s92-quote-panel-out {
	from {
		opacity: 1;
		transform: translateX(0);
	}
	to {
		opacity: 0;
		transform: translateX(18px);
	}
}

@keyframes s92-quote-panel-out-left {
	from {
		opacity: 1;
		transform: translateX(0);
	}
	to {
		opacity: 0;
		transform: translateX(-18px);
	}
}

@keyframes s92-quote-panel-out-center {
	from {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
	to {
		opacity: 0;
		transform: translateY(12px) scale(0.99);
	}
}

/* Content stays visible by default; motion only adds a short spatial reveal. */
.s92-services-grid.s92-motion-ready [data-s92-service-card] {
	transition:
		transform var(--s92-card-duration) cubic-bezier(0.22, 1, 0.36, 1),
		clip-path var(--s92-card-duration) cubic-bezier(0.22, 1, 0.36, 1),
		filter var(--s92-card-duration) ease;
	transition-delay: calc(var(--s92-card-order, 0) * var(--s92-card-stagger));
}

.s92-services-grid.s92-motion-ready:not(.is-visible)[data-s92-animation="stagger"] [data-s92-service-card] {
	transform: translateY(14px);
	clip-path: inset(0 0 7% 0 round var(--s92-card-radius));
}

.s92-services-grid.s92-motion-ready:not(.is-visible)[data-s92-animation="focus"] [data-s92-service-card] {
	filter: saturate(0.7);
	clip-path: inset(3% 0 3% 0 round var(--s92-card-radius));
}

.s92-services-grid.s92-motion-ready.is-visible [data-s92-service-card] {
	transform: none;
	clip-path: inset(0 round var(--s92-card-radius));
	filter: none;
}

@media (max-width: 1023px) {
	.s92-services-grid {
		--s92-columns: var(--s92-columns-tablet, 2);
	}
}

@media (max-width: 767px) {
	.s92-services-grid {
		--s92-columns: var(--s92-columns-mobile, 1);
	}

	.s92-services-grid .s92-section__title {
		font-size: clamp(1.75rem, 9.5vw, 3.2rem);
	}

	.s92-services-grid--layout-horizontal .s92-service-card--has-media {
		grid-template-columns: 1fr;
		grid-template-rows: auto 1fr;
	}

	.s92-services-grid--layout-horizontal .s92-service-card__media {
		min-height: 0;
		aspect-ratio: 16 / 9;
	}

	.s92-services-grid--layout-horizontal .s92-service-card__image {
		position: static;
	}

	.s92-services-grid--layout-visual .s92-service-card--has-media,
	.s92-services-grid--layout-visual .s92-service-card__media {
		min-height: 260px;
	}

	.s92-services-carousel__controls {
		justify-content: space-between;
	}

	.s92-service-quote,
	.s92-service-quote--left,
	.s92-service-quote--center {
		inset: auto 0 0;
		width: 100%;
		height: auto;
		max-height: min(92dvh, 780px);
		margin: auto 0 0;
	}

	.s92-service-quote__surface,
	.s92-service-quote--left .s92-service-quote__surface,
	.s92-service-quote--center .s92-service-quote__surface {
		min-height: 0;
		max-height: min(92dvh, 780px);
		padding-bottom: max(24px, env(safe-area-inset-bottom));
		border-radius: var(--s92-quote-panel-radius) var(--s92-quote-panel-radius) 0 0;
		box-shadow: 0 -6px 12px rgb(7 10 8 / 14%);
		animation-name: s92-quote-sheet-in;
	}

	.s92-service-quote.is-closing .s92-service-quote__surface {
		animation-name: s92-quote-sheet-out;
	}

	.s92-service-quote__header {
		gap: 16px;
		padding-bottom: 16px;
	}

	.s92-service-quote__service {
		margin-top: 18px;
	}
}

@media (max-width: 479px) {
	.s92-service-quote__input-row {
		grid-template-columns: 1fr;
	}

	.s92-service-quote__input-row button {
		width: 100%;
	}
}

@keyframes s92-quote-sheet-in {
	from {
		opacity: 0.78;
		transform: translateY(28px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes s92-quote-sheet-out {
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 0;
		transform: translateY(20px);
	}
}

@media (prefers-reduced-motion: reduce) {
	.s92-services-grid [data-s92-service-card] {
		transform: none !important;
		clip-path: none !important;
		filter: none !important;
		transition: none !important;
	}

	.s92-services-grid .s92-service-card__image,
	.s92-services-grid .s92-service-card__arrow,
	.s92-services-grid .s92-services-carousel__arrow,
	.s92-services-grid .s92-services-carousel__dot {
		transform: none !important;
		transition: none !important;
	}

	.s92-services-grid.is-carousel .s92-services-grid__items {
		scroll-behavior: auto;
	}

	.s92-service-quote::backdrop,
	.s92-service-quote__surface {
		animation: none !important;
	}
}
