/* Preserve line breaks from admin textareas (Enter) without allowing HTML. */
.hf-section p,
.hf-section h1,
.hf-section h2,
.hf-section h3,
.hf-section h4,
.hf-section .hf-award-strip__label,
.hf-section .hf-why__title-sub-line,
.hf-section .hf-why__title-end,
.hf-section .hf-areas__list li > span:last-child,
.hf-multiline {
	white-space: pre-line;
}

/**
 * NEW HOME PAGE — homepage blocks (.hf-section)
 *
 * All values assume html{font-size:62.5%} from main_Copy.css → 1rem = 10px.
 * Real px ÷ 10 = rem in this file.
 *
 * Scoped under .hf-section so each block can be dropped into any page
 * (admin block system) without affecting unrelated content.
 *
 * Fonts: Magneta (display), Montserrat (eyebrow/button/labels), Nunito Sans (body).
 */

/* ── design tokens (safe to live globally thanks to --hf- prefix) ──────── */
:root {
	--hf-bg-page:          #f9f7f5;
	--hf-bg-dark:          #2c2a26;
	--hf-bg-cta-dark:      #3f4853;
	--hf-bg-surface:       #ffffff;
	--hf-bg-subtle:        #f0ebe4;
	--hf-bg-muted:         #ece8e0;

	--hf-text-dark:        #1a1a1a;
	--hf-text-body:        #323c48;
	--hf-text-muted:       #4d4d4d;
	--hf-text-inverse:     #ffffff;
	--hf-text-accent:      #978970;

	--hf-brand-blue:       #4779b9;
	--hf-brand-blue-deep:  #3d6ba5;
	--hf-border-subtle:    rgba(50, 60, 72, 0.12);
	--hf-border-dark:      rgba(255, 255, 255, 0.45);

	--hf-font-display:     "Magneta", "Playfair Display", Georgia, "Times New Roman", serif;
	--hf-font-title:       "Montserrat", "Helvetica Neue", Arial, sans-serif;
	/* Figma: Acumin Pro Regular for all body/description paragraphs */
	--hf-font-body:        "Acumin Pro", "Acumin", "Montserrat", "Helvetica Neue", Arial, sans-serif;

	--hf-radius-card:      1.6rem;   /* 16px */
	--hf-radius-button:    1rem;     /* 10px */

	--hf-content-max:      149.2rem; /* 1492px */
	--hf-content-pad:      8rem;     /* 80px */

	/* Block typography (aligns with delco-tokens: 15px labels, 16px body) */
	--hf-type-base:        1.5rem;   /* 15px — section default */
	--hf-type-body:        1.6rem;   /* 16px */
	--hf-type-body-lg:     1.8rem;   /* 18px */
	--hf-type-body-sm:     1.4rem;   /* 14px */
	--hf-type-caption:     1.3rem;   /* 13px */
	--hf-type-eyebrow:     1.4rem;   /* 14px uppercase labels */
	--hf-type-ui:          1.4rem;   /* 14px buttons / UI */
	/* Section H2 stack — canonical scale (matches award-winning headline) */
	--hf-type-section-h2:  clamp(3.24rem, 3.78vw, 4.5rem);
	--hf-leading-section-h2: 1.15;
	--hf-type-display-lg:  clamp(3.2rem, 3.8vw, 5rem);
	--hf-type-display-md:  var(--hf-type-section-h2); /* BA & any .hf-display--md usage */
	--hf-type-display-sm:  clamp(2.2rem, 2.3vw, 3rem);
}

/* ── base for any .hf-section block ─────────────────────────────────────── */
.hf-section,
.hf-section *,
.hf-section *::before,
.hf-section *::after { box-sizing: border-box; }

.hf-section {
	background: var(--hf-bg-page);
	color: var(--hf-text-body);
	font-family: var(--hf-font-body);
	line-height: 1.5;
	letter-spacing: 0;
	position: relative;
	overflow-x: clip;
}

/* Homepage blocks only — hero keeps its own scale */
.hf-section:not(.hf-hero) {
	font-size: var(--hf-type-base);
}

/* Scroll reveal — desktop only (mobile: instant, no fade — avoids scroll flashes) */
@media (prefers-reduced-motion: no-preference) and (min-width: 901px) {
	.home_page .hf-section.hf-reveal-pending {
		opacity: 0;
		transform: translateY(3.2rem);
		will-change: opacity, transform;
	}
	.home_page .hf-section.hf-reveal-visible {
		opacity: 1;
		transform: translateY(0);
		transition:
			opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
			transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
	}
	.home_page .hf-section.hf-hero.hf-reveal-visible {
		transition:
			opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
			transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
	}

	/* Staggered children inside a block */
	.home_page .hf-section.hf-reveal-pending .hf-reveal-item {
		opacity: 0;
		transform: translateY(2rem);
	}
	.home_page .hf-section.hf-reveal-visible .hf-reveal-item {
		opacity: 1;
		transform: translateY(0);
		transition:
			opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
			transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
		transition-delay: calc(0.12s + var(--hf-reveal-i, 0ms));
	}

	/* Footer: background stays visible; only inner content fades up */
	.home_page footer.site_footer .site_footer__wrap.hf-reveal-pending .hf-reveal-item {
		opacity: 0;
		transform: translateY(2rem);
	}
	.home_page footer.site_footer .site_footer__wrap.hf-reveal-visible .hf-reveal-item {
		opacity: 1;
		transform: translateY(0);
		transition:
			opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
			transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
		transition-delay: calc(0.12s + var(--hf-reveal-i, 0ms));
	}

	.home_page .hf-reveal-stagger.hf-blog__grid .hf-reveal-item:nth-child(2) { --hf-reveal-i: 120ms; }
	.home_page .hf-reveal-stagger.hf-blog__grid .hf-reveal-item:nth-child(3) { --hf-reveal-i: 240ms; }
	.home_page .hf-reveal-stagger.hf-testimonials__grid .hf-reveal-item:nth-child(2) { --hf-reveal-i: 100ms; }
	.home_page .hf-reveal-stagger.hf-testimonials__grid .hf-reveal-item:nth-child(3) { --hf-reveal-i: 200ms; }
	.home_page .hf-reveal-stagger.hf-testimonials__grid .hf-reveal-item:nth-child(4) { --hf-reveal-i: 300ms; }

	.home_page .hf-reveal-stagger.site_footer__columns .hf-reveal-item:nth-child(2) { --hf-reveal-i: 70ms; }
	.home_page .hf-reveal-stagger.site_footer__columns .hf-reveal-item:nth-child(3) { --hf-reveal-i: 140ms; }
	.home_page .hf-reveal-stagger.site_footer__columns .hf-reveal-item:nth-child(4) { --hf-reveal-i: 210ms; }

	.home_page .hf-section.hf-reveal-visible .hf-reveal-item,
	.home_page .hf-section.hf-reveal-visible,
	.home_page footer.site_footer .site_footer__wrap.hf-reveal-visible .hf-reveal-item {
		will-change: auto;
	}

	/* Process steps — lift on hover (must follow .hf-reveal-item transform rules) */
	.home_page .hf-section.hf-process .hf-process__grid > .hf-process__step.hf-reveal-item {
		transition:
			opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
			transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
		transition-delay: calc(0.12s + var(--hf-reveal-i, 0ms)), 0s;
	}
	.home_page .hf-section.hf-process.hf-reveal-visible .hf-process__grid > .hf-process__step.hf-reveal-item:hover {
		transform: translateY(-1rem);
	}

	/* Why Delco points — lift on hover (must follow .hf-reveal-item transform rules) */
	.home_page .hf-section.hf-why .hf-why__grid > .hf-why__item.hf-reveal-item {
		transition:
			opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
			transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
		transition-delay: calc(0.12s + var(--hf-reveal-i, 0ms)), 0s;
	}
	.home_page .hf-section.hf-why.hf-reveal-visible .hf-why__grid > .hf-why__item.hf-reveal-item:hover {
		transform: translateY(-1rem);
	}

	/* Why headline — WHY, sub-lines, DELCO? fade in one by one */
	.home_page .hf-section.hf-why .hf-reveal-word {
		opacity: 0;
		transform: translateY(1.6rem);
		will-change: opacity, transform;
	}
	.home_page .hf-section.hf-why.hf-reveal-visible .hf-reveal-word {
		opacity: 1;
		transform: translateY(0);
		transition:
			opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
			transform 1.15s cubic-bezier(0.16, 1, 0.3, 1);
		transition-delay: calc(0.35s + var(--hf-reveal-i, 0ms));
	}
	.home_page .hf-section.hf-why.hf-reveal-visible .hf-reveal-word {
		will-change: auto;
	}

	/* Testimonial cards — lift on hover (must follow .hf-reveal-item transform rules) */
	.home_page .hf-section.hf-testimonials .hf-testimonials__grid > .hf-testimonial.hf-reveal-item {
		transition:
			opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
			transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
		transition-delay: calc(0.12s + var(--hf-reveal-i, 0ms)), 0s;
	}
	.home_page .hf-section.hf-testimonials.hf-reveal-visible .hf-testimonials__grid > .hf-testimonial.hf-reveal-item:hover {
		transform: translateY(-1rem);
	}

	/* Blog cards — lift on hover (must follow .hf-reveal-item transform rules) */
	.home_page .hf-section.hf-blog .hf-blog__grid > .hf-blog__card.hf-reveal-item {
		transition:
			opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
			transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
			box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
		transition-delay: calc(0.12s + var(--hf-reveal-i, 0ms)), 0s, 0s;
	}
	.home_page .hf-section.hf-blog.hf-reveal-visible .hf-blog__grid > .hf-blog__card.hf-reveal-item:hover {
		transform: translateY(-1rem);
		box-shadow: 0 2rem 4rem rgba(50, 60, 72, 0.1);
	}
}

/* Photo backgrounds — subtle zoom-out as the block fades in (desktop only) */
@media (prefers-reduced-motion: no-preference) and (min-width: 901px) {
	.home_page .hf-section.hf-reveal-pending .hf-reveal-bg.hf-promo__bg,
	.home_page .hf-section.hf-reveal-pending .hf-reveal-bg.hf-spec__bg,
	.home_page .hf-section.hf-reveal-pending .hf-reveal-bg.hf-innovation__media,
	.home_page .hf-section.hf-reveal-pending .hf-reveal-bg.hf-security__media,
	.home_page .hf-section.hf-reveal-pending .hf-reveal-bg.hf-blog__card-img {
		transform: scale(1.08);
		transform-origin: center center;
		will-change: transform;
	}
	.home_page .hf-section.hf-reveal-visible .hf-reveal-bg.hf-promo__bg,
	.home_page .hf-section.hf-reveal-visible .hf-reveal-bg.hf-spec__bg,
	.home_page .hf-section.hf-reveal-visible .hf-reveal-bg.hf-innovation__media,
	.home_page .hf-section.hf-reveal-visible .hf-reveal-bg.hf-security__media,
	.home_page .hf-section.hf-reveal-visible .hf-reveal-bg.hf-blog__card-img {
		transform: scale(1);
		transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
	}

	.home_page .hf-section.hf-reveal-pending .hf-hero__inner.hf-reveal-bg,
	.home_page .hf-section.hf-cta--has-bg.hf-reveal-pending,
	.home_page .hf-section.hf-reveal-pending .hf-security__intro.hf-reveal-bg {
		background-size: 108%;
		background-position: center center;
	}
	.home_page .hf-section.hf-reveal-visible .hf-hero__inner.hf-reveal-bg,
	.home_page .hf-section.hf-cta--has-bg.hf-reveal-visible,
	.home_page .hf-section.hf-reveal-visible .hf-security__intro.hf-reveal-bg {
		background-size: cover;
		transition: background-size 1.15s cubic-bezier(0.22, 1, 0.36, 1);
	}

	.home_page .hf-reveal-bg.hf-security__media {
		overflow: hidden;
	}
}

/* Before & after — desktop: center pops in, side cards expand outward from middle */
@media (prefers-reduced-motion: no-preference) and (min-width: 901px) {
	.home_page .hf-section.hf-ba.hf-reveal-pending .hf-ba__grid.hf-reveal-stagger > .hf-reveal-item {
		opacity: 0;
	}
	.home_page .hf-section.hf-ba.hf-reveal-pending .hf-ba__grid.hf-reveal-stagger > .hf-reveal-item:nth-child(1) {
		transform: translateX(22%) scale(0.78);
		transform-origin: 100% 50%;
	}
	.home_page .hf-section.hf-ba.hf-reveal-pending .hf-ba__grid.hf-reveal-stagger > .hf-reveal-item:nth-child(2) {
		transform: scale(0.86);
		transform-origin: 50% 50%;
	}
	.home_page .hf-section.hf-ba.hf-reveal-pending .hf-ba__grid.hf-reveal-stagger > .hf-reveal-item:nth-child(3) {
		transform: translateX(-22%) scale(0.78);
		transform-origin: 0% 50%;
	}
	.home_page .hf-section.hf-ba.hf-reveal-visible .hf-ba__grid.hf-reveal-stagger > .hf-reveal-item {
		opacity: 1;
		transform: translate3d(0, 0, 0) scale(1);
		transition:
			opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
			transform 0.9s cubic-bezier(0.16, 1, 0.2, 1);
	}
	.home_page .hf-reveal-stagger.hf-ba__grid .hf-reveal-item:nth-child(1) { --hf-reveal-i: 90ms; }
	.home_page .hf-reveal-stagger.hf-ba__grid .hf-reveal-item:nth-child(2) { --hf-reveal-i: 0ms; }
	.home_page .hf-reveal-stagger.hf-ba__grid .hf-reveal-item:nth-child(3) { --hf-reveal-i: 90ms; }
}

@media (prefers-reduced-motion: no-preference) and (max-width: 900px) {
	.home_page .hf-reveal-stagger.hf-ba__grid .hf-reveal-item:nth-child(2) { --hf-reveal-i: 140ms; }
	.home_page .hf-reveal-stagger.hf-ba__grid .hf-reveal-item:nth-child(3) { --hf-reveal-i: 280ms; }
}
@media (prefers-reduced-motion: reduce), (max-width: 900px) {
	.home_page .hf-section.hf-reveal-pending,
	.home_page .hf-section.hf-reveal-visible,
	.home_page .hf-section.hf-reveal-pending .hf-reveal-item,
	.home_page .hf-section.hf-reveal-visible .hf-reveal-item,
	.home_page footer.site_footer .site_footer__wrap.hf-reveal-pending .hf-reveal-item,
	.home_page footer.site_footer .site_footer__wrap.hf-reveal-visible .hf-reveal-item,
	.home_page .hf-section.hf-reveal-pending .hf-reveal-bg,
	.home_page .hf-section.hf-reveal-visible .hf-reveal-bg,
	.home_page .hf-section.hf-why .hf-reveal-word {
		opacity: 1;
		transform: none;
		filter: none;
		background-size: cover;
		will-change: auto;
	}
}

/*
 * IMPORTANT: font-family uses the low-specificity * selector (0,1,0) so that
 * later single-class rules like .hf-trust__lede (also 0,1,0) can override it
 * via source-order. DO NOT move font-family into the element-list below —
 * those have specificity (0,1,1) which beats class rules and blocks Magneta.
 */
.hf-section * {
	font-family: inherit;
}

.hf-section p,
.hf-section h1,
.hf-section h2,
.hf-section h3,
.hf-section h4,
.hf-section h5,
.hf-section ul,
.hf-section ol,
.hf-section li,
.hf-section address,
.hf-section button:not(.hf-btn):not(.hf-areas__tab):not(.hf-cta__submit):not(.hf-ba__handle),
.hf-section input,
.hf-section textarea,
.hf-section select {
	/* font-family is intentionally NOT set here — see comment above */
	color: inherit;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	letter-spacing: inherit;
	text-transform: none;
}

