:root {
	--spt-black: #050608;
	--spt-panel: #101113;
	--spt-panel-soft: #161719;
	--spt-line: rgba(220, 161, 47, .34);
	--spt-line-soft: rgba(255, 255, 255, .11);
	--spt-gold: #e2a12d;
	--spt-gold-light: #f4c15a;
	--spt-green: #16b448;
	--spt-white: #ffffff;
	--spt-muted: rgba(255, 255, 255, .76);
	--spt-max: 1460px;
	--spt-side: clamp(18px, 3.6vw, 58px);
	--spt-hero-bg-image: radial-gradient(circle at 40% 38%, rgba(226, 161, 45, .24), transparent 18rem), linear-gradient(135deg, #111318, #050608 62%);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body.spt-home-template {
	margin: 0;
	background: var(--spt-black);
	color: var(--spt-white);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.5;
}

.spt-home-template a {
	color: inherit;
	text-decoration: none;
}

.spt-home-template svg {
	display: block;
	width: 1em;
	height: 1em;
	max-width: 100%;
	max-height: 100%;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.spt-home-template .spt-icon {
	display: block !important;
	flex: 0 0 auto !important;
	width: 1em !important;
	height: 1em !important;
	max-width: 100% !important;
	max-height: 100% !important;
	overflow: visible;
}

.spt-home-template img {
	display: block;
	max-width: 100%;
}

.spt-home-template .spt-icon--solid {
	fill: currentColor;
	stroke: none;
}

.spt-home-template .spt-icon--line {
	fill: none;
	stroke: currentColor;
}

.spt-whatsapp-icon {
	display: block;
	width: 1em;
	height: 1em;
	object-fit: contain;
}

.spt-page {
	min-height: 100vh;
	overflow-x: clip;
	background:
		radial-gradient(circle at 50% -10%, rgba(226, 161, 45, .12), transparent 28rem),
		linear-gradient(180deg, #050608 0%, #101113 52%, #08090a 100%);
}

.spt-header {
	position: sticky;
	top: 0;
	z-index: 50;
	display: grid;
	grid-template-columns: minmax(190px, .62fr) minmax(430px, 1.8fr) auto;
	align-items: center !important;
	gap: 18px;
	height: 70px !important;
	min-height: 0 !important;
	max-height: 70px !important;
	padding: 0 var(--spt-side) !important;
	background: rgba(3, 4, 7, .96);
	border-bottom: 1px solid rgba(255, 255, 255, .07);
	backdrop-filter: blur(18px);
	overflow: visible;
}

.spt-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.spt-brand-logo {
	position: relative;
	display: block;
	width: clamp(178px, 12vw, 220px);
	height: 40px;
	overflow: hidden;
}

.spt-brand-logo img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 128%;
	max-width: none !important;
	height: auto;
	min-width: 0;
	transform: translate(-50%, -50%);
}

.spt-brand-mark {
	position: relative;
	display: grid;
	place-items: center;
	width: 47px;
	height: 58px;
	color: var(--spt-gold);
	border: 2px solid currentColor;
	clip-path: polygon(50% 0, 100% 18%, 100% 72%, 50% 100%, 0 72%, 0 18%);
	font-family: Georgia, serif;
	font-size: 30px;
	line-height: 1;
}

.spt-brand-mark::before {
	content: "";
	position: absolute;
	top: -11px;
	width: 31px;
	height: 10px;
	border-top: 2px solid currentColor;
	border-left: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: skewX(-10deg);
}

.spt-brand-text {
	display: grid;
	gap: 1px;
	text-transform: uppercase;
	letter-spacing: 0;
}

.spt-brand-text strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(25px, 2vw, 33px);
	font-weight: 500;
	line-height: .95;
}

.spt-brand-text small {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(13px, 1vw, 16px);
	color: rgba(255, 255, 255, .9);
	line-height: 1;
}

.spt-nav {
	justify-self: center;
	min-width: 0;
}

.spt-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(16px, 1.7vw, 32px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.spt-menu a {
	position: relative;
	display: block;
	padding: 8px 0;
	color: rgba(255, 255, 255, .91);
	font-size: 12.5px;
	font-weight: 750;
	text-transform: uppercase;
	white-space: nowrap;
}

.spt-menu a::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: 2px;
	left: 0;
	height: 3px;
	background: var(--spt-gold);
	border-radius: 99px;
	opacity: 0;
	transform: scaleX(.3);
	transition: opacity .2s ease, transform .2s ease;
}

.spt-menu .current-menu-item > a,
.spt-menu a:hover {
	color: var(--spt-gold-light);
}

.spt-menu .current-menu-item > a::after,
.spt-menu a:hover::after {
	opacity: 1;
	transform: scaleX(1);
}

.spt-header-book,
.spt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 42px;
	border-radius: 6px;
	font-weight: 800;
	white-space: nowrap;
}

.spt-header-book {
	justify-self: end;
	padding: 0 16px;
	color: var(--spt-gold-light);
	border: 1px solid var(--spt-gold);
	font-size: 12.5px;
	text-transform: uppercase;
}

.spt-header-book svg,
.spt-btn svg {
	width: 18px;
	height: 18px;
}

.spt-menu-toggle {
	display: none;
	width: 46px;
	height: 42px;
	padding: 9px;
	color: var(--spt-gold-light);
	background: transparent;
	border: 1px solid var(--spt-line);
	border-radius: 6px;
}

.spt-menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 100%;
	height: 2px;
	margin: 5px 0;
	background: currentColor;
}

.spt-hero {
	position: relative;
	min-height: clamp(560px, 48vw, 720px);
	border-bottom: 1px solid rgba(255, 255, 255, .09);
	isolation: isolate;
	overflow: hidden;
}

