@font-face {
	font-family: "Satoshi";
	src:
		url("../../fonts/satoshi/Satoshi-Variable.woff2") format("woff2");
	font-display: swap;
	font-style: normal;
	font-weight: 300 900;
}

@font-face {
	font-family: "Satoshi";
	src:
		url("../../fonts/satoshi/Satoshi-VariableItalic.woff2") format("woff2");
	font-display: swap;
	font-style: italic;
	font-weight: 300 900;
}

:root {
	--sb-color-bg: #f1f2f7;
	--sb-color-surface: #e9ebf2;
	--sb-color-surface-strong: #e0e3ec;
	--sb-color-ink: #2e2c38;
	--sb-color-ink-soft: #434150;
	--sb-color-muted: #a2a3bb;
	--sb-color-muted-strong: #7c7d93;
	--sb-color-border: rgba(75, 73, 88, 0.14);
	--sb-color-border-strong: rgba(75, 73, 88, 0.24);
	--sb-color-accent: #9EA1B5;
	--sb-color-accent-soft: rgba(158, 161, 181, 0.14);
	--sb-color-white: #fffdfd;
	/* Hero premium (all dark visual variants + default backdrop): aligned with ink. */
	--sb-hero-premium-surface: var(--sb-color-ink);
	--sb-hero-premium-surface-deep: #2a2834;
	--sb-hero-premium-surface-lift: #32303c;
	--sb-hero-network-bg: var(--sb-hero-premium-surface);
	--sb-font-heading: "Satoshi", system-ui, sans-serif;
	--sb-font-body: "Satoshi", system-ui, sans-serif;
	--sb-font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
	--sb-leading-tight: 0.88;
	--sb-leading-snug: 1.12;
	--sb-leading-body: 1.68;
	--sb-leading-display: 0.92;
	--sb-tracking-display: -0.06em;
	--sb-space-3xs: 0.25rem;
	--sb-space-2xs: 0.5rem;
	--sb-space-xs: 0.75rem;
	--sb-space-sm: 1rem;
	--sb-space-md: 1.5rem;
	--sb-space-lg: 2.5rem;
	--sb-space-xl: 4rem;
	--sb-space-2xl: 6rem;
	--sb-space-3xl: 8rem;
	--sb-space-section: clamp(4.25rem, 6vw, 7rem);
	--sb-space-section-tight: clamp(3rem, 4vw, 4.75rem);
	--sb-radius-sm: 0.35rem;
	--sb-radius-md: 0.55rem;
	--sb-radius-lg: 0;
	--sb-radius-xl: 0;
	--sb-radius-pill: 999px;
	--sb-shadow-soft: none;
	--sb-shadow-card: none;
	--sb-container-sm: 1120px;
	--sb-container-md: 1440px;
	--sb-container-lg: 1600px;
	--sb-content: 980px;
	--sb-gutter: 5%;
	--sb-transition-fast: 160ms ease;
	--sb-transition-base: 220ms ease;
	--sb-type-step--1: clamp(0.92rem, 0.88rem + 0.08vw, 1rem);
	--sb-type-step-0: clamp(1rem, 0.96rem + 0.18vw, 1.14rem);
	--sb-type-step-1: clamp(1.22rem, 1.08rem + 0.42vw, 1.48rem);
	--sb-type-step-2: clamp(1.55rem, 1.2rem + 0.98vw, 2.1rem);
	--sb-type-step-3: clamp(2.2rem, 1.6rem + 1.85vw, 3.45rem);
	--sb-type-step-4: clamp(3rem, 2.2rem + 3vw, 5rem);
	--sb-type-step-5: clamp(4.5rem, 3rem + 6vw, 8.5rem);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background:
		radial-gradient(circle at top left, rgba(158, 161, 181, 0.035), transparent 26%),
		linear-gradient(180deg, #f6f7fb 0%, #f1f2f7 48%, #eef0f6 100%);
	color: var(--sb-color-ink);
	font-family: var(--sb-font-body);
	font-size: var(--sb-type-step-0);
	font-weight: 300;
	line-height: var(--sb-leading-body);
	text-rendering: optimizeLegibility;
}

/* Use with optional assets/fonts/inter/inter.css for deliberate Inter typography. */
.sb-font-inter {
	font-family: "Inter", system-ui, sans-serif;
}

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

a {
	color: inherit;
	text-decoration: none;
	transition:
		color var(--sb-transition-base),
		opacity var(--sb-transition-base),
		border-color var(--sb-transition-base),
		background-color var(--sb-transition-base),
		transform var(--sb-transition-base),
		box-shadow var(--sb-transition-base);
}

a:hover,
a:focus-visible {
	color: var(--sb-color-accent);
}

p,
ul,
ol,
blockquote {
	margin-top: 0;
	margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: var(--sb-font-heading);
	font-kerning: normal;
	font-optical-sizing: auto;
	font-feature-settings: "kern" 1, "liga" 1, "clig" 1, "calt" 1;
	font-weight: 500;
	letter-spacing: -0.05em;
	line-height: var(--sb-leading-tight);
	text-wrap: pretty;
}

:is(h1, h2, h3, h4, h5, h6) strong,
.sb-statement-strip__text strong {
	font-weight: inherit;
	color: var(--sb-color-accent);
}

h1 {
	font-size: var(--sb-type-step-5);
	font-weight: 520;
}

h2 {
	font-size: var(--sb-type-step-4);
	font-weight: 520;
	margin-bottom: 0.35em;
}

h3 {
	font-size: var(--sb-type-step-3);
	font-weight: 510;
}

h4 {
	font-size: var(--sb-type-step-2);
}

h5 {
	font-size: var(--sb-type-step-1);
}

h6 {
	font-size: var(--sb-type-step-0);
}

.sb-gsap-pending .sb-hero-premium .sb-display-title,
.sb-gsap-pending .sb-hero-premium .sb-lead,
.sb-gsap-pending .sb-hero-premium__actions > *,
.sb-gsap-pending .sb-hero-premium__image,
.sb-gsap-pending .sb-hero-premium__veil,
.sb-gsap-pending .sb-hero-premium__glow,
.sb-gsap-pending .sb-hero-premium__gridlines,
.sb-gsap-pending .sb-home-reveal-hero:not(.is-static) .sb-home-reveal-hero__header,
.sb-gsap-pending .sb-home-reveal-hero:not(.is-static) .sb-home-reveal-hero__copy,
.sb-gsap-pending .sb-home-reveal-hero:not(.is-static) .sb-home-reveal-hero__actions,
.sb-gsap-pending .sb-product-reveal-hero:not(.is-static) .sb-product-reveal-hero__image--featured {
	opacity: 0;
	transform: translateY(16px);
}

.sb-gsap-pending .sb-hero-premium__image,
.sb-gsap-pending .sb-hero-premium__glow {
	transform: scale(1.08);
}

.sb-gsap-pending .sb-hero-premium__veil,
.sb-gsap-pending .sb-hero-premium__gridlines {
	transform: none;
}

ul,
ol {
	padding-left: 1.2rem;
}

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

.sb-site {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	overflow-x: clip;
}

.sb-main {
	flex: 1;
}

.sb-container,
.sb-container--sm,
.sb-container--md {
	width: 100%;
	padding-left: var(--sb-gutter);
	padding-right: var(--sb-gutter);
	margin: 0 auto;
}

.sb-container--sm {
	max-width: calc(var(--sb-container-sm) + var(--sb-gutter) * 2);
}

.sb-container--md {
	max-width: calc(var(--sb-container-md) + var(--sb-gutter) * 2);
}

.sb-section {
	position: relative;
	padding: var(--sb-space-section) 0;
}

.sb-principles-grid {
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.sb-shell {
	padding: var(--sb-space-section) 0 0;
}

.sb-section--tight {
	padding: var(--sb-space-section-tight) 0;
}

.sb-section--dark,
.sb-shell--dark {
	background:
		radial-gradient(circle at top right, rgba(158, 161, 181, 0.12), transparent 32%),
		linear-gradient(180deg, #302e3b 0%, #272530 100%);
	color: var(--sb-color-white);
}

.sb-section--dark h1,
.sb-section--dark h2,
.sb-section--dark h3,
.sb-section--dark h4,
.sb-section--dark h5,
.sb-section--dark h6,
.sb-shell--dark h1,
.sb-shell--dark h2,
.sb-shell--dark h3,
.sb-shell--dark h4,
.sb-shell--dark h5,
.sb-shell--dark h6 {
	color: var(--sb-color-white);
}

.sb-section--dark .sb-lead,
.sb-section--dark p,
.sb-shell--dark .sb-lead,
.sb-shell--dark p {
	color: rgba(255, 253, 253, 0.85);
}

.sb-section--dark a:not(.sb-button),
.sb-shell--dark a:not(.sb-button) {
	color: rgba(255, 253, 253, 0.88);
}

.sb-section--dark a:not(.sb-button):hover,
.sb-shell--dark a:not(.sb-button):hover {
	color: var(--sb-color-white);
}

.sb-stack-2xs>*+* {
	margin-top: var(--sb-space-2xs);
}

.sb-stack-xs>*+* {
	margin-top: var(--sb-space-xs);
}

.sb-stack-sm>*+* {
	margin-top: var(--sb-space-sm);
}

.sb-stack-md>*+* {
	margin-top: var(--sb-space-md);
}

.sb-stack-lg>*+* {
	margin-top: var(--sb-space-lg);
}

.sb-stack-xl>*+* {
	margin-top: var(--sb-space-xl);
}

.sb-grid {
	display: grid;
	gap: clamp(2rem, 5vw, 5.5rem);
}

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

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

.sb-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.25rem, 1.8vw, 2rem);
}

.sb-list {
	display: flex;
	flex-direction: column;
	gap: var(--sb-space-md);
}

.sb-site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 50;
	padding: var(--sb-space-md) 0;
	background: transparent;
	border-bottom: 1px solid transparent;
	transition: padding 0.7s cubic-bezier(0.25, 1, 0.5, 1), background 0.7s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.7s ease;
}

