

html {
	color-scheme: light only;
}

:root {
	--usc-header-height: 72px;
	--usc-promo-height: 32px;
	--usc-container: 1120px;
	--usc-container-wide: 1320px;
	--usc-container-full: min(100%, 1600px);
	--usc-pad-x: clamp(1.5rem, 4vw, 2rem);
	--usc-section-y: clamp(2.5rem, 5vw, 4rem);
	--usc-radius: 4px;
	--usc-home-rule: rgba(22, 25, 43, 0.1);
	--usc-home-rule-light: rgba(22, 25, 43, 0.06);
	--usc-gold: #e6a817;
	--usc-gold-hover: #f0c04a;
	--usc-gold-light: #f5d078;
	--usc-gold-rgb: 230, 168, 23;
	--usc-sweater-fill-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='10' viewBox='0 0 13 10'%3E%3Cpath fill='%23ffffff' fill-opacity='.24' d='M2.5 3 1.2 4.2 1.9 5.8 2.7 5V7.2c0 .4.9.7 2 .7s2-.3 2-.7V5l.85 1.05.7-1.65-.85-1.05C9.5 2.2 8.45 1.75 6.85 1.75 5.25 1.75 4.2 2.2 3.5 3Z'/%3E%3Cpath fill='none' stroke='%23ffffff' stroke-opacity='.16' stroke-width='.35' d='M2.5 3 1.2 4.2 1.9 5.8 2.7 5V7.2c0 .4.9.7 2 .7s2-.3 2-.7V5l.85 1.05.7-1.65-.85-1.05C9.5 2.2 8.45 1.75 6.85 1.75 5.25 1.75 4.2 2.2 3.5 3Z'/%3E%3Cpath stroke='%23ffffff' stroke-opacity='.1' stroke-width='.25' d='M3.5 4.2h5.8M3.8 5.1h5.2M4.1 6h4.6'/%3E%3C/svg%3E");
}

.usc-container {
	width: 100%;
	max-width: var(--usc-container);
	margin-inline: auto;
	padding-inline: var(--usc-pad-x);
	box-sizing: border-box;
}

.usc-container--wide {
	max-width: var(--usc-container-wide);
}

.usc-container--full {
	max-width: var(--usc-container-full);
}

.usc-eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #044331;
}

.usc-eyebrow--center {
	text-align: center;
}

.usc-eyebrow--on-dark {
	color: rgba(255, 255, 255, 0.72);
}

.usc-eyebrow--gold {
	color: var(--usc-gold);
}

.usc-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
	border: 0;
	border-radius: var(--usc-radius);
	cursor: pointer;
	font-family: inherit;
	white-space: nowrap;
	transition: color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.usc-btn--primary,
.landing-hero__cta--primary {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	background: transparent;
	color: #044331;
	box-shadow: inset 0 0 0 2px #044331;
	transition: color 0.25s ease, box-shadow 0.25s ease;
}

.usc-btn--primary::before,
.landing-hero__cta--primary::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: #044331;
	background-image: var(--usc-sweater-fill-pattern);
	background-repeat: repeat;
	background-size: 1.35rem 1.05rem;
	background-position: center bottom;
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: -1;
}

.usc-btn--primary:hover,
.landing-hero__cta--primary:hover {
	color: var(--usc-gold);
	box-shadow: inset 0 0 0 2px var(--usc-gold);
}

.usc-btn--primary:hover::before,
.landing-hero__cta--primary:hover::before {
	transform: scaleY(1);
}

.site-header__cta {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	background: transparent;
	color: #044331;
	box-shadow: inset 0 0 0 2px #044331;
	transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header__cta::before {
	content: none;
	display: none;
}

.site-header__cta:hover,
.site-header__cta:focus-visible {
	color: #fff;
	background: #044331;
	box-shadow: inset 0 0 0 2px #044331;
	outline: none;
}

.hero-slide__cta,
.rtg-hero__cta,
.home-band__cta--gold {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	background: transparent;
	color: var(--usc-gold);
	box-shadow: inset 0 0 0 2px var(--usc-gold);
	transition: color 0.25s ease, box-shadow 0.25s ease;
}

.hero-slide__cta::before,
.rtg-hero__cta::before,
.home-band__cta--gold::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--usc-gold);
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: -1;
}

.hero-slide__cta:hover,
.rtg-hero__cta:hover,
.home-band__cta--gold:hover {
	color: #16192b;
	box-shadow: inset 0 0 0 2px var(--usc-gold);
}

.hero-slide__cta:hover::before,
.rtg-hero__cta:hover::before,
.home-band__cta--gold:hover::before {
	transform: scaleY(1);
}

.usc-btn--green {
	background: #044331;
	color: #fff;
}

.usc-btn--green:hover {
	background: #0a6b4f;
	color: #fff;
	transform: translateY(-1px);
}

.usc-btn--ghost-on-dark {
	border: 1px solid rgba(255, 255, 255, 0.45);
	background: transparent;
	color: #fff;
}

.usc-btn--ghost-on-dark:hover {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.home-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	flex-shrink: 0;
}

.home-band__inner.usc-container {
	max-width: var(--usc-container-wide);
}

.wp-site-blocks > header:has(.site-header),
header.wp-block-template-part:has(.site-header) {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--wp--preset--color--base);
	padding-top: env(safe-area-inset-top, 0px);
}

.site-header {
	position: relative;
	top: auto;
	z-index: auto;
	margin-block: 0;
	background: var(--wp--preset--color--base);
	box-shadow: 0 1px 0 color-mix(in srgb, var(--wp--preset--color--text) 8%, transparent);
	transition: box-shadow 220ms ease;
}

body > header.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	padding-top: env(safe-area-inset-top, 0px);
}

.site-header.is-layout-flow > *,
.site-header.is-layout-flow > * + * {
	margin-block-start: 0;
}

header.wp-block-template-part:has(.site-header),
.wp-block-template-part:has(> .site-header) {
	margin: 0;
	padding: 0;
}

header.wp-block-template-part > .site-header,
.wp-block-template-part > .site-header {
	margin-block: 0;
}

.site-header.site-header--compact {
	box-shadow: 0 8px 24px rgb(18 18 18 / 8%);
}

.promo-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: var(--usc-promo-height);
	max-height: 3rem;
	padding: 0.375rem 1rem;
	background-color: #044331;
	color: #fff;
	border-bottom: 1px solid color-mix(in srgb, #fff 12%, transparent);
	overflow: hidden;
	transition: min-height 220ms ease, max-height 220ms ease, padding 220ms ease, opacity 180ms ease, border-width 220ms ease;
}

.site-header--compact .promo-bar {
	min-height: 0;
	max-height: 0;
	padding-block: 0;
	opacity: 0;
	border-bottom-width: 0;
	pointer-events: none;
}

.promo-bar__text {
	margin: 0;
	padding: 0;
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0.01em;
	text-align: center;
	color: #fff;
}

.promo-bar__highlight {
	color: var(--usc-gold);
	font-weight: 600;
}

.site-utility {
	background: #fff;
	border-bottom: 1px solid rgba(22, 25, 43, 0.1);
	max-height: 3rem;
	transition: max-height 220ms ease, padding 220ms ease, opacity 180ms ease, border-width 220ms ease;
	overflow: hidden;
}

.site-header--compact .site-utility {
	max-height: 0;
	padding-block: 0;
	opacity: 0;
	border-bottom-width: 0;
	pointer-events: none;
}

.site-utility__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	max-width: var(--usc-container-wide, 1280px);
	margin: 0 auto;
	padding: 0.4rem 1.5rem;
}

.site-utility__promo {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0.01em;
	color: #64748b;
	white-space: nowrap;
}

.site-utility__promo-highlight {
	color: #044331;
	font-weight: 700;
}

.site-utility__promo-link {
	color: inherit;
	text-decoration: none;
}

.site-utility__promo-link:hover,
.site-utility__promo-link:focus-visible {
	color: #044331;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.site-utility__nav {
	min-width: 0;
}

.site-utility__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 0.15rem 1.15rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-utility__list a {
	color: #64748b;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	line-height: 1.3;
	transition: color 0.15s ease;
}

.site-utility__list a:hover,
.site-utility__list a:focus-visible {
	color: #044331;
}

.site-header__bar {
	padding: 0 1.25rem;
}

.site-header__bar-inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	grid-template-areas: "brand nav actions";
	align-items: center;
	column-gap: 1.25rem;
	row-gap: 0;
	max-width: var(--usc-container-wide);
	margin: 0 auto;
	transition: min-height 220ms ease, gap 220ms ease;
}

.site-header__bar-inner > .site-brand {
	grid-area: brand;
	align-self: center;
	min-height: 4rem;
	display: flex;
	align-items: center;
}

.site-header__bar-inner > .site-header__nav-slot {
	grid-area: nav;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 4rem;
	min-width: 0;
	border-top: 0;
	transition: min-height 220ms ease;
}

.site-header__bar-inner > .site-header__actions {
	grid-area: actions;
	display: flex;
	align-items: center;
	gap: 0.65rem;
	flex-shrink: 0;
	min-height: 4rem;
}

.site-header--compact .site-header__bar-inner {
	column-gap: 1rem;
}

.site-header--compact .site-header__bar-inner > .site-brand,
.site-header--compact .site-header__bar-inner > .site-header__actions,
.site-header--compact .site-header__bar-inner > .site-header__nav-slot {
	min-height: 3.25rem;
}

.site-header__cta {
	padding: 0.55rem 1.2rem;
	font-size: 0.9375rem;
}

.site-header--compact .site-header__cta {
	padding: 0.4rem 0.9rem;
	font-size: 0.8125rem;
}

.site-header .site-brand__logo {
	display: block;
	width: auto;
	max-width: 180px;
	height: 48px;
	object-fit: contain;
	transition: height 220ms ease;
}

.site-header--compact .site-brand__logo {
	height: 32px;
}

.site-brand {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	line-height: 0;
}

.site-nav {
	flex: 1;
	display: flex;
	justify-content: center;
	min-width: 0;
}

.site-nav__list {
	display: grid;
	grid-template-columns: repeat(6, max-content);
	justify-content: center;
	align-items: center;
	column-gap: 1.75rem;
	row-gap: 0.55rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav__list a {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--wp--preset--color--text);
	text-decoration: none;
	font-size: 0.9375rem;
	font-weight: 500;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.site-nav__icon {
	flex-shrink: 0;
	color: #64748b;
	transition: color 0.2s ease, transform 0.2s ease;
}

.site-nav__list a:hover .site-nav__icon,
.site-nav__list a:focus-visible .site-nav__icon {
	color: #044331;
	transform: translateY(-1px);
}

.site-nav__link--featured .site-nav__icon {
	color: rgba(255, 255, 255, 0.82);
}

.site-nav__link--featured:hover .site-nav__icon,
.site-nav__link--featured:focus-visible .site-nav__icon {
	color: var(--usc-gold);
}

.site-nav__list a:not(.site-nav__link--featured) {
	position: relative;
	padding-bottom: 0.2rem;
}

.site-nav__list a:not(.site-nav__link--featured)::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: #044331;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s ease;
}

.site-nav__list a:hover,
.site-nav__list a:focus-visible {
	color: var(--wp--preset--color--brand-green);
}

.site-nav__list a:not(.site-nav__link--featured):hover::after,
.site-nav__list a:not(.site-nav__link--featured):focus-visible::after {
	transform: scaleX(1);
}

.site-nav__item--sep {
	margin-left: 0.35rem;
	padding-left: 1.35rem;
	border-left: 1px solid rgba(22, 25, 43, 0.14);
}

.site-nav__list a.site-nav__link--emphasis {
	font-weight: 800;
	letter-spacing: 0.01em;
	color: #00241a;
}

.site-nav__list a.site-nav__link--emphasis:hover,
.site-nav__list a.site-nav__link--emphasis:focus-visible {
	color: #00150f;
}

.site-nav__list a.site-nav__link--emphasis:has(.site-nav__link-badge) {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	line-height: 1.1;
}

.site-nav__list a.site-nav__link--emphasis .site-nav__link-badge {
	padding: 0;
	margin-top: 0.05rem;
	font-size: 0.5625rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
	text-transform: uppercase;
	color: #00241a;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	opacity: 0.85;
}

.site-nav__list a.site-nav__link--emphasis:hover .site-nav__link-badge,
.site-nav__list a.site-nav__link--emphasis:focus-visible .site-nav__link-badge {
	opacity: 1;
}

.site-nav__list a:has(.site-nav__link-badge):not(.site-nav__link--featured):not(.site-nav__link--emphasis) {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}

.site-nav__link--featured {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	padding: 0.5rem 0.55rem 0.5rem 1rem;
	background-color: var(--usc-gold);
	background-image:
		repeating-linear-gradient(
			90deg,
			transparent 0,
			transparent 3px,
			rgba(255, 255, 255, 0.22) 3px,
			rgba(255, 255, 255, 0.22) 4px
		),
		linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0%, transparent 28%),
		linear-gradient(120deg, var(--usc-gold-hover) 0%, var(--usc-gold) 42%, var(--usc-gold-light) 78%, var(--usc-gold) 100%);
	background-size: 100% 100%, 100% 100%, 220% 220%;
	background-position: left center, left center, 0% 50%;
	background-repeat: no-repeat, no-repeat, no-repeat;
	color: #16192b;
	font-weight: 800;
	font-style: italic;
	letter-spacing: 0.01em;
	border-radius: 999px;
	box-shadow:
		0 4px 16px rgba(var(--usc-gold-rgb), 0.42),
		inset 0 1px 0 rgba(255, 255, 255, 0.45),
		0 0 0 1px rgba(4, 67, 49, 0.14);
	transition:
		transform 0.18s ease,
		box-shadow 0.18s ease,
		color 0.15s ease;
	animation: site-nav-featured-shimmer 5s ease-in-out infinite;
}

.site-nav__link--featured::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	border-radius: inherit;
	pointer-events: none;
	opacity: 0.55;
	background:
		repeating-conic-gradient(
			from 0deg,
			rgba(0, 0, 0, 0.14) 0deg 90deg,
			rgba(255, 255, 255, 0.06) 90deg 180deg
		);
	background-size: 9px 9px;
	mask-image: linear-gradient(90deg, transparent 0%, transparent 52%, rgba(0, 0, 0, 0.2) 72%, rgba(0, 0, 0, 0.55) 88%, rgba(0, 0, 0, 0.75) 100%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 52%, rgba(0, 0, 0, 0.2) 72%, rgba(0, 0, 0, 0.55) 88%, rgba(0, 0, 0, 0.75) 100%);
}

.site-nav__link--featured .site-nav__link-label {
	position: relative;
	z-index: 1;
}

.site-nav__link--featured:hover,
.site-nav__link--featured:focus-visible {
	color: #00241a;
	transform: translateY(-1px);
	box-shadow:
		0 8px 22px rgba(var(--usc-gold-rgb), 0.52),
		inset 0 1px 0 rgba(255, 255, 255, 0.55),
		0 0 0 1px rgba(4, 67, 49, 0.22);
}

.site-nav__link--featured .site-nav__link-badge {
	position: relative;
	z-index: 1;
	flex-shrink: 0;
	padding: 0.28rem 0.55rem;
	font-size: 0.625rem;
	font-weight: 800;
	font-style: normal;
	line-height: 1.15;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--usc-gold);
	background: #044331;
	border-radius: 999px;
	box-shadow:
		inset 0 1px 0 rgba(255, 255, 255, 0.14),
		inset 0 -1px 2px rgba(0, 0, 0, 0.35),
		0 1px 2px rgba(0, 0, 0, 0.2);
}

.site-nav__link-badge {
	flex-shrink: 0;
	padding: 0.15rem 0.45rem;
	font-size: 0.625rem;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--usc-gold);
	background: #044331;
	border-radius: 999px;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

@keyframes site-nav-featured-shimmer {

	0%,
	100% {
		background-position: left center, left center, 0% 50%;
	}

	50% {
		background-position: left center, left center, 100% 50%;
	}
}

@media (prefers-reduced-motion: reduce) {

	.site-nav__link--featured {
		animation: none;
	}
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	flex-shrink: 0;
}

.site-header__phone {
	position: relative;
	display: inline-flex;
	flex-direction: row;
	align-items: center;
	gap: 0.45rem;
	color: #044331;
	text-decoration: none;
	white-space: nowrap;
	padding-bottom: 0;
	transition: color 180ms ease;
}

.site-header__phone-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.05rem;
	line-height: 1.15;
}

.site-header__phone-label {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #044331;
}

.site-header__phone-num {
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	text-transform: none;
}

.site-header__phone::after {
	display: none;
}

.site-header__phone:hover {
	color: #0a6b4f;
}

.site-header__phone:hover .site-header__phone-label {
	color: #0a6b4f;
}

.site-header--compact .site-header__phone-copy {
	display: none;
}

.site-header__phone-icon {
	display: block;
	flex-shrink: 0;
	color: inherit;
}

.site-header__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	text-decoration: none;
	border-radius: 4px;
	white-space: nowrap;
}

.site-nav__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
}

.site-nav__toggle-bar {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--wp--preset--color--text);
	border-radius: 1px;
	transform-origin: center;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bar:nth-child(2) {
	opacity: 0;
}

.site-nav__toggle[aria-expanded="true"] .site-nav__toggle-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.site-header--compact .site-nav__list {
	column-gap: 1rem;
	row-gap: 0.4rem;
}

.site-header--compact .site-nav__list a {
	font-size: 0.875rem;
}

@media (max-width: 1260px) and (min-width: 1025px) {

	.site-header__bar-inner,
	.site-header--compact .site-header__bar-inner {
		grid-template-columns: minmax(0, 1fr) auto;
		grid-template-areas:
			"brand actions"
			"nav nav";
		row-gap: 0;
		column-gap: 1rem;
	}

	.site-header__bar-inner > .site-header__nav-slot,
	.site-header--compact .site-header__bar-inner > .site-header__nav-slot {
		justify-content: center;
		min-height: 3rem;
		width: 100%;
		border-top: 1px solid rgba(22, 25, 43, 0.08);
	}

	.site-header__bar-inner > .site-header__actions {
		justify-self: end;
	}
}

@media (max-width: 1024px) {

	.site-utility {
		max-height: 5rem;
	}

	.site-utility__inner {
		display: grid;
		grid-template-columns: 1fr;
		padding: 0;
		gap: 0;
	}

	.site-utility__promo {
		width: 100%;
		padding: 0.45rem 1rem;
		border-bottom: 1px solid rgba(22, 25, 43, 0.08);
		white-space: normal;
		text-align: center;
	}

	.site-utility__nav {
		width: 100%;
		padding: 0.35rem 1rem;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.site-utility__nav::-webkit-scrollbar {
		display: none;
	}

	.site-utility__list {
		flex-wrap: nowrap;
		justify-content: flex-start;
		gap: 0.15rem 0.85rem;
		width: max-content;
		max-width: none;
		margin-inline: auto;
	}

	.site-header__bar-inner {
		grid-template-columns: auto 1fr auto auto;
		grid-template-areas: "brand . actions nav";
	}

	.site-header__bar-inner > .site-header__nav-slot {
		position: relative;
		border-top: 0;
		min-height: 3.5rem;
		justify-content: flex-end;
	}

	.site-header__bar-inner > .site-brand,
	.site-header__bar-inner > .site-header__actions {
		min-height: 3.5rem;
	}

	.site-header--compact .site-header__bar-inner {
		grid-template-columns: auto auto 1fr;
		grid-template-areas: "brand nav actions";
	}

	.site-header--compact .site-header__bar-inner > .site-header__actions {
		justify-self: end;
	}

	.site-nav__toggle {
		display: flex;
	}

	.site-nav {
		display: none;
		position: fixed;
		top: var(--usc-header-offset, 7.5rem);
		left: 0;
		right: 0;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		margin: 0;
		box-sizing: border-box;
		background: var(--wp--preset--color--base);
		border: 0;
		border-bottom: 1px solid color-mix(in srgb, var(--wp--preset--color--text) 8%, transparent);
		box-shadow: 0 12px 28px color-mix(in srgb, var(--wp--preset--color--text) 10%, transparent);
		padding: 1rem clamp(1.25rem, 4vw, 2rem) 1.5rem;
		z-index: 90;
		overflow-x: clip;
		overflow-y: auto;
		max-height: calc(100dvh - var(--usc-header-offset, 7.5rem));
	}

	.site-header__nav-slot .site-nav {
		left: 0;
		right: 0;
		width: 100%;
		max-width: 100%;
		min-width: 0;
		margin: 0;
		border-left: 0;
		border-right: 0;
	}

	.site-nav.is-open {
		display: block;
	}

	.site-nav__list {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: min(100%, var(--usc-container-wide, 1320px));
		max-width: 100%;
		margin-inline: auto;
		box-sizing: border-box;
	}

	.site-nav__list li {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		border-bottom: 1px solid color-mix(in srgb, var(--wp--preset--color--text) 6%, transparent);
	}

	.site-nav__list a:not(.site-nav__link--featured) {
		display: block;
		padding: 0.875rem 0;
		font-size: 1rem;
	}

	.site-nav__list a.site-nav__link--emphasis:has(.site-nav__link-badge) {
		display: inline-flex;
	}

	.site-nav__item--featured {
		border-bottom: none;
		padding: 0.35rem 0 0.75rem;
		width: 100%;
		max-width: 100%;
		overflow: visible;
	}

	.site-nav__item--sep {
		margin-left: 0;
		padding-left: 0;
		border-left: 0;
		margin-top: 0.5rem;
		padding-top: 0.5rem;
		border-top: 1px solid rgba(22, 25, 43, 0.12);
	}

	.site-nav__list a.site-nav__link--featured {
		display: inline-flex;
		align-items: center;
		box-sizing: border-box;
		width: auto;
		max-width: 100%;
		padding: 0.55rem 0.85rem 0.55rem 0.95rem;
		font-size: 0.9375rem;
	}

	body:has(.site-nav.is-open) {
		overflow-x: clip;
	}
}

@media (prefers-reduced-motion: reduce) {
	.site-header,
	.promo-bar,
	.site-header__bar-inner,
	.site-header__bar-inner > .site-header__nav-slot,
	.site-header .site-brand__logo,
	.site-header__cta {
		transition: none !important;
	}
}

.product-quick-search {
	position: relative;
	flex-shrink: 0;
}

.product-quick-search__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.125rem;
	height: 2.125rem;
	padding: 0;
	border: 1px solid rgba(4, 67, 49, 0.22);
	border-radius: 4px;
	background: transparent;
	color: #044331;
	cursor: pointer;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.product-quick-search__toggle:hover,
.product-quick-search.is-expanded .product-quick-search__toggle {
	border-color: #044331;
	background: rgba(4, 67, 49, 0.05);
}

.product-quick-search.is-expanded,
.product-quick-search.is-open {
	z-index: 110;
}

.product-quick-search__expand {
	position: absolute;
	right: 0;
	top: calc(100% + 0.5rem);
	z-index: 111;
	width: 14.5rem;
	border: 1px solid rgba(4, 67, 49, 0.16);
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 12px 36px rgba(22, 25, 43, 0.12);
	overflow: hidden;
	transform-origin: top right;
	transition:
		width 0.42s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.42s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.25s ease;
}

.product-quick-search__expand[hidden] {
	display: none;
}

.product-quick-search.is-open .product-quick-search__expand {
	width: min(52rem, calc(100vw - 1.25rem));
	border-color: rgba(4, 67, 49, 0.28);
	box-shadow: 0 20px 52px rgba(22, 25, 43, 0.16);
}

.product-quick-search__label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.product-quick-search__field {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.55rem 0.65rem;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.product-quick-search.is-open .product-quick-search__field {
	border-bottom: 1px solid rgba(22, 25, 43, 0.08);
}

.product-quick-search__icon {
	flex-shrink: 0;
	color: #94a3b8;
}

.product-quick-search__input {
	flex: 1;
	min-width: 0;
	border: 0;
	background: transparent;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.3;
	color: #16192b;
}

.product-quick-search__input::placeholder {
	color: #94a3b8;
	font-weight: 400;
}

.product-quick-search__input:focus {
	outline: none;
}

.product-quick-search__clear {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 1.5rem;
	height: 1.5rem;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #94a3b8;
	cursor: pointer;
}

.product-quick-search__clear:hover {
	color: #16192b;
}

.product-quick-search__panel {
	display: grid;
	grid-template-rows: 0fr;
	margin: 0;
	overflow: hidden;
	transition: grid-template-rows 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-quick-search.is-open .product-quick-search__panel {
	grid-template-rows: 1fr;
}

.product-quick-search__panel-inner {
	min-height: 0;
	max-height: min(72vh, 30rem);
	padding: 0.5rem;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	overflow: auto;
	overscroll-behavior: contain;
	opacity: 0;
	transition: opacity 0.28s ease 0.08s;
}

.product-quick-search.is-open .product-quick-search__panel-inner {
	opacity: 1;
}

.product-quick-search--inline {
	flex: 0 1 26rem;
	width: 100%;
	max-width: 26rem;
	margin-right: auto;
}

.product-quick-search--inline .product-quick-search__expand,
.product-quick-search--inline.is-open .product-quick-search__expand,
.product-quick-search--inline.is-expanded .product-quick-search__expand {
	position: relative;
	right: auto;
	top: auto;
	width: 100%;
	border-color: rgba(4, 67, 49, 0.22);
	border-radius: 8px;
	box-shadow: none;
	overflow: visible;
}

.product-quick-search--inline .product-quick-search__field {
	padding: 0.7rem 0.95rem;
	gap: 0.6rem;
}

.product-quick-search--inline .product-quick-search__input {
	font-size: 1rem;
}

.product-quick-search--inline .product-quick-search__panel {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 0.4rem);
	z-index: 111;
	border-radius: 10px;
}

.product-quick-search--inline.is-open .product-quick-search__panel {
	background: #fff;
	border: 1px solid rgba(4, 67, 49, 0.16);
	box-shadow: 0 12px 36px rgba(22, 25, 43, 0.12);
}

@media (prefers-reduced-motion: reduce) {

	.product-quick-search__expand,
	.product-quick-search__panel,
	.product-quick-search__panel-inner {
		transition: none;
	}

	.product-quick-search.is-open .product-quick-search__panel-inner {
		opacity: 1;
	}
}

.product-quick-search__list {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.product-quick-search__empty {
	margin: 1rem;
	font-size: 0.9375rem;
	color: #64748b;
	text-align: center;
}

.quick-search-card {
	display: grid;
	grid-template-columns: clamp(5.5rem, 14vw, 7.5rem) minmax(0, 1fr);
	gap: 1rem;
	align-items: center;
	padding: 0.85rem;
	border-radius: 8px;
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	transition: background 0.15s ease;
}

.quick-search-card:hover {
	background: #f8f7f4;
}

.quick-search-card__media {
	display: block;
	aspect-ratio: 1;
	overflow: hidden;
	border-radius: 6px;
	background: #f1f5f9;
}

.quick-search-card__img,
.quick-search-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.quick-search-card__body {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 0;
}

.quick-search-card__title {
	font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
	font-weight: 700;
	line-height: 1.2;
	color: #16192b;
}

.quick-search-card__excerpt {
	font-size: 0.875rem;
	line-height: 1.45;
	color: #64748b;
}

.quick-search-card .shop-product__meta {
	margin-top: 0.15rem;
}

@media (max-width: 768px) {

	.product-quick-search__expand {
		right: -0.5rem;
	}

	.product-quick-search.is-open .product-quick-search__expand {
		width: calc(100vw - 1.25rem);
	}

	.quick-search-card {
		grid-template-columns: 4.75rem minmax(0, 1fr);
		gap: 0.75rem;
		padding: 0.65rem;
	}
}

main.usc-page-main {
	padding-block: var(--wp--preset--spacing--50, 2.5rem);
}

.home main.wp-block-group {
	padding: 0;
	margin: 0;
	max-width: none;
}

.home main.wp-block-group > * {
	margin-block: 0;
}

.home .home-hero-editorial + .wp-block-html {
	margin: 0;
	padding: 0;
}

.home .home-hero-editorial + .wp-block-html > .home-body,
.home .home-hero-editorial + * .home-body {
	margin-top: 0;
}

.home .hero-slider + .wp-block-html {
	margin: 0;
	padding: 0;
}

.home .hero-slider + .wp-block-html > .home-body,
.home .hero-slider + * .home-body {
	margin-top: 0;
}

.home-hero-editorial {
	--home-hero-card-radius: 12px;
	--home-hero-card-shadow: 0 2px 14px rgba(22, 25, 43, 0.07);
	--home-hero-card-shadow-hover: 0 8px 24px rgba(22, 25, 43, 0.1);
	padding: clamp(2.75rem, 5vw, 4rem) 0;
	background: #f4f7f9;
	color: #16192b;
	border-bottom: none;
}

.home-hero-editorial__inner {
	width: 100%;
}

.home-hero-editorial__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: clamp(2.5rem, 5vw, 4rem);
	align-items: center;
}

.home-hero-editorial__copy {
	display: flex;
	flex-direction: column;
	gap: 0;
	max-width: 36rem;
}

.home-hero-editorial__title {
	margin: 0 0 1rem;
	max-width: 11em;
	font-size: clamp(2.35rem, 4.2vw, 3.25rem);
	font-weight: 800;
	line-height: 1.06;
	letter-spacing: -0.03em;
	color: #16192b;
}

.home-hero-editorial__deck {
	margin: 0 0 1.25rem;
	max-width: 38ch;
	font-size: clamp(1rem, 1.7vw, 1.125rem);
	line-height: 1.55;
	color: #64748b;
}

.home-hero-editorial__perks {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0;
	margin: 0 0 1.5rem;
	padding: 0;
	list-style: none;
}

.home-hero-editorial__perk {
	display: inline-flex;
	align-items: baseline;
	gap: 0.35rem;
	padding-right: 1.25rem;
	margin-right: 1.25rem;
	border-right: 1px solid var(--usc-home-rule);
}

.home-hero-editorial__perk:last-child {
	padding-right: 0;
	margin-right: 0;
	border-right: none;
}

.home-hero-editorial__perk-value {
	font-size: 0.9375rem;
	font-weight: 800;
	line-height: 1.2;
	color: #044331;
}

.home-hero-editorial__perk-label {
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.2;
	color: #64748b;
}

.home-hero-editorial__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
}

.home-hero-editorial__btn {
	min-width: 10rem;
	padding-inline: 1.65rem;
	border-radius: 999px;
}

.home-hero-editorial__btn--outline {
	background: #fff;
	color: #044331;
	box-shadow: inset 0 0 0 1.5px #044331;
}

.home-hero-editorial__btn--outline:hover {
	background: #044331;
	color: #fff;
}

.home-hero-editorial__delivery {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0 1.25rem;
	padding-top: 0;
	border-top: 0;
}

.home-hero-editorial__delivery-item {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding-right: 1.25rem;
	border-right: 1px solid var(--usc-home-rule);
	font-size: 0.8125rem;
	line-height: 1.45;
	color: #64748b;
}

.home-hero-editorial__delivery-item:last-child {
	padding-right: 0;
	border-right: none;
}

.home-hero-editorial__delivery-item strong {
	font-size: 0.875rem;
	font-weight: 700;
	color: #16192b;
}

.home-hero-editorial__delivery-item a {
	color: #044331;
	font-weight: 600;
	text-decoration: none;
}

.home-hero-editorial__delivery-item a:hover {
	text-decoration: underline;
}

.home-hero-editorial__label,
.home-hero-editorial__name {
	display: block;
	width: 100%;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
	color: #16192b;
}

.home-hero-editorial__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	align-items: stretch;
}