.spt-hero-bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	background-image:
		linear-gradient(90deg, rgba(5, 6, 8, .34) 0%, rgba(5, 6, 8, .2) 42%, rgba(5, 6, 8, .66) 100%),
		linear-gradient(180deg, rgba(5, 6, 8, .04) 0%, rgba(5, 6, 8, .18) 50%, rgba(5, 6, 8, .9) 100%),
		var(--spt-hero-bg-image);
	background-position: center 46%;
	background-size: cover;
	background-repeat: no-repeat;
}

.spt-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	z-index: -1;
	height: 26%;
	background: linear-gradient(180deg, transparent, rgba(5, 6, 8, .9));
}

.spt-hero-inner {
	display: grid;
	grid-template-columns: minmax(560px, 1fr) minmax(460px, .86fr);
	align-items: center;
	gap: clamp(28px, 4vw, 68px);
	width: min(var(--spt-max), calc(100% - (var(--spt-side) * 2)));
	min-height: inherit;
	margin: 0 auto;
	padding: clamp(44px, 6vw, 84px) 0 34px;
}

.spt-hero-copy {
	max-width: 780px;
	padding-top: 46px;
}

.spt-kicker {
	margin: 0 0 12px !important;
	color: var(--spt-gold-light) !important;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: 15px !important;
	font-weight: 900 !important;
	line-height: 1.15 !important;
	text-transform: uppercase !important;
}

.spt-hero h1 {
	max-width: 780px !important;
	margin: 0 !important;
	color: var(--spt-white) !important;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: clamp(50px, 4.25vw, 72px) !important;
	font-style: normal !important;
	font-weight: 900 !important;
	line-height: .98 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
}

.spt-hero h1 span,
.spt-hero h1 strong {
	display: block !important;
	color: inherit !important;
	font: inherit !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
	text-shadow: 0 5px 28px rgba(0, 0, 0, .55) !important;
}

.spt-hero h1 strong {
	color: var(--spt-gold) !important;
	font-weight: 900 !important;
}

.spt-lede {
	max-width: 780px !important;
	margin: 20px 0 28px !important;
	color: rgba(255, 255, 255, .98) !important;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: clamp(17px, 1.28vw, 20px) !important;
	font-weight: 800 !important;
	line-height: 1.35 !important;
	letter-spacing: 0 !important;
	text-shadow: 0 4px 18px rgba(0, 0, 0, .6) !important;
}

.spt-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.spt-btn {
	min-width: 168px;
	padding: 0 24px;
	box-shadow: 0 16px 36px rgba(0, 0, 0, .24);
}

.spt-btn-gold {
	color: #161007;
	background: linear-gradient(180deg, var(--spt-gold-light), #d8901d);
}

.spt-btn-whatsapp {
	color: #fff;
	background: linear-gradient(180deg, #17c655, #0f9e3e);
}

.spt-btn-outline {
	color: var(--spt-gold-light);
	background: rgba(0, 0, 0, .16);
	border: 1px solid var(--spt-line);
}

.spt-hero-card {
	align-self: center;
	aspect-ratio: 1.35 / 1;
	border: 1px solid var(--spt-gold);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 30px 70px rgba(0, 0, 0, .44);
	background: #08090b;
}

.spt-hero-card picture {
	display: block;
	width: 100%;
	height: 100%;
}

.spt-hero-card img {
	width: 200%;
	max-width: none;
	height: 100%;
	object-fit: cover;
	object-position: right center;
	transform: translateX(-50%);
}

.spt-footer {
	border-top: 1px solid rgba(255, 255, 255, .1);
	background:
		radial-gradient(circle at 18% 0%, rgba(226, 161, 45, .1), transparent 28rem),
		linear-gradient(180deg, #101113, #050608);
}

.spt-footer-inner {
	display: grid;
	grid-template-columns: minmax(260px, 1.1fr) minmax(260px, .9fr) minmax(280px, .85fr);
	gap: clamp(26px, 5vw, 74px);
	width: min(var(--spt-max), calc(100% - (var(--spt-side) * 2)));
	margin: 0 auto;
	padding: clamp(36px, 5vw, 68px) 0;
}

.spt-footer .spt-brand {
	margin-bottom: 18px;
}

.spt-footer .spt-brand-logo {
	width: clamp(190px, 14vw, 250px);
	height: 46px;
}

.spt-footer-brand p {
	max-width: 460px;
	margin: 0;
	color: rgba(255, 255, 255, .72);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.65;
}

.spt-footer h2 {
	margin: 0 0 17px !important;
	color: var(--spt-gold-light) !important;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: 14px !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
	text-transform: uppercase !important;
	letter-spacing: 0 !important;
}

.spt-footer-nav .spt-menu {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px 24px;
	justify-content: start;
}

.spt-footer-nav .spt-menu a {
	display: inline-block;
	width: fit-content;
	padding: 4px 0;
	color: rgba(255, 255, 255, .78);
	font-size: 13px;
	font-weight: 800;
}

.spt-footer-nav .spt-menu a::after {
	bottom: -1px;
}

.spt-footer-contact {
	display: grid;
	align-content: start;
	gap: 11px;
}

.spt-footer-contact a {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	color: rgba(255, 255, 255, .82);
	font-size: 15px;
	font-weight: 700;
	overflow-wrap: anywhere;
}

.spt-footer-contact svg,
.spt-footer-contact .spt-whatsapp-icon {
	flex: 0 0 auto;
	width: 22px !important;
	height: 22px !important;
	color: var(--spt-gold);
}

.spt-footer-bottom {
	width: min(var(--spt-max), calc(100% - (var(--spt-side) * 2)));
	margin: 0 auto;
	padding: 16px 0 24px;
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.spt-footer-bottom p {
	margin: 0;
	color: rgba(255, 255, 255, .56);
	font-size: 13px;
	font-weight: 650;
}

.spt-image-placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	color: rgba(255, 255, 255, .72);
	background:
		linear-gradient(135deg, rgba(226, 161, 45, .18), transparent 42%),
		linear-gradient(180deg, #17191d, #07080a);
}

.spt-image-placeholder span {
	padding: 10px 14px;
	color: var(--spt-gold-light);
	border: 1px solid var(--spt-line);
	border-radius: 6px;
	font-size: 14px;
	font-weight: 800;
}

.spt-services,
.spt-trust {
	width: min(var(--spt-max), calc(100% - (var(--spt-side) * 2)));
	margin: 0 auto;
}

.spt-services {
	padding: 18px 0 14px;
}

.spt-card-grid {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 12px;
}

.spt-service-card {
	min-height: 194px;
	padding: 20px 17px 22px;
	text-align: center;
	background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .02));
	border: 1px solid rgba(255, 255, 255, .11);
	border-radius: 5px;
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .18), 0 16px 30px rgba(0, 0, 0, .22);
}

.spt-service-icon {
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin: 0 auto;
	color: var(--spt-gold) !important;
	background:
		linear-gradient(180deg, rgba(226, 161, 45, .14), rgba(226, 161, 45, .045));
	border: 1px solid rgba(226, 161, 45, .32);
	border-radius: 10px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 12px 24px rgba(0, 0, 0, .2);
}

.spt-service-icon svg,
.spt-service-icon .spt-icon {
	width: 34px !important;
	height: 34px !important;
	max-width: 34px !important;
	max-height: 34px !important;
	color: var(--spt-gold) !important;
}

.spt-service-card h2 {
	margin: 16px 0 10px;
	color: #fff;
	font-size: 16px;
	line-height: 1.2;
}

.spt-service-card p {
	margin: 0;
	color: var(--spt-muted);
	font-size: 14px;
	line-height: 1.55;
}

.spt-trust {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 300px);
	gap: 28px;
	padding: 14px 0 34px;
}

