:root {
	--hbhr-ink: #102033;
	--hbhr-muted: #556579;
	--hbhr-blue: #006fee;
	--hbhr-blue-dark: #0051b5;
	--hbhr-ice: #eaf4ff;
	--hbhr-surface: #f5f7fa;
	--hbhr-line: #dde4ec;
	--hbhr-white: #fff;
	--hbhr-success: #087a55;
	--hbhr-shadow: 0 18px 48px rgba(16, 32, 51, 0.1);
	--hbhr-radius: 1.25rem;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	overflow-x: hidden;
}

body.admin-bar .hbhr-site-header {
	top: 32px;
}

img {
	height: auto;
}

a {
	text-underline-offset: 0.16em;
}

:where(a, button, input, select, textarea, summary):focus-visible {
	outline: 3px solid #ffbf47;
	outline-offset: 3px;
}

.hbhr-skip-link {
	position: fixed;
	z-index: 100000;
	top: 0.5rem;
	left: 0.5rem;
	padding: 0.75rem 1rem;
	border-radius: 0.5rem;
	background: var(--hbhr-ink);
	color: var(--hbhr-white);
	font-weight: 700;
	transform: translateY(-150%);
}

.hbhr-skip-link:focus {
	transform: translateY(0);
}

.hbhr-site-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	border-bottom: 1px solid rgba(221, 228, 236, 0.9);
	background: rgba(255, 255, 255, 0.96);
	backdrop-filter: blur(14px);
}

.hbhr-header-inner {
	min-height: 5rem;
	gap: 1.25rem;
}

.hbhr-brand {
	flex: 0 1 auto;
	gap: 0.7rem;
}

.hbhr-brand .wp-block-site-title {
	margin: 0;
	font-size: clamp(1rem, 2vw, 1.2rem);
	font-weight: 800;
	line-height: 1.1;
}

.hbhr-brand .wp-block-site-title a {
	color: var(--hbhr-ink);
	text-decoration: none;
}