.hf-section ul,
.hf-section ol { list-style: none; }

/* Plain text links only — component CTAs keep their own styles */
.hf-section a:not(.hf-btn):not(.hf-link-arrow):not(.hf-innovation__btn):not(.hf-innovation__link):not(.hf-promo__btn):not(.hf-social__follow) {
	color: inherit;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	letter-spacing: inherit;
	text-transform: none;
	text-decoration: none;
	transition: color 0.2s ease, opacity 0.2s ease;
}

.hf-section img,
.hf-section svg { display: block; max-width: 100%; }

.hf-section button { cursor: pointer; }

/* Content wrapper used inside every block */
.hf-container {
	width: 100%;
	max-width: var(--hf-content-max);
	margin: 0 auto;
	padding-left: var(--hf-content-pad);
	padding-right: var(--hf-content-pad);
}

/* Horizontal scroll rows — Larson-style prev/next (mobile only) */
.hf-scroll-row {
	position: relative;
}
.hf-scroll-nav {
	display: none;
}
.hf-scroll-nav__btn {
	flex: 0 0 auto;
	box-sizing: border-box;
	width: 5.2rem;
	height: 5.2rem;
	margin: 0;
	padding: 0;
	border: 2px solid var(--hf-text-body);
	border-radius: 999rem;
	background: #ffffff;
	color: var(--hf-text-body);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.85) inset,
		0 0.2rem 0.8rem rgba(50, 60, 72, 0.14);
	transition:
		background-color 0.2s ease,
		border-color 0.2s ease,
		color 0.2s ease,
		box-shadow 0.2s ease,
		opacity 0.2s ease;
}
.hf-scroll-nav__btn:hover:not(:disabled) {
	background: var(--hf-bg-subtle);
	border-color: var(--hf-text-body);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.9) inset,
		0 0.4rem 1.2rem rgba(50, 60, 72, 0.18);
}
.hf-scroll-nav__btn:focus-visible {
	outline: 2px solid var(--hf-brand-blue);
	outline-offset: 3px;
}
.hf-scroll-nav__btn:disabled {
	opacity: 0.4;
	cursor: not-allowed;
	box-shadow: none;
}
.hf-scroll-nav__icon {
	width: 2.6rem;
	height: 2.6rem;
	fill: currentColor;
}
/* Hero award strip — solid light circle + dark chevron for contrast on glass bar */
.hf-scroll-nav--on-dark .hf-scroll-nav__btn {
	background: #ffffff;
	border: 2px solid #ffffff;
	color: var(--hf-text-body);
	box-shadow:
		0 0.2rem 0.8rem rgba(0, 0, 0, 0.28),
		0 0 0 1px rgba(255, 255, 255, 0.35);
}
.hf-scroll-nav--on-dark .hf-scroll-nav__btn:hover:not(:disabled) {
	background: #f9f7f5;
	border-color: #ffffff;
	color: var(--hf-text-body);
	box-shadow:
		0 0.4rem 1.2rem rgba(0, 0, 0, 0.32),
		0 0 0 1px rgba(255, 255, 255, 0.45);
}

/* ── shared typography utilities ─────────────────────────────────────────── */
.hf-eyebrow {
	font-family: var(--hf-font-title);
	font-size: var(--hf-type-eyebrow);
	font-weight: 600;
	letter-spacing: 0.32rem;
	text-transform: uppercase;
	color: var(--hf-text-accent);
}

.hf-display {
	font-family: var(--hf-font-display);
	/* Magneta Medium (500) is the Figma weight for all section headings */
	font-weight: 500;
	color: var(--hf-text-body);
	line-height: 1.08;
	letter-spacing: -0.01em;
}

.hf-display--hero  { font-size: clamp(4.4rem, 5.6vw, 7.2rem); }
.hf-display--lg    { font-size: var(--hf-type-display-lg); }
.hf-display--md    { font-size: var(--hf-type-display-md); line-height: var(--hf-leading-section-h2); }
.hf-display--sm    { font-size: var(--hf-type-display-sm); }

.hf-body {
	font-family: var(--hf-font-body);
	font-size: var(--hf-type-body);
	line-height: 1.55;
	color: var(--hf-text-body);
}

.hf-body--lg  { font-size: var(--hf-type-body-lg); line-height: 1.55; }
.hf-body--sm  { font-size: var(--hf-type-body-sm); line-height: 1.5; }

/* ── shared buttons / links ──────────────────────────────────────────────── */
.hf-btn,
.hf-section a.hf-btn,
.hf-section button.hf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	box-sizing: border-box;
	min-height: 5.5rem;
	padding: 1.4rem 3.2rem;
	font-family: var(--hf-font-title);
	font-size: var(--hf-type-ui);
	font-weight: 700;
	letter-spacing: 0.16rem;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: var(--hf-radius-button);
	border-style: solid;
	border-width: 1px;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
	white-space: nowrap;
}
.hf-btn:hover { transform: translateY(-1px); }

.hf-btn--primary {
	background: var(--hf-brand-blue);
	color: var(--hf-text-inverse);
	border: 1px solid var(--hf-brand-blue);
}
.hf-btn--primary:hover { background: var(--hf-brand-blue-deep); border-color: var(--hf-brand-blue-deep); }

.hf-btn--secondary {
	background: transparent;
	color: var(--hf-text-inverse);
	border: 1px solid var(--hf-border-dark);
}
.hf-btn--secondary:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.85); }

.hf-btn--dark {
	background: var(--hf-bg-cta-dark);
	color: var(--hf-text-inverse);
	border: 1px solid var(--hf-bg-cta-dark);
}
.hf-btn--dark:hover { background: #2f3741; border-color: #2f3741; }

.hf-btn--ghost {
	background: transparent;
	color: var(--hf-text-body);
	border: 1px solid var(--hf-text-body);
}
.hf-btn--ghost:hover { background: var(--hf-text-body); color: var(--hf-text-inverse); }

/* Figma link CTA: label + arrow row, full-width rule underneath (node 2083:1254824 / 1254741) */
.hf-section a.hf-link-arrow,
.hf-link-arrow {
	display: inline-flex;
	flex-direction: column;
	align-items: stretch;
	gap: 0.6rem;
	font-family: var(--hf-font-title);
	font-weight: 600;
	text-transform: uppercase;
	color: var(--hf-text-body);
	text-decoration: none;
	border: 0;
	padding: 0;
	background: none;
	white-space: nowrap;
	transition: color 0.2s ease;
}
.hf-link-arrow__row {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(1.6rem, 2vw, 2.4rem);
	width: 100%;
}
.hf-link-arrow__label { line-height: 1.35; }
.hf-link-arrow__icon {
	flex: 0 0 auto;
	width: 2.5rem;
	height: 2.5rem;
	display: block;
	transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.hf-link-arrow__rule {
	display: block;
	width: 100%;
	height: 1px;
	background: currentColor;
}
.hf-link-arrow:hover,
.hf-link-arrow:hover .hf-link-arrow__label { color: var(--hf-brand-blue); }
.hf-link-arrow:hover .hf-link-arrow__rule { background: var(--hf-brand-blue); }

.hf-link-arrow:hover .hf-link-arrow__icon,
.hf-link-arrow:focus-visible .hf-link-arrow__icon,
.hf-blog__card:hover .hf-link-arrow__icon,
.hf-blog__card:focus-visible .hf-link-arrow__icon,
.hf-testimonial:hover .hf-link-arrow__icon {
	transform: translateX(0.6rem);
}

.hf-blog__card:hover .hf-link-arrow__label,
.hf-blog__card:focus-visible .hf-link-arrow__label {
	color: var(--hf-brand-blue);
}
.hf-blog__card:hover .hf-link-arrow__rule,
.hf-blog__card:focus-visible .hf-link-arrow__rule {
	background: var(--hf-brand-blue);
}

@media (prefers-reduced-motion: reduce) {
	.hf-link-arrow__icon {
		transition: none;
	}
	.hf-link-arrow:hover .hf-link-arrow__icon,
	.hf-link-arrow:focus-visible .hf-link-arrow__icon,
	.hf-blog__card:hover .hf-link-arrow__icon,
	.hf-blog__card:focus-visible .hf-link-arrow__icon,
	.hf-testimonial:hover .hf-link-arrow__icon {
		transform: none;
	}
}

/* Section footer CTAs */
.hf-link-arrow--lg {
	font-size: clamp(1.8rem, 1.8vw, 2.25rem);
	letter-spacing: 0.22rem;
	min-width: min(32rem, 100%);
}
.hf-link-arrow--lg .hf-link-arrow__icon {
	width: clamp(2.5rem, 2.7vw, 3.2rem);
	height: clamp(2.5rem, 2.7vw, 3.2rem);
}

/* In-card “Read now” */
.hf-link-arrow--card {
	font-size: clamp(1.45rem, 1.35vw, 1.57rem);
	letter-spacing: 0.16rem;
	align-self: flex-start;
	min-width: min(22.4rem, 100%);
}
.hf-link-arrow--card .hf-link-arrow__icon {
	width: 2.5rem;
	height: 2.5rem;
}

/* ── 1. HERO ─────────────────────────────────────────────────────────────── */
.hf-hero {
	padding: 0 2rem 6rem;
	background: var(--hf-bg-page);
}
.hf-hero__inner {
	position: relative;
	margin: 0 auto;
	max-width: 169.5rem;
	min-height: 88rem;
	border-radius: 2.4rem;
	overflow: hidden;
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.55) 100%),
		var(--hf-bg-dark);
	background-size: cover;
	background-position: center;
	color: var(--hf-text-inverse);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10rem 6rem 14rem;
}
.hf-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.55) 100%);
	pointer-events: none;
}
.hf-hero__content {
	position: relative;
	z-index: 2;
	max-width: 82rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 2.4rem;
}
.hf-hero .hf-eyebrow { color: rgba(255, 255, 255, 0.85); }
.hf-hero__title { color: var(--hf-text-inverse); }
.hf-hero__lede {
	font-family: var(--hf-font-body);
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.92);
	max-width: 60rem;
	margin: 0 auto;
}
.hf-hero__cta-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 3rem;
	margin-top: 1.5rem;
}
.hf-award-strip {
	position: absolute;
	left: 50%;
	bottom: 4rem;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 4rem;
	flex-wrap: wrap;
	justify-content: center;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(8px);
	border-radius: 999rem;
	padding: 1.6rem 4rem;
	color: rgba(255, 255, 255, 0.92);
}
.hf-award-strip__label {
	font-family: var(--hf-font-title);
	font-size: 1.5rem;
	font-weight: 600;
	letter-spacing: 0.24rem;
	text-transform: uppercase;
}
.hf-award-strip__logos {
	display: flex;
	align-items: center;
	gap: 3.2rem;
	flex-wrap: wrap;
}
.hf-award-strip__logos img { height: 4rem; width: auto; filter: brightness(0) invert(1); opacity: 0.92; }

/* ── 2. TRUST TAGLINE — Figma node 2083:1225657 ──────────────────────────── */
.hf-trust {
	padding: 19.3rem clamp(2.4rem, 5vw, 15rem);
	text-align: center;
	background: #f1ece3;
}
.hf-trust .hf-container {
	max-width: 140.7rem;                        /* 1407px content column per Figma */
	padding-left: 0;
	padding-right: 0;
}
.hf-trust__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;                                  /* 20px per Figma */
	width: 100%;
}
.hf-trust__eyebrow {
	max-width: 100%;
	margin: 0;
	font-family: var(--hf-font-title);          /* Montserrat Medium */
	font-size: clamp(1.44rem, 1.44vw, 2.15rem);   /* 23.881px per Figma */
	font-weight: 500;
	letter-spacing: 0.24rem;                    /* 2.388px per Figma */
	text-transform: uppercase;
	color: #323c48;
	line-height: 1.45;
}
.hf-trust__lede {
	margin: 0;
	max-width: 126rem;                          /* 1260px — prevents extra line wraps */
	width: 100%;
	font-family: "Magneta", "Playfair Display", Georgia, "Times New Roman", serif;
	font-weight: 100;                           /* Magneta Thin */
	font-style: normal;
	font-size: clamp(2.88rem, 3.78vw, 5.85rem);    /* 65px per Figma */
	line-height: 1.35;
	letter-spacing: -0.005em;
	color: #323c48;
}

/* ── 3. INNOVATION GALLERY — Figma node 2083:1225656 ─────────────────────── */
.hf-innovation { padding: 10rem 0 20rem; background: var(--hf-bg-page); }
.hf-innovation .hf-container {
	max-width: 172.8rem;                        /* 1728px — full Figma gallery width */
	padding-left: clamp(2.4rem, 3vw, 5rem);
	padding-right: clamp(2.4rem, 3vw, 5rem);
	display: flex;
	flex-direction: column;
	gap: 4.8rem;                                /* 48px — title to gallery (margin on h2 is reset by .hf-section h2) */
}
.hf-section .hf-innovation__title {
	max-width: 126rem;
	margin: 0 auto;
	text-align: center;
	font-family: "Magneta", "Playfair Display", Georgia, serif;
	font-weight: 100;
	font-size: clamp(2.52rem, 3.06vw, 4.05rem);
	line-height: 1.2;
	color: #323c48;
}
.hf-innovation__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.6rem, 2vw, 3rem);
	width: 100%;
}
.hf-innovation__card {
	position: relative;
	overflow: hidden;
	border-radius: 1rem;                        /* 10px per Figma */
	min-width: 0;
	width: 100%;
	min-height: 0;
	display: flex;
	align-items: flex-end;
	padding: 4rem;                              /* 40px per Figma */
	background: var(--hf-bg-muted);
	isolation: isolate;                         /* let pseudo overlay layer cleanly */
}
.hf-innovation__card--hero {
	grid-column: 1 / -1;
	aspect-ratio: 1596 / 752;
	min-height: 28rem;
}
.hf-innovation__card--pair {
	aspect-ratio: 783 / 752;
	height: auto;
}
.hf-innovation__media {
	position: absolute; inset: 0; z-index: 1;
	background-size: cover; background-position: center;
}
.hf-innovation__overlay {
	position: absolute; inset: 0; z-index: 2;
	/* Left scrim for copy + existing bottom fade (first layer paints on top) */
	background:
		linear-gradient(
			to right,
			rgba(0, 0, 0, 0.78) 0%,
			rgba(0, 0, 0, 0) 50%
		),
		linear-gradient(
			to bottom,
			rgba(0, 0, 0, 0) 30%,
			rgba(0, 0, 0, 0.88) 100%
		);
}
.hf-innovation__body {
	position: relative; z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 0;
	max-width: 67rem;                            /* 653px per Figma */
	color: #f9f7f5;
}
.hf-section .hf-innovation__card-title {
	margin: 0;
	font-family: "Magneta", "Playfair Display", Georgia, serif;
	font-weight: 300;                            /* Magneta Book per Figma */
	font-size: clamp(2.52rem, 3.24vw, 4.5rem);       /* peaks at 50px */
	line-height: 1.1;
	letter-spacing: 0.25rem;                     /* 2.5px per Figma */
	color: #f9f7f5;
}
.hf-section .hf-innovation__card-desc {
	margin: 1.2rem 0 0;                          /* tight gap below card title */
	font-family: var(--hf-font-body);
	font-weight: 400;
	font-size: clamp(1.44rem, 1.35vw, 1.8rem);       /* peaks at 20px */
	line-height: 1.55;
	color: #f9f7f5;
	max-width: 51rem;                            /* 510px per Figma */
}
.hf-innovation__cta-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.6rem;
	margin-top: 4rem;                            /* generous gap description → CTA */
}
/* Higher specificity than .hf-section a { border: 0 } */
.hf-section .hf-innovation__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-width: 31rem;
	width: auto;
	max-width: 100%;
	height: 5.5rem;
	padding: 0 1.6rem;
	border: 1px solid #f9f7f5;
	border-radius: 1rem;
	font-family: var(--hf-font-title);           /* Montserrat */
	font-weight: 700;                            /* Bold */
	font-size: 1.42rem;                          /* 15.804px per Figma */
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #f9f7f5;
	background: transparent;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.hf-section a.hf-innovation__btn:hover {
	background: #f9f7f5;
	color: #323c48;
	border-color: #f9f7f5;
	transform: translateY(-1px);
}
.hf-section a.hf-innovation__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-height: 5.5rem;
	padding: 0 0.6rem;
	border: 0;
	background: transparent;
	font-family: var(--hf-font-title);
	font-weight: 700;
	font-size: 1.42rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: #f9f7f5;
	text-decoration: underline;
	text-underline-offset: 0.3rem;
	transition: opacity 0.2s ease;
}
.hf-section a.hf-innovation__link:hover { opacity: 0.75; }

