/* ==========================================================================
   Brightside Senior Care Marketing
   Truvita-inspired layout · Brightside color palette
   ========================================================================== */

:root {
	--brightside-sun: #FDBA35;
	--brightside-coral: #FF8F73;
	--brightside-aqua: #21BFD4;
	--brightside-sky: #8EDCF7;
	--brightside-mint: #A8D8B4;
	--brightside-sage: #8FB596;
	--brightside-lavender: #B8A7E8;
	--brightside-peach: #FFD0B8;
	--brightside-cream: #FFF7EA;
	--brightside-charcoal: #38424A;
	--brightside-slate: #5F6B75;
	--brightside-white: #FFFFFF;
	--brightside-teal: #1A4D56;

	--font-heading: "Hind Madurai", Georgia, ui-serif, serif;
	--font-body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	--container-max: 1340px;
	--topbar-height: 42px;
	--header-height: 88px;
	--radius-sm: 8px;
	--radius-md: 16px;
	--radius-lg: 24px;
	--radius-pill: 50px;
	--shadow-sm: 0 4px 20px rgba(56, 66, 74, 0.08);
	--shadow-md: 0 8px 32px rgba(56, 66, 74, 0.12);
	--shadow-lg: 0 16px 48px rgba(56, 66, 74, 0.16);
	--transition: 0.3s ease;
	--gradient-hero: linear-gradient(90deg, var(--brightside-charcoal) 0%, var(--brightside-aqua) 100%);
	--gradient-band: linear-gradient(135deg, var(--brightside-charcoal) 0%, var(--brightside-teal) 55%, var(--brightside-aqua) 100%);
}

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

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.7;
	color: var(--brightside-slate);
	background: var(--brightside-white);
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: var(--brightside-aqua);
	transition: color var(--transition);
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 700;
	line-height: 1.1;
	color: var(--brightside-charcoal);
	margin-top: 0;
	text-transform: capitalize;
}

p {
	margin-top: 0;
	margin-bottom: 1rem;
}

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

/* Accessibility
   -------------------------------------------------------------------------- */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background: var(--brightside-cream);
	clip: auto !important;
	clip-path: none;
	color: var(--brightside-charcoal);
	display: block;
	font-size: 0.875rem;
	height: auto;
	left: 8px;
	line-height: normal;
	padding: 12px 20px;
	text-decoration: none;
	top: 8px;
	width: auto;
	z-index: 100000;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-md);
}

:focus-visible {
	outline: 3px solid var(--brightside-aqua);
	outline-offset: 2px;
}

/* Layout
   -------------------------------------------------------------------------- */
.bs-container {
	width: 100%;
	max-width: var(--container-max);
	margin-inline: auto;
	padding-inline: clamp(1rem, 3vw, 2rem);
}

.bs-container--narrow {
	max-width: 760px;
}

.site-main {
	padding-top: calc(var(--topbar-height) + var(--header-height));
}

/* Top bar
   -------------------------------------------------------------------------- */
.bs-topbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1001;
	height: var(--topbar-height);
	background: var(--brightside-charcoal);
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.8125rem;
}

.bs-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 100%;
	gap: 1rem;
}

.bs-topbar__label {
	font-weight: 500;
	letter-spacing: 0.02em;
}

.bs-topbar__link {
	color: var(--brightside-sky);
	text-decoration: none;
	font-weight: 600;
	white-space: nowrap;
}

.bs-topbar__link:hover,
.bs-topbar__link:focus-visible {
	color: var(--brightside-sun);
}

/* Header
   -------------------------------------------------------------------------- */
.bs-header {
	position: fixed;
	top: var(--topbar-height);
	left: 0;
	right: 0;
	z-index: 1000;
	background: var(--brightside-white);
	border-bottom: 1px solid rgba(56, 66, 74, 0.08);
	transition: box-shadow var(--transition);
}

.bs-header.is-scrolled {
	box-shadow: var(--shadow-sm);
}

.bs-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	min-height: var(--header-height);
}

.bs-logo {
	width: auto;
	height: 52px;
	max-width: 220px;
	object-fit: contain;
}

.bs-header__nav {
	display: none;
	flex: 1;
	justify-content: center;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-menu a {
	display: block;
	padding: 0.5rem 1rem;
	font-family: var(--font-heading);
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--brightside-charcoal);
	text-decoration: none;
	text-transform: capitalize;
	border-radius: var(--radius-pill);
	transition: color var(--transition), background var(--transition);
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
	color: var(--brightside-aqua);
}

.bs-header__actions {
	display: none;
	align-items: center;
	gap: 1rem;
}

.bs-header__trial {
	font-family: var(--font-heading);
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--brightside-charcoal);
	text-decoration: none;
	text-transform: capitalize;
}

.bs-header__trial:hover,
.bs-header__trial:focus-visible {
	color: var(--brightside-aqua);
}

/* Mobile toggle */
.bs-mobile-toggle {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 44px;
	height: 44px;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	border-radius: var(--radius-sm);
}

.bs-hamburger-line {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--brightside-charcoal);
	border-radius: 2px;
	transition: transform var(--transition), opacity var(--transition);
}

.bs-mobile-toggle[aria-expanded="true"] .bs-hamburger-line:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.bs-mobile-toggle[aria-expanded="true"] .bs-hamburger-line:nth-child(2) {
	opacity: 0;
}

.bs-mobile-toggle[aria-expanded="true"] .bs-hamburger-line:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.bs-mobile-nav {
	position: fixed;
	inset: 0;
	z-index: 1100;
	background: rgba(56, 66, 74, 0.55);
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--transition), visibility var(--transition);
}

.bs-mobile-nav.is-open {
	opacity: 1;
	visibility: visible;
}

.bs-mobile-nav__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(380px, 92vw);
	height: 100%;
	background: var(--brightside-white);
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform var(--transition);
	overflow-y: auto;
}