.hbhr-brand-tagline {
	margin: 0.2rem 0 0;
	color: var(--hbhr-muted);
	font-size: 0.68rem;
	font-weight: 650;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.hbhr-main-nav {
	flex: 1 1 auto;
}

.hbhr-main-nav a {
	text-decoration: none;
}

.hbhr-button,
.hbhr-call-link,
.hbhr-header-call a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.75rem;
	padding: 0.7rem 1.1rem;
	border: 2px solid var(--hbhr-blue);
	border-radius: 999px;
	background: var(--hbhr-blue);
	color: var(--hbhr-white);
	font-weight: 750;
	line-height: 1.1;
	text-decoration: none;
	transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.hbhr-button:hover,
.hbhr-call-link:hover,
.hbhr-header-call a:hover {
	border-color: var(--hbhr-blue-dark);
	background: var(--hbhr-blue-dark);
	color: var(--hbhr-white);
	transform: translateY(-1px);
}

.hbhr-button--secondary {
	border-color: var(--hbhr-line);
	background: var(--hbhr-white);
	color: var(--hbhr-ink);
}

.hbhr-button--secondary:hover {
	border-color: var(--hbhr-ink);
	background: var(--hbhr-ink);
}

.hbhr-section {
	padding-block: clamp(4rem, 8vw, 7rem);
}

.hbhr-section--soft {
	background: var(--hbhr-surface);
}

.hbhr-section--dark {
	background: var(--hbhr-ink);
	color: var(--hbhr-white);
}

.hbhr-section--dark :where(h1, h2, h3, p, li) {
	color: inherit;
}

.hbhr-hero {
	position: relative;
	isolation: isolate;
	min-height: min(780px, 82vh);
	display: grid;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(180deg, #f9fbfd 0%, var(--hbhr-white) 100%);
}

.hbhr-hero-copy {
	max-width: 760px;
	padding-block: clamp(5rem, 11vw, 9rem);
}

.hbhr-hero h1 {
	max-width: 900px;
	margin: 0 0 1.5rem;
	font-size: clamp(3rem, 7.6vw, 6.7rem);
	line-height: 0.96;
	letter-spacing: -0.055em;
}

.hbhr-hero .hbhr-lede {
	max-width: 680px;
	color: var(--hbhr-muted);
	font-size: clamp(1.15rem, 2.5vw, 1.45rem);
	line-height: 1.55;
}

.hbhr-eyebrow {
	margin-bottom: 1rem;
	color: var(--hbhr-blue-dark);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.hbhr-chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	padding: 0;
	list-style: none;
}

.hbhr-chip-list li {
	padding: 0.48rem 0.8rem;
	border: 1px solid var(--hbhr-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.76);
	color: var(--hbhr-ink);
	font-size: 0.88rem;
	font-weight: 650;
}

.hbhr-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
	gap: 1.25rem;
}

.hbhr-card {
	padding: clamp(1.35rem, 3vw, 2rem);
	border: 1px solid var(--hbhr-line);
	border-radius: var(--hbhr-radius);
	background: var(--hbhr-white);
	box-shadow: 0 1px 0 rgba(16, 32, 51, 0.03);
}

.hbhr-card--featured {
	border-color: rgba(0, 111, 238, 0.34);
	box-shadow: var(--hbhr-shadow);
}

.hbhr-card h3 {
	margin-top: 0;
}

.hbhr-icon {
	display: grid;
	width: 2.75rem;
	height: 2.75rem;
	margin-bottom: 1.1rem;
	place-items: center;
	border-radius: 0.8rem;
	background: var(--hbhr-ice);
	color: var(--hbhr-blue-dark);
	font-size: 1rem;
	font-weight: 900;
}

.hbhr-process {
	counter-reset: hbhr-step;
	display: grid;
	gap: 0;
	margin: 2rem 0;
}

.hbhr-step {
	position: relative;
	display: grid;
	grid-template-columns: 3.5rem 1fr;
	gap: 1rem;
	padding-bottom: 2rem;
	counter-increment: hbhr-step;
}

.hbhr-step::before {
	display: grid;
	z-index: 1;
	width: 2.75rem;
	height: 2.75rem;
	place-items: center;
	border-radius: 50%;
	background: var(--hbhr-blue);
	color: var(--hbhr-white);
	content: counter(hbhr-step, decimal-leading-zero);
	font-size: 0.78rem;
	font-weight: 800;
}

.hbhr-step::after {
	position: absolute;
	top: 2.75rem;
	bottom: 0;
	left: 1.35rem;
	width: 2px;
	background: var(--hbhr-line);
	content: "";
}

.hbhr-step:last-child::after {
	display: none;
}

.hbhr-step :where(h3, p) {
	margin-top: 0;
}

.hbhr-price-range {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.4rem;
}

.hbhr-price {
	color: var(--hbhr-blue-dark);
	font-size: clamp(2.7rem, 7vw, 4.4rem);
	font-weight: 850;
	letter-spacing: -0.05em;
	line-height: 1;
}

.hbhr-notice {
	padding: 1rem 1.2rem;
	border-left: 4px solid var(--hbhr-blue);
	border-radius: 0.4rem;
	background: var(--hbhr-ice);
}

.hbhr-notice--success {
	border-left-color: var(--hbhr-success);
	background: #e9f7f1;
}

.hbhr-breadcrumbs {
	padding-block: 0.9rem;
	border-bottom: 1px solid var(--hbhr-line);
	color: var(--hbhr-muted);
	font-size: 0.82rem;
}

.hbhr-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hbhr-breadcrumbs li:not(:last-child)::after {
	margin-left: 0.45rem;
	content: "/";
	color: #91a0b1;
}

.hbhr-business-details {
	margin: 0;
	padding: 0;
	list-style: none;
}

.hbhr-business-details li {
	margin-block: 0.45rem;
}

.hbhr-methods {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 290px), 1fr));
	gap: 1rem;
}

