

html {
	color-scheme: light only;
}

:root {
	--usc-header-height: 72px;
	--usc-promo-height: 32px;
	--usc-container: 1120px;
	--usc-container-wide: 1320px;
	--usc-pad-x: clamp(1.5rem, 4vw, 2rem);
	--usc-radius: 4px;
	--usc-gold: #e6a817;
	--usc-gold-hover: #f0c04a;
	--usc-gold-light: #f5d078;
	--usc-gold-rgb: 230, 168, 23;
}

body {
	margin: 0;
	background: #fff;
	color: #16192b;
}

.wp-site-blocks > header:has(.site-header),
header.wp-block-template-part:has(.site-header),
body > header.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	padding-top: env(safe-area-inset-top, 0px);
}

.site-header {
	position: relative;
	background: #fff;
	box-shadow: 0 1px 0 rgba(22, 25, 43, 0.08);
}

.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;
}

.promo-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: var(--usc-promo-height);
	padding: 0.375rem 1rem;
	background-color: #044331;
	color: #fff;
	overflow: hidden;
}

.promo-bar__text {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.3;
	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;
	overflow: hidden;
}

.site-utility__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1rem;
	max-width: var(--usc-container-wide);
	margin: 0 auto;
	padding: 0.4rem 1.5rem;
}

.site-utility__promo {
	margin: 0;
	font-size: 0.75rem;
	color: #64748b;
}

.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;
	text-decoration: none;
}

.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;
	max-width: var(--usc-container-wide);
	margin: 0 auto;
}

.site-header__bar-inner > .site-brand {
	grid-area: brand;
	display: flex;
	align-items: center;
	min-height: 4rem;
}

.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;
}

.site-header__bar-inner > .site-header__actions {
	grid-area: actions;
	display: flex;
	align-items: center;
	gap: 0.65rem;
	min-height: 4rem;
}

.site-brand {
	flex-shrink: 0;
	line-height: 0;
}

.site-header .site-brand__logo {
	display: block;
	width: auto;
	max-width: 180px;
	height: 48px;
	object-fit: contain;
}

.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;
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-nav__list a {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: #16192b;
	text-decoration: none;
	font-size: 0.9375rem;
	font-weight: 500;
	white-space: nowrap;
}

.site-header__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.55rem 1.2rem;
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 4px;
	background: transparent;
	color: #044331;
	box-shadow: inset 0 0 0 2px #044331;
	white-space: nowrap;
}

.site-header__phone {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: #044331;
	text-decoration: none;
	white-space: nowrap;
}

.site-header__phone-copy {
	display: flex;
	flex-direction: column;
	line-height: 1.15;
}

.site-header__phone-label {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.site-header__phone-num {
	font-size: 0.9375rem;
	font-weight: 700;
}

.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: #16192b;
	border-radius: 1px;
}

@media (max-width: 1024px) {
	.site-utility__inner {
		display: grid;
		grid-template-columns: 1fr;
		padding: 0;
		gap: 0;
	}

	.site-utility__promo {
		padding: 0.45rem 1rem;
		text-align: center;
		white-space: normal;
		border-bottom: 1px solid rgba(22, 25, 43, 0.08);
	}

	.site-utility__nav {
		padding: 0.35rem 1rem;
		overflow-x: auto;
	}

	.site-header__bar-inner {
		grid-template-columns: auto 1fr auto auto;
		grid-template-areas: "brand . actions nav";
	}

	.site-header__cta {
		padding: 0.35rem 0.6rem;
		font-size: 0.6875rem;
	}

	.site-nav__toggle {
		display: flex;
	}

	.site-nav {
		display: none;
	}

	.site-header__phone-copy {
		display: none;
	}
}

main.wp-block-group > .wp-block-shortcode:has(.home-v6) {
	margin-block-start: 0;
}

.home-v6 {
	--home-v6-paper: #fff;
	--home-v6-sand: #f4f2ee;
	--home-v6-ink: #121212;
	--home-v6-muted: #646464;
	--home-v6-green: #044331;
	--home-v6-green-hi: #0a6b4f;
	box-sizing: border-box;
	width: 100%;
	margin: 0;
	overflow-x: clip;
	background: var(--home-v6-paper);
	color: var(--home-v6-ink);
}

.home-v6 *,
.home-v6 *::before,
.home-v6 *::after {
	box-sizing: inherit;
}

.home-v6 :where(h1, h2, h3, p) {
	margin-block-start: 0;
}

.home-v6 img {
	display: block;
	max-width: 100%;
	height: auto;
}

.home-v6 a {
	color: inherit;
	text-decoration: none;
}

.home-v6__eyebrow {
	margin-bottom: 0.8rem;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.17em;
	text-transform: uppercase;
	color: var(--home-v6-green);
}

.home-v6__hero-slider,
.home-v6__hero {
	background: var(--home-v6-sand);
}

.home-v6__hero-title {
	margin-bottom: 0;
	font-size: clamp(2.8rem, 14vw, 4.1rem);
	line-height: 0.91;
	letter-spacing: -0.055em;
}

.home-v6__hero-text {
	max-width: 560px;
	margin: 1.4rem 0 0;
	color: #595959;
	font-size: clamp(1.08rem, 1.8vw, 1.3rem);
	line-height: 1.45;
}

.home-v6 a.home-v6__pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.8rem 1.35rem;
	border-radius: 999px;
	background: var(--home-v6-green);
	color: #fff;
	font-weight: 750;
	line-height: 1.2;
	text-align: center;
}

@media (min-width: 901px) {
	.home-v6__hero-title {
		font-size: clamp(3rem, 6vw, 5.7rem);
	}
}