.home-hero-editorial__card {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	border: 0;
	border-radius: var(--home-hero-card-radius);
	background: #fff;
	box-shadow: var(--home-hero-card-shadow);
	text-decoration: none;
	color: #16192b;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.home-hero-editorial__card:hover {
	box-shadow: var(--home-hero-card-shadow-hover);
	transform: translateY(-2px);
}

.home-hero-editorial__card:hover .home-hero-editorial__name {
	color: #044331;
}

.home-hero-editorial__media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
	aspect-ratio: 1.05;
	padding: 0;
	overflow: hidden;
	background: #fff;
}

.home-hero-editorial__media img,
.home-hero-editorial__img {
	position: static;
	display: block;
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: cover;
	object-position: center center;
}

.home-hero-editorial__card .home-hero-editorial__copy {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	min-height: 3.25rem;
	padding: 0.75rem 0.85rem 1rem;
	background: #fff;
	border-top: 0;
}

.home-hero-editorial__placeholder {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 800;
	color: #044331;
	background: #f0f2f1;
}

.home-hero-v2__showcase {
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: var(--home-hero-card-radius);
	overflow: hidden;
	box-shadow: var(--home-hero-card-shadow);
	background: #f0f2f1;
}

.home-hero-v2__slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	animation: heroV2Fade 12s infinite;
}

.home-hero-v2__slide:nth-child(1) {
	animation-delay: 0s;
}

.home-hero-v2__slide:nth-child(2) {
	animation-delay: 3s;
}

.home-hero-v2__slide:nth-child(3) {
	animation-delay: 6s;
}

.home-hero-v2__slide:nth-child(4) {
	animation-delay: 9s;
}

.home-hero-v2__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.home-hero-v2__caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 2.75rem 1.35rem 1.2rem;
	font-size: clamp(1.15rem, 1.6vw, 1.5rem);
	font-weight: 700;
	color: #fff;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0));
}

@keyframes heroV2Fade {

	0% {
		opacity: 0;
		z-index: 2;
	}

	4% {
		opacity: 1;
		z-index: 2;
	}

	25% {
		opacity: 1;
		z-index: 2;
	}

	25.01% {
		opacity: 1;
		z-index: 1;
	}

	29% {
		opacity: 1;
		z-index: 1;
	}

	29.01% {
		opacity: 0;
		z-index: 1;
	}

	100% {
		opacity: 0;
		z-index: 1;
	}
}

@media (prefers-reduced-motion: reduce) {

	.home-hero-v2__slide {
		animation: none;
	}

	.home-hero-v2__slide:nth-child(1) {
		opacity: 1;
	}
}

.home-hero-v3__grid {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-auto-rows: clamp(3rem, 6.5vw, 4.5rem);
	gap: clamp(0.5rem, 0.9vw, 0.65rem);
	width: 100%;
}

.home-hero-v3__frame {
	position: relative;
	min-width: 0;
	min-height: 0;
	overflow: hidden;
	border-radius: calc(var(--home-hero-card-radius) * 0.7);
	background: #16192b;
	box-shadow: var(--home-hero-card-shadow);
}

.home-hero-v3__frame--a {
	grid-column: 1 / span 7;
	grid-row: 1 / span 7;
}

.home-hero-v3__frame--b {
	grid-column: 8 / span 5;
	grid-row: 1 / span 4;
}

.home-hero-v3__frame--c {
	grid-column: 8 / span 5;
	grid-row: 5 / span 3;
}

.home-hero-v3__slide {
	position: absolute;
	inset: 0;
	margin: 0;
}

.home-hero-v3__slide--over {
	opacity: 0;
}

.home-hero-v3__frame--a .home-hero-v3__slide--over {
	animation: heroV3Cell 15s infinite;
}

.home-hero-v3__frame--b .home-hero-v3__slide--over {
	animation: heroV3Cell 18s infinite;
	animation-delay: -6s;
}

.home-hero-v3__frame--c .home-hero-v3__slide--over {
	animation: heroV3Cell 21s infinite;
	animation-delay: -12s;
}

.home-hero-v3__img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.home-hero-v3__scrim {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
 linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.1) 62%, rgba(0, 0, 0, 0.68) 100%);
}

.home-hero-v3__caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: 0;
	padding: clamp(0.75rem, 1.6vw, 1.1rem);
}

.home-hero-v3__brand {
	font-size: clamp(0.875rem, 1.5vw, 1rem);
	font-weight: 800;
	letter-spacing: -0.01em;
	color: #fff;
	text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
}

.home-hero-v3__frame--a .home-hero-v3__brand {
	font-size: clamp(1.1rem, 2vw, 1.5rem);
}

@keyframes heroV3Cell {

	0%,
 8% {
		opacity: 0;
	}

	18%,
 46% {
		opacity: 1;
	}

	56%,
 100% {
		opacity: 0;
	}
}

@media (prefers-reduced-motion: reduce) {

	.home-hero-v3__slide--over {
		animation: none;
	}
}

.home-hero-editorial--feature {
	border-top: 1px solid var(--usc-home-rule);
}

.home-hero-editorial__layout--feature {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: center;
}

.home-hero-editorial__card--feature {
	align-self: stretch;
}

.home-hero-editorial__card--feature .home-hero-editorial__media {
	aspect-ratio: 4 / 3;
}

.home-hero-editorial__eyebrow {
	margin: 0 0 0.85rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #64748b;
}

.home-hero-editorial__feature-meta {
	margin: 0 0 1.5rem;
}

@media (max-width: 1024px) {

	.home-hero-editorial__layout--feature {
		grid-template-columns: 1fr;
	}
}

.home-highlights {
	padding-block: clamp(3rem, 6vw, 4.5rem);
	background: #fff;
}

.home-highlights__head {
	max-width: 46rem;
	margin: 0 0 clamp(2rem, 4vw, 3rem);
}

.home-highlights__title {
	margin: 0.5rem 0 0;
	font-size: clamp(1.75rem, 3.4vw, 2.5rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.025em;
	color: #16192b;
}

.home-highlights__deck {
	margin: 0.85rem 0 0;
	max-width: 42rem;
	font-size: clamp(1rem, 1.6vw, 1.125rem);
	line-height: 1.6;
	color: #64748b;
}

.home-highlights__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.5rem, 3vw, 2.5rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.home-highlights__item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
}

.home-highlights__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 14px;
	color: #044331;
	background: rgba(4, 67, 49, 0.08);
}

.home-highlights__item-title {
	margin: 0;
	font-size: 1.0625rem;
	font-weight: 700;
	line-height: 1.3;
	color: #16192b;
}

.home-highlights__item-text {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #64748b;
}

@media (max-width: 900px) {

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

@media (max-width: 560px) {

	.home-highlights__grid {
		grid-template-columns: 1fr;
	}
}

.home-ugc {
	padding-block: clamp(3rem, 6vw, 4.5rem);
	background: #fff;
}

.home-ugc__head {
	max-width: 46rem;
	margin: 0 0 clamp(2rem, 4vw, 3rem);
}

.home-ugc__title {
	margin: 0.5rem 0 0;
	font-size: clamp(1.75rem, 3.4vw, 2.5rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.025em;
	color: #16192b;
}

.home-ugc__deck {
	margin: 0.85rem 0 0;
	max-width: 42rem;
	font-size: clamp(1rem, 1.6vw, 1.125rem);
	line-height: 1.6;
	color: #64748b;
}

.home-ugc__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-flow: dense;
	gap: clamp(0.75rem, 1.5vw, 1.15rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.home-ugc__item {
	margin: 0;
	grid-column: span 1;
}

.home-ugc__item--wide {
	grid-column: span 2;
}

.home-ugc__media {
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 12px;
	background: #f4f7f9;
}

.home-ugc__item--wide .home-ugc__media {
	aspect-ratio: 8 / 3;
}

.home-ugc__img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-ugc__item:hover .home-ugc__img {
	transform: scale(1.04);
}

.home-ugc__img--over {
	opacity: 0;
	animation: ugcSwap 20s ease-in-out infinite;
}

.home-ugc__item:nth-child(1) .home-ugc__img--over {
	animation-duration: 17s;
	animation-delay: -2s;
}

.home-ugc__item:nth-child(2) .home-ugc__img--over {
	animation-duration: 21s;
	animation-delay: -9s;
}

.home-ugc__item:nth-child(3) .home-ugc__img--over {
	animation-duration: 15s;
	animation-delay: -5s;
}

.home-ugc__item:nth-child(4) .home-ugc__img--over {
	animation-duration: 23s;
	animation-delay: -14s;
}

.home-ugc__item:nth-child(5) .home-ugc__img--over {
	animation-duration: 19s;
	animation-delay: -7s;
}

.home-ugc__item:nth-child(6) .home-ugc__img--over {
	animation-duration: 25s;
	animation-delay: -3s;
}

.home-ugc__item:nth-child(7) .home-ugc__img--over {
	animation-duration: 16s;
	animation-delay: -11s;
}

.home-ugc__item:nth-child(8) .home-ugc__img--over {
	animation-duration: 22s;
	animation-delay: -18s;
}

@keyframes ugcSwap {

	0%,
 42% {
		opacity: 0;
	}

	50%,
 60% {
		opacity: 1;
	}

	68%,
 100% {
		opacity: 0;
	}
}

@media (prefers-reduced-motion: reduce) {

	.home-ugc__img--over {
		animation: none;
	}
}

@media (max-width: 900px) {

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

@media (max-width: 560px) {

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

	.home-ugc__item--wide {
		grid-column: span 2;
	}
}

@media (max-width: 1024px) {

	.home-hero-editorial__layout {
		grid-template-columns: 1fr;
	}

	.home-hero-editorial__copy {
		max-width: none;
	}

	.home-hero-editorial__title {
		max-width: none;
	}

	.home-hero-editorial__deck {
		max-width: none;
	}
}

@media (max-width: 768px) {

	.home-hero-editorial__perks {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.75rem;
	}

	.home-hero-editorial__perk {
		padding-right: 0;
		margin-right: 0;
		border-right: none;
	}

	.home-hero-editorial__delivery {
		grid-template-columns: 1fr;
		gap: 1rem;
	}

	.home-hero-editorial__delivery-item {
		padding-right: 0;
		border-right: none;
		padding-bottom: 1rem;
		border-bottom: 1px solid var(--usc-home-rule);
	}

	.home-hero-editorial__delivery-item:last-child {
		padding-bottom: 0;
		border-bottom: none;
	}

	.home-hero-editorial__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 480px) {

	.home-hero-editorial__actions {
		flex-direction: column;
	}

	.home-hero-editorial__btn {
		width: 100%;
	}
}

.hero-slider {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #00241a;
	margin-bottom: 0;
}

.hero-slider__track {
	position: relative;
	min-height: clamp(420px, 62vh, 680px);
}

.hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.6s ease, visibility 0.6s ease;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding-top: clamp(2.5rem, 8vh, 5rem);
}

.hero-slide.is-active {
	opacity: 1;
	visibility: visible;
	z-index: 1;
}

.hero-slide__media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center 30%;
	background-repeat: no-repeat;
}

.hero-slide__media--custom {
	background: linear-gradient(135deg, #044331 0%, #00241a 55%, #16192b 100%);
}

.hero-slide__scrim {
	position: absolute;
	inset: 0;
	background:
 linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0.15) 100%);
}

.hero-slide__scrim--custom {
	background:
 linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 36, 26, 0.5) 100%);
}

.hero-slide__scrim--strength {
	background:
 linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 36, 26, 0.45) 50%, rgba(0, 0, 0, 0.35) 100%);
}

.hero-slide--strength .hero-slide__media {
	background-position: center 35%;
}

.hero-slider--form-active .hero-slider__track {
	min-height: clamp(560px, 78vh, 880px);
}

.hero-slide--form {
	align-items: center;
	padding: clamp(1.5rem, 4vh, 3rem) 1.5rem 4.5rem;
}

.hero-slide__media--form {
	background: linear-gradient(135deg, #00241a 0%, #044331 45%, #16192b 100%);
}

.hero-slide__scrim--form {
	background:
 linear-gradient(90deg, rgba(0, 36, 26, 0.85) 0%, rgba(0, 36, 26, 0.55) 45%, rgba(0, 0, 0, 0.25) 100%);
}

.hero-slide__split {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
	align-items: center;
	gap: clamp(1.5rem, 4vw, 3rem);
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
}

.hero-slide__copy {
	text-align: left;
}

.hero-slide__eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--usc-gold);
}

.hero-slide__title--left {
	text-align: left;
	font-size: clamp(1.75rem, 4.5vw, 3rem);
}

.hero-slide__sub--left {
	text-align: left;
	max-width: 34rem;
	margin-bottom: 1.25rem;
}

.hero-slide__phone {
	display: inline-flex;
	font-size: 0.9375rem;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-slide__phone:hover {
	color: var(--usc-gold);
	border-bottom-color: var(--usc-gold);
}

.hero-form-card {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
	overflow: hidden;
}

.hero-form-card__embed {
	min-height: 420px;
}

.hero-form-card__embed iframe {
	display: block;
	width: 100% !important;
	border: none;
}

.hero-slide--split-image {
	align-items: center;
	padding: clamp(2rem, 5vh, 3rem) 1.5rem 4.5rem;
}

.hero-slide__media--split-image {
	background: linear-gradient(135deg, #00241a 0%, #044331 48%, #16192b 100%);
}

.hero-slide--split-image .hero-slide__split {
	grid-template-columns: minmax(0, 0.92fr) minmax(300px, 520px);
	align-items: center;
	max-width: 1240px;
}

.hero-slide__visual {
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
	max-height: clamp(280px, 52vh, 460px);
	width: 100%;
	aspect-ratio: 4 / 5;
	background: #00241a;
}

.hero-slide--split-image .hero-slide__visual {
	max-height: clamp(300px, 54vh, 480px);
}

.hero-slide__visual img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

.hero-slide__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.85rem 1.25rem;
}

.hero-slide__actions--left {
	justify-content: flex-start;
}

.hero-slide__actions .hero-slide__cta {
	margin: 0;
}

.hero-slide__content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 900px;
	padding: 0 1.5rem;
}

.hero-slide__title {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 5.5vw, 3.75rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hero-slide__word {
	display: inline-block;
	margin: 0 0.15em;
}

.hero-slide__word--red {
	color: #ef4444;
}

.hero-slide__word--white {
	color: #fff;
}

.hero-slide__word--green {
	color: #4ade80;
}

.hero-slide__word--gold {
	color: var(--usc-gold);
}

.hero-slide__sub {
	margin: 0 0 1.25rem;
	font-size: clamp(0.9375rem, 2vw, 1.125rem);
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.02em;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.hero-slide__promo-tag {
	display: inline-block;
	margin: 0 0 0.875rem;
	padding: 0.35rem 0.75rem;
	background: var(--usc-gold);
	color: #16192b;
	font-size: 0.6875rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: 3px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.hero-slide__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.75rem;
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 4px;
}

.hero-slide__pills {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin: 0 0 1.5rem;
}

.hero-slide__pill {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.25);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	backdrop-filter: blur(4px);
}

.hero-slide__stats {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
	margin: 0 0 1.5rem;
}

.hero-slide__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 7.5rem;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 6px;
	background: rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(6px);
}

.hero-slide__stat-value {
	font-size: clamp(1.125rem, 2.5vw, 1.5rem);
	font-weight: 800;
	line-height: 1.1;
	color: var(--usc-gold);
	letter-spacing: 0.02em;
}

.hero-slide__stat-label {
	margin-top: 0.25rem;
	font-size: 0.6875rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.85);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.hero-slider__controls {
	position: absolute;
	bottom: 1.5rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.hero-slider__dots {
	display: flex;
	gap: 0.5rem;
}

.hero-slider__dot {
	width: 8px;
	height: 8px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.45);
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

.hero-slider__dot.is-active {
	background: #fff;
	transform: scale(1.15);
}

.hero-slider__arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.25);
	color: #fff;
	cursor: pointer;
	backdrop-filter: blur(4px);
	transition: background 0.15s ease, border-color 0.15s ease;
}

.hero-slider__arrow:hover {
	background: rgba(0, 0, 0, 0.45);
	border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 640px) {

	.hero-slide__title {
		font-size: clamp(1.625rem, 9vw, 2.25rem);
	}

	.hero-slide__word {
		display: inline;
		margin: 0 0.08em;
	}

	.hero-slider__arrow {
		display: none;
	}

	.hero-slide__stats {
		gap: 0.5rem;
	}

	.hero-slide__stat {
		min-width: calc(33% - 0.5rem);
		flex: 1 1 calc(33% - 0.5rem);
		padding: 0.625rem 0.5rem;
	}
}

@media (max-width: 960px) {

	.hero-slide__split {
		grid-template-columns: 1fr;
		max-width: 520px;
	}

	.hero-slide__copy {
		text-align: center;
	}

	.hero-slide__title--left,
	.hero-slide__sub--left {
		text-align: center;
	}

	.hero-slide__actions--left {
		justify-content: center;
	}

	.hero-slide__sub--left {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-slide--form,
	.hero-slide--split-image {
		padding-bottom: 5rem;
	}

	.hero-slide__visual {
		max-height: clamp(260px, 58vw, 400px);
		width: 100%;
		max-width: 420px;
		margin-inline: auto;
	}
}

.home-video-feature {
	position: relative;
	display: grid;
	place-items: center;
	min-height: clamp(32rem, 88vh, 52rem);
	overflow: hidden;
	color: #fff;
	text-align: center;
}

.home-video-feature__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.home-video-feature__video {
	display: block;
	position: relative;
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.home-video-feature__scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 36, 26, 0.55) 45%, rgba(0, 36, 26, 0.82) 100%);
}

.home-video-feature__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 56rem;
	margin: 0 auto;
	padding: clamp(3rem, 8vw, 5rem) var(--usc-pad-x);
	transition: opacity 0.35s ease, visibility 0.35s ease;
}

.home-video-feature__kicker {
	margin: 0 0 0.75rem;
	color: rgba(255, 255, 255, 0.72);
}

.home-video-feature__kicker::after {
	content: "";
	display: block;
	width: 2.5rem;
	height: 1px;
	margin: 0.85rem auto 0;
	background: var(--usc-gold);
}

.home-video-feature__title {
	margin: 0 0 1.5rem;
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.03em;
	color: #fff;
}

.home-video-feature__play {
	display: grid;
	place-items: center;
	width: clamp(4.75rem, 12vw, 6.75rem);
	height: clamp(4.75rem, 12vw, 6.75rem);
	margin: 0 auto 1.5rem;
	padding: 0;
	border: 2px solid rgba(255, 255, 255, 0.28);
	border-radius: 50%;
	background: rgba(var(--usc-gold-rgb), 0.94);
	color: #00241a;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
	cursor: pointer;
	opacity: 0;
	transform: scale(0.82);
	transition:
		opacity 0.55s ease,
		transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
		background 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

.home-video-feature.is-inview .home-video-feature__play {
	opacity: 1;
	transform: scale(1);
}

.home-video-feature.is-playing .home-video-feature__play {
	opacity: 0;
	transform: scale(0.88);
	pointer-events: none;
}

.home-video-feature__play:hover {
	background: var(--usc-gold-hover);
	border-color: rgba(255, 255, 255, 0.45);
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.34);
}

.home-video-feature__play:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 4px;
}

.home-video-feature__play-icon {
	display: block;
	width: 0;
	height: 0;
	margin-left: 0.28rem;
	border-style: solid;
	border-width: 0.9rem 0 0.9rem 1.45rem;
	border-color: transparent transparent transparent currentcolor;
}

.home-video-feature__lede {
	margin: 0 auto 1.75rem;
	max-width: 40rem;
	font-size: var(--home-deck-size, clamp(1rem, 1.8vw, 1.125rem));
	line-height: var(--home-deck-leading, 1.55);
	color: rgba(255, 255, 255, 0.88);
}

.home-video-feature.is-playing .home-video-feature__scrim {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 36, 26, 0.35) 45%, rgba(0, 36, 26, 0.55) 100%);
}

.home-video-feature.is-playing .home-video-feature__inner {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.home-video-feature.is-playing .home-video-feature__video {
	z-index: 3;
}

.home-video-feature__sound {
	position: absolute;
	right: clamp(0.85rem, 2vw, 1.25rem);
	bottom: clamp(0.85rem, 2vw, 1.25rem);
	z-index: 4;
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	min-height: 2.5rem;
	padding: 0.45rem 0.95rem;
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 999px;
	background: rgba(0, 36, 26, 0.72);
	backdrop-filter: blur(8px);
	color: #fff;
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		transform 0.2s ease;
}

.home-video-feature__sound::before {
	content: "";
	display: block;
	width: 1rem;
	height: 1rem;
	background: currentcolor;
	-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%3Cpolygon points='11 5 6 9 2 9 2 15 6 15 11 19 11 5'/%3E%3Cpath d='M15.54 8.46a5 5 0 0 1 0 7.07'/%3E%3Cpath d='M19.07 4.93a10 10 0 0 1 0 14.14'/%3E%3C/svg%3E") center / contain no-repeat;
	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%3Cpolygon points='11 5 6 9 2 9 2 15 6 15 11 19 11 5'/%3E%3Cpath d='M15.54 8.46a5 5 0 0 1 0 7.07'/%3E%3Cpath d='M19.07 4.93a10 10 0 0 1 0 14.14'/%3E%3C/svg%3E") center / contain no-repeat;
}

.home-video-feature.is-muted .home-video-feature__sound::before {
	-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%3Cpolygon points='11 5 6 9 2 9 2 15 6 15 11 19 11 5'/%3E%3Cline x1='23' y1='9' x2='17' y2='15'/%3E%3Cline x1='17' y1='9' x2='23' y2='15'/%3E%3C/svg%3E") center / contain no-repeat;
	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%3Cpolygon points='11 5 6 9 2 9 2 15 6 15 11 19 11 5'/%3E%3Cline x1='23' y1='9' x2='17' y2='15'/%3E%3Cline x1='17' y1='9' x2='23' y2='15'/%3E%3C/svg%3E") center / contain no-repeat;
}

.home-video-feature__sound:hover {
	background: rgba(0, 36, 26, 0.88);
	border-color: rgba(255, 255, 255, 0.42);
	transform: translateY(-1px);
}

.home-video-feature__sound:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 3px;
}

.home-video-feature__sound[hidden] {
	display: none;
}

.home-video-feature__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.85rem 1.25rem;
	margin-top: 0.25rem;
}

.home-video-feature__cta {
	min-width: 11rem;
}

@media (max-width: 640px) {

	.home-video-feature {
		min-height: clamp(26rem, 88vh, 34rem);
	}

	.home-video-feature:not(.home-video-feature--hero) .home-video-feature__inner {
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		min-height: inherit;
		padding-bottom: 2.5rem;
	}

	.home-video-feature:not(.home-video-feature--hero) .home-video-feature__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.home-video-feature:not(.home-video-feature--hero) .home-video-feature__cta {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {

	.home-video-feature__play {
		opacity: 1;
		transform: none;
		transition: background 0.2s ease, border-color 0.2s ease;
	}

	.home-video-feature__inner {
		transition: none;
	}
}

.home-products {
	padding-block: var(--usc-section-y);
	background: #f8f7f4;
	border-bottom: 1px solid rgba(22, 25, 43, 0.06);
}

.home-products__head {
	max-width: 42rem;
	margin: 0 auto clamp(2rem, 4vw, 3rem);
	text-align: center;
}

.home-products__title {
	margin: 0.75rem 0 1rem;
	font-size: clamp(1.75rem, 3.5vw, 2.25rem);
	font-weight: 800;
	line-height: 1.12;
	color: #16192b;
}

.home-products__deck {
	margin: 0;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: #475569;
}

.home-products__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1rem, 2.5vw, 1.5rem);
}

.product-card {
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid rgba(22, 25, 43, 0.08);
	border-radius: 8px;
	box-shadow: 0 4px 24px rgba(0, 36, 26, 0.06);
	overflow: hidden;
	transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
	border-color: rgba(4, 67, 49, 0.18);
	box-shadow: 0 16px 40px rgba(0, 36, 26, 0.1);
	transform: translateY(-3px);
}

.product-card__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #e8e6e1;
	text-decoration: none;
}

.product-card__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.45s ease, transform 0.55s ease;
}

.product-card__img--hover {
	position: absolute;
	inset: 0;
	opacity: 0;
}

.product-card:hover .product-card__img--primary {
	opacity: 0;
}

.product-card:hover .product-card__img--hover {
	opacity: 1;
	transform: scale(1.04);
}

.product-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: clamp(1.5rem, 3vw, 2rem);
}

.product-card__badge {
	align-self: flex-start;
	margin-bottom: 0.75rem;
	padding: 0.35rem 0.65rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: rgba(4, 67, 49, 0.1);
	color: #044331;
	border-radius: var(--usc-radius);
}

.product-card__badge--gold {
	background: var(--usc-gold);
	color: #16192b;
}

.product-card__title {
	margin: 0 0 0.65rem;
	font-size: clamp(1.25rem, 2.2vw, 1.5rem);
	font-weight: 800;
	line-height: 1.15;
	color: #16192b;
}

.product-card__lead {
	margin: 0 0 1.25rem;
	font-size: 0.9375rem;
	color: #475569;
	line-height: 1.55;
}

.product-card__stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.5rem;
	margin: 0 0 1.25rem;
}

.product-card__stat {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 4.25rem;
	padding: 0.65rem 0.5rem;
	border: 1px solid rgba(4, 67, 49, 0.12);
	border-radius: 6px;
	background: #f8f7f4;
	text-align: center;
}

.product-card--custom .product-card__stat {
	background: rgba(4, 67, 49, 0.05);
}

.product-card__stat-value {
	font-size: clamp(0.8125rem, 1.8vw, 0.9375rem);
	font-weight: 800;
	line-height: 1.15;
	color: #044331;
}

.product-card__stat-label {
	margin-top: 0.2rem;
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #64748b;
}

.product-card__specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem 1rem;
	margin: 0 0 1.5rem;
	padding: 0;
	flex: 1;
}

.product-card__spec {
	margin: 0;
}

.product-card__spec dt {
	margin: 0 0 0.2rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #64748b;
}

.product-card__spec dd {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.4;
	color: #16192b;
}

.product-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: auto;
}

.product-card__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	margin-top: auto;
	padding: 0.75rem 1.5rem;
	background: #044331;
	color: #fff;
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.15s ease, transform 0.15s ease;
}

.product-card__cta:hover {
	background: #0a6b4f;
	color: #fff;
	transform: translateY(-1px);
}

.product-card__cta--outline {
	background: transparent;
	color: #044331;
	border: 1.5px solid #044331;
}

.product-card__cta--outline:hover {
	background: #044331;
	color: #fff;
}

@media (max-width: 768px) {

	.home-products__grid {
		grid-template-columns: 1fr;
	}

	.product-card__specs {
		grid-template-columns: 1fr;
	}

	.product-card__actions {
		flex-direction: column;
	}

	.product-card__actions .product-card__cta {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {

	.product-card,
	.product-card__img {
		transition: none;
	}

	.product-card:hover {
		transform: none;
	}

	.product-card:hover .product-card__img--hover {
		transform: none;
	}
}

.home-products--portrait {
	background: #fff;
}

.home-products--editorial .home-products__head--editorial {
	max-width: 36rem;
	margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.home-products--editorial .home-products__kicker {
	margin: 0 0 0.85rem;
	font-size: var(--home-kicker-size, 0.6875rem);
	font-weight: var(--home-kicker-weight, 700);
	letter-spacing: var(--home-kicker-spacing, 0.14em);
	text-transform: uppercase;
	color: var(--home-kicker-color, #64748b);
}

.home-products--editorial .home-products__title {
	margin: 0 0 1rem;
	font-size: var(--home-title-size, clamp(2rem, 4vw, 2.75rem));
	font-weight: var(--home-title-weight, 800);
	line-height: var(--home-title-leading, 1.05);
	letter-spacing: var(--home-title-tracking, -0.02em);
	color: var(--home-title-color, #16192b);
}

.home-products--editorial .home-products__deck {
	max-width: 32rem;
	margin-inline: auto;
	font-size: var(--home-deck-size, clamp(1rem, 1.8vw, 1.125rem));
	line-height: var(--home-deck-leading, 1.55);
	color: var(--home-deck-color, #64748b);
}

.home-products__grid--portrait {
	align-items: stretch;
	gap: clamp(1rem, 2vw, 1.25rem);
}

.path-card {
	min-width: 0;
}

.path-card__link {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	height: auto;
	overflow: hidden;
	border-radius: var(--home-hero-card-radius);
	box-shadow: var(--home-hero-card-shadow);
	text-decoration: none;
	color: #fff;
}

.path-card__media {
	position: absolute;
	inset: 0;
}

.path-card__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 15%;
	transition: transform 0.7s ease;
}

.path-card--ready .path-card__img {
	object-position: center top;
}

.path-card__link:hover .path-card__img {
	transform: scale(1.04);
}

.path-card__link:hover .path-card__copy {
	transform: translateY(-6px);
}

.path-card__scrim {
	position: absolute;
	inset: 0;
	background:
 linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.08) 62%, rgba(0, 0, 0, 0.62) 100%);
	pointer-events: none;
}

.path-card__copy {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
	padding: clamp(1.5rem, 4vw, 2.25rem);
	transition: transform 0.35s ease;
}

.path-card__kicker {
	font-size: var(--home-kicker-size, 0.6875rem);
	font-weight: var(--home-kicker-weight, 700);
	letter-spacing: var(--home-kicker-spacing, 0.14em);
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.78);
}

.path-card__headline {
	font-size: clamp(1.625rem, 3.2vw, 2.25rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: #fff;
}

.path-card__deck {
	max-width: 22rem;
	font-size: clamp(0.875rem, 1.6vw, 0.9375rem);
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.82);
}

.path-card__cta {
	margin-top: 0.35rem;
	padding-bottom: 2px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.55);
	transition: border-color 0.2s ease, color 0.2s ease;
}

.path-card__link:hover .path-card__cta {
	color: var(--usc-gold);
	border-bottom-color: var(--usc-gold);
}

@media (max-width: 768px) {

	.home-products__grid--portrait {
		grid-template-columns: 1fr;
		gap: 0.75rem;
	}

	.path-card__link {
		aspect-ratio: 5 / 6;
	}
}

@media (prefers-reduced-motion: reduce) {

	.path-card__link,
	.path-card__img {
		transition: none;
	}

	.path-card__link:hover .path-card__img {
		transform: none;
	}
}

.home-program-editorial {
	padding: 3rem 0;
	background: #fff;
}

.home-program-editorial__head {
	max-width: 40rem;
	margin: 0 auto 2rem;
	padding-inline: 1.5rem;
}

.home-program-editorial .row-band {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 320px;
	max-width: var(--usc-container-wide);
	margin: 0 auto;
}

.home-program-editorial .row-band + .row-band {
	margin-top: 0;
}

.home-program-editorial .row-band--flip .row-band__media {
	order: 2;
}

.home-program-editorial .row-band__media {
	position: relative;
	min-height: 280px;
	overflow: hidden;
	background: #e8e6e1;
}

.home-program-editorial .row-band__img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
	object-position: center top;
}

