/*
 * GTES Core — component styles.
 * Colours come from the Blocksy global palette (--theme-palette-color-N),
 * which carries the GTES design tokens; nothing here redefines them.
 *   1 green action  2 green hover  3 ink  4 navy  5 hairline
 *   6 sunken  7 page ground  8 white
 */

/* Data face: phone numbers, references, areas, prices (design rule). */
.gtes-header-phone,
.gtes-mono {
	font-family: "IBM Plex Mono", SFMono-Regular, Consolas, monospace;
	font-weight: 500;
	letter-spacing: .02em;
}

.gtes-header-phone {
	color: var(--theme-palette-color-4);
	text-decoration: none;
	white-space: nowrap;
}

.gtes-header-phone:hover {
	color: var(--theme-palette-color-1);
}

/* Header: hairline + navy-tinted shadow, never black. */
#header [data-row*="middle"] {
	box-shadow: 0 1px 0 var(--theme-palette-color-5), 0 4px 18px rgba(10, 28, 74, .05);
}

/* Focus: 3px lime halo at 45% — the one place lime is used as a ring. */
:where(a, button, input, select, textarea, summary, [tabindex]):focus-visible {
	outline: 2px solid transparent;
	outline-offset: 2px;
	box-shadow: 0 0 0 3px rgba(140, 198, 63, .45);
	border-radius: 4px;
}

/* ---------------------------------------------------------------------
 * Footer (navy-900 ground, contour-ring motif under 10% ink, as reference)
 * ------------------------------------------------------------------ */
#footer {
	background-color: #061233;
	background-image: repeating-radial-gradient(circle at 92% -20%, transparent 0 34px, rgba(255, 255, 255, .05) 34px 35px);
	color: #FFFFFF;
}

#footer [data-row] {
	background: transparent;
	--theme-text-color: #AFBDD9;
	--theme-link-initial-color: #AFBDD9;
	--theme-link-hover-color: #FFFFFF;
}

#footer [data-row*="middle"] {
	padding-block: 64px 32px;
}

#footer [data-row*="bottom"] {
	border-top: 1px solid rgba(255, 255, 255, .16);
}

.gtes-footer-col {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
	font-size: .9375rem;
	line-height: 1.6;
}

.gtes-footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.gtes-footer-col a {
	color: #AFBDD9;
	text-decoration: none;
}

.gtes-footer-col a:hover {
	color: #FFFFFF;
}

.gtes-footer-title {
	margin: 0 0 4px;
	font-family: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
	font-size: .75rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: #8CC63F;
}

/* Logo sits on white only (design rule): small white plate, as reference. */
.gtes-footer-logo-plate {
	align-self: flex-start;
	display: inline-flex;
	background: #FFFFFF;
	border-radius: 4px;
	padding: 6px;
}

.gtes-footer-logo {
	display: block;
	height: 44px;
	width: auto;
}

.gtes-footer-desc {
	margin: 0;
	max-width: 38ch;
	color: #AFBDD9;
}

.gtes-footer-brandline {
	margin: 0;
	font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
	font-weight: 600;
	color: #FFFFFF;
}

#footer .ct-footer-copyright {
	font-family: "IBM Plex Mono", SFMono-Regular, Consolas, monospace;
	font-size: 12px;
	letter-spacing: .02em;
	color: #AFBDD9;
}

/* =====================================================================
 * Page templates (land archive / single). Page ground + one navy band
 * per page max (design rule). Radii: controls 4px, cards 12px, pills
 * only for chips and status badges.
 * ================================================================== */
.gtes-page {
	background: var(--theme-palette-color-7);
	color: var(--theme-palette-color-3);
}

.gtes-container {
	width: 100%;
	max-width: 1280px;
	margin-inline: auto;
	padding-inline: clamp(20px, 4vw, 48px);
	box-sizing: border-box;
}

.gtes-band {
	padding-block: clamp(40px, 5vw, 72px);
}

.gtes-band--head {
	padding-block: 24px 32px;
	border-bottom: 1px solid var(--theme-palette-color-5);
}

/* 32px map grid behind light panels, under 10% ink. */
.gtes-band--grid {
	background-image:
		linear-gradient(rgba(10, 28, 74, .035) 1px, transparent 1px),
		linear-gradient(90deg, rgba(10, 28, 74, .035) 1px, transparent 1px);
	background-size: 32px 32px;
}

.gtes-band--dark {
	background-color: #061233;
	background-image: repeating-radial-gradient(circle at 92% -20%, transparent 0 34px, rgba(255, 255, 255, .05) 34px 35px);
	color: #FFFFFF;
}