body.has-home-reveal-hero:not(.has-home-reveal-header) .sb-site-header {
	opacity: 0;
	transform: translateY(-1.25rem);
	pointer-events: none;
}

body.has-home-reveal-hero.has-home-reveal-header .sb-site-header {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.sb-site-header.is-scrolled {
	padding: var(--sb-space-sm) 0;
	backdrop-filter: saturate(180%) blur(24px);
	-webkit-backdrop-filter: saturate(180%) blur(24px);
	background: rgba(241, 242, 247, 0.72);
	border-bottom: 1px solid rgba(75, 73, 88, 0.08);
}

body.sb-has-standard-header .sb-site-header {
	backdrop-filter: saturate(180%) blur(24px);
	-webkit-backdrop-filter: saturate(180%) blur(24px);
	background: rgba(241, 242, 247, 0.84);
	border-bottom: 1px solid rgba(75, 73, 88, 0.08);
}

body.admin-bar .sb-site-header {
	top: 32px;
}

@media (max-width: 782px) {
	body.admin-bar .sb-site-header {
		top: 46px;
	}
}

.sb-site-header__inner,
.sb-site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--sb-space-md);
}

.sb-brand__eyebrow,
.sb-eyebrow,
.sb-meta-label {
	margin: 0;
	color: var(--sb-color-muted-strong);
	font-family: var(--sb-font-heading);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.12rem;
	text-transform: uppercase;
}