.home-program-editorial .row-band--flip .row-band__img {
	object-position: center 15%;
}

.home-program-editorial .row-band__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 2rem clamp(1.5rem, 4vw, 3rem);
}

.home-program-editorial .row-band__badge {
	align-self: flex-start;
	padding: 0.25rem 0.6rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-radius: 999px;
	background: rgba(4, 67, 49, 0.1);
	color: #044331;
}

.home-program-editorial .row-band__badge--gold {
	background: var(--usc-gold);
	color: #16192b;
}

.home-program-editorial .row-band__copy h3 {
	margin: 0.35rem 0 0.75rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	line-height: 1.1;
	color: #16192b;
}

.home-program-editorial .row-band__copy p {
	margin: 0 0 1.25rem;
	color: #475569;
	max-width: 38ch;
	line-height: 1.55;
}

.home-program-editorial .row-band__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 1.25rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #044331;
}

.home-program-editorial .row-band__actions {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.home-program-editorial .row-band__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.7rem 1.25rem;
	font-size: 0.875rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 4px;
	border: none;
	cursor: pointer;
	font-family: inherit;
	transition: background 0.15s ease, color 0.15s ease;
}

.home-program-editorial .row-band__btn--gold {
	background: var(--usc-gold);
	color: #16192b;
}

.home-program-editorial .row-band__btn--gold:hover {
	background: #f5c518;
	color: #16192b;
}

.home-program-editorial .row-band__btn--green {
	background: #044331;
	color: #fff;
}

.home-program-editorial .row-band__btn--green:hover {
	background: #0a6b4f;
	color: #fff;
}

.home-program-editorial .row-band__btn--outline {
	background: transparent;
	color: #044331;
	border: 1.5px solid #044331;
}

.home-program-editorial .row-band__btn--outline:hover {
	background: #044331;
	color: #fff;
}

@media (max-width: 768px) {

	.home-program-editorial .row-band {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.home-program-editorial .row-band--flip .row-band__media {
		order: 0;
	}

	.home-program-editorial .row-band__media {
		aspect-ratio: 4 / 3;
		min-height: 0;
	}
}

.home-products--portrait.home-products--editorial {
	border-top: 1px solid var(--usc-home-rule);
	border-bottom: 1px solid var(--usc-home-rule);
}

.home-collection--editorial .home-collection__kicker::after {
	content: "";
	display: block;
	width: 2.5rem;
	height: 1px;
	margin: 0.85rem auto 0;
	background: #044331;
}

.home-story--editorial .home-story__kicker::after {
	content: "";
	display: block;
	width: 2.5rem;
	height: 1px;
	margin-top: 0.85rem;
	background: #044331;
}

.home-products__grid--portrait {
	gap: 0;
}

.path-card + .path-card {
	border-left: 1px solid var(--usc-home-rule);
}

.home-video-feature {
	border-bottom: 1px solid var(--usc-home-rule);
}

.home-product-rotator--editorial {
	padding-inline: 0;
	background: #fff;
}

.home-product-rotator--shop-bestsellers {
	padding-block: clamp(2rem, 4vw, 2.75rem);
	background: #fafaf9;
}

.home-body > .home-product-rotator--shop-bestsellers:first-child {
	border-top: none;
}

.home-product-rotator--shop-bestsellers .home-product-rotator__head {
	margin-bottom: clamp(1.35rem, 3vw, 1.85rem);
}

.home-product-rotator--shop-bestsellers .home-product-rotator__foot {
	margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
}

.home-product-rotator--shop-bestsellers + .home-intro--editorial {
	border-top: 1px solid var(--usc-home-rule);
}

.home-product-rotator__copy .shop-product__meta {
	margin: 0.35rem 0 0;
}

.home-product-rotator--shop-bestsellers .home-product-rotator__card-cta,
.home-product-rotator--editorial .home-product-rotator__copy:has(.shop-product__meta) .home-product-rotator__card-cta {
	display: none;
}

.home-product-rotator--shop-bestsellers .home-product-rotator__copy {
	gap: 0.15rem;
}

.home-product-rotator--editorial .home-product-rotator__inner {
	padding-inline: var(--usc-pad-x);
}

.home-product-rotator--editorial .home-product-rotator__head {
	margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.home-product-rotator--editorial .home-section-head--split .home-section-head__deck {
	margin: 1rem 0 0;
	max-width: 32rem;
	text-align: left;
}

.home-product-rotator__kicker-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem;
}

.home-product-rotator__speed-badge {
	flex-shrink: 0;
	padding: 0.2rem 0.55rem;
	font-size: 0.625rem;
	font-weight: 800;
	line-height: 1.15;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--usc-gold);
	background: #044331;
	border-radius: 999px;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.home-product-rotator__speed {
	font-weight: 800;
	color: #044331;
	white-space: nowrap;
}

.home-product-rotator__speed-num {
	color: var(--usc-gold);
}

.home-product-rotator__controls {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	gap: 0.5rem;
}

.home-product-rotator__controls[hidden] {
	display: none !important;
}

.home-product-rotator__track {
	margin-block: 0 clamp(0.5rem, 1vw, 0.75rem);
}

.home-product-rotator--editorial .home-product-rotator__scroll {
	display: flex;
	gap: clamp(0.75rem, 1.25vw, 1rem);
	overflow-x: auto;
	margin: 0;
	padding: 0 var(--usc-pad-x) 0.25rem;
	scroll-snap-type: x mandatory;
	scroll-padding-inline: var(--usc-pad-x);
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.home-product-rotator--editorial .home-product-rotator__scroll::-webkit-scrollbar {
	display: none;
}

.home-product-rotator--editorial .home-product-rotator__scroll:focus-visible {
	outline: 2px solid #044331;
	outline-offset: 4px;
}

.home-product-rotator__arrow {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 1px solid var(--usc-home-rule);
	background: #fff;
	color: #044331;
	cursor: pointer;
	transition:
		background 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease,
		opacity 0.2s ease;
}

.home-product-rotator__arrow:hover:not(:disabled) {
	border-color: #044331;
	background: #044331;
	color: #fff;
}

.home-product-rotator__arrow:disabled {
	opacity: 0.3;
	cursor: default;
}

.home-product-rotator--editorial .home-product-rotator__card {
	flex: 0 0 clamp(17rem, 28vw, 22rem);
	align-self: flex-start;
	scroll-snap-align: start;
}

.home-product-rotator--grid .home-product-rotator__track {
	margin-block: 0;
}

.home-product-rotator--editorial.home-product-rotator--grid .home-product-rotator__scroll {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.5rem);
	max-width: var(--usc-container-wide);
	margin-inline: auto;
	overflow: visible;
	scroll-snap-type: none;
}

.home-product-rotator--editorial.home-product-rotator--grid .home-product-rotator__card {
	flex: initial;
	width: auto;
	scroll-snap-align: none;
}

.home-product-rotator--editorial.home-product-rotator--grid .home-product-rotator__media {
	display: block;
	flex: none;
	height: auto;
	min-height: 0;
	padding: 0;
	aspect-ratio: 1;
	background: #f8f7f4;
}

.home-product-rotator--editorial.home-product-rotator--grid .home-product-rotator__image,
.home-product-rotator--editorial.home-product-rotator--grid .home-product-rotator__media img {
	object-fit: cover;
}

@media (max-width: 768px) {

	.home-product-rotator--editorial.home-product-rotator--grid .home-product-rotator__scroll {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.home-product-rotator--editorial .home-product-rotator__foot {
	margin-top: clamp(2rem, 4vw, 2.75rem);
	padding-top: 0;
	text-align: center;
	border-top: 0;
}

.home-product-rotator--editorial .home-product-rotator__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1rem 1.5rem;
}

.home-product-rotator--editorial .home-product-rotator__shop-cta {
	min-width: 10.5rem;
}

.rtg-marketing--facts .landing-facts__item + .landing-facts__item {
	border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.landing-steps--editorial {
	border-top: 1px solid var(--usc-home-rule);
	border-bottom: 1px solid var(--usc-home-rule);
}

.landing-steps--editorial .landing-steps__title {
	padding-bottom: clamp(1rem, 2vw, 1.25rem);
	border-bottom: 1px solid var(--usc-home-rule-light);
}

.landing-steps--editorial .landing-steps__list {
	border-color: var(--usc-home-rule);
}

.landing-steps--editorial .landing-step {
	border-right-color: var(--usc-home-rule);
}

.home-story--editorial .home-story__head {
	padding-bottom: clamp(1.25rem, 2.5vw, 1.5rem);
	margin-bottom: clamp(1.25rem, 2.5vw, 1.5rem);
	border-bottom: 1px solid var(--usc-home-rule);
}

.story-editorial {
	box-shadow: inset 0 0 0 1px var(--usc-home-rule);
}

@media (max-width: 768px) {

	.path-card + .path-card {
		border-left: none;
		border-top: 1px solid var(--usc-home-rule);
	}

	.rtg-marketing--facts .landing-facts__item + .landing-facts__item {
		border-left: none;
		border-top: 1px solid rgba(255, 255, 255, 0.14);
	}

	.rtg-marketing--facts .landing-facts__inner {
		gap: 0;
	}

	.rtg-marketing--facts .landing-facts__item {
		padding-block: 0.85rem;
	}

	.home-collection--editorial .home-collection__grid {
		border-left: none;
		border-top: 1px solid var(--usc-home-rule);
	}
}

.home-intro--editorial {
	background: #fff;
}

.home-intro--compare {
	background: #fafaf9;
}

.home-intro__compare-label {
	margin: 0 0 1rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #94a3b8;
}

.home-intro__layout--story {
	display: block;
}

.home-intro__layout--classic {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: start;
}

.home-intro__kicker {
	margin: 0 0 0.85rem;
	font-size: var(--home-kicker-size, 0.6875rem);
	font-weight: var(--home-kicker-weight, 700);
	letter-spacing: var(--home-kicker-spacing, 0.14em);
	text-transform: uppercase;
	color: var(--home-kicker-color, #64748b);
}

.home-intro__title {
	margin: 0;
	max-width: 16ch;
	font-size: clamp(1.875rem, 3.8vw, 2.75rem);
	font-weight: var(--home-title-weight, 800);
	line-height: 1.08;
	letter-spacing: -0.025em;
	color: var(--home-title-color, #16192b);
}

.home-intro__lead {
	margin: 1.35rem 0 0;
	max-width: 38rem;
	padding-left: 1.15rem;
	border-left: 3px solid var(--usc-gold);
	font-size: clamp(1.0625rem, 1.75vw, 1.1875rem);
	line-height: 1.65;
	color: #475569;
}

.home-intro__offers {
	margin: 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid var(--usc-home-rule);
}

.home-intro__offer {
	display: grid;
	grid-template-columns: 2.25rem minmax(0, 1fr);
	gap: 0.85rem 1rem;
	align-items: start;
	padding: 1.15rem 0;
	border-bottom: 1px solid var(--usc-home-rule-light);
}

.home-intro__offer-num {
	padding-top: 0.15rem;
	font-size: 0.6875rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: #94a3b8;
}

.home-intro__offer-title {
	display: block;
	margin-bottom: 0.3rem;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.25;
	color: #044331;
}

.home-intro__offer-text {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: #64748b;
}

.home-intro__foot {
	margin: clamp(1.75rem, 3vw, 2.25rem) 0 0;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: #64748b;
}

.home-body .home-intro--editorial:has(+ .home-intro-specs) .home-intro__foot {
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.home-intro__link {
	font-weight: 700;
	color: #044331;
	text-decoration: none;
	border-bottom: 1px solid rgba(4, 67, 49, 0.28);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.home-intro__link:hover {
	color: #0a6b4f;
	border-bottom-color: var(--usc-gold);
}

.home-intro-specs {
	padding: 0;
	background: #044331;
	border: none;
}

.home-intro-specs__inner {
	padding: 0;
}

.home-intro-specs__list {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.home-intro-specs__item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.85rem clamp(0.65rem, 1.2vw, 1rem);
	border-left: 1px solid rgba(255, 255, 255, 0.16);
	text-align: center;
	font-size: clamp(0.6875rem, 1vw, 0.8125rem);
	font-weight: 600;
	line-height: 1.35;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.92);
}

.home-intro-specs__item:first-child {
	border-left: none;
}

.home-body .home-intro--editorial:has(+ .home-intro-specs) {
	padding-bottom: 0;
}

.home-body .home-intro--editorial + .home-intro-specs {
	border-top: none;
}

.home-trust--after-specs {
	padding: clamp(1.15rem, 2.5vw, 1.65rem) var(--usc-pad-x);
	background: #fff;
	border: none;
	border-bottom: 1px solid var(--usc-home-rule);
}

.home-body .home-intro-specs + .home-trust--after-specs {
	border-top: none;
}

.home-body .home-trust--after-specs + .home-work-video {
	border-top: none;
}

.home-trust--after-specs .home-trust__inner {
	max-width: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.home-trust--after-specs .home-trust__kicker {
	margin: 0 0 0.85rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #64748b;
}

.home-trust--after-specs {
	padding-block: clamp(1.5rem, 3.5vw, 2.75rem);
}

.home-trust--after-specs .home-trust__logos {
	justify-content: center;
	gap: clamp(1.5rem, 3vw, 2.75rem) clamp(2rem, 4vw, 3.5rem);
	margin: 0;
	padding: 0;
	border: none;
}

.home-trust--after-specs .home-trust__logos img {
	height: clamp(64px, 7.5vw, 96px);
	max-width: 260px;
	opacity: 0.85;
}

.home-trust--after-specs .home-trust__logos li:hover img {
	opacity: 1;
}

.home-trust--after-specs .home-trust__kicker {
	margin-bottom: 1.5rem;
	font-size: clamp(0.9375rem, 1.6vw, 1.125rem);
	font-weight: 800;
	letter-spacing: 0.16em;
	color: #16192b;
}

@media (max-width: 768px) {

	.home-intro-specs__list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-intro-specs__item {
		border-left: none;
	}

	.home-intro-specs__item:nth-child(even) {
		border-left: 1px solid rgba(255, 255, 255, 0.16);
	}

	.home-intro-specs__item:nth-child(n + 3) {
		border-top: 1px solid rgba(255, 255, 255, 0.16);
	}

	.home-intro-specs__item:last-child:nth-child(odd) {
		grid-column: 1 / -1;
		border-left: none;
	}
}

@media (max-width: 768px) {

	.home-intro__layout--classic {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}

	.home-intro__title {
		max-width: none;
	}
}

.home-use-case-cloud--editorial {
	--cloud-scroll: 0;
	--cloud-cover: 0;
	--cloud-layer-height: calc(100vh - var(--usc-header-height, 72px));
	--cloud-scroll-extra: clamp(18rem, 52vh, 32rem);
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 0;
	background: transparent;
}

.home-use-case-cloud__track {
	position: relative;
	height: calc(var(--cloud-layer-height) + var(--cloud-scroll-extra));
}

.home-use-case-cloud__layer {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: var(--cloud-layer-height);
	display: grid;
	place-items: center;
	padding-inline: clamp(1rem, 4vw, 2rem);
	background: linear-gradient(180deg, #fafaf9 0%, #fbfaf8 78%, #f8f7f4 100%);
	opacity: calc(1 - var(--cloud-cover, 0) * 0.96);
	will-change: transform, opacity;
}

.home-use-case-cloud__layer.is-pinned {
	position: fixed;
	top: var(--usc-header-height, 72px);
	z-index: 1;
}

.home-use-case-cloud__layer.is-ended {
	position: absolute;
	top: auto;
	bottom: 0;
}

.home-use-case-cloud__field {
	position: relative;
	width: min(100%, 72rem);
	height: min(58vh, 20rem);
}

.home-use-case-cloud__whisper {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0 1rem;
	font-size: clamp(2.75rem, 7.5vw, 5.25rem);
	font-weight: 800;
	line-height: 0.92;
	letter-spacing: -0.04em;
	text-align: center;
	color: rgba(4, 67, 49, 0.07);
	pointer-events: none;
	user-select: none;
	transform: translate3d(0, calc(var(--cloud-scroll, 0) * -48px), 0);
}

.home-use-case-cloud__whisper-line {
	display: block;
}

.home-use-case-cloud__whisper-line--accent {
	color: rgba(201, 162, 39, 0.12);
}

.home-use-case-cloud__tags {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.home-use-case-cloud__tag {
	position: absolute;
	left: var(--tag-x, 0%);
	top: var(--tag-y, 0%);
	z-index: calc(1 + var(--tag-depth, 0.5) * 10);
	display: inline-block;
	max-width: 12rem;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	white-space: nowrap;
	opacity: var(--tag-fade, 1);
	transform: translate3d(0, calc(var(--cloud-scroll, 0) * var(--tag-depth, 0.5) * -120px), 0);
}

.home-use-case-cloud__tag-inner {
	display: inline-block;
	animation: home-use-case-tag-drift var(--tag-drift, 5s) ease-in-out infinite;
	animation-delay: var(--tag-delay, 0s);
}

.home-use-case-cloud__tag--xl {
	font-size: clamp(1.625rem, 3vw, 2.125rem);
}

.home-use-case-cloud__tag--lg {
	font-size: clamp(1.25rem, 2.2vw, 1.625rem);
}

.home-use-case-cloud__tag--md {
	font-size: clamp(1rem, 1.6vw, 1.1875rem);
}

.home-use-case-cloud__tag--sm {
	font-size: clamp(0.8125rem, 1.25vw, 0.9375rem);
	font-weight: 600;
}

.home-use-case-cloud__tag--green {
	color: #044331;
}

.home-use-case-cloud__tag--gold {
	color: var(--usc-gold);
}

.home-use-case-cloud__tag--dark {
	color: #16192b;
}

.home-use-case-cloud__tag--muted {
	color: #64748b;
}

@keyframes home-use-case-tag-drift {

	0%,
	100% {
		transform: translate3d(0, 0, 0);
	}

	50% {
		transform: translate3d(0, -7px, 0);
	}
}

.home-use-case-cloud__fade {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	height: clamp(5rem, 16vh, 8rem);
	background:
 linear-gradient(180deg, rgba(251, 250, 248, 0) 0%, rgba(248, 247, 244, 0.92) 100%);
	pointer-events: none;
	opacity: calc(1 - var(--cloud-cover, 0));
}

@media (max-width: 768px) {

	.home-body > section.home-use-case-cloud--editorial + section,
	.home-body .home-use-case-cloud--editorial + section {
		margin-top: 0;
		box-shadow: none;
	}

	.home-use-case-cloud__track {
		height: auto;
	}

	.home-use-case-cloud__layer {
		position: relative;
		top: auto;
		height: auto;
		padding-block: 2rem 1.5rem;
		opacity: 1;
	}

	.home-use-case-cloud__layer.is-pinned,
	.home-use-case-cloud__layer.is-ended {
		position: relative;
		top: auto;
		bottom: auto;
	}

	.home-use-case-cloud__field {
		height: auto;
	}

	.home-use-case-cloud__whisper {
		position: relative;
		inset: auto;
		margin-bottom: 1.25rem;
		font-size: clamp(2rem, 9vw, 2.75rem);
		transform: none;
	}

	.home-use-case-cloud__tags {
		position: relative;
		inset: auto;
		display: flex;
		flex-wrap: wrap;
		gap: 0.55rem 0.7rem;
	}

	.home-use-case-cloud__tag {
		position: static;
		max-width: none;
		transform: none;
		white-space: normal;
	}

	.home-use-case-cloud__tag-inner {
		animation: none;
	}

	.home-use-case-cloud__fade {
		position: relative;
		height: clamp(3rem, 10vw, 5rem);
		opacity: 1;
	}
}

@media (prefers-reduced-motion: reduce) {

	.home-use-case-cloud__whisper,
	.home-use-case-cloud__tag {
		transform: none !important;
	}

	.home-use-case-cloud__tag-inner {
		animation: none;
	}
}

.home-voice-stripe--editorial {
	background: #f3efe6;
}

.home-voice-stripe__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) auto;
	align-items: end;
	gap: clamp(1.25rem, 3vw, 2.5rem);
}

.home-voice-stripe__headline {
	margin: 0;
	max-width: 14ch;
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.035em;
	color: #044331;
}

.home-voice-stripe__headline::before {
	content: "\201C";
	margin-right: 0.08em;
	color: var(--usc-gold);
}

.home-voice-stripe__text {
	margin: 0.85rem 0 0;
	max-width: 42rem;
	font-size: var(--home-deck-size, clamp(1rem, 1.8vw, 1.125rem));
	line-height: var(--home-deck-leading, 1.55);
	color: #475569;
}

.home-voice-stripe__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1.25rem;
	padding-bottom: 0.15rem;
}

.home-voice-stripe__btn--secondary {
	font-size: 0.9375rem;
	font-weight: 700;
	color: #044331;
	text-decoration: none;
	border-bottom: 1px solid rgba(4, 67, 49, 0.28);
	transition: color 0.2s ease, border-color 0.2s ease;
}

.home-voice-stripe__btn--secondary:hover {
	color: #0a6b4f;
	border-bottom-color: var(--usc-gold);
}

@media (max-width: 768px) {

	.home-voice-stripe__inner {
		grid-template-columns: 1fr;
		align-items: start;
	}

	.home-voice-stripe__headline {
		max-width: none;
	}
}

.google-reviews-stripe {
	background: #f8f7f4;
	border-top: 1px solid var(--usc-home-rule);
	border-bottom: 1px solid var(--usc-home-rule);
}

.google-reviews-stripe__inner {
	display: flex;
	flex-direction: column;
	gap: clamp(1.5rem, 3vw, 2rem);
}

.google-reviews-stripe__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: clamp(1rem, 2.5vw, 2rem);
	padding-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
	border-bottom: 1px solid var(--usc-home-rule);
}

.google-reviews-stripe__intro {
	min-width: 0;
}

.google-reviews-stripe__kicker {
	margin: 0 0 0.75rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #64748b;
}

.google-reviews-stripe__title {
	margin: 0;
	max-width: 16ch;
	font-size: clamp(1.5rem, 2.8vw, 2rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.02em;
	color: #16192b;
}

.google-reviews-stripe__score {
	display: inline-flex;
	align-items: center;
	gap: 0.85rem;
	flex-shrink: 0;
	padding: 0.85rem 1rem;
	color: #16192b;
	text-decoration: none;
	background: #fff;
	border: 1px solid var(--usc-home-rule);
	border-radius: var(--usc-radius);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.google-reviews-stripe__score:hover {
	color: #044331;
	border-color: rgba(4, 67, 49, 0.22);
	box-shadow: 0 8px 24px rgba(0, 36, 26, 0.08);
}

.google-reviews-stripe__score-copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.2rem;
	min-width: 0;
}

.google-reviews-stripe__logo {
	display: block;
	width: 2rem;
	height: 2rem;
	flex-shrink: 0;
}

.google-reviews-stripe__rating {
	font-size: clamp(1.375rem, 2.2vw, 1.75rem);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -0.03em;
}

.google-reviews-stripe__stars {
	position: relative;
	display: inline-block;
	font-size: 0.9375rem;
	line-height: 1;
	letter-spacing: 0.06em;
}

.google-reviews-stripe__stars-base {
	color: #cbd5e1;
}

.google-reviews-stripe__stars-active {
	position: absolute;
	inset: 0 auto 0 0;
	width: var(--star-fill, 90%);
	overflow: hidden;
	color: #fbbc04;
	white-space: nowrap;
}

.google-reviews-stripe__count {
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1.35;
	color: #64748b;
}

.google-reviews-stripe__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(0.85rem, 1.8vw, 1.25rem);
	margin: 0;
	padding: 0;
	list-style: none;
}

.google-reviews-stripe__quote {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin: 0;
	padding: clamp(1.1rem, 2vw, 1.35rem);
	background: #fff;
	border: 1px solid var(--usc-home-rule);
	border-left: 3px solid var(--usc-gold);
	border-radius: var(--usc-radius);
}

.google-reviews-stripe__quote-text {
	margin: 0;
	flex: 1;
	font-size: clamp(0.9375rem, 1.5vw, 1rem);
	line-height: 1.55;
	color: #334155;
}

.google-reviews-stripe__quote-author {
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 700;
	color: #044331;
}

.google-reviews-stripe__quote-stars {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1;
	color: #fbbc04;
	letter-spacing: 0.04em;
}

.google-reviews-stripe__foot {
	display: flex;
	justify-content: flex-start;
}

.google-reviews-stripe__cta {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	text-decoration: none;
	color: #044331;
	border-bottom: 1px solid rgba(4, 67, 49, 0.28);
	padding-bottom: 2px;
	transition: color 0.2s ease, border-color 0.2s ease;
}

.google-reviews-stripe__cta:hover {
	color: #0a6b4f;
	border-bottom-color: var(--usc-gold);
}

@media (max-width: 960px) {

	.google-reviews-stripe__head {
		flex-direction: column;
		align-items: flex-start;
	}

	.google-reviews-stripe__score {
		width: 100%;
	}

	.google-reviews-stripe__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {

	.google-reviews-stripe__title {
		max-width: none;
	}
}

.home-body {
	position: relative;
	background: #fff;
	--home-kicker-size: 0.6875rem;
	--home-kicker-weight: 700;
	--home-kicker-spacing: 0.14em;
	--home-kicker-color: #64748b;
	--home-title-size: clamp(2rem, 4vw, 2.75rem);
	--home-title-weight: 800;
	--home-title-leading: 1.05;
	--home-title-tracking: -0.02em;
	--home-title-color: #16192b;
	--home-deck-size: clamp(1rem, 1.8vw, 1.125rem);
	--home-deck-leading: 1.55;
	--home-deck-color: #64748b;
	--home-photo-radius: 0;
	--home-surface-radius: var(--usc-radius);
}

.home-body > section.home-use-case-cloud--editorial ~ section,
.home-body .home-use-case-cloud--editorial ~ section {
	position: relative;
	z-index: 2;
}

.home-body > section.home-use-case-cloud--editorial + section,
.home-body .home-use-case-cloud--editorial + section {
	margin-top: calc(-1 * clamp(18rem, 52vh, 32rem));
}

.home-body > section + section {
	border-top: 1px solid var(--usc-home-rule);
}

.home-body .home-numbers,
.home-body .home-intro-specs,
.home-body .home-products--portrait.home-products--editorial,
.home-body .home-program-editorial,
.home-body .home-intro--editorial,
.home-body .home-use-case-cloud--editorial,
.home-body .google-reviews-stripe--home,
.home-body .home-product-rotator--editorial,
.home-body .home-product-rotator--shop-bestsellers,
.home-body .home-urgency-cta,
.home-body .landing-steps--home,
.home-body .home-story--editorial,
.home-body .home-work-showcase--editorial,
.home-body .home-work-video,
.home-body .home-voice-stripe--editorial,
.home-body .home-trust--editorial,
.home-body .rtg-patterns.rtg-patterns--shared,
.home-body .rtg-edit--landing,
.home-body .rtg-more--editorial,
.home-body .rtg-marketing--compare,
.home-body .rtg-marketing--cta,
.home-body .landing-showcase,
.home-body .landing-showcase--about,
.home-body .landing-facts--about,
.home-body .landing-pillars,
.home-body .landing-steps,
.home-body .landing-steps--dark,
.home-body .landing-compare,
.home-body .landing-trust,
.home-body .landing-cta,
.home-body .contact-page,
.home-body .faq-page,
.home-body .about-products--page,
.home-body .cs-lede,
.home-body .cs-metrics,
.home-body .cs-stories,
.home-body .cs-pullquote,
.home-body .home-band {
	border: none;
}

.home-body .rtg-edit--landing,
.home-body .rtg-more--editorial,
.home-body .landing-steps--landing,
.home-body .rtg-marketing--compare {
	padding-block: clamp(3.5rem, 7vw, 5rem);
}

.home-body .rtg-patterns.rtg-patterns--shared + .landing-steps--landing {
	border-top: none;
}

.home-body .home-products--portrait,
.home-body .home-product-rotator--editorial,
.home-body .home-product-rotator--shop-bestsellers,
.home-body .landing-steps--home,
.home-body .home-story--editorial,
.home-body .home-work-showcase--editorial,
.home-body .home-work-video,
.home-body .home-voice-stripe--editorial,
.home-body .home-trust--editorial,
.home-body .landing-showcase,
.home-body .landing-showcase--about,
.home-body .landing-pillars,
.home-body .landing-steps,
.home-body .landing-steps--dark,
.home-body .contact-page,
.home-body .faq-page,
.home-body .cs-lede,
.home-body .cs-metrics,
.home-body .cs-stories,
.home-body .cs-pullquote,
.home-body .landing-compare,
.home-body .landing-trust {
	padding-block: clamp(3.5rem, 7vw, 5rem);
}

.home-body .about-products--page {
	padding-block: 0;
	border: none;
}

.home-body .about-products--page .about-products__intro {
	padding-top: clamp(3.5rem, 7vw, 5rem);
}

.home-body .landing-facts--about {
	padding-inline: 0;
}

.home-body .landing-facts--about .landing-facts__inner {
	padding-block: clamp(3.5rem, 7vw, 5rem);
}

.home-body .home-band,
.home-body .landing-cta.home-band {
	padding-block: clamp(3.5rem, 7vw, 5rem);
	padding-inline: var(--usc-pad-x);
}

.home-body .landing-showcase,
.home-body .landing-showcase--about,
.home-body .landing-pillars,
.home-body .landing-steps,
.home-body .landing-steps--dark,
.home-body .landing-compare,
.home-body .contact-page,
.home-body .faq-page {
	padding-inline: var(--usc-pad-x);
}

.home-body .landing-showcase__inner,
.home-body .landing-pillars__inner,
.home-body .landing-steps__inner,
.home-body .landing-compare__inner {
	max-width: var(--usc-container-wide);
	margin-inline: auto;
}

.home-body .landing-showcase__media,
.home-body .about-products__media img {
	border-radius: var(--home-photo-radius);
}

.home-body .landing-pillar,
.home-body .landing-step,
.home-body .contact-page__form,
.home-body .contact-page__info,
.home-body .faq-page__aside {
	border-radius: var(--home-surface-radius);
}

.landing-page--about .home-body .landing-trust,
.landing-page--our-products .home-body .landing-trust,
.landing-page--contact .home-body .landing-trust,
.landing-page--faq .home-body .landing-trust,
.landing-page--custom .home-body .landing-trust,
.landing-page--case-studies .home-body .landing-trust,
.landing-page--customers .home-body .landing-trust {
	border-top: none;
}

.landing-page--our-products .landing-hero--products + .home-body,
.landing-page--about .landing-hero--about + .home-body,
.landing-page--contact .landing-hero--contact + .home-body,
.landing-page--faq .landing-hero--faq + .home-body,
.landing-page--custom .landing-hero--custom + .home-body,
.landing-page--case-studies .cs-masthead + .home-body,
.landing-page--customers .landing-hero--customers + .home-body {
	margin-top: 0;
}

.cs-feature-aside__actions .home-band__cta,
.cs-feature-aside__actions .usc-btn {
	font-size: 0.8125rem;
	padding: 0.65rem 1.15rem;
	min-height: 44px;
}

.landing-compare .usc-btn {
	margin-top: 0.25rem;
}

.home-body .home-intro--editorial {
	padding-block: clamp(3.5rem, 7vw, 5rem);
}

.home-body .home-use-case-cloud--editorial {
	padding: 0;
	margin-top: 0;
	border: none;
	overflow: visible;
}

.home-body > section.home-use-case-cloud--editorial + section,
.home-body .home-use-case-cloud--editorial + section {
	box-shadow: 0 -12px 40px rgba(22, 25, 43, 0.04);
}

.home-body .home-intro--editorial + .home-intro--compare,
.home-body .home-intro--compare + .home-use-case-cloud,
.home-body .home-use-case-cloud + .home-work-showcase--editorial {
	border-top: none;
}

.home-body .home-intro--compare {
	padding-block: clamp(2.5rem, 5vw, 3.5rem);
}

.home-body .home-intro--compare + .home-use-case-cloud {
	margin-top: clamp(-1rem, -2vw, -0.5rem);
}

.home-body .google-reviews-stripe--home {
	padding-block: clamp(2.5rem, 5vw, 3.5rem);
	padding-inline: var(--usc-pad-x);
	background: #fff;
	border-top: 1px solid var(--usc-home-rule);
	border-bottom: 1px solid var(--usc-home-rule);
}

.home-body .google-reviews-stripe--home .google-reviews-stripe__inner {
	padding-inline: 0;
}

.home-body .google-reviews-stripe--home + .home-numbers {
	border-top: none;
}

.home-body .home-intro--editorial + .google-reviews-stripe {
	border-top: none;
}

.home-body .home-urgency-cta {
	padding-inline: 0;
	border: none;
}

.home-body .home-urgency-cta h2,
.home-body .home-urgency-cta p,
.home-body .home-urgency-cta a:not(.home-urgency-cta__btn) {
	color: inherit;
}

.home-body .home-urgency-cta .home-urgency-cta__title {
	color: #fff;
}

.home-body .home-urgency-cta .home-urgency-cta__title-accent {
	color: var(--usc-gold);
}

.home-body .home-video-feature {
	border-bottom: none;
}

.home-section-head {
	margin: 0 0 clamp(2.5rem, 5vw, 3.5rem);
}

.home-section-head--center {
	max-width: 36rem;
	margin-inline: auto;
	margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
	padding-bottom: clamp(2rem, 4vw, 2.5rem);
	text-align: center;
	border-bottom: 1px solid var(--usc-home-rule);
}

.home-section-head--split {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	padding-bottom: clamp(2rem, 4vw, 2.5rem);
	border-bottom: 1px solid var(--usc-home-rule);
}

.home-section-head__kicker {
	margin: 0 0 0.85rem;
	font-size: var(--home-kicker-size, 0.6875rem);
	font-weight: var(--home-kicker-weight, 700);
	letter-spacing: var(--home-kicker-spacing, 0.14em);
	text-transform: uppercase;
	color: var(--home-kicker-color, #64748b);
}

.home-section-head--center .home-section-head__kicker::after,
.home-body .home-story__kicker::after {
	content: "";
	display: block;
	width: 2.5rem;
	height: 1px;
	margin: 0.85rem auto 0;
	background: #044331;
}

.home-section-head--split .home-section-head__kicker::after {
	content: "";
	display: block;
	width: 2.5rem;
	height: 1px;
	margin-top: 0.85rem;
	background: #044331;
}

.home-section-head__title {
	margin: 0 0 1rem;
	font-size: var(--home-title-size, clamp(2rem, 4vw, 2.75rem));
	font-weight: var(--home-title-weight, 800);
	line-height: var(--home-title-leading, 1.05);
	letter-spacing: var(--home-title-tracking, -0.02em);
	color: var(--home-title-color, #16192b);
}

.home-section-head--split .home-section-head__title {
	margin-bottom: 0;
}

.home-section-head__deck {
	max-width: 32rem;
	margin: 0 auto;
	font-size: var(--home-deck-size, clamp(1rem, 1.8vw, 1.125rem));
	line-height: var(--home-deck-leading, 1.55);
	color: var(--home-deck-color, #64748b);
}

.home-body .path-card__link,
.home-body .home-work-showcase__frame,
.home-body .story-editorial,
.home-body .home-video-feature,
.home-body .home-video-feature__media,
.home-body .home-video-feature__video {
	border-radius: var(--home-photo-radius);
}

.home-body .google-reviews-stripe__quote,
.home-body .home-product-rotator--editorial .home-product-rotator__card-link,
.home-body .landing-steps--picker .landing-step__media,
.home-body .home-urgency-cta__unit,
.home-body .home-urgency-cta__media {
	border-radius: var(--home-surface-radius);
}

.home-body .rtg-marketing--facts-home {
	padding: 0;
	background: #f8f7f4;
}

.home-body .rtg-marketing--facts-home .landing-facts__inner {
	padding-block: clamp(2rem, 4vw, 2.75rem);
	padding-inline: var(--usc-pad-x);
}

.home-body .rtg-marketing--facts-home .landing-facts__value {
	color: #044331;
}

.home-body .rtg-marketing--facts-home .landing-facts__label {
	color: #64748b;
	letter-spacing: 0.14em;
}

.home-body .rtg-marketing--facts-home .landing-facts__item + .landing-facts__item {
	border-left: 1px solid var(--usc-home-rule);
}

.home-body .landing-steps--home {
	padding-inline: 0;
	background: #fff;
}

.home-body .landing-steps--home .landing-steps__pick {
	border-radius: 0;
}

.home-body .home-story--editorial {
	padding-inline: 0;
}

.home-body .home-story--editorial .home-story__inner {
	padding-inline: var(--usc-pad-x);
}

.home-body .story-editorial {
	box-shadow: none;
}

.home-work-showcase--editorial {
	padding-inline: 0;
	background: #fff;
}

.home-work-showcase--editorial .home-work-showcase__inner {
	padding-inline: var(--usc-pad-x);
}

.home-work-showcase__mosaic {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-auto-rows: clamp(4.25rem, 7vw, 6.25rem);
	gap: clamp(0.5rem, 0.9vw, 0.65rem);
	align-items: stretch;
}

.home-work-showcase__frame {
	position: relative;
	min-width: 0;
	min-height: 0;
	overflow: hidden;
	background: #f3f1ec;
	cursor: default;
}

.home-work-showcase__frame:focus {
	outline: none;
}

.home-work-showcase__frame:focus-visible {
	outline: 2px solid #044331;
	outline-offset: 2px;
}

.home-work-showcase__frame--a {
	grid-column: 1 / span 7;
	grid-row: 1 / span 7;
}

.home-work-showcase__frame--b {
	grid-column: 8 / span 5;
	grid-row: 1 / span 4;
}

.home-work-showcase__frame--c {
	grid-column: 8 / span 5;
	grid-row: 5 / span 3;
}

.home-work-showcase__media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.home-work-showcase__img,
.home-work-showcase__media img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	opacity: 0;
	transition: opacity 1.5s ease;
}

.home-work-showcase__frame--c .home-work-showcase__media img,
.home-work-showcase__frame--c .home-work-showcase__img {
	object-position: center center;
}

.home-work-showcase__img.is-active,
.home-work-showcase__media img.is-active {
	opacity: 1;
}

.home-work-showcase__scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
 linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.1) 58%, rgba(0, 0, 0, 0.68) 100%);
	pointer-events: none;
	transition: background 0.35s ease;
}

.home-work-showcase__caption {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.35rem;
	margin: 0;
	padding: clamp(0.75rem, 1.8vw, 1.1rem) clamp(0.75rem, 1.8vw, 1.15rem);
	pointer-events: none;
	transform: translateY(0);
	transition: transform 0.35s ease;
}

.home-work-showcase__brand {
	display: block;
	font-size: clamp(0.8125rem, 1.4vw, 0.9375rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.01em;
	color: #fff;
	text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
	transition: opacity 0.45s ease;
}

.home-work-showcase__blurb {
	display: block;
	max-width: 28ch;
	max-height: 0;
	overflow: hidden;
	font-size: clamp(0.6875rem, 1.2vw, 0.8125rem);
	font-weight: 500;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.88);
	opacity: 0;
	transform: translateY(0.35rem);
	transition: max-height 0.4s ease, opacity 0.35s ease, transform 0.35s ease;
}

.home-work-showcase__frame--a .home-work-showcase__blurb {
	max-width: 34ch;
	font-size: clamp(0.75rem, 1.3vw, 0.875rem);
}

@media (hover: hover) {

	.home-work-showcase__frame:hover .home-work-showcase__scrim,
	.home-work-showcase__frame:focus-within .home-work-showcase__scrim {
		background:
 linear-gradient(180deg, rgba(0, 0, 0, 0.08) 20%, rgba(0, 0, 0, 0.28) 52%, rgba(0, 0, 0, 0.82) 100%);
	}

	.home-work-showcase__frame:hover .home-work-showcase__caption,
	.home-work-showcase__frame:focus-within .home-work-showcase__caption {
		transform: translateY(-0.45rem);
	}

	.home-work-showcase__frame:hover .home-work-showcase__blurb,
	.home-work-showcase__frame:focus-within .home-work-showcase__blurb {
		max-height: 5rem;
		opacity: 1;
		transform: translateY(0);
	}

	.home-work-showcase__frame--a:hover .home-work-showcase__blurb,
	.home-work-showcase__frame--a:focus-within .home-work-showcase__blurb {
		max-height: 6rem;
	}
}

.home-work-showcase__frame--a .home-work-showcase__brand {
	font-size: clamp(1rem, 2vw, 1.375rem);
}

.home-work-showcase__frame--b .home-work-showcase__brand,
.home-work-showcase__frame--c .home-work-showcase__brand {
	font-size: clamp(0.875rem, 1.6vw, 1rem);
}

.home-work-showcase__foot {
	margin-top: clamp(2rem, 4vw, 2.75rem);
	text-align: center;
}

.home-work-showcase__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1rem 1.5rem;
}

.home-work-showcase__cta {
	min-width: 10.5rem;
}

.home-work-showcase__link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #044331;
	text-decoration: none;
	border-bottom: 1px solid rgba(4, 67, 49, 0.35);
	padding-bottom: 2px;
}

.home-work-showcase__link:hover {
	border-bottom-color: #044331;
}

.home-trust--work-showcase {
	padding: 0;
	margin: 0;
	background: transparent;
	border: none;
}

.home-trust--work-showcase .home-trust__inner {
	max-width: none;
	padding: 0;
}

.home-trust--work-showcase .home-trust__kicker {
	margin: 0 0 0.85rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-align: center;
	color: #64748b;
}

.home-trust--work-showcase .home-trust__logos {
	justify-content: center;
	gap: clamp(1rem, 2vw, 1.75rem) clamp(1.25rem, 2.5vw, 2rem);
	margin: 0;
	padding: 0;
	border: none;
}

.home-work-video {
	padding-block: clamp(3.5rem, 7vw, 5rem);
	padding-inline: var(--usc-pad-x);
	background: #fff;
	border-top: 1px solid var(--usc-home-rule);
	border-bottom: 1px solid var(--usc-home-rule);
}

.home-work-video__inner {
	padding-inline: 0;
}

.home-work-video__stage {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
	gap: clamp(1.5rem, 3.5vw, 2.5rem);
	align-items: stretch;
	transition: grid-template-columns 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-work-video__stage.is-stage-video-expanded {
	grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
}

.home-work-video__stage .home-work-showcase__mosaic {
	min-height: 0;
}

.home-work-video__stage .home-video-feature {
	min-height: 0;
	height: 100%;
	align-self: stretch;
}

.home-work-video__stage .home-work-video__video {
	border-radius: var(--home-photo-radius);
}

.home-work-showcase--split .home-work-showcase__intro {
	margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
	padding-bottom: clamp(1.5rem, 3vw, 2rem);
	border-bottom: 1px solid var(--usc-home-rule);
}

.home-work-showcase--split .home-work-showcase__intro .home-section-head {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.home-work-showcase--split .home-section-head__kicker::after {
	content: "";
	display: block;
	width: 2.5rem;
	height: 1px;
	margin-top: 0.85rem;
	background: #044331;
}

.home-work-showcase--split .home-section-head__deck {
	margin: 0;
	max-width: 38rem;
}

.home-work-showcase--split .home-work-showcase__foot {
	margin-top: clamp(1.5rem, 3vw, 2rem);
	text-align: left;
}

.home-work-showcase--split .home-work-showcase__actions {
	justify-content: flex-start;
}

.home-video-feature--split {
	min-height: 0;
	height: 100%;
	display: block;
	border-radius: var(--home-photo-radius);
	overflow: hidden;
	text-align: center;
}

.home-video-feature--split .home-video-feature__media,
.home-video-feature--split .home-video-feature__video,
.home-video-feature--split .home-video-feature__scrim {
	border-radius: inherit;
}

.home-video-feature--split .home-video-feature__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	transition: object-fit 0.35s ease;
}

.home-video-feature--split.is-playing .home-video-feature__media {
	background: #00241a;
}

.home-video-feature--split.is-playing .home-video-feature__video {
	object-fit: contain;
}

.home-video-feature--split .home-video-feature__inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	max-width: none;
	min-height: 100%;
	margin: 0;
	padding: clamp(1.25rem, 2.5vw, 2rem);
	text-align: center;
}

.home-video-feature--split .home-video-feature__kicker {
	color: rgba(255, 255, 255, 0.72);
}

.home-video-feature--split .home-video-feature__kicker::after {
	margin-inline: auto;
}

.home-video-feature--split .home-video-feature__title {
	font-size: clamp(1.35rem, 2.4vw, 2rem);
	max-width: 22ch;
	margin-inline: auto;
}

.home-video-feature--split .home-video-feature__play {
	margin-inline: auto;
}

.home-video-feature--split .home-video-feature__lede {
	margin-inline: auto;
	max-width: 32ch;
}

.home-video-feature--split .home-video-feature__actions {
	justify-content: center;
	width: 100%;
}

@media (max-width: 960px) {

	.home-work-video__stage {
		grid-template-columns: 1fr;
	}

	.home-work-video__stage.is-stage-video-expanded {
		grid-template-columns: 1fr;
	}

	.home-work-video__stage .home-video-feature--split {
		height: auto;
		min-height: clamp(16rem, 52vw, 22rem);
	}

	.home-work-showcase--split .home-work-showcase__actions {
		justify-content: center;
	}

	.home-work-showcase--split .home-work-showcase__foot {
		text-align: center;
	}
}

@media (max-width: 768px) {

	.home-work-showcase__mosaic {
		grid-template-columns: repeat(6, minmax(0, 1fr));
		grid-auto-rows: clamp(3.25rem, 13vw, 5rem);
	}

	.home-work-showcase__frame--a {
		grid-column: 1 / -1;
		grid-row: span 6;
	}

	.home-work-showcase__frame--b {
		grid-column: 1 / span 3;
		grid-row: span 5;
	}

	.home-work-showcase__frame--c {
		grid-column: 4 / span 3;
		grid-row: span 5;
	}
}

@media (prefers-reduced-motion: reduce) {

	.home-work-video__stage {
		transition: none;
	}

	.home-work-showcase__img,
	.home-work-showcase__media img,
	.home-work-showcase__scrim,
	.home-work-showcase__caption,
	.home-work-showcase__blurb,
	.home-work-showcase__brand {
		transition: none;
	}
}

.home-body .home-trust--editorial {
	padding-inline: 0;
}

.home-body .home-trust--editorial .home-trust__inner {
	padding-inline: var(--usc-pad-x);
}

.home-body .home-trust--editorial .home-trust__title {
	font-size: var(--home-kicker-size, 0.6875rem);
	font-weight: var(--home-kicker-weight, 700);
	letter-spacing: var(--home-kicker-spacing, 0.14em);
	text-transform: uppercase;
	color: var(--home-kicker-color, #64748b);
}

.home-body .home-trust--editorial .home-trust__logos {
	margin-top: 0;
}

@media (max-width: 768px) {

	.home-section-head--split {
		flex-direction: column;
		align-items: flex-start;
	}

	.home-body .rtg-marketing--facts-home .landing-facts__item + .landing-facts__item {
		border-left: none;
		border-top: 1px solid var(--usc-home-rule);
	}

	.home-body .rtg-marketing--facts-home .landing-facts__inner {
		gap: 0;
	}

	.home-body .rtg-marketing--facts-home .landing-facts__item {
		padding-block: 0.85rem;
	}
}

.home-band {
	padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
}

.home-band__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	max-width: var(--usc-container);
	margin: 0 auto;
}

.home-band--order {
	background: #044331;
	color: #fff;
}

.home-band--design {
	background: #16192b;
	color: #fff;
}

.home-band__eyebrow {
	margin: 0 0 0.5rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
}

.home-band__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.375rem, 3vw, 2rem);
	font-weight: 800;
	line-height: 1.15;
	color: #fff;
}

.home-band__text {
	margin: 0;
	max-width: 540px;
	font-size: 1rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.85);
}

