:root {
	--sx-bg: #f5f1e8;
	--sx-surface: #ffffff;
	--sx-surface-dark: #11161d;
	--sx-text: #1a2027;
	--sx-text-soft: #5f6874;
	--sx-border: rgba(17, 22, 29, 0.12);
	--sx-red: #c62828;
	--sx-red-dark: #991b1b;
	--sx-orange: #f59e0b;
	--sx-ink: #0f1217;
	--sx-radius: 24px;
	--sx-shadow: 0 20px 50px rgba(15, 18, 23, 0.14);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--sx-bg);
	color: var(--sx-text);
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	display: block;
	max-width: 100%;
}

.sx-container {
	width: min(1180px, calc(100vw - 32px));
	margin: 0 auto;
}

.sx-topbar {
	background: #11161d;
	color: #fff4da;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sx-topbar__inner {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 24px;
	align-items: center;
	min-height: 50px;
}

.sx-topbar__phone {
	font-weight: 700;
	letter-spacing: 0.02em;
}

.sx-topbar__marquee {
	overflow: hidden;
}

.sx-topbar__track {
	display: inline-flex;
	min-width: 100%;
	white-space: nowrap;
	justify-content: flex-end;
	animation: sx-marquee 18s linear infinite;
}

.sx-topbar__track a {
	color: var(--sx-orange);
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

@keyframes sx-marquee {
	0% {
		transform: translateX(100%);
	}
	100% {
		transform: translateX(-100%);
	}
}

.sx-header {
	z-index: 50;
	background: #fff;
	border-bottom: 1px solid rgba(17, 22, 29, 0.08);
}

.sx-trust-strip {
	background: #113468;
	color: #fff;
}

.sx-trust-strip__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
}

.sx-trust-strip__item {
	padding: 30px 22px;
	text-align: center;
	font-size: clamp(1.15rem, 2vw, 1.8rem);
	font-weight: 800;
	line-height: 1.22;
	letter-spacing: 0.01em;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.sx-trust-strip__item:nth-last-child(-n + 2) {
	border-bottom: 0;
}

.sx-header__inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 20px;
	min-height: 112px;
}

.sx-brand img,
.sx-brand .custom-logo {
	max-height: 94px;
	width: auto;
}

.sx-nav__list,
.sx-footer__links,
.sx-footer__bottom-links,
.sx-footer__contact {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sx-nav {
	position: static;
	display: block;
	padding: 0;
	background: transparent;
	border: 0;
	justify-self: center;
}

.sx-nav__list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	font-size: 0.95rem;
	font-weight: 700;
}

.sx-nav__item {
	position: relative;
}

.sx-nav__item > a {
	display: inline-flex;
	align-items: center;
	padding: 10px 0;
}

.sx-subnav {
	position: absolute;
	top: calc(100% + 8px);
	left: 0;
	min-width: 220px;
	display: none;
	padding: 14px;
	margin: 0;
	list-style: none;
	background: rgba(255, 255, 255, 0.98);
	border-radius: 18px;
	box-shadow: var(--sx-shadow);
	border: 1px solid rgba(17, 22, 29, 0.08);
}

.sx-subnav li + li {
	margin-top: 8px;
}

.sx-nav__item:hover .sx-subnav,
.sx-nav__item:focus-within .sx-subnav {
	display: block;
}

.sx-header__cta,
.sx-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-radius: 999px;
	padding: 14px 22px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.sx-header__cta,
.sx-button--primary {
	background: var(--sx-red);
	color: #fff;
}

.sx-header__cta:hover,
.sx-button--primary:hover {
	background: var(--sx-red-dark);
	transform: translateY(-1px);
}

.sx-button--secondary,
.sx-button--ghost {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.28);
}

.sx-button--secondary {
	color: var(--sx-text);
	border-color: rgba(17, 22, 29, 0.15);
}

.sx-button--secondary:hover,
.sx-button--ghost:hover {
	background: rgba(255, 255, 255, 0.08);
}

.sx-button--block {
	width: 100%;
}

.sx-header__cta {
	display: inline-flex;
}

.sx-nav-toggle {
	display: none;
	padding: 0;
	border: 0;
	background: transparent;
	justify-self: end;
}

.sx-nav-toggle span {
	display: block;
	width: 52px;
	height: 6px;
	background: var(--sx-ink);
	margin: 7px 0;
	border-radius: 999px;
}

.sx-hero {
	position: relative;
	padding: 0;
	overflow: visible;
	background: #0f1217;
	min-height: 820px;
}

