/* =========================================================================
   SpotSox Core — widget styles.

   Everything is scoped under `.sx` so the host theme can neither override
   these sections nor be polluted by them. Colors and type here are the
   *defaults*; every one is also exposed as an Elementor control, and Elementor
   writes its own rules at a higher specificity when the client changes them.
   ========================================================================= */

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

.sx {
	--sx-ink: #000;
	--sx-bone: #f1eee7;
	--sx-bone-2: #f7f5f0;
	--sx-purple: #7a02fe;
	--sx-line: #ddd8ce;
	--sx-muted: #6b6b6b;

	--sx-display: 'Archivo Black', 'Helvetica Neue', Arial, sans-serif;
	--sx-script: 'Alphasox', 'Brush Script MT', cursive;
	--sx-serif: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
	--sx-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

	--sx-gutter: 48px;

	color: var(--sx-ink);
	font-family: var(--sx-body);
	line-height: 1.5;
	text-align: left;
}

.sx img {
	display: block;
	max-width: 100%;
	height: auto;
}

.sx a {
	text-decoration: none;
}

/* Honeypot + screen-reader-only helpers. */
.sx .sx-hp {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.sx .screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

/* -------------------------------------------------------------------------
   Shared pieces
   ---------------------------------------------------------------------- */

.sx .sx-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	padding: 17px 32px;
	border: 0;
	border-radius: 2px;
	background-color: var(--sx-purple);
	color: #fff;
	font-family: var(--sx-body);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.16em;
	line-height: 1;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 0.18s ease, transform 0.18s ease;
	-webkit-appearance: none;
	appearance: none;
}

.sx .sx-btn:hover {
	background-color: #6100e0;
	transform: translateY(-1px);
}

.sx .sx-btn:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 3px;
}

.sx .sx-arrow {
	width: 22px;
	height: 11px;
	flex: none;
}

/* The purple brush stroke under the script headings. */
.sx .sx-brush {
	display: block;
	width: 80%;
	height: 0.28em;
	margin-top: -0.12em;
	overflow: visible;
}

/* -------------------------------------------------------------------------
   Header — inline menu on desktop, slide-in panel below the collapse point
   ---------------------------------------------------------------------- */

.sx-header {
	--sx-panel-w: 360px;
	--sx-nav-gap: 44px;
	position: relative;
	z-index: 50;
}

.sx-header.is-sticky {
	position: sticky;
	top: 0;
	z-index: 60;
}

.sx-header .sx-header__bar {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 32px;
	padding: 20px var(--sx-gutter);
	background-color: var(--sx-bone);
	border-bottom: 1px solid transparent;
}

.sx-header .sx-header__logo img {
	height: 40px;
	width: auto;
}

/* Clipped, never display:none — a display:none input leaves the tab order. */
.sx-header .sx-header__toggle {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: 0;
	opacity: 0;
	pointer-events: none;
}

.sx-header .sx-header__nav {
	min-width: 0;
}

.sx-header .sx-header__menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--sx-nav-gap);
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sx-header .sx-header__item {
	position: relative;
}

.sx-header .sx-header__link {
	position: relative;
	display: block;
	padding-bottom: 8px;
	color: var(--sx-ink);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.15em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
	transition: color 0.18s ease;
}

.sx-header .sx-header__link.is-current::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background-color: var(--sx-purple);
}

/* Parent items get a small caret. */
.sx-header .sx-header__item.has-children > .sx-header__link {
	padding-right: 15px;
}

.sx-header .sx-header__item.has-children > .sx-header__link::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 6px;
	height: 6px;
	margin-top: -5px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: rotate(45deg);
}

/* Dropdown */
.sx-header .sx-header__sub {
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 5;
	min-width: 210px;
	margin: 0;
	padding: 10px 0;
	list-style: none;
	background-color: #fff;
	box-shadow: 0 14px 34px rgba(0, 0, 0, 0.13);
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%) translateY(8px);
	transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.sx-header .sx-header__item:hover > .sx-header__sub,