.spt-benefits {
	display: grid;
	grid-template-columns: repeat(8, minmax(0, 1fr));
	align-items: stretch;
}

.spt-benefit {
	display: grid;
	justify-items: center;
	align-content: start;
	gap: 4px;
	min-height: 110px;
	padding: 10px 13px 8px;
	text-align: center;
	border-right: 1px solid rgba(255, 255, 255, .24);
}

.spt-benefit:last-child {
	border-right: 0;
}

.spt-benefit svg,
.spt-benefit .spt-icon {
	width: 50px !important;
	height: 50px !important;
	max-width: 50px !important;
	max-height: 50px !important;
	margin-bottom: 6px;
	color: var(--spt-gold) !important;
}

.spt-benefit strong {
	font-size: 15px;
	line-height: 1.2;
}

.spt-benefit span {
	color: rgba(255, 255, 255, .88);
	font-size: 13px;
	line-height: 1.25;
}

.spt-contact-panel {
	padding: 17px 22px 20px;
	background: rgba(255, 255, 255, .035);
	border: 1px solid var(--spt-line);
	border-radius: 6px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, .24);
}

.spt-contact-panel h2 {
	margin: 0 0 12px;
	color: var(--spt-gold-light);
	font-size: 18px;
	line-height: 1.2;
}

.spt-contact-panel a {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	margin-top: 11px;
	color: rgba(255, 255, 255, .9);
}

.spt-contact-panel svg {
	flex: 0 0 auto;
	width: 21px;
	height: 21px;
	color: var(--spt-gold);
}

.spt-contact-panel span {
	min-width: 0;
	overflow-wrap: anywhere;
}

.spt-floating-whatsapp {
	position: fixed;
	right: 26px;
	bottom: 24px;
	z-index: 45;
	display: grid;
	place-items: center;
	width: 68px;
	height: 68px;
	color: #fff;
	background: #17b64d;
	border-radius: 50%;
	box-shadow: 0 16px 36px rgba(0, 0, 0, .38);
}

.spt-floating-whatsapp svg {
	width: 42px;
	height: 42px;
}

.spt-btn .spt-whatsapp-icon {
	width: 28px;
	height: 28px;
	margin-left: -2px;
}

.spt-contact-panel .spt-whatsapp-icon {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
}

.spt-floating-whatsapp .spt-whatsapp-icon {
	width: 58px;
	height: 58px;
}

body.spt-home-template #ast-scroll-top,
body.spt-home-template .ast-scroll-top-icon {
	display: none !important;
	visibility: hidden !important;
	pointer-events: none !important;
}