.sx-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(15, 18, 23, 0.56), rgba(15, 18, 23, 0.72));
	z-index: 1;
}

.sx-hero__media {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	z-index: 0;
}

.sx-hero__bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 24%;
}

.sx-hero__grid {
	display: grid;
	grid-template-columns: minmax(300px, 400px) minmax(0, 1fr);
	grid-template-areas: "copy booking";
	gap: 36px;
	align-items: center;
	position: relative;
	width: min(1180px, calc(100vw - 32px));
	margin: 0 auto;
	z-index: 2;
	min-height: clamp(820px, 86vh, 980px);
	padding-top: 40px;
	padding-bottom: 64px;
	align-content: center;
}

.sx-hero__copy {
	grid-area: copy;
	color: #fff;
	text-align: left;
	width: 100%;
	max-width: 860px;
	margin: 0;
	align-self: center;
}

.sx-booking {
	grid-area: booking;
	width: 100%;
	max-width: 400px;
	justify-self: start;
	align-self: center;
}

.sx-kicker {
	margin: 0 0 14px;
	color: var(--sx-orange);
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.sx-hero h1,
.sx-section-heading h2,
.sx-panel__copy h2,
.sx-booking h2 {
	margin: 0 0 18px;
	line-height: 0.98;
	font-weight: 900;
	letter-spacing: -0.04em;
}

.sx-hero h1 {
	max-width: 15.5ch;
	font-size: clamp(3.25rem, 5.9vw, 5.85rem);
	margin-left: 0;
	margin-right: 0;
}

.sx-hero p {
	max-width: 40ch;
	font-size: 1.06rem;
	line-height: 1.72;
	color: rgba(255, 255, 255, 0.88);
	margin-left: 0;
	margin-right: 0;
}

.sx-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
	justify-content: flex-start;
}

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

.sx-card {
	background: var(--sx-surface);
	border-radius: var(--sx-radius);
	border: 1px solid var(--sx-border);
	box-shadow: var(--sx-shadow);
}

.sx-booking {
	padding: 28px;
	background: rgba(255, 255, 255, 0.94);
}

.sx-booking form,
.sx-faq__items {
	display: grid;
	gap: 14px;
}

.sx-booking label {
	display: grid;
	gap: 8px;
	font-size: 0.95rem;
	font-weight: 700;
}

.sx-booking input,
.sx-booking textarea {
	width: 100%;
	border: 1px solid rgba(17, 22, 29, 0.12);
	border-radius: 16px;
	padding: 14px 16px;
	font: inherit;
	background: #fff;
}

.sx-form-notice {
	margin: -6px 0 4px;
	color: #137333;
	font-weight: 700;
}

.sx-panel {
	padding: 84px 0;
}

.sx-page-hero {
	padding: 88px 0 72px;
	background: linear-gradient(135deg, #151a22 0%, #202938 54%, #2a1810 100%);
	color: #fff;
}

.sx-page-hero__lead {
	max-width: 62ch;
	color: rgba(255, 255, 255, 0.82);
	font-size: 1.05rem;
}

.sx-breadcrumbs {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
	color: rgba(255, 255, 255, 0.68);
	font-size: 0.92rem;
}

.sx-breadcrumbs a {
	color: rgba(255, 255, 255, 0.9);
}

.sx-panel--dark {
	background: var(--sx-surface-dark);
	color: #fff;
}

.sx-panel--muted {
	background: #efe8dc;
}

.sx-partner {
	position: relative;
	padding: 110px 0;
	overflow: hidden;
	background: #0f1217;
	color: #fff;
}

.sx-partner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(15, 18, 23, 0.58), rgba(15, 18, 23, 0.72));
	z-index: 1;
}

.sx-partner__media {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 0;
}

.sx-partner__bg {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
}

.sx-partner__inner {
	position: relative;
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
	z-index: 2;
}

.sx-partner__inner h2 {
	margin: 0 0 24px;
	font-size: clamp(2.9rem, 5.8vw, 4.8rem);
	line-height: 0.98;
	font-weight: 900;
	letter-spacing: -0.05em;
}

.sx-partner__inner h2 span {
	color: #1f51ff;
}

.sx-partner__inner p {
	margin: 0 0 18px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.02rem;
	line-height: 1.72;
}

.sx-partner__inner p:last-child {
	margin-bottom: 0;
}

