/* =========================================================
 * Squid X Media 2026 - front-end CSS
 * Ported from output/index.html. Palette + button base live
 * in theme.json; this file owns layout, components, and the
 * scroll-morph header + canvas hero scaffolding.
 * ========================================================= */

:root {
	/* All values resolve from theme.json - edit the palette and tokens
	 * in Global Styles / theme.json, not here. */
	--sxm-bg-deep:       var(--wp--preset--color--bg-deep);
	--sxm-bg-deeper:     var(--wp--preset--color--bg-deeper);
	--sxm-bg-purple:     var(--wp--preset--color--bg-purple);
	--sxm-bg-purple-2:   var(--wp--preset--color--bg-purple-2);
	--sxm-accent-teal:   var(--wp--preset--color--accent-teal);
	--sxm-accent-teal-2: var(--wp--preset--color--accent-teal-2);
	--sxm-accent-pink:   var(--wp--preset--color--accent-pink);
	--sxm-accent-magenta:var(--wp--preset--color--accent-magenta);
	--sxm-text-light:    var(--wp--preset--color--text-light);
	--sxm-text-mute:     var(--wp--preset--color--text-mute);
	--sxm-text-dim:      var(--wp--preset--color--text-dim);
	--sxm-section-light: var(--wp--preset--color--section-light);
	--sxm-border-dim:    var(--wp--custom--border--dim);

	--sxm-container-max:  var(--wp--custom--container--max);
	--sxm-section-gutter: var(--wp--custom--section--gutter);
	--sxm-section-py:     var(--wp--custom--section--py);
	--sxm-section-py-lg:  var(--wp--custom--section--py-lg);
	--sxm-text-body:      var(--wp--custom--text--body);
	--sxm-text-small:     var(--wp--custom--text--small);
	--sxm-text-xs:        var(--wp--custom--text--xs);
	--sxm-text-eyebrow:   var(--wp--custom--text--eyebrow);
	--sxm-text-section-title: var(--wp--custom--text--section-title);
	--sxm-text-button:    var(--wp--custom--text--button);
	--sxm-site-background:
		radial-gradient(ellipse 85% 26% at 12% 18%, rgba(74, 26, 107, 0.50), transparent 65%),
		radial-gradient(ellipse 80% 22% at 88% 30%, rgba(26, 42, 85, 0.55), transparent 65%),
		radial-gradient(ellipse 90% 24% at 18% 50%, rgba(0, 242, 182, 0.07), transparent 65%),
		radial-gradient(ellipse 85% 22% at 85% 66%, rgba(42, 18, 72, 0.55), transparent 65%),
		radial-gradient(ellipse 70% 18% at 30% 82%, rgba(20, 37, 74, 0.6), transparent 65%),
		radial-gradient(ellipse 80% 14% at 50% 93%, rgba(74, 26, 107, 0.55), transparent 70%),
		linear-gradient(180deg, #1a0b2e 0%, #20103c 28%, #16224a 52%, #1a0b2e 76%, #221044 88%, #140822 100%);
	--sxm-contact-background:
		radial-gradient(ellipse 110% 58% at 14% 4%, rgba(74, 26, 107, 0.68), rgba(74, 26, 107, 0.28) 42%, transparent 72%),
		radial-gradient(ellipse 105% 72% at 96% 30%, rgba(22, 34, 74, 0.86), rgba(22, 34, 74, 0.38) 48%, transparent 76%),
		radial-gradient(ellipse 95% 58% at 28% 76%, rgba(20, 37, 74, 0.78), rgba(20, 37, 74, 0.36) 46%, transparent 74%),
		radial-gradient(ellipse 72% 42% at 54% 52%, rgba(0, 242, 182, 0.055), transparent 72%),
		linear-gradient(180deg, #1a0b2e 0%, #1d113e 44%, #151f49 100%);
}

html, body {
	background: var(--sxm-bg-deep);
	color: var(--sxm-text-light);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

html { font-size: clamp(16px, 0.25vw + 13px, 19px); }
body { line-height: 1.5; font-size: var(--sxm-text-body); }

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

/* Shared shell for non-homepage templates. Full-bleed backgrounds can still
 * span the viewport, but readable content follows the tightened site width. */
.sxm-page-shell {
	box-sizing: border-box;
	padding: clamp(132px, 9vw, 180px) var(--sxm-section-gutter) clamp(72px, 7vw, 120px) !important;
}
.sxm-page-shell:has(> .wp-block-post-content > .sx-hero:first-child) {
	padding-top: 0 !important;
}
.sxm-page-shell > * {
	max-width: var(--wp--style--global--content-size);
	margin-left: auto;
	margin-right: auto;
}
.sxm-page-shell > .alignwide,
.sxm-page-shell .alignwide {
	max-width: var(--sxm-container-max);
}
.sxm-page-shell > .wp-block-post-content,
.sxm-page-shell .wp-block-post-content > .wp-block-group,
.sxm-page-shell .wp-block-post-content > section {
	width: 100%;
	max-width: var(--sxm-container-max);
}
.sxm-page-shell .wp-block-post-content > p,
.sxm-page-shell .wp-block-post-content > h1,
.sxm-page-shell .wp-block-post-content > h2,
.sxm-page-shell .wp-block-post-content > h3,
.sxm-page-shell .wp-block-post-content > h4,
.sxm-page-shell .wp-block-post-content > h5,
.sxm-page-shell .wp-block-post-content > h6,
.sxm-page-shell .wp-block-post-content > ul,
.sxm-page-shell .wp-block-post-content > ol {
	max-width: var(--wp--style--global--content-size);
	margin-left: auto;
	margin-right: auto;
}
.sxm-query-shell .wp-block-query {
	max-width: var(--sxm-container-max);
	margin-left: auto;
	margin-right: auto;
}
.sxm-result-card {
	border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.sxm-404-shell {
	min-height: min(760px, 100svh);
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* ===================== HEADER (scroll-revealed pill) ===================== */
header.site-header,
.site-header.is-style-sxm-pill-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	padding: 18px 0 0;
	background: transparent;
	transition:
		padding 320ms cubic-bezier(.2,.7,.2,1),
		transform 320ms cubic-bezier(.2,.7,.2,1);
}

.site-header .header-shell,
header.wp-block-template-part .header-shell {
	width: min(clamp(82rem, 92vw, 108rem), calc(100vw - 2rem));
	margin: 0 auto;
	position: relative;
	transition: width 320ms cubic-bezier(.2,.7,.2,1);
}

.site-header .header-bar,
header.wp-block-template-part .header-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 14px 18px 14px 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	position: relative;
	z-index: 1;
	background: rgba(45, 20, 54, 0);
	backdrop-filter: blur(0);
	-webkit-backdrop-filter: blur(0);
	box-shadow: none;
	transition:
		padding 320ms cubic-bezier(.2,.7,.2,1),
		background 320ms ease,
		border-color 320ms ease,
		backdrop-filter 320ms ease,
		box-shadow 320ms ease;
}

/* Frosted gradient ring around the pill. z-index 2 keeps it above the bar's
 * drop shadow (shadow painting over the ring caused the dark seam under the
 * pill); border-box mask keeps the inner edge pill-shaped. */
.site-header .header-shell::before,
header.wp-block-template-part .header-shell::before {
	content: "";
	position: absolute;
	inset: -4px;
	border: 4px solid transparent;
	border-radius: 999px;
	z-index: 2;
	pointer-events: none;
	opacity: 0;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.22),
		rgba(216, 176, 255, 0.14) 42%,
		rgba(0, 255, 213, 0.08) 62%,
		rgba(255, 255, 255, 0.12)
	) border-box;
	backdrop-filter: blur(10px) saturate(145%);
	-webkit-backdrop-filter: blur(10px) saturate(145%);
	-webkit-mask:
		linear-gradient(#000 0 0) padding-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	transition: opacity 320ms ease;
}

.site-header.is-scrolled,
header.wp-block-template-part.is-scrolled {
	padding-top: 12px;
}

.site-header.is-scrolled .header-shell,
header.wp-block-template-part.is-scrolled .header-shell {
	width: min(64rem, calc(100vw - 2rem));
}

.site-header.is-scrolled .header-shell::before,
header.wp-block-template-part.is-scrolled .header-shell::before {
	opacity: 1;
}

.site-header.is-scrolled .header-bar,
header.wp-block-template-part.is-scrolled .header-bar {
	padding: 8px 8px 8px 18px;
	border-color: rgba(216, 176, 255, 0.18);
	background: rgba(45, 20, 54, 0.72);
	backdrop-filter: blur(22px);
	-webkit-backdrop-filter: blur(22px);
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

/* Logo - full wordmark by default, compact mark in scrolled mobile pill */
.site-header .logo,
header.wp-block-template-part .logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	flex: 0 0 auto;
}
.site-header .logo img,
header.wp-block-template-part .logo img,
.site-header .wp-block-site-logo img {
	object-fit: contain;
	display: block;
	transition: height 320ms cubic-bezier(.2,.7,.2,1), width 320ms cubic-bezier(.2,.7,.2,1);
}
.site-header .logo .logo-full,
header.wp-block-template-part .logo .logo-full {
	height: clamp(42px, 1.2vw + 28px, 52px);
	width: auto;
}
.site-header .logo .logo-mark,
header.wp-block-template-part .logo .logo-mark {
	display: none;
	height: 44px;
	width: 44px;
}
.site-header.is-scrolled .logo img,
.site-header.is-scrolled .wp-block-site-logo img,
header.wp-block-template-part.is-scrolled .logo img,
header.wp-block-template-part.is-scrolled .wp-block-site-logo img {
	height: clamp(26px, 0.5vw + 20px, 32px);
}
.site-header.is-scrolled .logo .logo-full,
header.wp-block-template-part.is-scrolled .logo .logo-full {
	width: auto;
}
.site-header.is-scrolled .logo .logo-mark,
header.wp-block-template-part.is-scrolled .logo .logo-mark {
	width: 44px;
}

/* Primary nav - larger text, no underline, never wraps */
.site-header .main-nav,
header.wp-block-template-part .main-nav,
.site-header .wp-block-navigation.main-nav {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 4px;
	font-family: 'Inter', sans-serif;
	font-size: clamp(15px, 0.4vw + 10px, 18px);
	font-weight: 500;
	color: var(--sxm-text-light);
	flex: 1 1 auto;
	justify-content: center;
	min-width: 0;
}
.site-header .main-nav a,
header.wp-block-template-part .main-nav a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 10px 14px;
	border-radius: 999px;
	color: var(--sxm-text-light);
	text-decoration: none !important;
	background: transparent;
	white-space: nowrap;
	flex: 0 0 auto;
	transition: background 180ms ease, color 180ms ease, padding 320ms cubic-bezier(.2,.7,.2,1), font-size 320ms cubic-bezier(.2,.7,.2,1);
}
/* Scrolled pill: tighten nav so 7 links + logo + CTA fit on one line at 1024px shell */
.site-header.is-scrolled .main-nav,
header.wp-block-template-part.is-scrolled .main-nav {
	font-size: 13px;
	gap: 10px;
}
.site-header.is-scrolled .main-nav a,
header.wp-block-template-part.is-scrolled .main-nav a {
	padding: 8px 7px;
}
.site-header .main-nav a:hover,
.site-header .main-nav a[aria-current="page"],
header.wp-block-template-part .main-nav a:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	text-decoration: none !important;
}
.site-header .main-nav .has-caret::after,
header.wp-block-template-part .main-nav .has-caret::after {
	content: "▾";
	font-size: 10px;
	margin-left: 4px;
	opacity: 0.75;
}