.spt-page-hero {
	position: relative;
	min-height: clamp(330px, 32vw, 470px);
	isolation: isolate;
	overflow: hidden;
	border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.spt-page-hero-bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	background-image:
		linear-gradient(90deg, rgba(5, 6, 8, .82), rgba(5, 6, 8, .54)),
		linear-gradient(180deg, rgba(5, 6, 8, .18), rgba(5, 6, 8, .92)),
		var(--spt-hero-bg-image);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.spt-page-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	z-index: -1;
	height: 45%;
	background: linear-gradient(180deg, transparent, #101113);
}

.spt-page-hero-inner,
.spt-page-content-inner {
	width: min(1180px, calc(100% - (var(--spt-side) * 2)));
	margin: 0 auto;
}

.spt-page-hero-inner {
	display: grid;
	align-content: center;
	min-height: inherit;
	padding: clamp(56px, 7vw, 96px) 0 clamp(44px, 6vw, 74px);
}

.spt-page-kicker {
	margin: 0 0 13px !important;
	color: var(--spt-gold-light) !important;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: 14px !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
	text-transform: uppercase !important;
}

.spt-page-hero h1 {
	max-width: 780px !important;
	margin: 0 !important;
	color: var(--spt-white) !important;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: clamp(46px, 5vw, 72px) !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	letter-spacing: 0 !important;
	text-transform: none !important;
	text-shadow: 0 5px 28px rgba(0, 0, 0, .55) !important;
}

.spt-page-intro {
	max-width: 760px !important;
	margin: 18px 0 0 !important;
	color: rgba(255, 255, 255, .9) !important;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: clamp(17px, 1.45vw, 21px) !important;
	font-weight: 650 !important;
	line-height: 1.45 !important;
	letter-spacing: 0 !important;
}

.spt-page-content {
	padding: clamp(42px, 6vw, 76px) 0 clamp(62px, 8vw, 104px);
	background:
		radial-gradient(circle at 12% 0%, rgba(226, 161, 45, .08), transparent 26rem),
		linear-gradient(180deg, #101113, #07080a);
}

.spt-page-content-inner {
	color: rgba(255, 255, 255, .84);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.75;
}

.spt-page-content-inner h2,
.spt-page-content-inner h3,
.spt-page-content-inner h4 {
	margin: 1.55em 0 .65em !important;
	color: var(--spt-white) !important;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-weight: 850 !important;
	line-height: 1.12 !important;
	letter-spacing: 0 !important;
}

.spt-page-content-inner h2 {
	font-size: clamp(30px, 3vw, 44px) !important;
}

.spt-page-content-inner h3 {
	font-size: clamp(24px, 2vw, 32px) !important;
}

.spt-page-content-inner p {
	max-width: 820px;
	margin: 0 0 1.15em;
}

.spt-page-content-inner a {
	color: var(--spt-gold-light);
	text-decoration: underline;
	text-underline-offset: .18em;
}

.spt-content-placeholder {
	padding: clamp(22px, 3vw, 34px);
	background: rgba(255, 255, 255, .035);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 7px;
}

.spt-content-placeholder p {
	margin: 0;
	color: rgba(255, 255, 255, .78);
	font-size: 18px;
	font-weight: 650;
}

.spt-booking-layout {
	width: min(1180px, calc(100% - (var(--spt-side) * 2)));
	margin: 0 auto;
}

.spt-contact-banner {
	min-height: clamp(300px, 30vw, 430px);
}

.spt-contact-actions {
	display: flex;
	flex-wrap: wrap;
	margin-top: 24px;
	gap: 14px;
}

.spt-contact-gallery {
	overflow: hidden;
	border-radius: 7px;
}

.spt-booking-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
	gap: clamp(22px, 3vw, 42px);
	padding: clamp(42px, 6vw, 72px) 0 clamp(58px, 8vw, 104px);
}

.spt-booking-main,
.spt-booking-side {
	display: grid;
	align-content: start;
	gap: 18px;
}

.spt-booking-panel,
.spt-contact-form {
	padding: clamp(22px, 3vw, 34px);
	background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .026));
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 8px;
	box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
}

.spt-section-kicker {
	margin: 0 0 8px !important;
	color: var(--spt-gold-light) !important;
	font-size: 13px !important;
	font-weight: 900 !important;
	line-height: 1.2 !important;
	text-transform: uppercase !important;
}

.spt-booking-panel h2,
.spt-contact-form h2 {
	margin: 0 0 18px !important;
	color: var(--spt-white) !important;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: clamp(24px, 2vw, 32px) !important;
	font-weight: 850 !important;
	line-height: 1.12 !important;
	letter-spacing: 0 !important;
}

.spt-detail-list,
.spt-check-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.spt-detail-list li,
.spt-check-list li {
	position: relative;
	padding-left: 26px;
	color: rgba(255, 255, 255, .86);
	font-size: 15px;
	font-weight: 650;
	line-height: 1.45;
}

.spt-detail-list li::before,
.spt-check-list li::before {
	position: absolute;
	top: .08em;
	left: 0;
	display: grid;
	place-items: center;
	width: 18px;
	height: 18px;
	color: #151007;
	background: var(--spt-gold);
	border-radius: 50%;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

.spt-detail-list li::before {
	content: "";
	border: 5px solid var(--spt-gold);
	background: transparent;
}

.spt-check-list {
	grid-template-columns: 1fr;
}

.spt-check-list li::before {
	content: "\2713";
}

.spt-contact-methods {
	display: grid;
	gap: 12px;
}

.spt-contact-methods a {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
	color: rgba(255, 255, 255, .88);
}

.spt-contact-methods svg {
	flex: 0 0 auto;
	width: 22px;
	height: 22px;
	color: var(--spt-gold);
}

.spt-contact-methods .spt-whatsapp-icon {
	flex: 0 0 auto;
	width: 24px;
	height: 24px;
}

.spt-contact-methods span {
	display: grid;
	min-width: 0;
	gap: 1px;
	overflow-wrap: anywhere;
}

.spt-contact-methods strong {
	color: var(--spt-gold-light);
	font-size: 13px;
	text-transform: uppercase;
}

.spt-response-note,
.spt-payment-panel p {
	margin: 18px 0 0;
	color: rgba(255, 255, 255, .78);
	font-size: 16px;
	line-height: 1.55;
}

.spt-contact-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	padding: 0;
	background: transparent;
}

.spt-contact-gallery a {
	display: block;
	color: inherit;
	text-decoration: none;
	min-width: 0;
}

.spt-contact-gallery figure {
	margin: 0;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 7px;
	background: #08090b;
	box-shadow: 0 16px 36px rgba(0, 0, 0, .24);
	cursor: zoom-in;
}

.spt-contact-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.spt-contact-form {
	position: sticky;
	top: 88px;
}