/* ── 4. WHY CHOOSE DELCO — Figma node 2083:1225705 ──────────────────────── */
.hf-why {
	background: var(--hf-bg-page);
	padding: clamp(8rem, 10vw, 12rem) clamp(2.4rem, 5vw, 8rem);
	box-sizing: border-box;
}
.hf-why .hf-container {
	max-width: 113.8rem;
	padding-left: 0;
	padding-right: 0;
	display: flex;
	flex-direction: column;
	gap: clamp(3.2rem, 4vw, 5.6rem);
}
.hf-why__head { width: 100%; }
.hf-section .hf-why__title {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: clamp(0.4rem, 1vh, 0.8rem);
	width: 100%;
	max-width: 113.8rem;
	font-family: var(--hf-font-title);
	color: #323c48;
}
/* WHY + sub on row 1; gigantic DELCO? full width on row 2 (all breakpoints) */
.hf-why__title-top {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	grid-template-areas:
		"why aside"
		"end end";
	align-items: center;
	column-gap: clamp(1.2rem, 3vw, 4.8rem);
	row-gap: clamp(0.4rem, 1vh, 0.8rem);
	width: 100%;
}
.hf-why__title-lead {
	display: contents;
}
.hf-why__title-why {
	grid-area: why;
	align-self: center;
}
.hf-why__title-aside {
	grid-area: aside;
	display: flex;
	flex-direction: column;
	gap: 0;
	justify-content: center;
	align-items: flex-start;
	min-width: 0;
	align-self: center;
}
.hf-why__title-end {
	grid-area: end;
	align-self: start;
	max-width: 100%;
}
/* Figma headline scale — WHY / DELCO? dominant; sub at 30px (Montserrat via .hf-why__title) */
.hf-why__title-why,
.hf-why__title-end {
	font-family: inherit;
}
.hf-why__title-why {
	font-weight: 700;
	font-size: clamp(5rem, 8vw, 9.9rem);
	line-height: 0.95;
	letter-spacing: 0;
}
.hf-why__title-sub {
	display: flex;
	flex-direction: column;
	gap: 0;
	font-weight: 500;
	font-size: clamp(1.8rem, 1.98vw, 2.7rem);
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.hf-why__title-sub-line {
	display: block;
}
.hf-why__title-end {
	display: block;
	width: 100%;
	font-weight: 500;
	font-size: clamp(7rem, 12vw, 15rem);
	line-height: 0.88;
	letter-spacing: -0.03em;
}

@media (min-width: 901px) {
	.hf-why__title-top {
		column-gap: clamp(2.4rem, 3vw, 4.8rem);
	}
	.hf-why__title-why {
		font-size: clamp(5rem, 8vw, 9.9rem);
	}
	.hf-why__title-end {
		font-size: clamp(8.4rem, 14vw, 17.5rem);
		line-height: 0.82;
	}
}

/* Numbered list — Mastergrain .single-text-list pattern */
.hf-why__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: clamp(2.4rem, 4vw, 5.6rem);
	row-gap: 3.5rem;
	width: 100%;
}
.hf-why__item {
	display: flex;
	align-items: flex-start;
	gap: 0;
	min-width: 0;
	transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
	.hf-why__grid > .hf-why__item:hover {
		transform: translateY(-1rem);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hf-why__item {
		transition: none;
	}
	.hf-why__grid > .hf-why__item:hover {
		transform: none;
	}
}

.hf-why__num {
	flex: 0 0 10rem;
	min-width: 10rem;
	width: 10rem;
	text-align: left;
	font-family: var(--hf-font-title);
	font-size: clamp(4.8rem, 5.5vw, 7.4rem);
	font-weight: 500;
	font-style: italic;
	letter-spacing: 0.37rem;
	line-height: 1;
	color: #323c48;
}
.hf-why__body {
	flex: 1 1 auto;
	min-width: 0;
	max-width: 42rem;
	display: flex;
	flex-direction: column;
	gap: 0;
	padding-top: 0.5rem;
}
.hf-section .hf-why__name {
	margin: 0 0 0.6rem;
	font-family: var(--hf-font-body);
	font-size: clamp(2rem, 1.35vw, 2.4rem);
	font-weight: 600;
	line-height: 1.45;
	color: #465260;
}
.hf-section .hf-why__desc {
	margin: 0;
	font-family: var(--hf-font-body);
	font-size: clamp(2rem, 1.35vw, 2.4rem);
	font-weight: 400;
	line-height: 1.45;
	color: #465260;
}

/* ── 5. BEFORE & AFTER — Figma node 2169:980733 ─────────────────────────── */
.hf-ba {
	padding: 12rem 0;
	text-align: center;
	background: var(--hf-bg-page);
}
.hf-ba .hf-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}
.hf-ba__header {
	width: 100%;
	max-width: 96rem;
	margin: 0 auto 4rem;
	display: flex;
	flex-direction: column;
	gap: 2.4rem;
	align-items: center;
	text-align: center;
}
.hf-section.hf-ba .hf-display.hf-display--md {
	width: 100%;
	text-align: center;
}
/* Section title uses .hf-display which is Magneta Medium 500 ✓ */
/* Figma: lede "See How Delco's..." uses Montserrat Regular 30px */
.hf-ba__lede {
	font-family: var(--hf-font-title);
	font-weight: 400;
	font-size: clamp(1.62rem, 1.98vw, 2.7rem);
	line-height: 1.45;
	color: var(--hf-text-body);
}
.hf-ba__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 2.4rem;
	width: 100%;
	max-width: var(--hf-content-max);
	margin: 4rem auto 0;
	align-items: center;
	justify-content: center;
}
.hf-section.hf-ba .hf-ba__cta.hf-btn {
	background: var(--hf-text-body, #323c48);
	border-color: var(--hf-text-body, #323c48);
	color: var(--hf-text-inverse);
	border-radius: 0.4rem;
}
.hf-section.hf-ba .hf-ba__cta.hf-btn:hover {
	background: #2f3741;
	border-color: #2f3741;
	color: var(--hf-text-inverse);
}
.hf-ba__card {
	display: flex;
	flex-direction: column;
	gap: 0;
	min-width: 0;
	width: 100%;
	max-width: 100%;
}
.hf-ba__tag-bar {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 4.7rem;
	padding: 0.8rem 1.6rem;
	background: var(--hf-bg-subtle);
	flex-shrink: 0;
}
.hf-ba__tag {
	margin: 0;
	font-family: var(--hf-font-title);
	/* Was slightly too small vs Figma — bump to match caption rhythm */
	font-size: 1.26rem;
	font-weight: 600;
	letter-spacing: 0.18rem;
	text-transform: uppercase;
	color: #465260;
}
/* Draggable before/after comparison — Figma 2169:980733 */
.hf-ba__compare {
	position: relative;
	width: 100%;
	flex-shrink: 0;
	margin-top: 0;
	margin-bottom: 0;
	aspect-ratio: 540 / 382;
	border-radius: 0.8rem;
	overflow: hidden;
	background: var(--hf-bg-muted);
	box-shadow: 0 0 0.47rem rgba(136, 136, 136, 0.1);
	touch-action: none;
	user-select: none;
	cursor: ew-resize;
}
.hf-ba__card--center .hf-ba__compare {
	aspect-ratio: 440 / 583;
	min-height: 46rem;
}
.hf-ba__img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	pointer-events: none;
	user-select: none;
	-webkit-user-drag: none;
}
.hf-ba__img--after {
	position: absolute;
	inset: 0;
	z-index: 0;
}
/* Full-bleed before layer clipped by split — keeps before/after aligned when dragging */
.hf-ba__before {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	clip-path: inset(0 calc(100% - var(--hf-ba-split, 50%)) 0 0);
	z-index: 1;
	pointer-events: none;
}
.hf-ba__img--before {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center center;
}
.hf-ba__divider {
	position: absolute;
	top: 0;
	bottom: 0;
	left: var(--hf-ba-split, 50%);
	width: 0;
	transform: translateX(-50%);
	z-index: 2;
	pointer-events: none;
}
.hf-ba__divider::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	width: 0.2rem;
	transform: translateX(-50%);
	background: #fff;
	box-shadow: 0 0 0.8rem rgba(0, 0, 0, 0.2);
}
/* Figma 2169:980733 — charcoal pill, white border, 3-line grip */
.hf-section .hf-ba__handle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 2.2rem;
	height: 6.7rem;
	padding: 0;
	border: 0.14rem solid #fff;
	border-radius: 3.6rem;
	background: #3f4853;
	color: #fff;
	opacity: 1;
	cursor: ew-resize;
	touch-action: none;
	pointer-events: auto;
	z-index: 3;
	box-shadow: 0 0.2rem 1.2rem rgba(0, 0, 0, 0.28);
	transition: box-shadow 0.15s ease, background 0.15s ease;
}
.hf-ba__card--center .hf-ba__handle {
	height: 11.6rem;
	width: 2.5rem;
}
.hf-section .hf-ba__handle:hover,
.hf-section .hf-ba__handle.is-dragging,
.hf-section .hf-ba__handle:focus-visible {
	background: #323c48;
	box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.32);
	outline: none;
}
.hf-section .hf-ba__handle:focus-visible {
	outline: 0.2rem solid var(--hf-brand-blue);
	outline-offset: 0.2rem;
}
.hf-ba__handle-icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.32rem;
	width: 1.1rem;
	opacity: 1;
}
.hf-ba__handle-line {
	display: block;
	width: 100%;
	height: 0.14rem;
	border-radius: 0.1rem;
	background: #fff;
}

/* ── 6. ESTIMATE FORM — Figma node 2083:1225799 ─────────────────────────── */
.hf-estimate { background: var(--hf-bg-subtle); padding: 10rem 0; }
.hf-estimate__grid {
	display: grid;
	grid-template-columns: minmax(0, 54.7rem) minmax(0, 54.7rem);
	grid-template-areas: "content form";
	gap: 8rem;
	align-items: center;
	width: fit-content;
	max-width: 100%;
	margin-inline: auto;
}
.hf-estimate__content {
	grid-area: content;
	display: flex;
	flex-direction: column;
	gap: 2.4rem;
	align-self: center;
	width: 100%;
}
.hf-estimate__intro {
	display: flex;
	flex-direction: column;
	gap: 2.4rem;
	align-items: flex-start;
	text-align: left;
}
.hf-estimate__form {
	grid-area: form;
	align-self: center;
	width: 100%;
}
.hf-estimate__checks {
	align-self: flex-start;
	text-align: left;
}
.hf-estimate__title {
	font-family: var(--hf-font-display);
	font-weight: 500;
	font-size: var(--hf-type-section-h2);
	line-height: var(--hf-leading-section-h2);
	color: var(--hf-text-body);
}
.hf-estimate__time {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
	font-family: var(--hf-font-title);
	font-size: 1.44rem;
	font-weight: 700;
	letter-spacing: 0.3rem;
	text-transform: uppercase;
	color: var(--hf-text-accent);
}
.hf-estimate__time::before {
	content: "";
	width: 2.4rem;
	height: 2.4rem;
	background: currentColor;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 22q-1.875 0-3.512-.712T5.65 19.35t-1.937-2.838T3 13q0-1.875.713-3.512T5.65 6.65 8.488 4.712 12 4q1.875 0 3.513.713T18.35 6.65t1.938 2.838T21 13q0 1.875-.712 3.512t-1.938 2.838-2.837 1.938T12 22m1-9h4v-2h-3V8h-2v5z'/></svg>") center / contain no-repeat;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 22q-1.875 0-3.512-.712T5.65 19.35t-1.937-2.838T3 13q0-1.875.713-3.512T5.65 6.65 8.488 4.712 12 4q1.875 0 3.513.713T18.35 6.65t1.938 2.838T21 13q0 1.875-.712 3.512t-1.938 2.838-2.837 1.938T12 22m1-9h4v-2h-3V8h-2v5z'/></svg>") center / contain no-repeat;
}
/* Figma: lede and checklist items use Acumin Pro Regular 23.88px */
.hf-estimate__lede { font-family: var(--hf-font-body); font-size: clamp(1.62rem, 1.62vw, 2.16rem); line-height: 1.5; color: var(--hf-text-body); }
.hf-estimate__checks { display: flex; flex-direction: column; gap: 1.4rem; }
.hf-estimate__check {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	font-family: var(--hf-font-body);
	font-size: clamp(1.62rem, 1.62vw, 2.16rem);
	color: var(--hf-text-body);
}
.hf-estimate__check::before {
	content: "";
	flex: 0 0 auto;
	width: 2.8rem;
	height: 2.8rem;
	border-radius: 999rem;
	background: var(--hf-brand-blue)
		url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9.55 18 3.85 12.3l1.425-1.425L9.55 15.15l9.175-9.175L20.15 7.4z'/></svg>")
		center / 1.6rem 1.6rem no-repeat;
}
.hf-estimate__form {
	background: var(--hf-bg-surface);
	border-radius: var(--hf-radius-card);
	padding: 4rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	box-shadow: 0 2rem 4rem rgba(50, 60, 72, 0.08);
}
.hf-estimate__form label {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	font-family: var(--hf-font-title);
	font-size: 1.26rem;
	font-weight: 600;
	letter-spacing: 0.12rem;
	text-transform: uppercase;
	color: var(--hf-text-muted);
}
.hf-estimate__form input,
.hf-estimate__form select,
.hf-estimate__form textarea {
	width: 100%;
	height: 5.2rem;
	padding: 0 1.4rem;
	background: var(--hf-bg-page);
	border: 1px solid var(--hf-border-subtle);
	border-radius: 0.6rem;
	font-family: var(--hf-font-body);
	font-size: 1.44rem;
	color: var(--hf-text-body);
}
.hf-estimate__form textarea { height: auto; min-height: 10rem; padding: 1.2rem 1.4rem; resize: vertical; }
.hf-estimate__form input:focus,
.hf-estimate__form select:focus,
.hf-estimate__form textarea:focus { outline: 2px solid var(--hf-brand-blue); outline-offset: 1px; border-color: transparent; }
.hf-estimate__form button { margin-top: 1rem; align-self: flex-start; }

@media (min-width: 901px) {
	.hf-estimate__content,
	.hf-estimate__intro,
	.hf-estimate__title,
	.hf-estimate__lede,
	.hf-estimate__checks {
		text-align: left;
	}
	.hf-estimate__intro {
		align-items: flex-start;
	}
	.hf-estimate__checks {
		align-items: flex-start;
	}
	/* Time belongs under the title in the left column, not in the form card */
	.hf-estimate__form > .hf-estimate__time {
		display: none;
	}
	.hf-estimate__intro .hf-estimate__time {
		display: inline-flex;
	}
}