.bs-mobile-nav.is-open .bs-mobile-nav__panel {
	transform: translateX(0);
}

.bs-mobile-nav__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 2rem;
}

.bs-mobile-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: none;
	background: var(--brightside-cream);
	border-radius: var(--radius-sm);
	cursor: pointer;
	color: var(--brightside-charcoal);
}

.mobile-menu-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.mobile-menu-list a {
	display: block;
	padding: 0.875rem 0;
	font-family: var(--font-heading);
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--brightside-charcoal);
	text-decoration: none;
	text-transform: capitalize;
	border-bottom: 1px solid rgba(56, 66, 74, 0.08);
}

.mobile-menu-list a:hover,
.mobile-menu-list a:focus-visible {
	color: var(--brightside-aqua);
}

.bs-mobile-nav__cta {
	margin-top: auto;
	padding-top: 2rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

/* Typography helpers
   -------------------------------------------------------------------------- */
.bs-label {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 600;
	line-height: 1;
	text-transform: capitalize;
	color: var(--brightside-aqua);
	margin: 0 0 1rem;
	letter-spacing: 0.02em;
}

.bs-label--light {
	color: var(--brightside-sky);
}

.bs-heading {
	font-size: clamp(1.75rem, 3.5vw, 3rem);
	margin-bottom: 1rem;
}

.bs-heading--light {
	color: var(--brightside-white);
}

.bs-lead {
	font-size: 1.0625rem;
	line-height: 1.75;
	margin-bottom: 1.5rem;
}

.bs-text {
	font-size: 1rem;
	line-height: 1.75;
	margin-bottom: 1.5rem;
}

.bs-text--light {
	color: rgba(255, 255, 255, 0.88);
}

.bs-trust-line {
	font-size: 0.875rem;
	font-style: italic;
	color: rgba(255, 255, 255, 0.75);
	margin: 1rem 0 0;
}

/* Buttons — Truvita pill style
   -------------------------------------------------------------------------- */
.bs-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	box-sizing: border-box;
	padding: 15px 30px;
	min-height: 52px;
	font-family: var(--font-heading);
	font-size: 1.15rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	text-transform: capitalize;
	border: 2px solid transparent;
	border-radius: var(--radius-pill);
	cursor: pointer;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	white-space: normal;
	text-align: center;
}

.bs-btn--primary {
	background: var(--brightside-aqua);
	color: var(--brightside-white);
	box-shadow: 0 4px 16px rgba(33, 191, 212, 0.35);
}

.bs-btn--primary:hover,
.bs-btn--primary:focus-visible {
	background: var(--brightside-teal);
	color: var(--brightside-white);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(33, 191, 212, 0.4);
}

.bs-btn--warm {
	background: linear-gradient(135deg, var(--brightside-sun) 0%, var(--brightside-coral) 100%);
	color: var(--brightside-charcoal);
	box-shadow: 0 4px 16px rgba(253, 186, 53, 0.35);
}

.bs-btn--warm:hover,
.bs-btn--warm:focus-visible {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(253, 186, 53, 0.45);
	color: var(--brightside-charcoal);
}

.bs-btn--ghost {
	background: transparent;
	color: var(--brightside-white);
	border-color: rgba(255, 255, 255, 0.55);
}

.bs-btn--ghost:hover,
.bs-btn--ghost:focus-visible {
	background: rgba(255, 255, 255, 0.12);
	border-color: var(--brightside-white);
	color: var(--brightside-white);
}

.bs-btn--outline {
	background: transparent;
	color: var(--brightside-charcoal);
	border-color: var(--brightside-aqua);
}

.bs-btn--outline:hover,
.bs-btn--outline:focus-visible {
	background: var(--brightside-aqua);
	color: var(--brightside-white);
	border-color: var(--brightside-aqua);
}

.bs-btn--sm {
	padding: 12px 24px;
	font-size: 0.9375rem;
}

.bs-btn--block {
	width: 100%;
}

.bs-btn-group {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem;
	align-items: stretch;
	width: min(100%, 440px);
	margin-bottom: 0.5rem;
}

.bs-btn-group .bs-btn {
	width: 100%;
	min-height: 52px;
	padding: 15px 30px;
	box-sizing: border-box;
	justify-content: center;
	text-align: center;
	white-space: normal;
}

/* Side-by-side equal CTAs when two buttons fit */
@media (min-width: 640px) {
	.bs-btn-group:has(> .bs-btn:nth-child(2):last-child) {
		grid-template-columns: 1fr 1fr;
		width: min(100%, 640px);
	}
}

.bs-link-arrow {
	display: inline-block;
	margin-top: auto;
	font-family: var(--font-heading);
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--brightside-aqua);
	text-decoration: none;
	text-transform: capitalize;
}

.bs-link-arrow:hover,
.bs-link-arrow:focus-visible {
	color: var(--brightside-coral);
}

/* Hero
   -------------------------------------------------------------------------- */
.bs-hero.bs-banner {
	min-height: 90vh;
	display: flex;
	flex-direction: column;
}

.bs-hero__body {
	position: relative;
	z-index: 1;
	flex: 1;
	display: flex;
	align-items: center;
	padding-block: 4rem 6rem;
}

.bs-hero__content,
.bs-hero .bs-banner__content {
	color: var(--brightside-white);
}

.bs-hero__content .bs-label,
.bs-hero .bs-banner__content .bs-label {
	color: var(--brightside-sky);
}

.bs-hero__title {
	font-size: clamp(2rem, 4.5vw, 4.5rem);
	color: var(--brightside-white);
	margin-bottom: 1.25rem;
	line-height: 1.08;
}

.bs-hero__content .bs-lead,
.bs-hero .bs-banner__content .bs-lead {
	color: rgba(255, 255, 255, 0.9);
}