.spt-contact-form label {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 7px;
	margin: 0 0 13px;
	color: rgba(255, 255, 255, .8);
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.spt-contact-form label span {
	margin-left: auto;
	padding: 2px 6px;
	color: rgba(255, 255, 255, .7);
	background: rgba(255, 255, 255, .055);
	border: 1px solid rgba(255, 255, 255, .1);
	border-radius: 999px;
	font-size: 10px;
	font-weight: 850;
	line-height: 1.2;
}

.spt-contact-form input,
.spt-contact-form textarea {
	flex: 0 0 100%;
	width: 100%;
	min-height: 44px;
	padding: 11px 13px;
	color: var(--spt-white);
	background: rgba(0, 0, 0, .28);
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: 6px;
	font: 600 15px/1.35 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.spt-contact-form textarea {
	resize: vertical;
}

.spt-contact-form input:focus,
.spt-contact-form textarea:focus {
	outline: 2px solid rgba(226, 161, 45, .56);
	outline-offset: 1px;
	border-color: var(--spt-gold);
}

.spt-form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.spt-contact-form button {
	width: 100%;
	margin-top: 4px;
	border: 0;
	cursor: pointer;
}

.spt-form-alert {
	display: grid;
	gap: 5px;
	padding: 15px 18px;
	border-radius: 7px;
	font-weight: 750;
}

.spt-form-alert strong {
	display: block;
	font-size: 16px;
	line-height: 1.3;
}

.spt-form-alert span {
	display: block;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.5;
}

.spt-form-alert-success {
	color: #dff8e6;
	background: rgba(22, 180, 72, .16);
	border: 1px solid rgba(22, 180, 72, .42);
}

.spt-form-alert-error {
	color: #ffe6df;
	background: rgba(180, 50, 22, .16);
	border: 1px solid rgba(180, 50, 22, .42);
}

.spt-lightbox-open {
	overflow: hidden;
}

.spt-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: none;
	place-items: center;
	padding: clamp(18px, 4vw, 54px);
	background: rgba(0, 0, 0, .9);
	backdrop-filter: blur(12px);
}

.spt-lightbox.is-open {
	display: grid;
}

.spt-lightbox figure {
	display: grid;
	justify-items: center;
	gap: 12px;
	max-width: min(1120px, 94vw);
	max-height: 88vh;
	margin: 0;
}

.spt-lightbox img {
	max-width: 100%;
	max-height: 80vh;
	object-fit: contain;
	border: 1px solid var(--spt-line);
	border-radius: 8px;
	box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
}

.spt-lightbox figcaption {
	color: rgba(255, 255, 255, .82);
	font-size: 14px;
	font-weight: 650;
	text-align: center;
}

.spt-lightbox-close {
	position: fixed;
	top: clamp(14px, 2vw, 24px);
	right: clamp(14px, 2vw, 24px);
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	color: rgba(255, 255, 255, .92);
	background: rgba(16, 17, 19, .82);
	border: 1px solid rgba(255, 255, 255, .24);
	border-radius: 50%;
	font-size: 0;
	line-height: 1;
	box-shadow: 0 14px 34px rgba(0, 0, 0, .34);
	cursor: pointer;
	transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}

.spt-lightbox-close::before,
.spt-lightbox-close::after {
	content: "";
	position: absolute;
	width: 19px;
	height: 2px;
	background: currentColor;
	border-radius: 99px;
}

.spt-lightbox-close::before {
	transform: rotate(45deg);
}

.spt-lightbox-close::after {
	transform: rotate(-45deg);
}

.spt-lightbox-nav {
	position: fixed;
	top: 50%;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 54px;
	height: 64px;
	color: rgba(255, 255, 255, .92);
	background: rgba(16, 17, 19, .78);
	border: 1px solid rgba(255, 255, 255, .24);
	border-radius: 9px;
	font-size: 0;
	line-height: 1;
	transform: translateY(-50%);
	box-shadow: 0 16px 42px rgba(0, 0, 0, .34);
	cursor: pointer;
	transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}

.spt-lightbox-nav::before {
	content: "";
	display: block;
	width: 15px;
	height: 15px;
	border-top: 3px solid currentColor;
	border-right: 3px solid currentColor;
	border-radius: 1px;
}

.spt-lightbox-prev {
	left: clamp(12px, 3vw, 32px);
}

.spt-lightbox-prev::before {
	transform: rotate(-135deg);
	margin-left: 5px;
}

.spt-lightbox-next {
	right: clamp(12px, 3vw, 32px);
}

.spt-lightbox-next::before {
	transform: rotate(45deg);
	margin-right: 5px;
}

.spt-lightbox-close:hover,
.spt-lightbox-nav:hover {
	color: #151007;
	background: var(--spt-gold-light);
	border-color: var(--spt-gold);
}

.spt-lightbox-close:hover {
	transform: scale(1.04);
}

.spt-lightbox-nav:hover {
	transform: translateY(-50%) scale(1.04);
}

.spt-lightbox-close:focus-visible,
.spt-lightbox-nav:focus-visible {
	outline: 2px solid var(--spt-gold-light);
	outline-offset: 3px;
}

.spt-lightbox-nav[hidden] {
	display: none;
}

.spt-services-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.spt-services-hero-bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	background-image:
		linear-gradient(90deg, rgba(5, 6, 8, .88), rgba(5, 6, 8, .56) 48%, rgba(5, 6, 8, .9)),
		linear-gradient(180deg, rgba(5, 6, 8, .18), rgba(5, 6, 8, .92)),
		var(--spt-services-hero-image);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.spt-services-hero::after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	z-index: -1;
	height: 35%;
	background: linear-gradient(180deg, transparent, #101113);
}

.spt-services-hero-inner,
.spt-services-content {
	width: min(var(--spt-max), calc(100% - (var(--spt-side) * 2)));
	margin: 0 auto;
}

.spt-services-hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(290px, 390px);
	align-items: center;
	gap: clamp(30px, 5vw, 72px);
	min-height: clamp(430px, 42vw, 610px);
	padding: clamp(46px, 6vw, 82px) 0;
}

.spt-services-hero-copy h1 {
	max-width: 860px !important;
	margin: 0 !important;
	color: var(--spt-white) !important;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: clamp(46px, 5vw, 76px) !important;
	font-weight: 900 !important;
	line-height: .98 !important;
	letter-spacing: 0 !important;
	text-shadow: 0 5px 28px rgba(0, 0, 0, .55) !important;
}

.spt-services-hero-copy > p {
	max-width: 760px;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, .9);
	font-size: clamp(17px, 1.35vw, 21px);
	font-weight: 650;
	line-height: 1.5;
}

