/*
 * Saumil Parikh — presentation layer.
 *
 * Colour tokens come from CSS custom properties printed in wp_head by
 * inc/palettes.php. No brand colour literals here except structural neutrals
 * already mirrored in the token printer.
 */

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

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	scroll-padding-top: 120px;
}

body {
	margin: 0;
	background: var(--sp-bg);
	color: var(--sp-text-muted);
	font-family: "DM Sans", system-ui, sans-serif;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

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

figure {
	margin: 0;
}

h1,
h2,
h3,
h4 {
	font-family: "Syne", system-ui, sans-serif;
	font-weight: 500;
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0;
	color: var(--sp-text);
	text-transform: capitalize;
}

p {
	margin: 0 0 1em;
}

p:last-child {
	margin-bottom: 0;
}

a {
	color: var(--sp-accent-text);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

a:hover {
	color: var(--sp-text);
}

button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	cursor: pointer;
}

:where(a, button, [tabindex]):focus-visible {
	outline: 2px solid var(--sp-accent-text);
	outline-offset: 3px;
	border-radius: 4px;
}

.sp-prose {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--sp-text-muted);
}

.sp-prose strong {
	color: var(--sp-text);
	font-weight: 500;
}

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

.sp-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100;
	padding: 12px 18px;
	background: var(--sp-surface);
	border: 1px solid var(--sp-hairline);
	border-radius: 0 0 10px 0;
	color: var(--sp-text);
}

.sp-skip:focus {
	left: 0;
}

/* Theme bar — palette + light/dark (neutral chrome, not palette-tinted) */

.sp-themebar {
	border-bottom: 1px solid var(--sp-hairline);
	background: var(--sp-bg-alt);
	font-size: 0.78rem;
}

.sp-themebar__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 1.5rem;
	min-height: 42px;
	padding-block: 0.35rem;
}

.sp-palette-switcher,
.sp-mode-switcher {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.4rem 0.55rem;
}

.sp-themebar__label {
	color: var(--sp-text-muted) !important;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 500;
	margin-right: 0.25rem;
}

body.sp-theme .sp-themebar__btn {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.4rem 0.75rem;
	border-radius: 999px;
	border: 1px solid var(--sp-hairline) !important;
	background: transparent !important;
	color: var(--sp-text) !important;
	cursor: pointer;
	font: inherit;
	font-weight: 500;
	letter-spacing: 0.04em;
	opacity: 0.72;
}

body.sp-theme .sp-themebar__btn:hover {
	opacity: 1;
	border-color: color-mix(in srgb, var(--sp-text) 35%, transparent) !important;
}

body.sp-theme .sp-themebar__btn[aria-pressed="true"] {
	opacity: 1;
	color: var(--sp-text) !important;
	border-color: var(--sp-text) !important;
	background: color-mix(in srgb, var(--sp-text) 10%, transparent) !important;
}

.sp-themebar__swatch {
	width: 16px;
	height: 16px;
	border-radius: 4px;
	flex-shrink: 0;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35), 0 0 0 1px rgba(0, 0, 0, 0.25) !important;
}

html[data-theme="light"] .sp-themebar__swatch {
	box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.12) !important;
}

/* Header sun/moon — always neutral, never palette blue */
body.sp-theme .sp-toggle,
body.sp-theme button.sp-toggle {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.35) !important;
	color: #ffffff !important;
	background: rgba(255, 255, 255, 0.06) !important;
	box-shadow: none !important;
	font-size: 1.05rem;
	line-height: 1;
}

html[data-theme="light"] body.sp-theme .sp-toggle,
html[data-theme="light"] body.sp-theme button.sp-toggle {
	border-color: rgba(18, 20, 29, 0.28) !important;
	color: #12141d !important;
	background: rgba(18, 20, 29, 0.05) !important;
}

body.sp-theme .sp-toggle:hover,
body.sp-theme button.sp-toggle:hover {
	border-color: rgba(255, 255, 255, 0.55) !important;
	color: #ffffff !important;
	background: rgba(255, 255, 255, 0.12) !important;
}