/* Bare-anchor CTA pill (no wp-block-button wrapper) - matches logo height */
.site-header .header-cta,
header.wp-block-template-part .header-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: clamp(44px, 1.8vw + 26px, 60px);
	padding: 0 clamp(22px, 1vw + 14px, 32px);
	border-radius: 999px;
	border: 1px solid var(--sxm-accent-teal);
	background: var(--sxm-accent-teal);
	color: var(--sxm-bg-deep) !important;
	font-family: 'Inter', sans-serif;
	font-size: clamp(13px, 0.3vw + 10px, 16px);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none !important;
	white-space: nowrap;
	flex: 0 0 auto;
	transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, height 320ms cubic-bezier(.2,.7,.2,1), padding 320ms cubic-bezier(.2,.7,.2,1);
}
.site-header .header-cta:hover,
header.wp-block-template-part .header-cta:hover {
	transform: translateY(-1px);
	background: #55e6cb;
	border-color: #55e6cb;
	color: var(--sxm-bg-deep) !important;
	box-shadow: 0 0 24px rgba(0, 242, 182, 0.28), 0 0 44px rgba(0, 242, 182, 0.14);
}
.site-header.is-scrolled .header-cta,
header.wp-block-template-part.is-scrolled .header-cta {
	height: clamp(38px, 1.4vw + 24px, 50px);
	padding: 0 clamp(18px, 0.8vw + 12px, 26px);
}

/* Header CTA as a real button block */
.site-header .header-cta-wrap { flex: 0 0 auto; }
.site-header .mobile-header-cta,
header.wp-block-template-part .mobile-header-cta {
	display: none;
}
.site-header .header-cta-wrap .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: clamp(42px, 1.1vw + 26px, 52px);
	padding: 0 clamp(20px, 0.8vw + 14px, 28px);
	border-radius: 999px;
	font-family: 'Inter', sans-serif;
	font-size: clamp(12px, 0.25vw + 10px, 14px);
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
	background: var(--sxm-accent-teal);
	color: var(--sxm-bg-deep);
	transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, height 320ms cubic-bezier(.2,.7,.2,1), padding 320ms cubic-bezier(.2,.7,.2,1);
}
.site-header .header-cta-wrap .wp-block-button__link:hover {
	transform: translateY(-1px);
	background: #55e6cb;
	box-shadow: 0 0 24px rgba(64, 224, 194, 0.28), 0 0 44px rgba(64, 224, 194, 0.14);
}
.site-header.is-scrolled .header-cta-wrap .wp-block-button__link,
header.wp-block-template-part.is-scrolled .header-cta-wrap .wp-block-button__link {
	height: clamp(30px, 0.5vw + 24px, 36px);
	padding: 0 clamp(14px, 0.5vw + 10px, 18px);
	font-size: 11px;
}

/* --- Navigation block inside the pill header --- */
.site-header .wp-block-navigation.main-nav .wp-block-navigation__container,
.site-header .wp-block-navigation__container.main-nav {
	gap: clamp(12px, 0.9vw, 18px);
	align-items: center;
	flex-wrap: nowrap;
}
.site-header .wp-block-navigation__container.main-nav > .has-child {
	align-items: center;
	border-radius: 999px;
	margin-right: 4px;
	padding-right: 10px;
	transition: background 180ms ease, color 180ms ease;
}
.main-nav .wp-block-navigation-item__content {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 10px 8px;
	border-radius: 999px;
	color: var(--sxm-text-light);
	text-decoration: none;
	white-space: nowrap;
	transition: background 180ms ease, color 180ms ease;
}
.site-header .wp-block-navigation__container.main-nav > .has-child > .wp-block-navigation-item__content {
	padding-right: 4px;
}

@media (max-width: 1380px) and (min-width: 1281px) {
	.site-header .header-bar,
	header.wp-block-template-part .header-bar {
		gap: 14px;
	}
	.site-header .wp-block-navigation.main-nav .wp-block-navigation__container,
	.site-header .wp-block-navigation__container.main-nav {
		gap: 8px;
	}
	.site-header .wp-block-navigation__container.main-nav > .has-child {
		margin-right: 2px;
		padding-right: 8px;
	}
	.site-header .main-nav .wp-block-navigation-item__content,
	header.wp-block-template-part .main-nav .wp-block-navigation-item__content {
		padding: 9px 6px;
		font-size: 14px;
	}
	.site-header .wp-block-navigation__container.main-nav > .has-child > .wp-block-navigation-item__content {
		padding-right: 3px;
	}
	.site-header .header-cta-wrap .wp-block-button__link {
		padding: 0 20px;
		font-size: 12px;
	}
}

.main-nav .wp-block-navigation-item__content:hover,
.main-nav .wp-block-navigation-item__content[aria-current="page"] {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}
.site-header .wp-block-navigation__container.main-nav > .has-child:hover,
.site-header .wp-block-navigation__container.main-nav > .has-child:focus-within {
	background: rgba(255, 255, 255, 0.08);
}
.site-header .wp-block-navigation__container.main-nav > .has-child:hover > .wp-block-navigation-item__content,
.site-header .wp-block-navigation__container.main-nav > .has-child:focus-within > .wp-block-navigation-item__content {
	background: transparent;
	color: #fff;
}
.site-header.is-scrolled .wp-block-navigation.main-nav .wp-block-navigation__container,
.site-header.is-scrolled .wp-block-navigation__container.main-nav {
	gap: clamp(8px, 0.75vw, 12px);
}
.site-header.is-scrolled .wp-block-navigation__container.main-nav > .has-child {
	margin-right: 2px;
	padding-right: 8px;
}
.is-scrolled .main-nav .wp-block-navigation-item__content { padding: 8px 7px; }
.site-header.is-scrolled .wp-block-navigation__container.main-nav > .has-child > .wp-block-navigation-item__content {
	padding-right: 3px;
}
.main-nav .wp-block-navigation__submenu-icon {
	color: var(--sxm-text-mute);
	width: 8px;
	margin-left: 0;
}
.site-header .main-nav .wp-block-navigation-submenu__toggle {
	appearance: none;
	background: transparent !important;
	background-color: transparent !important;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	color: inherit;
	outline: 0;
	padding: 0;
}
.site-header .main-nav .wp-block-navigation-submenu__toggle:hover,
.site-header .main-nav .wp-block-navigation-submenu__toggle:focus,
.site-header .main-nav .wp-block-navigation-submenu__toggle:focus-visible {
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none;
	outline: 0;
}
.site-header .main-nav .wp-block-navigation-submenu__toggle svg {
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none;
}

/* Dropdown panels - .site-header prefix outranks core block styles */
.site-header .main-nav .wp-block-navigation__submenu-container {
	background: rgba(24, 10, 40, 0.96);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(216, 176, 255, 0.18);
	border-radius: 16px;
	padding: 8px;
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
	min-width: 240px;
	top: calc(100% + 13px) !important;
	margin-top: 0;
}
/* Invisible bridge so the cursor can cross the gap without closing the menu */
.site-header .main-nav .has-child > .wp-block-navigation__submenu-container::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -13px;
	height: 13px;
}
/* Gentle open animation (core toggles visibility/opacity on hover) */
@media (prefers-reduced-motion: no-preference) {
	.site-header .main-nav .has-child > .wp-block-navigation__submenu-container {
		transform: translateY(6px);
		transition: transform 140ms ease, opacity 140ms ease, visibility 140ms;
	}
	.site-header .main-nav .has-child:hover > .wp-block-navigation__submenu-container,
	.site-header .main-nav .has-child:focus-within > .wp-block-navigation__submenu-container {
		transform: translateY(0);
	}
}
.site-header .main-nav .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	border-radius: 10px;
	padding: 9px 12px;
	font-size: 14px;
	color: var(--sxm-text-mute);
}
.site-header .main-nav .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover,
.site-header .main-nav .wp-block-navigation__submenu-container .wp-block-navigation-item__content:focus-visible {
	color: #fff;
	background: rgba(0, 242, 182, 0.08);
}
/* Caret rotates while its dropdown is open */
.site-header .main-nav .has-child > .wp-block-navigation-item__content + button .wp-block-navigation__submenu-icon,
.site-header .main-nav .wp-block-navigation__submenu-icon {
	transition: transform 140ms ease;
}
.site-header .main-nav .has-child:hover > .wp-block-navigation-item__content .wp-block-navigation__submenu-icon,
.site-header .main-nav .has-child:focus-within > .wp-block-navigation-item__content .wp-block-navigation__submenu-icon {
	transform: rotate(180deg);
}

/* Keyboard focus - visible ring on anything interactive in the header */
.site-header a:focus-visible,
.site-header button:focus-visible {
	outline: 2px solid var(--sxm-accent-teal);
	outline-offset: 2px;
	border-radius: 999px;
}

/* Mobile overlay (core nav block) - collapse before the full nav crowds the logo/CTA */
@media (max-width: 1280px) {
	.site-header .header-shell,
	header.wp-block-template-part .header-shell {
		width: min(72rem, calc(100vw - 4rem));
	}
	.site-header .header-bar,
	header.wp-block-template-part .header-bar {
		gap: 12px;
		padding: 10px 12px 10px 16px;
	}
	.site-header .logo img,
	header.wp-block-template-part .logo img,
	.site-header .wp-block-site-logo img {
		height: 44px;
	}
	.site-header .logo .logo-full,
	header.wp-block-template-part .logo .logo-full {
		display: block;
		width: auto;
	}
	.site-header .logo .logo-mark,
	header.wp-block-template-part .logo .logo-mark {
		display: none;
		width: 44px;
	}
	.site-header.is-scrolled .logo .logo-full,
	header.wp-block-template-part.is-scrolled .logo .logo-full {
		display: none;
	}
	.site-header.is-scrolled .logo .logo-mark,
	header.wp-block-template-part.is-scrolled .logo .logo-mark {
		display: block;
		height: 36px;
		width: 36px;
	}
	.site-header.is-scrolled .wp-block-navigation__responsive-container-open {
		width: 36px;
		height: 36px;
		min-height: 36px;
	}
	.site-header.is-scrolled .mobile-header-cta,
	header.wp-block-template-part.is-scrolled .mobile-header-cta {
		position: absolute;
		left: 50%;
		top: 50%;
		z-index: 2;
		display: inline-flex;
		align-items: center;
		justify-content: center;
		height: 36px;
		min-width: 128px;
		padding: 0 18px;
		border-radius: 999px;
		background: var(--sxm-accent-teal);
		color: var(--sxm-bg-deep);
		font-family: 'Inter', sans-serif;
		font-size: 12px;
		font-weight: 700;
		letter-spacing: 0.08em;
		line-height: 1;
		text-align: center;
		text-decoration: none;
		text-transform: uppercase;
		white-space: nowrap;
		transform: translate(-50%, -50%);
		box-shadow: 0 0 18px rgba(0, 242, 182, 0.16);
	}
	.site-header .main-nav,
	header.wp-block-template-part .main-nav,
	.site-header .wp-block-navigation.main-nav {
		flex: 0 0 auto;
		justify-content: flex-end;
		margin-left: auto;
		min-width: auto;
	}
	.site-header .wp-block-navigation__responsive-container:not(.is-menu-open) { display: none; }
	.site-header .wp-block-navigation__responsive-container-open { display: flex !important; }
	.site-header .header-cta-wrap { display: none; }
}