.sx-header .sx-header__item:focus-within > .sx-header__sub {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.sx-header .sx-header__sub .sx-header__link {
	padding: 11px 22px;
	letter-spacing: 0.1em;
	text-align: left;
}

.sx-header .sx-header__sub .sx-header__link::after {
	display: none;
}

.sx-header .sx-header__sub .sx-header__link:hover {
	background-color: var(--sx-bone-2);
}

/* Panel chrome — only shown once collapsed. */
.sx-header .sx-header__panel-top,
.sx-header .sx-header__panel-strapline,
.sx-header .sx-header__burger {
	display: none;
}

.sx-header .sx-header__backdrop {
	position: fixed;
	inset: 0;
	z-index: 190;
	background-color: rgba(0, 0, 0, 0.45);
	opacity: 0;
	visibility: hidden;
	cursor: pointer;
	transition: opacity 0.3s ease, visibility 0.3s;
}

.sx-header .sx-header__utility {
	display: flex;
	align-items: center;
	gap: 22px;
	justify-content: flex-end;
}

.sx-header .sx-header__strapline {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.17em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.sx-header .sx-header__icon {
	position: relative;
	display: inline-flex;
	color: var(--sx-ink);
	transition: color 0.18s ease;
}

.sx-header .sx-header__icon:hover {
	color: var(--sx-purple);
}

.sx-header .sx-header__icon svg {
	width: 22px;
	height: 22px;
}

.sx-header .sx-header__cart-count {
	position: absolute;
	top: -6px;
	right: -9px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	border-radius: 999px;
	background-color: var(--sx-purple);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 16px;
	text-align: center;
}

/* Burger + close share a hit area. */
.sx-header .sx-header__burger,
.sx-header .sx-header__close {
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-right: -9px;
	color: var(--sx-ink);
	cursor: pointer;
}

.sx-header .sx-header__burger-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 24px;
}

.sx-header .sx-header__burger-box i {
	display: block;
	width: 100%;
	height: 2px;
	background-color: currentColor;
	transition: transform 0.25s ease, opacity 0.2s ease;
}

.sx-header .sx-header__close svg {
	width: 26px;
	height: 26px;
}

.sx-header .sx-header__toggle:focus-visible ~ .sx-header__utility .sx-header__burger,
.sx-header .sx-header__burger:focus-visible,
.sx-header .sx-header__close:focus-visible {
	outline: 2px solid var(--sx-purple);
	outline-offset: 3px;
}

/* -------------------------------------------------------------------------
   Hero
   ---------------------------------------------------------------------- */

.sx-hero .sx-hero__stage {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 660px;
	background-color: #e9e5dd;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.sx-hero .sx-hero__stage::before {
	content: '';
	position: absolute;
	inset: 0;
	background-color: rgba(241, 238, 231, 0.15);
	pointer-events: none;
}

.sx-hero .sx-hero__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1600px;
	margin: 0 auto;
	padding: 0 var(--sx-gutter);
}

.sx-hero .sx-hero__copy {
	max-width: 620px;
}

.sx-hero .sx-hero__heading {
	margin: 0 0 22px;
	font-family: var(--sx-display);
	font-size: clamp(42px, 5.4vw, 84px);
	font-weight: 400;
	letter-spacing: -0.025em;
	line-height: 0.92;
	text-transform: uppercase;
	color: var(--sx-ink);
}

.sx-hero .sx-hero__sub {
	margin: 0 0 34px;
	font-family: var(--sx-serif);
	font-size: clamp(15px, 1.25vw, 19px);
	font-weight: 400;
	line-height: 1.6;
	color: #1a1a1a;
}

.sx-hero .sx-hero__btn {
	border-radius: 2px;
}

/* Hand-lettered overlay, top right. */
.sx-hero .sx-hero__script {
	position: absolute;
	top: 12%;
	right: 64px;
	width: 300px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	pointer-events: none;
}

.sx-hero .sx-hero__script-img {
	width: 100%;
}

.sx-hero .sx-hero__script-word {
	font-family: var(--sx-script);
	font-size: clamp(44px, 4.6vw, 76px);
	line-height: 0.9;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	color: var(--sx-ink);
}

.sx-hero .sx-hero__script .sx-brush {
	width: 68%;
	margin: 2px 0 14px 6%;
}

.sx-hero .sx-hero__script-line {
	font-family: var(--sx-script);
	font-size: clamp(20px, 1.9vw, 32px);
	line-height: 1.15;
	color: var(--sx-ink);
	transform: rotate(-7deg);
	transform-origin: left top;
	padding-left: 10%;
}

/* -------------------------------------------------------------------------
   Benefits bar
   ---------------------------------------------------------------------- */

.sx-benefits .sx-benefits__grid {
	display: grid;
	grid-template-columns: repeat(var(--sx-cols, 4), minmax(0, 1fr));
	background-color: var(--sx-bone);
	padding: 46px var(--sx-gutter);
}