html[data-theme="light"] body.sp-theme .sp-toggle:hover,
html[data-theme="light"] body.sp-theme button.sp-toggle:hover {
	border-color: rgba(18, 20, 29, 0.45) !important;
	color: #12141d !important;
	background: rgba(18, 20, 29, 0.08) !important;
}

.sp-toggle__icon {
	display: block;
}

html[data-theme="dark"] .sp-toggle__icon--dark {
	display: none;
}

html[data-theme="light"] .sp-toggle__icon--light {
	display: none;
}

html[data-theme="light"] .sp-business__logo {
	box-shadow: 0 0 0 1px var(--sp-hairline);
}

html[data-theme="light"] .sp-hero {
	background:
		radial-gradient(ellipse 80% 60% at 70% 40%, color-mix(in srgb, var(--sp-primary) 16%, transparent), transparent 70%),
		radial-gradient(ellipse 50% 40% at 20% 80%, color-mix(in srgb, var(--sp-secondary) 12%, transparent), transparent 65%),
		var(--sp-bg);
}

html[data-theme="light"] .sp-brand__name {
	color: var(--sp-text);
}

@media (max-width: 700px) {
	.sp-themebar__label {
		display: none;
	}

	/* Keep Blue / Security labels visible — swatches alone were hard to see */
	.sp-themebar__btn-text {
		display: inline;
		font-size: 0.72rem;
	}
}

/* Layout */

.sp-container {
	width: min(100% - 2.5rem, var(--sp-container));
	margin-inline: auto;
}

.sp-container--narrow {
	width: min(100% - 2.5rem, var(--sp-narrow));
}

.sp-section {
	padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

.sp-section--alt {
	background: var(--sp-bg-alt);
}

.sp-section__head {
	text-align: center;
	max-width: 40rem;
	margin: 0 auto 2.75rem;
}

.sp-section__head--left {
	text-align: left;
	margin-left: 0;
	margin-right: 0;
}

.sp-section__title {
	font-size: clamp(1.85rem, 4vw, 2.75rem);
	font-weight: 500;
}

.sp-section__intro {
	margin-top: 0.85rem;
	color: var(--sp-text-muted);
	font-size: 1.1rem;
}

.sp-section__more {
	margin-top: 2rem;
	text-align: center;
}

.sp-eyebrow {
	margin: 0 0 0.65rem;
	font-family: "DM Sans", system-ui, sans-serif;
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--sp-accent-text);
}

/* Buttons */

.sp-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.85rem 1.55rem;
	border-radius: var(--sp-radius-pill);
	border: 1px solid transparent;
	font-family: "DM Sans", system-ui, sans-serif;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

/* Beat Elementor kit link/button colours so blue never sits on blue. */
body.sp-theme .sp-btn--primary,
body.sp-theme a.sp-btn--primary {
	background: var(--sp-secondary) !important;
	color: #ffffff !important;
	border-color: transparent !important;
}

body.sp-theme .sp-btn--primary:hover,
body.sp-theme a.sp-btn--primary:hover,
body.sp-theme .sp-btn--primary:focus,
body.sp-theme a.sp-btn--primary:focus {
	background: transparent !important;
	border-color: var(--sp-hairline) !important;
	color: var(--sp-text) !important;
}

body.sp-theme .sp-btn--ghost,
body.sp-theme a.sp-btn--ghost {
	background: transparent !important;
	border-color: var(--sp-hairline) !important;
	color: var(--sp-text) !important;
}

body.sp-theme .sp-btn--ghost:hover,
body.sp-theme a.sp-btn--ghost:hover {
	border-color: var(--sp-accent-text) !important;
	color: var(--sp-accent-text) !important;
}

body.sp-theme .sp-nav a {
	color: var(--sp-text-muted) !important;
}

body.sp-theme .sp-nav a:hover,
body.sp-theme .sp-nav .current-menu-item > a,
body.sp-theme .sp-nav .current_page_item > a {
	color: var(--sp-text) !important;
}