.hbhr-method {
	padding: 1.5rem;
	border: 1px solid var(--hbhr-line);
	border-radius: var(--hbhr-radius);
}

.hbhr-method h3 {
	margin-top: 0;
}

.hbhr-quote-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem;
}

.hbhr-field {
	margin: 0;
}

.hbhr-field--full {
	grid-column: 1 / -1;
}

.hbhr-field label,
.hbhr-field legend {
	display: block;
	margin-bottom: 0.35rem;
	color: var(--hbhr-ink);
	font-weight: 700;
}

.hbhr-field input:not([type="checkbox"]):not([type="radio"]),
.hbhr-field select,
.hbhr-field textarea {
	width: 100%;
	min-height: 3rem;
	padding: 0.75rem 0.85rem;
	border: 1px solid #aab7c4;
	border-radius: 0.55rem;
	background: var(--hbhr-white);
	color: var(--hbhr-ink);
	font: inherit;
}

.hbhr-field textarea {
	min-height: 8rem;
	resize: vertical;
}

.hbhr-field small {
	display: block;
	margin-top: 0.3rem;
	color: var(--hbhr-muted);
}

.hbhr-fieldset {
	margin: 0;
	padding: 0;
	border: 0;
}

.hbhr-checkbox {
	display: grid;
	grid-template-columns: 1.25rem 1fr;
	gap: 0.65rem;
	align-items: start;
}

.hbhr-checkbox input {
	width: 1.15rem;
	height: 1.15rem;
	margin-top: 0.25rem;
}

.hbhr-errors {
	grid-column: 1 / -1;
	padding: 1rem 1.25rem;
	border: 2px solid #b42318;
	border-radius: 0.6rem;
	background: #fff2f0;
	color: #721c15;
}

.hbhr-errors a {
	color: inherit;
}

.hbhr-honeypot {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(0 0 0 0) !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
}

.hbhr-gallery-empty,
.hbhr-placeholder {
	padding: clamp(2rem, 5vw, 4rem);
	border: 1px dashed #9dacbc;
	border-radius: var(--hbhr-radius);
	background: var(--hbhr-surface);
	text-align: center;
}

.hbhr-project {
	margin-block: 2rem;
	overflow: hidden;
	border: 1px solid var(--hbhr-line);
	border-radius: var(--hbhr-radius);
	background: var(--hbhr-white);
}