@media (max-width: 700px) {
	.site-header .header-shell,
	header.wp-block-template-part .header-shell {
		width: min(34rem, calc(100vw - 1rem));
	}
}

.site-header .wp-block-navigation__responsive-container-open {
	color: #fff;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	min-height: 44px;
	padding: 0;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.04);
}
/* CTA item inside the mobile overlay menu (hidden in desktop nav) */
.site-header .main-nav .nav-cta-item { display: none; }
.site-header .wp-block-navigation__responsive-container.is-menu-open .nav-cta-item {
	display: block;
	margin-top: 12px;
}
.site-header .wp-block-navigation__responsive-container.is-menu-open .nav-cta-item .wp-block-navigation-item__content {
	justify-content: center;
	background: var(--sxm-accent-teal);
	color: var(--sxm-bg-deep);
	border-radius: 999px;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	min-height: 48px;
}

.site-header .wp-block-navigation__responsive-container.is-menu-open {
	position: fixed;
	top: 96px;
	left: max(12px, env(safe-area-inset-left));
	right: max(12px, env(safe-area-inset-right));
	bottom: auto;
	width: auto;
	max-height: calc(100dvh - 124px);
	background: rgba(16, 6, 28, 0.97);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	border: 1px solid rgba(216, 176, 255, 0.18);
	border-radius: 22px;
	padding: 22px;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
	overflow-y: auto;
}
.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-dialog,
.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
	width: 100%;
	margin: 0;
	padding: 0;
}
.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
	width: 100%;
	align-items: stretch;
	gap: 6px;
}
.site-header .wp-block-navigation__responsive-container.is-menu-open li.has-child.wp-block-navigation-submenu {
	width: 100%;
	position: relative;
}
.site-header .wp-block-navigation__responsive-container.is-menu-open li.has-child.wp-block-navigation-submenu > .wp-block-navigation-item__content {
	width: 100%;
	min-height: 48px;
	padding-right: 34px;
}
.site-header .wp-block-navigation__responsive-container.is-menu-open li.has-child.wp-block-navigation-submenu > .wp-block-navigation-submenu__toggle {
	position: absolute;
	top: 2px;
	right: -10px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--sxm-accent-teal);
}
.site-header .wp-block-navigation__responsive-container.is-menu-open li.has-child.wp-block-navigation-submenu > .wp-block-navigation-submenu__toggle svg {
	display: none;
}
.site-header .wp-block-navigation__responsive-container.is-menu-open li.has-child.wp-block-navigation-submenu > .wp-block-navigation-submenu__toggle::before,
.site-header .wp-block-navigation__responsive-container.is-menu-open li.has-child.wp-block-navigation-submenu > .wp-block-navigation-submenu__toggle::after {
	content: "";
	position: absolute;
	width: 18px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	transition: transform 160ms ease, opacity 160ms ease;
}
.site-header .wp-block-navigation__responsive-container.is-menu-open li.has-child.wp-block-navigation-submenu > .wp-block-navigation-submenu__toggle::after {
	transform: rotate(90deg);
}
.site-header .wp-block-navigation__responsive-container.is-menu-open li.has-child.wp-block-navigation-submenu.is-submenu-open > .wp-block-navigation-submenu__toggle::after {
	opacity: 0;
	transform: rotate(0deg);
}
.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
	color: var(--sxm-text-light);
	width: 100%;
	box-sizing: border-box;
	justify-content: flex-end;
	text-align: right;
	padding: 12px 34px 12px 14px;
	font-size: 16px;
}
.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container {
	background: transparent;
	border: none;
	box-shadow: none;
	display: none !important;
	flex-direction: column;
	align-items: stretch;
	gap: 2px;
	position: static;
	width: 100% !important;
	height: auto;
	opacity: 1;
	visibility: visible;
	padding: 2px 0 12px !important;
	margin: 0;
	min-width: 0;
	box-sizing: border-box;
}
.site-header .wp-block-navigation__responsive-container.is-menu-open .is-submenu-open > .wp-block-navigation__submenu-container {
	display: flex !important;
}
.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container .wp-block-navigation-item {
	width: 100% !important;
}
.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	width: 100% !important;
	justify-content: flex-end;
	text-align: right;
	padding: 8px 34px 8px 14px;
	color: var(--sxm-text-mute);
	font-size: 15px;
}
.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover,
.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container .wp-block-navigation-item__content:focus-visible {
	color: var(--sxm-text-light);
	background: rgba(0, 242, 182, 0.06);
}
.site-header .wp-block-navigation__responsive-container-close {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	position: sticky;
	top: 0;
	width: 44px;
	height: 44px;
	margin: 0 0 8px auto;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.05);
}
.site-header .wp-block-navigation__responsive-container-close svg {
	width: 22px;
	height: 22px;
	display: block;
}
@media (prefers-reduced-motion: no-preference) {
	.site-header .wp-block-navigation__responsive-container.is-menu-open {
		animation: sxm-menu-panel 220ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
	}
	.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container > .wp-block-navigation-item {
		animation: sxm-menu-item 260ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
	}
	.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container > .wp-block-navigation-item:nth-child(1) { animation-delay: 20ms; }
	.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container > .wp-block-navigation-item:nth-child(2) { animation-delay: 40ms; }
	.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container > .wp-block-navigation-item:nth-child(3) { animation-delay: 60ms; }
	.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container > .wp-block-navigation-item:nth-child(4) { animation-delay: 80ms; }
	.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container > .wp-block-navigation-item:nth-child(5) { animation-delay: 100ms; }
	.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container > .wp-block-navigation-item:nth-child(6) { animation-delay: 120ms; }
	.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container > .wp-block-navigation-item:nth-child(7) { animation-delay: 140ms; }
	.site-header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container > .wp-block-navigation-item:nth-child(8) { animation-delay: 160ms; }
	.site-header .wp-block-navigation__responsive-container.is-menu-open .is-submenu-open > .wp-block-navigation__submenu-container .wp-block-navigation-item {
		animation: sxm-submenu-item 180ms ease both;
	}
	.site-header .wp-block-navigation__responsive-container.is-menu-open .is-submenu-open > .wp-block-navigation__submenu-container .wp-block-navigation-item:nth-child(1) { animation-delay: 20ms; }
	.site-header .wp-block-navigation__responsive-container.is-menu-open .is-submenu-open > .wp-block-navigation__submenu-container .wp-block-navigation-item:nth-child(2) { animation-delay: 35ms; }
	.site-header .wp-block-navigation__responsive-container.is-menu-open .is-submenu-open > .wp-block-navigation__submenu-container .wp-block-navigation-item:nth-child(3) { animation-delay: 50ms; }
	.site-header .wp-block-navigation__responsive-container.is-menu-open .is-submenu-open > .wp-block-navigation__submenu-container .wp-block-navigation-item:nth-child(4) { animation-delay: 65ms; }
	.site-header .wp-block-navigation__responsive-container.is-menu-open .is-submenu-open > .wp-block-navigation__submenu-container .wp-block-navigation-item:nth-child(5) { animation-delay: 80ms; }
	.site-header .wp-block-navigation__responsive-container.is-menu-open .is-submenu-open > .wp-block-navigation__submenu-container .wp-block-navigation-item:nth-child(6) { animation-delay: 95ms; }
}
@keyframes sxm-menu-panel {
	from { opacity: 0; transform: translateY(10px) scale(0.985); }
	to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes sxm-menu-item {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes sxm-submenu-item {
	from { opacity: 0; transform: translateX(8px); }
	to { opacity: 1; transform: translateX(0); }
}

/* ===================== HERO + CANVAS ===================== */
.hero,
.wp-block-group.hero {
	position: relative;
	z-index: 1;
	padding: clamp(180px, 12vw + 60px, 280px) 0 clamp(64px, 5vw, 110px);
	overflow: visible;
	text-align: center;
	background: transparent;
	width: 100%;
	max-width: none;
}
.hero::before,
.wp-block-group.hero::before,
.sx-hero:not(.sx-hero--photo)::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	height: 100svh;
	background:
		radial-gradient(ellipse at top, #3a1a5e 0%, #1a0b2e 60%),
		linear-gradient(180deg, #2a1248 0%, #1a0b2e 60%, #14254a 100%);
	opacity: 1;
	visibility: visible;
	pointer-events: none;
	z-index: 0;
	transition: opacity 320ms ease, visibility 0s;
}
.hero-canvas {
	position: absolute !important;
	left: 0;
	top: 0;
	width: 100% !important;
	max-width: none !important;
	height: 100vh;
	height: 100svh;
	display: block;
	opacity: 1;
	visibility: visible;
	pointer-events: none;
	z-index: 1;
	transition: opacity 320ms ease, visibility 0s;
}
.sx-hero:not(.sx-hero--photo)::before,
.sx-hero:not(.sx-hero--photo) > .hero-canvas {
	left: 50%;
	width: 100vw !important;
	max-width: none !important;
	transform: translateX(-50%);
}
.sx-pulse-wrap.sx-hero:not(.sx-hero--photo)::before {
	display: none;
}
body.has-scrolled .hero::before,
body.has-scrolled .wp-block-group.hero::before,
body.has-scrolled .sx-hero:not(.sx-hero--photo)::before,
body.has-scrolled .hero-canvas {
	opacity: 0;
	visibility: hidden;
	transition: opacity 320ms ease, visibility 0s linear 320ms;
}
.hero > *:not(.hero-canvas),
.wp-block-group.hero > *:not(.hero-canvas),
.sx-hero > *:not(.hero-canvas):not(.sx-pulse):not(.sx-hero-photo) {
	position: relative;
	z-index: 2;
}
.hero-inner {
	box-sizing: border-box;
	width: min(100% - (var(--sxm-section-gutter) * 2), var(--wp--style--global--wide-size));
	max-width: none;
	margin: 0 auto;
	padding-left: 0;
	padding-right: 0;
}
.hero-title {
	font-family: 'Syncopate', sans-serif;
	font-size: clamp(42px, 5vw, 64px);
	font-weight: 700;
	line-height: 1.02;
	margin: 0 0 clamp(28px, 2vw, 40px);
	color: var(--sxm-text-light);
	white-space: nowrap;
}
.hero-title .accent { display: block; color: var(--sxm-accent-teal); }
.hero-title .line { display: block; white-space: nowrap; }
.sx-hero > :where(p, h1, h2, .wp-block-buttons, .wp-block-group):not(.hero-canvas):not(.sx-pulse):not(.sx-hero-photo) {
	max-width: min(100%, var(--wp--style--global--wide-size)) !important;
}
.sx-hero h1 {
	font-family: 'Syncopate', sans-serif;
	font-size: clamp(42px, 5vw, 64px) !important;
	font-weight: 700;
	line-height: 1.02;
	white-space: nowrap;
}
.sx-hero h1 .line { display: block; white-space: nowrap; }
.sx-hero h1 .accent { color: var(--sxm-accent-teal); }
@media (max-width: 900px) {
	.hero-title,
	.sx-hero h1 {
		font-size: clamp(25px, 5vw, 42px) !important;
	}
}
@media (max-width: 700px) {
	.hero-title,
	.sx-hero h1 {
		font-size: clamp(15px, 4.6vw, 19px) !important;
	}
}
.hero-lede {
	font-size: clamp(17px, 1.15vw, 21px);
	line-height: 1.55;
	max-width: min(100%, 780px);
	color: var(--sxm-text-mute);
	margin: 0 auto clamp(40px, 3vw, 56px);
}
.hero-ctas {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}
.hero .btn {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: clamp(12px, 0.5vw + 8px, 18px) clamp(22px, 1.2vw + 14px, 36px);
	font-family: 'Inter', sans-serif;
	font-size: var(--sxm-text-button);
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	white-space: nowrap;
	transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.hero .btn-primary {
	background: var(--sxm-accent-teal);
	color: var(--sxm-bg-deep);
}
.hero .btn-primary:hover {
	background: var(--sxm-accent-teal-2);
	box-shadow: 0 0 24px rgba(0, 242, 182, 0.28), 0 0 44px rgba(0, 242, 182, 0.14);
	transform: translateY(-1px);
}
.hero .btn-ghost {
	background: transparent;
	color: var(--sxm-text-light);
	padding: 12px 6px;
}
.hero .btn-ghost:hover { color: var(--sxm-accent-teal); }

/* ===================== MARQUEES ===================== */
.marquee {
	overflow: hidden;
	position: relative;
}
.marquee-track {
	display: flex;
	gap: 40px;
	width: max-content;
	align-items: center;
	animation: sxm-scroll 50s linear infinite;
}
.marquee-statements .marquee-track {
	animation-duration: 35s;
	gap: 64px;
}
@keyframes sxm-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
.marquee-item {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	font-size: clamp(12px, 0.35vw + 8px, 16px);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--sxm-text-light);
	padding: clamp(8px, 0.4vw + 5px, 12px) clamp(20px, 1vw + 12px, 30px);
	border: 1px solid rgba(255,255,255,0.18);
	border-radius: 999px;
	white-space: nowrap;
}
.marquee-statements .marquee-item {
	border: none;
	padding: 0;
	font-size: clamp(13px, 0.4vw + 9px, 17px);
}
.marquee-statements .marquee-item::after {
	content: "✦";
	margin-left: 64px;
	color: rgba(255,255,255,0.5);
}

/* ===================== SERVICES - TEN TENTACLES ===================== */
.services-ten {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #1a0b2e 0%, #2a1248 42%, #14254a 100%);
	color: var(--sxm-text-light);
	padding: var(--sxm-section-py) var(--sxm-section-gutter);
}
.services-ten > * { position: relative; z-index: 1; }

/* Intro */
.services-ten .tent-intro {
	max-width: var(--sxm-container-max);
	margin: 0 auto;
}
.services-ten .tent-intro p.tent-sub {
	max-width: 640px;
	color: var(--sxm-text-mute);
	line-height: 1.7;
	margin-top: 24px;
}

/* Ten numbered tentacle cards */
.tent-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 14px;
	max-width: var(--sxm-container-max);
	margin: 56px auto 0;
	perspective: 1200px;
}
.tent-card {
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
	box-sizing: border-box;
	padding: 18px 18px 20px;
	background: rgba(26, 11, 46, 0.55);
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-top-width: 2px;
	border-image: linear-gradient(90deg, var(--sxm-accent-teal), var(--sxm-accent-pink)) 1;
	color: var(--sxm-text-light);
	text-decoration: none;
	overflow: hidden;
	transition: transform 0.2s ease, background 0.2s ease;
}
.tent-card > * {
	position: relative;
	z-index: 2;
}
.tent-card:hover {
	transform: translateY(-3px);
	background: rgba(0, 242, 182, 0.07);
}
.sxm-flight-card {
	position: relative;
	overflow: hidden;
}
.sxm-flight-card > * {
	position: relative;
	z-index: 2;
}
.sxm-flight-card::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 4;
	pointer-events: none;
	background: var(--sxm-accent-teal);
	transform-origin: 50% 0%;
	transform: rotateX(0deg);
	opacity: 1;
}
.sxm-flight-active .sxm-flight-card::before {
	animation: sxm-flight-board-flip 720ms cubic-bezier(0.18, 0.84, 0.25, 1) both;
	animation-delay: var(--sxm-flight-delay, 0ms);
}
@keyframes sxm-flight-board-flip {
	0% {
		opacity: 1;
		transform: rotateX(0deg);
	}
	42% {
		opacity: 1;
		transform: rotateX(-88deg);
	}
	43%,
	100% {
		opacity: 0;
		transform: rotateX(-88deg);
	}
}
.tent-card .tent-num {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.2em;
	color: var(--sxm-accent-teal);
	margin-bottom: 10px;
}
.tent-card .tent-name {
	display: block;
	font-family: 'Inter', sans-serif;
	font-size: clamp(15px, 0.4vw + 12px, 17px);
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 7px;
}
.tent-card .tent-hook {
	display: block;
	font-size: var(--sxm-text-xs);
	color: var(--sxm-text-mute);
	line-height: 1.55;
}
@media (max-width: 1180px) {
	.tent-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
	.tent-grid { gap: 10px; margin-top: 40px; }
	.tent-card { padding: 14px; }
	.tent-card .tent-hook { display: none; }
	.tent-card .tent-num { margin-bottom: 6px; }
}

/* ===================== INK CARD ===================== */
.ink-card {
	background: linear-gradient(180deg, #3a1860 0%, #2a1248 100%);
	border: 1px solid rgba(217, 70, 239, 0.3);
	border-radius: 14px;
	padding: clamp(28px, 1.6vw + 16px, 44px);
	max-width: clamp(320px, 22vw + 200px, 460px);
	margin-left: auto;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.ink-card-header { display: flex; justify-content: center; margin-bottom: 18px; }
.ink-badge {
	background: linear-gradient(90deg, #c026d3, #9b1bd1);
	color: white;
	padding: clamp(8px, 0.4vw + 5px, 12px) clamp(18px, 1vw + 12px, 28px);
	border-radius: 999px;
	font-family: 'Inter', sans-serif;
	font-size: clamp(13px, 0.4vw + 9px, 17px);
	font-weight: 700;
}
.ink-powered {
	text-align: center;
	font-size: clamp(9px, 0.2vw + 7px, 11px);
	font-weight: 600;
	letter-spacing: 0.24em;
	color: var(--sxm-text-dim);
	text-transform: uppercase;
	margin-bottom: 16px;
}
.ink-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(8px, 0.5vw + 4px, 14px);
}
.ink-tile {
	height: 100%;
	box-sizing: border-box;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 8px;
	padding: clamp(14px, 0.8vw + 8px, 22px) clamp(8px, 0.4vw + 4px, 14px);
	text-align: center;
	transition: background 0.2s ease;
}
.ink-tile:hover { background: rgba(217, 70, 239, 0.1); }
.ink-tile .dot {
	width: clamp(8px, 0.3vw + 6px, 12px);
	height: clamp(8px, 0.3vw + 6px, 12px);
	border-radius: 50%;
	background: var(--sxm-accent-pink);
	margin: 0 auto 8px;
}
.ink-tile .name {
	font-family: 'Inter', sans-serif;
	font-size: clamp(9px, 0.25vw + 7px, 12px);
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--sxm-text-light);
	text-transform: uppercase;
}

/* ===================== DIVISIONS GRID ===================== */
.div-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	max-width: 1120px;
	margin: 0 auto;
}
.div-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	box-sizing: border-box;
	text-align: left;
	padding: 24px 24px 22px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-top-width: 2px;
	border-image: linear-gradient(90deg, var(--sxm-accent-teal), var(--sxm-accent-pink)) 1;
	color: var(--sxm-text-light);
	text-decoration: none;
	transition: transform 0.2s ease, background 0.2s ease;
}
.div-card:hover {
	transform: translateY(-3px);
	background: rgba(0, 242, 182, 0.06);
}
.div-card .div-name {
	font-family: 'Inter', sans-serif;
	font-size: clamp(17px, 0.5vw + 13px, 21px);
	font-weight: 700;
	margin-bottom: 10px;
}
.div-card .div-desc {
	font-size: var(--sxm-text-small);
	color: var(--sxm-text-mute);
	line-height: 1.6;
	margin-bottom: 22px;
}
.div-card .div-go {
	margin-top: auto;
	font-family: 'Inter', sans-serif;
	font-size: var(--sxm-text-xs);
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sxm-accent-teal);
	transition: letter-spacing 0.2s ease;
}
.div-card:hover .div-go { letter-spacing: 0.2em; }
@media (max-width: 1024px) {
	.div-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
	.div-grid { grid-template-columns: 1fr; }
}