.sb-brand__link {
	display: flex;
	align-items: center;
	font-family: var(--sb-font-heading);
	font-size: 1.45rem;
	font-weight: 520;
	letter-spacing: -0.04em;
}

.sb-brand__link svg {
	width: auto;
	height: 1.75rem;
	max-width: clamp(180px, 35vw, 340px);
	display: block;
	overflow: visible;
	transition: height 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

body.has-home-reveal-hero:not(.has-home-reveal-header) .sb-brand__link svg {
	opacity: 0;
}

.sb-site-header.is-scrolled .sb-brand__link svg {
	height: 1.4rem;
	opacity: 1;
}

.sb-nav__menu {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sb-space-md);
	align-items: center;
	padding: 0;
	margin: 0;
	list-style: none;
}

.sb-nav__menu a {
	position: relative;
	font-family: var(--sb-font-heading);
	font-size: 1.1rem;
	font-weight: 500;
	letter-spacing: 0.05rem;
	text-decoration: none;
}

.sb-nav__menu a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.25rem;
	height: 1px;
	background: var(--sb-color-accent);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform var(--sb-transition-base);
}

.sb-nav__menu a:hover::after,
.sb-nav__menu a:focus-visible::after {
	transform: scaleX(1);
}

.sb-site-header:not(.is-scrolled) .sb-brand__link,
.sb-site-header:not(.is-scrolled) .sb-nav__menu a {
	color: rgba(255, 255, 255, 0.85);
	transition: color 0.3s ease;
}

.sb-site-header:not(.is-scrolled) .sb-brand__link:hover,
.sb-site-header:not(.is-scrolled) .sb-nav__menu a:hover {
	color: var(--sb-color-white);
}

body.sb-has-standard-header .sb-site-header:not(.is-scrolled) .sb-brand__link {
	color: var(--sb-color-ink);
}

body.sb-has-standard-header .sb-site-header:not(.is-scrolled) .sb-nav__menu a {
	color: var(--sb-color-ink-soft);
}

body.sb-has-standard-header .sb-site-header:not(.is-scrolled) .sb-brand__link:hover,
body.sb-has-standard-header .sb-site-header:not(.is-scrolled) .sb-nav__menu a:hover {
	color: var(--sb-color-ink);
}