/* ── 7. PROMO BANNER — Figma node 2083:1225853 (full-bleed, no card radius) ─ */
.hf-promo {
	padding: 0;
	background: var(--hf-bg-page);
}
.hf-promo__panel {
	position: relative;
	overflow: hidden;
	width: 100%;
	border-radius: 0;
	min-height: clamp(42rem, 52vw, 91rem);
	background: var(--hf-bg-cta-dark);
	isolation: isolate;
}
.hf-promo .hf-promo__content.hf-container {
	position: relative;
	z-index: 1;
	max-width: var(--hf-content-max);
	margin: 0 auto;
}
.hf-promo__bg {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	pointer-events: none;
}
.hf-promo__scrim {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
/* Dark overlay — text on left (Figma default) */
.hf-promo--overlay-dark .hf-promo__scrim {
	background: linear-gradient(
		92deg,
		rgba(0, 0, 0, 0.82) 0%,
		rgba(0, 0, 0, 0.5) 38%,
		rgba(0, 0, 0, 0.08) 68%,
		rgba(0, 0, 0, 0) 100%
	);
}
/* Light overlay — same layout, inverted scrim */
.hf-promo--overlay-light .hf-promo__scrim {
	background: linear-gradient(
		92deg,
		rgba(255, 255, 255, 0.94) 0%,
		rgba(255, 255, 255, 0.72) 38%,
		rgba(255, 255, 255, 0.2) 68%,
		rgba(255, 255, 255, 0) 100%
	);
}
.hf-promo__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 1rem;
	min-height: clamp(42rem, 52vw, 91rem);
	padding-top: clamp(4rem, 6vw, 8rem);
	padding-bottom: clamp(4rem, 6vw, 8rem);
}
.hf-promo__logo {
	display: block;
	width: auto;
	max-width: min(32.2rem, 72vw);
	height: auto;
	max-height: 14.7rem;
	object-fit: contain;
	object-position: left center;
	margin-bottom: 0.6rem;
	filter: drop-shadow(0 0.4rem 1rem rgba(0, 0, 0, 0.35));
}
.hf-promo--overlay-light .hf-promo__logo {
	filter: drop-shadow(0 0.2rem 0.6rem rgba(50, 60, 72, 0.12));
}
.hf-promo__copy {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2.6rem;
	width: 100%;
	max-width: 79.8rem;
}
.hf-promo__title {
	margin: 0;
	font-family: var(--hf-font-display);
	font-weight: 500;
	font-size: var(--hf-type-section-h2);
	line-height: var(--hf-leading-section-h2);
}
.hf-promo__subtitle {
	margin: 0;
	font-family: var(--hf-font-title);
	font-weight: 600;
	font-size: clamp(2rem, 2vw, 2.7rem);
	line-height: 1.25;
}
.hf-promo__lede {
	margin: 0;
	max-width: 79.2rem;
	font-size: clamp(1.8rem, 1.8vw, 2.4rem);
	line-height: 1.45;
}
/* Beat .hf-section h2/p { color: inherit } and .hf-body on lede */
.hf-promo--overlay-dark .hf-promo__title,
.hf-promo--overlay-dark .hf-promo__subtitle,
.hf-promo--overlay-dark .hf-promo__lede,
.hf-promo--overlay-dark .hf-promo__lede.hf-body {
	color: #f9f7f5;
}
.hf-promo--overlay-dark .hf-promo__title {
	text-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.45);
}
.hf-promo--overlay-dark .hf-promo__subtitle {
	text-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.4);
}
.hf-promo--overlay-dark .hf-promo__lede {
	text-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.35);
}
.hf-section a.hf-promo__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	min-width: 26.8rem;
	min-height: 5.5rem;
	padding: 1.5rem 3rem;
	border: 1px solid #f9f7f5;
	border-radius: 1rem;
	font-family: var(--hf-font-title);
	font-weight: 700;
	font-size: 1.42rem;
	letter-spacing: 0.06rem;
	text-transform: uppercase;
	color: #f9f7f5;
	background: transparent;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.hf-section a.hf-promo__btn:hover {
	background: #f9f7f5;
	color: var(--hf-text-body);
	border-color: #f9f7f5;
	transform: translateY(-1px);
}
/* Light overlay — dark type + ghost CTA */
.hf-promo--overlay-light .hf-promo__title,
.hf-promo--overlay-light .hf-promo__subtitle,
.hf-promo--overlay-light .hf-promo__lede,
.hf-promo--overlay-light .hf-promo__lede.hf-body {
	color: var(--hf-text-body);
	text-shadow: none;
}
.hf-promo--overlay-light .hf-section a.hf-promo__btn {
	color: var(--hf-text-body);
	border-color: var(--hf-text-body);
}
.hf-promo--overlay-light .hf-section a.hf-promo__btn:hover {
	background: var(--hf-text-body);
	color: var(--hf-text-inverse);
	border-color: var(--hf-text-body);
}

/* ── 8. AWARD WINNING — Figma node 2106:1735766 + wreath 2132:1736081 ───── */
.hf-award-winning {
	position: relative;
	overflow: visible;
	padding: 10rem 0;
	text-align: center;
}
/* Laurel wreath behind headline (Group 15 / Frame 430) */
.hf-award-winning__wreath {
	position: absolute;
	left: 50%;
	top: 7rem;
	z-index: 0;
	width: min(74rem, 90vw);
	max-width: 74rem;
	pointer-events: none;
	transform: translateX(-50%);
}
.hf-award-winning__wreath img {
	display: block;
	width: 100%;
	height: auto;
}
.hf-award-winning__head,
.hf-award-winning__spotlight,
.hf-award-winning__foot {
	position: relative;
	z-index: 1;
}
.hf-award-winning__head {
	margin-bottom: 2rem;
	padding-top: 2rem;
	padding-bottom: 1rem;
}
.hf-section .hf-award-winning__title {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	font-family: var(--hf-font-display);
	font-weight: 500;
	font-size: var(--hf-type-section-h2);
	line-height: var(--hf-leading-section-h2);
	color: var(--hf-text-body);
	text-align: center;
}
.hf-award-winning__title-line {
	display: block;
}
/* Figma 2132:1735997 — full-bleed frosted band */
.hf-award-winning__spotlight {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.2rem;
	width: 100%;
	min-height: 32.8rem;
	padding: 5rem var(--hf-content-pad, 8rem);
	background: rgba(255, 255, 255, 0.3);
}
.hf-award-winning__logo-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	max-width: 59.5rem;
	padding: 0;
}
.hf-award-winning__logo {
	display: block;
	width: 100%;
	max-width: 57.3rem;
	height: auto;
}
.hf-award-winning__caption {
	margin: 0;
	max-width: 71.8rem;
	padding: 0 var(--hf-content-pad, 8rem);
	font-family: var(--hf-font-title);
	font-size: clamp(1.62rem, 1.8vw, 2.34rem);
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: 0.52rem;
	text-transform: uppercase;
	color: var(--hf-text-body);
	text-align: center;
}
.hf-award-winning__foot {
	margin-top: 2rem;
}
.hf-award-winning__lede {
	margin: 0 auto;
	max-width: 120.8rem;
	text-align: center;
}

/* ── 9. SPEC HIGHLIGHT — Figma node 2083:1243133 ───────────────────────── */
.hf-spec {
	position: relative;
	overflow: hidden;
	padding: clamp(6rem, 8vw, 10rem) 0;
	min-height: 56rem;
	background: var(--hf-bg-page);
}
.hf-spec__bg {
	position: absolute;
	inset: 0;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0.3;
	pointer-events: none;
}
.hf-spec__scrim {
	position: absolute;
	inset: 0;
	pointer-events: none;
}
.hf-spec--overlay-light .hf-spec__scrim {
	background: linear-gradient(
		268deg,
		rgba(255, 255, 255, 0) 0.4%,
		rgba(255, 255, 255, 0.54) 25%,
		rgb(255, 255, 255) 99%
	);
}
.hf-spec--overlay-dark .hf-spec__bg {
	opacity: 0.5;
}
.hf-spec--overlay-dark .hf-spec__scrim {
	background: linear-gradient(
		268deg,
		rgba(44, 42, 38, 0.15) 0%,
		rgba(44, 42, 38, 0.72) 28%,
		rgba(44, 42, 38, 0.94) 100%
	);
}
.hf-spec__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 35.5rem) minmax(0, 1fr);
	align-items: center;
	gap: clamp(5rem, 9vw, 10rem);
}
.hf-spec__figure {
	position: relative;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hf-spec__product {
	display: block;
	width: 100%;
	max-width: 35.5rem;
	height: auto;
	max-height: 67.4rem;
	object-fit: contain;
	border-radius: 1rem;
	filter: drop-shadow(0 1.2rem 2.4rem rgba(50, 60, 72, 0.12));
}
.hf-spec__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 2.6rem;
	max-width: 81.4rem;
}
.hf-spec__head {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.4rem;
	width: 100%;
}
.hf-section .hf-spec__title {
	margin: 0;
	font-family: var(--hf-font-display);
	font-weight: 500;
	font-size: var(--hf-type-section-h2);
	line-height: var(--hf-leading-section-h2);
	color: var(--hf-text-dark);
	text-align: left;
}
.hf-spec__title-accent {
	color: var(--hf-brand-blue);
}
.hf-spec__subtitle {
	margin: 0;
	font-family: var(--hf-font-title);
	font-size: clamp(1.8rem, 1.98vw, 2.41rem);
	font-weight: 600;
	line-height: 1.25;
	color: var(--hf-text-dark);
	text-align: left;
}
.hf-spec__lede {
	margin: 0;
	max-width: 81.4rem;
	font-size: clamp(1.62rem, 1.71vw, 2.15rem);
	line-height: 1.45;
	color: var(--hf-text-dark);
	text-align: left;
}
.hf-spec__kicker {
	margin: 0;
	font-family: var(--hf-font-title);
	font-size: clamp(1.8rem, 1.98vw, 2.41rem);
	font-weight: 600;
	line-height: 1.25;
	color: var(--hf-text-dark);
}
.hf-spec__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 2.4rem;
	width: 100%;
	max-width: 79.2rem;
}
.hf-spec__badge {
	flex: 0 0 auto;
	display: block;
	width: auto;
	max-width: 19.3rem;
	height: auto;
	max-height: 6.7rem;
	object-fit: contain;
}
.hf-section a.hf-spec__cta.hf-btn {
	min-width: 26.8rem;
	min-height: 5.5rem;
	padding: 1.5rem 3rem;
	font-size: 1.42rem;
	letter-spacing: 0.06rem;
	border-radius: 1rem;
	color: var(--hf-text-inverse);
	background: var(--hf-text-body);
	border-color: var(--hf-text-body);
}
.hf-section a.hf-spec__cta.hf-btn:hover {
	color: var(--hf-text-inverse);
	background: #2f3741;
	border-color: #2f3741;
}
/* Dark overlay — light text */
.hf-spec--overlay-dark .hf-spec__title,
.hf-spec--overlay-dark .hf-spec__subtitle,
.hf-spec--overlay-dark .hf-spec__lede,
.hf-spec--overlay-dark .hf-spec__kicker {
	color: var(--hf-text-inverse);
}
.hf-spec--overlay-dark .hf-spec__title-accent {
	color: #8eb8e8;
}

/* ── 10. TESTIMONIALS ────────────────────────────────────────────────────── */
.hf-testimonials { padding: 12rem 0; background: var(--hf-bg-page); }
.hf-section .hf-testimonials__title {
	text-align: center;
	margin: 0 0 6rem;
	font-family: var(--hf-font-display);
	font-weight: 500;
	font-size: var(--hf-type-section-h2);
	line-height: var(--hf-leading-section-h2);
	color: var(--hf-text-body);
}
.hf-testimonials__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2.4rem;
	align-items: stretch;
}
.hf-testimonial {
	background: var(--hf-bg-surface);
	border-radius: var(--hf-radius-card);
	padding: 3rem;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	height: 100%;
	min-height: 100%;
	box-shadow: 0 1.2rem 2.4rem rgba(50, 60, 72, 0.06);
	transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
	.hf-testimonials__grid > .hf-testimonial:hover {
		transform: translateY(-1rem);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hf-testimonial {
		transition: none;
	}
	.hf-testimonials__grid > .hf-testimonial:hover {
		transform: none;
	}
}

.hf-testimonial__head { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; }
.hf-testimonial__author { display: flex; align-items: center; gap: 1rem; }
.hf-testimonial__avatar { width: 3.4rem; height: 3.4rem; border-radius: 999rem; object-fit: contain; background: #fff; }
.hf-testimonial__name { font-family: var(--hf-font-title); font-size: 1.44rem; font-weight: 700; color: var(--hf-text-body); }
.hf-testimonial__where { font-family: var(--hf-font-body); font-size: 1.26rem; color: var(--hf-text-muted); }
.hf-testimonial__source { height: 2.6rem; width: auto; }
.hf-testimonial__stars { display: flex; gap: 0.36rem; color: #f0b840; font-size: 1.8rem; line-height: 1; letter-spacing: 0.18rem; }
.hf-testimonial__quote {
	flex: 1 1 auto;
	margin: 0;
	font-family: var(--hf-font-body);
	font-size: 1.44rem;
	line-height: 1.55;
	color: var(--hf-text-body);
}
.hf-testimonial > .hf-link-arrow {
	margin-top: auto;
	flex-shrink: 0;
	align-self: flex-start;
	min-width: 0;
	width: auto;
	max-width: 100%;
	font-size: clamp(1.35rem, 1.2vw, 1.5rem);
	letter-spacing: 0.12rem;
}
.hf-testimonial > .hf-link-arrow .hf-link-arrow__icon {
	width: 2rem;
	height: 2rem;
}
.hf-testimonial > .hf-link-arrow .hf-link-arrow__row {
	gap: 1rem;
}

/* ── 11. FOUR-STEP PROCESS — Figma node 2083:1231602 ────────────────────── */
.hf-process {
	padding: clamp(10rem, 12vw, 19rem) 0;
	background: #ffffff;
	text-align: center;
}
.hf-process__panel {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(4rem, 5vw, 6.4rem);
	width: 100%;
	max-width: 128rem;
	margin: 0 auto;
}
.hf-process__intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: clamp(2rem, 2.5vw, 2.7rem);
	max-width: 95.2rem;
	width: 100%;
}
.hf-section .hf-process__title {
	margin: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
	font-family: var(--hf-font-display);
	font-weight: 500;
	font-size: var(--hf-type-section-h2);
	line-height: var(--hf-leading-section-h2);
	color: var(--hf-text-body);
	text-align: center;
}
.hf-process__title-line {
	display: block;
}
.hf-process__lede {
	margin: 0;
	max-width: 93.8rem;
	font-family: var(--hf-font-title);
	font-weight: 500;
	font-size: clamp(1.62rem, 1.8vw, 2.01rem);
	line-height: 1.6;
	color: var(--hf-text-body);
	text-align: center;
}
/* Figma 2083:1231607 — four steps in one row, equal columns, ~64px gap */
.hf-process__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	column-gap: clamp(2.4rem, 4.5vw, 6.43rem);
	row-gap: 0;
	align-items: start;
	width: 100%;
	text-align: left;
}
.hf-process__step {
	display: flex;
	flex-direction: column;
	gap: clamp(0.9rem, 1.8vw, 1.79rem);
	min-width: 0;
	transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) and (pointer: fine) {
	.hf-process__grid > .hf-process__step:hover {
		transform: translateY(-1rem);
	}
}

@media (prefers-reduced-motion: reduce) {
	.hf-process__step {
		transition: none;
	}
	.hf-process__grid > .hf-process__step:hover {
		transform: none;
	}
}
.hf-process__step-head {
	display: flex;
	align-items: center;
	gap: clamp(1.2rem, 1.5vw, 1.8rem);
	width: 100%;
}
.hf-process__num {
	flex: 0 0 auto;
	font-family: var(--hf-font-title);
	font-size: clamp(3.6rem, 4.5vw, 5.62rem);
	font-weight: 700;
	line-height: 1;
	color: var(--hf-text-body);
}
.hf-process__line {
	flex: 1 1 auto;
	position: relative;
	height: 2px;
	min-width: 2rem;
	background: var(--hf-text-body);
}
.hf-process__line::after {
	content: "";
	position: absolute;
	right: 0;
	top: 50%;
	width: 0.9rem;
	height: 0.9rem;
	border-radius: 50%;
	background: var(--hf-text-body);
	transform: translate(50%, -50%);
}
.hf-section .hf-process__name {
	margin: 0;
	font-family: var(--hf-font-title);
	font-size: clamp(1.71rem, 1.71vw, 2.15rem);
	font-weight: 600;
	line-height: 1.25;
	color: var(--hf-text-body);
}
.hf-process__desc {
	margin: 0;
	font-family: var(--hf-font-body);
	font-size: clamp(1.53rem, 1.53vw, 1.92rem);
	line-height: 1.45;
	color: var(--hf-text-body);
}
.hf-process.hf-bg-subtle { background: var(--hf-bg-subtle); }
.hf-process.hf-bg-cream  { background: var(--hf-bg-page); }

/* ── 12. SECURITY — Figma node 2083:1254559 (left column only) ─────────── */
.hf-security { padding: 10rem 0; }
.hf-security__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(0, min(40rem, 36%));
	gap: clamp(3rem, 5vw, 7rem);
	align-items: stretch;
}
.hf-security__content {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: clamp(2rem, 2.5vw, 3.2rem);
	min-width: 0;
	max-width: none;
}
.hf-security__intro {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.3rem;
}
.hf-security__logo-wrap {
	display: block;
	margin: 0;
}
.hf-security__logo {
	display: block;
	width: min(39rem, 100%);
	max-width: 39rem;
	height: auto;
	margin: 0;
}
.hf-section .hf-security__title {
	margin: 0;
	font-family: var(--hf-font-display);
	font-weight: 500;
	font-size: var(--hf-type-section-h2);
	line-height: var(--hf-leading-section-h2);
	color: var(--hf-text-body);
	text-align: left;
}
.hf-security__lede {
	margin: 0;
	font-family: var(--hf-font-title);
	font-weight: 400;
	font-size: clamp(1.62rem, 1.44vw, 1.81rem);
	line-height: 1.3;
	color: var(--hf-text-body);
	text-align: left;
}
.hf-security__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1.6rem, 2.6vw, 2.63rem);
}
.hf-security__card {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	gap: 1.2rem;
	min-height: 23.2rem;
	padding: 2rem 2.316rem;
	border: 0.787px solid var(--hf-text-body);
	border-radius: 0.787rem;
	background: var(--hf-bg-page);
}
.hf-security__card-body {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	width: 100%;
}
.hf-security__card-block {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
}
.hf-security__card-block + .hf-security__card-block {
	margin-top: 0;
	padding-top: 1.2rem;
	border-top: 0.787px solid rgba(63, 72, 78, 0.18);
}
.hf-security__card-title {
	margin: 0;
	font-family: var(--hf-font-title);
	font-size: 1.42rem;
	font-weight: 600;
	line-height: 1.25;
	color: #3f484e;
}
.hf-security__card-desc {
	margin: 0;
	font-family: var(--hf-font-title);
	font-weight: 400;
	font-size: 1.42rem;
	line-height: 1.35;
	color: #3f484e;
}
.hf-security__card-tags {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.787rem;
	width: 100%;
}
.hf-security__tag {
	display: flex;
	align-items: center;
	gap: 0.787rem;
	font-family: var(--hf-font-title);
	font-size: 1.42rem;
	font-weight: 700;
	line-height: 1.25;
	color: #3f484e;
}
.hf-security__tag-icon {
	flex: 0 0 auto;
	width: 2.63rem;
	height: 2.63rem;
	color: #3f484e;
}
.hf-section a.hf-security__cta.hf-btn {
	width: 100%;
	max-width: none;
	min-height: 4.82rem;
	margin-top: 0;
	padding: 1.3rem 2.6rem;
	font-size: 1.25rem;
	letter-spacing: 0.08rem;
	border-radius: 0.877rem;
	color: var(--hf-text-inverse);
	background: var(--hf-text-body);
	border-color: var(--hf-text-body);
}
.hf-section a.hf-security__cta.hf-btn:hover {
	color: var(--hf-text-inverse);
	background: #2f3741;
	border-color: #2f3741;
}
.hf-security__media {
	width: 100%;
	max-width: 40rem;
	height: 100%;
	min-height: 100%;
	justify-self: end;
	align-self: stretch;
	border-radius: var(--hf-radius-card);
	background: var(--hf-bg-muted) center / cover no-repeat;
}