.sx-benefits .sx-benefits__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 4px 24px;
	text-align: center;
	color: inherit;
}

.sx-benefits .sx-benefits__item + .sx-benefits__item {
	border-left: 1px solid var(--sx-line);
}

.sx-benefits .sx-benefits__icon {
	display: block;
	color: var(--sx-ink);
	margin-bottom: 4px;
}

.sx-benefits .sx-benefits__icon svg {
	width: 34px;
	height: 34px;
}

.sx-benefits .sx-benefits__title {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	line-height: 1.3;
	text-transform: uppercase;
}

.sx-benefits .sx-benefits__text {
	font-family: var(--sx-serif);
	font-size: 15px;
	line-height: 1.45;
	color: #1a1a1a;
}

/* -------------------------------------------------------------------------
   Drop 01 / color vote
   ---------------------------------------------------------------------- */

.sx-drop .sx-drop__row {
	display: grid;
	/* The width comes from an Elementor control as a custom property, never as
	   grid-template-columns: Elementor writes the desktop value with no media
	   query and higher specificity, which would pin two columns at every size. */
	grid-template-columns: var(--sx-split, 61%) minmax(0, 1fr);
	align-items: stretch;
}

.sx-drop .sx-drop__media {
	position: relative;
	overflow: hidden;
	min-height: 440px;
}

.sx-drop .sx-drop__photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sx-drop .sx-drop__script {
	position: absolute;
	top: 8%;
	left: 4%;
	width: 26%;
	transform: rotate(-4deg);
}

.sx-drop .sx-drop__panel {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 56px 52px;
	background-color: #000;
	color: #fff;
}

.sx-drop .sx-drop__form {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	margin: 0;
}

.sx-drop .sx-drop__eyebrow {
	display: block;
	margin-bottom: 14px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.28em;
	line-height: 1;
	text-transform: uppercase;
	color: #fff;
}

.sx-drop .sx-drop__title {
	margin: 0 0 16px;
	font-family: var(--sx-display);
	font-size: clamp(38px, 3.6vw, 62px);
	font-weight: 400;
	letter-spacing: -0.02em;
	line-height: 0.9;
	text-transform: uppercase;
	color: #fff;
}

.sx-drop .sx-drop__question {
	margin: 0 0 30px;
	font-family: var(--sx-serif);
	font-size: clamp(14px, 1.1vw, 17px);
	line-height: 1.5;
	color: #e4e4e4;
}

.sx-drop .sx-drop__swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 26px;
	margin-bottom: 34px;
}

.sx-drop .sx-drop__swatch {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	cursor: pointer;
}

.sx-drop .sx-drop__swatch input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
}

.sx-drop .sx-drop__dot {
	display: block;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28);
	transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.sx-drop .sx-drop__swatch:hover .sx-drop__dot {
	transform: translateY(-2px);
}

.sx-drop .sx-drop__swatch input:checked + .sx-drop__dot {
	box-shadow: 0 0 0 3px var(--sx-purple);
}

.sx-drop .sx-drop__swatch input:focus-visible + .sx-drop__dot {
	box-shadow: 0 0 0 3px #fff;
}

.sx-drop .sx-drop__swatch-label {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	line-height: 1;
	text-transform: uppercase;
	color: #fff;
}

.sx-drop .sx-drop__btn {
	width: 100%;
	background-color: var(--sx-bone);
	color: #000;
	padding: 19px 28px;
	letter-spacing: 0.18em;
}

.sx-drop .sx-drop__btn:hover {
	background-color: #fff;
}

.sx-drop .sx-drop__thanks {
	width: 100%;
	margin: 0;
	padding: 19px 28px;
	background-color: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.24);
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-align: center;
	text-transform: uppercase;
}

.sx-drop .sx-drop__footnote {
	display: block;
	margin-top: 18px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.22em;
	line-height: 1.6;
	text-transform: uppercase;
	color: #9a9a9a;
}

/* -------------------------------------------------------------------------
   Image strip
   ---------------------------------------------------------------------- */

.sx-gallery .sx-gallery__grid {
	display: grid;
	grid-template-columns: repeat(var(--sx-cols, 3), minmax(0, 1fr));
	gap: 6px;
	background-color: var(--sx-bone);
}

.sx-gallery .sx-gallery__tile {
	position: relative;
	display: block;
	height: 360px;
	background-color: #1a1a1a;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}

.sx-gallery .sx-gallery__tile::after {
	content: '';
	position: absolute;
	inset: 0;
	background-color: transparent;
	pointer-events: none;
}

.sx-gallery .sx-gallery__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 34px;
}