.sx-partner__inner a {
	color: #fff;
	font-weight: 800;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 0.18em;
}

.sx-panel__copy {
	max-width: 780px;
}

.sx-panel__copy--center,
.sx-section-heading {
	text-align: center;
	margin: 0 auto 32px;
}

.sx-panel__copy--center span {
	color: #1f51ff;
}

.sx-link {
	display: inline-block;
	margin-top: 12px;
	font-weight: 800;
	color: var(--sx-red);
}

.sx-grid {
	display: grid;
	gap: 22px;
}

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

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

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

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

.sx-grid--contact-cards {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sx-service-card,
.sx-price-card {
	padding: 24px;
}

.sx-feature-card {
	padding: 24px;
}

.sx-contact-card {
	padding: 24px;
	text-align: center;
}

.sx-contact-card h3 {
	margin: 0 0 10px;
	font-size: 1.15rem;
}

.sx-contact-card p {
	margin: 0;
	color: var(--sx-text-soft);
}

.sx-contact-cta {
	display: flex;
	justify-content: center;
	margin-top: 28px;
}

.sx-service-card h3,
.sx-price-card h3 {
	margin: 0 0 10px;
	font-size: 1.35rem;
}

.sx-service-card p,
.sx-price-card li,
.sx-footer p,
.sx-footer li {
	color: var(--sx-text-soft);
	line-height: 1.6;
}

.sx-price-card__eyebrow {
	margin: 0 0 8px;
	color: var(--sx-orange);
	font-size: 0.82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.sx-price-card__price {
	margin: 0 0 18px;
	font-size: 2.1rem;
	font-weight: 900;
}

.sx-price-card ul {
	padding-left: 18px;
	margin: 0 0 22px;
}

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

.sx-gallery__item,
.sx-footer__gallery img {
	overflow: hidden;
	border-radius: 18px;
}

.sx-gallery__item,
.sx-about__media,
.sx-service-intro__media,
.sx-footer__gallery img {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #0f1217;
}

.sx-gallery__item,
.sx-footer__gallery img {
	aspect-ratio: 1 / 1;
}

.sx-gallery img,
.sx-footer__gallery img,
.sx-about__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
}

.sx-steps__list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
	padding: 0;
	margin: 0;
	list-style: none;
	counter-reset: sx-step;
}

.sx-steps__list li {
	position: relative;
	padding: 24px;
	background: var(--sx-surface);
	border-radius: 20px;
	border: 1px solid var(--sx-border);
	box-shadow: var(--sx-shadow);
	font-size: 1.05rem;
	font-weight: 800;
}

.sx-steps__list li::before {
	counter-increment: sx-step;
	content: counter(sx-step);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	margin-bottom: 14px;
	border-radius: 999px;
	background: var(--sx-orange);
	color: #111;
	font-size: 0.95rem;
}

.sx-faq__item {
	padding: 20px 22px;
}

.sx-faq__item summary {
	cursor: pointer;
	font-weight: 800;
	list-style: none;
}

.sx-faq__item summary::-webkit-details-marker {
	display: none;
}

.sx-faq__item p {
	margin: 14px 0 0;
	color: var(--sx-text-soft);
}

.sx-about {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
	gap: 28px;
	align-items: center;
}

.sx-split-panel {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.8fr);
	gap: 24px;
	align-items: stretch;
}

.sx-service-intro {
	display: grid;
	grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
	gap: 28px;
	align-items: center;
}

.sx-service-intro__media {
	min-height: 520px;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: var(--sx-shadow);
}

.sx-service-intro__media img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
}

.sx-service-intro__copy {
	display: grid;
	gap: 18px;
}

.sx-service-intro__copy h2 {
	margin: 0;
}

.sx-contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
	gap: 24px;
	align-items: start;
}

.sx-split-panel__copy,
.sx-split-panel__cta {
	padding: 28px;
}

.sx-contact-form-card,
.sx-contact-sidecard {
	padding: 28px;
}

.sx-form-panel {
	padding: 30px;
}

.sx-contact-form {
	display: grid;
	gap: 18px;
}

.sx-contact-form label {
	display: grid;
	gap: 8px;
	font-size: 0.95rem;
	font-weight: 700;
}

.sx-contact-form input,
.sx-contact-form select,
.sx-contact-form textarea {
	width: 100%;
	border: 1px solid rgba(17, 22, 29, 0.12);
	border-radius: 16px;
	padding: 14px 16px;
	font: inherit;
	background: #fff;
}

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