/* ── 13. BLOG CARDS — Figma node 2083:1254672 ───────────────────────────── */
.hf-blog { padding: 12rem 0; background: var(--hf-bg-page); }
.hf-blog__head { text-align: center; margin-bottom: 6rem; display: flex; flex-direction: column; gap: 1.4rem; align-items: center; }
.hf-blog__title {
	font-family: var(--hf-font-display);
	font-weight: 500;
	font-size: var(--hf-type-section-h2);
	line-height: var(--hf-leading-section-h2);
	color: var(--hf-text-body);
}
.hf-blog__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 3rem;
}
.hf-blog__card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	border-radius: var(--hf-radius-card);
	overflow: hidden;
	background: var(--hf-bg-surface);
	box-shadow: 0 1.2rem 2.4rem rgba(50, 60, 72, 0.06);
	transition:
		transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) and (pointer: fine) {
	.hf-blog__grid > .hf-blog__card:hover {
		transform: translateY(-1rem);
		box-shadow: 0 2rem 4rem rgba(50, 60, 72, 0.1);
	}
}
.hf-blog__card-img {
	width: 100%;
	aspect-ratio: 456 / 268;
	background: var(--hf-bg-muted) center / cover no-repeat;
}
.hf-blog__card-body {
	padding: clamp(2rem, 2.5vw, 3rem);
	display: flex;
	flex-direction: column;
	gap: clamp(1.2rem, 1.5vw, 1.6rem);
	min-width: 0;
}
.hf-blog__tag {
	align-self: flex-start;
	background: var(--hf-bg-subtle);
	color: var(--hf-text-body);
	font-family: var(--hf-font-title);
	font-size: 1.08rem;
	font-weight: 700;
	letter-spacing: 0.2rem;
	text-transform: uppercase;
	padding: 0.6rem 1.4rem;
	border-radius: 999rem;
}
/* Date + author on one line; scaled down so narrow cards do not wrap */
.hf-blog__meta {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.6rem;
	font-family: var(--hf-font-title);
	font-weight: 400;
	font-size: clamp(1.08rem, 0.99vw, 1.35rem);
	line-height: 1.2;
	color: var(--hf-text-body);
}
.hf-blog__meta span {
	white-space: nowrap;
	flex-shrink: 0;
}
.hf-blog__meta span:last-child {
	flex-shrink: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
}
.hf-blog__meta span + span::before {
	content: "·";
	margin-right: 0.6rem;
	color: var(--hf-text-muted);
}
.hf-blog__post-title {
	margin: 0;
	font-family: var(--hf-font-title);
	font-weight: 600;
	font-size: clamp(1.53rem, 1.62vw, 1.98rem);
	line-height: 1.3;
	color: var(--hf-text-body);
}
.hf-blog__more,
.hf-faqs__cta {
	display: flex;
	justify-content: center;
}
.hf-blog__more { display: flex; justify-content: center; margin-top: 5rem; }

/* ── 14. FAQs ────────────────────────────────────────────────────────────── */
/* Desktop: min one viewport + JS may raise to full expanded grid (accordion stability). Mobile: natural height. */
.hf-faqs {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	min-height: 100dvh;
	padding: clamp(6rem, 8vh, 12rem) 0;
	background: var(--hf-bg-subtle);
}
.hf-faqs .hf-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	max-width: var(--hf-content-max);
	margin: 0 auto;
	padding-left: var(--hf-content-pad);
	padding-right: var(--hf-content-pad);
	gap: clamp(4rem, 5vw, 6rem);
}
/* .hf-section h2 { margin: 0 } beats .hf-faqs__title alone — use section + class */
.hf-section.hf-faqs .hf-faqs__title {
	margin: 0;
	width: 100%;
	align-self: center;
	text-align: center;
	font-family: var(--hf-font-display);
	font-weight: 500;
	font-size: var(--hf-type-section-h2);
	line-height: var(--hf-leading-section-h2);
	color: var(--hf-text-body);
}
.hf-faqs__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 6rem;
	align-items: start;
	width: 100%;
}
.hf-faqs__col {
	display: flex;
	flex-direction: column;
	gap: 4rem;
	min-width: 0;
}
.hf-faq {
	border-bottom: 1px solid var(--hf-border-subtle);
	padding-bottom: 2.4rem;
	align-self: flex-start;
	width: 100%;
}
.hf-faq__q {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 2rem;
	background: none;
	border: 0;
	padding: 0;
	text-align: left;
	font-family: var(--hf-font-title);
	font-size: 1.71rem;
	font-weight: 700;
	color: var(--hf-text-body);
	line-height: 1.35;
	cursor: pointer;
	list-style: none;
}
.hf-faq__q::-webkit-details-marker { display: none; }
.hf-faq__icon { flex: 0 0 auto; width: 2.4rem; height: 2.4rem; position: relative; }
.hf-faq__icon::before,
.hf-faq__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background: var(--hf-text-body);
	border-radius: 1px;
	transform: translate(-50%, -50%);
}
/* Horizontal stroke — stays visible (minus when open) */
.hf-faq__icon::before {
	width: 2.4rem;
	height: 2px;
}
/* Vertical stroke — hidden when open (plus → minus) */
.hf-faq__icon::after {
	width: 2px;
	height: 2.4rem;
	opacity: 1;
	transition: opacity 0.25s ease;
}
.hf-faq[open] .hf-faq__icon::after {
	opacity: 0;
}
.hf-faq__a {
	overflow: hidden;
	margin-top: 0;
	will-change: height, opacity;
}
.hf-faq[open]:not(.is-animating) .hf-faq__a {
	margin-top: 1.44rem;
}
.hf-faq__a-inner {
	font-family: var(--hf-font-body);
	font-size: 1.44rem;
	line-height: 1.6;
	color: var(--hf-text-muted);
}
@media (prefers-reduced-motion: reduce) {
	.hf-faq__icon::before,
	.hf-faq__icon::after {
		transition: none;
	}
}
.hf-faqs__cta { text-align: center; margin-top: 0; }

/* ── 15. SOCIAL GRID ─────────────────────────────────────────────────────── */
.hf-social { padding: 12rem 0; background: var(--hf-bg-page); }
.hf-social__head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	column-gap: 3rem;
	row-gap: 1.4rem;
	margin-bottom: 5rem;
}
.hf-social__title-block {
	display: contents;
}
.hf-section .hf-social__title {
	grid-column: 1 / -1;
	margin: 0;
	font-family: var(--hf-font-display);
	font-weight: 500;
	font-size: var(--hf-type-section-h2);
	line-height: var(--hf-leading-section-h2);
	color: var(--hf-text-body);
}
.hf-social__handle {
	grid-column: 1;
	grid-row: 2;
	display: flex;
	align-items: center;
	gap: 1.4rem;
	min-width: 0;
	font-family: var(--hf-font-title);
	font-size: var(--hf-type-ui);
	font-weight: 700;
	line-height: 1.25;
	color: var(--hf-text-body);
}
.hf-social__handle span {
	font-size: inherit;
	line-height: inherit;
}
.hf-social__avatar { flex-shrink: 0; width: 6.4rem; height: 6.4rem; border-radius: 999rem; object-fit: contain; background: #fff; }
.hf-section a.hf-social__follow.hf-btn {
	grid-column: 2;
	grid-row: 2;
	flex-shrink: 0;
	align-self: center;
	justify-self: end;
	min-height: 6.4rem;
	padding: 1.2rem 2.4rem;
	border-radius: 0.6rem;
	background: var(--hf-text-body, #323c48);
	border-color: var(--hf-text-body, #323c48);
	color: var(--hf-text-inverse);
	gap: 1rem;
}
.hf-section a.hf-social__follow.hf-btn:hover {
	background: #2f3741;
	border-color: #2f3741;
	color: var(--hf-text-inverse);
}
.hf-social__follow-icon {
	flex: 0 0 auto;
	width: 2rem;
	height: 2rem;
}
.hf-social__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 3rem;
	align-items: start;
}
.hf-social__grid--embeds { gap: clamp(2rem, 3vw, 3rem); }
.hf-social__embed {
	min-width: 0;
	border-radius: var(--hf-radius-card);
	overflow: hidden;
	background: var(--hf-bg-surface);
}
.hf-social__embed .instagram-media {
	min-width: 0 !important;
	width: 100% !important;
	max-width: 100% !important;
	margin-left: auto !important;
	margin-right: auto !important;
}
/* Legacy Tagshop wall (home_tagshop block) */
.hf-social__wall {
	width: 100%;
	min-height: 48rem;
	border-radius: var(--hf-radius-card);
	overflow: hidden;
	background: var(--hf-bg-surface);
	position: relative;
}
.hf-social__wall .tagshop {
	width: 100%;
	min-height: 48rem;
	overflow: hidden;
}
/* Hide Tagshop/Tagbox “Powered by” row injected by embed-lite widget */
.hf-social__wall .tb_app_container div:has(> a[href*="tagbox"]),
.hf-social__wall .tb_app_container div:has(> a[href*="tagshop.ai"]),
.hf-social__wall a[href*="tagbox.com"],
.hf-social__wall a[href*="cloud.tagbox.com"] {
	display: none !important;
	visibility: hidden !important;
	height: 0 !important;
	min-height: 0 !important;
	max-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
	pointer-events: none !important;
}

/* ── 16. FINAL CTA — Figma node 2106:1254971 ─────────────────────────────── */
.hf-cta {
	padding: clamp(6rem, 8vw, 10rem) 0;
	background: var(--hf-bg-page);
	color: var(--hf-text-body);
	text-align: center;
}
.hf-cta--has-bg {
	background:
		linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.7) 100%),
		var(--hf-bg-dark) center / cover no-repeat;
	color: var(--hf-text-inverse);
}
/* Figma: 44px between intro / form / chips */
.hf-cta__panel {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4.4rem;
	width: 100%;
	max-width: 128rem;
	margin: 0 auto;
}
.hf-cta__intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
	width: 100%;
	max-width: 95.2rem;
}
.hf-section .hf-cta__title {
	margin: 0;
	font-family: var(--hf-font-display);
	font-weight: 500;
	font-size: var(--hf-type-section-h2);
	line-height: var(--hf-leading-section-h2);
	color: var(--hf-text-body);
	text-align: center;
}
.hf-cta__lede {
	margin: 0;
	max-width: 95.2rem;
	font-family: var(--hf-font-body);
	font-size: clamp(1.62rem, 1.98vw, 2.16rem);
	line-height: 1.45;
	color: var(--hf-text-body);
	text-align: center;
}
.hf-cta__form {
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: flex-end;
	gap: 1.5rem;
	width: 100%;
	max-width: 128rem;
}
.hf-cta__field {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1rem;
	flex: 1 1 0;
	min-width: 0;
	max-width: 28rem;
	text-align: left;
}
.hf-cta__label {
	font-family: var(--hf-font-title);
	font-size: 1.44rem;
	font-weight: 700;
	line-height: 1.2;
	color: #35393e;
	text-transform: none;
	letter-spacing: 0;
}
.hf-cta__req { color: #b35654; }
.hf-cta__field input {
	width: 100%;
	height: 5.1rem;
	padding: 0 1.4rem;
	background: #ffffff;
	border: 1px solid #35393e;
	border-radius: var(--hf-radius-button);
	font-family: var(--hf-font-body);
	font-size: 1.44rem;
	color: var(--hf-text-body);
}
.hf-cta__field input::placeholder { color: var(--hf-text-muted); }
.hf-cta__field input:focus {
	outline: 2px solid var(--hf-brand-blue);
	border-color: var(--hf-brand-blue);
}
.hf-section button.hf-cta__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	flex: 0 0 auto;
	width: auto;
	min-width: 0;
	max-width: 39rem;
	min-height: 5.5rem;
	height: auto;
	white-space: nowrap;
	padding: 1.4rem 2.4rem;
	background: var(--hf-text-body);
	color: var(--hf-text-inverse);
	border: 1px solid #396091;
	border-radius: var(--hf-radius-button);
	font-family: var(--hf-font-title);
	font-size: 1.44rem;
	font-weight: 700;
	letter-spacing: 0.06rem;
	text-transform: uppercase;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}