/* Hero banner — subject condensed left, copy inset from right edge */
.bs-banner--hero {
	--hero-media-offset: -150px;
	--hero-content-offset: 150px;
}

.bs-banner--hero.bs-banner--copy-right .bs-banner__overlay {
	background: linear-gradient(
		90deg,
		transparent 0%,
		transparent 50%,
		rgba(56, 66, 74, 0.2) 62%,
		rgba(56, 66, 74, 0.65) 78%,
		rgba(56, 66, 74, 0.85) 100%
	);
}

/* Hero feature cards — overlapping bottom strip */
.bs-hero__features {
	position: relative;
	z-index: 2;
	margin-top: -4rem;
	padding-bottom: 4rem;
}

.bs-feature-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

.bs-feature-card {
	background: var(--brightside-white);
	border-radius: var(--radius-md);
	padding: 2rem 1.75rem;
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(56, 66, 74, 0.06);
	position: relative;
}

.bs-feature-card__num {
	display: block;
	font-family: var(--font-heading);
	font-size: 3rem;
	font-weight: 700;
	line-height: 1;
	color: var(--brightside-peach);
	margin-bottom: 0.75rem;
}

.bs-feature-card__title {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

.bs-feature-card p {
	font-size: 0.9375rem;
	color: var(--brightside-slate);
	margin: 0;
	line-height: 1.6;
}

/* Full-bleed banner sections
   -------------------------------------------------------------------------- */
.bs-banner {
	position: relative;
	min-height: clamp(600px, 70vh, 900px);
	display: flex;
	align-items: center;
	overflow: hidden;
	background-color: var(--brightside-charcoal);
	background-image: var(--banner-image);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* Video banner media layer */
.bs-banner--video {
	background-image: var(--banner-image);
	background-size: cover;
	background-position: center;
}

/* Desktop: mobile-frame is a pass-through wrapper */
.bs-banner__mobile-frame {
	display: contents;
}

.bs-banner__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	background-color: var(--brightside-charcoal);
	background-image: var(--banner-image);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.bs-banner__poster {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	z-index: 0;
}

.bs-banner__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.45s ease;
}

.bs-banner__media.is-poster-ready .bs-banner__poster {
	opacity: 1;
}

.bs-banner__media.is-video-ready .bs-banner__video {
	opacity: 1;
	visibility: visible;
}

.bs-banner__media.is-video-ready .bs-banner__poster {
	opacity: 0;
	transition: opacity 0.45s ease;
}

/* Missing / failed MP4 (e.g. lean zip): keep poster + CSS background visible */
.bs-banner__media.is-video-failed .bs-banner__video {
	opacity: 0;
	visibility: hidden;
}

.bs-banner__media.is-video-failed .bs-banner__poster {
	opacity: 1;
}

/* Loading placeholder until poster image loads */
.bs-banner__media:not(.is-poster-ready)::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(
		135deg,
	 rgba(56, 66, 74, 0.15) 0%,
	 rgba(33, 191, 212, 0.08) 50%,
	 rgba(56, 66, 74, 0.15) 100%
	);
	animation: bs-banner-shimmer 1.6s ease-in-out infinite;
}

@keyframes bs-banner-shimmer {
	0%,
	100% {
		opacity: 0.55;
	}

	50% {
		opacity: 1;
	}
}

.bs-parallax-layer {
	will-change: transform;
}

.bs-banner__overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}

.bs-banner--copy-right .bs-banner__overlay {
	background: linear-gradient(90deg, transparent 0%, transparent 42%, rgba(56, 66, 74, 0.35) 58%, rgba(56, 66, 74, 0.82) 100%);
}

.bs-banner--copy-left .bs-banner__overlay {
	background: linear-gradient(270deg, transparent 0%, transparent 42%, rgba(56, 66, 74, 0.35) 58%, rgba(56, 66, 74, 0.82) 100%);
}

/* Anchor claymation subjects away from the text panel */
.bs-banner--subject-left.bs-banner--video,
.bs-banner--subject-left {
	background-position: left center;
}

.bs-banner--subject-right.bs-banner--video,
.bs-banner--subject-right {
	background-position: right center;
}

.bs-banner--subject-left .bs-banner__media {
	background-position: left center;
}

.bs-banner--subject-right .bs-banner__media {
	background-position: right center;
}

.bs-banner--subject-left .bs-banner__poster,
.bs-banner--subject-left .bs-banner__video {
	object-position: left center;
}

.bs-banner--subject-right .bs-banner__poster,
.bs-banner--subject-right .bs-banner__video {
	object-position: right center;
}

.bs-banner .bs-container {
	position: relative;
	z-index: 2;
	display: flex;
	width: 100%;
	max-width: var(--container-max);
	box-sizing: border-box;
}

.bs-banner--copy-right .bs-container {
	justify-content: flex-end;
}

.bs-banner--copy-left .bs-container {
	justify-content: flex-start;
}

.bs-banner__content {
	max-width: min(480px, 40vw);
	width: 100%;
	padding-block: clamp(3rem, 6vw, 5rem);
	color: var(--brightside-white);
	flex: 0 1 auto;
}

.bs-banner--copy-right .bs-banner__content {
	margin-left: auto;
	margin-right: 0;
	padding-left: clamp(1.5rem, 4vw, 2.5rem);
}

.bs-banner--copy-left .bs-banner__content {
	margin-left: 0;
	margin-right: auto;
	padding-right: clamp(1.5rem, 4vw, 2.5rem);
}

.bs-banner .bs-label {
	color: var(--brightside-sun);
}

.bs-banner .bs-label.bs-label--light {
	color: var(--brightside-sky);
}

.bs-banner .bs-heading {
	color: var(--brightside-white);
}