.sx-fieldset {
	margin: 0;
	padding: 18px;
	border: 1px solid rgba(17, 22, 29, 0.12);
	border-radius: 20px;
}

.sx-fieldset legend {
	padding: 0 8px;
	font-weight: 800;
}

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

.sx-check-option {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 14px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(17, 22, 29, 0.08);
}

.sx-check-option input {
	width: 18px;
	height: 18px;
	margin: 0;
}

.sx-feature-list {
	margin: 22px 0 0;
	padding-left: 18px;
}

.sx-feature-list li + li {
	margin-top: 10px;
}

.sx-about__media {
	min-height: 460px;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: var(--sx-shadow);
}

.sx-footer {
	background: #10151c;
	color: #fff;
}

.sx-footer__grid {
	display: grid;
	grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
	gap: 26px;
	padding: 72px 0 44px;
}

.sx-footer h2 {
	margin: 0 0 18px;
	font-size: 1.05rem;
	font-weight: 900;
}

.sx-footer__socials {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}

.sx-footer__socials a,
.sx-footer__links a,
.sx-footer__bottom-links a,
.sx-footer__contact a {
	color: rgba(255, 255, 255, 0.82);
}

.sx-footer__links li + li,
.sx-footer__contact li + li {
	margin-top: 10px;
}

.sx-footer__gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.sx-footer__bar {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sx-footer__bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 22px 0 28px;
}

.sx-footer__bar p {
	margin: 0;
}

.sx-footer__bottom-links {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
}

@media (max-width: 1100px) {
	.sx-header__inner {
		grid-template-columns: minmax(0, 1fr) auto;
		min-height: 104px;
	}

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

	.sx-hero__grid {
		grid-template-areas:
			"copy"
			"booking";
		gap: 28px;
		min-height: auto;
		padding-top: 32px;
		padding-bottom: 56px;
		align-content: start;
	}

	.sx-booking {
		max-width: 520px;
		width: 100%;
		justify-self: center;
	}

	.sx-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		padding: 16px;
		background: rgba(255, 255, 255, 0.98);
		border-bottom: 1px solid rgba(17, 22, 29, 0.08);
		justify-self: stretch;
	}

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

	.sx-nav__list {
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		flex-wrap: nowrap;
	}

	.sx-subnav {
		position: static;
		display: block;
		margin-top: 6px;
		padding: 10px 0 0 14px;
		background: transparent;
		box-shadow: none;
		border: 0;
	}

	.sx-hero__grid,
	.sx-about,
	.sx-footer__grid,
	.sx-service-intro,
	.sx-split-panel,
	.sx-contact-layout {
		grid-template-columns: 1fr;
	}

	.sx-grid--services,
	.sx-grid--pricing,
	.sx-grid--three,
	.sx-grid--four,
	.sx-grid--contact-cards,
	.sx-gallery,
	.sx-steps__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sx-form-grid,
	.sx-check-grid {
		grid-template-columns: 1fr;
	}

	.sx-header__cta {
		display: none;
	}

	.sx-nav-toggle {
		display: inline-block;
	}
}

@media (max-width: 720px) {
	.sx-topbar__inner {
		grid-template-columns: 1fr;
		padding: 12px 0;
		gap: 10px;
	}

	.sx-header__inner {
		min-height: 96px;
	}

	.sx-brand img,
	.sx-brand .custom-logo {
		max-height: 82px;
	}

	.sx-trust-strip__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sx-trust-strip__item {
		padding: 26px 14px;
		font-size: 1.05rem;
	}

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

	.sx-hero h1 {
		max-width: 12ch;
		font-size: 2.7rem;
	}

	.sx-hero p {
		max-width: 32ch;
		font-size: 1rem;
		line-height: 1.65;
	}

	.sx-hero__grid {
		min-height: auto;
		padding-top: 16px;
		padding-bottom: 48px;
	}

	.sx-hero__bg {
		object-fit: contain;
		object-position: center top;
	}

	.sx-partner {
		padding: 78px 0;
		min-height: 560px;
	}

	.sx-partner__inner h2 {
		font-size: 2.5rem;
	}

	.sx-partner__bg {
		object-position: center top;
	}

	.sx-grid--services,
	.sx-grid--pricing,
	.sx-grid--three,
	.sx-grid--four,
	.sx-grid--contact-cards,
	.sx-gallery,
	.sx-steps__list {
		grid-template-columns: 1fr;
	}

	.sx-footer__bar-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}