.home-band__cta {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.875rem 1.75rem;
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
	border: 0;
	border-radius: var(--usc-radius);
	cursor: pointer;
	font-family: inherit;
	white-space: nowrap;
}

.home-band__cta:not(.home-band__cta--gold) {
	background: #fff;
	color: #044331;
	transition: background 0.15s ease, transform 0.15s ease;
}

.home-band__cta:not(.home-band__cta--gold):hover {
	background: #f8f7f4;
	color: #044331;
	transform: translateY(-1px);
}

@media (max-width: 768px) {

	.home-story__head {
		flex-direction: column;
		align-items: flex-start;
	}
}

.home-featured {
	padding: clamp(3rem, 6vw, 5rem) 1.5rem;
	background: #fff;
}

.home-story {
	padding: clamp(3rem, 6vw, 5rem) 1.5rem;
	background: #fff;
	border-top: 1px solid rgba(22, 25, 43, 0.06);
}

.home-story--editorial {
	background: #fff;
}

.home-story--editorial .home-story__inner {
	max-width: var(--usc-container-wide);
}

.home-story--editorial .home-story__kicker {
	margin: 0 0 0.85rem;
}

.home-story--editorial .home-story__link {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(4, 67, 49, 0.35);
	padding-bottom: 2px;
}

.story-editorial {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	text-decoration: none;
	color: #fff;
}

.story-editorial__media {
	position: absolute;
	inset: 0;
}

.story-editorial__img,
.story-editorial__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.7s ease;
}

.story-editorial__fallback {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #044331 0%, #00241a 100%);
}

.story-editorial__scrim {
	position: absolute;
	inset: 0;
	background:
 linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0.68) 100%);
	pointer-events: none;
	transition: background 0.35s ease;
}

.story-editorial:hover .story-editorial__img,
.story-editorial:hover .story-editorial__media img {
	transform: scale(1.04);
}

.story-editorial__copy {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
	max-width: 42rem;
	padding: clamp(1.5rem, 4vw, 2.5rem);
}

.story-editorial__kicker {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.78);
}

.story-editorial__headline {
	font-size: clamp(1.5rem, 3.2vw, 2.5rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.02em;
}

.story-editorial__deck {
	font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.85);
}

.story-editorial__cta {
	margin-top: 0.35rem;
	padding-bottom: 2px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(255, 255, 255, 0.55);
	transition: border-color 0.2s ease, color 0.2s ease;
}

.story-editorial:hover .story-editorial__cta {
	color: var(--usc-gold);
	border-bottom-color: var(--usc-gold);
}

@media (max-width: 768px) {

	.story-editorial {
		aspect-ratio: 4 / 5;
	}
}

.home-story__inner {
	max-width: var(--usc-container);
	margin: 0 auto;
}

.home-story__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 1.75rem;
}

.home-story__eyebrow {
	margin: 0 0 0.35rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #475569;
}

.home-story__title {
	margin: 0;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	color: #16192b;
	line-height: 1.1;
}

.home-story__link {
	flex-shrink: 0;
	font-size: 0.9375rem;
	font-weight: 700;
	color: #044331;
	text-decoration: none;
	border-bottom: 1px solid rgba(4, 67, 49, 0.25);
}

.home-story__link:hover {
	color: #0a6b4f;
}

.home-story .cs-card--feature .cs-card__link {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 36, 26, 0.08);
}

.home-featured__inner {
	max-width: var(--usc-container);
	margin: 0 auto;
}

.home-featured__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.home-featured__eyebrow {
	margin: 0 0 0.35rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #0a6b4f;
}

.home-featured__title {
	margin: 0;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	color: #16192b;
	line-height: 1.15;
}

.home-featured__link {
	flex-shrink: 0;
	font-size: 0.9375rem;
	font-weight: 700;
	color: #044331;
	text-decoration: none;
	border-bottom: 1px solid rgba(4, 67, 49, 0.25);
}

.home-featured__link:hover {
	color: #0a6b4f;
	border-bottom-color: #0a6b4f;
}

.home-featured__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}

.featured-product {
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(22, 25, 43, 0.08);
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.featured-product:hover {
	box-shadow: 0 8px 28px rgba(0, 36, 26, 0.08);
	transform: translateY(-2px);
}

.featured-product__media {
	display: block;
	aspect-ratio: 1;
	overflow: hidden;
	background: #f8f7f4;
}

.featured-product__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.featured-product:hover .featured-product__media img {
	transform: scale(1.04);
}

.featured-product__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1rem;
}

.featured-product__name {
	margin: 0 0 0.35rem;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.25;
}

.featured-product__name a {
	color: #16192b;
	text-decoration: none;
}

.featured-product__name a:hover {
	color: #044331;
}

.featured-product__desc {
	margin: 0 0 0.875rem;
	flex: 1;
	font-size: 0.8125rem;
	color: #475569;
	line-height: 1.45;
}

.featured-product__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.featured-product__tag {
	display: inline-flex;
	padding: 0.25rem 0.5rem;
	background: #f8f7f4;
	color: #16192b;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border-radius: 3px;
}

.featured-product__tag--lead {
	background: #044331;
	color: #fff;
}

.home-product-rotator {
	padding-block: var(--usc-section-y);
	background: #f8f7f4;
	border-top: 1px solid rgba(22, 25, 43, 0.06);
}

.home-product-rotator__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: clamp(1.25rem, 2.5vw, 2rem);
}

.home-product-rotator__title {
	margin: 0;
	font-size: clamp(1.375rem, 2.5vw, 1.75rem);
	font-weight: 800;
	color: #16192b;
	line-height: 1.15;
}

.home-product-rotator__shop-link {
	flex-shrink: 0;
	font-size: 0.9375rem;
	font-weight: 700;
	color: #044331;
	text-decoration: none;
}

.home-product-rotator__shop-link:hover {
	color: #0a6b4f;
}

.home-product-rotator__scroll {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	overflow-x: auto;
	padding: 0 clamp(1rem, 4vw, 2rem) 0.5rem;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
	scrollbar-color: rgba(4, 67, 49, 0.35) transparent;
}

.home-product-rotator__scroll:focus-visible {
	outline: 2px solid #044331;
	outline-offset: 4px;
}

.home-product-rotator__card {
	flex: 0 0 clamp(200px, 22vw, 240px);
	scroll-snap-align: start;
}

.home-product-rotator__card-link {
	display: block;
	background: #fff;
	border-radius: var(--usc-radius);
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(22, 25, 43, 0.08);
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.home-product-rotator__card-link:hover {
	box-shadow: 0 8px 24px rgba(22, 25, 43, 0.12);
	transform: translateY(-2px);
}

.home-product-rotator__media {
	display: block;
	height: clamp(220px, 28vw, 280px);
	overflow: hidden;
	background: #fff;
}

.home-product-rotator__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.home-product-rotator__card-link:hover .home-product-rotator__image {
	transform: scale(1.04);
}

.home-product-rotator__name {
	display: block;
	padding: 0.75rem 0 0;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.35;
	color: #16192b;
}

.home-product-rotator--editorial .home-product-rotator__card-link {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	overflow: hidden;
	text-decoration: none;
	color: #16192b;
	background: #fff;
	border: 1px solid rgba(22, 25, 43, 0.08);
	border-radius: 8px;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.home-product-rotator--editorial .home-product-rotator__card-link:hover {
	border-color: rgba(4, 67, 49, 0.22);
	box-shadow: 0 14px 32px rgba(22, 25, 43, 0.08);
	transform: none;
}

.home-product-rotator--editorial .home-product-rotator__media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1 1 auto;
	aspect-ratio: 3 / 4;
	padding: clamp(0.85rem, 2vw, 1.35rem);
	background: #fff;
	overflow: hidden;
}

.home-product-rotator--editorial .home-product-rotator__image,
.home-product-rotator--editorial .home-product-rotator__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center center;
	transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-product-rotator--editorial .home-product-rotator__copy {
	position: static;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.35rem;
	padding: clamp(0.85rem, 1.8vw, 1.1rem) clamp(0.85rem, 1.8vw, 1.15rem) clamp(1rem, 2vw, 1.25rem);
	background: #fff;
	border-top: 1px solid var(--usc-home-rule-light);
	transition: transform 0.3s ease;
}

.home-product-rotator--editorial .home-product-rotator__kicker {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #64748b;
}

.home-product-rotator__speed-dot {
	padding: 0.12rem 0.4rem;
	font-size: 0.5625rem;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.08em;
	color: var(--usc-gold);
	background: #044331;
	border-radius: 999px;
}

.home-product-rotator--editorial .home-product-rotator__name {
	font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.01em;
	color: #16192b;
	transition: color 0.25s ease;
}

.home-product-rotator--editorial .home-product-rotator__card-cta {
	min-height: 1.5rem;
	max-height: 1.5rem;
	overflow: hidden;
	margin-top: 0;
	padding-bottom: 0;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #044331;
	border-bottom: 1px solid transparent;
	opacity: 0;
	transition: opacity 0.25s ease, border-color 0.25s ease;
}

.home-product-rotator--editorial .home-product-rotator__card-link:hover .home-product-rotator__image,
.home-product-rotator--editorial .home-product-rotator__card-link:hover .home-product-rotator__media img {
	transform: scale(1.03);
}

.home-product-rotator--editorial .home-product-rotator__card-link:hover .home-product-rotator__name {
	color: #044331;
}

@media (hover: hover) {

	.home-product-rotator--editorial .home-product-rotator__card-link:hover .home-product-rotator__card-cta {
		opacity: 1;
		border-bottom-color: rgba(4, 67, 49, 0.35);
	}
}

.home-product-rotator--editorial .home-product-rotator__shop-link {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #044331;
	text-decoration: none;
	border-bottom: 1px solid rgba(4, 67, 49, 0.35);
	padding-bottom: 2px;
}

.home-product-rotator--editorial .home-product-rotator__shop-link:hover {
	border-bottom-color: #044331;
}

@media (max-width: 768px) {

	.home-product-rotator--editorial .home-product-rotator__card {
		flex-basis: clamp(14.5rem, 72vw, 17rem);
	}

	.home-product-rotator--editorial .home-section-head--split {
		flex-direction: column;
		align-items: flex-start;
	}

	.home-product-rotator__controls {
		width: 100%;
		justify-content: flex-end;
	}
}

@media (prefers-reduced-motion: reduce) {

	.home-product-rotator--editorial .home-product-rotator__image,
	.home-product-rotator--editorial .home-product-rotator__media img,
	.home-product-rotator--editorial .home-product-rotator__copy,
	.home-product-rotator--editorial .home-product-rotator__card-cta,
	.home-product-rotator--editorial .home-product-rotator__card-link {
		transition: none;
	}
}

.home-urgency-cta {
	position: relative;
	overflow: hidden;
	padding-block: clamp(2.5rem, 6vw, 4rem);
	background:
		linear-gradient(115deg, rgba(var(--usc-gold-rgb), 0.08) 0%, transparent 42%),
		#00241a;
	color: #fff;
}

.home-urgency-cta::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 5px;
	background: var(--usc-gold);
}

.home-urgency-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.95fr);
	align-items: center;
	gap: clamp(1.5rem, 4vw, 3rem);
}