.bs-banner .bs-text {
	color: rgba(255, 255, 255, 0.9);
}

.bs-banner .bs-checklist li {
	color: rgba(255, 255, 255, 0.9);
}

.bs-banner .bs-checklist li::before {
	background: var(--brightside-sun);
}

.bs-banner .bs-icon-box {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.bs-banner .bs-icon-box h5 {
	color: var(--brightside-white);
}

.bs-banner .bs-dual-card {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.bs-banner .bs-dual-card h4 {
	color: var(--brightside-sky);
}

.bs-banner .bs-dual-card p {
	color: rgba(255, 255, 255, 0.88);
}

.bs-banner .bs-tag {
	background: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.95);
	border-color: rgba(255, 255, 255, 0.2);
}

/* Split sections (legacy — non-image layouts only)
   -------------------------------------------------------------------------- */
.bs-split {
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	background: var(--brightside-white);
}

.bs-split.bs-section--light {
	background: var(--brightside-cream);
}

.bs-split--reverse .bs-split__media {
	order: -1;
}

.bs-split__media {
	overflow: hidden;
}

.bs-split__media img {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
	object-position: center;
}

.bs-split__content {
	padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 2rem);
	max-width: 640px;
}

.bs-split--reverse .bs-split__content {
	margin-left: auto;
}

.bs-split:not(.bs-split--reverse) .bs-split__content {
	margin-right: auto;
}

/* Icon boxes (problem section) */
.bs-icon-box-row {
	display: grid;
	gap: 1rem;
	margin-bottom: 2rem;
}

.bs-icon-box {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.25rem;
	background: var(--brightside-cream);
	border-radius: var(--radius-md);
}

.bs-icon-box__icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	background: var(--brightside-aqua);
	color: var(--brightside-white);
	border-radius: 50%;
}

.bs-icon-box h5 {
	font-size: 1.0625rem;
	margin: 0;
	line-height: 1.35;
}

/* Sections
   -------------------------------------------------------------------------- */
.bs-section {
	padding-block: clamp(4rem, 8vw, 6rem);
	background: var(--brightside-white);
}

.bs-section--light {
	background: var(--brightside-cream);
}

.bs-section-head {
	margin-bottom: 3rem;
	max-width: 780px;
}

.bs-section-head--center {
	margin-inline: auto;
	text-align: center;
}

.bs-section--portfolio .bs-section-head {
	max-width: 920px;
	margin-bottom: 2.5rem;
}

.bs-section--portfolio {
	padding-bottom: clamp(3rem, 6vw, 4.5rem);
	overflow: hidden;
}

/* Portfolio marquee — leftward scroll; keep GIF animation intact */
.bs-marquee {
	overflow: hidden;
	width: 100%;
	mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.bs-marquee__track {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	width: max-content;
	animation: bs-marquee-left 60s linear infinite;
	padding-inline: 1rem;
}

.bs-marquee:hover .bs-marquee__track {
	animation-play-state: paused;
}

.bs-marquee__item {
	flex: 0 0 auto;
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.bs-marquee__item img {
	height: 350px;
	width: auto;
	max-height: 350px;
	object-fit: contain;
	display: block;
}

.bs-marquee__item figcaption {
	padding: 0.65rem 0.25rem 0;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.35;
	color: var(--brightside-slate);
	text-align: center;
	max-width: 100%;
}

@keyframes bs-marquee-left {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

/* Service grid */
.bs-service-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.bs-service-card {
	display: flex;
	flex-direction: column;
	background: var(--brightside-white);
	border: 1px solid rgba(56, 66, 74, 0.08);
	border-radius: var(--radius-md);
	padding: 2rem 1.75rem;
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition), box-shadow var(--transition);
}

.bs-section--light .bs-service-card {
	border-color: rgba(56, 66, 74, 0.06);
}

.bs-service-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.bs-service-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	background: rgba(33, 191, 212, 0.12);
	color: var(--brightside-aqua);
	border-radius: 50%;
	margin-bottom: 1.25rem;
}

.bs-service-card__title {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
}

/* CTA band */
.bs-cta-band {
	color: var(--brightside-white);
}

.bs-cta-band:not(.bs-banner) {
	padding-block: clamp(4rem, 8vw, 6rem);
	background: var(--gradient-band);
}

.bs-cta-band__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
}

.bs-cta-band__media img {
	width: 100%;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}

.bs-offer-tag {
	font-family: var(--font-heading);
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--brightside-sun);
	text-transform: capitalize;
	margin-bottom: 0.75rem;
}

.bs-price-display {
	margin-bottom: 1.25rem;
}

.bs-price-display__amount {
	font-family: var(--font-heading);
	font-size: clamp(2.5rem, 5vw, 3.5rem);
	font-weight: 700;
	color: var(--brightside-white);
	line-height: 1;
}

.bs-price-display__note {
	display: block;
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.85);
	margin-top: 0.25rem;
}

.bs-price-display__regular {
	display: block;
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: line-through;
	margin-top: 0.25rem;
}

/* Checklists */
.bs-checklist {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
}

.bs-checklist li {
	position: relative;
	padding-left: 1.75rem;
	margin-bottom: 0.625rem;
	font-size: 0.9375rem;
	line-height: 1.5;
}

.bs-checklist li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.5em;
	width: 10px;
	height: 10px;
	background: var(--brightside-aqua);
	border-radius: 50%;
}

.bs-checklist--light li::before {
	background: var(--brightside-sun);
}

.bs-checklist--light li {
	color: rgba(255, 255, 255, 0.9);
}

/* Pricing
   -------------------------------------------------------------------------- */
.bs-pricing-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: stretch;
}