.sb-site-header.is-scrolled .sb-brand__link {
	color: var(--sb-color-ink);
	transition: color 0.3s ease;
}

.sb-site-header.is-scrolled .sb-brand__link:hover {
	color: var(--sb-color-accent);
}

.sb-site-header.is-scrolled .sb-nav__menu a {
	color: var(--sb-color-ink-soft);
	font-weight: 500;
	transition: color 0.3s ease;
}

.sb-site-header.is-scrolled .sb-nav__menu a:hover {
	color: var(--sb-color-ink);
}

.sb-nav-toggle {
	display: none;
}

.sb-nav-toggle::before,
.sb-nav-toggle::after {
	content: none;
}

.sb-page-title,
.sb-display-title {
	/* max-width: 16ch; REMOVED to allow wider titles */
}

.sb-lead,
.sb-page-intro {
	max-width: 72ch;
	font-size: var(--sb-type-step-1);
	line-height: 1.55;
	color: var(--sb-color-ink-soft);
}

.sb-page-intro > p {
	margin: 0;
}

.sb-page-intro > p + p {
	margin-top: 0.55em;
}

.sb-section--dark .sb-page-intro,
.sb-section--dark .sb-eyebrow,
.sb-section--dark .sb-meta-label {
	color: rgba(255, 247, 248, 0.88);
}

/* Expanding Circle Button */
.sb-button,
.sb-button:visited,
.wp-element-button,
button,
input[type="submit"] {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	min-height: 2.25rem;
	padding: 0 1.25rem 0 2.6rem;
	border: 1px solid transparent;
	border-radius: var(--sb-radius-pill);
	background: transparent;
	color: var(--sb-color-ink);
	font-family: var(--sb-font-heading);
	font-size: 1.1rem;
	font-weight: 500;
	letter-spacing: 0.05rem;
	line-height: 1;
	text-transform: none;
	overflow: hidden;
	z-index: 1;
	transition:
		color 0.45s cubic-bezier(0.65, 0, 0.076, 1),
		border-color 0.4s,
		transform 0.3s ease,
		opacity 0.3s ease;
}

.sb-button:hover,
.sb-button:focus-visible,
.wp-element-button:hover,
button:hover,
input[type="submit"]:hover {
	transform: translateY(-1px);
	color: var(--sb-color-bg);
}

/* Expanding dark circle (Primary) */
.sb-button::before,
.wp-element-button::before,
button::before,
input[type="submit"]::before {
	content: "";
	position: absolute;
	top: 0; left: 0; bottom: 0;
	width: 2.1rem;
	border-radius: var(--sb-radius-pill);
	background: var(--sb-color-ink);
	transition: width 0.45s cubic-bezier(0.65, 0, 0.076, 1), background 0.45s;
	z-index: -1;
}

.sb-button:hover::before,
.wp-element-button:hover::before,
button:hover::before,
input[type="submit"]:hover::before {
	width: 100%;
}

/* SVG Arrow inside the circle */
.sb-button::after,
.wp-element-button::after,
button::after,
input[type="submit"]::after {
	content: "";
	position: absolute;
	left: 0.55rem;
	top: 50%;
	width: 1rem;
	height: 1rem;
	transform: translateY(-50%);
	background-color: var(--sb-color-bg);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='7' y1='7' x2='17' y2='17'%3E%3C/line%3E%3Cpolyline points='17 7 17 17 7 17'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='7' y1='7' x2='17' y2='17'%3E%3C/line%3E%3Cpolyline points='17 7 17 17 7 17'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
	-webkit-mask-size: contain;
	mask-size: contain;
	transition: transform 0.45s cubic-bezier(0.65, 0, 0.076, 1), background-color 0.45s;
}

.sb-button:hover::after,
.wp-element-button:hover::after,
button:hover::after,
input[type="submit"]:hover::after {
	transform: translateY(-50%) translate(0.4rem, 0);
}

/* Ghost Button Logic */
.sb-button--ghost {
	color: var(--sb-color-ink-soft);
	border: none;
	padding-left: 2.6rem;
	padding-right: 1.25rem;
}

.sb-button--ghost:hover,
.sb-button--ghost:focus-visible {
	color: var(--sb-color-ink);
	transform: translateY(-1px);
}

.sb-button--ghost::before {
	background: rgba(75, 73, 88, 0.06);
	width: 0;
	left: 0;
}

.sb-button--ghost:hover::before {
	width: 100%;
}