body.sp-theme h1,
body.sp-theme h2,
body.sp-theme h3,
body.sp-theme h4,
body.sp-theme .sp-hero__title,
body.sp-theme .sp-section__title,
body.sp-theme .sp-contact__title,
body.sp-theme .sp-business__title,
body.sp-theme .sp-business__title a,
body.sp-theme .sp-partner__name,
body.sp-theme .sp-principle__title,
body.sp-theme .sp-timeline__title,
body.sp-theme .sp-blog-card__title,
body.sp-theme .sp-blog-card__title a,
body.sp-theme .sp-brand__name,
body.sp-theme .sp-footer__name,
body.sp-theme .sp-trustband__list {
	color: var(--sp-text) !important;
}

body.sp-theme .sp-prose,
body.sp-theme .sp-hero__lede,
body.sp-theme .sp-section__intro,
body.sp-theme .sp-partner__role,
body.sp-theme .sp-blog-card__excerpt {
	color: var(--sp-text-muted) !important;
}

/* Header */

.sp-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: color-mix(in srgb, var(--sp-bg) 88%, transparent);
	backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--sp-hairline);
}

.sp-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: 72px;
}

.sp-brand {
	text-decoration: none;
	color: var(--sp-text);
}

.sp-brand__name {
	font-family: "Syne", system-ui, sans-serif;
	font-size: 1.15rem;
	font-weight: 600;
	letter-spacing: -0.02em;
}

.sp-nav__list {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sp-nav a {
	color: var(--sp-text-muted);
	text-decoration: none;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.sp-nav a:hover,
.sp-nav .current-menu-item > a {
	color: var(--sp-text);
}

.sp-header__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.sp-burger {
	display: none;
	width: 44px;
	height: 44px;
	place-items: center;
	color: var(--sp-text);
}

.sp-burger__close {
	display: none;
}

.sp-nav.is-open + .sp-header__actions .sp-burger__open,
.sp-header.is-nav-open .sp-burger__open {
	display: none;
}

.sp-header.is-nav-open .sp-burger__close {
	display: block;
}

@media (max-width: 900px) {
	.sp-burger {
		display: grid;
	}

	.sp-header__cta {
		display: none;
	}

	.sp-nav {
		position: fixed;
		inset: 72px 0 auto 0;
		background: var(--sp-bg-alt);
		border-bottom: 1px solid var(--sp-hairline);
		padding: 1.25rem 1.25rem 1.5rem;
		transform: translateY(-120%);
		opacity: 0;
		pointer-events: none;
		transition: transform 0.25s ease, opacity 0.25s ease;
	}

	.sp-header.is-nav-open .sp-nav {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}

	.sp-nav__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}
}

/* Hero */

.sp-hero {
	position: relative;
	padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 9vw, 6rem);
	overflow: hidden;
	background:
		radial-gradient(ellipse 80% 60% at 70% 40%, color-mix(in srgb, var(--sp-primary) 28%, transparent), transparent 70%),
		radial-gradient(ellipse 50% 40% at 20% 80%, color-mix(in srgb, var(--sp-secondary) 18%, transparent), transparent 65%),
		var(--sp-bg);
}