.hbhr-project__images {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.hbhr-project__images figure {
	position: relative;
	margin: 0;
}

.hbhr-project__images img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.hbhr-project__label {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	padding: 0.3rem 0.55rem;
	border-radius: 999px;
	background: rgba(16, 32, 51, 0.88);
	color: #fff;
	font-size: 0.75rem;
	font-weight: 750;
}

.hbhr-project__content {
	padding: 1.5rem;
}

.hbhr-faq details {
	padding: 1rem 0;
	border-top: 1px solid var(--hbhr-line);
}

.hbhr-faq details:last-child {
	border-bottom: 1px solid var(--hbhr-line);
}

.hbhr-faq summary {
	cursor: pointer;
	color: var(--hbhr-ink);
	font-weight: 750;
}

.hbhr-site-footer {
	padding-block: 4rem 1.5rem;
	background: var(--hbhr-ink);
	color: #d6e0eb;
}

.hbhr-site-footer :where(h2, .wp-block-site-title, .wp-block-site-title a) {
	color: var(--hbhr-white);
}

.hbhr-site-footer a {
	color: #dcecff;
}

.hbhr-footer-grid {
	gap: 3rem;
}

.hbhr-footer-links {
	padding: 0;
	list-style: none;
}

.hbhr-footer-links li {
	margin-bottom: 0.55rem;
}

.hbhr-footer-legal {
	margin-top: 3rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	font-size: 0.82rem;
}

.hbhr-mobile-cta {
	display: none;
}

.hbhr-error {
	text-align: center;
}

.hbhr-error .wp-block-search {
	max-width: 34rem;
	margin: 2rem auto 0;
}

/* Visual polish: responsive editorial imagery and balanced content layouts. */
.hbhr-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
	gap: clamp(2rem, 5vw, 5.5rem);
	align-items: center;
	padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.hbhr-hero .hbhr-hero-copy {
	max-width: none;
	padding-block: 0;
}

.hbhr-hero h1 {
	max-width: 760px;
	font-size: clamp(2.8rem, 5.4vw, 5.4rem);
}

.hbhr-hero-actions {
	margin-top: 1.75rem;
}

.hbhr-photo {
	margin-block: 0;
}

.hbhr-photo img {
	display: block;
	width: 100%;
	max-width: 100%;
	border-radius: var(--hbhr-radius);
	background: var(--hbhr-surface);
	box-shadow: var(--hbhr-shadow);
	object-fit: cover;
}

.hbhr-photo--hero img {
	aspect-ratio: 16 / 9;
	box-shadow: 0 30px 72px rgba(16, 32, 51, 0.2);
}

.hbhr-photo--feature,
.hbhr-photo--wide {
	margin-block: clamp(2.25rem, 5vw, 4.5rem);
}

.hbhr-photo--feature img,
.hbhr-photo--service img,
.hbhr-photo--process img,
.hbhr-photo--about img {
	aspect-ratio: 3 / 2;
}

.hbhr-photo--wide img,
.hbhr-photo--area img {
	aspect-ratio: 8 / 5;
}
.hbhr-results-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1rem, 3vw, 1.5rem);
	align-items: start;
	margin-block: clamp(2rem, 5vw, 4rem);
}

.hbhr-result-photo {
	margin: 0;
	padding: clamp(0.4rem, 1vw, 0.75rem);
	overflow: hidden;
	border: 1px solid var(--hbhr-line);
	border-radius: calc(var(--hbhr-radius) * 1.1);
	background: var(--hbhr-white);
	box-shadow: var(--hbhr-shadow);
}

.hbhr-result-photo img {
	width: 100%;
	height: auto;
	aspect-ratio: auto;
	border-radius: var(--hbhr-radius-small);
	box-shadow: none;
	object-fit: contain;
}

.hbhr-result-photo:last-child {
	grid-column: 1 / -1;
	width: min(100%, 36rem);
	justify-self: center;
}

@media (max-width: 782px) {
	.hbhr-results-grid {
		grid-template-columns: 1fr;
	}

	.hbhr-result-photo:last-child {
		grid-column: auto;
		width: 100%;
	}
}

.hbhr-page-lede {
	max-width: 52rem;
	margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
	color: var(--hbhr-muted);
	line-height: 1.6;
}

.hbhr-visual-split {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(2rem, 5vw, 5rem);
	align-items: center;
	margin-block: clamp(3.5rem, 7vw, 6.5rem);
}

.hbhr-visual-split--text {
	align-items: stretch;
}

.hbhr-visual-split > .wp-block-group,
.hbhr-visual-split > .wp-block-image {
	min-width: 0;
}

