/**
 * Hathaway Scholarship homepage styles
 * Matches Figma Home (node 3034:1265)
 */

:root {
	--hs-orange: #ef6d01;
	--hs-orange-deep: #ab5400;
	--hs-teal: #a3d9d2;
	--hs-teal-deep: #7ec8c2;
	--hs-ink: #282019;
	--hs-bronze: #6c5b4c;
	--hs-muted: #6c5b4c;
	--hs-line: #dfdfdf;
	--hs-step-1: #e97518;
	--hs-step-2: #9ec43f;
	--hs-step-3: #8b6bb5;
	--hs-white: #ffffff;
	--hs-bg: #ffffff;
	--hs-container: 1312px;
	--hs-page-gutter: 2rem;
	--hs-page-grid: minmax(var(--hs-page-gutter, 2rem), 1fr) minmax(0, var(--hs-container, 1312px)) minmax(var(--hs-page-gutter, 2rem), 1fr);
	--hs-radius: 0;
	--hs-font-display: "omnes-pro", "Trebuchet MS", sans-serif;
	--hs-font-nav: "gotham", "Helvetica Neue", sans-serif;
	--hs-font-body: "arial-nova", "Segoe UI", sans-serif;
}

/* Reset leftover Avada default chrome (wrappers stay if ever present) */
.hs-front-page .fusion-header-wrapper,
.hs-front-page .fusion-footer,
.hs-front-page #sliders-container,
.hs-front-page .fusion-page-title-bar {
	display: none !important;
}

.hs-front-page {
	margin: 0;
	background: var(--hs-bg);
	color: var(--hs-ink);
	font-family: var(--hs-font-body);
	font-size: 16px;
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

.hs-front-page *,
.hs-front-page *::before,
.hs-front-page *::after {
	box-sizing: border-box;
}

.hs-front-page img {
	max-width: 100%;
	height: auto;
	display: block;
}

.hs-front-page a {
	color: var(--hs-orange-deep);
	text-underline-offset: 2px;
}

.hs-front-page a:hover {
	color: var(--hs-ink);
}

/* Beat .hs-front-page a { color: orange-deep } — white on ink for AA contrast. */
a.hs-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--hs-ink);
	color: var(--hs-white) !important;
	padding: 0.75rem 1rem;
	z-index: 10000;
	text-decoration: none;
}

a.hs-skip-link:focus,
a.hs-skip-link:focus-visible {
	left: 1rem;
	top: 1rem;
	color: var(--hs-white) !important;
	outline: 2px solid var(--hs-white);
	outline-offset: 2px;
}

/* Skip target must accept programmatic focus (WAVE broken skip link). */
#hs-main:focus {
	outline: none;
}

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

.hs-container {
	width: min(100% - (2 * var(--hs-page-gutter)), var(--hs-container));
	max-width: var(--hs-container);
	margin-inline: auto;
	box-sizing: border-box;
}

/* Buttons */
.hs-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0.55rem 1.15rem;
	border: 0;
	border-radius: var(--hs-radius);
	font-family: var(--hs-font-body);
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none !important;
	color: var(--hs-ink) !important;
	cursor: pointer;
	transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.hs-btn:hover {
	transform: none;
	box-shadow: 0 4px 12px rgba(43, 36, 28, 0.12);
}

.hs-btn--teal {
	background: var(--hs-teal);
}

.hs-btn--teal:hover {
	background: var(--hs-teal-deep);
	color: var(--hs-ink) !important;
}

.hs-btn--outline {
	background: transparent;
	border-color: var(--hs-ink);
}

.hs-btn--outline:hover {
	background: rgba(255, 255, 255, 0.2);
	color: var(--hs-ink) !important;
}

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

/* Header — Figma desktop Header (3034:1267) / mobile (3065:1691) */
.hs-interior-page .hs-header,
.hs-front-page .hs-header,
.hs-search-results-page .hs-header,
.hs-404-page .hs-header,
.hs-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--hs-white);
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 20px;
	padding: 32px var(--hs-page-gutter) 10px !important;
}

.hs-interior-page .hs-header__inner,
.hs-front-page .hs-header__inner,
.hs-search-results-page .hs-header__inner,
.hs-404-page .hs-header__inner,
.hs-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	max-width: var(--hs-container) !important;
	margin-inline: auto !important;
	padding: 0;
}

.hs-logo {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	max-width: 300px;
}

.hs-logo svg,
.hs-logo img {
	width: 300px;
	max-width: 100%;
	height: auto;
	display: block;
}

.hs-header__actions {
	display: none;
	align-items: center;
	gap: 15px;
}

.hs-header__search {
	display: grid;
	place-items: center;
	width: 20px;
	height: 20px;
	line-height: 0;
}

.hs-header__search img {
	width: 20px;
	height: 20px;
}

/* Expandable header search (icon → pill field) */
.hs-search {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-width: 32px;
	min-height: 32px;
	z-index: 5;
}

.hs-search__toggle {
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	line-height: 0;
	border-radius: 0;
	color: var(--hs-bronze);
}

.hs-search__toggle:hover,
.hs-search__toggle:focus-visible {
	background: var(--hs-teal);
	outline: none;
}

.hs-search__toggle img {
	width: 20px;
	height: 20px;
	display: block;
}

.hs-search__form {
	display: none;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	align-items: center;
	gap: 8px;
	box-sizing: border-box;
	width: min(485px, 70vw);
	min-width: 180px;
	padding: 12px 16px;
	background: #fff;
	border: 3px solid #cec487;
	border-radius: 9999px;
	overflow: hidden;
	box-shadow: 0 8px 24px rgba(46, 42, 37, 0.12);
}

.hs-search.is-open .hs-search__toggle {
	visibility: hidden;
	pointer-events: none;
}

.hs-search.is-open .hs-search__form {
	display: flex;
}

/* When search is open, hide nav pills and expand search across that space */
.hs-nav.is-search-open > .hs-nav__list:not(.hs-nav__list--tools),
.hs-nav.is-search-open .hs-nav__contact {
	display: none !important;
}

.hs-nav.is-search-open {
	flex: 1 1 auto;
}

.hs-nav.is-search-open .hs-nav__list--tools {
	flex: 1 1 auto;
	justify-content: flex-end;
	width: 100%;
}

.hs-nav.is-search-open .hs-nav__search,
.hs-nav.is-search-open .hs-search--nav {
	flex: 1 1 auto;
	width: 100%;
	max-width: 485px;
	justify-content: stretch;
}

.hs-nav.is-search-open .hs-search--nav .hs-search__form {
	position: relative;
	right: auto;
	top: auto;
	transform: none;
	width: 100%;
	min-width: 0;
}

.hs-search__input {
	flex: 1 1 auto;
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--hs-bronze);
	font-family: var(--hs-font-body, "Source Sans 3", sans-serif);
	font-size: 13px;
	line-height: 1.2;
	outline: none;
	box-shadow: none !important;
}

.hs-search__input:focus-visible {
	outline: 2px solid var(--hs-teal-deep);
	outline-offset: 2px;
}

.hs-search.is-open .hs-search__form:focus-within {
	box-shadow: 0 0 0 2px var(--hs-teal-deep);
}

.hs-search__input::placeholder {
	color: rgba(108, 91, 76, 0.65);
}

.hs-search__submit {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 20px;
	height: 20px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	line-height: 0;
}

.hs-search__submit img {
	width: 16px;
	height: 16px;
	display: block;
}

.hs-nav__search {
	display: flex;
	align-items: center;
}

.hs-nav__search a {
	padding: 6px;
	background: transparent !important;
}

.hs-nav__search img {
	width: 20px;
	height: 20px;
	display: block;
}

.hs-nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1;
	min-width: 0;
	gap: 12px;
}

.hs-nav__list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.hs-nav__list--tools {
	margin-left: 0;
}

.hs-nav__item a {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 6px 12px;
	border: 2px solid transparent;
	border-radius: 0;
	box-sizing: border-box;
	color: var(--hs-bronze) !important;
	text-decoration: none !important;
	font-family: var(--hs-font-nav, var(--hs-font-display));
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
	white-space: nowrap;
	background: transparent;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

/* Hover: bronze outline (Figma NavigationPill Hover) */
.hs-nav__list:not(.hs-nav__list--tools) > .hs-nav__item:not(.is-active) > a:hover,
.hs-nav__list:not(.hs-nav__list--tools) > .hs-nav__item:not(.is-active) > a:focus-visible {
	background: transparent;
	border-color: var(--hs-bronze);
	color: var(--hs-bronze) !important;
	outline: none;
}

/* Active: teal fill (Figma hathaway-blue) */
.hs-nav__list:not(.hs-nav__list--tools) > .hs-nav__item.is-active > a,
.hs-nav__list:not(.hs-nav__list--tools) > .hs-nav__item.current-menu-item > a,
.hs-nav__list:not(.hs-nav__list--tools) > .hs-nav__item.current-menu-ancestor > a {
	background: var(--hs-teal);
	border-color: var(--hs-teal);
	color: var(--hs-ink) !important;
}

.hs-nav__contact > a:hover,
.hs-nav__contact > a:focus-visible {
	background: transparent;
	border-color: var(--hs-bronze);
	color: var(--hs-bronze) !important;
}

.hs-nav__contact.is-active > a {
	background: var(--hs-teal);
	border-color: var(--hs-teal);
	color: var(--hs-ink) !important;
}

.hs-chevron {
	width: 12px;
	height: 8px;
	display: block;
	opacity: 0.9;
	flex-shrink: 0;
}

.hs-nav__item.has-children {
	position: relative;
}

.hs-nav__item.has-children > a[aria-expanded="true"] .hs-chevron {
	transform: rotate(180deg);
}

.hs-nav__item.has-children.is-open > .hs-nav__sub,
.hs-nav__item.has-children:hover > .hs-nav__sub,
.hs-nav__item.has-children:focus-within > .hs-nav__sub {
	display: block;
}

.hs-nav__sub {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 15.5rem;
	margin: 0;
	padding: 12px;
	list-style: none;
	background: var(--hs-bronze);
	border: 0;
	border-radius: 0;
	box-shadow: 0 12px 28px rgba(40, 32, 25, 0.18);
	z-index: 40;
	overflow: hidden;
}

/* Invisible hover bridge — keeps submenu open while moving from parent → panel */
.hs-nav__sub::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	height: 0.75rem;
}

.hs-nav__sub .hs-nav__item a {
	display: block;
	width: 100%;
	white-space: nowrap;
	color: #fff !important;
	background: transparent !important;
	border-color: transparent !important;
	font-family: var(--hs-font-nav, var(--hs-font-display));
	font-weight: 700;
}

.hs-nav__sub .hs-nav__item a:hover,
.hs-nav__sub .hs-nav__item a:focus-visible,
.hs-nav__sub .hs-nav__item.is-active > a,
.hs-nav__sub .hs-nav__item.current-menu-item > a {
	background: rgba(255, 255, 255, 0.12) !important;
	border-color: transparent !important;
	color: #fff !important;
}