/* ===================== INTERACTION MOTION ===================== */
@media (hover: hover) and (prefers-reduced-motion: no-preference) {
	.tent-card,
	.div-card,
	.sx-card,
	.sx-tier,
	.sx-policy,
	.sxm-result-card,
	.ink-tile,
	.site-footer .footer-social a {
		transition-property: transform, background, border-color, color, box-shadow;
		transition-duration: 220ms;
		transition-timing-function: cubic-bezier(0.2, 0.7, 0.2, 1);
	}
	.sx-policy:hover,
	.sxm-result-card:hover,
	.ink-tile:hover {
		transform: translateY(-3px);
	}
	.wp-block-button__link,
	.hero .btn,
	.site-header .header-cta,
	.site-header .header-cta-wrap .wp-block-button__link,
	.site-header .mobile-header-cta {
		transition-timing-function: cubic-bezier(0.2, 0.7, 0.2, 1);
	}
}
.tent-card:active,
.div-card:active,
.sx-card:active,
.sx-tier:active,
.sx-policy:active,
.sxm-result-card:active,
.wp-block-button__link:active,
.hero .btn:active,
.site-header .header-cta:active,
.site-header .header-cta-wrap .wp-block-button__link:active,
.site-header .mobile-header-cta:active {
	transform: translateY(0) scale(0.985);
}
.wp-block-post-content a:not(.wp-block-button__link):not(.tent-card):not(.div-card),
.sx-hero a:not(.wp-block-button__link),
.explore-link a,
.proof-attrib a {
	background-image: linear-gradient(currentColor, currentColor);
	background-position: 0 100%;
	background-repeat: no-repeat;
	background-size: 100% 1px;
	text-decoration: none;
	transition: color 180ms ease, background-size 180ms ease, background-position 180ms ease;
}
.wp-block-post-content a:not(.wp-block-button__link):not(.tent-card):not(.div-card):hover,
.wp-block-post-content a:not(.wp-block-button__link):not(.tent-card):not(.div-card):focus-visible,
.sx-hero a:not(.wp-block-button__link):hover,
.sx-hero a:not(.wp-block-button__link):focus-visible,
.explore-link a:hover,
.explore-link a:focus-visible,
.proof-attrib a:hover,
.proof-attrib a:focus-visible {
	background-size: 100% 2px;
	color: var(--sxm-accent-teal);
}