.sp-hero__stage {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.sp-hero__title {
	font-size: clamp(2.4rem, 6vw, 4rem);
	font-weight: 600;
	margin-bottom: 0.75rem;
}

.sp-hero__roles {
	min-height: 1.35em;
	margin: 0 0 1.25rem;
	font-family: "Syne", system-ui, sans-serif;
	font-size: clamp(1.35rem, 3vw, 2.1rem);
	font-weight: 700;
	background: var(--sp-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.sp-hero__role {
	display: inline-block;
	animation: sp-role-in 0.45s ease;
}

@keyframes sp-role-in {
	from {
		opacity: 0;
		transform: translateY(0.4em);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.sp-hero__lede {
	max-width: 34rem;
	font-size: 1.125rem;
	color: var(--sp-text-muted);
	margin-bottom: 1.75rem;
}

.sp-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

.sp-hero__portrait {
	justify-self: center;
	width: min(100%, 420px);
	aspect-ratio: 1;
	border-radius: 50%;
	overflow: hidden;
	background: var(--sp-surface);
	box-shadow: 0 0 0 1px var(--sp-hairline), 0 30px 80px rgba(0, 0, 0, 0.45);
}

.sp-hero__portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

@media (max-width: 800px) {
	.sp-hero__stage {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.sp-hero__lede {
		margin-inline: auto;
	}

	.sp-hero__actions {
		justify-content: center;
	}

	.sp-hero__figure {
		order: -1;
	}

	.sp-hero__portrait {
		width: min(70vw, 280px);
	}
}

/* Trust band */

.sp-trustband {
	border-block: 1px solid var(--sp-hairline);
	background: var(--sp-bg-alt);
	padding: 1.1rem 0;
}

.sp-trustband__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem 2rem;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.92rem;
	color: var(--sp-text);
}

.sp-trustband__list li {
	position: relative;
}

.sp-trustband__list li:not(:last-child)::after {
	content: "";
	position: absolute;
	right: -1.15rem;
	top: 50%;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: var(--sp-primary);
	transform: translateY(-50%);
}

@media (max-width: 700px) {
	.sp-trustband__list li:not(:last-child)::after {
		display: none;
	}
}

/* Businesses */

.sp-business-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.sp-business {
	padding: 1.75rem 1.5rem;
	border: 1px solid var(--sp-hairline);
	border-radius: var(--sp-radius);
	background: var(--sp-surface);
	text-align: center;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.sp-business:hover {
	border-color: color-mix(in srgb, var(--sp-primary) 55%, transparent);
	transform: translateY(-3px);
}

.sp-business__logo {
	width: 96px;
	height: 96px;
	margin: 0 auto 1.15rem;
	border-radius: 18px;
	overflow: hidden;
	background: #fff;
}

.sp-business__logo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sp-business__title {
	font-size: 1.25rem;
	margin-bottom: 0.4rem;
}

.sp-business__title a {
	color: inherit;
	text-decoration: none;
}

.sp-business__tagline {
	font-size: 0.92rem;
	color: var(--sp-accent-text);
	margin-bottom: 0.75rem;
}

.sp-business__body {
	font-size: 0.95rem;
}

@media (max-width: 900px) {
	.sp-business-grid {
		grid-template-columns: 1fr;
	}
}

/* About */

.sp-about {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: center;
}

.sp-about__figure figure {
	border-radius: 24px;
	overflow: hidden;
	background: var(--sp-surface);
	aspect-ratio: 1;
}

.sp-about__figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.sp-about__copy .sp-section__title {
	margin-bottom: 1rem;
}

.sp-about__copy .sp-btn {
	margin-top: 0.5rem;
}

@media (max-width: 800px) {
	.sp-about {
		grid-template-columns: 1fr;
	}

	.sp-about__figure {
		max-width: 280px;
	}
}

/* Principles */

.sp-principle-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.sp-principle {
	padding: 1.75rem 1.5rem;
	border-top: 3px solid transparent;
	border-image: var(--sp-gradient) 1;
	background: var(--sp-surface);
}

.sp-principle__title {
	font-size: 1.2rem;
	margin-bottom: 0.75rem;
}

@media (max-width: 900px) {
	.sp-principle-grid {
		grid-template-columns: 1fr;
	}
}

/* Blog */

.sp-blog-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.sp-blog-card {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--sp-hairline);
	border-radius: var(--sp-radius);
	overflow: hidden;
	background: var(--sp-surface);
}

.sp-blog-card__media {
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--sp-surface-raised);
}

.sp-blog-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.sp-blog-card:hover .sp-blog-card__media img {
	transform: scale(1.04);
}

.sp-blog-card__body {
	padding: 1.25rem 1.35rem 1.5rem;
}

.sp-blog-card__title {
	font-size: 1.15rem;
	margin-bottom: 0.5rem;
}

.sp-blog-card__title a {
	color: inherit;
	text-decoration: none;
}

.sp-blog-card__excerpt {
	font-size: 0.95rem;
	color: var(--sp-text-muted);
}

@media (max-width: 900px) {
	.sp-blog-grid {
		grid-template-columns: 1fr;
	}
}

/* Partners */

.sp-partner-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
}

.sp-partner {
	text-align: center;
	padding: 1.25rem;
}

.sp-partner__photo {
	width: min(100%, 180px);
	aspect-ratio: 1;
	margin: 0 auto 1rem;
	border-radius: 50%;
	overflow: hidden;
	background: var(--sp-surface);
	border: 1px solid var(--sp-hairline);
}

.sp-partner__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sp-partner__name {
	font-size: 1.15rem;
	margin-bottom: 0.35rem;
}

.sp-partner__role {
	font-size: 0.92rem;
	color: var(--sp-text-muted);
	margin-bottom: 0.75rem;
}

.sp-partner__link a {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	text-decoration: none;
	color: var(--sp-accent-text);
}

@media (max-width: 1000px) {
	.sp-partner-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.sp-partner-grid {
		grid-template-columns: 1fr;
	}
}

/* Journey timeline */

.sp-journey-hero .sp-section__title {
	font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.sp-timeline {
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: 46rem;
	margin-inline: auto;
	border-left: 2px solid var(--sp-hairline);
}

.sp-timeline__item {
	position: relative;
	padding: 0 0 2.5rem 1.75rem;
}

.sp-timeline__item::before {
	content: "";
	position: absolute;
	left: -6px;
	top: 0.35rem;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--sp-gradient);
}

.sp-timeline__period {
	display: inline-block;
	margin-bottom: 0.4rem;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sp-accent-text);
}

.sp-timeline__title {
	font-size: 1.35rem;
	margin-bottom: 0.55rem;
}

/* Contact + footer */

.sp-contact {
	padding: clamp(3.5rem, 8vw, 5.5rem) 0;
	background:
		radial-gradient(ellipse 70% 80% at 10% 50%, color-mix(in srgb, var(--sp-primary) 22%, transparent), transparent 60%),
		var(--sp-bg-alt);
	border-top: 1px solid var(--sp-hairline);
}

.sp-contact__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
	gap: 2.5rem;
	align-items: start;
}

.sp-contact__title {
	font-size: clamp(1.85rem, 4vw, 2.6rem);
	margin-bottom: 0.85rem;
}

.sp-contact__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.85rem;
}