.home-urgency-cta__kicker {
	margin: 0 0 0.75rem;
	font-size: 0.6875rem;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--usc-gold);
}

.home-urgency-cta__title {
	margin: 0;
	font-size: clamp(2.25rem, 6vw, 4.25rem);
	font-weight: 900;
	line-height: 0.95;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: #fff;
}

.home-urgency-cta__title-accent {
	display: block;
	color: var(--usc-gold);
}

.home-urgency-cta__product {
	margin: 0.85rem 0 0;
	font-size: clamp(0.9375rem, 1.8vw, 1.125rem);
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.home-urgency-cta__countdown {
	margin-top: clamp(1.25rem, 3vw, 1.75rem);
}

.home-urgency-cta__timer {
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 0.35rem 0.5rem;
}

.home-urgency-cta__unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 3.75rem;
	padding: 0.55rem 0.65rem 0.45rem;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.14);
}

.home-urgency-cta__value {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 900;
	line-height: 1;
	font-variant-numeric: tabular-nums;
	color: var(--usc-gold);
}

.home-urgency-cta__label {
	margin-top: 0.25rem;
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.82);
}

.home-urgency-cta__sep {
	margin-bottom: 0.65rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 900;
	line-height: 1;
	color: var(--usc-gold);
}

.home-urgency-cta__deadline {
	margin: 0.85rem 0 0;
	max-width: 34rem;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.72);
}

.home-urgency-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
	min-width: 12rem;
	padding: 1rem 2rem;
	font-size: 0.875rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	color: #00241a;
	background: var(--usc-gold);
	border: 2px solid var(--usc-gold);
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.home-urgency-cta__btn:hover {
	color: #fff;
	background: transparent;
	border-color: var(--usc-gold);
}

.home-urgency-cta__media {
	display: block;
	justify-self: end;
	width: 100%;
	aspect-ratio: 1;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.04);
}

.home-urgency-cta__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-urgency-cta--expired .home-urgency-cta__value {
	color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 768px) {

	.home-urgency-cta__inner {
		grid-template-columns: 1fr;
	}

	.home-urgency-cta__media {
		display: none;
	}

	.home-urgency-cta__unit {
		min-width: 3.25rem;
		padding-inline: 0.45rem;
	}
}

@media (prefers-reduced-motion: reduce) {

	.home-urgency-cta__btn {
		transition: none;
	}
}

.rtg-hero {
	position: relative;
	display: flex;
	align-items: flex-end;
	min-height: clamp(320px, 55vh, 560px);
	padding: clamp(2rem, 5vh, 3.5rem) clamp(1.5rem, 5vw, 4rem);
	overflow: hidden;
	background: #00241a;
	color: #fff;
}

.rtg-hero__media {
	position: absolute;
	inset: 0;
}

.rtg-hero__video,
.rtg-hero__fallback {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rtg-hero__fallback {
	background: linear-gradient(135deg, #044331 0%, #00241a 100%);
}

.rtg-hero__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 36, 26, 0.35) 0%, rgba(0, 36, 26, 0.82) 55%, rgba(0, 36, 26, 0.96) 100%);
}

.rtg-hero__content {
	position: relative;
	z-index: 1;
	max-width: var(--usc-container);
	width: 100%;
	margin: 0 auto;
}

.rtg-hero__eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--usc-gold);
}

.rtg-hero__title {
	margin: 0 0 1rem;
	max-width: 18ch;
	font-size: clamp(2.25rem, 5vw, 4rem);
	font-weight: 500;
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: #fff;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.rtg-hero__sub {
	margin: 0 0 1.75rem;
	max-width: 36rem;
	font-size: clamp(1rem, 1.6vw, 1.125rem);
	line-height: 1.6;
	color: #e8edea;
}

.rtg-hero__cta {
	position: relative;
	display: inline-flex;
	align-items: center;
	overflow: hidden;
	isolation: isolate;
	padding: 0.85rem 1.35rem;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.02em;
	text-decoration: none;
	border-radius: var(--usc-radius);
}

.rtg-edit {
	padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
	background: #fff;
}

.rtg-edit--home {
	background: #f8f7f4;
	border-top: 1px solid rgba(22, 25, 43, 0.06);
}

.rtg-edit--landing {
	background: #f8f7f4;
	border-top: 1px solid rgba(22, 25, 43, 0.06);
}

.rtg-edit__inner {
	max-width: var(--usc-container);
	margin: 0 auto;
}

.rtg-edit__intro {
	margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.rtg-edit__intro--center {
	text-align: center;
}

.rtg-edit__eyebrow {
	margin: 0 0 0.5rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #64748b;
}

.rtg-edit__title {
	margin: 0;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #16192b;
}

.rtg-edit__feature {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
}

.rtg-edit__feature--reverse {
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.rtg-edit__feature--landing {
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 4rem);
}

.rtg-edit--landing .rtg-edit__eyebrow {
	color: #b8860b;
	font-weight: 700;
	letter-spacing: 0.14em;
}

.rtg-edit--landing .rtg-edit__title {
	font-size: clamp(2rem, 4vw, 3rem);
}

.rtg-edit--landing .rtg-edit__meta span {
	padding: 0.4rem 0.75rem;
	background: var(--usc-gold);
	color: #16192b;
	border-radius: var(--usc-radius);
}

.rtg-edit__cta--solid {
	position: relative;
	display: inline-flex;
	align-items: center;
	overflow: hidden;
	isolation: isolate;
	padding: 0.85rem 1.35rem;
	background: transparent;
	color: #044331;
	border: none;
	border-radius: var(--usc-radius);
	box-shadow: inset 0 0 0 2px #044331;
	transition: color 0.25s ease, box-shadow 0.25s ease;
}

.rtg-edit__cta--solid::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: #044331;
	background-image: var(--usc-sweater-fill-pattern);
	background-repeat: repeat;
	background-size: 1.35rem 1.05rem;
	background-position: center bottom;
	transform: scaleY(0);
	transform-origin: bottom;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: -1;
}

.rtg-edit__cta--solid:hover {
	color: var(--usc-gold);
	box-shadow: inset 0 0 0 2px var(--usc-gold);
	border-bottom-color: transparent;
}

.rtg-edit__cta--solid:hover::before {
	transform: scaleY(1);
}

.rtg-edit__media--landing {
	aspect-ratio: 4 / 5;
	border-radius: 999px 999px 12px 12px;
	box-shadow: 0 20px 40px rgba(22, 25, 43, 0.12);
}

.rtg-edit__media {
	display: block;
	overflow: hidden;
	background: #f8f7f4;
	border-radius: var(--usc-radius);
}

.rtg-edit__media--tall {
	aspect-ratio: 4 / 5;
}

.rtg-edit__media img,
.rtg-edit__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rtg-edit__copy {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.rtg-edit__lead,
.rtg-edit__text {
	margin: 0;
	font-size: 1.0625rem;
	line-height: 1.65;
	color: #475569;
}

.rtg-edit__lead--center {
	max-width: 38rem;
	margin-inline: auto;
}

.rtg-edit__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.25rem;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #044331;
}

.rtg-edit__link,
.rtg-edit__cta {
	align-self: flex-start;
	font-size: 0.9375rem;
	font-weight: 700;
	color: #044331;
	text-decoration: none;
	border-bottom: 1px solid rgba(4, 67, 49, 0.35);
	padding-bottom: 0.15rem;
}

.rtg-edit__link:hover,
.rtg-edit__cta:hover {
	color: #00241a;
	border-bottom-color: #00241a;
}

.rtg-edit__cta {
	display: inline-flex;
	padding: 0;
	border-bottom: 1px solid rgba(4, 67, 49, 0.35);
}

.home-collection--editorial {
	padding-block: var(--usc-section-y);
	background: #fff;
	border-top: 1px solid var(--usc-home-rule-light);
	border-bottom: 1px solid var(--usc-home-rule);
}

.home-collection--editorial .home-collection__head {
	max-width: 36rem;
	margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
	padding-bottom: clamp(2rem, 4vw, 2.5rem);
	text-align: center;
	border-bottom: 1px solid var(--usc-home-rule);
}

.home-collection--editorial .home-collection__kicker {
	margin: 0 0 0.85rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #64748b;
}

.home-collection--editorial .home-collection__title {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: #16192b;
}

.home-collection--editorial .home-collection__deck {
	margin: 0 auto;
	max-width: 32rem;
	font-size: clamp(1rem, 1.8vw, 1.125rem);
	line-height: 1.55;
	color: #64748b;
}

.home-collection--editorial .home-collection__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 0;
	align-items: stretch;
	border: 1px solid var(--usc-home-rule);
}

.home-collection--editorial .home-collection__featured-link {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 2 / 3;
	overflow: hidden;
	text-decoration: none;
	color: #fff;
}

.home-collection--editorial .home-collection__media {
	position: absolute;
	inset: 0;
}

.home-collection--editorial .home-collection__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transition: transform 0.7s ease;
}

.home-collection--editorial .home-collection__copy {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.45rem;
	padding: clamp(1.5rem, 4vw, 2.25rem);
	transition: transform 0.35s ease;
}

.home-collection--editorial .home-collection__featured-link:hover .home-collection__media img {
	transform: scale(1.04);
}

.home-collection--editorial .home-collection__featured-link:hover .home-collection__copy {
	transform: translateY(-6px);
}

.home-collection--editorial .home-collection__scrim {
	position: absolute;
	inset: 0;
	background:
 linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, 0.08) 62%, rgba(0, 0, 0, 0.62) 100%);
	pointer-events: none;
}

.home-collection--editorial .home-collection__fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 3rem;
	font-weight: 800;
	color: rgba(4, 67, 49, 0.25);
	background: #f8f7f4;
}

.home-collection--editorial .home-collection__copy-kicker {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.78);
}

.home-collection--editorial .home-collection__copy-title {
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.02em;
}

.home-collection--editorial .home-collection__copy-meta {
	font-size: 0.875rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.82);
}

.home-collection--editorial .home-collection__copy-cta {
	margin-top: 0.25rem;
	padding-bottom: 2px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(255, 255, 255, 0.55);
	transition: border-color 0.2s ease, color 0.2s ease;
}

.home-collection--editorial .home-collection__featured-link:hover .home-collection__copy-cta {
	color: var(--usc-gold);
	border-bottom-color: var(--usc-gold);
}

.home-collection--editorial .home-collection__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	grid-template-rows: repeat(2, minmax(0, 1fr));
	gap: 0;
	min-width: 0;
	border-left: 1px solid var(--usc-home-rule);
}

.home-collection--editorial .home-collection__tile {
	display: flex;
	flex-direction: column;
	min-width: 0;
	text-decoration: none;
	color: #16192b;
	outline: 1px solid var(--usc-home-rule-light);
	outline-offset: -1px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-collection--editorial .home-collection__tile:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(4, 67, 49, 0.1);
}

.home-collection--editorial .home-collection__tile-media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: #f8f7f4;
}

.home-collection--editorial .home-collection__tile-media::after {
	display: none;
}

.home-collection--editorial .home-collection__tile-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	transition: transform 0.55s ease;
}

.home-collection--editorial .home-collection__tile:hover .home-collection__tile-media img {
	transform: scale(1.02);
}

.home-collection--editorial .home-collection__tile-label {
	margin-top: 0.65rem;
	font-size: 0.8125rem;
	font-weight: 700;
	line-height: 1.3;
}

.home-collection--editorial .home-collection__foot {
	margin-top: clamp(1.5rem, 3vw, 2rem);
	padding-top: clamp(1.5rem, 3vw, 2rem);
	text-align: center;
	border-top: 1px solid var(--usc-home-rule-light);
}

.home-collection--editorial .home-collection__all {
	position: relative;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #044331;
	text-decoration: none;
	padding-bottom: 2px;
}

.home-collection--editorial .home-collection__all::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: var(--usc-gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.home-collection--editorial .home-collection__all:hover::after {
	transform: scaleX(1);
}

@media (max-width: 960px) {

	.home-collection--editorial .home-collection__layout {
		grid-template-columns: 1fr;
	}

	.home-collection--editorial .home-collection__grid {
		border-left: none;
		border-top: 1px solid var(--usc-home-rule);
	}
}

@media (prefers-reduced-motion: reduce) {

	.home-collection--editorial .home-collection__media img,
	.home-collection--editorial .home-collection__tile-media img {
		transition: none;
	}
}

.rtg-patterns {
	padding: clamp(3.5rem, 7vw, 6rem) clamp(1.5rem, 5vw, 4rem);
	background: #00241a;
	color: #fff;
}

.rtg-patterns__inner {
	display: flex;
	flex-direction: column;
	gap: clamp(2rem, 4vw, 3rem);
	max-width: var(--usc-container);
	margin: 0 auto;
}

.rtg-patterns__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}

.rtg-patterns__picker {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
}

.rtg-patterns__header {
	max-width: 28rem;
}

.rtg-patterns__eyebrow {
	margin: 0 0 1rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--usc-gold);
}

.rtg-patterns__stat {
	display: flex;
	align-items: baseline;
	gap: 0.65rem;
	margin-bottom: 0.75rem;
}

.rtg-patterns__stat-num {
	font-size: clamp(3rem, 7vw, 4.5rem);
	font-weight: 500;
	line-height: 0.9;
	letter-spacing: -0.04em;
	color: #fff;
}

.rtg-patterns__stat-label {
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--usc-gold);
}

.rtg-patterns__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #fff;
}

.rtg-patterns__sub {
	margin: 0;
	font-size: 1rem;
	line-height: 1.65;
	color: #d9e2de;
}

.rtg-patterns__swatches {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(0.75rem, 2.5vw, 1.25rem);
	width: 100%;
	max-width: 28rem;
	align-items: start;
}

.rtg-patterns__swatches > br {
	display: none;
}

.rtg-patterns__swatch {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	align-self: start;
	padding: 3px;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	cursor: pointer;
	appearance: none;
	-webkit-appearance: none;
	font: inherit;
	line-height: 0;
	overflow: hidden;
	transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.rtg-patterns__swatch:hover,
.rtg-patterns__swatch.is-active {
	border-color: var(--usc-gold);
	box-shadow: 0 0 0 4px rgba(var(--usc-gold-rgb), 0.18);
	transform: scale(1.06);
}

.rtg-patterns__swatch-dot {
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: 1;
	border-radius: 50%;
	overflow: hidden;
	background: var(--swatch-color, #044331);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.rtg-patterns .rtg-patterns__swatch-dot img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
}

.rtg-patterns__preview {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.rtg-patterns__preview-caption {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.rtg-patterns__preview-kicker {
	margin: 0;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--usc-gold);
}

.rtg-patterns__preview-name {
	margin: 0;
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-weight: 500;
	line-height: 0.95;
	letter-spacing: -0.03em;
	color: var(--usc-gold);
}

.rtg-patterns__preview-sku {
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #d9e2de;
}

.rtg-patterns__preview-colors {
	margin: 0.45rem 0 0;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.rtg-patterns__preview-colors-label {
	margin: 0;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.55);
}

.rtg-patterns__preview-colors-list {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.88);
}

.rtg-patterns__preview-frame {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	border-radius: var(--usc-radius);
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: var(--preview-color, #044331);
	box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.rtg-patterns__preview-frame .rtg-patterns__preview-img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	max-height: none;
	aspect-ratio: unset;
	object-fit: cover;
	object-position: center top;
	transition: opacity 0.28s ease;
}

.rtg-patterns__preview-img.is-hidden {
	display: none;
}

.rtg-patterns__preview-img.is-fading {
	opacity: 0;
}

.rtg-patterns__preview-fallback {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background:
		radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.22), transparent 55%),
		var(--preview-color, #044331);
}

.rtg-patterns__preview-fallback.is-hidden {
	display: none;
}

.rtg-patterns__preview-fallback-num {
	font-size: clamp(3rem, 10vw, 5rem);
	font-weight: 500;
	letter-spacing: -0.04em;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.rtg-patterns__cta {
	display: inline-flex;
	align-items: center;
	padding: 0.85rem 1.35rem;
	background: var(--usc-gold);
	color: #16192b;
	font-size: 0.875rem;
	font-weight: 700;
	text-decoration: none;
	border: none;
	border-radius: var(--usc-radius);
	cursor: pointer;
	font-family: inherit;
	line-height: inherit;
	transition: background 0.2s ease, color 0.2s ease;
}

.rtg-patterns__actions {
	margin-top: 1.25rem;
}

.rtg-patterns__actions .rtg-patterns__cta {
	gap: 0.65rem;
}

.rtg-patterns__cta:hover {
	background: #fff;
	color: #044331;
}

.rtg-patterns.rtg-patterns--home .rtg-patterns__swatch-row {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	width: 100%;
	max-width: 28rem;
}

.rtg-patterns.rtg-patterns--home .rtg-patterns__swatches {
	width: 100%;
	max-width: none;
}

.rtg-patterns.rtg-patterns--home .rtg-patterns__cta--inline {
	display: inline-flex;
	margin-top: 0.25rem;
	padding: 0;
	background: transparent;
	color: var(--usc-gold);
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
	border: none;
	border-bottom: 1px solid rgba(var(--usc-gold-rgb), 0.35);
	border-radius: 0;
}

.rtg-patterns.rtg-patterns--home .rtg-patterns__cta--inline:hover {
	background: transparent;
	color: #fff;
	border-bottom-color: #fff;
}

.rtg-edit--landing {
	padding: 0;
	background: #f8f7f4;
	border-top: 1px solid var(--usc-home-rule-light);
}

.rtg-edit--landing .rtg-edit__inner {
	padding-block: clamp(3.5rem, 7vw, 5rem);
}

.rtg-edit--landing .home-section-head__title {
	margin: 0;
	font-size: clamp(1.75rem, 3vw, 2.5rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #16192b;
}

.rtg-edit--landing .rtg-edit__meta span {
	padding: 0.35rem 0.7rem;
	background: rgba(4, 67, 49, 0.08);
	color: #044331;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.rtg-more--editorial {
	padding: 0;
	background: #fff;
	border-top: 1px solid var(--usc-home-rule);
}

.rtg-more--editorial .rtg-more__inner {
	padding-block: clamp(3.5rem, 7vw, 5rem);
}

.rtg-more--editorial .home-section-head__title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 800;
	line-height: 1.1;
	color: #16192b;
}

.rtg-more--editorial .rtg-more__foot {
	margin-top: 2rem;
	text-align: center;
}

.landing-steps--landing {
	background: #fff;
}

.landing-compare--light .usc-btn--primary {
	margin-top: 0.5rem;
}

.rtg-more {
	padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 5vw, 4rem);
	background: #fff;
	border-top: 1px solid rgba(22, 25, 43, 0.06);
}

.rtg-more__inner {
	max-width: var(--usc-container);
	margin: 0 auto;
}

.rtg-more__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem 2rem;
	margin-bottom: 2rem;
}

.rtg-more__intro {
	max-width: 36rem;
}

.rtg-more__eyebrow {
	margin: 0 0 0.5rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #b8860b;
}

.rtg-more__title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #16192b;
}

.rtg-more__sub {
	margin: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: #475569;
}

.rtg-more__link {
	flex-shrink: 0;
	font-size: 0.9375rem;
	font-weight: 700;
	color: #044331;
	text-decoration: none;
	border-bottom: 1px solid rgba(4, 67, 49, 0.25);
}

.rtg-more__link:hover {
	color: #00241a;
	border-bottom-color: #00241a;
}

.rtg-more__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rtg-more__grid .shop-product {
	margin: 0;
}

.rtg-more__foot {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
}

.rtg-more__cta {
	display: inline-flex;
	align-items: center;
	padding: 0.85rem 1.35rem;
	background: #044331;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: var(--usc-radius);
	transition: background 0.2s ease, color 0.2s ease;
}

.rtg-more__cta:hover {
	background: var(--usc-gold);
	color: #16192b;
}

.shop-product__media {
	position: relative;
}

.shop-product__badge {
	position: absolute;
	top: 0.65rem;
	left: 0.65rem;
	z-index: 1;
	padding: 0.25rem 0.5rem;
	background: var(--usc-gold);
	color: #16192b;
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border-radius: 3px;
}

@media (max-width: 900px) {

	.rtg-edit__feature,
	.rtg-edit__feature--reverse,
	.rtg-edit__feature--landing {
		grid-template-columns: 1fr;
	}

	.rtg-edit--landing .rtg-edit__media {
		order: -1;
		max-width: 22rem;
		margin-inline: auto;
		width: 100%;
	}

	.rtg-patterns__layout {
		grid-template-columns: 1fr;
	}

	.rtg-patterns__preview {
		order: -1;
		max-width: 22rem;
		margin: 0 auto;
		width: 100%;
	}

	.rtg-patterns__swatches {
		max-width: 100%;
		gap: clamp(0.65rem, 3vw, 1rem);
	}

	.rtg-more__head {
		flex-direction: column;
		align-items: flex-start;
	}

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

	.rtg-hero {
		align-items: flex-end;
		min-height: clamp(280px, 48vh, 440px);
	}

	.rtg-hero__title {
		max-width: none;
	}
}

@media (max-width: 560px) {

	.rtg-patterns__swatches {
		gap: 0.5rem;
	}
}

@media (prefers-reduced-motion: reduce) {

	.rtg-hero__video {
		display: none;
	}
}

.home-trust {
	padding: clamp(2.5rem, 5vw, 3.5rem) 1.5rem;
	background: #fff;
	border-top: 1px solid var(--usc-home-rule);
}

.home-trust__inner {
	max-width: var(--usc-container);
	margin: 0 auto;
	text-align: center;
}

.home-trust__title {
	margin: 0 0 1.5rem;
	font-size: clamp(1.125rem, 2.5vw, 1.375rem);
	font-weight: 800;
	color: #16192b;
}

.home-trust__title::after {
	content: "";
	display: block;
	width: 2.5rem;
	height: 1px;
	margin: 0.85rem auto 0;
	background: #044331;
}

.home-trust__logos {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 2rem 2.5rem;
	margin: 0 0 1.5rem;
	padding: clamp(1.5rem, 3vw, 2rem) 0;
	border-top: 1px solid var(--usc-home-rule-light);
	border-bottom: 1px solid var(--usc-home-rule-light);
	list-style: none;
}

.home-trust__logos img {
	display: block;
	height: 48px;
	width: auto;
	max-width: 140px;
	object-fit: contain;
	opacity: 0.55;
	transition: opacity 0.25s ease;
}

.home-trust__logos li:hover img {
	opacity: 1;
}

.home-trust__cta {
	position: relative;
	display: inline-flex;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #044331;
	text-decoration: none;
	padding-bottom: 2px;
}

.home-trust__cta::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: var(--usc-gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s ease;
}

.home-trust__cta:hover::after {
	transform: scaleX(1);
}

@media (max-width: 1024px) {

	.home-featured__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 640px) {

	.home-featured__head {
		flex-direction: column;
		align-items: flex-start;
	}

	.home-featured__grid {
		grid-template-columns: 1fr;
	}

	.home-trust__logos {
		gap: 1.25rem 1.5rem;
	}

	.home-trust__logos img {
		height: 32px;
	}
}

.landing-page.wp-block-group {
	padding: 0;
	margin: 0;
	max-width: none;
}

.landing-hero {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: clamp(380px, 52vh, 560px);
	padding: clamp(3rem, 8vh, 5rem) 1.5rem;
	overflow: hidden;
	background: #00241a;
}

.landing-hero__media {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center 30%;
	background-repeat: no-repeat;
}

.landing-hero__media--gradient {
	background: linear-gradient(135deg, #044331 0%, #00241a 55%, #16192b 100%);
}

.landing-hero__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 36, 26, 0.35) 100%);
}

.landing-hero__scrim--custom {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 36, 26, 0.55) 100%);
}

.landing-hero__inner {
	position: relative;
	z-index: 1;
	max-width: 820px;
	text-align: center;
	color: #fff;
}

.landing-hero .landing-hero__title,
.landing-hero .landing-hero__title--page {
	color: #fff;
}

.landing-hero .home-section-head__kicker {
	margin: 0 0 0.85rem;
	color: rgba(255, 255, 255, 0.72);
}

.landing-hero .home-section-head__kicker::after {
	content: "";
	display: block;
	width: 2.5rem;
	height: 1px;
	margin: 0.85rem auto 0;
	background: var(--usc-gold);
}

.landing-hero__eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--usc-gold);
}

.landing-hero__title {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.landing-hero__word {
	display: inline-block;
	margin: 0 0.12em;
}

.landing-hero__word--red {
	color: #ef4444;
}

.landing-hero__word--white {
	color: #fff;
}

.landing-hero__word--green {
	color: #4ade80;
}

.landing-hero__word--gold {
	color: var(--usc-gold);
}

.landing-hero__sub {
	margin: 0 auto 1.5rem;
	max-width: 640px;
	font-size: clamp(1rem, 2vw, 1.125rem);
	font-weight: 500;
	color: #fff;
	line-height: 1.55;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.landing-hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem;
}

.landing-hero__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.landing-hero__cta--primary {
	color: #16192b;
}

.landing-hero__cta--ghost {
	border: 1px solid rgba(255, 255, 255, 0.45);
	background: rgba(0, 0, 0, 0.2);
	color: #fff;
	backdrop-filter: blur(4px);
}

.landing-hero__cta--ghost:hover {
	background: rgba(0, 0, 0, 0.35);
	color: #fff;
}

.landing-facts {
	padding: 0 1.5rem;
	background: #044331;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-facts__inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	max-width: var(--usc-container);
	margin: 0 auto;
	padding: 1.25rem 0;
}

.landing-facts__item {
	text-align: center;
}

.landing-facts__value {
	display: block;
	font-size: clamp(1.25rem, 2.5vw, 1.625rem);
	font-weight: 800;
	color: var(--usc-gold);
	line-height: 1.1;
}

.landing-facts__label {
	display: block;
	margin-top: 0.25rem;
	font-size: 0.6875rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.85);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.landing-steps {
	padding: clamp(3rem, 6vw, 4.5rem) 1.5rem;
	background: #fff;
}

.landing-steps--dark {
	background: #f8f7f4;
}

.landing-steps__inner {
	max-width: var(--usc-container);
	margin: 0 auto;
}

.landing-steps__title {
	margin: 0 0 2rem;
	font-size: clamp(1.375rem, 3vw, 1.875rem);
	font-weight: 800;
	color: #16192b;
	text-align: center;
}

.landing-steps__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: none;
}

.landing-step {
	padding: 1.5rem;
	background: #fff;
	border: 1px solid rgba(22, 25, 43, 0.08);
	border-radius: 8px;
}

.landing-steps--dark .landing-step {
	background: #fff;
}

.landing-step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	margin-bottom: 1rem;
	background: #044331;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 800;
	border-radius: 50%;
}

.landing-step__title {
	margin: 0 0 0.5rem;
	font-size: 1.0625rem;
	font-weight: 800;
	color: #16192b;
}

.landing-step__text {
	margin: 0;
	font-size: 0.9375rem;
	color: #475569;
	line-height: 1.5;
}

.landing-steps--editorial {
	padding-block: var(--usc-section-y);
}

.landing-steps--editorial .landing-steps__inner {
	max-width: var(--usc-container-wide);
}