.sb-button--ghost::after {
	background-color: currentColor;
	left: 0.55rem;
	right: auto;
	width: 1rem;
	height: 1rem;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3Cpolyline points='12 5 19 12 12 19'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3Cpolyline points='12 5 19 12 12 19'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
}

.sb-button--ghost:hover::after {
	transform: translateY(-50%) translateX(3px);
}

.sb-link-button,
.sb-section-link {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: var(--sb-color-ink-soft);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-decoration-color: color-mix(in srgb, var(--sb-color-accent) 42%, transparent);
	text-underline-offset: 0.18em;
	transition:
		color var(--sb-transition-base),
		text-decoration-color var(--sb-transition-base),
		opacity var(--sb-transition-base);
}

.sb-section-link__icon {
	width: 1rem;
	height: 1rem;
	stroke-width: 1.8;
}

.sb-lucide-icon {
	display: inline-block;
	width: 1rem;
	height: 1rem;
	flex: 0 0 auto;
	stroke-width: 1.8;
}

/* Inline Lucide static SVGs (assets/icons/lucide/): match runtime Lucide sizing. */
.sb-lucide-static-svg,
.sb-icon {
	display: inline-block;
	width: 1em;
	height: 1em;
	max-width: 100%;
	flex: 0 0 auto;
	vertical-align: middle;
	stroke: currentColor;
	stroke-width: 1.8;
}

.sb-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sb-space-sm);
}

.sb-section--dark .sb-link-button,
.sb-section--dark .sb-section-link {
	color: rgba(255, 247, 248, 0.82);
	text-decoration-color: rgba(255, 247, 248, 0.38);
}

.sb-link-button:hover,
.sb-link-button:focus-visible,
.sb-section-link:hover,
.sb-section-link:focus-visible {
	text-decoration-color: currentColor;
}

.sb-section-link--button {
	white-space: nowrap;
}

.sb-card,
.sb-panel,
.sb-empty-state,
.sb-entry-content blockquote,
.wp-block-group.is-style-default {
	border: 1px solid var(--sb-color-border);
	border-radius: var(--sb-radius-lg);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(244, 246, 251, 0.6));
	box-shadow: var(--sb-shadow-card);
	backdrop-filter: blur(10px);
}

.sb-section--dark .sb-card,
.sb-section--dark .sb-panel,
.sb-empty-state--dark {
	border-color: rgba(255, 247, 248, 0.12);
	background: linear-gradient(180deg, rgba(255, 247, 248, 0.06), rgba(255, 247, 248, 0.03));
	box-shadow: none;
}

.sb-empty-state,
.sb-panel,
.sb-surface {
	padding: clamp(1.35rem, 2vw, 2rem);
}

.sb-surface {
	border: 1px solid var(--sb-color-border);
	border-radius: var(--sb-radius-lg);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(244, 246, 251, 0.6));
	box-shadow: var(--sb-shadow-card);
	backdrop-filter: blur(10px);
}

.sb-section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: var(--sb-space-lg);
	margin-bottom: clamp(1.8rem, 3vw, 2.75rem);
}

.sb-entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--sb-space-xs);
	align-items: center;
	color: var(--sb-color-muted-strong);
	font-size: 0.78rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.sb-page-header {
	display: flex;
	flex-direction: column;
	gap: var(--sb-space-sm);
}

.sb-article--hero-start {
	margin-top: calc(var(--sb-space-section) * -1);
}

.sb-article {
	display: flex;
	flex-direction: column;
	gap: var(--sb-space-lg);
}

.sb-entry-content {
	font-size: 1.05rem;
}

.sb-entry-content>* {
	max-width: var(--sb-content);
}

.sb-entry-content > .sb-section,
.sb-entry-content > .sb-statement-strip,
.sb-entry-content > .sb-cta-immersive,
.sb-entry-content > .sb-hero-premium,
.sb-entry-content > .sb-image-slider,
.sb-entry-content > .sb-section-intro,
.sb-entry-content > .sb-marquee {
	max-width: none;
}

.sb-entry-content--editorial > .sb-section,
.sb-entry-content--editorial > .sb-statement-strip,
.sb-entry-content--editorial > .sb-cta-immersive,
.sb-entry-content--editorial > .sb-hero-premium,
.sb-entry-content--editorial > .sb-image-slider,
.sb-entry-content--editorial > .sb-section-intro,
.sb-entry-content--editorial > .sb-marquee {
	width: 100%;
}

.sb-entry-content--editorial > .sb-section-intro {
	padding-left: var(--sb-gutter);
	padding-right: var(--sb-gutter);
}


.sb-entry-content>*+* {
	margin-top: var(--sb-space-md);
}