.hbhr-section-heading {
	max-width: 48rem;
	margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hbhr-content-grid {
	display: grid;
	gap: 1.25rem;
	margin-block: clamp(2.5rem, 5vw, 4.5rem);
}

.hbhr-content-grid > * {
	margin-block-start: 0;
}

.hbhr-content-grid--two {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hbhr-content-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hbhr-content-card {
	height: 100%;
}

.hbhr-content-card h3,
.hbhr-card--soft h3 {
	margin-top: 0;
}

.hbhr-card--soft {
	border-color: rgba(0, 111, 238, 0.18);
	background: var(--hbhr-ice);
}

.hbhr-process-panel {
	margin-block: clamp(3rem, 6vw, 5rem);
	padding: clamp(1.5rem, 5vw, 4rem);
	border: 1px solid var(--hbhr-line);
	border-radius: calc(var(--hbhr-radius) * 1.2);
	background: linear-gradient(145deg, var(--hbhr-white), var(--hbhr-surface));
	box-shadow: var(--hbhr-shadow);
}

.hbhr-process-panel .hbhr-process {
	margin-bottom: 0;
}

.hbhr-process-panel .hbhr-step :where(h2, h3, p) {
	margin-top: 0;
}

.hbhr-page-cta,
.hbhr-dark-cta {
	display: flex;
	gap: 2rem;
	align-items: center;
	justify-content: space-between;
	margin-block: clamp(3.5rem, 7vw, 6rem);
}

.hbhr-page-cta > .wp-block-group:first-child,
.hbhr-dark-cta > .wp-block-group:first-child {
	max-width: 44rem;
}

.hbhr-page-cta :where(h2, p),
.hbhr-dark-cta :where(h2, p) {
	margin-top: 0;
}

.hbhr-dark-cta {
	margin-block: 0;
}

.hbhr-home-process,
.hbhr-home-area {
	padding-block: clamp(2rem, 4vw, 4rem);
}
@media (max-width: 1080px) {
	.hbhr-header-call {
		display: none;
	}

	.hbhr-main-nav {
		flex-grow: 0;
	}
}

@media (max-width: 782px) {
	body.admin-bar .hbhr-site-header {
		top: 46px;
	}

	.hbhr-header-inner {
		min-height: 4.4rem;
	}

	.hbhr-brand-tagline {
		display: none;
	}

	.hbhr-has-mobile-cta {
		padding-bottom: calc(4.6rem + env(safe-area-inset-bottom));
	}

	.hbhr-mobile-cta {
		position: fixed;
		z-index: 1200;
		right: 0;
		bottom: 0;
		left: 0;
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0.6rem;
		padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom));
		border-top: 1px solid var(--hbhr-line);
		background: rgba(255, 255, 255, 0.98);
		box-shadow: 0 -8px 25px rgba(16, 32, 51, 0.1);
	}

	.hbhr-mobile-cta > * {
		width: 100%;
	}

	.hbhr-mobile-cta :where(a, .wp-block-button__link) {
		width: 100%;
		min-height: 3rem;
	}

	.hbhr-mobile-quote .wp-block-button__link {
		border: 2px solid var(--hbhr-ink);
		background: var(--hbhr-ink);
	}

	.hbhr-hero {
		min-height: auto;
	}

	.hbhr-quote-form {
		grid-template-columns: 1fr;
	}

	.hbhr-field--full {
		grid-column: auto;
	}
}

@media (max-width: 782px) {
	.hbhr-hero-grid,
	.hbhr-visual-split,
	.hbhr-content-grid--two,
	.hbhr-content-grid--three {
		grid-template-columns: 1fr;
	}

	.hbhr-hero-grid {
		gap: 2.25rem;
		padding-block: 4rem 3rem;
	}

	.hbhr-hero h1 {
		font-size: clamp(2.7rem, 13vw, 4.5rem);
	}

	.hbhr-photo--hero img {
		box-shadow: 0 20px 45px rgba(16, 32, 51, 0.16);
	}

	.hbhr-visual-split {
		gap: 2rem;
		margin-block: 3.5rem;
	}

	.hbhr-home-area > .wp-block-image {
		order: 2;
	}

	.hbhr-page-cta,
	.hbhr-dark-cta {
		align-items: flex-start;
		flex-direction: column;
	}

	.hbhr-page-cta > .wp-block-group:last-child,
	.hbhr-dark-cta > .wp-block-button {
		width: 100%;
	}

	.hbhr-dark-cta .wp-block-button__link {
		width: 100%;
		text-align: center;
	}
}
@media (max-width: 560px) {
	.hbhr-brand .wp-block-site-logo {
		display: none;
	}

	.hbhr-project__images {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