.landing-steps--editorial .landing-steps__title {
	margin-bottom: clamp(2rem, 4vw, 2.5rem);
	text-align: left;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.landing-steps--editorial .landing-steps__list {
	gap: 0;
	border-top: 1px solid rgba(22, 25, 43, 0.08);
}

.landing-steps--editorial .landing-step {
	padding: clamp(1.5rem, 3vw, 2rem) clamp(1rem, 2vw, 1.5rem) 0;
	background: none;
	border: none;
	border-radius: 0;
	border-right: 1px solid rgba(22, 25, 43, 0.08);
}

.landing-steps--editorial .landing-step:last-child {
	border-right: none;
}

.landing-steps--editorial .landing-step__num {
	width: auto;
	height: auto;
	margin-bottom: 1rem;
	padding: 0;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	background: none;
	color: #64748b;
	border-radius: 0;
}

.landing-steps--editorial .landing-step__num::before {
	content: "Step ";
}

.landing-steps--timeline.is-scroll-pin {
	--timeline-pin-top: var(--usc-header-height, 72px);
	height: calc(var(--timeline-steps, 3) * 100vh + 20vh);
}

.landing-steps--timeline.is-scroll-pin .landing-steps__pin {
	position: sticky;
	top: var(--timeline-pin-top);
	display: flex;
	align-items: center;
	min-height: calc(100vh - var(--timeline-pin-top));
	padding-block: clamp(1.5rem, 3vw, 2.5rem);
	box-sizing: border-box;
}

.landing-steps--timeline.is-scroll-pin .landing-steps__inner {
	width: 100%;
}

.landing-steps--timeline.is-scroll-pin .landing-steps__timeline {
	display: grid;
	grid-template-columns: 2.5rem minmax(0, 1fr);
	gap: 0 1.25rem;
	align-items: stretch;
	min-height: clamp(200px, 32vh, 280px);
}

.landing-steps--timeline.is-scroll-pin .landing-steps__track {
	position: relative;
	top: auto;
	bottom: auto;
	left: auto;
	grid-column: 1;
	grid-row: 1;
	height: 100%;
	min-height: clamp(200px, 32vh, 280px);
}

.landing-steps--timeline.is-scroll-pin .landing-steps__list {
	grid-column: 1 / -1;
	grid-row: 1;
	position: relative;
	min-height: clamp(200px, 32vh, 280px);
	padding: 0 0 0 3rem;
}

.landing-steps--timeline.is-scroll-pin .landing-step {
	position: absolute;
	inset: 0 0 0 3rem;
	padding: 0;
	pointer-events: none;
}

.landing-steps--timeline.is-scroll-pin .landing-step.is-active {
	pointer-events: auto;
}

.landing-steps--timeline.is-scroll-pin .landing-step:not(.is-active) .landing-step__body {
	visibility: hidden;
	opacity: 0;
	height: 0;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

.landing-steps--timeline.is-scroll-pin .landing-step.is-active .landing-step__body {
	visibility: visible;
	opacity: 1;
	height: auto;
}

.landing-steps--timeline.is-scroll-pin .landing-step__marker {
	top: auto;
	left: -2.4375rem;
	margin-top: 0;
	transform: none;
}

.landing-steps--timeline.is-scroll-pin .landing-step:nth-child(1) .landing-step__marker {
	top: 0;
}

.landing-steps--timeline.is-scroll-pin .landing-step:nth-child(2) .landing-step__marker {
	top: 50%;
	transform: translateY(-50%);
}

.landing-steps--timeline.is-scroll-pin .landing-step:nth-child(3) .landing-step__marker {
	top: 100%;
	transform: translateY(-100%);
}

.landing-steps--timeline.is-scroll-pin .landing-step.is-active .landing-step__marker {
	box-shadow: 0 0 0 4px rgba(var(--usc-gold-rgb), 0.28);
}

.landing-steps--timeline.is-scroll-pin .landing-step:nth-child(1).is-active .landing-step__marker {
	top: 0;
	transform: scale(1.15);
}

.landing-steps--timeline.is-scroll-pin .landing-step:nth-child(2).is-active .landing-step__marker {
	top: 50%;
	transform: translateY(-50%) scale(1.15);
}

.landing-steps--timeline.is-scroll-pin .landing-step:nth-child(3).is-active .landing-step__marker {
	top: 100%;
	transform: translateY(-100%) scale(1.15);
}

.landing-steps--timeline.is-scroll-pin .landing-step.is-complete .landing-step__marker {
	border-color: #044331;
	background: #044331;
	transform: none;
}

.landing-steps--timeline.is-scroll-pin .landing-step:nth-child(2).is-complete .landing-step__marker {
	top: 50%;
	transform: translateY(-50%);
}

.landing-steps--timeline.is-scroll-pin .landing-step:nth-child(3).is-complete .landing-step__marker {
	top: 100%;
	transform: translateY(-100%);
}

.landing-steps--timeline.is-scroll-pin .landing-step__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: clamp(200px, 32vh, 280px);
	transition: opacity 0.35s ease;
}

.landing-steps--timeline .landing-steps__timeline {
	position: relative;
	margin-top: clamp(1.5rem, 3vw, 2rem);
}

.landing-steps--timeline .landing-steps__track {
	position: absolute;
	top: 0.75rem;
	bottom: 0.75rem;
	left: 0.5625rem;
	width: 2px;
	background: var(--usc-home-rule);
	pointer-events: none;
}

.landing-steps--timeline .landing-steps__track-fill {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: linear-gradient(180deg, #044331 0%, #0a6b4f 100%);
	transition: height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-steps--timeline .landing-steps__list {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0;
	padding: 0 0 0 3rem;
	list-style: none;
	border: none;
}

.landing-steps--timeline .landing-step {
	position: relative;
	display: block;
	padding: clamp(1.75rem, 3.5vw, 2.5rem) 0;
	background: none;
	border: none;
	border-radius: 0;
	opacity: 0.42;
	transition: opacity 0.4s ease;
}

.landing-steps--timeline .landing-step.is-active,
.landing-steps--timeline .landing-step.is-complete {
	opacity: 1;
}

.landing-steps--timeline .landing-step__marker {
	position: absolute;
	top: clamp(2rem, 3.5vw, 2.65rem);
	left: -2.4375rem;
	z-index: 2;
	width: 1.125rem;
	height: 1.125rem;
	border: 2px solid var(--usc-home-rule);
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 4px #fff;
	transition:
		border-color 0.35s ease,
		background 0.35s ease,
		transform 0.35s ease,
		box-shadow 0.35s ease;
}

.landing-steps--timeline .landing-step.is-complete .landing-step__marker {
	border-color: #044331;
	background: #044331;
}

.landing-steps--timeline .landing-step.is-active .landing-step__marker {
	border-color: var(--usc-gold);
	background: #044331;
	transform: scale(1.15);
	box-shadow: 0 0 0 4px rgba(var(--usc-gold-rgb), 0.28);
}

.landing-steps--timeline .landing-step__body {
	max-width: 36rem;
}

.landing-steps--timeline .landing-step__num {
	margin-bottom: 0.65rem;
	color: #94a3b8;
	transition: color 0.35s ease;
}

.landing-steps--timeline .landing-step.is-active .landing-step__num,
.landing-steps--timeline .landing-step.is-complete .landing-step__num {
	color: #044331;
}

.landing-steps--timeline .landing-step__title {
	transition: color 0.35s ease;
}

.landing-steps--timeline .landing-step.is-active .landing-step__title {
	color: #044331;
}

.landing-steps--timeline .landing-step__text {
	transition: color 0.35s ease;
}

.landing-steps--timeline .landing-step.is-active .landing-step__text {
	color: #475569;
}

@media (max-width: 768px) {

	.landing-steps--timeline .landing-steps__list {
		padding-left: 2.75rem;
	}

	.landing-steps--timeline .landing-steps__track {
		left: 0.4375rem;
	}

	.landing-steps--timeline .landing-step__marker {
		left: -2.3125rem;
	}
}

@media (prefers-reduced-motion: reduce) {

	.landing-steps--timeline .landing-step,
	.landing-steps--timeline .landing-step__marker,
	.landing-steps--timeline .landing-steps__track-fill {
		transition: none;
	}

	.landing-steps--timeline .landing-step {
		opacity: 1;
	}

	.landing-steps--timeline .landing-step .landing-step__marker {
		border-color: #044331;
		background: #044331;
		transform: none;
	}
}

.landing-steps--timeline.landing-steps--slider .landing-steps__timeline {
	display: grid;
	grid-template-columns: 2.5rem minmax(0, 1fr);
	gap: 0 1.25rem;
	align-items: stretch;
	min-height: clamp(220px, 34vh, 300px);
	cursor: grab;
	touch-action: none;
	user-select: none;
}

.landing-steps--timeline.landing-steps--slider .landing-steps__timeline.is-dragging {
	cursor: grabbing;
}

.landing-steps--timeline.landing-steps--slider .landing-steps__track {
	position: relative;
	top: auto;
	bottom: auto;
	left: auto;
	grid-column: 1;
	grid-row: 1;
	width: 2px;
	height: 100%;
	min-height: clamp(220px, 34vh, 300px);
	margin-left: 0.5625rem;
	background: var(--usc-home-rule);
	pointer-events: none;
}

.landing-steps--timeline.landing-steps--slider .landing-steps__track:focus-visible {
	outline: 2px solid var(--usc-gold);
	outline-offset: 4px;
	border-radius: 4px;
}

.landing-steps--timeline.landing-steps--slider .landing-steps__thumb {
	position: absolute;
	left: 50%;
	top: 0;
	z-index: 3;
	width: 1.375rem;
	height: 1.375rem;
	margin-left: -0.6875rem;
	margin-top: -0.6875rem;
	border: 2px solid var(--usc-gold);
	border-radius: 50%;
	background: #044331;
	box-shadow: 0 0 0 4px rgba(var(--usc-gold-rgb), 0.28);
	pointer-events: none;
	transition:
		top 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.35s ease;
}

.landing-steps--timeline.landing-steps--slider .landing-steps__timeline.is-dragging .landing-steps__thumb,
.landing-steps--timeline.landing-steps--slider .landing-steps__timeline.is-dragging .landing-steps__track-fill {
	transition: none;
}

.landing-steps--timeline.landing-steps--slider .landing-steps__list {
	display: block;
	grid-column: 1 / -1;
	grid-row: 1;
	position: relative;
	min-height: clamp(220px, 34vh, 300px);
	padding: 0 0 0 3rem;
}

.landing-steps--editorial.landing-steps--slider .landing-step {
	padding: 0;
	border: none;
	border-radius: 0;
}

.landing-steps--timeline.landing-steps--slider .landing-step {
	position: absolute;
	inset: 0 0 0 3rem;
	display: block;
	padding: 0;
	opacity: 1;
	pointer-events: none;
}

.landing-steps--timeline.landing-steps--slider .landing-step__marker {
	top: auto;
	left: -2.4375rem;
	margin: 0;
	padding: 0;
	pointer-events: auto;
	cursor: pointer;
	appearance: none;
	font: inherit;
	transform: none;
}

.landing-steps--timeline.landing-steps--slider .landing-step:nth-child(1) .landing-step__marker {
	top: 0;
}

.landing-steps--timeline.landing-steps--slider .landing-step:nth-child(2) .landing-step__marker {
	top: 50%;
	transform: translateY(-50%);
}

.landing-steps--timeline.landing-steps--slider .landing-step:nth-child(3) .landing-step__marker {
	top: 100%;
	transform: translateY(-100%);
}

.landing-steps--timeline.landing-steps--slider .landing-step:not(.is-active) .landing-step__body {
	visibility: hidden;
	opacity: 0;
	transform: translateY(12px);
}

.landing-steps--timeline.landing-steps--slider .landing-step.is-active .landing-step__body {
	visibility: visible;
	opacity: 1;
	transform: translateY(0);
	transition:
		opacity 0.4s ease,
		transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-steps--timeline.landing-steps--slider .landing-step__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: clamp(220px, 34vh, 300px);
	max-width: 36rem;
}

.landing-steps--timeline.landing-steps--slider .landing-step.is-active .landing-step__marker {
	opacity: 0;
	pointer-events: none;
	transform: none;
	box-shadow: 0 0 0 4px #fff;
}

.landing-steps--timeline.landing-steps--slider .landing-step:nth-child(2).is-active .landing-step__marker {
	top: 50%;
	transform: translateY(-50%);
}

.landing-steps--timeline.landing-steps--slider .landing-step:nth-child(3).is-active .landing-step__marker {
	top: 100%;
	transform: translateY(-100%);
}

.landing-steps--timeline.landing-steps--slider .landing-step.is-complete .landing-step__marker {
	border-color: #044331;
	background: #044331;
	box-shadow: 0 0 0 4px #fff;
	transform: none;
}

.landing-steps--timeline.landing-steps--slider .landing-step:nth-child(2).is-complete .landing-step__marker {
	top: 50%;
	transform: translateY(-50%);
}

.landing-steps--timeline.landing-steps--slider .landing-step:nth-child(3).is-complete .landing-step__marker {
	top: 100%;
	transform: translateY(-100%);
}

.landing-steps--slider .landing-steps__hint {
	margin: 1rem 0 0;
	padding-left: 3rem;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #94a3b8;
}

@media (max-width: 768px) {

	.landing-steps--timeline.landing-steps--slider .landing-steps__track {
		margin-left: 0.4375rem;
	}

	.landing-steps--timeline.landing-steps--slider .landing-step__marker {
		left: -2.3125rem;
	}

	.landing-steps--slider .landing-steps__hint {
		padding-left: 2.75rem;
	}
}

.landing-steps--picker.landing-steps--editorial .landing-step {
	padding: 0;
	border: none;
	background: none;
	border-radius: 0;
}

.landing-steps--picker .landing-steps__title {
	margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.landing-steps--picker .landing-steps__picker {
	position: relative;
	margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
	padding-top: 0.35rem;
}

.landing-steps--picker .landing-steps__picker-track {
	position: absolute;
	top: 1.05rem;
	left: calc(100% / 6);
	right: calc(100% / 6);
	height: 2px;
	background: var(--usc-home-rule, rgba(22, 25, 43, 0.12));
	pointer-events: none;
}

.landing-steps--picker .landing-steps__picker-track-fill {
	display: block;
	height: 100%;
	width: 0;
	background: #044331;
	transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-steps--picker .landing-steps__picker-list {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.75rem;
}

.landing-steps--picker .landing-steps__pick {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	padding: 0 0.35rem;
	border: none;
	border-radius: 0;
	background: transparent;
	color: #64748b;
	font: inherit;
	cursor: pointer;
	transition: color 0.25s ease;
}

.landing-steps--picker .landing-steps__pick:hover {
	color: #044331;
}

.landing-steps--picker .landing-steps__pick.is-active {
	color: #044331;
}

.landing-steps--picker .landing-steps__pick:focus-visible {
	outline: 2px solid var(--usc-gold);
	outline-offset: 4px;
	border-radius: 4px;
}

.landing-steps--picker .landing-steps__pick-marker {
	flex-shrink: 0;
	width: 1.75rem;
	height: 2rem;
	border: none;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	transition: transform 0.3s ease, filter 0.3s ease;
}

.landing-steps--picker .landing-steps__pick-marker--sweater {
	display: grid;
	place-items: center;
}

.landing-steps--picker .landing-steps__pick-sweater {
	display: block;
	width: 100%;
	height: auto;
	overflow: visible;
}

.landing-steps--picker .landing-steps__pick:nth-child(1) {
	--step-sweater-body: #044331;
	--step-sweater-shadow: #022820;
	--step-sweater-stripe: #f5d078;
	--step-sweater-neck: #f8fafc;
}

.landing-steps--picker .landing-steps__pick:nth-child(2) {
	--step-sweater-body: #b42318;
	--step-sweater-shadow: #7f1a12;
	--step-sweater-stripe: #f5d078;
	--step-sweater-neck: #f8fafc;
}

.landing-steps--picker .landing-steps__pick:nth-child(3) {
	--step-sweater-body: #1e293b;
	--step-sweater-shadow: #0f172a;
	--step-sweater-stripe: #044331;
	--step-sweater-neck: #f8fafc;
}

.landing-steps--picker .landing-steps__pick-sweater-body {
	fill: var(--step-sweater-body, #044331);
}

.landing-steps--picker .landing-steps__pick-sweater-shadow {
	fill: var(--step-sweater-shadow, #022820);
	transform: translateY(0.5px);
	opacity: 0.35;
}

.landing-steps--picker .landing-steps__pick-sweater-stripe {
	fill: var(--step-sweater-stripe, #f5d078);
}

.landing-steps--picker .landing-steps__pick-sweater-neck {
	fill: var(--step-sweater-neck, #f8fafc);
}

.landing-steps--picker .landing-steps__pick-sweater-rib {
	fill: none;
	stroke: rgba(255, 255, 255, 0.28);
	stroke-width: 0.55;
	stroke-linecap: round;
}

.landing-steps--picker .landing-steps__pick:not(.is-active):not(.is-complete) .landing-steps__pick-sweater {
	opacity: 0.38;
	filter: grayscale(0.75) saturate(0.65);
}

.landing-steps--picker .landing-steps__pick.is-complete .landing-steps__pick-marker {
	filter: none;
	transform: none;
}

.landing-steps--picker .landing-steps__pick.is-complete .landing-steps__pick-sweater {
	opacity: 1;
	filter: none;
}

.landing-steps--picker .landing-steps__pick.is-active .landing-steps__pick-marker {
	filter: drop-shadow(0 0 0 3px rgba(var(--usc-gold-rgb), 0.34));
	transform: scale(1.14) translateY(-1px);
}

.landing-steps--picker .landing-steps__pick.is-active .landing-steps__pick-sweater {
	opacity: 1;
	filter: none;
}

.landing-steps--picker .landing-steps__pick.is-complete .landing-steps__pick-marker,
.landing-steps--picker .landing-steps__pick.is-active .landing-steps__pick-marker {
	border: none;
	background: transparent;
	box-shadow: none;
}

.landing-steps--picker .landing-steps__pick-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.2rem;
	text-align: center;
}

.landing-steps--picker .landing-steps__pick-num {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: #94a3b8;
	transition: color 0.25s ease;
}

.landing-steps--picker .landing-steps__pick.is-active .landing-steps__pick-num,
.landing-steps--picker .landing-steps__pick.is-complete .landing-steps__pick-num {
	color: #044331;
}

.landing-steps--picker .landing-steps__pick-label {
	font-size: clamp(0.8125rem, 1.4vw, 0.875rem);
	font-weight: 600;
	line-height: 1.25;
}

.landing-steps--picker .landing-steps__panels {
	position: relative;
	min-height: clamp(280px, 42vw, 380px);
}

.landing-steps--picker .landing-step {
	position: absolute;
	inset: 0;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(1.5rem, 3.5vw, 2.5rem);
	align-items: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.landing-steps--picker .landing-step.is-active {
	position: relative;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.landing-steps--picker .landing-step__media {
	overflow: hidden;
	border-radius: var(--usc-radius);
	background: #f3efe6;
	aspect-ratio: 4 / 3;
}

.landing-steps--picker .landing-step__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.landing-steps--picker .landing-step__body {
	max-width: 34rem;
}

.landing-steps--picker .landing-step__num {
	display: block;
	margin-bottom: 0.75rem;
}

.landing-steps--picker .landing-step__num::before {
	content: "Step ";
}

.landing-steps--picker .landing-step__title {
	margin: 0 0 0.85rem;
	font-size: clamp(1.375rem, 2.5vw, 1.75rem);
	color: #044331;
}

.landing-steps--picker .landing-step__text {
	margin: 0 0 1rem;
	font-size: clamp(1rem, 1.6vw, 1.125rem);
	line-height: 1.6;
	color: #334155;
}

.landing-steps--picker .landing-step__detail {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: #64748b;
}

@media (max-width: 768px) {

	.landing-steps--picker .landing-steps__picker-track {
		left: calc(100% / 6);
		right: calc(100% / 6);
	}

	.landing-steps--picker .landing-steps__picker-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 0.35rem;
	}

	.landing-steps--picker .landing-steps__pick {
		padding: 0 0.15rem;
		gap: 0.55rem;
	}

	.landing-steps--picker .landing-steps__pick-label {
		font-size: 0.75rem;
	}

	.landing-steps--picker .landing-step {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {

	.landing-steps--picker .landing-steps__pick,
	.landing-steps--picker .landing-steps__pick-marker,
	.landing-steps--picker .landing-steps__picker-track-fill,
	.landing-steps--picker .landing-step {
		transition: none;
	}
}

@media (max-width: 768px) {

	.landing-steps--editorial:not(.landing-steps--timeline) .landing-steps__list {
		grid-template-columns: 1fr;
	}

	.landing-steps--editorial:not(.landing-steps--timeline) .landing-step {
		padding-bottom: 1.5rem;
		border-right: none;
		border-bottom: 1px solid rgba(22, 25, 43, 0.08);
	}

	.landing-steps--editorial:not(.landing-steps--timeline) .landing-step:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}
}

.landing-pillars {
	padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
	background: #fff;
}

.landing-pillars__inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	max-width: var(--usc-container);
	margin: 0 auto;
}

.landing-pillar {
	padding: 1.5rem;
	background: #f8f7f4;
	border: 1px solid rgba(4, 67, 49, 0.12);
	border-radius: 8px;
}

.landing-pillar__title {
	margin: 0 0 0.5rem;
	font-size: 1.125rem;
	font-weight: 800;
	color: #044331;
}

.landing-pillar__text {
	margin: 0;
	font-size: 0.9375rem;
	color: #475569;
	line-height: 1.5;
}

.landing-showcase {
	padding: clamp(3rem, 6vw, 4.5rem) 1.5rem;
	background: #fff;
}

.landing-showcase__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
	max-width: var(--usc-container);
	margin: 0 auto;
}

.landing-showcase__media {
	border-radius: 8px;
	overflow: hidden;
	background: #f8f7f4;
}

.landing-showcase__media img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.landing-showcase__eyebrow {
	margin: 0 0 0.5rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #0a6b4f;
}

.landing-showcase__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.375rem, 3vw, 1.875rem);
	font-weight: 800;
	color: #16192b;
	line-height: 1.15;
}

.landing-showcase__text {
	margin: 0 0 1rem;
	font-size: 1rem;
	color: #475569;
	line-height: 1.55;
}

.landing-showcase__list {
	margin: 0 0 1.25rem;
	padding: 0;
	list-style: none;
}

.landing-showcase__list li {
	position: relative;
	padding: 0.35rem 0 0.35rem 1.125rem;
	font-size: 0.9375rem;
	color: #16192b;
}

.landing-showcase__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.75em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #044331;
}

.landing-showcase__cta {
	display: inline-flex;
	padding: 0.75rem 1.5rem;
	background: #044331;
	color: #fff;
	font-size: 0.9375rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 4px;
}

.landing-showcase__cta:hover {
	background: #0a6b4f;
	color: #fff;
}

.landing-featured {
	border-top: 1px solid rgba(22, 25, 43, 0.06);
}

.landing-trust {
	border-top: none;
}

.landing-compare {
	padding: clamp(2rem, 4vw, 3rem) 1.5rem;
	background: #16192b;
	color: #fff;
	text-align: center;
}

.landing-compare--light {
	background: #f8f7f4;
	color: #16192b;
}

.landing-compare__inner {
	max-width: 640px;
	margin: 0 auto;
}

.landing-compare__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.25rem, 2.5vw, 1.5rem);
	font-weight: 800;
	line-height: 1.2;
}

.landing-compare__text {
	margin: 0 0 1rem;
	font-size: 1rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.85);
}

.landing-compare--light .landing-compare__text {
	color: #475569;
}

.landing-compare__link {
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--usc-gold);
	text-decoration: none;
	border-bottom: 1px solid rgba(var(--usc-gold-rgb), 0.35);
}

.landing-compare--light .landing-compare__link {
	color: #044331;
	border-bottom-color: rgba(4, 67, 49, 0.25);
}

.landing-compare__link:hover {
	color: var(--usc-gold-hover);
}

.landing-compare--light .landing-compare__link:hover {
	color: #0a6b4f;
}

.landing-cta {
	margin-top: 0;
}

.landing-hero--about {
	min-height: clamp(300px, 44vh, 460px);
}

.landing-hero--about .landing-hero__scrim--about {
	background: linear-gradient(180deg, rgba(0, 36, 26, 0.78) 0%, rgba(0, 36, 26, 0.48) 100%);
}

.landing-hero--about .landing-hero__inner {
	max-width: var(--usc-container);
}

.landing-hero__title--page {
	text-transform: none;
	letter-spacing: -0.01em;
	font-size: clamp(2rem, 4vw, 2.75rem);
}

.landing-showcase--about {
	padding-block: var(--usc-section-y);
	padding-inline: 0;
}

.landing-showcase--about .landing-showcase__text + .landing-showcase__text {
	margin-top: 0.75rem;
}

.landing-facts--about {
	padding-inline: 0;
}

.landing-facts--about .landing-facts__inner {
	display: block;
	padding-block: var(--usc-section-y);
}

.landing-facts--about .landing-facts__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.25rem;
	margin-top: 1.25rem;
}

.landing-facts--about .landing-facts__item {
	text-align: center;
}

.landing-facts--about .usc-eyebrow--center {
	color: rgba(255, 255, 255, 0.75);
}

.home-numbers {
	padding: clamp(2.5rem, 5vw, 3.75rem) var(--usc-pad-x);
	background: #044331;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-numbers__inner {
	padding-inline: 0;
}

.home-numbers__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.55fr);
	gap: clamp(1.5rem, 3.5vw, 2.5rem);
	align-items: stretch;
}

.home-numbers__head {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1rem;
	padding: clamp(1.25rem, 2.5vw, 1.75rem) 0;
}

.home-numbers__kicker {
	margin: 0;
	font-size: clamp(2rem, 4.5vw, 3.25rem);
	font-weight: 800;
	line-height: 1.02;
	letter-spacing: -0.03em;
	color: #fff;
}

.home-numbers__kicker::after {
	content: "";
	display: block;
	width: 2.75rem;
	height: 3px;
	margin-top: 1rem;
	background: var(--usc-gold);
}

.home-numbers__lede {
	margin: 0;
	max-width: 22ch;
	font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.78);
}

.home-numbers__facts {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	grid-auto-rows: minmax(0, auto);
	gap: clamp(0.75rem, 1.5vw, 1rem);
}

.home-numbers__fact {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 0.65rem;
	min-height: clamp(8rem, 16vw, 10.5rem);
	padding: clamp(1rem, 2vw, 1.35rem);
	overflow: hidden;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--usc-radius);
	transition:
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.35s ease,
		background 0.35s ease,
		box-shadow 0.35s ease;
}

.home-numbers__fact--1 {
	grid-column: 1 / span 3;
	grid-row: 1 / span 2;
	min-height: clamp(10rem, 18vw, 13rem);
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);
	transition:
		transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		border-color 0.35s ease,
		background 0.35s ease,
		box-shadow 0.35s ease;
}

.home-numbers__fact--2 {
	grid-column: 4 / span 3;
}

.home-numbers__fact--3 {
	grid-column: 4 / span 3;
}

.home-numbers__value {
	display: flex;
	align-items: flex-end;
	gap: 0.04em;
	margin: 0;
	font-weight: 800;
	line-height: 0.92;
	color: var(--usc-gold);
	transition: color 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-numbers__prefix,
.home-numbers__suffix {
	font-size: clamp(1.35rem, 2.8vw, 2rem);
}

.home-numbers__figure {
	font-size: clamp(2.75rem, 6vw, 4.5rem);
	letter-spacing: -0.04em;
}

.home-numbers__fact--1 .home-numbers__figure {
	font-size: clamp(3.25rem, 7vw, 5rem);
}

.home-numbers__label {
	margin: 0;
	max-width: 24ch;
	font-size: clamp(0.8125rem, 1.35vw, 0.9375rem);
	font-weight: 500;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.88);
	transition: color 0.35s ease;
}

@media (hover: hover) {

	.home-numbers__fact:hover {
		transform: translateY(-3px);
		border-color: rgba(255, 255, 255, 0.24);
		background: rgba(255, 255, 255, 0.08);
		box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
	}

	.home-numbers__fact--1:hover {
		background: linear-gradient(145deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.06) 100%);
	}

	.home-numbers__fact:hover .home-numbers__value {
		color: var(--usc-gold-hover, #f5d042);
		transform: translateX(2px);
	}

	.home-numbers__fact:hover .home-numbers__label {
		color: #fff;
	}
}

@media (prefers-reduced-motion: reduce) {

	.home-numbers__fact,
	.home-numbers__fact--1,
	.home-numbers__value,
	.home-numbers__label {
		transition: none;
	}

	@media (hover: hover) {

		.home-numbers__fact:hover {
			transform: none;
		}

		.home-numbers__fact:hover .home-numbers__value {
			transform: none;
		}
	}
}

@media (max-width: 900px) {

	.home-numbers__layout {
		grid-template-columns: 1fr;
	}

	.home-numbers__facts {
		grid-template-columns: 1fr;
	}

	.home-numbers__fact,
	.home-numbers__fact--1,
	.home-numbers__fact--2,
	.home-numbers__fact--3 {
		grid-column: 1 / -1;
		grid-row: auto;
		min-height: 0;
	}
}

@media (max-width: 640px) {

	.home-numbers__lede {
		max-width: none;
	}
}

.about-products {
	padding-block: var(--usc-section-y);
	background: #fff;
	border-top: 1px solid rgba(22, 25, 43, 0.06);
}

.about-products--page {
	padding-top: 0;
	padding-bottom: 0;
	border-top: 0;
	background: #fff;
}

.landing-page--our-products .landing-hero--products + .about-products--page {
	margin-top: 0;
}

.landing-hero--products {
	min-height: clamp(300px, 44vh, 460px);
	padding-block: clamp(3rem, 7vw, 4.5rem);
}

.landing-hero--products .landing-hero__scrim--products {
	background: linear-gradient(180deg, rgba(0, 36, 26, 0.78) 0%, rgba(0, 36, 26, 0.48) 100%);
}

.landing-hero--products .landing-hero__inner {
	max-width: 42rem;
}

.landing-hero--products .landing-hero__sub {
	max-width: 36rem;
	margin-bottom: 0;
}

.about-products--page .about-products__intro {
	padding-top: clamp(2.5rem, 5vw, 3.5rem);
	padding-bottom: 0;
}

.about-products--page .about-products__head {
	margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.about-products--page .about-products__title {
	margin: 0;
}

.about-products--page .about-products__deck {
	margin: 0 auto;
}

.about-products--page .about-products__row:first-of-type {
	padding-top: 0;
}

.landing-page--our-products .about-products--page + .landing-trust,
.landing-page--our-products .about-products--page ~ .landing-trust {
	border-top: 0;
}

.about-products__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 800;
	line-height: 1.1;
	color: #16192b;
}

.about-products__deck {
	margin: 0 auto;
	max-width: 720px;
	font-size: 1.0625rem;
	line-height: 1.6;
	color: #475569;
}

.about-products__row {
	padding-block: clamp(2rem, 4vw, 3rem);
}

.about-products__row:nth-child(even) {
	background: #f8f7f4;
}

.about-products__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: clamp(1.75rem, 4vw, 3.5rem);
	align-items: center;
}

.about-products__row--reverse .about-products__inner {
	direction: rtl;
}

.about-products__row--reverse .about-products__inner > * {
	direction: ltr;
}

.about-products__media {
	position: relative;
	overflow: hidden;
	border-radius: var(--usc-radius);
	background: #fff;
	box-shadow: 0 16px 40px rgba(0, 36, 26, 0.1);
}

.about-products__media img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.about-products__media:hover img {
	transform: scale(1.03);
}

.about-products__badge {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	padding: 0.4rem 0.75rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	background: var(--usc-gold);
	color: #16192b;
	border-radius: var(--usc-radius);
}

.about-products__copy {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.about-products__name {
	margin: 0;
	font-size: clamp(1.375rem, 2.5vw, 2rem);
	font-weight: 800;
	line-height: 1.15;
	color: #16192b;
}

.about-products__text {
	margin: 0;
	font-size: 1rem;
	line-height: 1.6;
	color: #475569;
}

.about-products__text + .about-products__text {
	margin-top: 0.75rem;
}

.about-products__list {
	margin: 0 0 1rem;
	padding: 0;
	list-style: none;
}

.about-products__list li {
	position: relative;
	padding: 0.35rem 0 0.35rem 1.125rem;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: #16192b;
}

.about-products__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.75em;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #044331;
}

.about-products__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.about-products__stats li {
	padding: 0.4rem 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	background: rgba(4, 67, 49, 0.08);
	color: #044331;
	border-radius: var(--usc-radius);
}

.landing-page--about .about-products + .landing-trust,
.landing-page--about .about-products ~ .landing-trust {
	border-top: 0;
}

.landing-hero--contact {
	min-height: clamp(280px, 40vh, 420px);
}

.landing-hero--contact .landing-hero__scrim--contact {
	background: linear-gradient(180deg, rgba(0, 36, 26, 0.78) 0%, rgba(0, 36, 26, 0.5) 100%);
}

.contact-page {
	padding-block: var(--usc-section-y);
	padding-inline: 0;
	background: #fff;
}

.contact-page__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: start;
}

.contact-page__form-head {
	margin-bottom: 1.25rem;
}

.contact-page__form-title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 800;
	line-height: 1.15;
	color: #16192b;
}

.contact-page__form-kicker {
	display: block;
	margin-top: 0.35rem;
	font-size: clamp(1.125rem, 2vw, 1.375rem);
	font-weight: 600;
	color: #044331;
}

.contact-page__form-desc {
	margin: 0;
	font-size: 1rem;
	line-height: 1.55;
	color: #475569;
}