.sb-entry-content a {
	text-decoration: underline;
	text-decoration-color: rgba(158, 161, 181, 0.42);
	text-underline-offset: 0.2em;
}

.sb-entry-content .sb-button,
.sb-entry-content .sb-section-link,
.sb-entry-content .sb-card__link,
.sb-entry-content .sb-card__meta-link {
	text-decoration: none;
}

.sb-entry-content blockquote {
	margin: var(--sb-space-lg) 0;
	padding: var(--sb-space-lg);
}

.sb-entry-content> :where(h2, h3, h4) {
	margin-top: var(--sb-space-xl);
}

.sb-cta-immersive,
.wp-block-sandra-bamboo-cta-immersive {
	margin-bottom: 0 !important;
}

.sb-site-footer {
	padding: clamp(4.75rem, 7vw, 6.5rem) 0 clamp(1.75rem, 3vw, 2.6rem);
	border-top: 1px solid rgba(75, 73, 88, 0.08);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(246, 247, 251, 0.58)),
		radial-gradient(circle at 12% 8%, rgba(158, 161, 181, 0.08), transparent 28%);
}

.sb-footer-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr) minmax(0, 1.35fr);
	grid-template-areas: "brand spacer menus";
	column-gap: var(--sb-space-xl);
	row-gap: var(--sb-space-xl);
	margin-bottom: clamp(2.8rem, 5vw, 4.25rem);
}

.sb-footer-identity {
	grid-area: brand;
}

.sb-footer-spacer {
	grid-area: spacer;
	min-height: 0;
	pointer-events: none;
}

.sb-footer-menus {
	grid-area: menus;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 11.5rem));
	column-gap: clamp(0.65rem, 1.5vw, 1.1rem);
	row-gap: var(--sb-space-md);
	justify-content: end;
	align-content: start;
}

.sb-footer-column {
	display: flex;
	flex-direction: column;
	gap: clamp(0.85rem, 1.6vw, 1.2rem);
}

.sb-footer-logo {
	display: inline-block;
	font-family: var(--sb-font-heading);
	font-size: 1.4rem;
	font-weight: 600;
	letter-spacing: -0.02em;
	color: var(--sb-color-ink);
}

.sb-footer-description {
	max-width: 38ch;
	font-weight: 300;
	font-size: clamp(1.08rem, 1rem + 0.34vw, 1.24rem);
	color: var(--sb-color-ink-soft);
	line-height: 1.56;
}

.sb-footer-title {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--sb-color-muted-strong);
}

.sb-footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.sb-footer-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	width: fit-content;
	max-width: 100%;
	font-weight: 300;
	font-size: 0.94rem;
	color: var(--sb-color-ink-soft);
	text-decoration: none;
	transition:
		color var(--sb-transition-base),
		opacity var(--sb-transition-base),
		transform var(--sb-transition-base);
}

.sb-footer-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.18em;
	width: 100%;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform 260ms ease;
	opacity: 0.45;
}

.sb-footer-link:hover::after,
.sb-footer-link:focus-visible::after {
	transform: scaleX(1);
}

.sb-footer-link:hover,
.sb-footer-link:focus-visible {
	color: var(--sb-color-ink);
	transform: translateY(-1px);
}

.sb-footer-link:focus-visible {
	outline: none;
}

.sb-footer-link__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: inherit;
	opacity: 0.78;
}

.sb-footer-link__icon-svg {
	display: block;
	width: 0.9rem;
	height: 0.9rem;
	stroke-width: 1.6;
}

.sb-footer-link__text {
	line-height: 1.35;
}

.sb-footer-socials {
	display: flex;
	gap: 1rem;
	margin-top: var(--sb-space-md);
}

.sb-footer-socials .sb-social-link {
	position: relative;
	z-index: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.2rem;
	height: 2.2rem;
	border-radius: 50%;
	overflow: hidden;
	isolation: isolate;
	background: rgba(75, 73, 88, 0.05);
	color: var(--sb-color-ink-soft);
	transition:
		color 280ms ease,
		background 280ms ease,
		transform 280ms ease,
		border-color 280ms ease;
}

.sb-footer-socials .sb-social-link::before {
	content: "";
	position: absolute;
	inset: -40%;
	background: var(--sb-color-ink);
	transform: translate(-118%, 118%) rotate(14deg);
	transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
	z-index: 0;
	pointer-events: none;
}

.sb-footer-socials .sb-social-link:nth-child(even)::before {
	transform: translate(118%, 118%) rotate(-14deg);
}

.sb-footer-socials .sb-social-link:hover,
.sb-footer-socials .sb-social-link:focus-visible {
	color: var(--sb-color-white);
	transform: translateY(-1px);
}