.hf-section button.hf-cta__submit:hover {
	background: #2f3741;
	border-color: #396091;
}
.hf-cta__chips {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: clamp(2rem, 4vw, 4.7rem);
	width: 100%;
	margin: 0;
	font-family: var(--hf-font-body);
	font-size: clamp(1.44rem, 1.44vw, 1.75rem);
	line-height: 1.3;
	color: var(--hf-text-body);
}
.hf-cta__chip {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	white-space: nowrap;
}
.hf-cta__chip::before {
	content: "";
	width: 2.3rem;
	height: 2.3rem;
	flex: 0 0 auto;
	background: currentColor;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9.55 18 3.85 12.3l1.425-1.425L9.55 15.15l9.175-9.175L20.15 7.4z'/></svg>") center / contain no-repeat;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9.55 18 3.85 12.3l1.425-1.425L9.55 15.15l9.175-9.175L20.15 7.4z'/></svg>") center / contain no-repeat;
}

/* Dark photo background variant */
.hf-cta--has-bg .hf-cta__title {
	color: var(--hf-text-inverse);
}
.hf-cta--has-bg .hf-cta__lede {
	color: rgba(255, 255, 255, 0.9);
}
.hf-cta--has-bg .hf-cta__label {
	color: rgba(255, 255, 255, 0.92);
}
.hf-cta--has-bg .hf-cta__req { color: #e8a8a6; }
.hf-cta--has-bg .hf-cta__field input {
	background: rgba(255, 255, 255, 0.12);
	border-color: rgba(255, 255, 255, 0.35);
	color: var(--hf-text-inverse);
}
.hf-cta--has-bg .hf-cta__field input::placeholder {
	color: rgba(255, 255, 255, 0.55);
}
.hf-cta--has-bg .hf-cta__field input:focus {
	outline-color: #b8e8ff;
	border-color: transparent;
}
.hf-cta--has-bg button.hf-cta__submit {
	background: var(--hf-brand-blue);
	border-color: var(--hf-brand-blue);
}
.hf-cta--has-bg button.hf-cta__submit:hover {
	background: var(--hf-brand-blue-deep);
	border-color: var(--hf-brand-blue-deep);
}
.hf-cta--has-bg .hf-cta__chips {
	color: rgba(255, 255, 255, 0.95);
}

.hf-cta.hf-bg-white  { background: #ffffff; }
.hf-cta.hf-bg-subtle { background: var(--hf-bg-subtle); }

/* ── 17. SERVICE AREAS ───────────────────────────────────────────────────── */
#hf-areas.hf-areas {
	box-sizing: border-box;
	min-height: 100vh;
	min-height: 100dvh;
	height: auto;
	padding: clamp(5rem, 7.5vh, 7rem) 0 clamp(4.5rem, 6.5vh, 6.5rem);
	background: var(--hf-bg-page);
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
}
#hf-areas .hf-container {
	flex: 0 1 auto;
	min-height: 0;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}