.contact-page__form {
	min-height: 600px;
	padding: 1rem;
	background: #f8f7f4;
	border: 1px solid rgba(22, 25, 43, 0.08);
	border-radius: var(--usc-radius);
}

.contact-page__form .zoho-form-frame {
	display: block;
	min-height: 580px;
}

.contact-page__info {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	padding: clamp(1.5rem, 3vw, 2rem);
	background: #044331;
	color: #fff;
	border-radius: var(--usc-radius);
}

.contact-page__block + .contact-page__block {
	padding-top: 0.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-page__block-title {
	margin: 0 0 0.55rem;
	font-size: 1.05rem;
	font-weight: 750;
	letter-spacing: 0;
	text-transform: none;
	line-height: 1.3;
	color: #fff;
}

.contact-page__block-line,
.contact-page__block-text {
	margin: 0 0 0.4rem;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.92);
}

.contact-page__block-text a,
.contact-page__block-line a {
	color: var(--usc-gold);
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px solid rgba(var(--usc-gold-rgb), 0.35);
}

.contact-page__block-text a:hover,
.contact-page__block-line a:hover {
	color: var(--usc-gold-hover);
}

.contact-page__phone {
	color: var(--usc-gold);
	font-size: 1.05rem;
	font-weight: 700;
	text-decoration: none;
	border-bottom: none;
}

.contact-page__phone:hover {
	color: var(--usc-gold-hover);
}

.contact-page__info-rich {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.92);
}

.contact-page__info-rich b,
.contact-page__info-rich strong {
	display: block;
	margin: 1rem 0 0.35rem;
	font-size: 1.05rem;
	font-weight: 750;
	letter-spacing: 0;
	text-transform: none;
	color: #fff;
}

.contact-page__info-rich b:first-child,
.contact-page__info-rich strong:first-child {
	margin-top: 0;
}

.contact-page__info-rich a {
	color: var(--usc-gold);
}

.contact-page__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 0.25rem;
	padding-top: 1.15rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-page__actions a.home-v6__pill {
	background: var(--usc-gold);
	color: #16192b;
}

.contact-page__actions a.home-v6__pill:hover {
	background: var(--usc-gold-hover);
	color: #16192b;
}

.contact-page__actions a.home-v6__pill--outline,
.contact-page__actions a.contact-page__pill-outline {
	background: transparent;
	color: #fff;
	box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.9);
}

.contact-page__actions a.home-v6__pill--outline:hover,
.contact-page__actions a.contact-page__pill-outline:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.contact-trust {
	border-top: 1px solid rgba(22, 25, 43, 0.06);
}

.landing-hero--customers {
	min-height: clamp(280px, 40vh, 420px);
}

.landing-hero--customers .landing-hero__scrim--customers {
	background: linear-gradient(180deg, rgba(0, 36, 26, 0.78) 0%, rgba(0, 36, 26, 0.5) 100%);
}

.customers-page--collage {
	padding-block: clamp(3rem, 7vw, 5.5rem);
	background:
		radial-gradient(ellipse 70% 50% at 10% 0%, rgba(4, 67, 49, 0.06), transparent 55%),
		radial-gradient(ellipse 50% 40% at 90% 20%, rgba(230, 168, 23, 0.08), transparent 50%),
		linear-gradient(180deg, #f7f4ef 0%, #fff 42%, #faf8f4 100%);
}

.customers-page__head {
	margin-bottom: clamp(2rem, 4vw, 3rem);
	max-width: min(34rem, 92vw);
}

.customers-page__main {
	min-width: 0;
}

.customers-page__collage {
	display: grid;
	grid-template-columns: repeat(12, minmax(0, 1fr));
	grid-auto-rows: minmax(0, auto);
	grid-auto-flow: dense;
	gap: clamp(0.55rem, 1.2vw, 1rem);
}

.customers-page__shot {
	position: relative;
	display: flex;
	flex-direction: column;
	grid-column: span 4;
	margin: 0;
	isolation: isolate;
	background: transparent;
}

.customers-page__shot-media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	background: #e8e4dc;
}

.customers-page__shot.is-hero {
	grid-column: span 8;
}

.customers-page__shot.is-hero .customers-page__shot-media {
	aspect-ratio: 3 / 2;
}

.customers-page__shot.is-tall {
	grid-column: span 5;
}

.customers-page__shot.is-tall .customers-page__shot-media {
	aspect-ratio: 4 / 3;
}

.customers-page__shot.is-wide {
	grid-column: span 8;
}

.customers-page__shot.is-wide .customers-page__shot-media {
	aspect-ratio: 16 / 9;
}

.customers-page__shot img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transform: scale(1.01);
	transition: transform 420ms ease;
}

.customers-page__shot:hover img {
	transform: scale(1.04);
}

.customers-page__shot-style {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	padding: clamp(0.65rem, 2vw, 1rem);
	text-decoration: none;
	color: #fff;
	background: linear-gradient(
		to top left,
		rgba(4, 67, 49, 0.45) 0%,
		rgba(4, 67, 49, 0) 55%
	);
	opacity: 0;
	transition: opacity 280ms ease;
}

.customers-page__shot-style:link,
.customers-page__shot-style:visited,
.customers-page__shot-style:hover,
.customers-page__shot-style:focus {
	color: #fff;
	text-decoration: none;
}

.customers-page__shot-style:focus-visible {
	opacity: 1;
	outline: 3px solid var(--usc-gold);
	outline-offset: -3px;
}

.customers-page__shot.has-style:hover .customers-page__shot-style,
.customers-page__shot.has-style:focus-within .customers-page__shot-style {
	opacity: 1;
}

.customers-page__shot-style-panel {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.2rem;
	max-width: min(100%, 14rem);
	padding: 0.7rem 0.85rem;
	text-align: right;
	background: #044331;
	border-radius: var(--usc-radius);
	box-shadow: 0 8px 24px rgba(4, 67, 49, 0.35);
}

.customers-page__shot-style-kicker {
	font-size: clamp(0.7rem, 1.4vw, 0.8125rem);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #f5d078;
}

.customers-page__shot-style-name {
	font-size: clamp(1.35rem, 3.2vw, 2rem);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.03em;
	color: #fff;
	text-wrap: balance;
}

.customers-page__tagcloud {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: center;
	gap: 0.35rem 0.85rem;
	max-width: 52rem;
	margin: 0 auto clamp(1.75rem, 3.5vw, 2.5rem);
	text-align: center;
}

.customers-page__tag {
	color: #64748b;
	font-size: calc(0.8125rem + (var(--tag-weight, 0.4) * 1.15rem));
	font-weight: calc(500 + (var(--tag-weight, 0.4) * 250));
	letter-spacing: 0.01em;
	line-height: 1.35;
	text-decoration: none;
	transition: color 0.15s ease;
}

.customers-page__tag:hover {
	color: #044331;
}

.customers-page__tag.is-active {
	color: #044331;
	text-decoration: underline;
	text-underline-offset: 0.2em;
}

.customers-page__stream {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.customers-page__more-wrap {
	display: flex;
	justify-content: center;
	padding-top: 0.25rem;
}

.customers-page__more {
	display: inline-flex;
	align-items: center;
	padding: 0.35rem 0.15rem;
	border: 0;
	border-bottom: 1px solid #94a3b8;
	border-radius: 0;
	background: transparent;
	color: #64748b;
	font: inherit;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: color 160ms ease, border-color 160ms ease;
}

.customers-page__more:hover:not(:disabled) {
	color: #044331;
	border-bottom-color: #044331;
}

.customers-page__more:disabled {
	opacity: 0.55;
	cursor: wait;
}

.customers-page__empty {
	margin: 0;
	color: #64748b;
}

@media (max-width: 960px) {
	.customers-page__shot,
	.customers-page__shot.is-hero,
	.customers-page__shot.is-tall,
	.customers-page__shot.is-wide {
		grid-column: span 6;
		grid-row: span 1;
	}

	.customers-page__shot .customers-page__shot-media,
	.customers-page__shot.is-hero .customers-page__shot-media,
	.customers-page__shot.is-tall .customers-page__shot-media,
	.customers-page__shot.is-wide .customers-page__shot-media {
		aspect-ratio: 4 / 3;
	}

	.customers-page__shot.is-hero,
	.customers-page__shot.is-wide {
		grid-column: span 12;
	}

	.customers-page__shot.is-hero .customers-page__shot-media,
	.customers-page__shot.is-wide .customers-page__shot-media {
		aspect-ratio: 16 / 9;
	}
}

@media (max-width: 640px) {
	.customers-page__collage {
		gap: 0.5rem;
	}

	.customers-page__shot,
	.customers-page__shot.is-hero,
	.customers-page__shot.is-tall,
	.customers-page__shot.is-wide {
		grid-column: span 12;
	}

	.customers-page__shot .customers-page__shot-media,
	.customers-page__shot.is-hero .customers-page__shot-media,
	.customers-page__shot.is-tall .customers-page__shot-media,
	.customers-page__shot.is-wide .customers-page__shot-media {
		aspect-ratio: 4 / 3;
	}

	.customers-page__shot.is-hero .customers-page__shot-media,
	.customers-page__shot.is-wide .customers-page__shot-media {
		aspect-ratio: 16 / 9;
	}
}

.landing-hero--faq {
	min-height: clamp(280px, 40vh, 420px);
}

.landing-hero--faq .landing-hero__scrim--faq {
	background: linear-gradient(180deg, rgba(0, 36, 26, 0.78) 0%, rgba(0, 36, 26, 0.5) 100%);
}

.faq-page {
	padding-block: var(--usc-section-y);
	padding-inline: 0;
	background: #fff;
}

.faq-page__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
	gap: clamp(2rem, 4vw, 3rem);
	align-items: start;
}

.faq-page__title {
	margin: 0 0 1.5rem;
	font-size: clamp(1.375rem, 2.5vw, 1.75rem);
	font-weight: 800;
	color: #16192b;
	line-height: 1.15;
}

.faq-accordion {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.faq-item {
	border: 1px solid rgba(22, 25, 43, 0.1);
	border-radius: var(--usc-radius);
	background: #f8f7f4;
	overflow: hidden;
}

.faq-item[open] {
	background: #fff;
	border-color: rgba(4, 67, 49, 0.22);
	box-shadow: 0 8px 24px rgba(0, 36, 26, 0.06);
}

.faq-item__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.125rem;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
	color: #16192b;
	cursor: pointer;
	list-style: none;
}

.faq-item__question::-webkit-details-marker {
	display: none;
}

.faq-item__icon {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 12px;
	height: 2px;
	background: #044331;
	transform: translate(-50%, -50%);
	transition: transform 0.2s ease;
}

.faq-item__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__icon::after {
	transform: translate(-50%, -50%) rotate(0deg);
	opacity: 0;
}

.faq-item__answer {
	padding: 0 1.125rem 1.125rem;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #475569;
}

.faq-item__answer p {
	margin: 0 0 0.75rem;
}

.faq-item__answer p:last-child {
	margin-bottom: 0;
}

.faq-item__answer ul,
.faq-item__answer ol {
	margin: 0.5rem 0 0.75rem;
	padding-left: 1.25rem;
}

.faq-item__answer li {
	margin: 0.25rem 0;
}

.faq-item__answer a {
	color: #044331;
	font-weight: 600;
}

.faq-item__answer a:hover {
	color: #0a6b4f;
}

.faq-page__aside {
	position: sticky;
	top: calc(var(--usc-header-height) + 1.5rem);
	padding: clamp(1.5rem, 3vw, 2rem);
	background: #044331;
	color: #fff;
	border-radius: var(--usc-radius);
}

.faq-page__aside-title {
	margin: 0 0 0.75rem;
	font-size: 1.25rem;
	font-weight: 800;
	line-height: 1.2;
	color: #fff;
}

.faq-page__aside-note {
	margin: 0 0 1.25rem;
	font-size: 0.9375rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.9);
}

.faq-page__aside-note a {
	color: var(--usc-gold);
	font-weight: 600;
	text-decoration: none;
}

.faq-page__aside-note a:hover {
	color: var(--usc-gold-hover);
}

.faq-page__aside-actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.faq-trust {
	border-top: 1px solid rgba(22, 25, 43, 0.06);
}

.landing-steps--about {
	padding-block: var(--usc-section-y);
	padding-inline: 0;
}

.landing-steps--about .landing-steps__head {
	text-align: center;
	margin-bottom: 2rem;
}

.landing-steps--about .landing-steps__title {
	margin: 0 0 0.75rem;
}

.landing-steps--about .landing-steps__intro {
	margin: 0 auto;
	max-width: 640px;
	font-size: 1rem;
	color: #475569;
	line-height: 1.55;
	text-align: center;
}

.landing-steps--about .landing-steps__list {
	grid-template-columns: repeat(4, 1fr);
}

.landing-steps__actions {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
}

.landing-page--about .landing-trust {
	border-top: 1px solid rgba(22, 25, 43, 0.08);
}

@media (max-width: 900px) {

	.landing-facts__inner,
	.landing-steps__list,
	.landing-pillars__inner {
		grid-template-columns: 1fr;
	}

	.landing-facts--about .landing-facts__grid {
		grid-template-columns: 1fr;
	}

	.landing-steps--about .landing-steps__list {
		grid-template-columns: 1fr;
	}

	.landing-showcase__inner {
		grid-template-columns: 1fr;
	}

	.home-band__inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.about-products__inner,
	.about-products__row--reverse .about-products__inner {
		grid-template-columns: 1fr;
		direction: ltr;
	}

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

	.faq-page__inner {
		grid-template-columns: 1fr;
	}

	.faq-page__aside {
		position: static;
	}
}

@media (max-width: 640px) {

	.landing-hero__word {
		display: inline;
	}

	.landing-hero__actions {
		flex-direction: column;
		align-items: stretch;
	}
}

.shop-page {
	background: #fff;
}

.shop-breadcrumbs {
	margin: 0 0 1rem;
}

.shop-breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0;
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0.8125rem;
	line-height: 1.4;
}

.shop-breadcrumbs__item {
	display: inline-flex;
	align-items: center;
	color: #64748b;
}

.shop-breadcrumbs__item:not(:last-child)::after {
	content: "/";
	margin: 0 0.35rem;
	color: #94a3b8;
}

.shop-breadcrumbs__item a {
	color: #475569;
	text-decoration: none;
	transition: color 0.15s ease;
}

.shop-breadcrumbs__item a:hover {
	color: #044331;
}

.shop-breadcrumbs__item--current span {
	color: #044331;
	font-weight: 700;
}

.shop-page__hero {
	padding: clamp(1.5rem, 3vw, 2.5rem) 1.5rem 1.5rem;
	background: linear-gradient(180deg, #f8f7f4 0%, #fff 100%);
	border-bottom: 1px solid rgba(22, 25, 43, 0.06);
}

.shop-page__hero-inner {
	max-width: var(--usc-container-wide);
	margin: 0 auto;
}

.shop-page__eyebrow {
	margin: 0 0 0.35rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #044331;
}

.shop-page__title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	line-height: 1.1;
	color: #16192b;
}

.shop-page__desc {
	margin: 0;
	max-width: 42rem;
	color: #475569;
	line-height: 1.5;
}

.shop-page__categories {
	padding: 0 1.5rem 1.25rem;
	background: #fff;
	border-bottom: 1px solid rgba(22, 25, 43, 0.06);
}

.shop-categories {
	max-width: var(--usc-container-wide);
	margin: 0 auto;
}

.shop-categories__kicker {
	margin: 0 0 0.75rem;
}

.shop-categories__back {
	font-size: 0.8125rem;
	font-weight: 700;
	color: #044331;
	text-decoration: none;
}

.shop-categories__back:hover {
	color: #0a6b4f;
}

.shop-categories__list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 10.5rem), 1fr));
	gap: 0.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.shop-categories__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.75rem;
	padding: 0.65rem 1rem;
	border: 1px solid rgba(4, 67, 49, 0.2);
	border-radius: var(--usc-radius);
	background: #fff;
	color: #044331;
	font-size: 0.875rem;
	font-weight: 700;
	text-decoration: none;
	transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.shop-categories__link:hover,
.shop-categories__link.is-active {
	border-color: #044331;
	background: #044331;
	color: #fff;
}

.shop-categories__card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	overflow: hidden;
	border: 1px solid rgba(22, 25, 43, 0.08);
	border-radius: var(--usc-radius);
	background: #f8f7f4;
	color: #16192b;
	text-decoration: none;
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.shop-categories__card:hover,
.shop-categories__card.is-active {
	border-color: rgba(4, 67, 49, 0.35);
	box-shadow: 0 12px 28px rgba(0, 36, 26, 0.08);
	transform: translateY(-1px);
}

.shop-categories__card.is-active {
	border-color: #044331;
}

.shop-categories__media {
	display: block;
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, #e8f5f0 0%, #d4ebe2 100%);
	background-size: cover;
	background-position: center;
}

.shop-categories__body {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	padding: 0.85rem 0.9rem 1rem;
}

.shop-categories__name {
	font-size: 0.9375rem;
	font-weight: 800;
	line-height: 1.2;
	color: #16192b;
}

.shop-categories__count {
	font-size: 0.75rem;
	font-weight: 600;
	color: #64748b;
}

.shop-filter-list--tree {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.shop-filter-list--children {
	margin: 0.25rem 0 0.35rem;
	padding-left: 0.85rem;
	border-left: 1px solid rgba(4, 67, 49, 0.12);
}

.shop-filter-link--child {
	font-size: 0.8125rem;
}

.site-nav__item--has-children {
	position: relative;
}

.site-nav__submenu {
	display: none;
	margin: 0;
	padding: 0.5rem 0 0;
	list-style: none;
}

.site-nav__sublink {
	display: block;
	padding: 0.45rem 0.75rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #475569;
	text-decoration: none;
	border-radius: 4px;
}

.site-nav__sublink:hover,
.site-nav__sublink:focus-visible {
	background: #f8f7f4;
	color: #044331;
}

@media (min-width: 901px) {

	.site-nav__item--has-children:hover .site-nav__submenu,
	.site-nav__item--has-children:focus-within .site-nav__submenu {
		display: block;
		position: absolute;
		top: calc(100% + 0.35rem);
		left: 0;
		z-index: 40;
		min-width: 13rem;
		padding: 0.5rem;
		border: 1px solid rgba(22, 25, 43, 0.08);
		border-radius: var(--usc-radius);
		background: #fff;
		box-shadow: 0 16px 40px rgba(22, 25, 43, 0.12);
	}

	.site-nav__item--has-children .site-nav__submenu {
		padding-top: 0.5rem;
	}
}

@media (max-width: 900px) {

	.site-nav.is-open .site-nav__item--has-children .site-nav__submenu,
	.site-nav__item--has-children.is-open .site-nav__submenu {
		display: block;
		padding-left: 0.5rem;
	}

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

.shop-page__main ul.products::before,
.shop-page__main ul.products::after {
	display: none;
	content: none;
}

.shop-product--featured {
	grid-column: span 2;
}

.shop-product__featured-card {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.75fr);
	height: 100%;
	overflow: hidden;
	border: 1px solid rgba(4, 67, 49, 0.22);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 8px 28px rgba(0, 36, 26, 0.08);
	transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.shop-product--featured:hover .shop-product__featured-card {
	border-color: rgba(4, 67, 49, 0.35);
	box-shadow: 0 12px 36px rgba(0, 36, 26, 0.12);
}

.shop-product__featured-media {
	position: relative;
	display: block;
	min-height: 100%;
	background: #f8f7f4;
	text-decoration: none;
	overflow: hidden;
}

.shop-product__featured-media > img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 220px;
	object-fit: cover;
	object-position: center top;
	transition: transform 0.4s ease;
}

.shop-product--featured:hover .shop-product__featured-media > img {
	transform: scale(1.03);
}

.shop-product__featured-swatches {
	position: absolute;
	left: 0.75rem;
	bottom: 0.75rem;
	display: flex;
	gap: 0.35rem;
	padding: 0.35rem;
	border-radius: 6px;
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(6px);
}

.shop-product__featured-swatch {
	display: block;
	width: 2rem;
	height: 2rem;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 3px;
}

.shop-product__featured-swatch img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.shop-product__featured-panel {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(1rem, 1.8vw, 1.35rem);
	background: linear-gradient(160deg, #00241a 0%, #044331 100%);
	color: #fff;
}

.shop-product__featured-eyebrow {
	margin: 0 0 0.4rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--usc-gold);
}

.shop-product__featured-title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.125rem, 1.8vw, 1.5rem);
	font-weight: 800;
	line-height: 1.15;
}

.shop-product__featured-title a {
	color: #fff;
	text-decoration: none;
}

.shop-product__featured-title a:hover {
	color: var(--usc-gold);
}

.shop-product__featured-deck {
	margin: 0 0 0.85rem;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.82);
}

.shop-product__featured-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin: 0 0 0.85rem;
}

.shop-product__featured-stats span {
	padding: 0.28rem 0.55rem;
	border: 1px solid rgba(var(--usc-gold-rgb), 0.35);
	border-radius: 999px;
	background: rgba(var(--usc-gold-rgb), 0.1);
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: var(--usc-gold);
}

.shop-product__featured-points {
	margin: 0 0 1rem;
	padding: 0;
	list-style: none;
}

.shop-product__featured-points li {
	position: relative;
	padding: 0.25rem 0 0.25rem 1rem;
	font-size: 0.8125rem;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.88);
}

.shop-product__featured-points li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.65rem;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--usc-gold);
}

.shop-product__featured-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.6rem 0.85rem;
	margin-top: auto;
}

.shop-product__featured-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.55rem 0.95rem;
	font-size: 0.8125rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.shop-product__featured-cta--primary {
	background: var(--usc-gold);
	color: #16192b;
}

.shop-product__featured-cta--primary:hover {
	background: var(--usc-gold-hover);
	color: #16192b;
}

.shop-product__featured-cta--ghost {
	padding: 0.55rem 0;
	background: transparent;
	color: rgba(255, 255, 255, 0.92);
	border-bottom: 1px solid rgba(255, 255, 255, 0.32);
	border-radius: 0;
}

.shop-product__featured-cta--ghost:hover {
	color: #fff;
	border-bottom-color: var(--usc-gold);
}

.shop-product__kicker {
	margin: 0 0 0.35rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #044331;
}

.shop-page__layout {
	display: grid;
	grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
	gap: clamp(1.25rem, 3vw, 2rem);
	max-width: var(--usc-container-wide);
	margin: 0 auto;
	padding: 1rem 1.5rem 3rem;
}

.shop-filters {
	align-self: start;
	position: sticky;
	top: 1rem;
}

.shop-page.is-filtering {
	pointer-events: none;
}

.shop-page.is-filtering .shop-page__main {
	opacity: 0.45;
	transition: opacity 0.15s ease;
}

.shop-filters__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.5rem 0.75rem;
	margin-bottom: 0.85rem;
}

.shop-filters__title {
	margin: 0;
	margin-right: auto;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	color: #121212;
}

.shop-filters__toggle {
	display: none;
	padding: 0.45rem 0.85rem;
	border: 1px solid rgba(4, 67, 49, 0.22);
	border-radius: 999px;
	background: #fff;
	color: #044331;
	font-size: 0.8125rem;
	font-weight: 700;
	cursor: pointer;
}

.shop-filters__panel {
	display: flex;
	flex-direction: column;
	gap: 1.35rem;
	padding: 1.15rem 1.15rem 1.25rem;
	border: 1px solid rgba(18, 18, 18, 0.08);
	border-radius: 12px;
	background: #f4f2ee;
}

.shop-filters__active {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 0.45rem 0.6rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid rgba(18, 18, 18, 0.08);
}

.shop-filters__active-label {
	margin: 0.2rem 0 0;
	color: #044331;
	font-size: 0.68rem;
	font-weight: 750;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.shop-filters__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.shop-filters__chip {
	display: inline-flex;
	align-items: center;
	padding: 0.28rem 0.6rem;
	border-radius: 999px;
	background: #fff;
	border: 1px solid rgba(4, 67, 49, 0.16);
	color: #044331;
	font-size: 0.78rem;
	font-weight: 650;
	line-height: 1.2;
}

.shop-filters__clear {
	color: #044331;
	font-size: 0.8125rem;
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 0.15em;
	white-space: nowrap;
}

.shop-filters__clear:hover {
	color: #0a6b4f;
}

.shop-filter-group {
	margin: 0;
	padding: 0;
	border: 0;
}

.shop-filter-group__title {
	margin: 0 0 0.7rem;
	padding: 0;
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #044331;
}

.shop-filter-type-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
}

.shop-filter-type-chip {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.32rem 0.7rem 0.32rem 0.42rem;
	border-radius: 999px;
	border: 1px solid rgba(18, 18, 18, 0.12);
	background: #fff;
	cursor: pointer;
	color: #121212;
	font-size: 0.8125rem;
	font-weight: 650;
	line-height: 1.2;
	transition: border-color 140ms ease, background 140ms ease, color 140ms ease;
}

.shop-filter-type-chip input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.shop-filter-type-chip .landing-steps__pick-sweater {
	display: block;
	width: 16px;
	height: auto;
	overflow: visible;
	flex-shrink: 0;
}

.shop-filter-type-chip--ready {
	--step-sweater-body: #044331;
	--step-sweater-shadow: #022820;
	--step-sweater-stripe: #f5d078;
	--step-sweater-neck: #f8fafc;
}

.shop-filter-type-chip--custom {
	--step-sweater-body: #b42318;
	--step-sweater-shadow: #7f1a12;
	--step-sweater-stripe: #f5d078;
	--step-sweater-neck: #f8fafc;
}

.shop-filter-type-chip .landing-steps__pick-sweater-body {
	fill: var(--step-sweater-body, #044331);
}

.shop-filter-type-chip .landing-steps__pick-sweater-shadow {
	fill: var(--step-sweater-shadow, #022820);
	opacity: 0.35;
	transform: translateY(0.4px);
}

.shop-filter-type-chip .landing-steps__pick-sweater-stripe {
	fill: var(--step-sweater-stripe, #f5d078);
}

.shop-filter-type-chip .landing-steps__pick-sweater-neck {
	fill: var(--step-sweater-neck, #f8fafc);
}

.shop-filter-type-chip .landing-steps__pick-sweater-rib {
	fill: none;
	stroke: rgba(255, 255, 255, 0.28);
	stroke-width: 0.55;
	stroke-linecap: round;
}

.shop-filter-type-chip:not(:has(input:checked)) .landing-steps__pick-sweater {
	opacity: 0.45;
	filter: grayscale(0.45) saturate(0.75);
}

.shop-filter-type-chip:has(input:checked) {
	border-color: #044331;
	background: #eaf3ef;
	color: #044331;
}

.shop-filter-type-chip:has(input:checked) .landing-steps__pick-sweater {
	opacity: 1;
	filter: none;
}

.shop-filter-type-any {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-bottom: 0.55rem;
	cursor: pointer;
	color: #646464;
	font-size: 0.78rem;
	font-weight: 650;
}

.shop-filter-type-any input {
	margin: 0;
	accent-color: #044331;
}

.shop-filter-type-any:has(input:checked) {
	color: #044331;
}

.shop-filter-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

.shop-filter-link,
.shop-filter-check {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.42rem 0.5rem;
	margin: 0 -0.5rem;
	border-radius: 8px;
	color: #121212;
	font-size: 0.875rem;
	text-decoration: none;
	cursor: pointer;
	transition: background 140ms ease, color 140ms ease;
}

.shop-filter-link:hover,
.shop-filter-check:hover {
	background: rgba(255, 255, 255, 0.7);
}

.shop-filter-link.is-active,
.shop-filter-check:has(input:checked) {
	color: #044331;
	font-weight: 700;
	background: #fff;
}

.shop-filter-check input {
	margin: 0;
	accent-color: #044331;
}

.shop-filter-check__label {
	flex: 1;
}

.shop-filter-count {
	display: inline-flex;
	min-width: 1.5rem;
	justify-content: center;
	padding: 0.125rem 0.375rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.85);
	color: #646464;
	font-size: 0.6875rem;
	font-weight: 700;
}

.shop-filter-link.is-active .shop-filter-count,
.shop-filter-check:has(input:checked) .shop-filter-count {
	background: rgba(4, 67, 49, 0.1);
	color: #044331;
}

.shop-page__main .woocommerce-result-count,
.shop-page__main .woocommerce-ordering {
	margin: 0 0 1.25rem;
	font-size: 0.875rem;
	color: #646464;
}

.shop-page__toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 1rem;
	margin-bottom: 1.25rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(22, 25, 43, 0.08);
}

.shop-page__toolbar .woocommerce-result-count,
.shop-page__toolbar .woocommerce-ordering {
	margin: 0;
}

.shop-page__toolbar .woocommerce-ordering select {
	padding: 0.5rem 2rem 0.5rem 0.75rem;
	border: 1px solid rgba(22, 25, 43, 0.12);
	border-radius: 4px;
	background: #fff;
	color: #16192b;
	font-size: 0.875rem;
}

.shop-page__main ul.products {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
	margin: 0 0 2rem;
	padding: 0;
	list-style: none;
}

.shop-product {
	margin: 0 !important;
	width: auto !important;
}

.shop-product__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid rgba(22, 25, 43, 0.08);
	border-radius: 8px;
	background: #fff;
	overflow: hidden;
	text-decoration: none;
	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.shop-product__link:hover {
	box-shadow: 0 8px 28px rgba(0, 36, 26, 0.08);
}

.shop-product__media {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	background: #f8f7f4;
}

.shop-product__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.shop-product__link:hover .shop-product__media img {
	transform: scale(1.04);
}

.shop-product__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1rem;
}

.shop-product__title {
	margin: 0 0 0.35rem;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.25;
	color: #16192b;
}

.shop-product__excerpt {
	margin: 0 0 0.875rem;
	flex: 1;
	font-size: 0.8125rem;
	color: #475569;
	line-height: 1.45;
}

.shop-product__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.shop-product__tag {
	display: inline-flex;
	padding: 0.25rem 0.5rem;
	background: #f8f7f4;
	color: #16192b;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border-radius: 3px;
}

.shop-product__tag--lead {
	background: #044331;
	color: #fff;
}

@media (max-width: 960px) {

	.shop-page__layout {
		grid-template-columns: 1fr;
	}

	.shop-filters {
		position: static;
	}

	.shop-filters__toggle {
		display: inline-flex;
	}

	.shop-filters__panel {
		display: none;
	}

	.shop-filters__panel.is-open {
		display: flex;
	}

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

	.shop-product--featured {
		grid-column: span 2;
	}

	.shop-product__featured-card {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {

	.shop-page__main ul.products {
		grid-template-columns: 1fr;
	}

	.shop-product--featured {
		grid-column: span 1;
	}

	.shop-product__featured-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.shop-product__featured-cta--primary {
		text-align: center;
	}
}

.site-footer {
	margin-block: 0;
	background: #00241a;
	color: #d9e2de;
}

.site-footer__inner {
	max-width: var(--usc-container);
	margin: 0 auto;
	padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2rem);
}

.site-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
	gap: clamp(2rem, 4vw, 3rem);
	padding-bottom: clamp(2rem, 4vw, 2.75rem);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__logo-link {
	display: inline-block;
	line-height: 0;
	margin-bottom: 1rem;
}

.site-footer__logo {
	display: block;
	height: 40px;
	width: auto;
	max-width: 180px;
	filter: brightness(0) invert(1);
}

.site-footer__tagline {
	margin: 0 0 1.25rem;
	max-width: 22rem;
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #d9e2de;
}

.site-footer__address {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	margin: 0 0 1rem;
	font-style: normal;
	font-size: 0.875rem;
	line-height: 1.55;
	color: rgba(217, 226, 222, 0.85);
}

.site-footer__phone {
	display: inline-block;
	font-size: 1rem;
	font-weight: 700;
	color: var(--usc-gold);
	text-decoration: none;
}

.site-footer__phone:hover {
	color: #fff;
}

.site-footer__heading {
	margin: 0 0 1rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--usc-gold);
}

.site-footer__links,
.site-footer__social {
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__links li + li {
	margin-top: 0.55rem;
}

.site-footer__links a {
	color: #fff;
	font-size: 0.9375rem;
	font-weight: 500;
	text-decoration: none;
	transition: color 0.15s ease;
}

.site-footer__links a:hover {
	color: var(--usc-gold);
}

.site-footer__social {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem;
	margin-bottom: 1.25rem;
}

.site-footer__social li {
	margin: 0;
	line-height: 0;
}

.site-footer__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 50%;
	color: #fff;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.site-footer__social svg {
	display: block;
	width: 1.25rem;
	height: 1.25rem;
}

.site-footer__social a:hover {
	background: var(--usc-gold);
	border-color: var(--usc-gold);
	color: #16192b;
}

.site-footer__cta {
	display: inline-flex;
	align-items: center;
	padding: 0.75rem 1.25rem;
	background: var(--usc-gold);
	color: #16192b;
	font-size: 0.875rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: var(--usc-radius);
	transition: background 0.15s ease, color 0.15s ease;
}

.site-footer__cta:hover {
	background: #fff;
	color: #044331;
}

.site-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem 1.5rem;
	padding-top: 1.25rem;
}