.sx-gallery .sx-gallery__tile--left .sx-gallery__overlay {
	align-items: flex-start;
	text-align: left;
}

.sx-gallery .sx-gallery__tile--right .sx-gallery__overlay {
	align-items: flex-end;
	text-align: right;
}

.sx-gallery .sx-gallery__caption {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.26em;
	line-height: 1.85;
	text-transform: uppercase;
	color: #fff;
}

.sx-gallery .sx-gallery__rule {
	display: block;
	width: 46px;
	height: 3px;
	margin-top: 14px;
	background-color: var(--sx-purple);
}

/* -------------------------------------------------------------------------
   Brand outro
   ---------------------------------------------------------------------- */

.sx-outro .sx-outro__row {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 48px;
	padding: 70px var(--sx-gutter);
	background-color: var(--sx-bone);
}

.sx-outro .sx-outro__col {
	display: flex;
	flex-direction: column;
}

.sx-outro .sx-outro__col--left {
	align-items: flex-start;
}

.sx-outro .sx-outro__values {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	line-height: 2;
	text-transform: uppercase;
	color: #1a1a1a;
}

.sx-outro .sx-outro__centre {
	align-items: center;
	text-align: center;
	padding: 6px 64px;
	border-left: 1px solid var(--sx-line);
	border-right: 1px solid var(--sx-line);
}

.sx-outro .sx-outro__centre.is-flat {
	border-left: 0;
	border-right: 0;
}

.sx-outro .sx-outro__tagline {
	display: block;
	font-family: var(--sx-display);
	font-size: clamp(16px, 1.5vw, 24px);
	letter-spacing: -0.01em;
	line-height: 1.15;
	text-transform: uppercase;
	color: #000;
}

.sx-outro .sx-outro__script {
	display: block;
	margin-top: 6px;
	font-family: var(--sx-script);
	font-size: clamp(34px, 3.4vw, 58px);
	line-height: 1;
	text-transform: uppercase;
	color: var(--sx-purple);
}

.sx-outro .sx-outro__centre .sx-brush {
	width: 70%;
	margin: -2px auto 0;
}

.sx-outro .sx-outro__script-img {
	max-width: 340px;
	margin: 4px auto 0;
}

.sx-outro .sx-outro__col--right {
	align-items: flex-end;
	gap: 14px;
}

.sx-outro .sx-outro__mascot img {
	height: 86px;
	width: auto;
}

.sx-outro .sx-outro__cta {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 10px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.2em;
	line-height: 1;
	text-transform: uppercase;
	color: #000;
}

.sx-outro .sx-outro__cta::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background-color: #000;
}

/* -------------------------------------------------------------------------
   Footer bar
   ---------------------------------------------------------------------- */

.sx-footer .sx-footer__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
	padding: 26px var(--sx-gutter);
	background-color: #000;
}

.sx-footer .sx-footer__copyright {
	font-size: 12px;
	line-height: 1.5;
	color: #bfbfbf;
}

.sx-footer .sx-footer__links {
	min-width: 0;
}

.sx-footer .sx-footer__menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 34px;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sx-footer .sx-footer__sub {
	display: none;
}

.sx-footer .sx-footer__link {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.16em;
	line-height: 1;
	text-transform: uppercase;
	color: #fff;
	transition: color 0.18s ease;
}

.sx-footer .sx-footer__socials {
	display: flex;
	align-items: center;
	gap: 16px;
}

.sx-footer .sx-footer__social {
	display: inline-flex;
	color: #fff;
	transition: color 0.18s ease, transform 0.18s ease;
}

.sx-footer .sx-footer__social:hover {
	color: var(--sx-purple);
	transform: translateY(-1px);
}

.sx-footer .sx-footer__social svg {
	width: 19px;
	height: 19px;
}

/* -------------------------------------------------------------------------
   Contact
   ---------------------------------------------------------------------- */

.sx-contact .sx-contact__row {
	display: grid;
	grid-template-columns: var(--sx-split, 52%) minmax(0, 1fr);
	align-items: stretch;
}

.sx-contact .sx-contact__media {
	position: relative;
	overflow: hidden;
	min-height: 620px;
}