.hs-nav-toggle {
	display: none;
	width: 40px;
	height: 40px;
	min-width: 40px;
	min-height: 40px;
	border: 0;
	background: transparent;
	cursor: pointer;
	padding: 0;
	line-height: 0;
	place-items: center;
	position: relative;
	z-index: 60;
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.hs-nav-toggle__icon {
	width: 20px;
	height: 20px;
	display: block;
}

.hs-nav-toggle__icon--close[hidden],
.hs-nav-toggle__icon--open[hidden] {
	display: none !important;
}

/* ===== Avada Global Layout header (native Fusion elements) ===== */
.fusion-tb-header .hs-fb-skip {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}

.fusion-tb-header {
	overflow-x: clip;
	/* Beat Avada `.fusion-tb-header{background-color:var(--awb_header_bg_color)}` (white). */
	background: var(--hs-teal, #a3d9d2) !important;
}

.fusion-tb-header .hs-fb-header.fusion-fullwidth {
	margin: 0 !important;
	max-width: none !important;
	width: 100% !important;
	background: var(--hs-teal, #a3d9d2) !important;
}

.fusion-tb-header .hs-fb-header-rule.fusion-fullwidth {
	margin: 0 !important;
	max-width: none !important;
	width: 100% !important;
	background: var(--hs-teal, #a3d9d2) !important;
}

/* Kill Avada’s 104% row bleed that causes horizontal scroll */
.fusion-tb-header .fusion-builder-row,
.fusion-tb-footer .fusion-builder-row {
	width: 100% !important;
	max-width: 1200px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

.fusion-tb-header .hs-fb-header .fusion-builder-row {
	display: flex !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 1rem;
}

.fusion-tb-header .hs-fb-header__logo-col,
.fusion-tb-header .hs-fb-header__nav-col {
	float: none !important;
	margin: 0 !important;
}

.fusion-tb-header .hs-fb-header__logo-col {
	flex: 0 1 320px !important;
	width: auto !important;
	max-width: 340px !important;
}

.fusion-tb-header .hs-fb-header__nav-col {
	flex: 1 1 auto !important;
	width: auto !important;
	max-width: none !important;
}

.fusion-tb-header .hs-fb-header__nav-col .fusion-column-wrapper {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: flex-end !important;
	gap: 16px !important;
	width: 100%;
}

.fusion-tb-header .hs-fb-main-menu.awb-menu,
.fusion-tb-header .awb-menu.hs-fb-main-menu {
	flex: 0 1 auto;
	width: auto !important;
	max-width: none !important;
}

.fusion-tb-header .hs-fb-header-search,
.fusion-tb-header .fusion-search-element.hs-fb-header-search {
	flex: 0 0 200px !important;
	width: 200px !important;
	min-width: 160px !important;
	max-width: 220px !important;
	margin: 0 !important;
}

.fusion-tb-header .hs-fb-header-search .fusion-search-form,
.fusion-tb-header .hs-fb-header-search form {
	margin: 0 !important;
}

/* Underline rule — keep knot/line to a thin decorative strip (not 100px tall) */
.fusion-tb-header .hs-fb-header-rule {
	padding-top: 0 !important;
	padding-bottom: 8px !important;
	min-height: 0 !important;
}

.fusion-tb-header .hs-fb-header-rule__col .fusion-column-wrapper {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 12px;
	max-height: 16px;
	overflow: visible;
}

.fusion-tb-header .hs-fb-header-rule__line,
.fusion-tb-header .hs-fb-header-rule__line img {
	display: block;
	width: 100% !important;
	max-width: 100% !important;
	height: 6px !important;
	object-fit: fill;
}

.fusion-tb-header .hs-fb-header-rule__knot,
.fusion-tb-header .hs-fb-header-rule__knot img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 12px !important;
	max-width: 12px !important;
	height: auto !important;
	z-index: 1;
}

/* Active nav pill (Figma) */
.fusion-tb-header .awb-menu__main-a[aria-current="page"],
.fusion-tb-header .awb-menu__main-li.current-menu-item > .awb-menu__main-a {
	background: var(--hs-teal-dark, #7ec8c2);
	color: var(--hs-ink, #282019) !important;
}

/* Hide AWB decorative backgrounds that bleed into mobile menu rows */
.fusion-tb-header .awb-menu__main-background-default,
.fusion-tb-header .awb-menu__main-background-active {
	pointer-events: none;
}

@media (max-width: 1024px) {
	.fusion-tb-header .awb-menu__main-background-default,
	.fusion-tb-header .awb-menu__main-background-active {
		display: none !important;
	}
}

/* Footer Global Layout */
.fusion-tb-footer {
	overflow-x: clip;
}

.fusion-tb-footer .hs-fb-footer.fusion-fullwidth {
	background: var(--hs-ink, #282019);
	color: #fff;
	margin: 0 !important;
	width: 100% !important;
	max-width: none !important;
}

.fusion-tb-footer .hs-fb-footer-heading .fusion-title-heading,
.fusion-tb-footer .hs-fb-footer-heading h2 {
	color: #fff !important;
	font-family: var(--hs-font-display, omnes-pro, sans-serif) !important;
	font-weight: 800 !important;
	font-size: 1.25rem !important;
	margin: 0 0 0.75rem !important;
}

.fusion-tb-footer .hs-fb-footer-copy,
.fusion-tb-footer .hs-fb-footer-legal,
.fusion-tb-footer .hs-fb-footer-legal a,
.fusion-tb-footer .hs-fb-footer-menu .awb-menu__main-a {
	color: #fff !important;
}

.fusion-tb-footer .hs-fb-footer-legal__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.fusion-tb-footer .hs-fb-footer-legal__list li {
	margin: 0 0 0.5rem;
}

.fusion-tb-footer #contact,
.fusion-tb-footer .hs-fb-footer-anchor,
#contact {
	scroll-margin-top: 24px;
}

/* Mobile header: logo + toggle one row; search full width under */
@media (max-width: 900px) {
	.fusion-tb-header .hs-fb-header {
		padding: 12px 16px 8px !important;
	}

	.fusion-tb-header .hs-fb-header .fusion-builder-row {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) auto !important;
		grid-template-areas:
			"logo toggle"
			"search search" !important;
		align-items: center !important;
		gap: 10px 8px !important;
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
	}

	.fusion-tb-header .hs-fb-header__logo-col {
		grid-area: logo !important;
		flex: none !important;
		width: auto !important;
		max-width: none !important;
		min-width: 0 !important;
	}

	.fusion-tb-header .hs-fb-header__nav-col {
		grid-area: toggle !important;
		flex: none !important;
		width: auto !important;
		max-width: none !important;
		margin: 0 !important;
	}

	.fusion-tb-header .hs-fb-header__nav-col .fusion-column-wrapper {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		justify-content: flex-end !important;
		align-items: center !important;
		gap: 0 !important;
		position: relative;
	}

	.fusion-tb-header .hs-fb-main-menu.awb-menu {
		width: auto !important;
		flex: 0 0 auto !important;
	}

	.fusion-tb-header .awb-menu__m-toggle {
		margin: 0 !important;
		position: relative;
		z-index: 5;
	}

	/* Search spans full width under logo/toggle */
	.fusion-tb-header .hs-fb-header-search,
	.fusion-tb-header .fusion-search-element.hs-fb-header-search {
		grid-area: search !important;
		position: static !important;
		flex: none !important;
		width: 100% !important;
		max-width: none !important;
		min-width: 0 !important;
		/* Move search out of nav col visually via absolute placement in grid:
		   search lives inside nav col in DOM — promote with display contents */
	}

	/* Flatten nav column so search can participate in parent grid */
	.fusion-tb-header .hs-fb-header__nav-col,
	.fusion-tb-header .hs-fb-header__nav-col > .fusion-column-wrapper {
		display: contents !important;
	}

	.fusion-tb-header .hs-fb-main-menu.awb-menu {
		grid-area: toggle !important;
		justify-self: end;
	}

	.fusion-tb-header .hs-fb-header-search {
		grid-area: search !important;
		width: 100% !important;
	}

	.fusion-tb-header .hs-fb-logo,
	.fusion-tb-header .hs-fb-logo .fusion-imageframe,
	.fusion-tb-header .hs-fb-header__logo-col .fusion-image-element {
		display: block !important;
		width: auto !important;
		max-width: 100% !important;
	}

	.fusion-tb-header .hs-fb-logo img,
	.fusion-tb-header .hs-fb-header__logo-col img {
		display: block !important;
		width: min(210px, 62vw) !important;
		max-width: min(210px, 62vw) !important;
		height: auto !important;
		min-height: 28px !important;
		object-fit: contain !important;
	}

	.fusion-tb-header .hs-fb-header-rule {
		padding-left: 16px !important;
		padding-right: 16px !important;
		padding-bottom: 6px !important;
	}
}

/* Soft-clamp page bleed from Avada 104% rows */
html {
	overflow-x: clip;
}
body {
	overflow-x: clip;
}

/*
 * Page canvas must stay white. Avada paints html/body with --bg_color via:
 *   html:not(.avada-html-layout-boxed):not(.avada-html-layout-framed) body
 * When bg_color → color3 (teal), the whole page goes mint — header/hero blend
 * into content. Keep teal on .fusion-tb-header + .hs-page-hero only.
 */
html:not(.avada-html-layout-boxed):not(.avada-html-layout-framed),
html:not(.avada-html-layout-boxed):not(.avada-html-layout-framed) body,
body.hs-interior-page,
body.hs-front-page,
body.hs-search-results-page,
body.hs-404-page,
body.hs-brand-chrome {
	background-color: var(--hs-bg, #ffffff) !important;
	background-image: none !important;
}

/* Global Layout wrappers — zero extra chrome around brand header/footer */
.fusion-tb-header,
.fusion-tb-footer,
.fusion-tb-header .fusion-builder-row-wrapper,
.fusion-tb-footer .fusion-builder-row-wrapper,
.hs-fb-global-header.fusion-fullwidth,
.hs-fb-global-footer.fusion-fullwidth {
	margin: 0 !important;
	padding: 0 !important;
	max-width: none !important;
	width: 100% !important;
}

.fusion-tb-header .fusion-column-wrapper,
.fusion-tb-footer .fusion-column-wrapper,
.hs-fb-global-chrome {
	margin: 0 !important;
	padding: 0 !important;
}

.fusion-tb-header .fusion-text,
.fusion-tb-footer .fusion-text {
	margin: 0 !important;
}
.hs-nav__mobile-top {
	display: none;
}

.hs-header__rule {
	position: relative;
	width: 100%;
	max-width: var(--hs-container) !important;
	margin-inline: auto !important;
	line-height: 0;
	/* Figma Underline aspect ~543 / 5.34 */
	aspect-ratio: 543 / 5.34;
	overflow: visible;
}

.hs-header__rule-line {
	position: absolute;
	left: 0;
	right: 0;
	top: 9.55%;
	bottom: 0;
	width: 100%;
	height: 90.45%;
	display: block;
	object-fit: fill;
	/* Gap under the centered knot so the dot does not touch the line */
	-webkit-mask-image: linear-gradient(
		to right,
		#000 0,
		#000 calc(50% - 14px),
		transparent calc(50% - 10px),
		transparent calc(50% + 10px),
		#000 calc(50% + 14px),
		#000 100%
	);
	mask-image: linear-gradient(
		to right,
		#000 0,
		#000 calc(50% - 14px),
		transparent calc(50% - 10px),
		transparent calc(50% + 10px),
		#000 calc(50% + 14px),
		#000 100%
	);
}

.hs-header__rule-knot {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 8px;
	height: 8px;
	transform: translate(-50%, -50%);
	display: block;
	z-index: 1;
}

/* ==========================================================================
   Homepage sections — Figma Desktop 3034:1266 / Mobile 3065:1687
   ========================================================================== */

.hs-front-page .hs-home-content {
	padding: 0;
	max-width: none;
}

.hs-front-page .hs-home-content > .fusion-fullwidth,
.hs-front-page .hs-home-content .fusion-builder-row-wrapper {
	margin: 0 !important;
}

.hs-btn--hero,
.hs-front-page .hs-btn--hero,
.hs-front-page a.hs-btn--hero {
	min-height: 40px;
	padding: 8px 12px !important;
	font-family: var(--hs-font-display);
	font-size: 20px !important;
	font-weight: 600 !important;
	letter-spacing: 0.2px;
	line-height: 1.2 !important;
	border-radius: 0 !important;
	border-width: 0 !important;
	text-decoration: none !important;
	box-shadow: none !important;
	color: var(--hs-ink) !important;
}

.hs-btn--hero.hs-btn--teal,
.hs-front-page a.hs-btn--teal.hs-btn--hero,
.hs-front-page a.fusion-button.hs-btn--teal.hs-btn--hero,
.hs-front-page a.fusion-button.hs-btn--teal.hs-btn--hero .fusion-button-text {
	background: var(--hs-teal) !important;
	border-color: var(--hs-white) !important;
	color: var(--hs-ink) !important;
}

.hs-btn--hero.hs-btn--outline,
.hs-front-page a.hs-btn--outline.hs-btn--hero,
.hs-front-page a.fusion-button.hs-btn--outline.hs-btn--hero,
.hs-front-page a.fusion-button.hs-btn--outline.hs-btn--hero .fusion-button-text {
	background: transparent !important;
	border-color: var(--hs-ink) !important;
	color: var(--hs-ink) !important;
}

/* ----- Hero (3034:1413) — full-bleed background, content in header column ----- */
.hs-front-page .hs-hero {
	display: grid;
	grid-template-columns: var(--hs-page-grid);
	position: relative;
	overflow: hidden;
	color: var(--hs-white);
	isolation: isolate;
	min-height: 450px !important;
	background-color: #ef6d01;
	padding-left: 0 !important;
	padding-right: 0 !important;
	box-sizing: border-box;
	/* Prevent 3_5 + 2_5 + Fusion gutters from wrapping under each other */
	--awb-flex-wrap: nowrap;
}

.hs-front-page .hs-hero.fusion-flex-container {
	min-height: 450px !important;
}

.hs-front-page .hs-hero .fusion-builder-row {
	grid-column: 2;
	display: flex !important;
	width: 100% !important;
	max-width: none !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	min-height: 450px;
	align-items: flex-end !important;
	flex-wrap: nowrap !important;
	gap: 24px;
	--awb-spacing-right-large: 0;
	--awb-spacing-left-large: 0;
	--awb-margin-bottom-large: 0;
	--awb-flex-wrap: nowrap;
}

.hs-front-page .hs-hero .fusion-builder-column,
.hs-front-page .hs-hero .fusion-layout-column {
	--awb-margin-top-large: 0 !important;
	--awb-margin-bottom-large: 0 !important;
	--awb-spacing-right-large: 0 !important;
	--awb-spacing-left-large: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	width: auto !important;
	max-width: none !important;
}

.hs-front-page .hs-hero__content {
	align-self: center !important;
	padding-bottom: 40px !important;
	flex: 1 1 0 !important;
	min-width: 0;
	/* Override Fusion % width of full viewport */
	--awb-width-large: auto !important;
	--awb-width-medium: auto !important;
}

.hs-front-page .hs-hero__mascot {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	align-self: flex-end !important;
	flex: 0 0 auto !important;
	width: auto !important;
	max-width: 405px;
	--awb-width-large: auto !important;
	--awb-width-medium: auto !important;
}

.hs-front-page .hs-hero__content .fusion-column-wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	justify-content: center;
}

.hs-front-page .hs-hero .fusion-title,
.hs-front-page .hs-hero .hs-hero__title {
	margin: 0 !important;
	width: 100%;
}

.hs-front-page .hs-hero .fusion-title-heading,
.hs-front-page .hs-hero h1 {
	margin: 0 !important;
	font-family: var(--hs-font-display) !important;
	font-size: clamp(2.75rem, 6.4vw, 5.75rem) !important; /* ~92px */
	font-weight: 900 !important;
	line-height: 0.9 !important; /* ~82/92 */
	letter-spacing: 0.01em;
	color: var(--hs-white) !important;
}

.hs-front-page .hs-hero__lede {
	margin: 0;
	width: 100%;
}

.hs-front-page .hs-hero__subtitle {
	margin: 16px 0 0;
	font-family: var(--hs-font-display);
	font-size: clamp(1.15rem, 2.2vw, 2rem); /* 32px */
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: var(--hs-white);
	max-width: 594px;
}

.hs-underline-phrase {
	white-space: nowrap;
}

.hs-underline {
	position: relative;
	display: inline;
}

.hs-underline__mark {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% - 0.05em);
	display: block;
	width: 100%;
	height: auto;
	pointer-events: none;
}

.hs-hero__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	margin-top: 48px;
}

.hs-front-page .hs-hero .fusion-button,
.hs-front-page .hs-hero .hs-btn {
	display: inline-flex !important;
	margin: 0 !important;
	vertical-align: middle;
	white-space: nowrap;
}

.hs-front-page .hs-hero__mascot .fusion-column-wrapper {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	width: 100%;
}

/* Home hero owl — release-gate desktop target: 500×500 */
.hs-front-page .hs-hero__owl,
.hs-front-page .hs-hero__mascot img,
.hs-front-page .hs-hero__mascot .fusion-imageframe,
.hs-front-page .hs-hero__owl-lottie {
	width: min(500px, 100%);
	max-width: 500px;
	max-height: 500px;
	height: auto;
	aspect-ratio: 1 / 1;
	display: block;
	margin-inline: auto;
	object-fit: contain;
	object-position: center bottom;
}

.hs-front-page .hs-hero__owl-lottie {
	height: min(500px, 70vw);
	max-height: 500px;
	width: min(500px, 100%);
}

.hs-front-page .hs-hero__mascot img {
	/* Owl GIF is already animated — no CSS float. */
	animation: none;
}

.hs-front-page .hs-hero__owl-static[hidden] {
	display: none !important;
}

/*
 * The static owl is the baseline: it keeps the hero filled when lottie-player.js
 * is blocked, the JSON fails, or the browser ignores custom elements. An upgraded
 * player takes over and hides it — via :defined here, plus a JS hook in home.js
 * for browsers that support custom elements but not these selectors.
 */
.hs-front-page .hs-hero__owl-lottie:not(:defined) {
	display: none;
}

.hs-front-page .hs-hero__owl-lottie:defined ~ .hs-hero__owl-static,
.hs-front-page .hs-hero__owl-wrap:has(.hs-hero__owl-lottie:defined) .hs-hero__owl-static {
	display: none;
}

@media (prefers-reduced-motion: reduce) {
	.hs-front-page .hs-hero__owl-lottie {
		display: none !important;
	}

	.hs-front-page .hs-hero__owl-static,
	.hs-front-page .hs-hero__owl-lottie:defined ~ .hs-hero__owl-static,
	.hs-front-page .hs-hero__owl-wrap:has(.hs-hero__owl-lottie:defined) .hs-hero__owl-static {
		display: block !important;
	}
}

/* ----- Find Your Way (3065:1686) ----- */
.hs-front-page .hs-steps {
	padding: 0;
	background: var(--hs-white);
}

.hs-front-page .hs-steps--title {
	padding-top: 64px;
	padding-bottom: 0;
}

.hs-front-page .hs-steps--timeline {
	padding-top: 24px;
	padding-bottom: 64px;
}

.hs-front-page .hs-steps .fusion-builder-row {
	width: min(100% - 8rem, var(--hs-container));
	margin-inline: auto;
	--awb-margin-bottom-large: 0;
	--awb-spacing-right-large: 0.75rem;
	--awb-spacing-left-large: 0.75rem;
	overflow: visible;
}

.hs-front-page .hs-steps__title-col {
	width: 100%;
	margin-bottom: 12px;
}

.hs-front-page .hs-steps .hs-steps__heading .fusion-title-heading,
.hs-front-page .hs-steps .fusion-title-heading {
	margin: 0 0 12px !important;
	text-align: center !important;
	font-family: var(--hs-font-display) !important;
	font-size: clamp(2rem, 3.5vw, 3rem) !important; /* 48px */
	font-weight: 900 !important;
	line-height: 1.05 !important;
	letter-spacing: 0.01em;
	color: var(--hs-ink) !important;
}

.hs-front-page .hs-steps--timeline .fusion-builder-row {
	position: relative;
	display: flex !important;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: nowrap !important;
	gap: 24px;
	max-width: 1125px;
	overflow: visible;
	--awb-flex-wrap: nowrap;
	--awb-spacing-right-large: 0;
	--awb-spacing-left-large: 0;
}

/* Connector line behind step circles */
.hs-front-page .hs-steps--timeline .fusion-builder-row::before {
	content: "";
	position: absolute;
	top: 55px;
	left: 16%;
	right: 16%;
	height: 2px;
	background: #d9d2c8;
	z-index: 0;
	pointer-events: none;
}

.hs-front-page .hs-steps--timeline .fusion-builder-column,
.hs-front-page .hs-steps--timeline .fusion-layout-column {
	position: relative;
	z-index: 1;
	flex: 1 1 0 !important;
	width: auto !important;
	max-width: 320px !important;
	margin: 0 !important;
	overflow: visible !important;
	--awb-width-large: auto !important;
	--awb-spacing-right-large: 0 !important;
	--awb-spacing-left-large: 0 !important;
	--awb-margin-bottom-large: 0 !important;
}

.hs-front-page .hs-step-col {
	position: relative;
	z-index: 1;
	max-width: 320px;
	overflow: visible;
}

.hs-front-page .hs-step-col .fusion-column-wrapper,
.hs-front-page .hs-step-wrap,
.hs-front-page .hs-step-wrap .fusion-text {
	overflow: visible !important;
}

.hs-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-align: center;
	opacity: 0;
	transform: translateY(16px);
	animation: hs-rise 0.7s ease forwards;
}

.hs-step--1 { animation-delay: 0.1s; }
.hs-step--2 { animation-delay: 0.25s; }
.hs-step--3 { animation-delay: 0.4s; }

@keyframes hs-rise {
	to { opacity: 1; transform: translateY(0); }
}

.hs-step__num {
	width: 110px;
	height: 110px;
	border-radius: 100px;
	display: grid;
	place-items: center;
	font-family: var(--hs-font-nav, var(--hs-font-display));
	font-size: 64px;
	font-weight: 700;
	line-height: 1;
	color: var(--hs-ink);
	flex-shrink: 0;
	overflow: visible;
	position: relative;
	z-index: 1;
}

.hs-step--1 .hs-step__num { background: #f89f65; } /* hathaway-orange-light */
.hs-step--2 .hs-step__num { background: #a6ce42; } /* hathaway-lime */
.hs-step--3 .hs-step__num { background: #b48ab0; } /* hathaway-purple */

.hs-step__title {
	margin: 0 0 6px;
	font-family: var(--hs-font-nav, var(--hs-font-display));
	font-size: 24px;
	font-weight: 700;
	line-height: 26px;
	color: var(--hs-orange-deep);
}

.hs-step__body p {
	margin: 0;
	/* Size-first contrast for glossary tips nested in step body (EDAC may flag the p) */
	font-size: 19px;
	font-weight: 400;
	line-height: 1.35;
	color: var(--hs-bronze);
}

.hs-step__body .hs-glossary-term__text {
	font-weight: 700;
}

/* No hover interactions on Find Your Way steps (design revision) */

/* ----- About (3044:2618) ----- */
.hs-front-page .hs-about {
	padding: 56px 4rem;
	background: var(--hs-white);
	box-sizing: border-box;
}

.hs-front-page .hs-about .fusion-builder-row {
	display: flex !important;
	width: 100% !important;
	max-width: var(--hs-container) !important;
	margin-left: auto !important;
	margin-right: auto !important;
	align-items: stretch !important;
	flex-wrap: nowrap !important;
	gap: 64px;
	--awb-spacing-right-large: 0;
	--awb-spacing-left-large: 0;
	--awb-margin-bottom-large: 0;
	--awb-flex-wrap: nowrap;
	overflow: visible;
}

.hs-front-page .hs-about .fusion-builder-column,
.hs-front-page .hs-about .fusion-layout-column {
	margin: 0 !important;
	--awb-spacing-right-large: 0 !important;
	--awb-spacing-left-large: 0 !important;
	--awb-margin-bottom-large: 0 !important;
	overflow: visible !important;
}

.hs-front-page .hs-about__media-col {
	flex: 0 1 42% !important;
	width: auto !important;
	max-width: 498px;
	--awb-width-large: auto !important;
}

.hs-front-page .hs-about__content {
	flex: 1 1 0 !important;
	width: auto !important;
	min-width: 0;
	--awb-width-large: auto !important;
}

.hs-front-page .hs-about__media-col .fusion-column-wrapper,
.hs-front-page .hs-about__media-col {
	height: 100%;
	min-height: 321px;
}

.hs-front-page .hs-about__photo,
.hs-front-page .hs-about__media-col img {
	width: 100%;
	height: 100%;
	min-height: 321px;
	object-fit: cover;
	display: block;
	background: #e3e3e3;
}

.hs-front-page .hs-about__content .fusion-column-wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0;
	max-width: 750px;
}

.hs-front-page .hs-about .hs-about__heading .fusion-title-heading,
.hs-front-page .hs-about .fusion-title-heading {
	margin: 0 0 8px !important;
	font-family: var(--hs-font-display) !important;
	font-size: clamp(1.85rem, 3.3vw, 3rem) !important;
	font-weight: 900 !important;
	line-height: 1.05 !important;
	letter-spacing: 0.01em;
	color: var(--hs-ink) !important;
}

.hs-about__p {
	margin: 0 0 10px;
	font-size: 16px;
	line-height: 1.45;
	color: #000;
}

.hs-about__link,
.hs-about__link:visited {
	color: var(--hs-link, #0000ff) !important;
	font-weight: 400;
	text-decoration: underline !important;
}

.hs-about__link:hover,
.hs-about__link:focus-visible {
	color: var(--hs-link-hover, #0000cc) !important;
}

.hs-about__callout {
	margin: 0.5rem 0 0;
	font-family: var(--hs-font-display);
	font-size: 24px;
	font-weight: 700;
	line-height: 26px;
	color: var(--hs-bronze);
}

.hs-accent {
	color: var(--hs-orange-deep);
	font-weight: 700;
}

.hs-about__actions {
	margin-top: 24px;
}

.hs-front-page .hs-about .fusion-button,
.hs-front-page .hs-about .hs-btn {
	margin: 0 !important;
}

/* ----- Eligibility CTA (3065:363) ----- */
.hs-front-page .hs-eligibility {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	min-height: 364px;
	padding: 64px 0;
	text-align: center;
	color: var(--hs-white);
	background-color: var(--hs-orange-deep);
}

.hs-front-page .hs-eligibility .fusion-builder-row {
	width: min(100% - 8rem, 820px);
	margin-inline: auto;
	justify-content: center;
	--awb-margin-bottom-large: 0;
}

.hs-front-page .hs-eligibility__inner .fusion-column-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 0;
}

.hs-front-page .hs-eligibility .fusion-title-heading {
	margin: 0 !important;
	font-family: var(--hs-font-display) !important;
	font-size: clamp(1.85rem, 3.5vw, 3rem) !important;
	font-weight: 900 !important;
	line-height: 1.1 !important;
	letter-spacing: 0.01em;
	color: var(--hs-white) !important;
	text-align: center !important;
	max-width: 820px;
	margin-inline: auto !important;
	white-space: normal !important;
}

.hs-front-page .hs-eligibility .fusion-title {
	margin-bottom: 0 !important;
}

.hs-eligibility__p {
	margin: 0 auto;
	padding-top: 12px;
	max-width: 40rem;
	/* Size-first AA contrast on the deep-orange photo overlay. */
	font-size: 19px;
	font-weight: 700;
	line-height: 1.45;
	color: #fff;
}

.hs-eligibility__prose {
	margin-top: 0 !important;
}

.hs-eligibility__actions {
	margin-top: 20px;
}

.hs-front-page .hs-eligibility .fusion-button,
.hs-front-page .hs-eligibility .hs-btn {
	margin: 0 !important;
}

.hs-front-page .hs-eligibility a.hs-btn--teal {
	background: var(--hs-teal) !important;
	border-color: var(--hs-white) !important;
	color: var(--hs-ink) !important;
}

@media (max-width: 900px) {
	.hs-front-page .hs-steps .fusion-builder-row,
	.hs-front-page .hs-eligibility .fusion-builder-row {
		width: 100% !important;
		max-width: none !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		padding-left: 0;
		padding-right: 0;
	}

	.hs-front-page .hs-about .fusion-builder-row {
		width: 100% !important;
		max-width: none !important;
		margin-left: auto !important;
		margin-right: auto !important;
	}

	.hs-front-page .hs-hero .fusion-builder-row {
		flex-direction: column;
		flex-wrap: wrap !important;
		min-height: 0;
		padding: 32px 0 40px;
		text-align: left;
	}

	.hs-front-page .hs-hero__content,
	.hs-front-page .hs-hero__mascot {
		max-width: none;
		flex: 1 1 auto !important;
		width: 100% !important;
	}

	.hs-front-page .hs-hero__content .fusion-column-wrapper {
		gap: 24px;
		align-items: flex-start;
	}

	.hs-front-page .hs-hero .fusion-title-heading,
	.hs-front-page .hs-hero h1 {
		font-size: clamp(2.4rem, 11vw, 3.25rem) !important;
		line-height: 1 !important;
	}

	.hs-front-page .hs-hero__subtitle {
		font-size: 1.25rem;
	}

	.hs-front-page .hs-hero .fusion-button,
	.hs-front-page .hs-hero .hs-btn {
		display: flex !important;
		width: 100%;
		max-width: 320px;
		margin: 0 !important;
		justify-content: center;
	}

	.hs-hero__actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		margin-top: 32px;
		gap: 12px;
	}

	.hs-front-page .hs-hero__mascot {
		order: -1;
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	/* Mobile Home: larger centered owl (was ~260px and right-biased) */
	.hs-front-page .hs-hero__owl,
	.hs-front-page .hs-hero__mascot img,
	.hs-front-page .hs-hero__owl-lottie {
		width: min(320px, 82vw);
		max-width: min(320px, 82vw);
		height: min(320px, 82vw);
		max-height: min(320px, 82vw);
		margin-inline: auto;
	}

	.hs-front-page .hs-steps {
		padding: 48px 0;
	}

	.hs-front-page .hs-steps--timeline .fusion-builder-row {
		flex-wrap: wrap !important;
		flex-direction: column;
		align-items: stretch;
	}

	.hs-front-page .hs-steps--timeline .fusion-builder-row::before {
		display: none;
	}

	.hs-front-page .hs-steps--timeline .fusion-layout-column,
	.hs-front-page .hs-step-col {
		max-width: none !important;
		width: 100% !important;
	}

	.hs-step {
		flex-direction: row;
		align-items: flex-start;
		text-align: left;
		gap: 16px;
	}

	.hs-step__num {
		width: 50px;
		height: 50px;
		font-size: 28px;
	}

	.hs-step__title {
		font-size: 20px;
		line-height: 1.2;
	}

	.hs-front-page .hs-about {
		padding: 32px 1.5rem;
	}

	.hs-front-page .hs-about .fusion-builder-row {
		flex-direction: column;
		gap: 24px;
	}

	.hs-front-page .hs-about__media-col,
	.hs-front-page .hs-about__photo,
	.hs-front-page .hs-about__media-col img {
		min-height: 240px;
	}

	.hs-about__callout {
		font-size: 20px;
		line-height: 1.25;
	}

	.hs-front-page .hs-eligibility {
		min-height: 0;
		/* Match About / body inset (1.5rem); Fusion row width was losing to inline 100%. */
		padding: 48px 1.5rem;
		text-align: left;
	}

	.hs-front-page .hs-eligibility .fusion-layout-column,
	.hs-front-page .hs-eligibility__inner .fusion-column-wrapper {
		margin-left: 0 !important;
		margin-right: 0 !important;
	}

	.hs-front-page .hs-eligibility__inner .fusion-column-wrapper {
		align-items: flex-start;
		text-align: left;
	}

	.hs-front-page .hs-eligibility .fusion-title-heading,
	.hs-front-page .hs-eligibility .hs-eligibility__p {
		margin-left: 0 !important;
		margin-right: 0 !important;
		text-align: left !important;
	}
}

/* Footer — Figma desktop (3065:1494) / mobile (3065:1885) */
.hs-footer {
	display: grid;
	grid-template-columns: minmax(var(--hs-page-gutter, 2rem), 1fr) minmax(0, var(--hs-container, 1312px)) minmax(var(--hs-page-gutter, 2rem), 1fr);
	padding: 32px 0;
	border-top: 4px solid var(--hs-teal);
	background: var(--hs-white);
}

.hs-footer .hs-container {
	grid-column: 2;
	width: 100%;
	max-width: none;
	margin: 0;
}

.hs-footer__grid {
	display: flex;
	align-items: flex-start;
	gap: 0;
}

.hs-footer__brand {
	width: 262px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.hs-footer__logo {
	width: 216px;
	height: auto;
	margin: 0;
	line-height: 0;
}

.hs-footer__logo svg,
.hs-footer__logo img {
	width: 216px;
	max-width: 100%;
	height: auto;
	display: block;
}

.hs-footer__copy {
	margin: 0;
	font-size: 13px;
	color: var(--hs-ink);
	max-width: 216px;
	line-height: 1.45;
}

.hs-footer__copy a {
	color: var(--hs-orange-deep) !important;
	font-weight: 700;
	font-size: 14px;
	text-decoration: underline !important;
}

.hs-footer__copy--mobile {
	display: none;
	max-width: none;
}

.hs-footer__main {
	flex: 1;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	gap: 48px;
	min-width: 0;
}

.hs-footer__links {
	display: flex;
	flex-direction: column;
	gap: 32px;
	width: 200px;
	flex-shrink: 0;
}

.hs-footer__col h2.hs-footer__heading,
.hs-footer__col h3 {
	margin: 0 0 8px;
	padding-bottom: 4px;
	font-family: var(--hs-font-display);
	/* Size-first large text (24px/700) + brand orange-deep for AA margin on white. */
	font-size: 24px;
	font-weight: 700;
	line-height: 26px;
	color: var(--hs-orange-deep);
}

.hs-footer .hs-contact > h2.hs-footer__heading,
.hs-footer .hs-contact > h3 {
	margin: 0 0 8px;
	font-family: var(--hs-font-display);
	font-size: 24px;
	font-weight: 700;
	line-height: 26px;
	color: var(--hs-ink) !important;
}

.hs-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.hs-footer__col li + li {
	margin-top: 0;
}

.hs-footer__col a {
	color: var(--hs-orange-deep) !important;
	text-decoration: underline !important;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.2;
	transition: color 0.15s ease;
}

.hs-footer__col a:hover,
.hs-footer__col a:focus-visible {
	color: #6c5b4c !important;
}

.hs-footer__translate p {
	margin: 0 0 8px;
	font-family: var(--hs-font-display);
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.28px;
	color: #000;
}

.hs-google-translate {
	min-height: 40px;
	width: 100%;
}

.hs-google-translate .goog-te-gadget {
	font-family: inherit !important;
	font-size: 13px !important;
	color: #000 !important;
}

.hs-google-translate .goog-te-gadget .goog-te-combo {
	display: block;
	width: 100%;
	max-width: none;
	min-height: 40px;
	margin: 0 !important;
	padding: 10px;
	border: 1px solid var(--hs-line);
	border-radius: 0;
	background: var(--hs-white);
	color: #000;
	font-family: inherit;
	font-size: 13px !important;
	line-height: 1.3;
	cursor: pointer;
}

/* Attribution moved above the select via JS (.hs-google-translate-brand).
   Hide only leftover “Powered by” chrome that still follows the dropdown. */
.hs-google-translate .goog-te-gadget > span {
	display: none !important;
}

.hs-google-translate .hs-google-translate-brand {
	display: block;
	margin: 0 0 8px;
	font-family: inherit;
	font-size: 13px;
	line-height: 1.3;
	color: #000;
	white-space: normal;
}

.hs-google-translate .hs-google-translate-brand a,
.hs-google-translate .hs-google-translate-brand img {
	display: inline !important;
	vertical-align: middle;
	color: #000 !important;
	text-decoration: none !important;
}

/* Keep layout stable when Google injects its top bar */
.goog-te-banner-frame {
	display: none !important;
}

body {
	top: 0 !important;
}

.skiptranslate iframe.skiptranslate {
	visibility: hidden !important;
}

/*
 * Google Translate "Rate this translation" voting chrome injects 5 unlabeled
 * text inputs (#goog-gt-votingInput*). Hide feedback UI — language <select>
 * in the footer remains. Cross-origin iframe internals cannot be patched.
 */
#goog-gt-vt,
.VIpgJd-yAWNEb-hvhgNd {
	display: none !important;
	visibility: hidden !important;
}

.hs-select {
	width: 100%;
	max-width: 220px;
	min-height: 38px;
	border: 1px solid var(--hs-line);
	border-radius: 0;
	padding: 0.35rem 0.6rem;
	background: var(--hs-white);
	color: var(--hs-muted);
}

.hs-footer__form-wrap {
	width: 500px;
	max-width: 100%;
	flex-shrink: 0;
	position: relative;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.hs-contact {
	border: 3px solid #835638;
	border-radius: 0;
	padding: 24px;
	background: var(--hs-white);
	display: flex;
	flex-direction: column;
	gap: 8px;
	position: relative;
	z-index: 1;
	transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Contact spotlight — dim page + glow the form when Contact is clicked */
.hs-contact-backdrop {
	position: fixed;
	inset: 0;
	z-index: 80;
	margin: 0;
	padding: 0;
	border: 0;
	background: rgba(40, 32, 25, 0.48);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	cursor: pointer;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

body.hs-contact-spotlight .hs-contact-backdrop {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

body.hs-contact-spotlight .hs-footer__form-wrap,
body.hs-contact-spotlight .hs-contact {
	z-index: 90;
}

/* Fusion's footer container/row is its own stacking context (position: relative;
   z-index: 10), so the panel cannot rise above the fixed backdrop from inside it
   and the white form gets tinted by the dim layer. */
body.hs-contact-spotlight .fusion-tb-footer .fusion-fullwidth,
body.hs-contact-spotlight .fusion-tb-footer .fusion-builder-row {
	z-index: 90;
}

/* Keep the form panel pure white in the highlighted / hash-target state. */
body.hs-contact-spotlight .hs-footer__form-wrap,
body.hs-contact-spotlight .hs-contact,
#hs-contact-panel:target,
#hs-contact-panel:target .hs-contact {
	background-color: var(--hs-white, #fff);
}

body.hs-contact-spotlight .hs-contact {
	border-color: #835638;
	box-shadow:
		0 0 0 4px rgba(131, 86, 56, 0.45),
		0 0 0 10px rgba(131, 86, 56, 0.18),
		0 18px 48px rgba(40, 32, 25, 0.28);
	animation: hs-contact-glow 1.6s ease-in-out 1;
}

@keyframes hs-contact-glow {
	0%,
	100% {
		box-shadow:
			0 0 0 4px rgba(131, 86, 56, 0.45),
			0 0 0 10px rgba(131, 86, 56, 0.18),
			0 18px 48px rgba(40, 32, 25, 0.28);
	}
	50% {
		box-shadow:
			0 0 0 6px rgba(131, 86, 56, 0.62),
			0 0 0 16px rgba(131, 86, 56, 0.24),
			0 22px 56px rgba(40, 32, 25, 0.32);
	}
}

@media (prefers-reduced-motion: reduce) {
	body.hs-contact-spotlight .hs-contact {
		animation: none;
	}
}

.hs-contact__notice {
	margin: 0 0 0.5rem;
	padding: 0.65rem 0.75rem;
	font-size: 0.92rem;
}

.hs-contact__notice--success {
	background: #e8f6e8;
	color: #1f5d2a;
}

.hs-contact__notice--error {
	background: #fdeaea;
	color: #8a1f1f;
}

.hs-required {
	color: var(--hs-alert-ink, #8a1f1f);
	font-weight: 700;
	margin-left: 0.15em;
}

.hs-contact__name {
	border: 0;
	margin: 0;
	padding: 0;
	min-width: 0;
}

.hs-contact__name legend {
	padding: 0;
	margin: 0 0 6px;
	font-size: 16px;
	font-weight: 700;
	color: var(--hs-ink);
}

.hs-contact__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}

.hs-contact__row--meta {
	margin-top: 8px;
}

.hs-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
	margin: 0;
}

.hs-field label {
	font-size: 16px;
	font-weight: 700;
	color: var(--hs-ink);
	line-height: 1.2;
}

.hs-field--stacked label {
	order: 2;
	font-size: 13px;
	font-weight: 400;
	color: var(--hs-bronze);
}

.hs-field--stacked input {
	order: 1;
}

.hs-field input,
.hs-field textarea {
	width: 100%;
	min-height: 41px;
	padding: 8px 12px;
	border: 2px solid var(--hs-teal);
	border-radius: 0;
	font: inherit;
	font-size: 16px;
	color: var(--hs-ink);
	background: var(--hs-white);
	box-sizing: border-box;
}

.hs-field input:focus,
.hs-field textarea:focus {
	outline: 2px solid var(--hs-teal-deep);
	outline-offset: 1px;
}

.hs-field textarea {
	resize: vertical;
	min-height: 80px;
	padding: 12px 16px;
}

.hs-contact .hs-btn--block {
	margin-top: 8px;
	min-height: 40px;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.2px;
	border-width: 2px;
	border-color: var(--hs-white);
}

/* Responsive */
@media (max-width: 1200px) {
	.hs-footer {
		padding: 32px;
	}

	.hs-footer__main {
		gap: 32px;
	}

	.hs-footer__form-wrap {
		width: min(500px, 100%);
	}
}

@media (max-width: 980px) {
	.hs-footer__grid {
		flex-direction: column;
		gap: 32px;
	}

	.hs-footer__brand {
		width: 100%;
		align-items: center;
		text-align: center;
	}

	.hs-footer__copy--desktop {
		display: none;
	}

	.hs-footer__copy--mobile {
		display: block;
		margin-top: 8px;
	}

	.hs-footer__main {
		width: 100%;
		flex-direction: column;
		align-items: stretch;
		gap: 24px;
	}

	.hs-footer__links {
		width: 100%;
		gap: 16px;
	}

	.hs-footer__form-wrap {
		width: 100%;
	}

	.hs-contact {
		padding: 16px;
	}

	.hs-contact__row--name,
	.hs-contact__row--meta {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 900px) {
	.hs-header {
		padding: 24px var(--hs-page-gutter) 10px !important;
		gap: 0;
	}

	.hs-header__rule {
		display: none;
	}

	.hs-header__actions {
		display: flex;
		flex: 0 0 auto;
		align-items: center;
		gap: 8px;
		margin-left: auto;
		z-index: 70;
	}

	.hs-nav-toggle {
		display: grid;
		place-items: center;
		flex: 0 0 auto;
		width: 44px;
		height: 44px;
		min-width: 44px;
		min-height: 44px;
		border-radius: 32px;
		background: transparent;
		/* Size-first a11y: larger tap target; keep brand ink on white */
		color: var(--hs-ink, #282019);
	}

	.hs-header__actions .hs-search__toggle {
		width: 44px;
		height: 44px;
		min-width: 44px;
		min-height: 44px;
	}

	.hs-logo {
		flex: 1 1 auto;
		min-width: 0;
		max-width: calc(100% - 110px);
	}

	.hs-logo svg,
	.hs-logo img {
		width: 200px;
		height: auto;
	}

	/* Figma mobile Header Open (2287:22651) — full-screen tap menu, no hover */
	html.hs-nav-mobile-open,
	html.hs-nav-mobile-open body {
		overflow: hidden;
	}

	/* Figma 2287:22651 — 24px sides, 32px top; tighten top so logo/X aren’t pushed down */
	.hs-nav {
		position: fixed;
		inset: 0;
		width: 100%;
		height: 100%;
		max-height: 100dvh;
		background: #fff;
		border: 0;
		padding: 24px 24px 32px;
		padding-top: max(24px, env(safe-area-inset-top, 0px));
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 32px; /* was 64px — excessive top gap vs live QA notes */
		z-index: 200;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.hs-nav.is-open {
		display: flex;
	}

	.hs-nav__mobile-top {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		flex: 0 0 auto;
	}

	.hs-nav__mobile-mark img {
		display: block;
		width: 45px;
		height: 43px;
	}

	.hs-nav__mobile-close {
		display: grid;
		place-items: center;
		width: 40px;
		height: 40px;
		padding: 0;
		border: 0;
		border-radius: 32px;
		background: transparent;
		cursor: pointer;
		touch-action: manipulation;
	}

	.hs-header__inner {
		position: relative;
	}

	.hs-nav__list {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 8px;
		width: 100%;
	}

	.hs-nav__list--tools {
		margin-top: 0;
		padding-top: 0;
		border-top: 0;
	}

	.hs-nav__item a {
		justify-content: space-between;
		width: 100%;
		min-height: 44px;
		box-sizing: border-box;
	}

	/* Submenus: in-flow accordion (not hover flyout) */
	.hs-nav__item.has-children {
		position: static;
	}

	.hs-nav__item.has-children > .hs-nav__sub,
	.hs-nav__item.has-children:hover > .hs-nav__sub,
	.hs-nav__item.has-children:focus-within > .hs-nav__sub {
		display: none;
		position: static;
		min-width: 0;
		margin: 4px 0 0;
		box-shadow: none;
	}

	.hs-nav__item.has-children.is-open > .hs-nav__sub {
		display: block;
	}

	.hs-nav__sub::before {
		display: none;
	}

	.hs-nav__search {
		display: none;
	}

	.hs-header__actions .hs-search {
		display: flex;
	}

	/* When drawer open, hide collapsed header chrome under overlay */
	html.hs-nav-mobile-open .hs-header__rule {
		display: none;
	}

	.hs-hero__inner {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 2.5rem 0 2.75rem;
		min-height: 0;
		gap: 1.5rem;
	}

	.hs-hero__mascot {
		order: -1;
	}

	.hs-hero__mascot img {
		width: min(220px, 55%);
	}

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

	.hs-hero__actions .hs-btn {
		width: min(100%, 280px);
	}

	.hs-steps__list {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}

	.hs-steps__list::before {
		display: none;
	}

	.hs-step {
		flex-direction: row;
		text-align: left;
		align-items: flex-start;
		gap: 1rem;
	}

	.hs-step__num {
		width: 50px;
		height: 50px;
		flex-shrink: 0;
		font-size: 1.5rem;
	}

	.hs-about__grid {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}

	.hs-about__media {
		min-height: 240px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hs-hero__mascot img,
	.hs-step,
	.hs-step__num,
	.hs-btn {
		animation: none !important;
		transition: none !important;
		transform: none !important;
		filter: none !important;
	}

	.hs-step {
		opacity: 1;
	}
}

/*
 * Google Translate attribution: show above the language dropdown
 * (.hs-google-translate-brand via home.js). Hide only chrome that still
 * follows the <select> (direct gadget children after the select wrap).
 */
.hs-google-translate .goog-te-gadget > span,
.hs-google-translate .goog-te-gadget > font,
.hs-google-translate .goog-te-gadget > a[href*="translate.google"],
.hs-fb-footer-translate .goog-te-gadget > span,
.hs-fb-footer-translate .goog-te-gadget > font,
.hs-fb-footer-translate .goog-te-gadget > a[href*="translate.google"] {
	display: none !important;
}
/* Orphan “Powered by” text node after the select (not inside brand wrapper) */
.hs-google-translate .goog-te-gadget {
	font-size: 0 !important;
}
.hs-google-translate .goog-te-gadget .goog-te-combo,
.hs-google-translate .hs-google-translate-brand,
.hs-google-translate .hs-google-translate-brand * {
	font-size: 13px !important;
	color: #000 !important;
}

/* Footer nav is always a simple list — never a hamburger */
.fusion-tb-footer .hs-fb-footer-menu .awb-menu__m-toggle {
	display: none !important;
}
.fusion-tb-footer .hs-fb-footer-menu.collapse-enabled .awb-menu__main-ul,
.fusion-tb-footer .hs-fb-footer-menu .awb-menu__main-ul {
	display: flex !important;
	flex-direction: column !important;
	position: static !important;
	height: auto !important;
	visibility: visible !important;
	opacity: 1 !important;
}

/* Home mobile padding polish (R138/R139, R200–R202) */
@media (max-width: 640px) {
	.hs-front-page .hs-hero .fusion-builder-row {
		padding-top: 0px !important;
		padding-bottom: 32px !important;
		gap: 0px !important;
	}
	.hs-front-page .hs-hero__content .fusion-column-wrapper {
		gap: 0px;
	}
	.hs-front-page .hs-hero__mascot {
		padding-top: 0 !important;
		padding-bottom: 0 !important;
		margin-bottom: 0 !important;
		max-width: 320px !important;
	}
	/* Fusion wraps the Lottie element in a paragraph; remove its 16px block margins. */
	.hs-front-page .hs-hero__owl-wrap > p {
		margin: 0 !important;
	}
	.hs-front-page .hs-hero__owl,
	.hs-front-page .hs-hero__owl-lottie,
	.hs-front-page .hs-hero__mascot img {
		width: min(320px, 82vw) !important;
		max-width: min(320px, 82vw) !important;
		height: min(320px, 82vw) !important;
		max-height: min(320px, 82vw) !important;
	}
	/* Keep the requested mobile headline to exactly two lines at 390px. */
	.hs-front-page .hs-hero .fusion-title-heading,
	.hs-front-page .hs-hero h1 {
		max-width: 100%;
		font-size: 36px !important;
		line-height: 1 !important;
		text-wrap: balance;
	}
	.hs-front-page .hs-home-content .fusion-title:not(.hs-eligibility__heading) {
		margin-bottom: 0rem !important;
	}
	/* Keep the split title/timeline containers visually contiguous on mobile. */
	.hs-front-page .hs-steps--title {
		padding: 48px 0 0 !important;
	}
	.hs-front-page .hs-steps--timeline {
		padding: 12px 0 48px !important;
	}
}

/* Global Layout chrome parity — Figma 3034:1265 / legacy dev reference */
.fusion-tb-header,
.fusion-tb-header .hs-fb-header.fusion-fullwidth,
.fusion-tb-header .hs-fb-header-rule.fusion-fullwidth {
	background: var(--hs-white, #fff) !important;
}

.fusion-tb-header {
	position: relative;
	z-index: 1000;
	overflow: visible !important;
}

.fusion-tb-header .hs-fb-header {
	padding: 32px 32px 0 !important;
}

.fusion-tb-header .hs-fb-header .fusion-builder-row {
	height: 42px;
	min-height: 42px;
}

.fusion-tb-header .fusion-builder-row,
.fusion-tb-footer .fusion-builder-row {
	max-width: var(--hs-container, 1312px) !important;
}

.fusion-tb-header .hs-fb-header__logo-col {
	flex-basis: 300px !important;
	max-width: 300px !important;
}

.fusion-tb-header .hs-fb-logo img {
	display: block;
	width: 300px !important;
	max-width: 100% !important;
	height: auto !important;
}

.fusion-tb-header .hs-fb-mobile-mark {
	display: none !important;
}

.fusion-tb-header .hs-fb-header__nav-col .fusion-column-wrapper {
	gap: 12px !important;
	height: 42px;
	min-height: 42px;
}

.fusion-tb-header .hs-fb-main-menu .awb-menu__main-ul,
.fusion-tb-header .hs-fb-main-menu .awb-menu__main-li {
	align-items: center !important;
	height: 32px !important;
	min-height: 32px !important;
}

.fusion-tb-header .hs-fb-main-menu .awb-menu__main-a {
	box-sizing: border-box;
	height: 32px !important;
	min-height: 32px !important;
	border: 0 !important;
	padding: 6px 12px !important;
	color: var(--hs-bronze, #6c5b4c) !important;
	font-family: var(--hs-font-nav, gotham, sans-serif) !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1 !important;
}

.fusion-tb-header .hs-fb-main-menu .awb-menu__main-li:nth-child(1) > .awb-menu__main-a {
	flex: 0 0 75px;
	width: 75px;
}

.fusion-tb-header .hs-fb-main-menu .awb-menu__main-li:nth-child(2) > .awb-menu__main-a {
	flex: 0 0 126px;
	width: 126px;
}

.fusion-tb-header .hs-fb-main-menu .awb-menu__main-li:nth-child(3) > .awb-menu__main-a {
	flex: 0 0 118px;
	width: 118px;
}

.fusion-tb-header .hs-fb-main-menu .awb-menu__main-li:nth-child(4) > .awb-menu__main-a {
	flex: 0 0 59px;
	width: 59px;
}

.fusion-tb-header .hs-fb-main-menu .awb-menu__main-li:nth-child(5) > .awb-menu__main-a {
	flex: 0 0 132px;
	width: 132px;
}

.fusion-tb-header .hs-fb-main-menu .awb-menu__main-li:nth-child(6) > .awb-menu__main-a {
	flex: 0 0 89px;
	width: 89px;
}

.fusion-tb-header .hs-fb-main-menu .awb-menu__main-li:nth-child(1),
.fusion-tb-header .hs-fb-main-menu .awb-menu__main-li:nth-child(3),
.fusion-tb-header .hs-fb-main-menu .awb-menu__main-li:nth-child(4),
.fusion-tb-header .hs-fb-main-menu .awb-menu__main-li:nth-child(6),
.fusion-tb-header .hs-fb-main-menu .awb-menu__main-li:nth-child(1) > .awb-menu__main-a,
.fusion-tb-header .hs-fb-main-menu .awb-menu__main-li:nth-child(3) > .awb-menu__main-a,
.fusion-tb-header .hs-fb-main-menu .awb-menu__main-li:nth-child(4) > .awb-menu__main-a,
.fusion-tb-header .hs-fb-main-menu .awb-menu__main-li:nth-child(6) > .awb-menu__main-a {
	height: 31px !important;
	min-height: 31px !important;
}

.fusion-tb-header .hs-fb-main-menu .awb-menu__main-li:not(.current-menu-item):not(.current-menu-ancestor) > .awb-menu__main-a:hover,
.fusion-tb-header .hs-fb-main-menu .awb-menu__main-li:not(.current-menu-item):not(.current-menu-ancestor) > .awb-menu__main-a:focus-visible {
	background: var(--hs-teal, #a3d9d2) !important;
	color: var(--hs-ink, #282019) !important;
}

.fusion-tb-header .hs-fb-main-menu .current-menu-item > .awb-menu__main-a,
.fusion-tb-header .hs-fb-main-menu .current-menu-ancestor > .awb-menu__main-a,
.fusion-tb-header .hs-fb-main-menu .awb-menu__main-a[aria-current="page"] {
	background: var(--hs-teal, #a3d9d2) !important;
	color: var(--hs-ink, #282019) !important;
}

/* Dropdown caret: Figma bronze chevron instead of Avada's "\f107" awb-icons
   glyph. The awb-icons @font-face is emitted into Fusion's generated dynamic
   CSS, so it carries the generating environment's absolute URLs and dies on
   any other origin. Masking a theme SVG keeps the caret origin-independent. */
.fusion-tb-header .hs-fb-main-menu .awb-menu__open-nav-submenu-hover::before,
.fusion-tb-header .hs-fb-main-menu .awb-menu__open-nav-submenu_click::before,
.fusion-tb-header .hs-fb-main-menu .awb-menu__open-nav-submenu_mobile::before {
	content: "" !important;
	display: block;
	width: 12px;
	height: 8px;
	background-color: currentColor;
	-webkit-mask: url("../images/brand/icon-chevron.svg") no-repeat center center / 12px 8px;
	mask: url("../images/brand/icon-chevron.svg") no-repeat center center / 12px 8px;
}

.fusion-tb-header .hs-fb-main-menu .awb-menu__sub-ul {
	top: 57px !important;
	z-index: 1001 !important;
	min-width: 248px !important;
	padding: 12px !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: var(--hs-bronze, #6c5b4c) !important;
	box-shadow: 0 12px 28px rgba(40, 32, 25, 0.18) !important;
}

.fusion-tb-header .hs-fb-main-menu .awb-menu__sub-a {
	padding: 6px 12px !important;
	border: 0 !important;
	background: transparent !important;
	color: #fff !important;
	font-family: var(--hs-font-nav, gotham, sans-serif) !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1.35 !important;
}

.fusion-tb-header .hs-fb-main-menu .awb-menu__sub-li {
	border: 0 !important;
	background: transparent !important;
}

.fusion-tb-header .hs-fb-main-menu .awb-menu__sub-a:hover,
.fusion-tb-header .hs-fb-main-menu .awb-menu__sub-a:focus-visible {
	background: rgba(255, 255, 255, 0.12) !important;
}

/* Keep the native Fusion Search element as Figma's icon, then expand on tap. */
.fusion-tb-header .hs-fb-header-search,
.fusion-tb-header .fusion-search-element.hs-fb-header-search {
	flex: 0 0 20px !important;
	width: 20px !important;
	height: 20px !important;
	min-width: 20px !important;
	max-width: 20px !important;
	transition: none !important;
}

.fusion-tb-header .hs-fb-header-search .fusion-search-form-content {
	display: flex;
	justify-content: flex-end;
	height: 20px;
	border: 0 !important;
	background: transparent !important;
}

.fusion-tb-header .hs-fb-header-search .fusion-search-field {
	display: none;
}

.fusion-tb-header .hs-fb-header-search .fusion-search-button {
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
}

.fusion-tb-header .hs-fb-header-search .fusion-search-submit {
	width: 20px !important;
	height: 20px !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	background-image: url("../images/brand/icon-search.svg") !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	background-size: 20px 20px !important;
	color: var(--hs-bronze, #6c5b4c) !important;
	font-size: 0 !important;
}

.fusion-tb-header .hs-fb-header-search .fusion-search-submit:hover,
.fusion-tb-header .hs-fb-header-search .fusion-search-submit:focus-visible {
	background: var(--hs-teal, #a3d9d2) !important;
}

.fusion-tb-header .hs-fb-header-search.is-open {
	flex-basis: 260px !important;
	width: 260px !important;
	max-width: 260px !important;
}

.fusion-tb-header .hs-fb-header-search.is-open .fusion-search-form-content {
	padding: 0 4px 0 14px;
	border: 3px solid #cec487 !important;
	border-radius: 9999px !important;
	background: #fff !important;
}

.fusion-tb-header .hs-fb-header-search.is-open .fusion-search-field {
	display: block;
	flex: 1 1 auto;
	min-width: 0;
}

.fusion-tb-header .hs-fb-header-search .fusion-search-field input {
	height: 38px !important;
	padding: 0 !important;
	border: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--hs-bronze, #6c5b4c) !important;
	font-size: 13px !important;
}

.fusion-tb-header .hs-fb-header-rule.fusion-fullwidth {
	margin-top: 20px !important;
	padding: 0 32px 10px !important;
}

.fusion-tb-header .hs-fb-header-rule__col .fusion-column-wrapper {
	height: 13.529px;
	min-height: 13.529px;
	max-height: 13.529px;
}

.fusion-tb-header .hs-fb-header-rule__col .fusion-image-element:first-child {
	position: absolute;
	inset: 1.292px 0 auto;
	width: 100%;
	height: 12.245px;
}

.fusion-tb-header .hs-fb-header-rule__line,
.fusion-tb-header .hs-fb-header-rule__line img {
	height: 12.245px !important;
}

.fusion-tb-header .hs-fb-header-rule__line img {
	content: url("../images/brand/nav-underline.png");
	width: 100% !important;
	object-fit: fill;
}

.fusion-tb-header .hs-fb-header-rule__knot {
	display: none !important;
}

.fusion-tb-header .hs-fb-header-rule__knot img {
	position: static !important;
	width: 6.182px !important;
	max-width: 6.182px !important;
	height: 6.233px !important;
	transform: none !important;
}

/* Footer mirrors the white Figma/dev composition, not Avada's dark preset. */
.hs-front-page .fusion-tb-footer.fusion-footer,
.hs-interior-page .fusion-tb-footer.fusion-footer,
.hs-search-results-page .fusion-tb-footer.fusion-footer,
.hs-404-page .fusion-tb-footer.fusion-footer,
.fusion-tb-footer {
	display: block !important;
	background: #fff !important;
}

.fusion-tb-footer .fusion-footer-widget-area {
	padding: 0 !important;
	border: 0 !important;
	background: #fff !important;
}

.fusion-tb-footer .hs-fb-footer.fusion-fullwidth {
	box-sizing: border-box;
	min-height: 491px;
	padding: 28px 64px 32px !important;
	border-top: 4px solid var(--hs-teal, #a3d9d2) !important;
	background: #fff !important;
	color: var(--hs-ink, #282019) !important;
}

.fusion-tb-footer .hs-fb-footer .fusion-builder-row {
	display: grid !important;
	grid-template-columns: 262px 302px 200px 548px;
	justify-content: start;
	align-items: start;
	gap: 0;
	height: 427px;
	min-height: 427px;
}

.fusion-tb-footer .hs-fb-footer__brand,
.fusion-tb-footer .hs-fb-footer__nav,
.fusion-tb-footer .hs-fb-footer__legal,
.fusion-tb-footer .hs-fb-footer__contact {
	width: auto !important;
	max-width: none !important;
	margin: 0 !important;
}

.fusion-tb-footer .hs-fb-footer__brand {
	grid-column: 1;
}

.fusion-tb-footer .hs-fb-footer__nav {
	grid-column: 2;
}

.fusion-tb-footer .hs-fb-footer__legal {
	grid-column: 3;
}

.fusion-tb-footer .hs-fb-footer__contact {
	grid-column: 4;
}

.fusion-tb-footer .hs-fb-footer__brand .fusion-column-wrapper {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.fusion-tb-footer .hs-fb-footer-logo,
.fusion-tb-footer .hs-fb-footer-logo img {
	display: block;
	width: 215.08px !important;
	max-width: 215.08px !important;
	height: 212.98px !important;
}

.fusion-tb-footer .hs-fb-footer-copy,
.fusion-tb-footer .hs-fb-footer-copy p {
	max-width: 216px;
	margin: 0 !important;
	color: var(--hs-ink, #282019) !important;
	font-size: 13px !important;
	line-height: 1.45 !important;
}

.fusion-tb-footer .hs-fb-footer-copy a {
	color: var(--hs-link, #0000ff) !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	text-decoration: underline !important;
}

.fusion-tb-footer .hs-fb-footer-heading {
	margin: 0 0 8px !important;
}

.fusion-tb-footer .hs-fb-footer-heading .fusion-title-heading,
.fusion-tb-footer .hs-fb-footer-heading h2 {
	margin: 0 !important;
	color: var(--hs-orange, #ef6d01) !important;
	font-family: var(--hs-font-nav, gotham, sans-serif) !important;
	font-size: 24px !important;
	font-weight: 700 !important;
	line-height: 26px !important;
}

.fusion-tb-footer .hs-fb-footer__contact .hs-fb-footer-heading .fusion-title-heading,
.fusion-tb-footer .hs-fb-footer__contact .hs-fb-footer-heading h2 {
	color: var(--hs-ink, #282019) !important;
}

.fusion-tb-footer .hs-fb-footer-menu .awb-menu__main-ul {
	gap: 12px !important;
	margin-bottom: 32px !important;
}

.fusion-tb-footer .hs-fb-footer-menu .awb-menu__main-li {
	height: 19.2px !important;
	min-height: 19.2px !important;
	margin: 0 !important;
}

.fusion-tb-footer .hs-fb-footer-menu .awb-menu__main-li:has(> a[href$="#contact"]) {
	display: none !important;
}

.fusion-tb-footer .hs-fb-footer-menu .awb-menu__main-a,
.fusion-tb-footer .hs-fb-footer-legal,
.fusion-tb-footer .hs-fb-footer-legal a {
	padding: 0 !important;
	color: var(--hs-link, #0000ff) !important;
	font-family: var(--hs-font-body, Arial, sans-serif) !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 1.2 !important;
	text-decoration: underline !important;
}

.fusion-tb-footer .hs-fb-footer-menu .awb-menu__main-a:hover,
.fusion-tb-footer .hs-fb-footer-menu .awb-menu__main-a:focus-visible,
.fusion-tb-footer .hs-fb-footer-legal a:hover,
.fusion-tb-footer .hs-fb-footer-legal a:focus-visible {
	color: var(--hs-link-hover, #0000cc) !important;
}

/* Current page matches hover color; Avada sets active color on .menu-text. */
.fusion-tb-footer .hs-fb-footer-menu .awb-menu__main-li.current-menu-item > .awb-menu__main-a,
.fusion-tb-footer .hs-fb-footer-menu .awb-menu__main-li.current-menu-ancestor > .awb-menu__main-a,
.fusion-tb-footer .hs-fb-footer-menu .awb-menu__main-a[aria-current="page"],
.fusion-tb-footer .hs-fb-footer-menu .awb-menu__main-li.current-menu-item > .awb-menu__main-a .menu-text,
.fusion-tb-footer .hs-fb-footer-menu .awb-menu__main-li.current-menu-ancestor > .awb-menu__main-a .menu-text,
.fusion-tb-footer .hs-fb-footer-menu .awb-menu__main-a[aria-current="page"] .menu-text,
.fusion-tb-footer .hs-fb-footer-menu .awb-menu__main-a:hover .menu-text,
.fusion-tb-footer .hs-fb-footer-menu .awb-menu__main-a:focus-visible .menu-text {
	color: var(--hs-link-hover, #0000cc) !important;
}

.fusion-tb-footer .hs-fb-footer-legal__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 0 0 32px;
}

.fusion-tb-footer .hs-fb-footer-legal__list li {
	margin: 0;
}

.fusion-tb-footer .hs-fb-footer-legal__list li:last-child a {
	display: block;
	max-width: 200px;
}

.fusion-tb-footer .hs-google-translate .goog-te-gadget .goog-te-combo {
	box-sizing: border-box;
	height: 40px !important;
	min-height: 40px !important;
}

.fusion-tb-footer .hs-google-translate .hs-google-translate-brand,
.fusion-tb-footer .hs-google-translate .hs-google-translate-brand * {
	font-family: var(--hs-font-nav, gotham, sans-serif) !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	line-height: 17px !important;
	letter-spacing: -0.28px !important;
}

.fusion-tb-footer .hs-fb-footer__contact {
	justify-self: end;
	width: 500px !important;
	max-width: 100% !important;
	min-height: 427px;
}

.fusion-tb-footer .hs-fb-footer__contact .hs-footer__form-wrap {
	width: 100%;
	max-width: 100%;
}

/* min-height, not height: validation messages and the inline confirmation
   grow the panel and would otherwise be clipped. */
.fusion-tb-footer .hs-fb-footer__contact .hs-contact {
	box-sizing: border-box;
	min-height: 427px;
	padding: 21px;
	border: 3px solid #835638;
	background: #fff;
}

.fusion-tb-footer .hs-footer__contact-heading {
	margin: 0 !important;
	color: var(--hs-ink, #282019) !important;
	font-family: var(--hs-font-nav, gotham, sans-serif) !important;
	font-size: 24px !important;
	font-weight: 700 !important;
	line-height: 26px !important;
}

.fusion-tb-footer .hs-contact .hs-field input,
.fusion-tb-footer .hs-contact .hs-field textarea {
	box-sizing: border-box !important;
	width: 100% !important;
	height: 41px !important;
	min-height: 41px !important;
	padding: 8px 12px !important;
	border: 2px solid var(--hs-teal, #a3d9d2) !important;
	border-radius: 0 !important;
	background: #fff !important;
	box-shadow: none !important;
}

.fusion-tb-footer .hs-contact .hs-field textarea {
	height: 80px !important;
	min-height: 80px !important;
	padding: 12px 16px !important;
}

.fusion-tb-footer .hs-contact__name legend,
.fusion-tb-footer .hs-contact .hs-field label {
	line-height: 19.2px !important;
}

.fusion-tb-footer .hs-contact .hs-field label {
	margin: 0 !important;
}

.fusion-tb-footer .hs-contact .hs-field--stacked {
	gap: 4px;
}

.fusion-tb-footer .hs-contact .hs-field--stacked label {
	line-height: 16px !important;
}

.fusion-tb-footer .hs-contact > p.hs-contact__row {
	display: block;
	height: 40px;
	margin: 8px 0 0 !important;
}

.fusion-tb-footer .hs-contact .hs-fb-btn--primary {
	width: 100% !important;
	height: 40px !important;
	min-height: 40px !important;
	margin-top: 8px !important;
	border-color: var(--hs-white, #fff) !important;
	background: var(--hs-teal, #a3d9d2) !important;
	color: var(--hs-ink, #282019) !important;
	font-size: 20px !important;
	font-weight: 600 !important;
}

.fusion-tb-footer .hs-fb-footer-copy--mobile {
	display: none;
}

/* ===========================================================================
 * Footer contact form (Gravity Forms)
 *
 * The footer form is a Gravity Forms form rendered with GF's "orbital" theme.
 * These rules map GF's markup onto the Figma contact panel: 41px teal-bordered
 * inputs, bold 0.95rem labels, First/Last labels under their inputs, and the
 * teal full-width submit. Scoped to `.hs-contact--gf` so the Global Layout
 * footer and the PHP fallback footer render identically.
 *
 * !important throughout: GF's theme stylesheets load after this file.
 * ======================================================================== */

.hs-contact--gf .gform_wrapper {
	width: 100%;
	margin: 0 !important;
	font-family: inherit;
	font-size: inherit;
}

/* The asterisk legend is redundant next to the visible markers, but keep it
   reachable for screen readers. */
.hs-contact--gf .gform_heading,
.hs-contact--gf .gform_required_legend {
	position: absolute !important;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.hs-contact--gf .gform_validation_container,
.hs-contact--gf .gfield--type-honeypot {
	display: none !important;
}

.hs-contact--gf .gform_fields {
	display: grid !important;
	grid-template-columns: repeat(12, 1fr) !important;
	row-gap: 8px !important;
	column-gap: 8px !important;
}

.hs-contact--gf .gfield {
	display: flex !important;
	flex-direction: column;
	gap: 6px !important;
	min-width: 0;
	margin: 0;
	padding: 0;
}

/* Name heading sits 6px above its inputs, not the 8px grid rhythm. */
.hs-contact--gf .hs-gf-first,
.hs-contact--gf .hs-gf-last {
	margin-block-start: -2px;
}

/* Email/Phone open a new block 16px below the name row. */
.hs-contact--gf .hs-gf-email,
.hs-contact--gf .hs-gf-phone {
	margin-block-start: 8px;
}

/* First/Last carry their labels beneath the input. Reordering the two children
   rather than reversing the column keeps validation messages last. */
.hs-contact--gf .hs-gf-sublabel {
	gap: 4px !important;
}

.hs-contact--gf .hs-gf-sublabel .ginput_container {
	order: 1;
}

.hs-contact--gf .hs-gf-sublabel .gfield_label {
	order: 2;
}

.hs-contact--gf .hs-gf-sublabel .gfield_validation_message {
	order: 3;
}

.hs-contact--gf .gsection,
.hs-contact--gf .hs-gf-name-section {
	border: 0 !important;
	padding: 0 !important;
}

.hs-contact--gf .gsection_title {
	margin: 0 !important;
	padding: 0 !important;
	font-family: inherit !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	line-height: 19.2px !important;
	color: var(--hs-ink, #282019) !important;
	border: 0 !important;
}

.hs-contact--gf .gfield_label {
	display: block !important;
	margin: 0 !important;
	padding: 0 !important;
	font-family: inherit !important;
	font-size: 0.95rem !important;
	font-weight: 700 !important;
	line-height: 19.2px !important;
	color: var(--hs-ink, #282019) !important;
}

.hs-contact--gf .hs-gf-sublabel .gfield_label {
	line-height: 16px !important;
}

.hs-contact--gf .gform-field-label__text {
	padding-inline-end: 0 !important;
}

/* font-size/line-height must inherit, or the asterisk grows the 16px sub-label
   line box and pushes every row below it down. */
.hs-contact--gf .gfield_required {
	margin-inline-start: 0;
	color: var(--hs-alert-ink, #8a1f1f) !important;
	font-family: inherit !important;
	font-size: inherit !important;
	font-weight: 700 !important;
	line-height: inherit !important;
}

/* Only the outer span carries the gap; gfield_required is nested twice. */
.hs-contact--gf .gfield_label > .gfield_required {
	margin-inline-start: 0.4em;
}

.hs-contact--gf .ginput_container {
	margin: 0 !important;
}

.hs-contact--gf .gfield input,
.hs-contact--gf .gfield textarea {
	box-sizing: border-box !important;
	width: 100% !important;
	max-width: 100% !important;
	height: 41px !important;
	min-height: 41px !important;
	margin: 0 !important;
	padding: 8px 12px !important;
	border: 2px solid var(--hs-teal, #a3d9d2) !important;
	border-radius: 0 !important;
	background: var(--hs-white, #fff) !important;
	box-shadow: none !important;
	font-family: inherit !important;
	font-size: 16px !important;
	font-weight: 400 !important;
	line-height: 21.6px !important;
	color: var(--hs-ink, #282019) !important;
}

.hs-contact--gf .gfield textarea {
	height: 80px !important;
	min-height: 80px !important;
	padding: 12px 16px !important;
	resize: vertical;
}

.hs-contact--gf .gfield input:focus,
.hs-contact--gf .gfield textarea:focus {
	outline: 2px solid var(--hs-teal-deep, #587975) !important;
	outline-offset: 1px !important;
}

/* 16px gap before the button = 16px footer offset + the button's own 8px. */
.hs-contact--gf .gform_footer {
	display: block !important;
	margin: 16px 0 0 !important;
	padding: 0 !important;
}

.hs-contact--gf .gform_footer .hs-fb-btn--primary {
	width: 100% !important;
	height: 40px !important;
	min-height: 40px !important;
	margin-top: 8px !important;
	padding: 8px 12px !important;
	border-color: var(--hs-white, #fff) !important;
	border-radius: 0 !important;
	background: var(--hs-teal, #a3d9d2) !important;
	color: var(--hs-ink, #282019) !important;
	font-size: 20px !important;
	font-weight: 600 !important;
}

/* Validation + confirmation reuse the notice palette. */
.hs-contact--gf .gfield_validation_message,
.hs-contact--gf .validation_message {
	margin: 0 !important;
	padding: 0.35rem 0.5rem !important;
	border: 0 !important;
	background: #fdeaea !important;
	color: #8a1f1f !important;
	font-family: inherit !important;
	font-size: 0.85rem !important;
	line-height: 1.3 !important;
	text-align: start !important;
}

.hs-contact--gf .gform_validation_errors {
	margin: 0 0 8px !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: #fdeaea !important;
}

.hs-contact--gf .gform_submission_error {
	margin: 0 !important;
	padding: 0.65rem 0.75rem !important;
	border: 0 !important;
	background: transparent !important;
	color: #8a1f1f !important;
	font-family: inherit !important;
	font-size: 0.92rem !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
	text-align: start !important;
	gap: 8px !important;
}

.hs-contact--gf .gfield_error input,
.hs-contact--gf .gfield_error textarea {
	border-color: #8a1f1f !important;
}

.hs-contact--gf .gform_confirmation_message {
	margin: 0 !important;
	padding: 0.65rem 0.75rem !important;
	background: #e8f6e8 !important;
	color: #1f5d2a !important;
	font-family: inherit !important;
	font-size: 0.92rem !important;
}

.hs-contact--gf .gform_confirmation_message * {
	margin: 0 !important;
	color: inherit !important;
	font-family: inherit !important;
	font-size: inherit !important;
}

/* Single column: matches the pre-Gravity Forms stacking breakpoint, which is
   wider than GF's own 640px grid breakpoint. */
@media (max-width: 980px) {
	.hs-contact--gf .gfield {
		grid-column: 1 / -1 !important;
	}

	.hs-contact--gf .hs-gf-last,
	.hs-contact--gf .hs-gf-phone {
		margin-block-start: 0;
	}
}

@media (max-width: 900px) {
	.fusion-tb-header .hs-fb-header {
		padding: 24px !important;
	}

	.fusion-tb-header .hs-fb-header .fusion-builder-row {
		display: grid !important;
		grid-template-columns: minmax(0, 1fr) 20px 20px !important;
		grid-template-areas: "logo search toggle" !important;
		column-gap: 15px !important;
		row-gap: 0 !important;
		height: 28px;
		min-height: 28px;
	}

	.fusion-tb-header .hs-fb-header__logo-col {
		grid-area: logo !important;
		max-width: none !important;
	}

	.fusion-tb-header .hs-fb-header__nav-col,
	.fusion-tb-header .hs-fb-header__nav-col > .fusion-column-wrapper {
		display: contents !important;
	}

	.fusion-tb-header .hs-fb-logo img,
	.fusion-tb-header .hs-fb-header__logo-col img {
		width: 200px !important;
		max-width: min(200px, 60vw) !important;
		height: 28px !important;
		min-height: 0 !important;
	}

	.fusion-tb-header .hs-fb-header-search {
		grid-area: search !important;
		justify-self: end;
	}

	.fusion-tb-header .hs-fb-main-menu.awb-menu {
		grid-area: toggle !important;
		justify-self: end;
	}

	.fusion-tb-header .awb-menu__m-toggle {
		display: grid !important;
		place-items: center;
		width: 20px !important;
		height: 20px !important;
		min-width: 20px !important;
		padding: 0 !important;
		border: 0 !important;
		background-color: transparent !important;
		background-image: url("../images/brand/icon-menu.svg") !important;
		background-position: center !important;
		background-repeat: no-repeat !important;
		background-size: 20px 20px !important;
		color: var(--hs-ink, #282019) !important;
		font-size: 20px !important;
	}

	.fusion-tb-header .awb-menu__m-toggle .awb-menu__m-collapse-icon {
		display: none !important;
	}

	.fusion-tb-header .awb-menu__m-toggle[aria-expanded="true"] {
		background-image: url("../images/brand/icon-close.svg") !important;
	}

	.fusion-tb-header .hs-fb-header-search.is-open {
		position: absolute !important;
		left: 16px;
		right: 16px;
		z-index: 20;
		width: auto !important;
		max-width: none !important;
	}

	.fusion-tb-header.hs-native-search-open .hs-fb-header .fusion-builder-row {
		grid-template-columns: minmax(0, 1fr) !important;
		grid-template-areas: "search" !important;
	}

	.fusion-tb-header.hs-native-search-open .hs-fb-logo,
	.fusion-tb-header.hs-native-search-open .hs-fb-mobile-mark,
	.fusion-tb-header.hs-native-search-open .hs-fb-main-menu {
		display: none !important;
	}

	.fusion-tb-header.hs-native-search-open .hs-fb-header-search.is-open {
		position: static !important;
		grid-area: search !important;
		justify-self: stretch;
		width: 100% !important;
		max-width: none !important;
	}

	.fusion-tb-header .hs-fb-header-rule {
		display: none !important;
	}

	.fusion-tb-header .hs-fb-main-menu .awb-menu__m-toggle[aria-expanded="true"] {
		position: fixed !important;
		top: 28px;
		right: 24px;
		z-index: 1002;
	}

	.fusion-tb-header .hs-fb-main-menu .awb-menu__m-toggle[aria-expanded="true"] ~ .awb-menu__main-ul {
		position: fixed !important;
		inset: 0 !important;
		z-index: 1000 !important;
		display: flex !important;
		flex-direction: column !important;
		justify-content: flex-start !important;
		align-items: stretch !important;
		gap: 8px !important;
		width: 100% !important;
		height: 100dvh !important;
		min-height: 100vh !important;
		padding: 104px 24px 32px !important;
		overflow-y: auto !important;
		background: #fff !important;
		opacity: 1 !important;
		visibility: visible !important;
		transform: none !important;
		transition: none !important;
	}

	html:has(.fusion-tb-header .hs-fb-main-menu .awb-menu__m-toggle[aria-expanded="true"]),
	body:has(.fusion-tb-header .hs-fb-main-menu .awb-menu__m-toggle[aria-expanded="true"]) {
		overflow: hidden !important;
	}

	.fusion-tb-header:has(.hs-fb-main-menu .awb-menu__m-toggle[aria-expanded="true"]) .hs-fb-logo {
		display: none !important;
	}

	.fusion-tb-header:has(.hs-fb-main-menu .awb-menu__m-toggle[aria-expanded="true"]) .hs-fb-mobile-mark {
		position: fixed !important;
		display: block !important;
		top: 32px;
		left: 24px;
		z-index: 1001;
		width: 45px !important;
		max-width: 45px !important;
		height: 43px !important;
	}

	.fusion-tb-header:has(.hs-fb-main-menu .awb-menu__m-toggle[aria-expanded="true"]) .hs-fb-mobile-mark img {
		display: block !important;
		width: 45px !important;
		max-width: 45px !important;
		height: 43px !important;
		object-fit: contain;
	}

	.fusion-tb-header .hs-fb-main-menu .awb-menu__m-toggle[aria-expanded="true"] ~ .awb-menu__main-ul > .awb-menu__main-li > .awb-menu__main-a {
		flex: 0 0 44px;
		justify-content: space-between;
		width: 100%;
		height: 44px !important;
		min-height: 44px !important;
	}

	.fusion-tb-header .hs-fb-main-menu .awb-menu__m-toggle[aria-expanded="true"] ~ .awb-menu__main-ul > .awb-menu__main-li {
		height: auto !important;
		min-height: 44px !important;
	}

	.fusion-tb-header .hs-fb-main-menu .awb-menu__sub-ul {
		position: static !important;
		width: 100% !important;
		padding: 4px 0 4px 16px !important;
		background: #fff !important;
		box-shadow: none !important;
	}

	.fusion-tb-footer .hs-fb-footer.fusion-fullwidth {
		min-height: 0;
		padding: 28px 32px 32px !important;
	}

	.fusion-tb-footer .hs-fb-footer .fusion-builder-row {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		justify-content: stretch;
		height: auto;
		min-height: 0;
		gap: 32px;
	}

	.fusion-tb-footer .hs-fb-footer__brand,
	.fusion-tb-footer .hs-fb-footer__nav,
	.fusion-tb-footer .hs-fb-footer__legal,
	.fusion-tb-footer .hs-fb-footer__contact {
		grid-column: 1;
		width: 100% !important;
		justify-self: stretch;
	}

	.fusion-tb-footer .hs-fb-footer__brand .fusion-column-wrapper {
		align-items: center;
	}

	.fusion-tb-footer .hs-fb-footer-logo,
	.fusion-tb-footer .hs-fb-footer-logo img {
		width: 200px !important;
		max-width: 200px !important;
		height: 198px !important;
	}

	.fusion-tb-footer .hs-fb-footer-menu .awb-menu__main-ul {
		gap: 12px !important;
		margin-bottom: 15px !important;
	}

	.fusion-tb-footer .hs-fb-footer-heading {
		margin-bottom: 12px !important;
	}

	.fusion-tb-footer .hs-fb-footer-legal__list {
		margin-bottom: 16px;
	}

	.fusion-tb-footer .hs-fb-footer-menu .awb-menu__main-li,
	.fusion-tb-footer .hs-fb-footer-menu .awb-menu__main-a {
		min-height: 0 !important;
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
	}

	/* Avada's expanded-menu rule otherwise re-adds a 24px link inset. */
	.fusion-body .fusion-tb-footer .hs-fb-footer-menu.collapse-enabled .awb-menu__main-ul > li > a.awb-menu__main-a {
		padding-left: 0 !important;
	}

	.fusion-tb-footer .hs-fb-footer__contact {
		height: auto;
		min-height: 0;
		margin-top: -8px !important;
	}

	.fusion-tb-footer .hs-fb-footer__contact .hs-contact {
		min-height: 554px;
		padding: 13px;
	}

	.fusion-tb-footer .hs-fb-footer-copy--desktop {
		display: none !important;
	}

	.fusion-tb-footer .hs-fb-footer-copy--mobile {
		display: block !important;
		margin-top: 24px !important;
	}

	.fusion-tb-footer .hs-fb-footer-copy--mobile p {
		max-width: none;
	}

	.fusion-tb-footer .hs-fb-footer__contact .hs-footer__form-wrap {
		width: 100%;
	}

	/* Reset Avada menu-list indentation in the single-column mobile footer. */
	.fusion-tb-footer .hs-fb-footer__nav,
	.fusion-tb-footer .hs-fb-footer__nav .fusion-column-wrapper,
	.fusion-tb-footer .hs-fb-footer-menu,
	.fusion-tb-footer .hs-fb-footer-menu .awb-menu__main-ul {
		margin-left: 0 !important;
		padding-left: 0 !important;
	}
}

/* ===========================================================================
 * Global Layout header: container width, reachable submenus, search, targets
 * Avada's generated stylesheet loads after this file, so these selectors carry
 * enough weight (element + 4 classes) to beat `.fusion-fullwidth .fusion-row`.
 * ======================================================================== */

/*
 * Figma 3034:1265 — header content spans 1376px (32px gutters) and footer
 * content 1312px (64px gutters) at a 1440 frame. Above 1440 both rows kept
 * growing with the viewport while page content stayed in the 1312 container.
 *
 * Fusion prints `style="max-width:104% !important"` on every row, and inline
 * !important outranks any stylesheet, so the cap has to come from the
 * container's own gutters instead of the row's max-width.
 */
@media (min-width: 901px) {
	.fusion-tb-header .hs-fb-header.fusion-fullwidth {
		padding-right: max(32px, (100% - var(--hs-container-header, 1376px)) / 2) !important;
		padding-left: max(32px, (100% - var(--hs-container-header, 1376px)) / 2) !important;
	}

	.fusion-tb-header .hs-fb-header-rule.fusion-fullwidth {
		padding-right: max(32px, (100% - var(--hs-container-header, 1376px)) / 2) !important;
		padding-left: max(32px, (100% - var(--hs-container-header, 1376px)) / 2) !important;
	}

	.fusion-tb-footer .hs-fb-footer.fusion-fullwidth {
		padding-right: max(64px, (100% - var(--hs-container, 1312px)) / 2) !important;
		padding-left: max(64px, (100% - var(--hs-container, 1312px)) / 2) !important;
	}

	.fusion-tb-header .hs-fb-header.fusion-fullwidth .fusion-builder-row.fusion-row,
	.fusion-tb-header .hs-fb-header-rule.fusion-fullwidth .fusion-builder-row.fusion-row,
	.fusion-tb-footer .hs-fb-footer.fusion-fullwidth .fusion-builder-row.fusion-row {
		box-sizing: border-box;
		width: 100% !important;
		margin-right: auto !important;
		margin-left: auto !important;
	}
}

/*
 * The dropdown used to hang 25px below the pill row (`top: 57px`), leaving a
 * strip that belonged to neither the item nor the panel: the pointer dropped
 * `:hover` in transit and the menu closed before it could be reached, while
 * the decorative rule — a later sibling container — painted over the panel.
 * The panel now attaches to the pill and the header bar outranks the rule.
 */
.fusion-tb-header .hs-fb-main-menu .awb-menu__main-li.menu-item-has-children {
	position: relative;
}

/* Rounding guard so sub-pixel row heights never reopen the void. */
.fusion-tb-header .hs-fb-main-menu .awb-menu__main-li.menu-item-has-children::after {
	content: "";
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	height: 10px;
	z-index: 999;
}

.fusion-tb-header .hs-fb-header-rule {
	pointer-events: none;
}

@media (min-width: 901px) {
	.fusion-tb-header .hs-fb-header.fusion-fullwidth {
		position: relative;
		z-index: 3;
	}

	.fusion-tb-header .hs-fb-header-rule.fusion-fullwidth {
		position: relative;
		z-index: 1;
	}

	.fusion-tb-header .hs-fb-header__nav-col,
	.fusion-tb-header .hs-fb-header__nav-col > .fusion-column-wrapper,
	.fusion-tb-header .hs-fb-main-menu.awb-menu,
	.fusion-tb-header .hs-fb-main-menu .awb-menu__main-ul {
		overflow: visible !important;
	}

	.fusion-tb-header .hs-fb-main-menu .awb-menu__main-li.menu-item-has-children:hover,
	.fusion-tb-header .hs-fb-main-menu .awb-menu__main-li.menu-item-has-children:focus-within {
		z-index: 1200;
	}

	.fusion-tb-header .hs-fb-main-menu .awb-menu__sub-ul {
		top: 100% !important;
		z-index: 1200 !important;
	}
}

.fusion-tb-header .hs-fb-main-menu .awb-menu__main-li.hs-submenu-dismissed > .awb-menu__sub-ul {
	visibility: hidden !important;
	opacity: 0 !important;
}

/* Dark bronze panel: submenu labels stay white in every state (desktop only —
   the mobile drawer paints the same links on white). */
@media (min-width: 901px) {
	.fusion-tb-header .hs-fb-main-menu .awb-menu__sub-a,
	.fusion-tb-header .hs-fb-main-menu .awb-menu__sub-a span,
	.fusion-tb-header .hs-fb-main-menu .awb-menu__sub-a:hover,
	.fusion-tb-header .hs-fb-main-menu .awb-menu__sub-a:hover span,
	.fusion-tb-header .hs-fb-main-menu .awb-menu__sub-a:focus,
	.fusion-tb-header .hs-fb-main-menu .awb-menu__sub-a:focus span,
	.fusion-tb-header .hs-fb-main-menu .awb-menu__sub-a:focus-visible,
	.fusion-tb-header .hs-fb-main-menu .awb-menu__sub-a:active,
	.fusion-tb-header .hs-fb-main-menu .awb-menu__sub-a:active span,
	.fusion-tb-header .hs-fb-main-menu .awb-menu__sub-li.current-menu-item > .awb-menu__sub-a,
	.fusion-tb-header .hs-fb-main-menu .awb-menu__sub-li.current-menu-item > .awb-menu__sub-a span {
		color: #fff !important;
	}

	.fusion-tb-header .hs-fb-main-menu .awb-menu__sub-a:focus-visible {
		outline: 2px solid #fff;
		outline-offset: -2px;
	}
}

/* 44px pointer target on the pills without growing the 32px Figma pill. */
.fusion-tb-header .hs-fb-main-menu .awb-menu__main-a {
	position: relative;
}

.fusion-tb-header .hs-fb-main-menu .awb-menu__main-a::before {
	content: "";
	position: absolute;
	top: -6px;
	right: 0;
	bottom: -6px;
	left: 0;
}

/*
 * Search: Avada renders the control as `<input type="submit">`, which sits on
 * the text baseline. Inside the 20px form-content box that pushed the glyph
 * ~4px down and the clipped remainder read as a broken arc. Centering the row
 * and giving the input a real 44x44 box (pulled back with negative margins so
 * the row still occupies the Figma 20px) fixes the glyph and the tap target.
 */
.fusion-tb-header .hs-fb-header-search .fusion-search-form-content {
	align-items: center !important;
	overflow: visible !important;
}

.fusion-tb-header .hs-fb-header-search .fusion-search-button {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	position: relative !important;
	overflow: visible !important;
}

.fusion-tb-header .hs-fb-header-search .fusion-search-submit {
	display: block !important;
	box-sizing: border-box !important;
	width: 44px !important;
	min-width: 44px !important;
	height: 44px !important;
	min-height: 44px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 9999px !important;
	background-color: transparent !important;
	background-image: url("../images/brand/icon-search-header.svg") !important;
	background-position: center center !important;
	background-repeat: no-repeat !important;
	background-size: 20px 20px !important;
	box-shadow: none !important;
	font-size: 0 !important;
	line-height: 0 !important;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
}

.fusion-tb-header .hs-fb-header-search .fusion-search-submit:hover,
.fusion-tb-header .hs-fb-header-search .fusion-search-submit:focus-visible {
	background-color: rgba(255, 255, 255, 0.55) !important;
}

.fusion-tb-header .hs-fb-header-search .fusion-search-submit:focus-visible {
	outline: 2px solid var(--hs-ink, #282019);
	outline-offset: -2px;
}

.fusion-tb-header .hs-fb-header-search.is-open {
	flex-basis: 280px !important;
	width: 280px !important;
	max-width: 280px !important;
	height: 44px !important;
}

.fusion-tb-header.hs-native-search-open .hs-fb-main-menu {
	display: none !important;
}

/* Beat the equally specific collapsed `.fusion-search-element` selector. */
@media (min-width: 901px) {
	body .fusion-tb-header .fusion-search-element.fusion-search-form-custom.hs-fb-header-search.is-open {
		flex: 0 0 280px !important;
		flex-basis: 280px !important;
		width: 280px !important;
		max-width: 280px !important;
	}
}

.fusion-tb-header .hs-fb-header-search.is-open .fusion-search-form-content {
	box-sizing: border-box;
	height: 44px !important;
	padding: 0 10px 0 16px !important;
	border: 3px solid #cec487 !important;
	border-radius: 9999px !important;
	background: #fff !important;
}

.fusion-tb-header .hs-fb-header-search.is-open .fusion-search-form-content:focus-within {
	border-color: #587975 !important;
}

.fusion-tb-header .hs-fb-header-search .fusion-search-field,
.fusion-tb-header .hs-fb-header-search .fusion-search-field label {
	display: flex !important;
	align-items: center !important;
	width: 100%;
	margin: 0 !important;
}

.fusion-tb-header .hs-fb-header-search .fusion-search-field input {
	box-sizing: border-box !important;
	height: 38px !important;
	min-height: 0 !important;
	max-height: 38px !important;
	line-height: 38px !important;
	font-family: var(--hs-font-body, Arial, sans-serif) !important;
	font-size: 16px !important;
}

.fusion-tb-header .hs-fb-header-search .fusion-search-field input::placeholder {
	color: var(--hs-bronze, #6c5b4c) !important;
	opacity: 1 !important;
}

@media (max-width: 900px) {
	/*
	 * 20px icons 15px apart (Figma) leave the 44px targets overlapping by 9px.
	 * 24px of separation puts the two hit boxes edge to edge; the toggle keeps
	 * its Figma position because the row is right-anchored.
	 */
	.fusion-tb-header .hs-fb-header .fusion-builder-row {
		column-gap: 24px !important;
	}

	.fusion-tb-header .awb-menu__m-toggle {
		box-sizing: border-box;
		width: 44px !important;
		min-width: 44px !important;
		height: 44px !important;
		min-height: 44px !important;
		margin: -12px !important;
		background-size: 20px 20px !important;
	}

	.fusion-tb-header .hs-fb-header-search.is-open {
		height: 44px !important;
	}

	body .fusion-tb-header .fusion-search-element.fusion-search-form-custom.hs-fb-header-search.is-open {
		flex: none !important;
		width: auto !important;
		max-width: none !important;
	}

	/* Drawer submenu links sit on the white drawer and match its 44px rows. */
	.fusion-tb-header .hs-fb-main-menu .awb-menu__sub-a,
	.fusion-tb-header .hs-fb-main-menu .awb-menu__sub-a span {
		color: var(--hs-bronze, #6c5b4c) !important;
	}

	.fusion-tb-header .hs-fb-main-menu .awb-menu__sub-a {
		display: flex !important;
		align-items: center !important;
		min-height: 44px !important;
	}

	.fusion-tb-header .hs-fb-main-menu .awb-menu__main-li.menu-item-has-children::after {
		content: none;
	}
}