.bs-pricing-card {
	position: relative;
	background: var(--brightside-white);
	border: 1px solid rgba(56, 66, 74, 0.08);
	border-radius: var(--radius-lg);
	padding: 2.5rem 2rem;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.bs-pricing-card .bs-btn {
	width: 100%;
	min-height: 52px;
	padding: 15px 30px;
	margin-top: auto;
	box-sizing: border-box;
	justify-content: center;
	text-align: center;
	white-space: normal;
}

.bs-pricing-card--featured {
	border-color: var(--brightside-aqua);
	box-shadow: var(--shadow-lg);
	background: linear-gradient(180deg, var(--brightside-white) 0%, rgba(142, 220, 247, 0.08) 100%);
}

.bs-pricing-card__label {
	display: inline-block;
	font-family: var(--font-heading);
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--brightside-aqua);
	background: rgba(33, 191, 212, 0.12);
	padding: 0.375rem 0.875rem;
	border-radius: var(--radius-pill);
	margin-bottom: 1rem;
}

.bs-pricing-card__name {
	font-size: 1.375rem;
	margin-bottom: 1.25rem;
}

.bs-pricing-card__price {
	margin-bottom: 0.5rem;
	line-height: 1;
}

.bs-pricing-card__currency {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	font-weight: 700;
	vertical-align: top;
}

.bs-pricing-card__amount {
	font-family: var(--font-heading);
	font-size: 3rem;
	font-weight: 700;
	color: var(--brightside-charcoal);
}

.bs-pricing-card__period {
	display: block;
	font-size: 0.875rem;
	color: var(--brightside-slate);
	margin-top: 0.25rem;
}

.bs-pricing-card__regular {
	font-size: 0.875rem;
	color: var(--brightside-slate);
	margin-bottom: 1rem;
}

.bs-pricing-card__desc {
	font-size: 0.9375rem;
	color: var(--brightside-slate);
	margin-bottom: 1.5rem;
	line-height: 1.6;
}

.bs-pricing-card__list {
	list-style: none;
	margin: 0 0 1.25rem;
	padding: 0;
	flex: 1 1 auto;
}

.bs-pricing-card__list li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
	color: var(--brightside-slate);
}

.bs-pricing-card__list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--brightside-aqua);
	font-weight: 700;
}

.bs-pricing-card__note {
	font-size: 0.8125rem;
	font-style: italic;
	color: var(--brightside-slate);
	margin: -0.25rem 0 1.25rem;
}

/* Dual cards (Google/Meta) */
.bs-dual-cards {
	display: grid;
	gap: 1rem;
	margin-bottom: 2rem;
}

.bs-dual-card {
	background: var(--brightside-cream);
	border-radius: var(--radius-md);
	padding: 1.5rem;
}

.bs-dual-card__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: var(--brightside-aqua);
	color: var(--brightside-white);
	border-radius: 50%;
	margin-bottom: 1rem;
}

.bs-dual-card h4 {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
	color: var(--brightside-aqua);
}

.bs-dual-card p {
	font-size: 0.9375rem;
	margin: 0;
	line-height: 1.6;
}

/* Testimonials slider
   -------------------------------------------------------------------------- */
.bs-section--testimonials {
	background:
		radial-gradient(ellipse at 20% 0%, rgba(253, 186, 53, 0.12), transparent 50%),
		radial-gradient(ellipse at 90% 100%, rgba(33, 191, 212, 0.1), transparent 45%),
		var(--brightside-cream);
}

.bs-testimonial-slider {
	width: min(960px, 92vw);
	margin: 0 auto;
	position: relative;
}

.bs-testimonial-slider__viewport {
	position: relative;
	min-height: 16rem;
}

.bs-testimonial-slide {
	margin: 0;
	padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 2.5rem);
	background: var(--brightside-white);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	border-left: 4px solid var(--brightside-aqua);
	opacity: 0;
	transform: translateX(1.25rem);
	transition: opacity 0.55s ease, transform 0.55s ease;
	pointer-events: none;
	position: absolute;
	inset: 0 auto auto 0;
	width: 100%;
}

.bs-testimonial-slide.is-active {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
	position: relative;
}

.bs-testimonial-slide__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: clamp(1.25rem, 3vw, 2.25rem);
	align-items: center;
}

.bs-testimonial-slide__content {
	min-width: 0;
}

.bs-testimonial-slide__photo {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bs-testimonial-avatar {
	width: clamp(140px, 16vw, 168px);
	height: clamp(140px, 16vw, 168px);
	border-radius: 50%;
	object-fit: cover;
	object-position: center top;
	display: block;
	box-shadow: 0 10px 28px rgba(56, 66, 74, 0.14);
	border: 4px solid var(--brightside-cream);
	outline: 2px solid rgba(33, 191, 212, 0.45);
	outline-offset: 2px;
	background: var(--brightside-cream);
}

.bs-testimonial-slide__quote {
	font-family: var(--font-heading);
	font-size: clamp(1.125rem, 2.2vw, 1.375rem);
	font-style: italic;
	font-weight: 500;
	line-height: 1.65;
	color: var(--brightside-charcoal);
	margin: 0 0 1.5rem;
}

.bs-testimonial-slide__author {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	font-size: 0.9375rem;
	color: var(--brightside-slate);
	font-style: normal;
}

.bs-testimonial-slide__author strong {
	font-family: var(--font-heading);
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--brightside-charcoal);
}

.bs-testimonial-slide__org {
	color: var(--brightside-teal);
	font-weight: 600;
}

.bs-testimonial-slider__controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 1.75rem;
}