.spt-services-hero-card {
	display: block;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	border: 1px solid var(--spt-line);
	border-radius: 9px;
	background: #08090b;
	box-shadow: 0 28px 70px rgba(0, 0, 0, .38);
	cursor: zoom-in;
}

.spt-services-hero-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.spt-services-content {
	display: grid;
	gap: clamp(22px, 3vw, 38px);
	padding: clamp(42px, 6vw, 76px) 0 clamp(62px, 8vw, 104px);
}

.spt-services-intro,
.spt-services-band,
.spt-services-cta {
	padding: clamp(24px, 3vw, 38px);
	background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .026));
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 8px;
	box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
}

.spt-services-intro {
	display: grid;
	grid-template-columns: minmax(260px, .76fr) minmax(0, 1fr);
	gap: clamp(22px, 4vw, 56px);
	align-items: start;
}

.spt-services-intro h2,
.spt-services-band h2,
.spt-services-cta h2,
.spt-service-feature-card h2 {
	margin: 0 !important;
	color: var(--spt-white) !important;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-weight: 850 !important;
	line-height: 1.12 !important;
	letter-spacing: 0 !important;
}

.spt-services-intro h2,
.spt-services-band h2,
.spt-services-cta h2 {
	font-size: clamp(28px, 3vw, 42px) !important;
}

.spt-services-intro p,
.spt-services-cta p {
	margin: 0;
	color: rgba(255, 255, 255, .8);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.68;
}

.spt-services-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.spt-service-feature-card {
	display: grid;
	align-content: start;
	gap: 12px;
	min-height: 275px;
	padding: 24px 20px;
	background: linear-gradient(180deg, rgba(255, 255, 255, .048), rgba(255, 255, 255, .022));
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 8px;
	box-shadow: 0 16px 34px rgba(0, 0, 0, .2);
}

.spt-service-feature-icon {
	display: grid;
	place-items: center;
	flex: 0 0 56px;
	width: 56px !important;
	height: 56px !important;
	min-width: 56px;
	min-height: 56px;
	max-width: 56px;
	max-height: 56px;
	overflow: hidden;
	color: var(--spt-gold) !important;
	background: rgba(226, 161, 45, .08);
	border: 1px solid var(--spt-line);
	border-radius: 8px;
}

.spt-service-feature-icon svg,
.spt-service-feature-icon .spt-icon {
	width: 34px !important;
	height: 34px !important;
	min-width: 34px !important;
	min-height: 34px !important;
	max-width: 34px !important;
	max-height: 34px !important;
	color: var(--spt-gold) !important;
	transform: none !important;
}

.spt-service-feature-icon .spt-icon--solid,
.spt-service-feature-icon .spt-icon--solid path {
	fill: currentColor !important;
	stroke: none !important;
}

.spt-service-feature-icon .spt-icon--line,
.spt-service-feature-icon .spt-icon--line path {
	fill: none !important;
	stroke: currentColor !important;
}

.spt-service-feature-card h2 {
	font-size: 20px !important;
}

.spt-service-feature-card p {
	margin: 0;
	color: rgba(255, 255, 255, .76);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.58;
}

.spt-services-band {
	display: grid;
	grid-template-columns: minmax(260px, .8fr) minmax(0, 1fr);
	gap: clamp(22px, 4vw, 56px);
	align-items: start;
}

.spt-services-band .spt-check-list {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.spt-services-gallery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.spt-services-gallery a {
	display: block;
	overflow: hidden;
	aspect-ratio: 1.35 / 1;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 8px;
	background: #08090b;
	box-shadow: 0 16px 36px rgba(0, 0, 0, .24);
	cursor: zoom-in;
}

.spt-services-gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .25s ease;
}

.spt-services-gallery a:hover img {
	transform: scale(1.04);
}

.spt-services-cta {
	display: grid;
	justify-items: start;
	gap: 16px;
	background:
		linear-gradient(90deg, rgba(226, 161, 45, .12), transparent 46%),
		linear-gradient(180deg, rgba(255, 255, 255, .058), rgba(255, 255, 255, .028));
	border-color: var(--spt-line);
}

.spt-about-services-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.spt-about-copy {
	margin: 18px 0 0;
	color: rgba(255, 255, 255, .78);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.65;
}

.spt-about-gallery a {
	aspect-ratio: 1.2 / 1;
}

.spt-vehicle-banner {
	min-height: clamp(360px, 34vw, 520px);
}

.spt-vehicle-banner .spt-page-hero-bg {
	background-image:
		linear-gradient(90deg, rgba(5, 6, 8, .9), rgba(5, 6, 8, .58) 48%, rgba(5, 6, 8, .9)),
		linear-gradient(180deg, rgba(5, 6, 8, .08), rgba(5, 6, 8, .9)),
		var(--spt-hero-bg-image);
	background-position: center 45%;
}

.spt-vehicle-spec-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.spt-vehicle-spec-grid .spt-service-feature-card {
	min-height: 245px;
}

.spt-vehicle-gallery a {
	aspect-ratio: 3 / 4;
}

.spt-vehicle-gallery img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
}

.spt-vehicle-gallery a:last-child img {
	object-position: center 34% !important;
}