/* ===================== FOOTER ===================== */
.site-footer .footer-social {
	display: flex;
	gap: 10px;
	margin-top: 12px;
}
.site-footer .footer-social a {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid rgba(255,255,255,0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--sxm-text-mute);
	text-decoration: none;
	transition: color 0.2s ease, border-color 0.2s ease;
}
.site-footer .footer-social a:hover {
	color: var(--sxm-accent-teal);
	border-color: var(--sxm-accent-teal);
}
.site-footer .footer-social svg { width: 15px; height: 15px; }

.site-footer .footer-logo {
	display: inline-flex;
	align-items: center;
	width: min(100%, 230px);
	margin-bottom: 10px;
}
.site-footer .footer-logo img {
	display: block;
	width: 100%;
	height: auto;
}
.site-footer .footer-tagline {
	display: block;
	max-width: 245px;
	margin-top: 0;
	line-height: 1.45;
}
.site-footer .footer-tagline span {
	display: block;
}

.site-footer .footer-nav a {
	font-size: 13px;
	color: var(--sxm-text-light);
	text-decoration: none;
	transition: color 0.2s ease;
}
.site-footer .footer-nav a:hover { color: var(--sxm-accent-teal); }
.site-footer .footer-nav {
	display: grid;
	grid-template-columns: repeat(2, max-content);
	column-gap: clamp(30px, 3.2vw, 52px);
	row-gap: 10px;
	padding-left: 0;
	margin: 0;
	text-align: left;
	justify-content: start;
	width: max-content;
	max-width: 100%;
}
.site-footer .footer-nav li {
	margin-bottom: 0;
	list-style: none;
	white-space: nowrap;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
	.wp-block-group.services .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
	.wp-block-group.services {
		grid-template-columns: 1fr;
		align-items: stretch;
		gap: 32px;
	}
	.wp-block-group.services .services-intro,
	.wp-block-group.services .services-grid {
		grid-column: 1;
	}
	.wp-block-group.services .services-intro {
		grid-row: 1;
	}
	.wp-block-group.services .services-grid {
		grid-row: 2;
		justify-self: stretch;
		width: 100%;
		max-width: none;
	}
}
@media (max-width: 640px) {
	.wp-block-group.services .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce) {
	.marquee-track,
	.marquee-statements .marquee-track {
		animation: none;
	}
	.marquee { overflow-x: auto; }
	header.site-header,
	header.wp-block-template-part,
	.site-header .header-shell,
	.site-header .header-bar,
	.site-header .logo img,
	.site-header .header-cta {
		transition: none;
	}
	.service-card:hover,
	.division-card:hover,
	.hero .btn-primary:hover,
	.site-header .header-cta:hover,
	.tent-card:hover,
	.div-card:hover,
	.sx-card:hover,
	.sx-tier:hover,
	.sx-policy:hover,
	.sxm-result-card:hover,
	.ink-tile:hover,
	.tent-card:active,
	.div-card:active,
	.sx-card:active,
	.sx-tier:active,
	.sx-policy:active,
	.sxm-result-card:active,
	.wp-block-button__link:active,
	.hero .btn:active,
	.site-header .header-cta:active,
	.site-header .header-cta-wrap .wp-block-button__link:active,
	.site-header .mobile-header-cta:active {
		transform: none;
	}
}

/* ============================================================
 * FLUID SCALING OVERRIDES
 * Patterns ship with inline px values for compatibility with the
 * Site Editor. These rules override them on wider viewports so the
 * design grows smoothly up to 2560px+ displays.
 * ============================================================ */

/* Section vertical padding */
.wp-block-group.difference,
.wp-block-group.services,
.wp-block-group.ai-section,
.wp-block-group.divisions {
	padding-top: var(--sxm-section-py) !important;
	padding-bottom: var(--sxm-section-py) !important;
}
.wp-block-group.final-cta {
	padding-top: var(--sxm-section-py-lg) !important;
	padding-bottom: var(--sxm-section-py-lg) !important;
}
.wp-block-group.stats {
	padding-top: clamp(60px, 4vw, 96px) !important;
	padding-bottom: clamp(60px, 4vw, 96px) !important;
}

.wp-block-group.stats,
.wp-block-group.difference,
.wp-block-group.services,
.wp-block-group.ai-section,
.wp-block-group.divisions,
.wp-block-group.final-cta,
.site-footer {
	box-sizing: border-box;
	padding-left: var(--sxm-section-gutter) !important;
	padding-right: var(--sxm-section-gutter) !important;
}

/* Constrained content within sections expands on big displays */
.wp-block-group.difference > .wp-block-columns,
.wp-block-group.services > .wp-block-group,
.wp-block-group.ai-section > .wp-block-columns,
.wp-block-group.divisions > .wp-block-group,
.wp-block-group.stats > .wp-block-columns,
.wp-block-group.services .services-grid {
	max-width: var(--sxm-container-max);
	margin-left: auto;
	margin-right: auto;
}
.wp-block-group.services > .wp-block-group.services-intro {
	max-width: clamp(640px, 50vw, 880px);
}
.wp-block-group.services > .wp-block-group {
	width: 100%;
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}
.wp-block-group.services .services-grid {
	width: min(100%, clamp(470px, 34vw, 540px));
	max-width: 540px;
	margin-left: auto;
	margin-right: auto;
	justify-self: center;
}
.wp-block-group.services > .wp-block-group.services-intro {
	max-width: min(100%, 620px);
	justify-self: start;
}

/* Eyebrow labels */
.eyebrow,
p.eyebrow {
	font-family: 'Inter', sans-serif;
	font-size: var(--sxm-text-eyebrow);
	font-weight: 600;
	line-height: 1.7;
	letter-spacing: 0.25em;
	text-transform: uppercase;
}

/* Section titles */
.section-title,
.wp-block-group.final-cta .wp-block-heading {
	font-size: var(--sxm-text-section-title);
	line-height: 1.02;
}

/* Stats */
.stat-value,
p.stat-value {
	font-size: clamp(28px, 3.8vw, 60px) !important;
}
.stat-label,
p.stat-label {
	font-size: clamp(10px, 0.3vw + 7px, 14px) !important;
}

/* Body text within difference / AI sections */
.wp-block-group.difference p,
.wp-block-group.ai-section p:not(.eyebrow):not(.explore-link),
.wp-block-group.services .services-intro p {
	font-size: var(--sxm-text-body) !important;
	line-height: 1.7;
}

/* Final CTA subtext */
.wp-block-group.final-cta p.sub {
	font-size: clamp(14px, 0.4vw + 10px, 18px) !important;
}

/* Explore link inside AI section */
.wp-block-group.ai-section p.explore-link {
	font-size: var(--sxm-text-button) !important;
}

/* Footer scale up */
.site-footer .footer-grid {
	display: grid;
	grid-template-columns: minmax(220px, 0.7fr) minmax(440px, 1.14fr) minmax(250px, 0.72fr);
	gap: clamp(34px, 4vw, 72px);
	align-items: start;
	max-width: var(--sxm-container-max);
	margin-left: auto;
	margin-right: auto;
}
.site-footer .footer-grid > .wp-block-column {
	flex-basis: auto !important;
	min-width: 0;
}
.site-footer .footer-col h4 { font-size: clamp(11px, 0.3vw + 8px, 14px) !important; }
.site-footer .footer-nav a { font-size: clamp(13px, 0.3vw + 10px, 16px); }
.site-footer .footer-contact p { font-size: clamp(13px, 0.3vw + 10px, 16px) !important; }
.site-footer .footer-tagline { font-size: clamp(11px, 0.22vw + 8px, 13px) !important; }
.site-footer .wp-block-site-logo img { height: clamp(40px, 2vw + 24px, 60px); width: auto; }

@media (max-width: 920px) {
	.site-footer .footer-grid {
		grid-template-columns: 1fr;
		gap: 34px;
	}
}

@media (max-width: 520px) {
	.site-footer .footer-nav {
		grid-template-columns: 1fr;
	}
}


/* ============================================================
 * INNER PAGES v2 - minimal component layer.
 * Pages are native block markup (groups/columns/headings) using
 * theme.json presets; these classes cover only what block attrs
 * cannot express. Old .sxm-* framework below is deprecated and
 * removed once all pages are migrated.
 * ============================================================ */

/* Hero shell: clears the fixed header, veil backdrop */
.sx-hero {
	position: relative;
	padding-top: clamp(126px, 10vw + 36px, 206px);
	padding-bottom: clamp(56px, 5vw, 96px);
	background: transparent !important;
}
.sx-hero .sx-lede {
	color: var(--sxm-text-mute);
	font-size: clamp(15px, 0.6vw + 10px, 21px);
	line-height: 1.65;
}

/* Cards */
.sx-card {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	padding: clamp(24px, 1.4vw + 14px, 40px);
	height: 100%;
	box-sizing: border-box;
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.sx-card:hover {
	transform: translateY(-3px);
	border-color: rgba(0, 242, 182, 0.32);
	background: rgba(0, 242, 182, 0.04);
}
.sx-card--static:hover {
	transform: none;
	border-color: rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.03);
}
.sx-card--static {
	height: auto;
	min-height: 0;
}
.wp-block-column > .sx-card--static {
	margin-bottom: 20px !important;
}
.wp-block-column > .sx-card--static + .sx-card--static {
	margin-top: 0 !important;
}
.sx-card--accent {
	border-top: 2px solid transparent;
	border-image: linear-gradient(90deg, var(--sxm-accent-teal), var(--sxm-accent-pink)) 1;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.sx-card h3 {
	font-size: clamp(17px, 0.5vw + 13px, 22px);
	margin-bottom: 10px;
}
.sx-card p {
	color: var(--sxm-text-mute);
	font-size: var(--sxm-text-small);
	line-height: 1.65;
}

/* Numbered chip (process steps, ordered features) */
.sx-num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 30px;
	height: 30px;
	padding: 0 9px;
	border-radius: 8px;
	border: 1px solid rgba(0, 242, 182, 0.35);
	color: var(--sxm-accent-teal);
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 16px;
}

/* Checklist - apply to core list block */
ul.sx-check {
	list-style: none;
	padding-left: 0;
}
ul.sx-check > li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 12px;
	color: var(--sxm-text-mute);
	line-height: 1.6;
}
ul.sx-check > li::before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--sxm-accent-teal);
	font-weight: 700;
}
ul.sx-check > li strong { color: var(--sxm-text-light); }

/* Stat block */
.sx-stat .sx-stat-value {
	font-family: 'Inter', sans-serif;
	font-size: clamp(28px, 3vw, 52px);
	font-weight: 700;
	line-height: 1;
	color: var(--sxm-accent-teal);
	margin-bottom: 8px;
}
.sx-stat .sx-stat-label {
	font-size: var(--sxm-text-xs);
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sxm-text-dim);
}