.bs-testimonial-slider__nav {
	appearance: none;
	border: 1px solid rgba(56, 66, 74, 0.15);
	background: var(--brightside-white);
	color: var(--brightside-charcoal);
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.bs-testimonial-slider__nav:hover,
.bs-testimonial-slider__nav:focus-visible {
	background: var(--brightside-teal);
	border-color: var(--brightside-teal);
	color: var(--brightside-white);
	outline: none;
}

.bs-testimonial-slider__dots {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.45rem;
}

.bs-testimonial-slider__dot {
	appearance: none;
	border: 0;
	padding: 0;
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: rgba(56, 66, 74, 0.22);
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.bs-testimonial-slider__dot.is-active,
.bs-testimonial-slider__dot:hover,
.bs-testimonial-slider__dot:focus-visible {
	background: var(--brightside-aqua);
	transform: scale(1.15);
	outline: none;
}

.bs-testimonial-slider.is-reduced-motion .bs-testimonial-slider__viewport {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	min-height: 0;
}

.bs-testimonial-slider.is-reduced-motion .bs-testimonial-slide {
	position: relative;
	opacity: 1;
	transform: none;
	pointer-events: auto;
	transition: none;
}

/* Legacy grid cards (unused on homepage; kept for compatibility) */
.bs-testimonial-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}

.bs-testimonial-card {
	background: var(--brightside-white);
	border-radius: var(--radius-md);
	padding: 2rem;
	margin: 0;
	box-shadow: var(--shadow-sm);
	border-left: 4px solid var(--brightside-lavender);
}

.bs-testimonial-card p {
	font-size: 1rem;
	font-style: italic;
	line-height: 1.7;
	color: var(--brightside-charcoal);
	margin-bottom: 1.25rem;
}

.bs-testimonial-card footer {
	font-size: 0.875rem;
	color: var(--brightside-slate);
}

.bs-testimonial-card footer strong {
	color: var(--brightside-charcoal);
}

/* Tags */
.bs-tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bs-tag {
	font-family: var(--font-heading);
	font-size: 0.8125rem;
	font-weight: 600;
	text-transform: capitalize;
	background: var(--brightside-cream);
	color: var(--brightside-charcoal);
	padding: 0.5rem 1.125rem;
	border-radius: var(--radius-pill);
	border: 1px solid rgba(56, 66, 74, 0.1);
}

/* Final CTA
   -------------------------------------------------------------------------- */
.bs-final-cta__inner {
	padding-block: clamp(4rem, 8vw, 6rem);
}

/* Forms
   -------------------------------------------------------------------------- */
.bs-section--form {
	background: var(--brightside-white);
}

.bs-form-panel {
	background: var(--brightside-white);
	border: 1px solid rgba(56, 66, 74, 0.08);
	border-radius: var(--radius-lg);
	padding: clamp(1.5rem, 4vw, 2.5rem);
	box-shadow: var(--shadow-md);
}

.bs-form-panel .hs-form-frame {
	display: block;
	width: 100%;
	min-height: 12rem;
}

.bs-section--form .bs-form-panel {
	background: var(--brightside-white);
}

.bs-form__row {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
	margin-bottom: 1rem;
}

.bs-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
}

.bs-form label {
	font-family: var(--font-heading);
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--brightside-charcoal);
}

.bs-form .required {
	color: var(--brightside-coral);
}

.bs-form input,
.bs-form select,
.bs-form textarea {
	font-family: var(--font-body);
	font-size: 1rem;
	padding: 0.875rem 1rem;
	border: 1px solid rgba(56, 66, 74, 0.15);
	border-radius: var(--radius-sm);
	background: var(--brightside-white);
	color: var(--brightside-charcoal);
	transition: border-color var(--transition), box-shadow var(--transition);
}

.bs-form input:focus,
.bs-form select:focus,
.bs-form textarea:focus {
	outline: none;
	border-color: var(--brightside-aqua);
	box-shadow: 0 0 0 3px rgba(33, 191, 212, 0.2);
}

.bs-form textarea {
	resize: vertical;
	min-height: 120px;
}

/* Footer — Truvita dark style
   -------------------------------------------------------------------------- */
.bs-footer {
	background: var(--brightside-charcoal);
	color: rgba(255, 255, 255, 0.78);
	padding-block: 4rem 0;
}

.bs-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	padding-bottom: 3rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bs-footer__brand {
	max-width: 420px;
}

.bs-footer-logo {
	width: auto;
	height: 48px;
	max-width: 220px;
	margin-bottom: 1.25rem;
}

.bs-footer__blurb {
	font-size: 0.9375rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
}

.bs-footer__nav-title {
	font-family: var(--font-heading);
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--brightside-white);
	text-transform: capitalize;
	margin: 0 0 1.25rem;
}

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

.footer-menu a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	font-size: 0.9375rem;
	font-weight: 500;
	transition: color var(--transition);
}

.footer-menu a:hover,
.footer-menu a:focus-visible {
	color: var(--brightside-sun);
}

.bs-footer__cta {
	margin-top: 0.5rem;
}

.bs-footer__bottom {
	padding-block: 1.5rem;
}

.bs-footer__copyright {
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.45);
	margin: 0;
	text-align: center;
}

/* Sticky mobile CTA
   -------------------------------------------------------------------------- */
.bs-sticky-cta {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 900;
	background: var(--brightside-white);
	border-top: 1px solid rgba(56, 66, 74, 0.1);
	box-shadow: 0 -4px 20px rgba(56, 66, 74, 0.12);
	padding: 0.75rem 1rem;
	transform: translateY(100%);
	transition: transform var(--transition);
}

.bs-sticky-cta.is-visible {
	transform: translateY(0);
}

.bs-sticky-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	max-width: var(--container-max);
	margin-inline: auto;
}

.bs-sticky-cta__text {
	font-family: var(--font-heading);
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--brightside-charcoal);
}

/* Scroll reveal
   -------------------------------------------------------------------------- */
.bs-reveal {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}

.bs-reveal.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* Inner pages
   -------------------------------------------------------------------------- */
.bs-page {
	padding-block: 3rem;
}

.bs-page__title {
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	margin-bottom: 1.5rem;
}