.spt-vehicle-template .spt-services-content {
	background:
		radial-gradient(circle at 10% 4%, rgba(226, 161, 45, .08), transparent 28rem),
		linear-gradient(180deg, #101113, #07080a);
}

.spt-gallery-banner {
	min-height: clamp(340px, 32vw, 500px);
}

.spt-gallery-banner .spt-page-hero-bg {
	background-image:
		linear-gradient(90deg, rgba(5, 6, 8, .92), rgba(5, 6, 8, .6) 50%, rgba(5, 6, 8, .9)),
		linear-gradient(180deg, rgba(5, 6, 8, .08), rgba(5, 6, 8, .9)),
		var(--spt-hero-bg-image);
	background-position: center;
}

.spt-gallery-content {
	display: grid;
	gap: clamp(22px, 3vw, 38px);
	width: min(var(--spt-max), calc(100% - (var(--spt-side) * 2)));
	margin: 0 auto;
	padding: clamp(42px, 6vw, 76px) 0 clamp(62px, 8vw, 104px);
	background:
		radial-gradient(circle at 8% 0%, rgba(226, 161, 45, .08), transparent 27rem),
		linear-gradient(180deg, #101113, #07080a);
}

.spt-gallery-intro {
	display: grid;
	grid-template-columns: minmax(260px, .76fr) minmax(0, 1fr);
	gap: clamp(22px, 4vw, 56px);
	align-items: start;
	padding: clamp(24px, 3vw, 38px);
	background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .026));
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 8px;
	box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
}

.spt-gallery-intro h2 {
	margin: 0 !important;
	color: var(--spt-white) !important;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
	font-size: clamp(28px, 3vw, 42px) !important;
	font-weight: 850 !important;
	line-height: 1.12 !important;
	letter-spacing: 0 !important;
}

.spt-gallery-intro p {
	margin: 0;
	color: rgba(255, 255, 255, .8);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.68;
}

.spt-gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-flow: dense;
	gap: 14px;
}

.spt-gallery-item {
	display: block;
	min-width: 0;
	color: inherit;
	text-decoration: none;
}

.spt-gallery-item figure {
	position: relative;
	margin: 0;
	overflow: hidden;
	aspect-ratio: 3 / 4;
	background: #08090b;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 8px;
	box-shadow: 0 16px 36px rgba(0, 0, 0, .24);
	cursor: zoom-in;
}

.spt-gallery-item-featured {
	grid-column: span 2;
	grid-row: span 2;
}

.spt-gallery-item-featured figure {
	aspect-ratio: 1 / 1;
	border-color: var(--spt-line);
}

.spt-gallery-item img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center !important;
	transition: transform .25s ease, filter .25s ease;
}

.spt-gallery-item:hover img {
	transform: scale(1.04);
	filter: brightness(1.08);
}

.spt-gallery-item figcaption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 34px 16px 14px;
	color: rgba(255, 255, 255, .94);
	background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .76));
	font-size: 14px;
	font-weight: 750;
	line-height: 1.35;
	text-shadow: 0 2px 14px rgba(0, 0, 0, .8);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

@media (max-width: 1240px) {
	.spt-header {
		grid-template-columns: minmax(190px, 1fr) auto auto;
	}

	.spt-hero-inner {
		grid-template-columns: minmax(0, 1fr) minmax(380px, .82fr);
	}

	.spt-hero h1 {
		font-size: clamp(48px, 4.65vw, 64px) !important;
	}

	.spt-menu-toggle {
		display: block;
		justify-self: end;
	}

	.spt-nav {
		position: absolute;
		top: 100%;
		right: var(--spt-side);
		left: var(--spt-side);
		display: none;
		padding: 12px;
		background: rgba(5, 6, 8, .98);
		border: 1px solid var(--spt-line);
		border-radius: 8px;
		box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
	}

	.spt-nav.is-open {
		display: block;
	}

	.spt-menu {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 6px;
	}

	.spt-menu a {
		padding: 12px 10px;
		text-align: center;
		border-radius: 6px;
	}

	.spt-card-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.spt-services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.spt-about-services-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.spt-vehicle-spec-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.spt-benefits {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		row-gap: 14px;
	}

	.spt-benefit:nth-child(4n) {
		border-right: 0;
	}
}