/* Glass panel (asides, CTA bands) */
.sx-panel {
	background: linear-gradient(180deg, rgba(58, 24, 96, 0.55), rgba(42, 18, 72, 0.55));
	border: 1px solid rgba(216, 176, 255, 0.18);
	border-radius: 16px;
	padding: clamp(28px, 2vw + 16px, 56px);
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

/* Tag pill row */
.sx-tag {
	display: inline-flex;
	align-items: center;
	padding: 7px 14px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	color: var(--sxm-text-mute);
	font-family: 'Inter', sans-serif;
	font-size: var(--sxm-text-xs);
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	white-space: nowrap;
}

/* Hairline divider */
.sx-divider {
	height: 1px;
	border: none;
	background: linear-gradient(90deg, transparent, rgba(216, 176, 255, 0.25), transparent);
}

/* ===================== FLUENT FORMS (dark theme) ===================== */
.fluentform .ff-el-input--label label {
	color: var(--sxm-text-light);
	font-family: 'Inter', sans-serif;
	font-size: var(--sxm-text-small);
	font-weight: 600;
}
.fluentform .ff-el-form-control {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 8px;
	color: var(--sxm-text-light);
	padding: 12px 14px;
	width: 100%;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.fluentform .ff-el-form-control::placeholder { color: var(--sxm-text-dim); }
.fluentform .ff-el-form-control:focus {
	border-color: var(--sxm-accent-teal);
	box-shadow: 0 0 0 3px rgba(0, 242, 182, 0.15);
	outline: none;
	background: rgba(255, 255, 255, 0.07);
}
.fluentform select.ff-el-form-control option { background: var(--sxm-bg-deeper); }
.fluentform .ff-btn-submit {
	/* !important: Fluent Forms' own stylesheet loads after the theme's */
	background: var(--sxm-accent-teal) !important;
	color: var(--sxm-bg-deep) !important;
	border: none;
	border-radius: 4px;
	padding: 14px 28px;
	font-family: 'Inter', sans-serif;
	font-size: var(--sxm-text-button);
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.fluentform .ff-btn-submit:hover {
	background: var(--sxm-accent-teal-2) !important;
	transform: translateY(-1px);
	box-shadow: 0 0 24px rgba(0, 242, 182, 0.28);
}
.fluentform .ff-el-is-error .ff-el-form-control { border-color: #ff6b81; }
.fluentform .error,
.fluentform .text-danger { color: #ff8a9b; }
.fluentform .ff-message-success {
	background: rgba(0, 242, 182, 0.08);
	border: 1px solid rgba(0, 242, 182, 0.35);
	border-radius: 8px;
	color: var(--sxm-text-light);
	padding: 16px 20px;
}

/* ============================================================
 * PRICING + DIAGNOSIS components (boss spec, June 2026)
 * ============================================================ */

/* Two-tone philosophy split band */
.sx-split {
	gap: 0 !important;
	width: 100%;
	max-width: var(--sxm-container-max) !important;
	margin-left: auto !important;
	margin-right: auto !important;
}
.sx-split > .wp-block-column {
	padding: clamp(48px, 5vw, 80px) clamp(28px, 4vw, 60px);
	margin: 0 !important;
}
.sx-split .sx-split-dark {
	background: var(--sxm-bg-deeper);
}
.sx-split .sx-split-teal {
	background: var(--sxm-accent-teal);
}
.sx-split .sx-split-teal h2,
.sx-split .sx-split-teal h3,
.sx-split .sx-split-teal p {
	color: var(--sxm-bg-deep);
}
.sx-split .sx-split-teal p { opacity: 0.85; }
.sx-split .sx-split-teal strong {
	display: block;
	margin-top: 18px;
	font-family: 'Inter', sans-serif;
	font-size: clamp(16px, 0.5vw + 12px, 20px);
	color: var(--sxm-bg-deep);
	opacity: 1;
}

/* Tier / pricing cards */
.sx-tier {
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 16px;
	overflow: hidden;
	height: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.sx-tier:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 44px rgba(0, 0, 0, 0.3);
}
.sx-tier-header {
	background: var(--sxm-bg-deeper);
	padding: clamp(22px, 1.5vw + 12px, 32px);
}
.sx-tier--featured {
	border: 2px solid var(--sxm-accent-teal);
	box-shadow: 0 0 40px rgba(0, 242, 182, 0.12);
}
.sx-tier--featured .sx-tier-header { background: var(--sxm-accent-teal); }
.sx-tier--featured .sx-tier-header .sx-tier-tag,
.sx-tier--featured .sx-tier-header .sx-price,
.sx-tier--featured .sx-tier-header .sx-price-note { color: var(--sxm-bg-deep); }
.sx-tier-tag {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--sxm-accent-teal);
	margin-bottom: 8px;
}
.sx-price {
	font-family: 'Inter', sans-serif;
	font-size: clamp(30px, 2.4vw, 44px);
	font-weight: 700;
	line-height: 1;
	color: var(--sxm-text-light);
}
.sx-price .sx-price-per { font-size: 0.45em; font-weight: 400; }
.sx-price-note {
	font-size: var(--sxm-text-xs);
	color: var(--sxm-text-dim);
	margin-top: 8px;
}
.sx-tier-body {
	padding: clamp(22px, 1.5vw + 12px, 32px);
	flex: 1;
	display: flex;
	flex-direction: column;
}
.sx-tier-body h3 { margin-bottom: 10px; font-size: clamp(18px, 0.6vw + 14px, 22px); }
.sx-tier-body p { color: var(--sxm-text-mute); font-size: var(--sxm-text-small); line-height: 1.7; }
.sx-tier-body .sx-tier-desc { flex: 1; }
.sx-tier-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	width: fit-content;
	background: rgba(0, 242, 182, 0.1);
	color: var(--sxm-accent-teal);
	font-family: 'Inter', sans-serif;
	font-size: 13px;
	font-weight: 700;
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 16px;
}
.sx-tier-example {
	margin-top: 16px;
	padding: 12px 14px;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 8px;
	font-size: var(--sxm-text-xs);
	color: var(--sxm-text-dim);
	font-style: italic;
	line-height: 1.6;
}
.sx-tier-example strong {
	display: block;
	color: var(--sxm-text-light);
	font-style: normal;
	font-size: 11px;
	letter-spacing: 0.08em;
	margin-bottom: 4px;
}
.sx-tier .wp-block-buttons { margin-top: 24px; }
.sx-tier .wp-block-button { width: 100%; }
.sx-tier .wp-block-button__link { width: 100%; }

/* Process timeline (4 steps, connector line) */
.sx-timeline {
	position: relative;
	isolation: isolate;
}
.sx-timeline::before {
	content: "";
	position: absolute;
	top: 28px;
	left: 28px;
	right: 28px;
	height: 2px;
	background: linear-gradient(90deg, rgba(0, 242, 182, 0.35), rgba(217, 70, 239, 0.35));
	z-index: 0;
	pointer-events: none;
}
.sx-step-no {
	position: relative;
	z-index: 1;
	width: 56px;
	height: 56px;
	background: var(--sxm-accent-teal);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Inter', sans-serif;
	font-size: 19px;
	font-weight: 700;
	color: var(--sxm-bg-deep);
	margin-bottom: 22px;
	position: relative;
	z-index: 1;
}
.sx-step-sub {
	font-size: var(--sxm-text-xs);
	color: var(--sxm-text-dim);
	font-style: italic;
}
@media (max-width: 781px) {
	.sx-timeline::before { display: none; }
}

/* Policy tiles (2x2) */
.sx-policy {
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	padding: 20px;
	text-align: center;
	height: 100%;
	box-sizing: border-box;
}
.sx-policy .sx-policy-icon { font-size: 24px; margin-bottom: 8px; }
.sx-policy p {
	font-family: 'Inter', sans-serif;
	font-size: var(--sxm-text-small);
	font-weight: 700;
	color: var(--sxm-text-light);
}

/* Left-accent deliverable cards */
.sx-card--left {
	border-left: 3px solid var(--sxm-accent-teal);
	border-radius: 10px;
}
/* Columns holding cards become flex stacks so card heights equalize across
 * the row (height:100% doesn't resolve against stretched flex columns). */
.wp-block-column:has(> .sx-card) {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.wp-block-columns:has(.sx-card),
.wp-block-columns:has(.sx-tier),
.wp-block-columns:has(.sx-policy) {
	align-items: stretch !important;
}
.wp-block-column:has(> .sx-tier),
.wp-block-column:has(> .sx-policy) {
	display: flex;
	flex-direction: column;
}
.wp-block-column > .sx-card {
	flex: 1;
	margin-block: 0 !important;
}
.wp-block-column > .sx-tier,
.wp-block-column > .sx-policy {
	flex: 1;
	margin-block: 0 !important;
}

/* Stacked card columns need shared row heights across columns, not just equal
 * heights inside each column. Subgrid preserves the intended column-major
 * reading order while aligning the visible card rows. */
.wp-block-columns:has(> .wp-block-column > .sx-card--static:nth-of-type(2)) {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
	align-items: stretch !important;
	gap: var(--wp--style--block-gap, 24px);
}
.wp-block-columns:has(> .wp-block-column > .sx-card--static:nth-of-type(2)) > .wp-block-column {
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 2;
	gap: 20px;
}
.wp-block-columns:has(> .wp-block-column > .sx-card--static:nth-of-type(3)) > .wp-block-column { grid-row: span 3; }
.wp-block-columns:has(> .wp-block-column > .sx-card--static:nth-of-type(4)) > .wp-block-column { grid-row: span 4; }
.wp-block-columns:has(> .wp-block-column > .sx-card--static:nth-of-type(5)) > .wp-block-column { grid-row: span 5; }
.wp-block-column > .sx-card--static {
	flex: 1;
	height: 100%;
	margin-block: 0 !important;
	box-sizing: border-box;
}
@media (max-width: 781px) {
	.wp-block-columns:has(> .wp-block-column > .sx-card--static:nth-of-type(2)) {
		grid-template-columns: 1fr;
	}
	.wp-block-columns:has(> .wp-block-column > .sx-card--static:nth-of-type(2)) > .wp-block-column {
		display: flex;
		grid-row: auto;
	}
}

/* Contact page: keep the right-side info cards contained within the form height. */
body.page-id-210 .wp-block-columns:has(> .wp-block-column > .sx-panel):has(> .wp-block-column > .sx-card--static:nth-of-type(3)) {
	align-items: stretch !important;
}
body.page-id-210 .wp-block-columns:has(> .wp-block-column > .sx-panel):has(> .wp-block-column > .sx-card--static:nth-of-type(3)) > .wp-block-column {
	grid-row: auto !important;
}
body.page-id-210 .wp-block-columns:has(> .wp-block-column > .sx-panel):has(> .wp-block-column > .sx-card--static:nth-of-type(3)) > .wp-block-column:has(> .sx-panel) {
	display: flex !important;
}
body.page-id-210 .wp-block-columns:has(> .wp-block-column > .sx-panel):has(> .wp-block-column > .sx-card--static:nth-of-type(3)) > .wp-block-column:has(> .sx-panel) > .sx-panel {
	flex: 1 1 auto;
}
body.page-id-210 .wp-block-columns:has(> .wp-block-column > .sx-panel):has(> .wp-block-column > .sx-card--static:nth-of-type(3)) > .wp-block-column:has(> .sx-card--static) {
	display: grid !important;
	grid-template-rows: auto auto 1fr !important;
	gap: 20px;
	align-self: stretch;
}
body.page-id-210 .wp-block-columns:has(> .wp-block-column > .sx-panel):has(> .wp-block-column > .sx-card--static:nth-of-type(3)) > .wp-block-column > .sx-card--static {
	flex: 0 0 auto !important;
	height: auto !important;
	min-height: 0;
	margin-block: 0 !important;
	padding: clamp(24px, 0.9vw + 12px, 32px);
}
@media (max-width: 781px) {
	body.page-id-210 .wp-block-columns:has(> .wp-block-column > .sx-panel):has(> .wp-block-column > .sx-card--static:nth-of-type(3)) > .wp-block-column:has(> .sx-panel),
	body.page-id-210 .wp-block-columns:has(> .wp-block-column > .sx-panel):has(> .wp-block-column > .sx-card--static:nth-of-type(3)) > .wp-block-column:has(> .sx-card--static) {
		display: flex !important;
		flex-direction: column;
		grid-template-rows: none !important;
		align-self: auto;
	}
}

/* Hero pulse rings (diagnosis) */
.sx-pulse-wrap { position: relative; overflow: hidden; }
.sx-pulse-wrap > *:not(.sx-pulse) { position: relative; z-index: 1; }
.sx-pulse {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	border: 1px solid rgba(0, 242, 182, 0.18);
	pointer-events: none;
	animation: sx-pulse 4s ease-out infinite;
}
.sx-pulse:nth-of-type(1) { width: 300px; height: 300px; }
.sx-pulse:nth-of-type(2) { width: 520px; height: 520px; animation-delay: 1.2s; }
.sx-pulse:nth-of-type(3) { width: 760px; height: 760px; animation-delay: 2.4s; }
@keyframes sx-pulse {
	0%   { opacity: 0.7; transform: translate(-50%, -50%) scale(0.96); }
	100% { opacity: 0; transform: translate(-50%, -50%) scale(1.12); }
}
@media (prefers-reduced-motion: reduce) {
	.sx-pulse { animation: none; opacity: 0.25; }
	.sx-tier:hover { transform: none; }
}

/* ===================== INK ORBIT (homepage AI section visual) ===================== */
.ink-orbit {
	max-width: clamp(380px, 30vw + 160px, 540px);
	margin-left: auto;
}
.ink-orbit svg { width: 100%; height: auto; display: block; }

.ink-orbit .ink-line {
	stroke: rgba(0, 242, 182, 0.22);
	stroke-width: 1.5;
}

.ink-orbit .ink-node rect {
	fill: rgba(255, 255, 255, 0.05);
	stroke: rgba(216, 176, 255, 0.28);
	stroke-width: 1;
	transition: fill 0.2s ease, stroke 0.2s ease;
}
.ink-orbit .ink-node text {
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.1em;
	fill: #f1f2f2;
	text-anchor: middle;
}
.ink-orbit .ink-node:hover rect {
	fill: rgba(0, 242, 182, 0.10);
	stroke: rgba(0, 242, 182, 0.5);
}

/* Data pulses travel each connector into the core */
.ink-orbit .ink-dot {
	offset-rotate: 0deg;
	animation: ink-flow 4.2s linear infinite;
}
.ink-orbit .ink-dot:nth-of-type(2) { animation-delay: 0.9s; }
.ink-orbit .ink-dot:nth-of-type(3) { animation-delay: 1.7s; }
.ink-orbit .ink-dot:nth-of-type(4) { animation-delay: 2.6s; }
.ink-orbit .ink-dot:nth-of-type(5) { animation-delay: 3.4s; }
@keyframes ink-flow {
	0%   { offset-distance: 0%;   opacity: 0; }
	12%  { opacity: 1; }
	82%  { opacity: 1; }
	100% { offset-distance: 100%; opacity: 0; }
}

/* Core halo breathes gently */
.ink-orbit .ink-halo {
	transform-origin: 260px 260px;
	animation: ink-breathe 6s ease-in-out infinite alternate;
}
@keyframes ink-breathe {
	from { transform: scale(0.94); opacity: 0.8; }
	to   { transform: scale(1.06); opacity: 1; }
}

@media (max-width: 899px) {
	.ink-orbit { margin: 0 auto; }
}
@media (prefers-reduced-motion: reduce) {
	.ink-orbit .ink-dot { animation: none; opacity: 0; }
	.ink-orbit .ink-halo { animation: none; }
}

/* ===================== SCROLL REVEAL ===================== */
/* Gated behind html.sxm-anim (added by reveal.js) so content is never
 * hidden without JS. Uses individual transform properties so card hover
 * transforms keep working during/after the reveal. */
html.sxm-anim .sxm-io {
	opacity: 0;
	translate: var(--sxm-reveal-x, 0) var(--sxm-reveal-y, 24px);
	scale: var(--sxm-reveal-scale, 1);
	transition:
		opacity var(--sxm-reveal-duration, 560ms) ease,
		translate var(--sxm-reveal-duration, 560ms) cubic-bezier(0.2, 0.7, 0.2, 1),
		scale var(--sxm-reveal-duration, 560ms) cubic-bezier(0.2, 0.7, 0.2, 1);
	transition-delay: var(--sxm-delay, 0ms);
	will-change: opacity, translate, scale;
}
html.sxm-anim .sxm-io.sxm-inview {
	opacity: 1;
	translate: 0 0;
	scale: 1;
	will-change: auto;
}

html.sxm-anim .sxm-motion-hero-title {
	--sxm-reveal-y: 30px;
	--sxm-reveal-duration: 700ms;
}
html.sxm-anim .sxm-motion-hero-copy {
	--sxm-reveal-y: 18px;
	--sxm-reveal-duration: 520ms;
}
html.sxm-anim .sxm-motion-hero-action,
html.sxm-anim .sxm-motion-action {
	--sxm-reveal-y: 16px;
	--sxm-reveal-duration: 420ms;
}
html.sxm-anim .sxm-motion-heading {
	--sxm-reveal-y: 24px;
	--sxm-reveal-duration: 650ms;
}
html.sxm-anim .sxm-motion-copy {
	--sxm-reveal-y: 16px;
	--sxm-reveal-duration: 500ms;
}
html.sxm-anim .sxm-motion-card,
html.sxm-anim .sxm-motion-tier,
html.sxm-anim .sxm-motion-result {
	--sxm-reveal-y: 28px;
	--sxm-reveal-scale: 0.985;
	--sxm-reveal-duration: 540ms;
}
html.sxm-anim .sxm-motion-tier-featured {
	--sxm-reveal-y: 26px;
	--sxm-reveal-scale: 0.98;
	--sxm-reveal-duration: 580ms;
}
html.sxm-anim .sxm-motion-split-left {
	--sxm-reveal-x: -30px;
	--sxm-reveal-y: 0;
	--sxm-reveal-duration: 620ms;
}
html.sxm-anim .sxm-motion-split-right {
	--sxm-reveal-x: 30px;
	--sxm-reveal-y: 0;
	--sxm-reveal-duration: 620ms;
}
html.sxm-anim .sxm-motion-media-left {
	--sxm-reveal-x: -36px;
	--sxm-reveal-y: 0;
	--sxm-reveal-scale: 0.98;
	--sxm-reveal-duration: 650ms;
}
html.sxm-anim .sxm-motion-media-right {
	--sxm-reveal-x: 36px;
	--sxm-reveal-y: 0;
	--sxm-reveal-scale: 0.98;
	--sxm-reveal-duration: 650ms;
}
html.sxm-anim .sxm-motion-stat-number {
	--sxm-reveal-y: 12px;
	--sxm-reveal-scale: 0.96;
	--sxm-reveal-duration: 600ms;
}
html.sxm-anim .sxm-motion-stat-rule {
	--sxm-reveal-y: 0;
	--sxm-reveal-scale: 0.92;
	--sxm-reveal-duration: 480ms;
}
html.sxm-anim .sxm-motion-stat-copy {
	--sxm-reveal-x: 24px;
	--sxm-reveal-y: 0;
	--sxm-reveal-duration: 500ms;
}
html.sxm-anim .sxm-motion-marquee {
	--sxm-reveal-y: 12px;
	--sxm-reveal-duration: 450ms;
}
html.sxm-anim .sxm-motion-timeline-line {
	--sxm-reveal-y: 0;
	--sxm-reveal-duration: 420ms;
}
html.sxm-anim .sxm-motion-timeline-step {
	--sxm-reveal-y: 24px;
	--sxm-reveal-scale: 0.985;
	--sxm-reveal-duration: 500ms;
}
html.sxm-anim .sxm-motion-footer-col {
	--sxm-reveal-y: 18px;
	--sxm-reveal-duration: 500ms;
}
@media (prefers-reduced-motion: reduce) {
	html.sxm-anim .sxm-io {
		opacity: 1;
		translate: none;
		scale: 1;
		transition: none;
	}
}

/* ===================== SITE-WIDE CONTINUOUS BACKGROUND ===================== */
/* One tall wash of purples, blues and teals flowing down every page instead
 * of per-section bands. Bottom stop lands on the footer color (#140822) so
 * there is no seam above the footer; the 93% bloom backs the closing CTA.
 * Section backgrounds are stripped below (top-level sections only - panels
 * and cards inside sections keep their own backgrounds). */
main {
	background: var(--sxm-site-background);
}
body.page-id-210 main.sxm-page-shell {
	background: var(--sxm-contact-background);
}
/* Location photo heroes were built to dissolve into the original deep page base.
 * Keep the site-wide flow off that branch so the image edge does not reappear. */
body.page-id-12 main,
body.parent-pageid-12 main {
	background: var(--sxm-bg-deep);
}
main > .has-background,
main .wp-block-post-content > .has-background {
	background: none !important;
}
.services-ten {
	background: none;
}

/* Kill the root block-gap between main and footer - it let the body
 * background show through as a thin band above the footer. */
.wp-site-blocks > footer.wp-block-template-part,
.wp-site-blocks > .wp-block-template-part:last-child {
	margin-top: 0;
}

/* ===================== PROOF BAND ===================== */
.proof-band {
	overflow: hidden;
	padding: clamp(62px, 6vw, 104px) 0 clamp(70px, 6vw, 112px);
}
.proof-strip {
	--proof-strip-pad: max(var(--sxm-section-gutter), calc((100vw - var(--sxm-container-max)) / 2));
	position: relative;
	display: grid;
	grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
	box-sizing: border-box;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 0 var(--proof-strip-pad);
}
.proof-strip__intro {
	align-self: center;
	max-width: 28ch;
	padding: clamp(24px, 2.6vw, 42px) clamp(24px, 3vw, 52px) clamp(24px, 2.6vw, 42px) 0;
}
.proof-kicker {
	display: block;
	margin-bottom: 24px;
	color: var(--sxm-accent-pink);
}
.proof-strip__intro strong {
	display: block;
	color: var(--sxm-text-light);
	font-size: clamp(22px, 1.35vw + 14px, 34px);
	font-weight: 800;
	letter-spacing: -0.035em;
	line-height: 1.05;
}
.proof-strip__metrics {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: stretch;
}
.proof-strip__metric {
	position: relative;
	display: grid;
	grid-template-rows: clamp(42px, 4.4vw, 74px) auto;
	align-content: start;
	min-height: clamp(96px, 7vw, 124px);
	padding: clamp(28px, 2.3vw, 38px) clamp(18px, 1.8vw, 34px) 0;
	text-align: left;
}
.proof-value {
	display: flex;
	align-items: flex-start;
	font-family: 'Inter', sans-serif;
	font-size: clamp(42px, 4.4vw, 74px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.055em;
	color: var(--sxm-accent-teal);
	white-space: nowrap;
}
.proof-value em {
	font-style: normal;
	font-size: 0.55em;
	vertical-align: 0.32em;
}
.proof-label {
	display: block;
	max-width: 20ch;
	margin-top: 12px;
	font-family: 'Inter', sans-serif;
	font-size: clamp(11px, 0.25vw + 9px, 13px);
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.2;
	color: var(--sxm-text-light);
	text-transform: uppercase;
}
@media (max-width: 900px) {
	.proof-band {
		padding-top: clamp(56px, 13vw, 84px);
		padding-bottom: clamp(68px, 13vw, 96px);
	}
	.proof-strip {
		--proof-strip-pad: clamp(20px, 5vw, 28px);
		display: grid;
		grid-template-columns: 1fr;
		overflow: visible;
	}
	.proof-strip__intro {
		max-width: none;
		padding-top: 28px;
		padding-right: 0;
		padding-bottom: 24px;
	}
	.proof-strip__metrics {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0;
	}
	.proof-strip__metric {
		grid-template-rows: clamp(34px, 12vw, 46px) auto;
		min-height: 122px;
		padding: 22px 0;
	}
	.proof-strip__metric:nth-child(odd) {
		padding-right: clamp(14px, 4vw, 22px);
	}
	.proof-strip__metric:nth-child(even) {
		padding-left: clamp(14px, 4vw, 22px);
	}
}
@media (max-width: 560px) {
	.proof-value {
		font-size: clamp(34px, 12vw, 46px);
	}
	.proof-label {
		max-width: 14ch;
		font-size: clamp(10px, 2.7vw, 12px);
		letter-spacing: 0.055em;
	}
}

/* ===================== RESULTS DATA GRID ===================== */
.results-stats-section {
	overflow: hidden;
	background: transparent !important;
}
.results-stats-section > .eyebrow,
.results-stats-section > .wp-block-heading,
.results-stats-section > p:not(.eyebrow),
.results-stats-grid {
	width: min(var(--sxm-container-max), calc(100vw - (var(--sxm-section-gutter) * 2)));
	max-width: none;
	margin-left: auto !important;
	margin-right: auto !important;
}
.results-stats-section > p:not(.eyebrow) {
	max-width: 680px;
	margin-left: auto !important;
	margin-right: auto !important;
}
.results-stats-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(16px, 2vw, 24px);
}
.results-stat-tile {
	min-height: clamp(132px, 8vw, 164px);
	padding: clamp(22px, 1.4vw + 16px, 34px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(0, 242, 182, 0.045);
}
.results-stat-value {
	display: block;
	color: var(--sxm-accent-teal);
	font-family: 'Inter', sans-serif;
	font-size: clamp(40px, 4.8vw, 76px);
	font-weight: 800;
	line-height: 0.92;
	letter-spacing: -0.03em;
}
.results-stat-value em {
	font-style: normal;
	font-size: 0.58em;
	vertical-align: 0.28em;
}
.results-stat-label {
	display: block;
	margin-top: clamp(18px, 2vw, 34px);
	color: var(--sxm-text-light);
	font-family: 'Inter', sans-serif;
	font-size: clamp(11px, 0.32vw + 10px, 14px);
	font-weight: 800;
	letter-spacing: 0.08em;
	line-height: 1.25;
	text-transform: uppercase;
}
@media (max-width: 900px) {
	.results-stats-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 560px) {
	.results-stats-grid {
		grid-template-columns: 1fr;
	}
}

/* ===================== GOOGLE REVIEWS ===================== */
.google-reviews-section {
	width: 100% !important;
	max-width: none !important;
	overflow: visible;
	background: transparent !important;
}
.google-reviews-section > .eyebrow,
.google-reviews-section > .wp-block-heading {
	width: min(var(--sxm-container-max), calc(100vw - (var(--sxm-section-gutter) * 2)));
	max-width: none;
	margin-left: auto !important;
	margin-right: auto !important;
}
.google-reviews-section > .wp-block-heading {
	margin-bottom: clamp(32px, 4vw, 48px) !important;
}
.google-reviews-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(12px, 1.4vw, 18px);
	align-items: start;
	width: min(var(--sxm-container-max), calc(100vw - (var(--sxm-section-gutter) * 2)));
	max-width: none;
	margin-left: auto;
	margin-right: auto;
}
.google-review-card {
	position: relative;
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr) minmax(170px, 0.24fr);
	column-gap: clamp(18px, 2vw, 28px);
	align-items: start;
	min-height: 0;
	padding: clamp(18px, 1vw + 13px, 26px);
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(255, 255, 255, 0.035);
	box-shadow: none;
}
.google-review-card--featured {
	border-color: rgba(0, 242, 182, 0.35);
	background: rgba(0, 242, 182, 0.045);
	box-shadow: inset 0 1px 0 rgba(0, 242, 182, 0.16);
}
.google-review-quote {
	grid-column: 1;
	margin-bottom: 0;
	color: var(--sxm-accent-teal);
	font-family: 'Inter', sans-serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 0.75;
}
.google-review-card p {
	grid-column: 2;
	margin: 0;
	color: var(--sxm-text-mute);
	font-size: clamp(13px, 0.28vw + 12px, 15px);
	line-height: 1.55;
}
.google-review-meta {
	grid-column: 3;
	align-self: start;
	padding-top: 0;
}
.google-review-name {
	display: block;
	color: var(--sxm-text-light);
	font-family: 'Inter', sans-serif;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
.google-review-role {
	display: block;
	margin-top: 5px;
	color: rgba(209, 198, 224, 0.62);
	font-size: 12px;
	line-height: 1.4;
}
.google-review-stars {
	display: flex;
	gap: 3px;
	margin-top: 12px;
	color: #ffb000;
	font-size: 15px;
	letter-spacing: 0.02em;
}
.google-review-link {
	display: inline-flex;
	margin-top: 12px;
	color: var(--sxm-accent-teal);
	font-family: 'Inter', sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
@media (max-width: 900px) {
	.google-reviews-grid {
		grid-template-columns: 1fr;
		margin-left: auto;
		margin-right: auto;
	}
	.google-reviews-section > .eyebrow,
	.google-reviews-section > .wp-block-heading {
		margin-left: auto !important;
		margin-right: auto !important;
	}
	.google-review-card {
		grid-template-columns: 1fr;
	}
	.google-review-quote,
	.google-review-card p,
	.google-review-meta {
		grid-column: 1;
	}
	.google-review-quote {
		margin-bottom: 12px;
	}
	.google-review-meta {
		padding-top: 18px;
	}
}

/* ===================== CITY PAGE IMAGERY ===================== */
/* Hero with photographic backdrop */
.sx-hero--photo { overflow: hidden; }
body.page-id-12 .sxm-page-shell,
body.parent-pageid-12 .sxm-page-shell,
body.page-id-12 .entry-content,
body.parent-pageid-12 .entry-content {
	padding-top: 0 !important;
}
body.page-id-12 .sxm-page-shell .wp-block-post-content > .sx-hero--photo,
body.parent-pageid-12 .sxm-page-shell .wp-block-post-content > .sx-hero--photo,
body .sxm-page-shell .wp-block-post-content > .sx-hero--photo,
body.page-id-12 .sx-hero--photo,
body.parent-pageid-12 .sx-hero--photo {
	width: 100vw;
	inline-size: 100vw;
	min-inline-size: 100vw;
	max-width: none !important;
	margin-top: 0 !important;
	margin-left: calc(50% - 50vw) !important;
	margin-right: calc(50% - 50vw) !important;
	padding-top: clamp(170px, 12vw, 260px);
	padding-bottom: clamp(96px, 9vw, 170px);
	min-height: clamp(560px, 70vh, 820px);
	box-sizing: border-box;
}
.sx-hero--photo .sx-hero-photo {
	position: absolute;
	inset: 0;
	width: 100%;
	min-width: 100%;
	height: 100%;
	/* constrained layout clamps children to contentSize with auto !important
	 * margins - break the backdrop out to full bleed */
	max-width: none !important;
	margin: 0 !important;
	object-fit: cover;
	z-index: 0;
}
/* Scrim: purple zone for the headline + bottom dissolve into the page */
.sx-hero--photo::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(90deg, rgba(26, 11, 46, 0.90) 0%, rgba(26, 11, 46, 0.68) 48%, rgba(26, 11, 46, 0.34) 100%),
		linear-gradient(180deg, rgba(26, 11, 46, 0.42) 0%, rgba(26, 11, 46, 0.12) 50%, #1a0b2e 100%);
}
.sx-hero--photo > *:not(.sx-hero-photo) {
	position: relative;
	z-index: 2;
}
@media (max-width: 700px) {
	body.page-id-12 .sxm-page-shell .wp-block-post-content > .sx-hero--photo,
	body.parent-pageid-12 .sxm-page-shell .wp-block-post-content > .sx-hero--photo,
	body .sxm-page-shell .wp-block-post-content > .sx-hero--photo,
	body.page-id-12 .sx-hero--photo,
	body.parent-pageid-12 .sx-hero--photo {
		padding: 154px var(--sxm-section-gutter) 76px;
		min-height: min(660px, 86vh);
	}
	body.page-id-12 .sx-hero--photo > :not(.sx-hero-photo),
	body.parent-pageid-12 .sx-hero--photo > :not(.sx-hero-photo) {
		width: 100%;
		max-width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
	body.page-id-12 .sx-hero--photo h1,
	body.parent-pageid-12 .sx-hero--photo h1,
	body.page-id-12 .sx-hero--photo .sx-lede,
	body.parent-pageid-12 .sx-hero--photo .sx-lede,
	body.page-id-12 .sx-hero--photo .wp-block-buttons,
	body.parent-pageid-12 .sx-hero--photo .wp-block-buttons {
		max-width: 100% !important;
	}
}

/* Framed feature photo band */
.sx-photo-band {
	padding: var(--wp--preset--spacing--60) var(--sxm-section-gutter);
}
.sx-photo-frame {
	margin: 0;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-top-width: 2px;
	border-image: linear-gradient(90deg, var(--sxm-accent-teal), var(--sxm-accent-pink)) 1;
	background: rgba(255, 255, 255, 0.02);
}
.sx-photo-frame img {
	width: 100%;
	height: auto;
	display: block;
}
.sx-photo-frame figcaption {
	font-family: 'Inter', sans-serif;
	font-size: var(--sxm-text-xs);
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sxm-text-dim);
	padding: 12px 16px;
	border-top: 1px solid rgba(255, 255, 255, 0.07);
}