.sp-contact__link {
	display: flex;
	gap: 0.85rem;
	align-items: center;
	padding: 1rem 1.15rem;
	border: 1px solid var(--sp-hairline);
	border-radius: var(--sp-radius);
	background: var(--sp-surface);
	text-decoration: none;
	color: var(--sp-text);
	transition: border-color 0.2s ease;
}

.sp-contact__link:hover {
	border-color: var(--sp-primary);
	color: var(--sp-text);
}

.sp-contact__icon {
	color: var(--sp-accent-text);
}

.sp-contact__label {
	display: block;
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--sp-text-muted);
}

.sp-contact__value {
	display: block;
	font-weight: 500;
}

@media (max-width: 800px) {
	.sp-contact__inner {
		grid-template-columns: 1fr;
	}
}

.sp-footer {
	padding: 2.5rem 0 2rem;
	border-top: 1px solid var(--sp-hairline);
	background: var(--sp-bg);
}

.sp-footer__note {
	max-width: 40rem;
	margin: 0 0 1.75rem;
	font-size: 0.9rem;
	color: var(--sp-text-muted);
}

.sp-footer__bar {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
	align-items: center;
	margin-bottom: 1.25rem;
}

.sp-footer__name {
	font-family: "Syne", system-ui, sans-serif;
	color: var(--sp-text);
	font-weight: 600;
}

.sp-footer__list {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.sp-footer__list a {
	color: var(--sp-text-muted);
	text-decoration: none;
	font-size: 0.85rem;
}

.sp-footer__copy,
.sp-footer__credit {
	margin: 0;
	font-size: 0.85rem;
	color: var(--sp-text-muted);
}

.sp-footer__credit a {
	color: var(--sp-accent-text);
}

/* Article / page */

.sp-article__head {
	margin-bottom: 1.75rem;
}

.sp-article__media {
	margin: 0 0 1.75rem;
	border-radius: var(--sp-radius);
	overflow: hidden;
}

.sp-page__body,
.sp-article__body {
	font-size: 1.0625rem;
}

.sp-404 .sp-btn {
	margin-top: 0.5rem;
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}