/* Inner hero & breadcrumbs
   -------------------------------------------------------------------------- */
.bs-inner-hero {
	position: relative;
	padding-block: clamp(2.5rem, 5vw, 4rem);
	background: var(--brightside-cream);
	overflow: hidden;
}

.bs-inner-hero__gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(255, 247, 234, 0.95) 0%, rgba(168, 216, 180, 0.15) 50%, rgba(142, 220, 247, 0.12) 100%);
	pointer-events: none;
}

.bs-inner-hero__inner {
	position: relative;
	z-index: 1;
}

.bs-inner-hero__title {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 0.75rem;
	max-width: 820px;
}

.bs-inner-hero__subtitle {
	font-size: 1.0625rem;
	color: var(--brightside-slate);
	max-width: 680px;
	margin: 0;
	line-height: 1.7;
}

.bs-breadcrumb {
	margin-bottom: 1rem;
}

.bs-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.875rem;
}

.bs-breadcrumb__item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	color: var(--brightside-slate);
}

.bs-breadcrumb__item:not(:last-child)::after {
	content: "/";
	color: rgba(95, 107, 117, 0.5);
}

.bs-breadcrumb__item a {
	color: var(--brightside-aqua);
	text-decoration: none;
	font-weight: 500;
}

.bs-breadcrumb__item a:hover,
.bs-breadcrumb__item a:focus-visible {
	color: var(--brightside-teal);
}

.bs-breadcrumb__item span[aria-current="page"] {
	color: var(--brightside-charcoal);
	font-weight: 600;
}

/* Why choose section
   -------------------------------------------------------------------------- */
.bs-why-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-top: 2.5rem;
}

.bs-why-card {
	background: var(--brightside-white);
	border-radius: var(--radius-md);
	padding: 2rem 1.75rem;
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition), box-shadow var(--transition);
}

.bs-why-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.bs-why-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: var(--radius-sm);
	background: rgba(33, 191, 212, 0.12);
	color: var(--brightside-aqua);
	margin-bottom: 1.25rem;
}

.bs-why-card__title {
	font-size: 1.125rem;
	margin-bottom: 0.75rem;
}

.bs-why-card p {
	font-size: 0.9375rem;
	margin: 0;
	color: var(--brightside-slate);
}

.bs-why-cta,
.bs-section-cta,
.bs-service-overview__cta,
.bs-service-detail__cta,
.bs-faq-cta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin-top: 2.5rem;
}

/* Blog card grid
   -------------------------------------------------------------------------- */
.bs-blog-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

.bs-blog-card {
	background: var(--brightside-white);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform var(--transition), box-shadow var(--transition);
	display: flex;
	flex-direction: column;
}

.bs-blog-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.bs-blog-card__media {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 10;
}

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

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

.bs-blog-card__body {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.bs-blog-card__meta {
	font-size: 0.8125rem;
	color: var(--brightside-slate);
	margin-bottom: 0.5rem;
}

.bs-blog-card__cat {
	color: var(--brightside-teal);
	font-weight: 600;
}

.bs-blog-card__title {
	font-size: 1.125rem;
	margin-bottom: 0.75rem;
}

.bs-blog-card__title a {
	color: var(--brightside-charcoal);
	text-decoration: none;
}

.bs-blog-card__title a:hover {
	color: var(--brightside-aqua);
}

.bs-blog-card__excerpt {
	font-size: 0.9375rem;
	color: var(--brightside-slate);
	margin-bottom: 1rem;
	flex: 1;
}

.bs-post-list {
	display: grid;
	gap: 2rem;
}

.bs-post-card {
	background: var(--brightside-cream);
	border-radius: var(--radius-md);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.bs-post-card__body {
	padding: 1.5rem;
}

.bs-post-card__title {
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

.bs-post-card__title a {
	color: var(--brightside-charcoal);
	text-decoration: none;
}

.bs-post-card__meta {
	font-size: 0.875rem;
	color: var(--brightside-slate);
	margin-bottom: 0.75rem;
}

/* Single post
   -------------------------------------------------------------------------- */
.bs-single-post {
	padding-block: 3rem;
}

.bs-single-post__featured {
	border-radius: var(--radius-md);
	overflow: hidden;
	margin-bottom: 2rem;
	box-shadow: var(--shadow-sm);
}

.bs-single-post__meta {
	margin: 0 0 1.25rem;
	font-size: 0.9375rem;
	color: var(--brightside-slate);
}

.bs-single-post__date {
	font-style: normal;
}

.bs-single-post__content {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--brightside-charcoal);
}

.bs-single-post__content h2,
.bs-single-post__content h3 {
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-family: var(--font-heading);
	color: var(--brightside-teal);
}

.bs-single-post__content p {
	margin-bottom: 1.15rem;
}

.bs-single-post__content ul {
	margin: 0 0 1.25rem 1.25rem;
	padding: 0;
}

.bs-single-post__content li {
	margin-bottom: 0.4rem;
}

.bs-single-post__featured img {
	width: 100%;
	height: auto;
	display: block;
}

.bs-single-post__footer {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(56, 66, 74, 0.1);
}

.bs-single-post__cats {
	font-size: 0.9375rem;
	margin-bottom: 1rem;
}

/* FAQ accordion
   -------------------------------------------------------------------------- */
.bs-faq-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.bs-faq-item {
	background: var(--brightside-white);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.bs-faq-item__question {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 1.5rem;
	border: none;
	background: transparent;
	cursor: pointer;
	text-align: left;
	font-family: var(--font-heading);
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--brightside-charcoal);
	transition: color var(--transition);
}

.bs-faq-item__question:hover,
.bs-faq-item__question:focus-visible {
	color: var(--brightside-aqua);
}

.bs-faq-item__icon {
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	position: relative;
}

.bs-faq-item__icon::before,
.bs-faq-item__icon::after {
	content: "";
	position: absolute;
	background: var(--brightside-aqua);
	border-radius: 2px;
	transition: transform var(--transition);
}

.bs-faq-item__icon::before {
	width: 14px;
	height: 2px;
	top: 11px;
	left: 5px;
}

.bs-faq-item__icon::after {
	width: 2px;
	height: 14px;
	top: 5px;
	left: 11px;
}

.bs-faq-item__question[aria-expanded="true"] .bs-faq-item__icon::after {
	transform: scaleY(0);
}

.bs-faq-item__answer {
	padding: 0 1.5rem 1.25rem;
}

.bs-faq-item__answer[hidden] {
	display: none;
}

.bs-faq-item__answer p {
	margin: 0;
	font-size: 0.9375rem;
	color: var(--brightside-slate);
	line-height: 1.7;
}

.bs-faq-cta {
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin-top: 3rem;
	padding-top: 3rem;
	border-top: 1px solid rgba(56, 66, 74, 0.08);
}

/* Contact two-column layout
   -------------------------------------------------------------------------- */
.bs-contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: start;
}

.bs-contact-list {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.bs-contact-list li {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.bs-contact-list strong {
	font-family: var(--font-heading);
	font-size: 0.875rem;
	color: var(--brightside-charcoal);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.bs-contact-trial {
	margin-top: 2.5rem;
	padding: 2rem;
	background: var(--brightside-cream);
	border-radius: var(--radius-md);
}

.bs-contact-trial .bs-heading {
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
}

/* Service detail & sidebar layout
   -------------------------------------------------------------------------- */
.bs-service-detail__intro {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
}

.bs-service-detail__media img {
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-md);
}

.bs-checklist--grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.75rem 2rem;
	max-width: 900px;
	margin-inline: auto;
}

.bs-service-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: start;
}

.bs-sidebar-cta {
	background: var(--gradient-band);
	color: var(--brightside-white);
	border-radius: var(--radius-md);
	padding: 2rem;
	margin-bottom: 1.5rem;
}

.bs-sidebar-cta__title {
	color: var(--brightside-white);
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
}

.bs-sidebar-cta p {
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 1.25rem;
}

.bs-sidebar-links {
	background: var(--brightside-cream);
	border-radius: var(--radius-md);
	padding: 1.5rem;
}

.bs-sidebar-links h4 {
	font-size: 1rem;
	margin-bottom: 1rem;
}

.bs-sidebar-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.bs-sidebar-links a {
	color: var(--brightside-charcoal);
	text-decoration: none;
	font-weight: 500;
	font-size: 0.9375rem;
}

.bs-sidebar-links a:hover {
	color: var(--brightside-aqua);
}

.bs-service-card__desc {
	font-size: 0.875rem;
	color: var(--brightside-slate);
	margin: 0 0 0.75rem;
	line-height: 1.6;
}

/* Search & 404
   -------------------------------------------------------------------------- */
.bs-search-form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 2rem;
}