.sb-footer-socials .sb-social-link:hover::before,
.sb-footer-socials .sb-social-link:focus-visible::before {
	transform: translate(0, 0) rotate(14deg);
}

.sb-footer-socials .sb-social-link:nth-child(even):hover::before,
.sb-footer-socials .sb-social-link:nth-child(even):focus-visible::before {
	transform: translate(0, 0) rotate(-14deg);
}

.sb-footer-socials .sb-social-link:focus-visible {
	outline: none;
	box-shadow: inset 0 0 0 2px rgba(255, 253, 253, 0.45);
}

.sb-footer-socials .sb-social-link svg {
	position: relative;
	z-index: 1;
	width: 1.1rem;
	height: 1.1rem;
	fill: currentColor;
	display: block;
	transition:
		color 280ms ease,
		fill 280ms ease,
		stroke 280ms ease;
}

.sb-footer-logo svg {
	height: 1.5rem;
	width: auto;
	max-width: 340px;
	display: block;
	fill: currentColor;
}


.sb-sub-footer {
	padding-top: clamp(1.35rem, 2.6vw, 2.1rem);
	border-top: 1px solid rgba(75, 73, 88, 0.05);
}

.sb-sub-footer__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--sb-color-muted-strong);
	font-size: 0.92rem;
	font-weight: 300;
}

.sb-heart-icon {
	display: inline-block;
	vertical-align: middle;
	width: 1rem;
	height: 1rem;
	margin: 0 0.15rem;
	stroke: var(--sb-color-accent);
	stroke-width: 2.5;
	fill: none;
}

.pagination {
	display: flex;
	justify-content: center;
	margin-top: var(--sb-space-lg);
}

.nav-links {
	display: inline-flex;
	flex-wrap: wrap;
	gap: var(--sb-space-xs);
	align-items: center;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.75rem;
	min-height: 2.75rem;
	padding: 0 var(--sb-space-sm);
	border: 1px solid var(--sb-color-border);
	border-radius: var(--sb-radius-pill);
}

.page-numbers.current {
	background: var(--sb-color-ink);
	color: var(--sb-color-bg);
}

@media (max-width: 960px) {

	.sb-site-header {
		padding: 0.95rem 0;
	}

	.sb-site-header.is-scrolled {
		padding: 0.6rem 0;
	}

	.sb-site-header__inner {
		position: relative;
		flex-direction: row;
		align-items: center;
	}

	.sb-site-footer__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.sb-brand__link svg {
		height: 1.22rem;
		max-width: min(60vw, 228px);
	}

	.sb-site-header.is-scrolled .sb-brand__link svg {
		height: 1rem;
		max-width: min(54vw, 198px);
	}

	.sb-nav-toggle {
		position: relative;
		z-index: 80;
		display: inline-grid;
		place-items: center;
		width: 2.35rem;
		height: 2.35rem;
		padding: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		color: var(--sb-color-ink);
		cursor: pointer;
	}

	.sb-site-header:not(.is-scrolled) .sb-nav-toggle {
		color: rgba(255, 255, 255, 0.88);
		background: transparent;
	}

	body.sb-has-standard-header .sb-site-header:not(.is-scrolled) .sb-nav-toggle,
	.sb-site-header.is-scrolled .sb-nav-toggle {
		color: var(--sb-color-ink);
		background: transparent;
	}

	body.is-menu-open .sb-nav-toggle {
		color: var(--sb-color-white);
	}

	body.is-menu-open .sb-site-header .sb-nav-toggle,
	body.is-menu-open .sb-site-header.is-scrolled .sb-nav-toggle,
	body.is-menu-open.sb-has-standard-header .sb-site-header:not(.is-scrolled) .sb-nav-toggle {
		color: rgba(255, 253, 253, 0.96);
	}

	.sb-nav-toggle__icon {
		grid-area: 1 / 1;
		width: 1.45rem;
		height: 1.45rem;
		transform-origin: center;
		transition: opacity var(--sb-transition-base), transform var(--sb-transition-base);
	}

	.sb-nav-toggle__icon--close {
		opacity: 0;
		transform: scale(0.82) rotate(-12deg);
	}

	body.is-menu-open .sb-nav-toggle__icon--menu {
		opacity: 0;
		transform: scale(0.82) rotate(12deg);
	}

	body.is-menu-open .sb-nav-toggle__icon--close {
		opacity: 1;
		transform: scale(1) rotate(0);
	}

	.sb-nav {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 70;
		display: grid;
		align-content: center;
		width: min(88vw, 25rem);
		height: 100svh;
		padding: clamp(5rem, 12vw, 7rem) var(--sb-gutter) var(--sb-space-xl);
		background: rgba(46, 44, 56, 0.98);
		border-left: 1px solid rgba(255, 253, 253, 0.1);
		box-shadow: -2rem 0 4rem rgba(35, 34, 43, 0.28);
		transform: translateX(100%);
		opacity: 0;
		visibility: hidden;
		will-change: transform, opacity;
		transition:
			transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
			opacity 320ms ease,
			visibility 0s linear 420ms;
	}

	body.is-menu-open .sb-nav {
		transform: translateX(0);
		opacity: 1;
		visibility: visible;
		transition:
			transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
			opacity 320ms ease,
			visibility 0s linear 0s;
	}

	body.is-menu-open {
		overflow: hidden;
	}

	.sb-nav__menu {
		display: grid;
		gap: var(--sb-space-md);
	}

	.sb-nav__menu a,
	.sb-site-header:not(.is-scrolled) .sb-nav__menu a,
	.sb-site-header.is-scrolled .sb-nav__menu a,
	body.sb-has-standard-header .sb-site-header:not(.is-scrolled) .sb-nav__menu a {
		color: rgba(255, 253, 253, 0.9);
		font-size: clamp(1.65rem, 8vw, 2.55rem);
		line-height: 1;
		letter-spacing: 0;
	}

	.sb-nav__menu a:hover,
	.sb-nav__menu a:focus-visible,
	.sb-site-header:not(.is-scrolled) .sb-nav__menu a:hover,
	.sb-site-header.is-scrolled .sb-nav__menu a:hover,
	.sb-site-header.is-scrolled .sb-nav__menu a:focus-visible,
	body.sb-has-standard-header .sb-site-header:not(.is-scrolled) .sb-nav__menu a:hover {
		color: var(--sb-color-white);
	}

	.sb-grid--cards,
	.sb-post-grid,
	.sb-grid--products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sb-section-heading {
		flex-direction: column;
		align-items: flex-start;
	}

	.sb-footer-spacer {
		display: none;
	}

	.sb-footer-grid {
		grid-template-columns: minmax(0, 1fr);
		grid-template-areas:
			"brand"
			"menus";
	}

	.sb-footer-menus {
		justify-content: stretch;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		column-gap: clamp(0.65rem, 3vw, 1.25rem);
	}
}