.hf-areas__head {
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	margin-bottom: clamp(2rem, 3vh, 2.8rem);
}
/* Figma: "Delco Service Areas" → Magneta Medium 66px */
.hf-areas__title { font-family: var(--hf-font-display); font-weight: 500; font-size: var(--hf-type-section-h2); line-height: var(--hf-leading-section-h2); color: var(--hf-text-body); }
.hf-areas__eyebrow { font-family: var(--hf-font-title); font-size: 1.26rem; font-weight: 600; letter-spacing: 0.38rem; text-transform: uppercase; color: var(--hf-text-accent); }
.hf-areas__tabs {
	flex-shrink: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem 1.6rem;
	margin-bottom: clamp(2rem, 3vh, 2.8rem);
}
.hf-areas__tab {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 14rem;
	min-height: 5rem;
	padding: 1rem 2.2rem;
	border: 1px solid var(--hf-text-body);
	border-radius: 5rem;
	background: #ffffff;
	box-shadow: none;
	font-family: var(--hf-font-title);
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.22rem;
	text-transform: uppercase;
	color: var(--hf-text-body);
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.hf-areas__tab:hover:not(.hf-areas__tab--active) {
	background: var(--hf-bg-subtle, #f9f7f5);
}
.hf-areas__tab--active {
	background: var(--hf-text-body);
	color: var(--hf-text-inverse);
	border-color: var(--hf-text-body);
}
.hf-areas__tab:focus-visible {
	outline: 2px solid var(--hf-brand-blue, #4779b9);
	outline-offset: 2px;
}
.hf-areas__split {
	flex: 0 1 auto;
	min-height: 0;
	max-height: clamp(52rem, 68vh, 62rem);
	height: clamp(52rem, 68vh, 62rem);
	display: grid;
	grid-template-columns: minmax(0, 32rem) 2.1rem minmax(0, 1fr);
	align-items: stretch;
}
.hf-areas__sidebar {
	display: flex;
	flex-direction: column;
	background: #ffffff;
	border-radius: 2rem 0 0 2rem;
	padding: clamp(2rem, 3vh, 4rem) clamp(2rem, 2.5vw, 3.8rem) clamp(1.6rem, 2vh, 2.8rem) clamp(2rem, 3vw, 4.3rem);
	min-height: 0;
	overflow: hidden;
}
/* Custom scrollbar column (Figma: 21px track + dark thumb) */
.hf-areas__divider {
	position: relative;
	align-self: stretch;
	width: 2.1rem;
	min-width: 2.1rem;
	min-height: 0;
	height: 100%;
	background: #cccccc;
	cursor: default;
	user-select: none;
	flex-shrink: 0;
	overflow: hidden;
}
.hf-areas__scrollbar-thumb {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 48%;
	min-height: 4.8rem;
	background: var(--hf-text-body, #323c48);
	border-radius: 0;
	cursor: grab;
	touch-action: none;
	will-change: transform;
}
.hf-areas__scrollbar-thumb:active {
	cursor: grabbing;
}
.hf-areas__divider--idle .hf-areas__scrollbar-thumb {
	pointer-events: none;
	cursor: default;
}
.hf-areas__divider--active .hf-areas__scrollbar-thumb {
	cursor: grab;
}
.hf-areas__panel {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-top: 2rem;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}
.hf-areas__panel::-webkit-scrollbar {
	display: none;
	width: 0;
	height: 0;
}
.hf-areas__region[hidden] { display: none !important; }
.hf-section .hf-areas__col-title {
	margin: 0 0 2.4rem;
	font-family: var(--hf-font-title);
	font-size: 1.53rem;
	font-weight: 700;
	letter-spacing: 0.2rem;
	text-transform: uppercase;
	color: var(--hf-text-body);
}

/* Region dropdown (tabs on desktop; toolbar row on mobile) */
.hf-areas__toolbar {
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
	width: 100%;
}

.hf-areas__region-select-wrap {
	display: none;
}

.hf-areas__region-select-label {
	font-family: var(--hf-font-title);
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.14rem;
	text-transform: uppercase;
	color: var(--hf-text-body);
}

.hf-section .hf-areas__region-select {
	box-sizing: border-box;
	width: 100%;
	min-height: 5.5rem;
	margin: 0;
	padding: 0 4rem 0 2rem;
	border: 1px solid var(--hf-text-body);
	border-radius: 5rem;
	background-color: #ffffff;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23323c48'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 1.6rem center;
	background-size: 2rem;
	font-family: var(--hf-font-title);
	font-size: 1.26rem;
	font-weight: 700;
	letter-spacing: 0.14rem;
	text-transform: uppercase;
	color: var(--hf-text-body);
	-webkit-appearance: none;
	appearance: none;
	cursor: pointer;
}
.hf-areas__list {
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
	margin: 0;
	padding: 0;
	list-style: none;
}
.hf-areas__item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	font-family: var(--hf-font-body);
	font-size: 2rem; /* 20px */
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	color: var(--hf-text-body);
}
.hf-areas__item > span:last-child {
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
	line-height: inherit;
}
.hf-areas__item[hidden] { display: none !important; }
.hf-areas__item--clickable {
	cursor: pointer;
	border-radius: 0.4rem;
	transition: color 0.2s ease, background 0.2s ease;
}
.hf-areas__item--clickable:hover,
.hf-areas__item--clickable:focus-visible {
	background: rgba(71, 121, 185, 0.08);
	outline: none;
}
.hf-areas__item--clickable:focus-visible {
	box-shadow: 0 0 0 2px rgba(71, 121, 185, 0.35);
}
.hf-areas__item--active {
	color: var(--hf-brand-blue, #4779b9);
}
.hf-areas__item--active .hf-areas__bullet {
	background: #c62828;
}
.hf-areas__bullet {
	flex: 0 0 0.8rem;
	width: 0.8rem;
	height: 0.8rem;
	margin-top: 0.35em;
	border-radius: 50%;
	background: var(--hf-text-accent, #3d5889);
}
.hf-areas__search {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	min-height: 5.5rem;
	padding: 0 3rem 0 4rem;
	border: 1px solid var(--hf-text-body);
	border-radius: 5rem;
	background: #fff;
}
.hf-areas__search--map {
	position: absolute;
	top: 3.2rem;
	left: 3.2rem;
	right: 3.2rem;
	z-index: 2;
	max-width: 48rem;
	box-shadow: 0 0.4rem 1.2rem rgba(50, 60, 72, 0.12);
}
.hf-areas__search-label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}
.hf-areas__search-input {
	flex: 1 1 auto;
	border: 0;
	background: transparent;
	font-family: var(--hf-font-title);
	font-size: 1.26rem;
	font-weight: 700;
	letter-spacing: 0.25rem;
	text-transform: uppercase;
	color: var(--hf-text-body);
	outline: none;
}
.hf-areas__search-input::placeholder { color: var(--hf-text-muted); opacity: 0.85; }
.hf-areas__search-icon {
	flex: 0 0 2.4rem;
	width: 2.4rem;
	height: 2.4rem;
	background: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23323c48'%3E%3Cpath d='M15.5 14h-.79l-.28-.27A6.471 6.471 0 0 0 16 9.5 6.5 6.5 0 1 0 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E");
}
.hf-areas__map-wrap {
	position: relative;
	z-index: 0;
	isolation: isolate; /* keep Leaflet panes/controls inside the map column */
	min-height: 0;
	height: 100%;
	border-radius: 0 2rem 2rem 0;
	overflow: hidden;
	background: var(--hf-bg-muted);
}
.hf-areas__map {
	width: 100%;
	height: 100%;
	min-height: 0;
	position: relative;
}
.hf-areas__map .leaflet-container {
	width: 100%;
	height: 100%;
	min-height: 0;
	font-family: var(--hf-font-body);
	z-index: 0;
}
#hf-areas .leaflet-top,
#hf-areas .leaflet-bottom {
	z-index: 5;
}
.hf-areas__map-wrap .leaflet-control-attribution {
	font-size: 1rem;
}
.hf-areas__map-fallback {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 2rem 3rem;
	text-align: center;
	font-family: var(--hf-font-body);
	font-size: 1.44rem;
	line-height: 1.5;
	color: var(--hf-text-muted);
	background: var(--hf-bg-muted);
}

/* ── responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
	:root { --hf-content-pad: 4.8rem; }
	.hf-why__grid,
	.hf-testimonials__grid,
	.hf-process__grid { column-gap: 3rem; }
	.hf-social__grid,
	.hf-ba__grid,
	.hf-faqs__grid { gap: 0 3rem; }
	.hf-faqs__col { gap: 3rem; }
	.hf-blog__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 3rem;
	}
	/* Odd last card (e.g. 3-up in 2 cols) spans full width on its row */
	.hf-blog__card:last-child:nth-child(odd) {
		grid-column: 1 / -1;
	}
	.hf-blog__card:last-child:nth-child(odd) .hf-blog__card-img {
		width: 100%;
		aspect-ratio: 16 / 9;
	}
	.hf-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
	.hf-innovation .hf-container { gap: 4rem; }
}

/* Pair cards need full column width — stack before they overlap */
@media (max-width: 1100px) {
	.hf-innovation__grid {
		grid-template-columns: 1fr;
		gap: 2.4rem;
	}
	.hf-innovation__card--hero,
	.hf-innovation__card--pair {
		grid-column: auto;
		aspect-ratio: auto;
		min-height: 51.6rem; /* ~516px — Larson sm stacked tile */
	}
}

@media (max-width: 900px) {
	/*
	 * Mobile type + spacing (aligned with larsondoors.com-style rhythm):
	 * 16px body, ~28–32px section titles, 48–56px section padding, 16–24px stack gaps.
	 */
	:root {
		--hf-content-pad: 2.4rem; /* 24px — Larson px-6 */
		--hf-mob-section-y: 5.6rem;
		--hf-mob-section-y-sm: 4.8rem;
		--hf-mob-gap-xl: 3.2rem;
		--hf-mob-gap-lg: 2.4rem;
		--hf-mob-gap-md: 1.6rem;
		--hf-mob-gap-sm: 1.2rem;
		--hf-type-base: 1.6rem;
		--hf-type-body: 1.6rem;
		--hf-type-body-lg: 1.8rem;
		--hf-type-body-sm: 1.4rem;
		--hf-type-caption: 1.3rem;
		--hf-type-eyebrow: 1.2rem;
		--hf-type-ui: 1.4rem;
		--hf-type-display-lg: 3.2rem;
		--hf-type-display-md: 2.8rem;
		--hf-type-display-sm: 2.4rem;
		--hf-mob-section-title-size: clamp(2.7rem, 7vw, 3.3rem);
		--hf-mob-section-title-lh: 1.15;
	}

	.hf-section:not(.hf-hero) {
		font-size: var(--hf-type-base);
	}

	.hf-eyebrow {
		font-size: var(--hf-type-eyebrow);
		letter-spacing: 0.2rem;
	}

	.hf-display {
		line-height: 1.15;
	}

	.hf-display--hero {
		font-size: clamp(3.2rem, 8.5vw, 4rem);
	}

	.hf-body,
	.hf-body--lg {
		font-size: var(--hf-type-body);
		line-height: 1.5;
	}

	.hf-body--sm {
		font-size: var(--hf-type-body-sm);
	}

	.hf-section .hf-btn,
	.hf-section a.hf-btn,
	.hf-section button.hf-btn {
		min-height: 4.8rem;
		padding: 1.2rem 2.4rem;
		font-size: var(--hf-type-ui);
		letter-spacing: 0.12rem;
	}

	.hf-link-arrow--lg {
		font-size: 1.6rem;
		letter-spacing: 0.16rem;
	}

	.hf-link-arrow--card {
		font-size: 1.4rem;
	}

	/* Section H2 titles — unified mobile stack */
	.hf-section .hf-innovation__title,
	.hf-section .hf-testimonials__title,
	.hf-section .hf-blog__title,
	.hf-section .hf-faqs__title,
	.hf-section .hf-areas__title,
	.hf-section .hf-estimate__title,
	.hf-section .hf-spec__title,
	.hf-section .hf-process__title,
	.hf-section .hf-cta__title,
	.hf-section .hf-promo__title,
	.hf-section .hf-award-winning__title,
	.hf-section .hf-security__title,
	.hf-section .hf-social__title,
	.hf-section.hf-ba .hf-display.hf-display--md,
	.hf-display--lg,
	.hf-display--md,
	.hf-display--sm {
		font-size: var(--hf-mob-section-title-size);
		line-height: var(--hf-mob-section-title-lh);
		letter-spacing: -0.005em;
		text-align: center;
	}

	.hf-section .hf-social__title {
		white-space: normal;
		text-wrap: balance;
	}

	/* Card / subheadings (~20–22px) */
	.hf-section .hf-security__card-title {
		font-size: 2rem;
		line-height: 1.25;
		margin-bottom: 0;
		text-align: left;
	}
	.hf-security__card-block {
		gap: var(--hf-mob-gap-sm);
	}
	.hf-security__card-block + .hf-security__card-block {
		margin-top: 0;
		padding-top: var(--hf-mob-gap-md);
	}
	.hf-section .hf-areas__col-title {
		font-size: 2rem;
		font-weight: 800;
		line-height: 1.25;
		margin-bottom: 1.2rem;
		text-align: left;
		letter-spacing: 0.22rem;
	}

	/* Body copy in blocks */
	.hf-section .hf-innovation__card-desc,
	.hf-section .hf-estimate__lede,
	.hf-section .hf-spec__lede,
	.hf-section .hf-spec__kicker,
	.hf-section .hf-promo__subtitle,
	.hf-section .hf-cta__lede,
	.hf-section .hf-security__lede,
	.hf-section .hf-testimonial__quote,
	.hf-section .hf-faq__answer,
	.hf-hero__lede {
		font-size: var(--hf-type-body);
		line-height: 1.5;
	}

	.hf-section .hf-trust__eyebrow {
		font-size: var(--hf-type-eyebrow);
		letter-spacing: 0.2rem;
		line-height: 1.5;
	}

	.hf-section .hf-trust__lede {
		font-size: clamp(2.6rem, 7vw, 3.2rem);
		/* Larson type-h3 rhythm: generous fixed leading on display Magneta */
		line-height: clamp(5rem, 1.95em, 6.2rem);
	}

	/* Why Delco — same desktop grid; display type scaled to stay in bounds */
	.hf-section .hf-why__title-why {
		font-size: clamp(4.2rem, 11vw, 6rem);
		line-height: 0.92;
	}

	.hf-section .hf-why__title-sub {
		font-size: clamp(1.35rem, 3.4vw, 1.9rem);
		line-height: 1.22;
		letter-spacing: 0.08em;
	}

	.hf-section .hf-why__title-end {
		font-size: clamp(4.8rem, 12.5vw, 6.8rem);
		line-height: 0.88;
		letter-spacing: -0.02em;
		max-width: 100%;
	}

	.hf-section .hf-ba__lede,
	.hf-section .hf-ba__eyebrow {
		font-size: var(--hf-type-body);
	}

	.hf-section .hf-areas__item {
		font-size: var(--hf-type-body-lg);
	}

	/* Hero */
	.hf-hero { padding: 0 var(--hf-content-pad) 4rem; }
	.hf-hero__inner { padding: 8rem 3rem 14rem; min-height: 64rem; }
	.hf-hero__content { gap: 2rem; max-width: 100%; }
	.hf-hero__cta-row { gap: 1.6rem; margin-top: 0.5rem; }
	.hf-award-strip {
		position: relative;
		left: auto;
		bottom: auto;
		transform: none;
		width: 100%;
		margin-top: 3rem;
		border-radius: 1.6rem;
		padding: 1.6rem 2rem;
		gap: 1.2rem;
		flex-wrap: nowrap;
		align-items: center;
	}
	.hf-award-strip__label {
		flex-shrink: 0;
		white-space: nowrap;
	}
	.hf-award-strip__logos {
		flex-wrap: nowrap;
		justify-content: center;
		gap: clamp(0.8rem, 2.5vw, 1.6rem);
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	.hf-award-strip__logos::-webkit-scrollbar { display: none; }
	.hf-award-strip__logos img {
		height: clamp(2.6rem, 6vw, 3.4rem);
		flex-shrink: 0;
	}
	.hf-award-strip__scroll.hf-scroll-row {
		flex: 1 1 auto;
		min-width: 0;
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: 1.2rem;
	}
	.hf-award-strip__scroll .hf-scroll-nav {
		justify-content: center;
	}

	/* Larson-style scroll arrows (testimonials, blog, award logos) */
	.hf-scroll-nav {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 1.6rem;
		margin-top: 2.4rem;
	}
	.hf-scroll-nav[hidden] {
		display: none !important;
	}
	.hf-award-strip__scroll .hf-scroll-nav {
		margin-top: 0;
	}

	/* Trust */
	.hf-trust { padding: var(--hf-mob-section-y) var(--hf-content-pad) var(--hf-mob-section-y-sm); }
	.hf-trust .hf-container { max-width: 100%; }
	.hf-trust__inner { gap: var(--hf-mob-gap-md); }
	.hf-trust__lede { max-width: 100%; }

	/* Innovation gallery */
	.hf-innovation { padding: var(--hf-mob-section-y) 0 calc(var(--hf-mob-section-y) + 0.8rem); }
	.hf-innovation .hf-container { max-width: 100%; gap: var(--hf-mob-gap-xl); }
	.hf-section .hf-innovation__title {
		max-width: 36rem;
		margin-left: auto;
		margin-right: auto;
		text-wrap: balance;
	}
	.hf-innovation__grid { gap: var(--hf-mob-gap-lg); }
	.hf-innovation__card { padding: var(--hf-mob-gap-xl); }
	/* Larson mobile tiles: min-h-[575px], copy anchored at bottom with gradient scrim */
	.hf-innovation__card--hero,
	.hf-innovation__card--pair {
		aspect-ratio: auto;
		min-height: 57.5rem;
	}
	/* Mobile: taller bottom scrim for white copy contrast */
	.hf-innovation__overlay {
		background: linear-gradient(
			to top,
			rgba(0, 0, 0, 0.96) 0%,
			rgba(0, 0, 0, 0.88) 28%,
			rgba(0, 0, 0, 0.72) 48%,
			rgba(0, 0, 0, 0.42) 65%,
			rgba(0, 0, 0, 0.18) 80%,
			transparent 100%
		);
	}
	.hf-innovation__body { max-width: 100%; }
	.hf-section .hf-innovation__card-title {
		font-size: clamp(3rem, 7.5vw, 3.8rem);
		line-height: 1.12;
		letter-spacing: 0.14rem;
	}
	.hf-section .hf-innovation__card-desc { margin-top: var(--hf-mob-gap-sm); }
	.hf-innovation__cta-row { margin-top: var(--hf-mob-gap-xl); flex-direction: column; align-items: stretch; }
	.hf-section a.hf-innovation__btn { min-width: 0; width: 100%; }
	.hf-section a.hf-innovation__link { width: 100%; justify-content: center; }

	/* Why — desktop layout on mobile (giant WHY / DELCO?, sub beside WHY) */
	.hf-why {
		padding: var(--hf-mob-section-y) 0;
	}
	.hf-why .hf-container {
		gap: clamp(4.8rem, 10vw, 5.6rem);
		max-width: 100%;
		padding-left: clamp(2.4rem, 5vw, var(--hf-content-pad));
		padding-right: clamp(2.4rem, 5vw, var(--hf-content-pad));
	}
	.hf-section .hf-why__title {
		align-items: flex-start;
		text-align: left;
		max-width: 100%;
		min-width: 0;
	}
	.hf-why__head {
		max-width: 100%;
		min-width: 0;
	}
	.hf-why__title-top {
		column-gap: clamp(1rem, 2.8vw, 2rem);
		row-gap: clamp(0.2rem, 1vh, 0.6rem);
		max-width: 100%;
		min-width: 0;
	}
	.hf-why__title-sub-line {
		overflow-wrap: anywhere;
	}
	.hf-why__grid {
		grid-template-columns: 1fr;
		row-gap: 3.5rem;
		column-gap: 0;
	}
	.hf-why__item {
		gap: 0;
	}
	.hf-why__num {
		flex: 0 0 7rem;
		min-width: 7rem;
		width: 7rem;
		font-size: clamp(4.2rem, 12vw, 6rem);
		letter-spacing: 0.2rem;
	}
	.hf-why__body {
		max-width: 100%;
		padding-top: 0.35rem;
	}
	.hf-section .hf-why__name,
	.hf-section .hf-why__desc {
		font-size: clamp(1.8rem, 4.2vw, 2rem);
		line-height: 1.45;
	}

	/* Before & after */
	.hf-ba { padding: var(--hf-mob-section-y) 0; }
	.hf-ba__header { margin-bottom: var(--hf-mob-gap-xl); gap: var(--hf-mob-gap-md); }
	.hf-ba__grid {
		grid-template-columns: 1fr;
		gap: 2.4rem;
		margin-top: 2.4rem;
		align-items: stretch;
		max-width: 52rem;
	}
	.hf-ba__card { height: auto; }
	.hf-ba__compare { margin-top: 0; margin-bottom: 0; }
	.hf-ba__card--center .hf-ba__compare { min-height: 32rem; aspect-ratio: 4 / 5; }

	/* Estimate — content (title, time, lede, checks) then form */
	.hf-estimate { padding: var(--hf-mob-section-y) 0; }
	.hf-estimate__grid {
		grid-template-columns: 1fr;
		grid-template-areas: "content" "form";
		gap: var(--hf-mob-gap-xl);
		width: 100%;
		align-items: stretch;
	}
	.hf-estimate__content {
		align-items: center;
		text-align: center;
	}
	.hf-estimate__intro {
		align-items: center;
		text-align: center;
	}
	.hf-estimate__form {
		padding: var(--hf-mob-gap-xl) var(--hf-content-pad);
	}
	/* Checklist block centered; each row stays left-aligned (tick + copy) */
	.hf-estimate__checks {
		align-self: center;
		align-items: flex-start;
		width: fit-content;
		max-width: 100%;
		margin-inline: auto;
		text-align: left;
	}
	.hf-estimate__check {
		justify-content: flex-start;
		text-align: left;
		width: 100%;
	}

	/* Promo (Sierra Pacific) — tall mobile tile like Larson innovation cards */
	.hf-promo__panel,
	.hf-promo__content {
		min-height: 57.5rem;
	}
	.hf-promo__content {
		align-items: center;
		justify-content: center;
		text-align: center;
		padding-top: var(--hf-mob-gap-xl);
		padding-bottom: var(--hf-mob-gap-xl);
	}
	.hf-promo__logo {
		margin-left: auto;
		margin-right: auto;
		object-position: center;
	}
	.hf-promo__copy {
		align-items: center;
		text-align: center;
		gap: 2rem;
	}
	.hf-promo--overlay-dark .hf-promo__scrim {
		background:
			linear-gradient(
				to right,
				rgba(0, 0, 0, 0.82) 0%,
				rgba(0, 0, 0, 0.35) 48%,
				rgba(0, 0, 0, 0.15) 100%
			),
			linear-gradient(
				to top,
				rgba(0, 0, 0, 0.92) 0%,
				rgba(0, 0, 0, 0.55) 38%,
				rgba(0, 0, 0, 0.12) 72%,
				transparent 100%
			);
	}
	.hf-promo--overlay-light .hf-promo__scrim {
		background:
			linear-gradient(
				to right,
				rgba(255, 255, 255, 0.94) 0%,
				rgba(255, 255, 255, 0.55) 48%,
				rgba(255, 255, 255, 0.12) 100%
			),
			linear-gradient(
				to top,
				rgba(255, 255, 255, 0.95) 0%,
				rgba(255, 255, 255, 0.65) 38%,
				rgba(255, 255, 255, 0.2) 72%,
				transparent 100%
			);
	}
	.hf-section a.hf-promo__btn {
		align-self: center;
	}

	/* Award winning */
	.hf-award-winning { padding: var(--hf-mob-section-y) 0; }
	.hf-award-winning__wreath {
		top: 5rem;
		width: min(58rem, 94vw);
	}
	.hf-award-winning__head {
		margin-bottom: 1.6rem;
		padding-top: 1.5rem;
	}
	.hf-section .hf-award-winning__title {
		font-family: var(--hf-font-display);
		font-weight: 500;
		max-width: 36rem;
		margin-left: auto;
		margin-right: auto;
		text-wrap: balance;
	}
	.hf-award-winning__title-line {
		display: block;
	}
	.hf-award-winning__spotlight {
		min-height: 0;
		padding: 4rem 2.4rem;
	}
	.hf-award-winning__caption {
		letter-spacing: 0.28rem;
		padding: 0 2.4rem;
	}
	.hf-award-winning__foot { margin-top: 1.6rem; }

	/* Spec */
	.hf-spec {
		min-height: 0;
		padding: var(--hf-mob-section-y) 0;
	}
	.hf-spec__inner {
		grid-template-columns: minmax(0, 1fr);
		gap: var(--hf-mob-gap-xl);
	}
	.hf-spec__figure {
		display: block;
		width: 100%;
		max-width: min(32rem, 78vw);
		margin-inline: auto;
	}
	.hf-spec__product {
		width: 100%;
		max-width: 100%;
		max-height: clamp(22rem, 58vw, 30rem);
		margin: 0 auto;
	}
	.hf-spec__body {
		align-items: center;
		text-align: center;
	}
	.hf-spec__head,
	.hf-spec__subtitle,
	.hf-spec__lede,
	.hf-spec__kicker {
		text-align: center;
		align-items: center;
	}
	.hf-spec__actions {
		justify-content: center;
	}
	.hf-spec__badge {
		max-width: min(16rem, 40vw);
		max-height: 5.4rem;
	}

	/* Testimonials — horizontal swipe row */
	.hf-testimonials { padding: var(--hf-mob-section-y) 0; }
	.hf-section .hf-testimonials__title { margin-bottom: var(--hf-mob-gap-xl); }
	.hf-testimonials .hf-scroll-row .hf-scroll-nav {
		margin-top: 2.4rem;
	}
	.hf-testimonials__grid {
		display: flex;
		flex-wrap: nowrap;
		align-items: stretch;
		gap: 1.6rem;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		scroll-padding-inline: var(--hf-content-pad);
		scrollbar-width: none;
		margin-inline: calc(-1 * var(--hf-content-pad));
		padding-inline: var(--hf-content-pad);
		padding-bottom: 0.4rem;
	}
	.hf-testimonials__grid::-webkit-scrollbar { display: none; }
	.hf-testimonial {
		flex: 0 0 min(72vw, 28rem);
		width: min(72vw, 28rem);
		max-width: calc(100% - 2.4rem);
		scroll-snap-align: start;
		height: auto;
		min-height: 0;
	}

	/* Process — numbered list rhythm (matches Why block on mobile) */
	.hf-process { padding: var(--hf-mob-section-y) 0; }
	.hf-process__panel { gap: var(--hf-mob-gap-xl); }
	.hf-process__grid {
		grid-template-columns: 1fr;
		row-gap: 0;
		text-align: left;
	}
	.hf-process__step {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr);
		grid-template-rows: auto auto;
		column-gap: clamp(1.6rem, 4.5vw, 2.4rem);
		row-gap: 1rem;
		align-items: start;
		padding: clamp(2.4rem, 5vw, 3.2rem) 0;
		box-sizing: border-box;
	}
	.hf-process__step:nth-child(odd) {
		width: calc(100% + 2 * var(--hf-content-pad));
		margin-left: calc(-1 * var(--hf-content-pad));
		margin-right: calc(-1 * var(--hf-content-pad));
		padding: clamp(2.4rem, 5vw, 3.2rem) var(--hf-content-pad);
		background: var(--hf-bg-surface, #ffffff);
	}
	.hf-process__step-head {
		display: block;
		grid-column: 1;
		grid-row: 1 / -1;
		align-self: start;
		width: auto;
		padding-top: 0.4rem;
	}
	.hf-process__step-head .hf-process__line {
		display: none;
	}
	.hf-process__num {
		font-family: "Magneta", "Playfair Display", Georgia, "Times New Roman", serif;
		font-size: clamp(5.2rem, 13vw, 6.8rem);
		font-weight: 100;
		line-height: 0.88;
		letter-spacing: -0.02em;
		color: #323c48;
	}
	.hf-section .hf-process__name {
		grid-column: 2;
		grid-row: 1;
		font-size: clamp(1.9rem, 4.6vw, 2.2rem);
		font-weight: 600;
		line-height: 1.35;
		color: #465260;
	}
	.hf-process__desc {
		grid-column: 2;
		grid-row: 2;
		font-size: clamp(1.7rem, 4.2vw, 1.9rem);
		line-height: 1.65;
		color: #465260;
	}

	/* Security — intro copy only on mobile (no photo hero); cards below */
	.hf-security {
		padding: var(--hf-mob-section-y) 0;
	}
	.hf-security__grid {
		display: flex;
		flex-direction: column;
		gap: var(--hf-mob-gap-xl);
	}
	.hf-security__content {
		display: contents;
	}
	.hf-security__media { display: none; }
	.hf-security__intro {
		order: -1;
		width: 100%;
		min-height: 0;
		padding: 0;
		gap: var(--hf-mob-gap-md);
		align-items: center;
		background: none;
		background-image: none;
	}
	.hf-security__intro::before {
		display: none;
	}
	.hf-security__intro > * {
		position: static;
		z-index: auto;
	}
	.hf-section .hf-security__intro .hf-security__title,
	.hf-section .hf-security__intro .hf-security__lede {
		color: var(--hf-text-body);
		text-align: center;
	}
	.hf-security__logo-wrap {
		display: flex;
		justify-content: center;
		width: 100%;
		align-self: center;
	}
	.hf-security__logo {
		width: auto;
		max-width: min(32rem, 88%);
		margin-inline: auto;
	}
	.hf-security__cards { grid-template-columns: 1fr; }
	.hf-security__card {
		align-items: stretch;
		text-align: left;
	}
	.hf-security__card-body {
		align-items: flex-start;
		text-align: left;
		width: 100%;
	}
	.hf-security__card-block {
		align-items: flex-start;
		text-align: left;
		width: 100%;
	}
	.hf-section .hf-security__card-title,
	.hf-section .hf-security__card-desc {
		text-align: left;
	}
	.hf-security__card-tags {
		align-items: flex-start;
		width: 100%;
	}
	.hf-security__tag {
		width: fit-content;
		max-width: 100%;
		margin-inline: 0;
		justify-content: flex-start;
	}

	/* Blog — horizontal swipe row */
	.hf-blog { padding: var(--hf-mob-section-y) 0; }
	.hf-blog__head { margin-bottom: var(--hf-mob-gap-xl); }
	.hf-blog .hf-scroll-row .hf-scroll-nav {
		margin-top: 2.4rem;
	}
	.hf-blog__grid {
		display: flex;
		flex-wrap: nowrap;
		align-items: stretch;
		gap: 1.6rem;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scroll-snap-type: x mandatory;
		scroll-behavior: smooth;
		scroll-padding-inline: var(--hf-content-pad);
		scrollbar-width: none;
		margin-inline: calc(-1 * var(--hf-content-pad));
		padding-inline: var(--hf-content-pad);
		padding-bottom: 0.4rem;
	}
	.hf-blog__grid::-webkit-scrollbar { display: none; }
	.hf-blog__card {
		flex: 0 0 min(82vw, 36rem);
		width: min(82vw, 36rem);
		scroll-snap-align: start;
		height: auto;
		min-height: 0;
		-webkit-tap-highlight-color: transparent;
	}
	.hf-blog__card:hover,
	.hf-blog__card:active {
		transform: none;
		box-shadow: 0 1.2rem 2.4rem rgba(50, 60, 72, 0.06);
	}
	.hf-blog__card-body {
		padding: 2.4rem;
		flex: 1 1 auto;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}
	.hf-blog__tag {
		align-self: flex-start;
	}
	.hf-blog__meta {
		justify-content: flex-start;
	}
	.hf-section .hf-blog__post-title {
		font-size: 2rem;
		line-height: 1.25;
		text-align: left;
	}
	.hf-blog__post-title { flex: 1 1 auto; }
	.hf-blog__card .hf-link-arrow--card {
		align-self: flex-start;
		margin-top: auto;
		flex-shrink: 0;
	}

	/* FAQs — natural height on mobile (no 100vh / JS all-expanded lock) */
	.hf-faqs {
		min-height: 0;
		padding: var(--hf-mob-section-y) 0;
		justify-content: flex-start;
	}
	.hf-faqs .hf-container { align-items: stretch; }
	.hf-faqs__grid {
		display: flex;
		flex-direction: column;
		gap: var(--hf-mob-gap-xl);
	}
	.hf-faqs__col { display: contents; }
	.hf-faq { order: var(--faq-i, 0); }

	/* Social — title, handle, then follow button stacked */
	.hf-social { padding: var(--hf-mob-section-y) 0; }
	.hf-social__head {
		display: flex;
		flex-direction: column;
		align-items: stretch;
		gap: var(--hf-mob-gap-md);
		margin-bottom: var(--hf-mob-gap-xl);
	}
	.hf-social__title-block {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: var(--hf-mob-gap-md);
		min-width: 0;
		width: 100%;
	}
	.hf-section .hf-social__title {
		grid-column: auto;
	}
	.hf-social__handle {
		grid-column: auto;
		grid-row: auto;
		justify-content: center;
		width: 100%;
		min-width: 0;
		align-items: center;
	}
	.hf-social__handle span {
		min-width: 0;
		line-height: 1.35;
		text-align: center;
	}
	.hf-social__avatar {
		width: 5.6rem;
		height: 5.6rem;
	}
	.hf-section a.hf-social__follow.hf-btn {
		grid-column: auto;
		grid-row: auto;
		align-self: stretch;
		justify-self: stretch;
		justify-content: center;
		width: 100%;
		max-width: 100%;
		min-height: 5.6rem;
	}
	.hf-social__grid,
	.hf-social__grid--embeds { grid-template-columns: 1fr 1fr; gap: 2rem; }
	.hf-social__wall { min-height: 40rem; }
	.hf-social__wall .tagshop { min-height: 40rem; }

	/* CTA */
	.hf-cta { padding: var(--hf-mob-section-y-sm) 0; }
	.hf-cta__panel { gap: var(--hf-mob-gap-xl); }
	.hf-cta__intro { gap: var(--hf-mob-gap-md); }
	.hf-cta__form {
		flex-wrap: wrap;
	}
	.hf-cta__field {
		flex: 1 1 100%;
		min-width: 0;
		max-width: none;
		width: 100%;
	}
	.hf-section button.hf-cta__submit {
		flex: 1 1 100%;
		width: 100%;
		max-width: none;
		min-height: 4.8rem;
		padding: 1.2rem 2.4rem;
		font-size: var(--hf-type-ui);
		letter-spacing: 0.12rem;
	}
	.hf-cta__chips {
		gap: 1.6rem 2.4rem;
		justify-content: center;
	}

	/* Service areas — allow scroll on smaller viewports */
	#hf-areas.hf-areas {
		height: auto;
		max-height: none;
		min-height: 100dvh;
		overflow: visible;
		padding: var(--hf-mob-section-y-sm) 0 var(--hf-mob-section-y);
	}
	#hf-areas .hf-container {
		overflow: visible;
		display: flex;
		flex-direction: column;
	}
	.hf-areas__head {
		order: 1;
		margin-bottom: 2.4rem;
		text-align: center;
		align-items: center;
	}
	/* Mobile stack: title → map → white panel (tabs, search, list) */
	.hf-areas__split {
		display: contents;
	}
	.hf-areas__map-wrap {
		order: 2;
		border-radius: 2rem 2rem 0 0;
		min-height: min(32rem, 42vh);
		height: min(32rem, 42vh);
	}
	.hf-areas__search--map {
		display: none;
	}
	.hf-areas__tabs {
		display: none;
	}

	.hf-areas__sidebar {
		order: 4;
		border-radius: 0 0 2rem 2rem;
		padding: 0 0 2.4rem;
		max-height: none;
		background: #ffffff;
	}
	.hf-areas__toolbar {
		flex-direction: row;
		align-items: stretch;
		gap: 0.8rem;
		padding: 2rem 0;
		box-sizing: border-box;
		background: var(--hf-bg-page);
	}
	.hf-areas__region-select-wrap {
		display: flex;
		flex: 0 1 38%;
		min-width: 10.5rem;
		padding: 0;
		background: none;
	}
	.hf-areas__region-select-label {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		border: 0;
	}
	.hf-section .hf-areas__region-select {
		width: 100%;
		min-height: 4.8rem;
		padding: 0 3.2rem 0 1.2rem;
		font-size: 1.05rem;
		letter-spacing: 0.1rem;
	}
	.hf-areas__search--sidebar {
		flex: 1 1 62%;
		min-width: 0;
		width: auto;
		margin: 0;
		min-height: 4.8rem;
		padding: 0 3rem 0 1.6rem;
	}
	.hf-areas__search--sidebar .hf-areas__search-input {
		font-size: 1.05rem;
		letter-spacing: 0.1rem;
	}
	.hf-areas__divider { display: none; }
	/* Mobile: custom track hidden — show native scrollbar on city list */
	.hf-areas__panel {
		overflow-y: scroll;
		max-height: min(32rem, 45vh);
		padding-left: var(--hf-content-pad);
		padding-right: calc(var(--hf-content-pad) + 0.4rem);
		scrollbar-width: thin;
		scrollbar-color: var(--hf-text-body, #323c48) #cccccc;
		-ms-overflow-style: scrollbar;
		box-shadow: inset -0.6rem 0 0 #cccccc;
	}
	.hf-areas__panel::-webkit-scrollbar {
		display: block;
		width: 0.6rem;
	}
	.hf-areas__panel::-webkit-scrollbar-track {
		background: #cccccc;
	}
	.hf-areas__panel::-webkit-scrollbar-thumb {
		background: var(--hf-text-body, #323c48);
		border-radius: 0;
		min-height: 4rem;
	}
	.hf-areas__list {
		gap: 0.8rem;
	}
}

@media (max-width: 560px) {
	:root {
		--hf-mob-section-y: 4.8rem;
		--hf-mob-section-y-sm: 4rem;
		--hf-mob-gap-xl: 2.4rem;
		--hf-mob-gap-lg: 2rem;
		--hf-type-display-lg: 2.8rem;
		--hf-type-display-md: 2.6rem;
		--hf-type-display-sm: 2.2rem;
	}

	.hf-display--hero {
		font-size: clamp(2.8rem, 9vw, 3.6rem);
	}

	.hf-hero { padding: 0 var(--hf-content-pad) 3rem; }
	.hf-hero__inner { border-radius: 1.6rem; padding: 6rem 2rem 10rem; min-height: 52rem; }
	.hf-hero__cta-row { flex-direction: column; gap: 1.2rem; align-items: stretch; }
	.hf-hero__cta-row .hf-btn { width: 100%; }
	.hf-award-strip {
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: center;
		text-align: center;
		padding: 1.2rem 1.4rem;
		gap: 1.2rem;
	}
	.hf-award-strip__label {
		flex-shrink: 0;
		font-size: clamp(1rem, 2.6vw, 1.3rem);
		letter-spacing: 0.14rem;
		white-space: nowrap;
	}
	.hf-award-strip__logos {
		flex: 1 1 auto;
		min-width: 0;
		justify-content: flex-start;
	}

	.hf-trust { padding: var(--hf-mob-section-y) var(--hf-content-pad) var(--hf-mob-section-y-sm); }

	.hf-innovation { padding: var(--hf-mob-section-y) 0 calc(var(--hf-mob-section-y) + 0.8rem); }
	.hf-innovation .hf-container { gap: var(--hf-mob-gap-lg); }
	.hf-section .hf-innovation__title,
	.hf-section .hf-award-winning__title { max-width: 34rem; }
	.hf-innovation__card { padding: var(--hf-mob-gap-lg); }
	.hf-section .hf-innovation__card-desc { margin-top: var(--hf-mob-gap-sm); }
	.hf-innovation__cta-row { margin-top: var(--hf-mob-gap-lg); gap: var(--hf-mob-gap-sm); }

	.hf-why { padding: var(--hf-mob-section-y) 0; }
	.hf-why .hf-container {
		gap: 4rem;
		padding-left: clamp(2.4rem, 5vw, var(--hf-content-pad));
		padding-right: clamp(2.4rem, 5vw, var(--hf-content-pad));
	}
	.hf-why__grid { row-gap: 3.2rem; }

	.hf-ba { padding: var(--hf-mob-section-y) 0; }
	.hf-ba__compare { aspect-ratio: 4 / 3; }
	.hf-ba__card--center .hf-ba__compare { min-height: 24rem; }

	.hf-estimate { padding: var(--hf-mob-section-y) 0; }
	.hf-estimate__form { padding: var(--hf-mob-gap-lg) var(--hf-content-pad); }
	.hf-estimate__form button { width: 100%; align-self: stretch; }

	.hf-promo__panel,
	.hf-promo__content { min-height: 57.5rem; }
	.hf-promo__content {
		justify-content: center;
		padding-top: var(--hf-mob-gap-lg);
		padding-bottom: var(--hf-mob-gap-lg);
	}
	.hf-promo__logo { max-width: 24rem; max-height: 10rem; }
	.hf-section a.hf-promo__btn {
		min-width: 0;
		width: 100%;
		max-width: 32rem;
		margin-left: auto;
		margin-right: auto;
	}

	.hf-award-winning { padding: var(--hf-mob-section-y) 0; }

	.hf-spec__figure {
		max-width: min(28rem, 72vw);
	}
	.hf-spec__product {
		max-height: clamp(20rem, 52vw, 26rem);
	}
	.hf-spec__cta.hf-btn {
		min-width: 0;
		width: 100%;
		max-width: 32rem;
	}

	.hf-process__grid {
		row-gap: 3.6rem;
	}
	.hf-process__num {
		font-size: clamp(4.8rem, 12vw, 6rem);
	}

	.hf-social__grid,
	.hf-social__grid--embeds { grid-template-columns: 1fr; }
	.hf-social__wall { min-height: 36rem; }
	.hf-social__wall .tagshop { min-height: 36rem; }

	.hf-areas__region-select {
		min-height: 5rem;
		font-size: 1.15rem;
	}

	/* Shared: full-width CTAs in stacked layouts */
	.hf-section .hf-btn { max-width: 100%; }
}

/* ── background variant modifiers ────────────────────────────────────────── *
 * Admin can pick the outer background per block. Placed after per-block rules
 * so the modifier wins source-order ties without needing !important. The
 * double-class selector (.hf-section.hf-bg-X) also outranks single-class
 * per-block backgrounds in specificity.
 */
.hf-section.hf-bg-cream  { background: var(--hf-bg-page); }
.hf-section.hf-bg-white  { background: #ffffff; }
.hf-section.hf-bg-subtle { background: var(--hf-bg-subtle); }

/* Hero / promo / cta — bg modifiers on outer section only */
.hf-hero.hf-bg-white  { background: #ffffff; }
.hf-hero.hf-bg-cream  { background: var(--hf-bg-page); }
.hf-hero.hf-bg-subtle { background: var(--hf-bg-subtle); }
/* Promo is full-bleed; cream/white/subtle only affects strip below/above if panel shorter */
.hf-promo.hf-bg-white,
.hf-promo.hf-bg-cream,
.hf-promo.hf-bg-subtle {
	background: transparent;
}
.hf-cta.hf-bg-cream  { background: var(--hf-bg-page); }
.hf-cta.hf-bg-white  { background: #ffffff; }
.hf-cta.hf-bg-subtle { background: var(--hf-bg-subtle); }