.bs-search-form input[type="search"] {
	flex: 1;
	min-width: 200px;
	padding: 0.875rem 1.125rem;
	border: 1px solid rgba(56, 66, 74, 0.15);
	border-radius: var(--radius-sm);
	font-family: var(--font-body);
	font-size: 1rem;
}

.bs-search-form--inline {
	max-width: 640px;
}

.bs-search-results {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.bs-search-result {
	padding: 1.5rem;
	background: var(--brightside-cream);
	border-radius: var(--radius-md);
}

.bs-search-result__title {
	font-size: 1.25rem;
	margin-bottom: 0.35rem;
}

.bs-search-result__title a {
	color: var(--brightside-charcoal);
	text-decoration: none;
}

.bs-search-result__meta {
	font-size: 0.8125rem;
	color: var(--brightside-slate);
	margin-bottom: 0.5rem;
}

.bs-search-empty {
	text-align: center;
	padding: 3rem 1rem;
}

.bs-404 {
	text-align: center;
}

.bs-404__media {
	max-width: 360px;
	margin: 0 auto 2rem;
}

.bs-btn-group--center {
	justify-content: center;
	margin-inline: auto;
}

.bs-text--center {
	text-align: center;
}

/* Compact CTA band variant
   -------------------------------------------------------------------------- */
.bs-cta-band--compact {
	padding-block: 3.5rem;
}

.bs-cta-band__content--center {
	text-align: center;
	max-width: 720px;
	margin-inline: auto;
}

.bs-cta-band__content--center .bs-btn-group {
	justify-content: center;
}

/* Pagination
   -------------------------------------------------------------------------- */
.bs-pagination,
.navigation.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 3rem;
	list-style: none;
	padding: 0;
}

.bs-pagination a,
.bs-pagination span,
.navigation.pagination .nav-links a,
.navigation.pagination .nav-links span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding-inline: 0.75rem;
	border-radius: var(--radius-sm);
	background: var(--brightside-cream);
	color: var(--brightside-charcoal);
	text-decoration: none;
	font-weight: 500;
}

.bs-pagination .current,
.navigation.pagination .nav-links .current {
	background: var(--brightside-aqua);
	color: var(--brightside-white);
}

/* Inner page header offset adjustment */
body.bs-inner .site-main {
	padding-top: calc(var(--topbar-height) + var(--header-height));
}

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

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

	.bs-reveal {
		opacity: 1;
		transform: none;
	}

	.bs-btn:hover,
	.bs-btn:focus-visible,
	.bs-service-card:hover {
		transform: none;
	}

	.bs-marquee {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		mask-image: none;
		-webkit-mask-image: none;
		scrollbar-width: thin;
	}

	.bs-marquee__track {
		animation: none !important;
		padding-inline: 1.25rem;
		padding-bottom: 0.5rem;
	}
}