@media (prefers-reduced-motion: reduce) {
	.sb-nav,
	.sb-nav-toggle__icon {
		transition: none;
	}

	.sb-footer-link::after {
		transition: none;
	}

	.sb-button,
	.sb-footer-link,
	.sb-footer-socials .sb-social-link {
		transition: none;
		transform: none;
	}

	.sb-button::before,
	.sb-button::after,
	.wp-element-button::before,
	.wp-element-button::after,
	button::before,
	button::after,
	input[type="submit"]::before,
	input[type="submit"]::after {
		transition: none;
	}

	.sb-footer-socials .sb-social-link::before {
		display: none;
	}

	.sb-footer-socials .sb-social-link {
		transition: color 220ms ease, background 220ms ease;
	}

	.sb-footer-socials .sb-social-link:hover,
	.sb-footer-socials .sb-social-link:focus-visible {
		background: var(--sb-color-ink);
		color: var(--sb-color-white);
	}

	.sb-footer-socials .sb-social-link svg {
		transition:
			color 220ms ease,
			fill 220ms ease,
			stroke 220ms ease;
	}
}

@media (max-width: 680px) {

	h1 {
		font-size: clamp(3.7rem, 15vw, 5.7rem);
	}

	.sb-section,
	.sb-shell {
		padding: var(--sb-space-section-tight) 0;
	}

	.sb-grid--cards,
	.sb-post-grid,
	.sb-grid--products {
		grid-template-columns: 1fr;
	}

	.sb-page-title,
	.sb-display-title {
		max-width: 100%;
	}

	.sb-card,
	.sb-panel,
	.sb-empty-state,
	.sb-surface {
		padding: var(--sb-space-md);
	}

	.sb-footer-grid {
		grid-template-columns: minmax(0, 1fr);
		grid-template-areas:
			"brand"
			"menus";
		row-gap: var(--sb-space-lg);
		column-gap: var(--sb-space-lg);
	}

	.sb-footer-menus {
		grid-template-columns: minmax(0, 1fr);
		row-gap: var(--sb-space-lg);
	}

	.sb-sub-footer__inner {
		flex-direction: column;
		gap: var(--sb-space-sm);
		align-items: flex-start;
	}
}