/* Type */
.gtes-h1,
.gtes-h2,
.gtes-h3,
.gtes-display {
	font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
	color: var(--theme-palette-color-4);
	letter-spacing: -.01em;
	margin: 0;
}
.gtes-display { font-size: clamp(2.25rem, 1.5rem + 2.3vw, 3.375rem); font-weight: 700; line-height: 1.05; letter-spacing: -.02em; max-width: 20ch; }
.gtes-h1 { font-size: clamp(2rem, 1.45rem + 1.7vw, 2.75rem); font-weight: 700; line-height: 1.16; max-width: 26ch; }
.gtes-h2 { font-size: clamp(1.625rem, 1.3rem + 1vw, 2.125rem); font-weight: 700; line-height: 1.16; }
.gtes-h3 { font-size: clamp(1.25rem, 1.1rem + .5vw, 1.5rem); font-weight: 600; line-height: 1.35; }
.gtes-h4 { font-family: "IBM Plex Sans", "Segoe UI", Arial, sans-serif; font-size: 1.125rem; font-weight: 600; line-height: 1.35; color: var(--theme-palette-color-4); margin: 16px 0 8px; }
.gtes-band--dark .gtes-display { color: #FFFFFF; }

.gtes-lead {
	margin: 12px 0 0;
	max-width: 62ch;
	font-size: 1.0625rem;
	line-height: 1.72;
}
.gtes-band--dark .gtes-lead { color: #AFBDD9; }

.gtes-overline {
	display: block;
	font-family: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
	font-size: .75rem;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--theme-palette-color-1);
}
.gtes-muted { color: #6F7C93; }
.gtes-signal { color: #8CC63F; }

/* Breadcrumb */
.gtes-breadcrumb ol {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	font-size: .8125rem;
}
.gtes-breadcrumb li + li::before { content: "›"; margin-right: 8px; color: #6F7C93; }
.gtes-breadcrumb a { color: #6F7C93; text-decoration: none; }
.gtes-breadcrumb a:hover { color: var(--theme-palette-color-1); }
.gtes-breadcrumb [aria-current] { color: var(--theme-palette-color-1); }

/* Buttons (4px, no shadow at rest, darken + 2px lift, press .985) */
.gtes-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 46px;
	padding: 12px 22px;
	border: 1px solid transparent;
	border-radius: 4px;
	font-family: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
	font-size: .9375rem;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 80ms linear, transform 80ms linear, border-color 80ms linear;
	box-sizing: border-box;
}
.gtes-btn:hover { transform: translateY(-2px); }
.gtes-btn:active { transform: scale(.985); }
.gtes-btn--block { width: 100%; }
.gtes-btn--primary { background: var(--theme-palette-color-1); color: #FFFFFF; }
.gtes-btn--primary:hover { background: var(--theme-palette-color-2); color: #FFFFFF; }
.gtes-btn--outline { background: transparent; color: var(--theme-palette-color-1); border-color: var(--theme-palette-color-1); }
.gtes-btn--outline:hover { background: #F1F9F3; color: var(--theme-palette-color-2); }
.gtes-btn--ghost { background: transparent; color: var(--theme-palette-color-4); border-color: var(--theme-palette-color-5); }
.gtes-btn--ghost:hover { border-color: var(--theme-palette-color-4); color: var(--theme-palette-color-4); }
.gtes-btn--ghost-dark { background: transparent; color: #FFFFFF; border-color: rgba(255, 255, 255, .32); }
.gtes-btn--ghost-dark:hover { border-color: #FFFFFF; color: #FFFFFF; }

.gtes-link-arrow { color: var(--theme-palette-color-1); font-weight: 600; text-decoration: none; }
.gtes-link-arrow::after { content: " →"; }
.gtes-link-arrow:hover { color: var(--theme-palette-color-2); text-decoration: underline; }

/* Chips + status badges (the only pill shapes on the site) */
.gtes-chip,
.gtes-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	border-radius: 999px;
	font-family: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
	font-size: .75rem;
	font-weight: 600;
	line-height: 1.3;
	white-space: nowrap;
}
.gtes-chip { background: #FFFFFF; color: var(--theme-palette-color-4); border: 1px solid var(--theme-palette-color-5); }
.gtes-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; flex: 0 0 auto; }
.gtes-badge--success { background: #E2F3E6; color: var(--theme-palette-color-2); }
/* Amber text on amber-bg fails AA; keep the amber ground + marker, ink text. */
.gtes-badge--warning { background: #FBF0DC; color: var(--theme-palette-color-3); }
.gtes-badge--warning::before { background: #B8770F; }
.gtes-badge--neutral { background: var(--theme-palette-color-6); color: var(--theme-palette-color-3); }
.gtes-badge--neutral::before { background: #6F7C93; }
.gtes-badge--lg { font-size: .875rem; padding: 6px 12px; }

/* Cards: white, 12px, hairline, navy-tinted shadow, lime rule on hover */
.gtes-card {
	position: relative;
	background: #FFFFFF;
	border: 1px solid var(--theme-palette-color-5);
	border-radius: 12px;
	box-shadow: 0 1px 3px rgba(10, 28, 74, .08), 0 1px 2px rgba(10, 28, 74, .04);
}

.gtes-land-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr));
}

.gtes-land-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: transform 80ms linear, box-shadow 80ms linear;
}
.gtes-land-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 3px;
	background: #8CC63F;
	opacity: 0;
	z-index: 3;
	transition: opacity 80ms linear;
}
.gtes-land-card:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(10, 28, 74, .12), 0 4px 10px rgba(10, 28, 74, .05); }
.gtes-land-card:hover::before,
.gtes-land-card:focus-within::before { opacity: 1; }
.gtes-land-card.is-vendu .gtes-card-media img { filter: grayscale(.6); }

.gtes-card-media {
	position: relative;
	aspect-ratio: 4 / 3;
	background: var(--theme-palette-color-6);
}
.gtes-card-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.gtes-card-media::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 45%;
	background: linear-gradient(to top, rgba(6, 18, 51, .45), transparent);
	pointer-events: none;
}
.gtes-card-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background:
		linear-gradient(rgba(10, 28, 74, .06) 1px, transparent 1px),
		linear-gradient(90deg, rgba(10, 28, 74, .06) 1px, transparent 1px),
		linear-gradient(135deg, #E6ECF8, #F2F5FC);
	background-size: 32px 32px, 32px 32px, 100% 100%;
}
.gtes-card-badges {
	position: absolute;
	left: 12px;
	top: 12px;
	right: 56px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	z-index: 2;
}

.gtes-save {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 4;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 1px solid var(--theme-palette-color-5);
	border-radius: 4px;
	background: rgba(255, 255, 255, .94);
	color: #6F7C93;
	cursor: pointer;
}
.gtes-save svg path { fill: transparent; stroke: currentColor; stroke-width: 1.8; }
.gtes-save.is-saved { color: var(--theme-palette-color-1); }
.gtes-save.is-saved svg path { fill: currentColor; }
.gtes-save--inline {
	position: static;
	width: auto;
	height: auto;
	gap: 8px;
	grid-auto-flow: column;
	justify-content: center;
	margin-top: 12px;
	padding: 8px;
	border: 0;
	background: transparent;
	font-size: .875rem;
	font-weight: 600;
}

.gtes-card-body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1 1 auto;
	padding: 20px 24px 24px;
}
.gtes-card-trust { display: flex; flex-wrap: wrap; gap: 6px; }
.gtes-card-title {
	margin: 0;
	font-family: "IBM Plex Sans", "Segoe UI", Arial, sans-serif;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.35;
}
.gtes-card-link { color: var(--theme-palette-color-4); text-decoration: none; }
/* Whole card clickable; the save button sits above this layer. */
.gtes-card-link::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.gtes-card-loc { margin: 0; font-size: .9375rem; color: #6F7C93; }
.gtes-card-facts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
	gap: 12px;
	margin: 4px 0 0;
	padding-top: 12px;
	border-top: 1px solid var(--theme-palette-color-5);
}
.gtes-card-facts dt,
.gtes-facts dt { font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: #6F7C93; }
.gtes-card-facts dd { margin: 2px 0 0; font-size: .875rem; color: var(--theme-palette-color-4); }
.gtes-card-foot {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin-top: auto;
	padding-top: 8px;
}
.gtes-card-ref { font-size: .75rem; color: #6F7C93; }
.gtes-card-cta { font-size: .9375rem; font-weight: 600; color: var(--theme-palette-color-1); }
.gtes-card-cta::after { content: " →"; }

/* Filters */
.gtes-filters {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 170px), 1fr));
	gap: 16px;
	align-items: end;
	margin-bottom: 24px;
	padding: 24px;
	background: #FFFFFF;
	border: 1px solid var(--theme-palette-color-5);
	border-radius: 12px;
}
.gtes-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.gtes-field label { font-size: .8125rem; font-weight: 600; color: var(--theme-palette-color-4); }
.gtes-field select {
	width: 100%;
	min-height: 44px;
	padding: 8px 12px;
	border: 1px solid var(--theme-palette-color-5);
	border-radius: 4px;
	background-color: #FFFFFF;
	color: var(--theme-palette-color-3);
	font: inherit;
	font-size: .9375rem;
}
.gtes-filters__actions { display: flex; flex-wrap: wrap; gap: 8px; }
.gtes-result-count { margin: 0 0 16px; font-size: .875rem; color: #6F7C93; }

.gtes-pagination { margin-top: 40px; }
.gtes-pagination .nav-links { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.gtes-pagination .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 44px;
	min-height: 44px;
	padding: 0 12px;
	border: 1px solid var(--theme-palette-color-5);
	border-radius: 4px;
	background: #FFFFFF;
	color: var(--theme-palette-color-4);
	text-decoration: none;
}
.gtes-pagination .page-numbers.current { background: var(--theme-palette-color-4); border-color: var(--theme-palette-color-4); color: #FFFFFF; }

.gtes-empty {
	padding: clamp(32px, 5vw, 56px);
	text-align: center;
	background: #FFFFFF;
	border: 1px dashed var(--theme-palette-color-5);
	border-radius: 12px;
}
.gtes-empty p { margin: 12px auto 0; max-width: 52ch; }
.gtes-empty__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 24px; }

/* Single listing */
.gtes-single-head {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	align-items: flex-end;
	justify-content: space-between;
}
.gtes-single-head__main { flex: 1 1 420px; min-width: 0; display: flex; flex-direction: column; gap: 12px; }
.gtes-single-head__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.gtes-single-loc { margin: 0; font-size: 1.0625rem; color: #6F7C93; }
.gtes-single-head__price { display: flex; flex-direction: column; gap: 4px; text-align: right; }
.gtes-single-head__price strong { font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); color: var(--theme-palette-color-4); }

.gtes-single-top {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
	gap: 32px;
	align-items: start;
}

.gtes-gallery__main {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 12px;
	background: var(--theme-palette-color-6);
}
.gtes-gallery__main img { display: block; width: 100%; height: 100%; object-fit: cover; }
.gtes-gallery__thumbs { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.gtes-gallery__thumb {
	display: block;
	width: 84px;
	height: 64px;
	padding: 0;
	overflow: hidden;
	border: 2px solid transparent;
	border-radius: 4px;
	background: none;
	cursor: pointer;
}
.gtes-gallery__thumb img { display: block; width: 100%; height: 100%; object-fit: cover; }
.gtes-gallery__thumb.is-active { border-color: #8CC63F; }

.gtes-summary { position: sticky; top: 96px; padding: 24px; }
.gtes-summary__trust { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 16px; }
.gtes-facts { margin: 0; }
.gtes-facts > div {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 10px 0;
	border-top: 1px solid var(--theme-palette-color-5);
}
.gtes-facts dd { margin: 0; text-align: right; color: var(--theme-palette-color-4); }
.gtes-summary__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.gtes-summary__tel { align-self: center; padding: 6px; color: var(--theme-palette-color-4); text-decoration: none; }

.gtes-single-body { display: grid; gap: 40px; max-width: 820px; }
.gtes-prose { line-height: 1.6; }
.gtes-prose > * + * { margin-top: 1em; }
.gtes-prose h2 { margin-bottom: 8px; }
.gtes-block p { margin: 8px 0 0; }
.gtes-list { margin: 0; padding-left: 1.2em; }

.gtes-secure {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 24px 28px;
	background: #FFFFFF;
	border: 1px solid var(--theme-palette-color-5);
	border-left: 3px solid var(--theme-palette-color-1);
	border-radius: 12px;
}
.gtes-secure__text { margin: 0; max-width: 70ch; font-size: 1.0625rem; color: var(--theme-palette-color-4); }
.gtes-band--tint { padding-block: 0 clamp(40px, 5vw, 72px); }

.gtes-cta-band .gtes-container { display: flex; flex-direction: column; gap: 16px; padding-block: clamp(24px, 4vw, 48px); }
.gtes-cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

.gtes-section-head {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 24px;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 24px;
}

@media (max-width: 960px) {
	.gtes-single-top { grid-template-columns: 1fr; }
	.gtes-summary { position: static; }
	.gtes-single-head__price { text-align: left; }
}

/* Mobile sticky WhatsApp bar (mobile only) */
.gtes-mobile-bar { display: none; }
@media (max-width: 767px) {
	.gtes-mobile-bar {
		position: fixed;
		inset: auto 0 0 0;
		z-index: 90;
		display: flex;
		gap: 8px;
		padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
		background: #FFFFFF;
		border-top: 1px solid var(--theme-palette-color-5);
		box-shadow: 0 -4px 18px rgba(10, 28, 74, .08);
	}
	.gtes-mobile-bar a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 46px;
		border-radius: 4px;
		font-weight: 600;
		text-decoration: none;
	}
	.gtes-mobile-bar__wa { flex: 1 1 auto; background: var(--theme-palette-color-1); color: #FFFFFF; }
	.gtes-mobile-bar__tel { flex: 0 0 auto; padding: 0 14px; border: 1px solid var(--theme-palette-color-5); color: var(--theme-palette-color-4); }
	body { padding-bottom: 72px; }
}

/* Service + entry pages */
.gtes-mt { margin-top: 16px; }
.gtes-mb { margin-bottom: 12px; }
.gtes-small { font-size: .875rem; }
.gtes-narrow { max-width: 860px; }
.gtes-mono-overline { font-family: "IBM Plex Mono", SFMono-Regular, Consolas, monospace; letter-spacing: .06em; }

.gtes-svc-hero { display: grid; gap: 32px; align-items: center; }
.gtes-svc-hero.has-media { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
.gtes-svc-hero__text { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.gtes-svc-hero__media { overflow: hidden; border-radius: 12px; aspect-ratio: 4 / 3; background: var(--theme-palette-color-6); }
.gtes-svc-hero__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.gtes-svc-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.gtes-chips { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }

.gtes-svc-split { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr); gap: 40px; align-items: start; }
.gtes-svc-split .gtes-prose { max-width: 70ch; }
.gtes-specs { padding: 24px; position: sticky; top: 96px; }

/* Process stepper: numbered steps, dashed connector, vertical under 768px */
.gtes-stepper { margin-top: 24px; }
.gtes-stepper ol {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: gtes-step;
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
}
.gtes-stepper ol > li {
	position: relative;
	counter-increment: gtes-step;
	padding: 56px 20px 20px;
	background: #FFFFFF;
	border: 1px solid var(--theme-palette-color-5);
	border-radius: 12px;
	line-height: 1.55;
}
.gtes-stepper ol > li::before {
	content: counter(gtes-step, decimal-leading-zero);
	position: absolute;
	top: 16px;
	left: 20px;
	font-family: "IBM Plex Mono", SFMono-Regular, Consolas, monospace;
	font-size: .875rem;
	font-weight: 600;
	color: var(--theme-palette-color-1);
}
.gtes-stepper ol > li::after {
	content: "";
	position: absolute;
	top: 26px;
	left: 52px;
	right: 20px;
	border-top: 1px dashed var(--theme-palette-color-5);
}
.gtes-stepper p { margin: 0; }

.gtes-svc-cols { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)); align-items: start; }
.gtes-svc-col { padding: 24px; }
.gtes-svc-col .gtes-h3 { margin-bottom: 12px; }
.gtes-checklist ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.gtes-checklist li { position: relative; padding-left: 26px; }
.gtes-checklist li::before {
	content: "";
	position: absolute;
	left: 2px;
	top: .45em;
	width: 12px;
	height: 7px;
	border-left: 2px solid var(--theme-palette-color-1);
	border-bottom: 2px solid var(--theme-palette-color-1);
	transform: rotate(-45deg);
}

.gtes-faq { margin-top: 20px; border-top: 1px solid var(--theme-palette-color-5); }
.gtes-faq__item { border-bottom: 1px solid var(--theme-palette-color-5); }
.gtes-faq__item summary {
	position: relative;
	padding: 18px 40px 18px 0;
	font-weight: 600;
	color: var(--theme-palette-color-4);
	cursor: pointer;
	list-style: none;
}
.gtes-faq__item summary::-webkit-details-marker { display: none; }
.gtes-faq__item summary::after { content: "+"; position: absolute; right: 8px; top: 14px; font-size: 1.4rem; color: var(--theme-palette-color-1); }
.gtes-faq__item[open] summary::after { content: "−"; }
.gtes-faq__item .gtes-prose { padding: 0 0 18px; }

@media (max-width: 960px) {
	.gtes-svc-hero.has-media,
	.gtes-svc-split { grid-template-columns: 1fr; }
	.gtes-specs { position: static; }
}
@media (max-width: 767px) {
	.gtes-stepper ol > li::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		transition-duration: 0ms !important;
		animation-duration: 0ms !important;
	}
}