.sx-contact .sx-contact__photo {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* A soft light scrim under the overlay copy. The photo's own light/dark
   banding varies with the crop, so this guarantees the black brush script
   stays readable at any column width. Colour is an Elementor control. */
.sx-contact .sx-contact__scrim {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 58%;
	z-index: 1;
	background-image: linear-gradient(to top, rgba(241, 238, 231, 0.92) 0%, rgba(241, 238, 231, 0.72) 38%, rgba(241, 238, 231, 0) 100%);
	pointer-events: none;
}

.sx-contact .sx-contact__media-copy {
	position: absolute;
	left: 8%;
	right: 8%;
	bottom: 8%;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.sx-contact .sx-contact__photo-script {
	font-family: var(--sx-script);
	font-size: clamp(34px, 3.4vw, 58px);
	line-height: 1.02;
	text-transform: uppercase;
	color: #000;
}

.sx-contact .sx-contact__photo-script-img {
	max-width: 62%;
}

.sx-contact .sx-contact__media .sx-brush {
	width: 46%;
	margin: 2px 0 26px;
}

.sx-contact .sx-contact__photo-caption {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.22em;
	line-height: 1.9;
	text-transform: uppercase;
	color: #1a1a1a;
}

.sx-contact .sx-contact__photo-rule {
	display: block;
	width: 52px;
	height: 3px;
	margin-top: 12px;
	background-color: var(--sx-purple);
}

.sx-contact .sx-contact__panel {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 70px 64px;
	background-color: var(--sx-bone);
}

.sx-contact .sx-contact__eyebrow {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.3em;
	line-height: 1;
	text-transform: uppercase;
	color: #000;
}

.sx-contact .sx-contact__title-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: max-content;
	max-width: 100%;
	margin-bottom: 22px;
}

.sx-contact .sx-contact__title {
	margin: 0;
	font-family: var(--sx-script);
	font-size: clamp(52px, 5.6vw, 104px);
	font-weight: 400;
	line-height: 0.86;
	letter-spacing: 0;
	text-transform: uppercase;
	color: #000;
}

.sx-contact .sx-contact__title-wrap .sx-brush {
	width: 72%;
	margin: 2px 0 0 22%;
	height: 20px;
}

.sx-contact .sx-contact__title-img {
	max-width: 78%;
}

.sx-contact .sx-contact__intro {
	max-width: 36em;
	margin: 0 0 30px;
	font-size: clamp(15px, 1.15vw, 18px);
	line-height: 1.55;
	color: #2a2a2a;
}

.sx-contact .sx-contact__alert {
	margin: 0 0 22px;
	padding: 14px 18px;
	border-left: 3px solid var(--sx-purple);
	background-color: rgba(122, 2, 254, 0.06);
	font-size: 14px;
	line-height: 1.5;
}

.sx-contact .sx-contact__alert--bad {
	border-left-color: #c7263d;
	background-color: rgba(199, 38, 61, 0.07);
}

.sx-contact .sx-contact__form {
	display: block;
	margin: 0;
}

.sx-contact .sx-contact__field {
	margin-bottom: 20px;
	border: 0;
	padding: 0;
}

.sx-contact .sx-contact__label {
	display: block;
	margin-bottom: 9px;
	padding: 0;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.16em;
	line-height: 1;
	text-transform: uppercase;
	color: #000;
}

.sx-contact .sx-contact__optional {
	font-weight: 400;
	letter-spacing: 0.1em;
	color: var(--sx-muted);
	text-transform: lowercase;
}

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

.sx-contact .sx-contact__topic {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 14px;
	border: 1px solid var(--sx-line);
	border-radius: 4px;
	background-color: transparent;
	cursor: pointer;
	transition: border-color 0.18s ease, background-color 0.18s ease;
}

.sx-contact .sx-contact__topic input {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
}

.sx-contact .sx-contact__radio {
	flex: none;
	position: relative;
	width: 17px;
	height: 17px;
	border: 1px solid #b9b3a7;
	border-radius: 50%;
	background-color: #fff;
	transition: border-color 0.18s ease;
}

.sx-contact .sx-contact__radio::after {
	content: '';
	position: absolute;
	inset: 3px;
	border-radius: 50%;
	background-color: transparent;
	transition: background-color 0.18s ease;
}

.sx-contact .sx-contact__topic input:checked + .sx-contact__radio {
	border-color: var(--sx-purple);
}

.sx-contact .sx-contact__topic input:checked + .sx-contact__radio::after {
	background-color: var(--sx-purple);
}

.sx-contact .sx-contact__topic.is-selected {
	border-color: var(--sx-purple);
	background-color: rgba(255, 255, 255, 0.6);
}

.sx-contact .sx-contact__topic input:focus-visible + .sx-contact__radio {
	outline: 2px solid var(--sx-purple);
	outline-offset: 2px;
}

.sx-contact .sx-contact__topic-label {
	font-size: 12px;
	line-height: 1.35;
	color: #1a1a1a;
}

.sx-contact .sx-contact__input {
	display: block;
	width: 100%;
	padding: 15px 16px;
	border: 1px solid var(--sx-line);
	border-radius: 4px;
	background-color: var(--sx-bone-2);
	color: #1a1a1a;
	font-family: var(--sx-body);
	font-size: 15px;
	line-height: 1.4;
	transition: border-color 0.18s ease, box-shadow 0.18s ease;
	-webkit-appearance: none;
	appearance: none;
}

.sx-contact .sx-contact__input::placeholder {
	color: #a9a49a;
}

.sx-contact .sx-contact__input:focus {
	outline: 0;
	border-color: var(--sx-purple);
	box-shadow: 0 0 0 2px rgba(122, 2, 254, 0.15);
}

.sx-contact .sx-contact__textarea {
	min-height: 130px;
	resize: vertical;
}

.sx-contact .sx-contact__counter {
	display: block;
	margin-top: 6px;
	font-size: 11px;
	line-height: 1;
	text-align: right;
	color: #8a857c;
}

.sx-contact .sx-contact__submit {
	width: 100%;
	margin-top: 4px;
	padding: 21px 28px;
	border-radius: 999px;
	letter-spacing: 0.18em;
}

.sx-contact .sx-contact__note {
	margin: 14px 0 0;
	font-size: 13px;
	line-height: 1.5;
	text-align: center;
	color: #5a5a5a;
}

.sx-contact .sx-contact__direct {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-top: 30px;
	padding-top: 26px;
	border-top: 1px solid var(--sx-line);
}

.sx-contact .sx-contact__direct-icon svg {
	width: 30px;
	height: 30px;
	color: #000;
}

.sx-contact .sx-contact__direct-copy {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.sx-contact .sx-contact__direct-intro {
	font-size: 13px;
	line-height: 1.4;
	color: #3a3a3a;
}

.sx-contact .sx-contact__direct-link {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.1em;
	line-height: 1.3;
	text-transform: uppercase;
	color: #000;
}

.sx-contact .sx-contact__direct-link:hover {
	color: var(--sx-purple);
}

/* -------------------------------------------------------------------------
   Standalone script heading
   ---------------------------------------------------------------------- */

.sx-script {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.sx-script .sx-script__text {
	margin: 0;
	font-family: var(--sx-script);
	font-size: clamp(36px, 4vw, 72px);
	font-weight: 400;
	line-height: 1;
	text-transform: uppercase;
	color: #000;
}

/* =========================================================================
   Responsive ladder
     >1440  large desktop — wider gutters
      1440  desktop (design width)
     <1280  laptop — tighter gutters, slightly smaller display type
     <1024  tablet — split rows stack, nav collapses (default)
      <768  phone — single column throughout
   Layout that an Elementor control can also drive is expressed as a custom
   property, so these breakpoints stay authoritative.
   ========================================================================= */

/* ---------------- large desktop ---------------- */
@media (min-width: 1600px) {
	.sx {
		--sx-gutter: 72px;
	}
}

/* ---------------- laptop ---------------- */
@media (max-width: 1280px) {
	.sx {
		--sx-gutter: 40px;
	}

	.sx-header {
		--sx-nav-gap: 30px;
	}

	.sx-drop .sx-drop__panel {
		padding: 48px 40px;
	}

	.sx-contact .sx-contact__panel {
		padding: 60px 48px;
	}

	.sx-outro .sx-outro__centre {
		padding: 6px 44px;
	}
}

/* ---------------- tablet ---------------- */
@media (max-width: 1024px) {
	.sx {
		--sx-gutter: 32px;
	}

	/* -- header collapses to the slide-in panel -- */
	.sx-header .sx-header__burger {
		display: inline-flex;
	}

	.sx-header .sx-header__bar {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.sx-header .sx-header__nav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		z-index: 200;
		display: flex;
		flex-direction: column;
		width: min(90vw, var(--sx-panel-w));
		padding: 20px 28px 36px;
		background-color: var(--sx-bone);
		box-shadow: -18px 0 46px rgba(0, 0, 0, 0.16);
		overflow-y: auto;
		overscroll-behavior: contain;
		transform: translateX(101%);
		visibility: hidden;
		transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.34s;
	}

	.sx-header .sx-header__toggle:checked ~ .sx-header__nav {
		transform: translateX(0);
		visibility: visible;
	}

	.sx-header .sx-header__toggle:checked ~ .sx-header__backdrop {
		opacity: 1;
		visibility: visible;
	}

	.sx-header .sx-header__panel-top {
		display: flex;
		justify-content: flex-end;
		margin-bottom: 14px;
	}

	.sx-header .sx-header__close {
		display: flex;
		margin-right: -8px;
	}

	.sx-header .sx-header__menu {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
	}

	.sx-header .sx-header__item {
		border-bottom: 1px solid var(--sx-line);
	}

	.sx-header .sx-header__link {
		padding: 17px 0;
		font-size: 13px;
		letter-spacing: 0.16em;
		white-space: normal;
	}

	.sx-header .sx-header__link.is-current::after {
		right: auto;
		bottom: 11px;
		width: 34px;
	}

	/* Sub-menus sit inline and indented rather than floating. */
	.sx-header .sx-header__sub {
		position: static;
		min-width: 0;
		padding: 0 0 10px 16px;
		background: none;
		box-shadow: none;
		opacity: 1;
		visibility: visible;
		transform: none;
		transition: none;
	}

	.sx-header .sx-header__sub .sx-header__item {
		border-bottom: 0;
	}

	.sx-header .sx-header__sub .sx-header__link {
		padding: 10px 0;
		font-size: 12px;
		font-weight: 600;
		color: var(--sx-muted);
	}

	.sx-header .sx-header__sub .sx-header__link:hover {
		background: none;
		color: var(--sx-purple);
	}

	.sx-header .sx-header__item.has-children > .sx-header__link::before {
		display: none;
	}

	.sx-header .sx-header__panel-strapline {
		display: block;
		margin-top: auto;
		padding-top: 28px;
		font-size: 10px;
		font-weight: 600;
		letter-spacing: 0.2em;
		line-height: 1.7;
		text-transform: uppercase;
		color: var(--sx-muted);
	}

	.sx-header .sx-header__strapline {
		display: none;
	}

	/* -- sections -- */
	.sx-drop .sx-drop__row,
	.sx-contact .sx-contact__row {
		grid-template-columns: 1fr;
	}

	.sx-benefits .sx-benefits__grid {
		--sx-cols: 2;
		gap: 34px 0;
	}

	.sx-benefits .sx-benefits__item:nth-child(odd) {
		border-left: 0;
	}

	.sx-gallery .sx-gallery__grid {
		--sx-cols: 2;
	}

	.sx-hero .sx-hero__script {
		right: 28px;
	}

	.sx-drop .sx-drop__media {
		min-height: 380px;
	}

	.sx-contact .sx-contact__media {
		min-height: 460px;
	}

	.sx-outro .sx-outro__row {
		grid-template-columns: 1fr;
		justify-items: center;
		gap: 34px;
		text-align: center;
	}

	.sx-outro .sx-outro__col--left,
	.sx-outro .sx-outro__col--right {
		align-items: center;
	}

	.sx-outro .sx-outro__centre {
		width: 100%;
		padding: 26px 0;
		border-left: 0;
		border-right: 0;
		border-top: 1px solid var(--sx-line);
		border-bottom: 1px solid var(--sx-line);
	}
}

/* Headers set to collapse on phones only get the desktop bar back on tablets. */
@media (min-width: 768px) and (max-width: 1024px) {
	.sx-header.sx-collapse-sm .sx-header__bar {
		grid-template-columns: auto minmax(0, 1fr) auto;
	}

	.sx-header.sx-collapse-sm .sx-header__burger,
	.sx-header.sx-collapse-sm .sx-header__panel-top,
	.sx-header.sx-collapse-sm .sx-header__panel-strapline {
		display: none;
	}

	.sx-header.sx-collapse-sm .sx-header__nav {
		position: static;
		width: auto;
		padding: 0;
		background: none;
		box-shadow: none;
		overflow: visible;
		transform: none;
		visibility: visible;
	}

	.sx-header.sx-collapse-sm .sx-header__menu {
		flex-direction: row;
		align-items: center;
		justify-content: center;
		gap: var(--sx-nav-gap);
	}

	.sx-header.sx-collapse-sm .sx-header__item {
		border-bottom: 0;
	}

	.sx-header.sx-collapse-sm .sx-header__link {
		padding: 0 0 8px;
		white-space: nowrap;
	}

	.sx-header.sx-collapse-sm .sx-header__sub {
		position: absolute;
		min-width: 210px;
		padding: 10px 0;
		background-color: #fff;
		box-shadow: 0 14px 34px rgba(0, 0, 0, 0.13);
		opacity: 0;
		visibility: hidden;
		transform: translateX(-50%) translateY(8px);
	}

	.sx-header.sx-collapse-sm .sx-header__item:hover > .sx-header__sub,
	.sx-header.sx-collapse-sm .sx-header__item:focus-within > .sx-header__sub {
		opacity: 1;
		visibility: visible;
		transform: translateX(-50%) translateY(0);
	}

	.sx-header.sx-collapse-sm .sx-header__item.has-children > .sx-header__link::before {
		display: block;
	}
}

/* ---------------- phone ---------------- */
@media (max-width: 767px) {
	.sx {
		--sx-gutter: 20px;
		overflow-x: hidden;
	}

	.sx-header .sx-header__utility {
		gap: 14px;
	}

	/* -- hero: copy first, photo below, no rotated overlay -- */
	.sx-hero .sx-hero__stage {
		align-items: flex-start;
		padding: 40px 0 0;
		background-position: center bottom;
	}

	.sx-hero .sx-hero__stage::before {
		background-image: linear-gradient(to bottom, rgba(241, 238, 231, 0.94) 0%, rgba(241, 238, 231, 0.86) 42%, rgba(241, 238, 231, 0) 78%);
		background-color: transparent;
	}

	.sx-hero .sx-hero__heading {
		margin-bottom: 16px;
		font-size: clamp(34px, 10.5vw, 50px);
	}

	.sx-hero .sx-hero__sub {
		margin-bottom: 26px;
	}

	.sx-hero .sx-hero__btn {
		width: 100%;
	}

	.sx-hero .sx-hero__script {
		display: none;
	}

	/* -- benefits -- */
	.sx-benefits .sx-benefits__grid {
		--sx-cols: 1;
		gap: 0;
	}

	.sx-benefits .sx-benefits__item {
		padding: 26px 0;
	}

	.sx-benefits .sx-benefits__item + .sx-benefits__item {
		border-left: 0;
		border-top: 1px solid var(--sx-line);
	}

	/* -- drop -- */
	.sx-drop .sx-drop__media {
		min-height: 290px;
	}

	.sx-drop .sx-drop__swatches {
		gap: 16px;
		width: 100%;
		justify-content: space-between;
	}

	.sx-drop .sx-drop__dot {
		width: clamp(42px, 13vw, 62px);
		height: clamp(42px, 13vw, 62px);
	}

	.sx-drop .sx-drop__swatch {
		flex: 1 1 0;
		min-width: 0;
	}

	.sx-drop .sx-drop__swatch-label {
		font-size: 9px;
		letter-spacing: 0.12em;
		text-align: center;
	}

	.sx-drop .sx-drop__btn {
		padding: 17px 20px;
	}

	/* -- gallery -- */
	.sx-gallery .sx-gallery__grid {
		--sx-cols: 1;
	}

	/* -- contact -- */
	.sx-contact .sx-contact__media {
		min-height: 360px;
	}

	.sx-contact .sx-contact__media-copy {
		left: var(--sx-gutter);
		right: var(--sx-gutter);
		bottom: 26px;
	}

	/* The phone crop pushes the overlay copy higher up the photo, so the
	   fade needs to reach further for the script to stay readable. */
	.sx-contact .sx-contact__scrim {
		height: 76%;
	}

	.sx-contact .sx-contact__topics {
		grid-template-columns: 1fr;
	}

	.sx-contact .sx-contact__title {
		font-size: clamp(46px, 15vw, 72px);
	}

	/* -- outro + footer -- */
	.sx-outro .sx-outro__script {
		font-size: clamp(30px, 10vw, 46px);
	}

	.sx-footer .sx-footer__bar {
		flex-direction: column;
		align-items: center;
		gap: 18px;
		text-align: center;
	}

	.sx-footer .sx-footer__menu {
		gap: 14px 20px;
	}
}

/* ---------------- small phone ---------------- */
@media (max-width: 380px) {
	.sx-drop .sx-drop__swatches {
		gap: 10px;
	}

	.sx-header .sx-header__utility {
		gap: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.sx * {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
	}

	.sx .sx-btn:hover {
		transform: none;
	}
}