@media (max-width: 980px) {
	.spt-header {
		height: 60px !important;
		min-height: 0 !important;
		max-height: 60px !important;
		gap: 14px;
		padding-top: 0 !important;
		padding-bottom: 0 !important;
	}

	.spt-header-book {
		display: none;
	}

	.spt-hero {
		min-height: auto;
	}

	.spt-hero-inner {
		grid-template-columns: 1fr;
		padding-top: 62px;
	}

	.spt-hero-copy {
		max-width: 760px;
		padding-top: 0;
	}

	.spt-hero-card {
		width: min(680px, 100%);
	}

	.spt-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.spt-trust {
		grid-template-columns: 1fr;
	}

	.spt-contact-panel {
		width: min(480px, 100%);
	}

	.spt-booking-layout {
		grid-template-columns: 1fr;
	}

	.spt-contact-form {
		position: static;
	}

	.spt-footer-inner {
		grid-template-columns: 1fr 1fr;
	}

	.spt-footer-brand {
		grid-column: 1 / -1;
	}

	.spt-services-hero-inner,
	.spt-services-intro,
	.spt-services-band {
		grid-template-columns: 1fr;
	}

	.spt-services-hero-card {
		width: min(420px, 100%);
	}

	.spt-services-band .spt-check-list {
		grid-template-columns: 1fr;
	}

	.spt-gallery-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.spt-gallery-item-featured {
		grid-column: span 2;
		grid-row: span 1;
	}

	.spt-gallery-intro {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	:root {
		--spt-side: 16px;
	}

	.spt-header {
		grid-template-columns: 1fr auto;
	}

	.spt-nav {
		right: 0;
		left: 0;
		width: 100%;
		padding: 10px var(--spt-side) 14px;
		background: rgba(3, 4, 7, .98);
		border-right: 0;
		border-left: 0;
		border-radius: 0 0 10px 10px;
		box-shadow: 0 24px 44px rgba(0, 0, 0, .48);
	}

	.spt-brand-mark {
		width: 40px;
		height: 50px;
		font-size: 26px;
	}

	.spt-brand-logo {
		width: clamp(168px, 52vw, 205px);
		height: 36px;
	}

	.spt-brand-text strong {
		font-size: 23px;
	}

	.spt-brand-text small {
		font-size: 12px;
	}

	.spt-menu {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.spt-menu a {
		padding: 13px 14px;
		background: rgba(255, 255, 255, .035);
		border: 1px solid rgba(255, 255, 255, .08);
		text-align: left;
		font-size: 13px;
	}

	.spt-menu .current-menu-item > a,
	.spt-menu a:hover {
		color: var(--spt-gold-light);
		background: rgba(226, 161, 45, .1);
		border-color: var(--spt-line);
	}

	.spt-menu a::after {
		top: 9px;
		right: auto;
		bottom: 9px;
		left: 0;
		width: 3px;
		height: auto;
		transform: scaleY(.35);
	}

	.spt-menu .current-menu-item > a::after,
	.spt-menu a:hover::after {
		transform: scaleY(1);
	}

	.spt-hero-bg {
		background-image:
			linear-gradient(90deg, rgba(5, 6, 8, .52), rgba(5, 6, 8, .48)),
			linear-gradient(180deg, rgba(5, 6, 8, .08), #101113 94%),
			var(--spt-hero-bg-image);
		background-position: 39% top;
		background-size: auto 100%;
	}

	.spt-hero-inner {
		padding-top: 48px;
		padding-bottom: 24px;
	}

	.spt-hero-card img {
		width: 100% !important;
		max-width: 100% !important;
		height: 100% !important;
		object-fit: cover !important;
		object-position: center !important;
		transform: none !important;
	}

	.spt-hero h1 {
		font-size: clamp(38px, 11vw, 52px) !important;
	}

	.spt-page-hero h1 {
		font-size: clamp(38px, 11vw, 52px) !important;
	}

	.spt-lede {
		font-size: 16px !important;
	}

	.spt-btn {
		width: 100%;
	}

	.spt-card-grid {
		grid-template-columns: 1fr;
	}

	.spt-service-card {
		min-height: 0;
	}

	.spt-benefits {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.spt-benefit:nth-child(2n) {
		border-right: 0;
	}

	.spt-benefit:nth-child(4n) {
		border-right: 0;
	}

	.spt-floating-whatsapp {
		right: 18px;
		bottom: 18px;
		width: 58px;
		height: 58px;
	}

	.spt-floating-whatsapp svg {
		width: 36px;
		height: 36px;
	}

	.spt-contact-actions,
	.spt-form-row,
	.spt-detail-list,
	.spt-contact-gallery,
	.spt-services-grid,
	.spt-about-services-grid,
	.spt-vehicle-spec-grid,
	.spt-services-gallery,
	.spt-gallery-grid {
		grid-template-columns: 1fr;
	}

	.spt-contact-actions {
		display: grid;
	}

	.spt-footer-inner {
		grid-template-columns: 1fr;
		padding-bottom: 34px;
	}

	.spt-footer-nav .spt-menu {
		grid-template-columns: 1fr;
		gap: 6px;
	}

	.spt-footer-nav .spt-menu a,
	.spt-footer-nav .spt-menu .current-menu-item > a,
	.spt-footer-nav .spt-menu a:hover {
		width: fit-content;
		padding: 4px 0;
		color: rgba(255, 255, 255, .78);
		background: transparent;
		border: 0;
		text-align: left;
	}

	.spt-footer-nav .spt-menu .current-menu-item > a,
	.spt-footer-nav .spt-menu a:hover {
		color: var(--spt-gold-light);
	}

	.spt-footer-nav .spt-menu a::after,
	.spt-footer-nav .spt-menu .current-menu-item > a::after,
	.spt-footer-nav .spt-menu a:hover::after {
		top: auto;
		right: 0;
		bottom: -1px;
		left: 0;
		width: auto;
		height: 2px;
		transform: scaleX(0);
	}

	.spt-footer-nav .spt-menu a:hover::after {
		transform: scaleX(1);
	}

	.spt-footer-contact a {
		font-size: 14px;
	}

	.spt-services-hero-copy h1 {
		font-size: clamp(38px, 11vw, 52px) !important;
	}

	.spt-service-feature-card {
		min-height: 0;
	}

	.spt-gallery-item-featured {
		grid-column: auto;
		grid-row: auto;
	}

	.spt-gallery-item figure,
	.spt-gallery-item-featured figure {
		aspect-ratio: 4 / 5;
	}

	.spt-gallery-item figcaption {
		padding: 30px 14px 13px;
		font-size: 13px;
	}

	.spt-lightbox {
		padding: 16px 14px 78px;
	}

	.spt-lightbox figure {
		max-width: 100%;
		max-height: 82vh;
	}

	.spt-lightbox img {
		max-height: 72vh;
	}

	.spt-lightbox-nav {
		top: auto;
		bottom: 16px;
		width: 48px;
		height: 48px;
		border-radius: 50%;
		transform: none;
	}

	.spt-lightbox-nav::before {
		width: 13px;
		height: 13px;
		border-top-width: 3px;
		border-right-width: 3px;
	}

	.spt-lightbox-prev {
		left: calc(50% - 58px);
	}

	.spt-lightbox-next {
		right: calc(50% - 58px);
	}

	.spt-lightbox-nav:hover {
		transform: scale(1.04);
	}

	.spt-lightbox-close {
		width: 42px;
		height: 42px;
	}

	.spt-lightbox-close::before,
	.spt-lightbox-close::after {
		width: 17px;
	}
}

@media (max-width: 430px) {
	.spt-brand {
		gap: 9px;
	}

	.spt-brand-mark {
		width: 34px;
		height: 43px;
		font-size: 22px;
	}

	.spt-brand-logo {
		width: 156px;
		height: 34px;
	}

	.spt-brand-text strong {
		font-size: 20px;
	}

	.spt-brand-text small {
		font-size: 10px;
	}

	.spt-hero h1 {
		font-size: 37px !important;
	}

	.spt-benefits {
		grid-template-columns: 1fr;
	}

	.spt-benefit {
		border-right: 0;
		border-bottom: 1px solid rgba(255, 255, 255, .18);
	}

	.spt-benefit:last-child {
		border-bottom: 0;
	}
}