.site-footer__copy,
.site-footer__legal {
	margin: 0;
	font-size: 0.8125rem;
	color: rgba(217, 226, 222, 0.72);
}

.site-footer__copy a {
	color: #fff;
	text-decoration: none;
}

.site-footer__copy a:hover {
	color: var(--usc-gold);
}

@media (max-width: 900px) {

	.site-footer__grid {
		grid-template-columns: 1fr 1fr;
	}

	.site-footer__brand {
		grid-column: 1 / -1;
	}
}

@media (max-width: 560px) {

	.site-footer__grid {
		grid-template-columns: 1fr;
	}

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

.quote-modal {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
}

.quote-modal[hidden] {
	display: none;
}

.quote-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 36, 26, 0.72);
	backdrop-filter: blur(4px);
}

.quote-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 520px);
	max-height: min(92vh, 820px);
	overflow: auto;
	padding: clamp(1.25rem, 3vw, 1.75rem);
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.quote-modal--wide .quote-modal__dialog {
	width: min(100%, 920px);
	max-height: min(94vh, 960px);
}

.quote-modal__close {
	position: absolute;
	top: 0.875rem;
	right: 0.875rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #f8f7f4;
	color: #16192b;
	cursor: pointer;
	transition: background 0.15s ease;
}

.quote-modal__close:hover {
	background: #f3efe6;
}

.quote-modal__title {
	margin: 0 2rem 0.5rem 0;
	font-size: clamp(1.25rem, 3vw, 1.5rem);
	font-weight: 800;
	color: #16192b;
	line-height: 1.15;
}

.quote-modal__lede {
	margin: 0 0 1rem;
	font-size: 0.9375rem;
	color: #475569;
	line-height: 1.5;
}

.quote-modal__form {
	min-height: 200px;
}

.quote-modal__form iframe {
	display: block;
	width: 100% !important;
	border: none;
}

body.quote-modal-open {
	overflow: hidden;
}

.rtg-product__hero {
	padding: clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 5vw, 4rem) 0;
	background: linear-gradient(180deg, #f8f7f4 0%, #fff 100%);
}

.rtg-product .rtg-marketing--facts {
	margin-top: 0;
}

.rtg-product .rtg-marketing--steps {
	padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

.rtg-product__hero-inner,
.rtg-product__inner {
	max-width: var(--usc-container);
	margin: 0 auto;
}

.rtg-product__inner {
	padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 5vw, 4rem) clamp(3rem, 6vw, 4rem);
}

.rtg-product__layout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: start;
}

.rtg-product__gallery .images {
	margin: 0;
}

.rtg-product__gallery .images,
.rtg-product__gallery .woocommerce-product-gallery {
	width: 100%;
	max-width: 100%;
}

.rtg-product__gallery .woocommerce-product-gallery {
	margin: 0;
	opacity: 1 !important;
}

.rtg-gallery-thumbs {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	width: 100%;
	max-width: 100%;
	margin-top: 1rem;
}

.rtg-gallery-thumbs--nav-hidden .rtg-gallery-thumbs__btn {
	display: none;
}

.rtg-gallery-thumbs__track {
	flex: 1 1 0;
	width: 0;
	min-width: 0;
	overflow: hidden;
	-webkit-mask-image:
 linear-gradient(to right, transparent, #000 10px, #000 calc(100% - 10px), transparent);
	mask-image:
 linear-gradient(to right, transparent, #000 10px, #000 calc(100% - 10px), transparent);
}

.rtg-gallery-thumbs--nav-hidden .rtg-gallery-thumbs__track {
	-webkit-mask-image: none;
	mask-image: none;
}

.rtg-gallery-thumbs__list {
	display: flex !important;
	flex-wrap: nowrap;
	float: none !important;
	margin: 0 !important;
	padding: 0.2rem 0 !important;
	list-style: none;
	transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: transform;
}

.rtg-gallery-thumbs__list li {
	flex: 0 0 auto;
	float: none !important;
	clear: none !important;
	margin: 0 !important;
	padding: 0 0.25rem;
	list-style: none;
	box-sizing: border-box;
}

.rtg-gallery-thumbs__list li img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 6px;
	cursor: pointer;
	opacity: 0.5;
	border: 2px solid rgba(22, 25, 43, 0.08);
	box-shadow: 0 2px 6px rgba(22, 25, 43, 0.06);
	transition:
		opacity 0.2s ease,
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}

.rtg-gallery-thumbs__list li img:hover {
	opacity: 0.85;
	border-color: #044331;
	box-shadow: 0 4px 12px rgba(4, 67, 49, 0.16);
	transform: scale(1.03);
}

.rtg-gallery-thumbs__list li img.flex-active {
	opacity: 1;
	border-color: var(--usc-gold);
	box-shadow: 0 0 0 3px rgba(var(--usc-gold-rgb), 0.32), 0 6px 16px rgba(4, 67, 49, 0.18);
	transform: scale(1.05);
}

.rtg-gallery-thumbs__btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	border: 2px solid #044331;
	border-radius: 50%;
	background: #044331;
	color: #fff;
	cursor: pointer;
	box-shadow: 0 4px 14px rgba(4, 67, 49, 0.24);
	transition:
		background 0.18s ease,
		border-color 0.18s ease,
		color 0.18s ease,
		transform 0.18s ease,
		box-shadow 0.18s ease;
}

.rtg-gallery-thumbs__btn:hover:not(:disabled) {
	background: var(--usc-gold);
	border-color: var(--usc-gold);
	color: #16192b;
	transform: scale(1.06);
	box-shadow: 0 6px 18px rgba(var(--usc-gold-rgb), 0.35);
}

.rtg-gallery-thumbs__btn:disabled {
	opacity: 0.28;
	cursor: default;
	box-shadow: none;
}

.rtg-product__gallery .woocommerce-product-gallery__image img {
	border-radius: 6px;
	box-shadow: 0 8px 28px rgba(22, 25, 43, 0.1);
}

.rtg-product__eyebrow {
	margin: 0 0 0.5rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #b8860b;
}

.rtg-product__title {
	margin: 0 0 1rem;
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #16192b;
}

.rtg-product__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
}

.rtg-product__meta span {
	padding: 0.4rem 0.75rem;
	background: var(--usc-gold);
	color: #16192b;
	border-radius: var(--usc-radius);
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.rtg-product__excerpt {
	margin-bottom: 1.25rem;
	font-size: 1.0625rem;
	line-height: 1.65;
	color: #475569;
}

.rtg-product__excerpt p {
	margin: 0;
}

.rtg-product__video {
	margin: 0 0 1rem;
	border-radius: 4px;
	overflow: hidden;
}

.rtg-product__video iframe {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	height: auto;
	border: 0;
}

.rtg-product__steps {
	margin: 0 0 1.5rem;
	padding: 0;
	list-style: none;
	counter-reset: rtg-step;
}

.rtg-product__steps li {
	position: relative;
	margin: 0 0 0.65rem;
	padding-left: 2rem;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: #16192b;
}

.rtg-product__steps li::before {
	counter-increment: rtg-step;
	content: counter(rtg-step);
	position: absolute;
	left: 0;
	top: 0.05rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.35rem;
	height: 1.35rem;
	border-radius: 50%;
	background: #044331;
	color: #fff;
	font-size: 0.6875rem;
	font-weight: 700;
}

.rtg-product__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.85rem;
}

.rtg-product__cta {
	display: inline-flex;
	align-items: center;
	padding: 0.85rem 1.35rem;
	border: none;
	border-radius: var(--usc-radius);
	background: #044331;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.rtg-product__cta:hover {
	background: var(--usc-gold);
	color: #16192b;
}

.rtg-product__link {
	font-size: 0.9375rem;
	font-weight: 700;
	color: #044331;
	text-decoration: none;
	border-bottom: 1px solid rgba(4, 67, 49, 0.3);
}

.rtg-product__link:hover {
	color: #00241a;
	border-bottom-color: #00241a;
}

.rtg-product__details {
	margin-top: clamp(2rem, 4vw, 3rem);
	padding-top: clamp(2rem, 4vw, 3rem);
	border-top: 1px solid rgba(22, 25, 43, 0.08);
}

.rtg-product__details-title {
	margin: 0 0 1rem;
	font-size: 1.25rem;
	font-weight: 700;
	color: #16192b;
}

.rtg-product__details-body {
	font-size: 1rem;
	line-height: 1.65;
	color: #475569;
}

.rtg-product__program {
	margin-top: clamp(2rem, 4vw, 3rem);
	padding: clamp(1.5rem, 3vw, 2rem);
	background: #f8f7f4;
	border: 1px solid rgba(22, 25, 43, 0.08);
	border-radius: var(--usc-radius);
}

.rtg-product__program-text {
	margin: 0 0 1rem;
	font-size: 1rem;
	line-height: 1.6;
	color: #16192b;
}

.rtg-product__program-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.5rem;
}

.rtg-product__program-links a {
	font-size: 0.9375rem;
	font-weight: 700;
	color: #044331;
	text-decoration: none;
	border-bottom: 1px solid rgba(4, 67, 49, 0.3);
}

.rtg-product__program-links a:hover {
	color: #00241a;
}

.product-page__inner {
	max-width: var(--usc-container);
	margin: 0 auto;
	padding: clamp(1.5rem, 3vw, 2.5rem) 1.5rem 3rem;
}

@media (max-width: 900px) {

	.rtg-product__layout {
		grid-template-columns: 1fr;
	}
}

.landing-page--case-studies {
	--cs-serif: georgia, "Times New Roman", times, serif;
	background: #fff;
	color: #16192b;
}

.landing-page--case-studies h1,
.landing-page--case-studies h2,
.landing-page--case-studies h3 {
	color: inherit;
}

.cs-masthead {
	position: relative;
	padding: clamp(3.5rem, 8vw, 6.5rem) 1.5rem clamp(2.5rem, 5vw, 4rem);
	background: #00241a;
	color: #fff;
	overflow: hidden;
}

.cs-masthead::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 85% 15%, rgba(var(--usc-gold-rgb), 0.14), transparent 42%),
		radial-gradient(circle at 10% 90%, rgba(74, 222, 128, 0.08), transparent 35%);
	pointer-events: none;
}

.cs-masthead__inner {
	position: relative;
	max-width: var(--usc-container);
	margin: 0 auto;
}

.cs-masthead__kicker {
	margin: 0 0 1.25rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--usc-gold);
}

.cs-masthead__title {
	margin: 0;
	font-family: var(--cs-serif);
	font-size: clamp(2.75rem, 7vw, 5.5rem);
	font-weight: 400;
	line-height: 0.95;
	letter-spacing: -0.03em;
	color: #fff;
}

.cs-masthead__line {
	display: block;
	color: #fff;
}

.cs-masthead__line--accent {
	color: var(--usc-gold);
	font-style: italic;
}

.cs-masthead__deck {
	max-width: 38rem;
	margin: 1.75rem 0 0;
	font-size: clamp(1.0625rem, 2vw, 1.25rem);
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.82);
}

.cs-masthead__rule {
	height: 3px;
	background: linear-gradient(90deg, var(--usc-gold) 0%, #044331 45%, transparent 100%);
}

.cs-lede {
	padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
	border-bottom: 1px solid rgba(22, 25, 43, 0.08);
}

.cs-lede__inner {
	display: grid;
	grid-template-columns: minmax(120px, 180px) minmax(0, 1fr);
	gap: clamp(1.5rem, 4vw, 3rem);
	max-width: 920px;
	margin: 0 auto;
}

.cs-lede__label {
	margin: 0;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #044331;
}

.cs-lede__text {
	margin: 0 0 1.25rem;
	font-family: var(--cs-serif);
	font-size: clamp(1.125rem, 2.2vw, 1.4375rem);
	line-height: 1.75;
	color: #16192b;
}

.cs-lede__text--secondary {
	font-family: inherit;
	font-size: 1rem;
	line-height: 1.7;
	color: #475569;
}

.cs-metrics {
	padding: 0 1.5rem;
	background: #f8f7f4;
	border-bottom: 1px solid rgba(22, 25, 43, 0.06);
}

.cs-metrics__inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
	max-width: var(--usc-container);
	margin: 0 auto;
	padding: 1.35rem 0;
}

.cs-metrics__item {
	text-align: center;
}

.cs-metrics__value {
	display: block;
	font-size: clamp(1.25rem, 2.5vw, 1.625rem);
	font-weight: 800;
	color: #044331;
	line-height: 1.1;
}

.cs-metrics__label {
	display: block;
	margin-top: 0.25rem;
	font-size: 0.6875rem;
	font-weight: 600;
	color: #475569;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.cs-stories {
	padding: clamp(3rem, 6vw, 5rem) 1.5rem;
}

.cs-stories__inner {
	max-width: var(--usc-container);
	margin: 0 auto;
}

.cs-stories__header {
	max-width: 640px;
	margin-bottom: clamp(2rem, 4vw, 3rem);
	padding-bottom: 1.5rem;
	border-bottom: 1px solid rgba(22, 25, 43, 0.1);
}

.cs-stories__index {
	margin: 0 0 0.75rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #044331;
}

.cs-stories__title {
	margin: 0 0 0.75rem;
	font-family: var(--cs-serif);
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	font-weight: 400;
	line-height: 1.1;
	color: #16192b;
}

.cs-stories__sub {
	margin: 0;
	font-size: 1rem;
	line-height: 1.65;
	color: #475569;
}

.cs-stories__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.cs-stories__grid > p:empty,
.cs-stories__grid > br {
	display: none;
}

.cs-feature-row {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
	gap: clamp(1.25rem, 2.5vw, 1.75rem);
	align-items: stretch;
}

.cs-feature-aside {
	display: flex;
	flex-direction: column;
	padding: clamp(1.35rem, 2.5vw, 1.75rem);
	background: #00241a;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.cs-feature-aside__eyebrow {
	margin: 0 0 0.65rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--usc-gold);
}

.cs-feature-aside__title {
	margin: 0 0 0.85rem;
	font-family: var(--cs-serif);
	font-size: clamp(1.375rem, 2.2vw, 1.75rem);
	font-weight: 400;
	line-height: 1.15;
	color: #fff;
}

.cs-feature-aside__text {
	margin: 0 0 1.15rem;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.78);
}

.cs-feature-aside__list {
	margin: 0 0 1.25rem;
	padding: 0;
	list-style: none;
}

.cs-feature-aside__list li {
	position: relative;
	padding-left: 1.1rem;
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.9);
}

.cs-feature-aside__list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.55em;
	width: 0.35rem;
	height: 0.35rem;
	border-radius: 50%;
	background: var(--usc-gold);
}

.cs-feature-aside__stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
	padding: 1rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cs-feature-aside__stat-num {
	display: block;
	font-size: 1.375rem;
	font-weight: 800;
	color: var(--usc-gold);
	line-height: 1.1;
}

.cs-feature-aside__stat-label {
	display: block;
	margin-top: 0.2rem;
	font-size: 0.625rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.65);
}

.cs-feature-aside__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-top: auto;
}

.cs-feature-aside__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.65rem 1.15rem;
	font-size: 0.8125rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cs-feature-aside__cta--primary {
	background: var(--usc-gold);
	color: #16192b;
}

.cs-feature-aside__cta--primary:hover {
	background: var(--usc-gold-hover);
	color: #16192b;
}

.cs-feature-aside__cta--ghost {
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #fff;
}

.cs-feature-aside__cta--ghost:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.cs-row--duo {
	display: contents;
}

.cs-card {
	position: relative;
	min-width: 0;
}

.cs-card--feature .cs-card__link {
	flex-direction: row;
	min-height: 100%;
}

.cs-card--feature .cs-card__media {
	flex: 0 0 58%;
	aspect-ratio: auto;
	align-self: stretch;
	min-height: 280px;
}

.cs-card--feature .cs-card__body {
	justify-content: center;
	padding: clamp(1.25rem, 2.5vw, 2rem);
}

.cs-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: #16192b;
	background: #fff;
	border: 1px solid rgba(22, 25, 43, 0.08);
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.cs-card__link > p:empty {
	display: none;
}

.cs-card__link:hover {
	border-color: rgba(4, 67, 49, 0.25);
	box-shadow: 0 18px 40px rgba(22, 25, 43, 0.08);
	transform: translateY(-2px);
	color: #16192b;
}

.cs-card__media {
	position: relative;
	flex: 0 0 auto;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	background: #f3efe6;
}

.cs-card__img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.45s ease;
}

.landing-page--case-studies .cs-card__media .cs-card__img {
	height: 100%;
	max-height: none;
	aspect-ratio: unset;
}

.cs-card__link:hover .cs-card__img {
	transform: scale(1.04);
}

.cs-card__placeholder {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, #044331 0%, #00241a 100%);
}

.cs-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: clamp(1rem, 2vw, 1.35rem);
}

.cs-card__client {
	margin: 0 0 0.5rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #044331;
}

.cs-card__headline {
	margin: 0 0 0.75rem;
	font-family: var(--cs-serif);
	font-size: clamp(1.25rem, 2.2vw, 1.75rem);
	font-weight: 400;
	line-height: 1.2;
	color: #16192b;
}

.cs-card__dek {
	margin: 0 0 1rem;
	font-size: 0.9375rem;
	line-height: 1.65;
	color: #475569;
}

.cs-card__read {
	display: inline-flex;
	margin-top: auto;
	padding-top: 0.75rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: #044331;
}

.cs-card--feature .cs-card__headline {
	font-size: clamp(1.5rem, 3vw, 2.125rem);
}

.cs-pullquote {
	margin: 0;
	padding: clamp(3rem, 6vw, 5rem) 1.5rem;
	background: #044331;
	color: #fff;
}

.cs-pullquote__inner {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}

.cs-pullquote__text {
	margin: 0;
	font-family: var(--cs-serif);
	font-size: clamp(1.5rem, 3.5vw, 2.375rem);
	font-style: italic;
	line-height: 1.35;
	color: #fff;
}

.cs-pullquote__cite {
	display: block;
	margin-top: 1.25rem;
	font-size: 0.75rem;
	font-style: normal;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.65);
}

.cs-clients {
	padding: clamp(2.5rem, 5vw, 3.5rem) 1.5rem;
	border-top: 1px solid rgba(22, 25, 43, 0.08);
	border-bottom: 1px solid rgba(22, 25, 43, 0.08);
}

.cs-clients__inner {
	max-width: var(--usc-container);
	margin: 0 auto;
	text-align: center;
}

.cs-clients__label {
	margin: 0 0 1.25rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #475569;
}

.cs-clients__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.75rem 1.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.cs-clients__list li {
	padding: 0.45rem 0.9rem;
	font-size: 0.8125rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #16192b;
	background: #f8f7f4;
	border: 1px solid rgba(22, 25, 43, 0.08);
	border-radius: 999px;
}

.cs-cta-band {
	padding: clamp(3rem, 6vw, 4.5rem) 1.5rem;
	background: #f3efe6;
}

.cs-cta-band__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem 2rem;
	max-width: var(--usc-container);
	margin: 0 auto;
}

.cs-cta-band__eyebrow {
	margin: 0 0 0.5rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #044331;
}

.cs-cta-band__title {
	margin: 0 0 0.75rem;
	font-family: var(--cs-serif);
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 400;
	line-height: 1.15;
	color: #16192b;
}

.cs-cta-band__text {
	margin: 0;
	max-width: 34rem;
	font-size: 1rem;
	line-height: 1.65;
	color: #475569;
}

.cs-cta-band__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.cs-cta-band__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.75rem 1.35rem;
	font-size: 0.875rem;
	font-weight: 700;
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.cs-cta-band__btn--primary {
	background: var(--usc-gold);
	color: #16192b;
}

.cs-cta-band__btn--primary:hover {
	background: var(--usc-gold-hover);
	color: #16192b;
}

.cs-cta-band__btn--ghost {
	border: 1px solid rgba(4, 67, 49, 0.35);
	color: #044331;
	background: transparent;
}

.cs-cta-band__btn--ghost:hover {
	background: #044331;
	border-color: #044331;
	color: #fff;
}

@media (max-width: 900px) {

	.cs-lede__inner {
		grid-template-columns: 1fr;
	}

	.cs-metrics__inner {
		grid-template-columns: repeat(2, 1fr);
	}

	.cs-stories__grid {
		grid-template-columns: 1fr;
	}

	.cs-feature-row {
		grid-template-columns: 1fr;
	}

	.cs-card--feature .cs-card__link {
		flex-direction: column;
	}

	.cs-card--feature .cs-card__media {
		flex: 0 0 auto;
		width: 100%;
		min-height: 0;
		aspect-ratio: 3 / 2;
	}

	.cs-cta-band__inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

.landing-page--ready {
	--rtg-shell: 1320px;
	--rtg-gutter: clamp(1.25rem, 4vw, 2rem);
	--rtg-section-y: clamp(3.5rem, 7vw, 5.5rem);
	scroll-behavior: smooth;
}

.landing-page--ready .rtg-hero {
	min-height: clamp(460px, 68svh, 680px);
	padding: var(--rtg-section-y) 0;
	align-items: center;
}

.landing-page--ready .rtg-hero__scrim {
	background: linear-gradient(90deg, rgba(0, 36, 26, 0.94) 0%, rgba(0, 36, 26, 0.72) 48%, rgba(0, 36, 26, 0.25) 100%);
}

.landing-page--ready .rtg-hero__content {
	width: min(100%, var(--rtg-shell));
	max-width: none;
	padding-inline: var(--rtg-gutter);
}

.landing-page--ready .rtg-hero__title {
	max-width: 13ch;
	margin-bottom: 1.25rem;
	font-size: clamp(3rem, 6.5vw, 5.75rem);
	font-weight: 800;
	line-height: 0.96;
	letter-spacing: -0.045em;
}

.landing-page--ready .rtg-hero__sub {
	max-width: 42rem;
	margin-bottom: 2rem;
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	line-height: 1.55;
}

.landing-page--ready .rtg-hero__cta,
.landing-page--ready .rtg-patterns__cta,
.landing-page--ready .landing-compare .usc-btn,
.landing-page--ready .rtg-more__foot .usc-btn {
	min-height: 46px;
	padding: 0.75rem 1.25rem;
	border-radius: 999px;
}

.landing-page--ready .home-v6-block {
	margin: 0;
}

.landing-page--ready .landing-facts {
	padding-inline: 0;
}

.landing-page--ready .landing-facts__inner {
	width: min(100%, var(--rtg-shell));
	max-width: none;
	padding: 1.5rem var(--rtg-gutter);
	gap: 0;
}

.landing-page--ready .landing-facts__item {
	padding-inline: 1rem;
}

.landing-page--ready .landing-facts__item + .landing-facts__item {
	border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.landing-page--ready .landing-facts__value {
	font-size: clamp(1.5rem, 2.6vw, 2.1rem);
}

.landing-page--ready .landing-steps--landing {
	padding: var(--rtg-section-y) 0;
	border-top: 1px solid var(--home-v6-line);
}

.landing-page--ready .landing-steps__inner {
	width: min(100%, var(--rtg-shell));
	max-width: none;
	padding-inline: var(--rtg-gutter);
}

.landing-page--ready .landing-steps__head {
	max-width: 48rem;
	margin-inline: auto;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.landing-page--ready .landing-steps__picker {
	margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.landing-page--ready .landing-steps__panels {
	min-height: 0;
}

.landing-page--ready .landing-step__media {
	border-radius: 0;
}

.landing-page--ready .rtg-patterns {
	padding: 0;
	scroll-margin-top: 7rem;
}

.landing-page--ready .rtg-patterns__inner {
	width: min(100%, var(--rtg-shell));
	max-width: none;
	padding: var(--rtg-section-y) var(--rtg-gutter);
}

.landing-page--ready .rtg-patterns__layout {
	grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.78fr);
	gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
}

.landing-page--ready .rtg-patterns__header,
.landing-page--ready .rtg-patterns__swatches {
	max-width: 34rem;
}

.landing-page--ready .rtg-patterns__title {
	font-size: clamp(2rem, 3.5vw, 3rem);
	font-weight: 800;
}

.landing-page--ready .rtg-patterns__preview {
	width: min(100%, 31rem);
	justify-self: end;
}

.landing-page--ready .rtg-patterns__preview-frame {
	aspect-ratio: 4 / 4.8;
	border-radius: 0;
}

.landing-page--ready .rtg-more--editorial {
	padding: 0;
	border-top: 0;
}

.landing-page--ready .rtg-more--editorial .rtg-more__inner {
	width: min(100%, var(--rtg-shell));
	max-width: none;
	padding: var(--rtg-section-y) var(--rtg-gutter);
}

.landing-page--ready .rtg-more__head {
	margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.landing-page--ready .rtg-more--editorial .home-section-head__title {
	font-size: clamp(2rem, 3.5vw, 3rem);
}

.landing-page--ready .rtg-more__grid {
	gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.landing-page--ready .landing-compare {
	padding: clamp(2rem, 4vw, 3rem) 0;
	border-top: 1px solid var(--home-v6-line);
	text-align: left;
}

.landing-page--ready .landing-compare__inner {
	display: grid;
	width: min(100%, var(--rtg-shell));
	max-width: none;
	padding-inline: var(--rtg-gutter);
	grid-template-columns: minmax(14rem, 0.8fr) minmax(20rem, 1.35fr) auto;
	gap: clamp(1.25rem, 3vw, 2.5rem);
	align-items: center;
}

.landing-page--ready .landing-compare__title,
.landing-page--ready .landing-compare__text {
	margin: 0;
}

.landing-page--ready .landing-compare__title {
	font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.landing-page--ready .landing-compare .usc-btn {
	margin: 0;
	white-space: nowrap;
}

@media (max-width: 900px) {
	.landing-page--ready .rtg-hero {
		min-height: clamp(420px, 62svh, 580px);
	}

	.landing-page--ready .rtg-patterns__layout,
	.landing-page--ready .landing-compare__inner {
		grid-template-columns: 1fr;
	}

	.landing-page--ready .rtg-patterns__preview {
		width: min(100%, 34rem);
		justify-self: start;
	}

	.landing-page--ready .landing-facts__inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.landing-page--ready .landing-facts__item {
		padding-block: 1rem;
	}

	.landing-page--ready .landing-facts__item:nth-child(3) {
		border-left: 0;
	}

	.landing-page--ready .landing-facts__item:nth-child(n + 3) {
		border-top: 1px solid rgba(255, 255, 255, 0.16);
	}

	.landing-page--ready .landing-compare .usc-btn {
		justify-self: start;
	}
}

@media (max-width: 600px) {
	.site-utility__promo,
	.site-utility__nav {
		box-sizing: border-box;
	}

	.site-header__bar {
		padding-inline: 0.75rem;
	}

	.site-header__bar-inner,
	.site-header--compact .site-header__bar-inner {
		grid-template-columns: minmax(0, 1fr) auto auto;
		grid-template-areas: "brand actions nav";
		column-gap: 0.5rem;
	}

	.site-header__bar-inner .site-brand__logo {
		width: min(100%, 7.5rem);
		height: auto;
	}

	.site-header__phone-copy {
		display: none;
	}

	.site-header__actions,
	.site-header__bar-inner > .site-header__actions {
		gap: 0.35rem;
	}

	.site-header__cta {
		padding: 0.35rem 0.6rem;
		font-size: 0.6875rem;
		font-weight: 700;
		line-height: 1.2;
	}

	.site-nav__toggle {
		width: 36px;
	}

	.landing-page--ready .rtg-hero__scrim {
		background: linear-gradient(180deg, rgba(0, 36, 26, 0.35) 0%, rgba(0, 36, 26, 0.92) 65%, rgba(0, 36, 26, 0.98) 100%);
	}

	.landing-page--ready .rtg-hero__title {
		font-size: clamp(2.5rem, 14vw, 4rem);
	}

	.landing-page--ready .landing-step {
		gap: 1.25rem;
	}

	.landing-page--ready .rtg-more__head {
		align-items: flex-start;
	}
}
