/*
 * HostFraser: layout, typography and site chrome.
 * Brand colors come from the Customizer as CSS variables (see inc/customizer.php).
 */

@font-face {
	font-family: "Inter";
	font-style: normal;
	font-weight: 400 800;
	font-display: swap;
	src: url("../fonts/InterVariable.woff2") format("woff2");
}

:root {
	--hf-container: 1200px;
	--hf-gutter: 24px;
	--hf-ink: #142033;
	--hf-ink-2: #4b5565;
	--hf-muted: #667085;
	--hf-line: #e3e8ef;
	--hf-line-2: #d0d7e2;
	--hf-surface: #f6f8fb;
	--hf-surface-2: #eef2f7;
	--hf-white: #ffffff;
	--hf-promo: #e8590c;
	--hf-shadow-sm: 0 1px 2px rgba(16, 24, 40, .06), 0 1px 3px rgba(16, 24, 40, .08);
	--hf-shadow: 0 8px 24px rgba(16, 24, 40, .08), 0 2px 6px rgba(16, 24, 40, .06);
	--hf-shadow-lg: 0 24px 48px rgba(16, 24, 40, .14);
	--hf-header-h: 72px;
	--hf-focus: 0 0 0 3px color-mix(in srgb, var(--hf-primary) 35%, transparent);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body {
	margin: 0;
	min-width: 0;
	background: var(--hf-white);
	color: var(--hf-ink);
	font-family: var(--hf-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	font-feature-settings: "cv11", "ss01";
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; }
a { color: var(--hf-primary); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--hf-primary-dark); }
:focus-visible { outline: 2px solid var(--hf-primary); outline-offset: 2px; }
h1, h2, h3, h4, h5, h6 { color: var(--hf-ink); font-family: var(--hf-font); font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; margin: 1.6em 0 .6em; }
h1 { font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.6rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.45rem, 1.2rem + .8vw, 1.9rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1em; }
hr { border: 0; border-top: 1px solid var(--hf-line); margin: 2rem 0; }
table { border-collapse: collapse; }
input, select, textarea, button { font: inherit; color: inherit; }
input[type="text"], input[type="email"], input[type="url"], input[type="tel"], input[type="password"], input[type="search"], input[type="number"], select, textarea {
	border: 1px solid var(--hf-line-2);
	border-radius: calc(var(--hf-radius) * .75);
	background: #fff;
	padding: .6em .8em;
	line-height: 1.4;
	max-width: 100%;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--hf-primary); box-shadow: var(--hf-focus); }

.screen-reader-text { border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important; }
.hf-skip { position: absolute; left: 12px; top: -60px; z-index: 1000; background: var(--hf-dark); color: #fff; padding: 10px 16px; border-radius: var(--hf-radius); }
.hf-skip:focus { top: 12px; color: #fff; }
.clear { clear: both; }
.alignleft { float: left; margin: 0 1.5em 1em 0; }
.alignright { float: right; margin: 0 0 1em 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption-text, figcaption { font-size: .875rem; color: var(--hf-muted); }

.hf-container { width: 100%; max-width: calc(var(--hf-container) + var(--hf-gutter) * 2); margin-inline: auto; padding-inline: var(--hf-gutter); }
.hf-icon { flex: none; vertical-align: middle; }

/* ---------- Buttons ---------- */
.hf-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5em;
	min-height: 44px; padding: .65em 1.15em;
	border: 1px solid transparent; border-radius: var(--hf-radius);
	font-size: .95rem; font-weight: 600; line-height: 1.2; letter-spacing: -0.005em;
	text-decoration: none; white-space: nowrap; cursor: pointer;
	transition: background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.hf-btn:focus-visible { outline: none; box-shadow: var(--hf-focus); }
.hf-btn--lg { min-height: 52px; padding: .8em 1.5em; font-size: 1rem; }
.hf-btn--primary { background: var(--hf-primary); color: var(--hf-on-primary); }
.hf-btn--primary:hover { background: var(--hf-primary-dark); color: var(--hf-on-primary); }
.hf-btn--ghost { background: transparent; color: var(--hf-ink); border-color: var(--hf-line-2); }
.hf-btn--ghost:hover { border-color: var(--hf-ink); color: var(--hf-ink); }
.hf-btn--light { background: #fff; color: var(--hf-dark); }
.hf-btn--light:hover { background: var(--hf-surface-2); color: var(--hf-dark); }
.hf-btn--outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .45); }
.hf-btn--outline-light:hover { background: rgba(255, 255, 255, .1); border-color: #fff; color: #fff; }
.hf-btn .hf-icon--arrow { transition: transform .15s ease; }
.hf-btn:hover .hf-icon--arrow { transform: translateX(3px); }

/* ---------- Top bar ---------- */
.hf-topbar { background: var(--hf-dark); color: color-mix(in srgb, var(--hf-on-dark) 78%, transparent); font-size: .8125rem; }
.hf-topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 40px; overflow: hidden; }
.hf-topbar__message { margin: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hf-topbar__links { display: flex; align-items: center; gap: 20px; margin: 0; padding: 0; list-style: none; flex-wrap: nowrap; justify-content: flex-end; white-space: nowrap; }
.hf-topbar__links li { display: flex; align-items: center; gap: 6px; }
.hf-topbar a { color: var(--hf-on-dark); text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.hf-topbar a:hover { color: var(--hf-on-dark); text-decoration: underline; }
.hf-topbar__phone .number { font-weight: 600; letter-spacing: .01em; }
.hf-topbar__id { opacity: .7; font-size: .75rem; }
.hf-topbar__chat img { max-height: 18px; width: auto; vertical-align: middle; }
.hf-topbar__login a { padding: 4px 10px; border: 1px solid rgba(255, 255, 255, .25); border-radius: calc(var(--hf-radius) * .75); }
.hf-topbar__login a:hover { background: rgba(255, 255, 255, .08); text-decoration: none; }

/* ---------- Header ---------- */
.hf-header { position: relative; z-index: 100; }
.hf-sticky .hf-header { position: sticky; top: 0; }
.hf-sticky.hf-has-topbar .hf-header { top: -40px; }
.admin-bar.hf-sticky .hf-header { top: 32px; }
.admin-bar.hf-sticky.hf-has-topbar .hf-header { top: -8px; }
@media (max-width: 782px) { .admin-bar.hf-sticky .hf-header { top: 0; } .admin-bar.hf-sticky.hf-has-topbar .hf-header { top: -40px; } }
.hf-header__main { background: rgba(255, 255, 255, .96); backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--hf-line); }
.hf-header__inner { display: flex; align-items: center; gap: 28px; min-height: var(--hf-header-h); }

.hf-brand { flex: none; }
.hf-brand__link { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--hf-ink); }
.hf-brand__link:hover { color: var(--hf-ink); }
.hf-brand__logo { display: block; max-height: 44px; width: auto; }
.hf-brand__mark { display: grid; place-items: center; width: 38px; height: 38px; border-radius: var(--hf-radius); background: var(--hf-primary); color: var(--hf-on-primary); }
.hf-brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.hf-brand__name { font-size: 1.15rem; font-weight: 750; letter-spacing: -0.02em; }
.hf-brand__tagline { font-size: .75rem; color: var(--hf-muted); font-weight: 500; }

.hf-drawer { display: flex; align-items: center; gap: 24px; flex: 1; min-width: 0; }
.hf-nav { flex: 1; min-width: 0; }
.hf-nav__list { display: flex; align-items: center; gap: 2px; margin: 0; padding: 0; list-style: none; }
.hf-nav__list > li { position: relative; display: flex; align-items: center; }
.hf-nav__list > li > a {
	display: block; padding: 10px 12px; border-radius: calc(var(--hf-radius) * .75);
	color: var(--hf-ink); font-size: .9375rem; font-weight: 550; text-decoration: none; white-space: nowrap;
}
.hf-nav__list > li > a:hover, .hf-nav__list > li.is-open > a { background: var(--hf-surface); color: var(--hf-ink); }
.hf-nav__list > li.current-menu-item > a,
.hf-nav__list > li.current-menu-ancestor > a,
.hf-nav__list > li.current_page_item > a,
.hf-nav__list > li.current_page_ancestor > a { color: var(--hf-primary); }
.hf-nav__list > li.menu-item-has-children > a { padding-right: 4px; }
.hf-sub-toggle {
	display: inline-grid; place-items: center; width: 26px; height: 32px; margin-left: -2px;
	padding: 0; border: 0; background: transparent; color: var(--hf-muted); cursor: pointer; border-radius: 6px;
}
.hf-sub-toggle:hover { color: var(--hf-ink); }
.hf-sub-toggle svg { transition: transform .15s ease; }
.hf-sub-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.hf-nav .sub-menu {
	position: absolute; top: calc(100% + 8px); left: 0; z-index: 50;
	min-width: 260px; margin: 0; padding: 8px; list-style: none;
	background: #fff; border: 1px solid var(--hf-line); border-radius: calc(var(--hf-radius) + 2px); box-shadow: var(--hf-shadow-lg);
	opacity: 0; visibility: hidden; transform: translateY(-4px); transition: opacity .15s ease, transform .15s ease, visibility .15s;
}
.hf-nav .sub-menu::before { content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px; }
.hf-nav__list > li:hover > .sub-menu,
.hf-nav__list > li:focus-within > .sub-menu,
.hf-nav__list > li.is-open > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.hf-nav .sub-menu a {
	display: block; padding: 9px 12px; border-radius: calc(var(--hf-radius) * .75);
	color: var(--hf-ink); font-size: .9rem; font-weight: 500; text-decoration: none;
}
.hf-nav .sub-menu a:hover { background: var(--hf-surface); color: var(--hf-primary); }
.hf-nav .sub-menu .current-menu-item > a { color: var(--hf-primary); background: var(--hf-primary-tint); }
.hf-nav__desc { display: block; margin-top: 2px; color: var(--hf-muted); font-size: .8rem; font-weight: 400; }
.hf-nav .sub-menu .sub-toggle, .hf-nav .sub-menu .hf-sub-toggle { display: none; }

.hf-ctas { display: flex; align-items: center; gap: 10px; flex: none; }
.hf-ctas .hf-btn { min-height: 40px; padding: .55em 1em; font-size: .9rem; }

.hf-nav-toggle { display: none; margin-left: auto; width: 44px; height: 44px; padding: 0; border: 1px solid var(--hf-line-2); border-radius: var(--hf-radius); background: #fff; color: var(--hf-ink); cursor: pointer; place-items: center; }
.hf-nav-toggle__close { display: none; }
.hf-nav-toggle[aria-expanded="true"] .hf-nav-toggle__open { display: none; }
.hf-nav-toggle[aria-expanded="true"] .hf-nav-toggle__close { display: inline; }

@media (max-width: 1180px) {
	.hf-header__inner { gap: 16px; }
	.hf-nav__list > li > a { padding: 10px 8px; font-size: .9rem; }
	.hf-ctas .hf-btn--ghost { display: none; }
}

@media (max-width: 1080px) {
	.hf-topbar__message { display: none; }
	.hf-topbar__inner { justify-content: center; }
	.hf-nav-toggle { display: inline-grid; }
	.hf-drawer {
		position: fixed; inset: var(--hf-drawer-top, var(--hf-header-h)) 0 0 0; z-index: 99;
		flex-direction: column; align-items: stretch; gap: 0;
		background: #fff; border-top: 1px solid var(--hf-line);
		overflow-y: auto; overscroll-behavior: contain;
		visibility: hidden; opacity: 0; transform: translateY(-8px); transition: opacity .18s ease, transform .18s ease, visibility .18s;
	}
	.hf-drawer-open .hf-drawer { visibility: visible; opacity: 1; transform: none; }
	.hf-drawer-open { overflow: hidden; }
	.hf-nav { flex: none; padding: 8px var(--hf-gutter); }
	.hf-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
	.hf-nav__list > li { flex-wrap: wrap; border-bottom: 1px solid var(--hf-line); }
	.hf-nav__list > li > a { flex: 1; padding: 14px 4px; font-size: 1rem; }
	.hf-sub-toggle { width: 44px; height: 44px; }
	.hf-nav .sub-menu {
		position: static; flex-basis: 100%; min-width: 0; margin: 0 0 10px; padding: 4px 0 4px 12px;
		border: 0; border-left: 2px solid var(--hf-line); border-radius: 0; box-shadow: none;
		opacity: 1; visibility: visible; transform: none; display: none;
	}
	.hf-nav .sub-menu::before { display: none; }
	.hf-nav__list > li:hover > .sub-menu, .hf-nav__list > li:focus-within > .sub-menu { display: none; }
	.hf-nav__list > li.is-open > .sub-menu { display: block; }
	.hf-ctas--header { flex-direction: column; align-items: stretch; padding: 16px var(--hf-gutter) 32px; gap: 10px; }
	.hf-ctas--header .hf-btn { min-height: 48px; font-size: 1rem; }
	.hf-ctas .hf-btn--ghost { display: inline-flex; }
}
@media (max-width: 600px) {
	:root { --hf-gutter: 16px; --hf-header-h: 64px; }
	.hf-topbar__id, .hf-topbar__chat { display: none; }
	.hf-topbar__links { gap: 4px 14px; }
	.hf-brand__tagline { display: none; }
	.hf-brand__logo { max-height: 36px; }
}

/* ---------- Breadcrumbs ---------- */
.hf-crumbs { background: var(--hf-surface); border-bottom: 1px solid var(--hf-line); font-size: .8125rem; color: var(--hf-muted); }
.hf-crumbs .hf-container { padding-top: 10px; padding-bottom: 10px; }
.hf-crumbs ol { display: flex; flex-wrap: wrap; gap: 4px 0; margin: 0; padding: 0; list-style: none; }
.hf-crumbs ol li:not(:last-child)::after { content: "/"; margin: 0 10px; color: var(--hf-line-2); }
.hf-crumbs #crumbs { margin: 0; padding: 0; float: none; width: auto; font-size: inherit; color: inherit; background: none; border: 0; }
.hf-crumbs a { color: var(--hf-ink-2); text-decoration: none; }
.hf-crumbs a:hover { color: var(--hf-primary); text-decoration: underline; }
.hf-crumbs .current { color: var(--hf-ink); font-weight: 500; }

/* ---------- Main + page wrappers ---------- */
.hf-main { display: block; outline: none; }
.hf-main::after { content: ""; display: table; clear: both; }
#content { float: none; width: auto; margin: 0; border: 0; border-radius: 0; box-shadow: none; position: relative; text-align: left; }

.hf-page, #front_page_content {
	display: flow-root;
	width: 100%;
	max-width: calc(var(--hf-content, 1000px) + var(--hf-gutter) * 2);
	margin-inline: auto;
	padding: 40px var(--hf-gutter) 64px;
	float: none;
	line-height: 1.65;
}
#front_page_content { padding-top: 48px; }
.hf-page--wide { }
#internal_page_2 { padding-top: 0; }
.hf-page__title { margin-top: 0; }
.hf-page > :first-child, #front_page_content > :first-child { margin-top: 0; }
.hf-page ul, .hf-page ol { padding-left: 1.3em; }
.hf-page li { margin-bottom: .35em; }
.edit-link { clear: both; font-size: .8125rem; margin-top: 2rem; }
.edit-link a { color: var(--hf-muted); }

/* ---------- Special page header ---------- */
.hf-page-hero {
	position: relative; overflow: hidden;
	float: none !important; width: auto !important; height: auto !important; min-height: 0 !important; margin: 0 !important;
	padding: 56px 0 48px !important;
	background: var(--hf-dark) !important;
	background-image: radial-gradient(1000px 400px at 85% -10%, color-mix(in srgb, var(--hf-primary) 45%, transparent), transparent 60%), linear-gradient(180deg, var(--hf-dark), var(--hf-dark-2)) !important;
	color: color-mix(in srgb, var(--hf-on-dark) 82%, transparent);
	border: 0 !important; border-radius: 0 !important;
}
.hf-page-hero::after {
	content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
	background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
	background-size: 40px 40px;
	mask-image: linear-gradient(90deg, transparent, #000 40%, #000 60%, transparent);
}
.hf-page-hero__inner { position: relative; z-index: 1; max-width: calc(var(--hf-content, 1000px) + var(--hf-gutter) * 2); }
.hf-page-hero .hf-page-hero__title,
#content_header h1 {
	margin: 0 0 .4em !important; padding: 0 !important; float: none !important; width: auto !important;
	color: var(--hf-on-dark) !important; font-size: clamp(1.9rem, 1.4rem + 1.8vw, 2.75rem) !important; font-weight: 750 !important;
	letter-spacing: -0.025em; line-height: 1.12 !important; text-shadow: none !important; text-transform: none !important; background: none !important;
}
.hf-page-hero__text, #content_text {
	float: none !important; width: auto !important; max-width: 720px; margin: 0 !important; padding: 0 !important;
	color: inherit !important; font-size: 1.075rem !important; line-height: 1.6 !important; background: none !important;
}
.hf-page-hero__text p:last-child { margin-bottom: 0; }
.hf-page-hero__text a { color: #fff; }
.hf-page-hero__text ul { padding-left: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.hf-page-hero__text ul li { display: inline-flex; align-items: center; gap: 8px; }
.hf-page-hero__text ul li::before { content: ""; width: 16px; height: 16px; flex: none; background: var(--hf-accent); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat; }

/* ---------- Front page hero ---------- */
.hf-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin: 0 0 16px; color: var(--hf-primary); font-size: .8125rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.hf-hero {
	position: relative; overflow: hidden; isolation: isolate;
	background: var(--hf-dark);
	background-image: radial-gradient(900px 500px at 90% 0%, color-mix(in srgb, var(--hf-primary) 50%, transparent), transparent 65%), radial-gradient(700px 400px at 0% 100%, color-mix(in srgb, var(--hf-accent) 22%, transparent), transparent 60%), linear-gradient(180deg, var(--hf-dark), var(--hf-dark-2));
	color: color-mix(in srgb, var(--hf-on-dark) 80%, transparent);
}
.hf-hero::before {
	content: ""; position: absolute; inset: 0; z-index: -1; opacity: .6;
	background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse at 70% 30%, #000 20%, transparent 75%);
}
.hf-hero__inner { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .9fr); gap: 56px; align-items: center; padding-top: 80px; padding-bottom: 88px; }
.hf-hero .hf-eyebrow { color: color-mix(in srgb, var(--hf-accent) 70%, #fff); }
.hf-hero__title { margin: 0 0 20px; color: var(--hf-on-dark); font-size: clamp(2.2rem, 1.5rem + 2.6vw, 3.5rem); font-weight: 750; line-height: 1.06; letter-spacing: -0.035em; max-width: 18ch; text-wrap: balance; }
.hf-hero__text { max-width: 58ch; margin: 0 0 32px; font-size: 1.125rem; line-height: 1.6; }
.hf-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hf-hero__image { display: block; width: 100%; border-radius: calc(var(--hf-radius) + 4px); box-shadow: var(--hf-shadow-lg); }

.hf-sales-card {
	background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14);
	border-radius: calc(var(--hf-radius) + 6px); padding: 28px;
	backdrop-filter: blur(8px); box-shadow: 0 30px 60px rgba(0, 0, 0, .25);
	color: color-mix(in srgb, var(--hf-on-dark) 80%, transparent);
}
.hf-sales-card__label { margin: 0 0 8px; font-size: .8125rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: color-mix(in srgb, var(--hf-on-dark) 65%, transparent); }
.hf-sales-card__phone { display: inline-flex; align-items: center; gap: 10px; color: var(--hf-on-dark); font-size: 1.6rem; font-weight: 700; letter-spacing: -0.01em; text-decoration: none; }
.hf-sales-card__phone:hover { color: var(--hf-on-dark); text-decoration: underline; }
.hf-sales-card__note { margin: 4px 0 0; font-size: .8125rem; opacity: .75; }
.hf-checklist { margin: 20px 0 24px; padding: 20px 0 0; border-top: 1px solid rgba(255, 255, 255, .12); list-style: none; display: grid; gap: 12px; }
.hf-checklist li { display: flex; gap: 10px; align-items: flex-start; line-height: 1.45; }
.hf-checklist .hf-icon { margin-top: 3px; color: var(--hf-accent); }
.hf-sales-card__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; }
.hf-sales-card__actions .hf-btn { flex: 1 1 auto; }
.hf-sales-card__chat { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; }
.hf-sales-card__chat a { color: var(--hf-on-dark); }

.hf-trust { background: #fff; border-bottom: 1px solid var(--hf-line); }
.hf-trust__list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; margin: 0 auto; list-style: none; }
.hf-trust__item { display: flex; gap: 14px; align-items: flex-start; padding: 28px 24px; }
.hf-trust__item + .hf-trust__item { border-left: 1px solid var(--hf-line); }
.hf-trust__icon { display: grid; place-items: center; flex: none; width: 40px; height: 40px; border-radius: var(--hf-radius); background: var(--hf-primary-tint); color: var(--hf-primary); }
.hf-trust__text { display: flex; flex-direction: column; gap: 2px; font-size: .875rem; color: var(--hf-muted); line-height: 1.45; }
.hf-trust__text strong { color: var(--hf-ink); font-size: 1rem; font-weight: 650; }

@media (max-width: 960px) {
	.hf-hero__inner { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; padding-bottom: 64px; }
	.hf-hero__title { max-width: 20ch; }
	.hf-trust__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.hf-trust__item:nth-child(3) { border-left: 0; }
	.hf-trust__item:nth-child(n+3) { border-top: 1px solid var(--hf-line); }
}
@media (max-width: 560px) {
	.hf-trust__list { grid-template-columns: 1fr; padding-inline: 0; }
	.hf-trust__item + .hf-trust__item { border-left: 0; border-top: 1px solid var(--hf-line); }
	.hf-trust__item { padding: 18px var(--hf-gutter); }
	.hf-hero__actions .hf-btn { flex: 1 1 100%; }
	.hf-sales-card { padding: 22px; }
	.hf-sales-card__phone { font-size: 1.35rem; }
}

/* ---------- Blog ---------- */
.hf-blog { display: grid; grid-template-columns: minmax(0, 1fr); gap: 48px; padding-top: 40px; padding-bottom: 72px; }
.hf-blog.has-sidebar { grid-template-columns: minmax(0, 1fr) 300px; }
.hf-archive-header { margin-bottom: 28px; }
.hf-archive-header__title { margin: 0; }
.hf-archive-header__desc { color: var(--hf-muted); margin-top: 8px; }
.hf-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.hf-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--hf-line); border-radius: calc(var(--hf-radius) + 2px); overflow: hidden; transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease; }
.hf-card:hover { box-shadow: var(--hf-shadow); border-color: var(--hf-line-2); }
.hf-card__media img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.hf-card__body { display: flex; flex-direction: column; flex: 1; padding: 22px; }
.hf-card__title { margin: 6px 0 10px; font-size: 1.15rem; line-height: 1.3; }
.hf-card__title a { color: var(--hf-ink); text-decoration: none; }
.hf-card__title a:hover { color: var(--hf-primary); }
.hf-card__excerpt { color: var(--hf-ink-2); font-size: .9375rem; flex: 1; }
.hf-card__excerpt p { margin: 0 0 14px; }
.hf-card__more { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; font-size: .9rem; text-decoration: none; }
.hf-post-meta { margin: 0; color: var(--hf-muted); font-size: .8125rem; }
.hf-post-meta a { color: var(--hf-muted); }
.hf-article { max-width: 760px; }
.hf-article__header { margin-bottom: 24px; }
.hf-article__title { margin: 8px 0 0; }
.hf-article__media { margin: 0 0 28px; }
.hf-article__media img { border-radius: var(--hf-radius); display: block; width: 100%; }
.hf-article__content { font-size: 1.0625rem; line-height: 1.75; }
.hf-article__content h2, .hf-article__content h3 { margin-top: 1.8em; }
.hf-article__content blockquote { margin: 1.5em 0; padding: 4px 0 4px 20px; border-left: 3px solid var(--hf-primary); color: var(--hf-ink-2); }
.hf-article__content pre { background: var(--hf-surface); border: 1px solid var(--hf-line); border-radius: var(--hf-radius); padding: 16px; overflow-x: auto; font-size: .875rem; }
.hf-tags { font-size: .875rem; color: var(--hf-muted); }
.post-navigation { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--hf-line); }
.post-navigation .nav-links { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.post-navigation .nav-next { text-align: right; }
.post-navigation a { text-decoration: none; font-weight: 600; color: var(--hf-ink); }
.hf-post-nav__label { display: block; font-size: .75rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--hf-muted); }
.pagination { margin-top: 40px; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 6px; }
.pagination .page-numbers { display: inline-grid; place-items: center; min-width: 40px; height: 40px; padding: 0 12px; border: 1px solid var(--hf-line); border-radius: var(--hf-radius); text-decoration: none; color: var(--hf-ink); font-weight: 500; }
.pagination .page-numbers.current { background: var(--hf-primary); border-color: var(--hf-primary); color: var(--hf-on-primary); }
.pagination a.page-numbers:hover { border-color: var(--hf-ink); }

.hf-sidebar { font-size: .9375rem; }
.hf-sidebar .widget { margin-bottom: 32px; }
.hf-sidebar .widget-title, .hf-sidebar h2 { margin: 0 0 12px; font-size: .8125rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; color: var(--hf-muted); }
.hf-sidebar ul { margin: 0; padding: 0; list-style: none; }
.hf-sidebar li { padding: 8px 0; border-bottom: 1px solid var(--hf-line); }
.hf-sidebar a { color: var(--hf-ink); text-decoration: none; }
.hf-sidebar a:hover { color: var(--hf-primary); }

.hf-search { display: flex; gap: 8px; max-width: 480px; }
.hf-search__input { flex: 1; min-width: 0; min-height: 44px; }
.hf-search__btn { min-width: 48px; padding-inline: 12px; }
.hf-empty { padding: 32px; border: 1px dashed var(--hf-line-2); border-radius: var(--hf-radius); background: var(--hf-surface); }

.hf-comments { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--hf-line); }
.hf-comments__list { list-style: none; padding: 0; }
.hf-comments__list .children { list-style: none; padding-left: 24px; }
.hf-comments__list .comment-body { padding: 18px 0; border-bottom: 1px solid var(--hf-line); }
.hf-comments__list .avatar { border-radius: 50%; float: left; margin-right: 12px; }
.comment-meta { font-size: .8125rem; color: var(--hf-muted); }
.comment-form label { display: block; font-weight: 600; font-size: .875rem; margin-bottom: 4px; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea { width: 100%; }

@media (max-width: 960px) {
	.hf-blog, .hf-blog.has-sidebar { grid-template-columns: 1fr; }
}

/* ---------- 404 ---------- */
.hf-404 { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 48px; }
.hf-404:not(:has(.hf-404__aside)) { grid-template-columns: 1fr; }
.hf-404 .hf-search { margin: 24px 0; }
.hf-link-list { list-style: none; padding: 0 !important; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; }
.hf-link-list a { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border: 1px solid var(--hf-line); border-radius: var(--hf-radius); color: var(--hf-ink); text-decoration: none; font-weight: 550; }
.hf-link-list a:hover { border-color: var(--hf-primary); color: var(--hf-primary); }
.hf-404__box { padding: 20px; border: 1px solid var(--hf-line); border-radius: var(--hf-radius); margin-bottom: 16px; background: var(--hf-surface); }
.hf-404__box h3 { margin-top: 0; font-size: 1rem; }
@media (max-width: 860px) { .hf-404 { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.hf-cta-band { background: var(--hf-primary); background-image: radial-gradient(800px 300px at 100% 0%, rgba(255, 255, 255, .16), transparent 60%), linear-gradient(135deg, var(--hf-primary), var(--hf-primary-dark)); color: color-mix(in srgb, var(--hf-on-primary) 85%, transparent); }
.hf-cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-top: 48px; padding-bottom: 48px; }
.hf-cta-band__title { margin: 0 0 8px; color: var(--hf-on-primary); font-size: clamp(1.35rem, 1.1rem + .9vw, 1.85rem); letter-spacing: -0.02em; }
.hf-cta-band__text { margin: 0; max-width: 60ch; }
.hf-cta-band__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; flex: none; }
.hf-cta-band__phone { display: inline-flex; align-items: center; gap: 8px; color: var(--hf-on-primary); font-weight: 600; text-decoration: none; }
.hf-cta-band__phone:hover { color: var(--hf-on-primary); text-decoration: underline; }
@media (max-width: 860px) {
	.hf-cta-band__inner { flex-direction: column; align-items: flex-start; }
}

/* ---------- Footer ---------- */
.hf-footer { background: var(--hf-dark); color: color-mix(in srgb, var(--hf-on-dark) 70%, transparent); font-size: .9rem; }
.hf-footer__grid { display: grid; grid-template-columns: minmax(240px, 1.1fr) 3fr; gap: 56px; padding-top: 64px; padding-bottom: 48px; }
.hf-footer .hf-brand__link { color: var(--hf-on-dark); }
.hf-footer .hf-brand__tagline { color: color-mix(in srgb, var(--hf-on-dark) 60%, transparent); }
.hf-footer .hf-brand__logo { max-height: 40px; }
.hf-footer__about { margin: 18px 0; line-height: 1.6; max-width: 36ch; }
.hf-footer__phones { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.hf-footer__phones a { color: var(--hf-on-dark); text-decoration: none; font-weight: 500; }
.hf-footer__phones a:hover { text-decoration: underline; }
.hf-footer__phone-label { display: inline-block; min-width: 30px; font-size: .75rem; font-weight: 650; letter-spacing: .06em; color: color-mix(in srgb, var(--hf-on-dark) 55%, transparent); }
.hf-footer__cols { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
.hf-footer__heading { margin: 0 0 14px; color: var(--hf-on-dark); font-size: .8125rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.hf-footer__links, .hf-footer .menu { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.hf-footer__links a, .hf-footer .menu a { color: color-mix(in srgb, var(--hf-on-dark) 72%, transparent); text-decoration: none; line-height: 1.4; }
.hf-footer__links a:hover, .hf-footer .menu a:hover { color: var(--hf-on-dark); text-decoration: underline; }
.hf-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); font-size: .8125rem; }
.hf-footer__bottom-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 24px; padding-top: 20px; padding-bottom: 20px; }
.hf-footer__copy { margin: 0; }
.hf-footer__copy a { color: inherit; }
.hf-footer__legal ul { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 0; padding: 0; list-style: none; }
.hf-footer__legal a { color: color-mix(in srgb, var(--hf-on-dark) 70%, transparent); text-decoration: none; }
.hf-footer__legal a:hover { color: var(--hf-on-dark); text-decoration: underline; }
@media (max-width: 1024px) {
	.hf-footer__grid { grid-template-columns: 1fr; gap: 40px; }
	.hf-footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 480px) {
	.hf-footer__cols { grid-template-columns: 1fr; gap: 28px; }
	.hf-footer__grid { padding-top: 48px; }
}

/* ---------- Print ---------- */
@media print {
	.hf-topbar, .hf-header, .hf-crumbs, .hf-cta-band, .hf-footer, .hf-nav-toggle { display: none !important; }
	body { color: #000; }
}

/* Plugin content was built for content-box sizing; keep it that way inside plugin page wrappers. */
#front_page_content *, #front_page_content *::before, #front_page_content *::after,
#default_content *, #default_content *::before, #default_content *::after,
#internal_page_1 *, #internal_page_1 *::before, #internal_page_1 *::after,
#internal_page_2 *, #internal_page_2 *::before, #internal_page_2 *::after,
#contacts_page *, #contacts_page *::before, #contacts_page *::after { box-sizing: content-box; }
#front_page_content .hf-btn, #default_content .hf-btn, #front_page_content input, #default_content input, #contacts_page input, #contacts_page textarea, #contacts_page select { box-sizing: border-box; }
html, body { overflow-x: clip; }

/* ---------- Blog: sections, cards, lead story, articles ---------- */
.hf-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px 32px; flex-wrap: wrap; margin-bottom: 28px; }
.hf-section-head__title { margin: 0; font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); letter-spacing: -0.02em; }
.hf-section-head__text { margin: 8px 0 0; color: var(--hf-muted); max-width: 60ch; }
.hf-home-posts { padding: 72px 0; background: var(--hf-surface); border-top: 1px solid var(--hf-line); }
.hf-related { padding: 56px 0 72px; background: var(--hf-surface); border-top: 1px solid var(--hf-line); }
.hf-related .hf-section-head__title { margin-bottom: 24px; }
.hf-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.hf-home-posts .hf-cards, .hf-related .hf-cards { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.hf-card__media { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--hf-surface-2); }
.hf-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.hf-card:hover .hf-card__media img { transform: scale(1.03); }
.hf-card__media--empty { display: grid; place-items: center; background: var(--hf-dark); background-image: radial-gradient(400px 200px at 90% 0%, color-mix(in srgb, var(--hf-primary) 55%, transparent), transparent 70%), linear-gradient(135deg, var(--hf-dark), var(--hf-dark-2)); }
.hf-card__placeholder { padding: 0 24px; color: color-mix(in srgb, var(--hf-on-dark) 85%, transparent); font-size: 1.05rem; font-weight: 650; letter-spacing: -0.01em; text-align: center; }
.hf-badge { position: absolute; top: 12px; left: 12px; padding: 4px 10px; border-radius: 999px; background: var(--hf-accent); color: var(--hf-on-accent); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.hf-badge--inline { position: static; display: inline-block; margin-bottom: 12px; }
.hf-card__title { margin: 6px 0 10px; font-size: 1.15rem; line-height: 1.3; }
.hf-card__title a { color: var(--hf-ink); text-decoration: none; }
.hf-card__title a:hover { color: var(--hf-primary); }

.hf-lead { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); margin-bottom: 32px; background: #fff; border: 1px solid var(--hf-line); border-radius: calc(var(--hf-radius) + 4px); overflow: hidden; }
.hf-lead__media { display: block; min-height: 280px; background: var(--hf-surface-2); }
.hf-lead__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hf-lead__media.hf-card__media--empty { display: grid; place-items: center; }
.hf-lead__body { padding: 36px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.hf-lead__title { margin: 8px 0 12px; font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem); line-height: 1.2; letter-spacing: -0.02em; }
.hf-lead__title a { color: var(--hf-ink); text-decoration: none; }
.hf-lead__title a:hover { color: var(--hf-primary); }
.hf-lead__excerpt { color: var(--hf-ink-2); margin-bottom: 20px; }
.hf-lead__excerpt p { margin: 0; }
@media (max-width: 860px) { .hf-lead { grid-template-columns: 1fr; } .hf-lead__media { min-height: 0; aspect-ratio: 16 / 9; } .hf-lead__body { padding: 24px; } }

.hf-cat-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.hf-cat-chips a { padding: 6px 14px; border: 1px solid var(--hf-line-2); border-radius: 999px; color: var(--hf-ink-2); font-size: .875rem; font-weight: 550; text-decoration: none; }
.hf-cat-chips a:hover { border-color: var(--hf-ink); color: var(--hf-ink); }
.hf-cat-chips a[aria-current="page"] { background: var(--hf-dark); border-color: var(--hf-dark); color: var(--hf-on-dark); }

.hf-article__cat { text-decoration: none; }
.hf-article__title { margin: 0 0 14px; font-size: clamp(2rem, 1.5rem + 1.8vw, 2.8rem); letter-spacing: -0.03em; line-height: 1.1; }
.hf-article__standfirst { margin: 0 0 20px; font-size: 1.2rem; line-height: 1.55; color: var(--hf-ink-2); }
.hf-article__byline { display: flex; align-items: center; gap: 12px; margin: 0; padding-top: 16px; border-top: 1px solid var(--hf-line); }
.hf-article__avatar { border-radius: 50%; }
.hf-article__byline > span { display: flex; flex-direction: column; line-height: 1.35; }
.hf-article__author { font-weight: 650; color: var(--hf-ink); }
.hf-article__details { font-size: .8125rem; color: var(--hf-muted); }
.hf-article__header { margin-bottom: 28px; }
.hf-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.hf-tags a { padding: 4px 12px; border-radius: 999px; background: var(--hf-surface-2); color: var(--hf-ink-2); font-size: .8125rem; text-decoration: none; }
.hf-tags a:hover { background: var(--hf-primary-tint); color: var(--hf-primary-dark); }
.hf-article-cta { display: flex; align-items: center; justify-content: space-between; gap: 16px 24px; flex-wrap: wrap; margin: 40px 0 0; padding: 24px 28px; border-radius: calc(var(--hf-radius) + 4px); background: var(--hf-primary-tint); border: 1px solid var(--hf-primary-tint-2); }
.hf-article-cta__title { margin: 0 0 4px; font-size: 1.15rem; font-weight: 700; color: var(--hf-ink); }
.hf-article-cta__text { margin: 0; color: var(--hf-ink-2); }
.hf-featured-sc { margin: 32px 0; }
.hf-featured-sc__title { margin-bottom: 20px; }
#front_page_content .hf-featured-sc *, #default_content .hf-featured-sc * { box-sizing: border-box; }
.hf-card__media, .hf-lead__media { text-decoration: none; }
.hf-lead__media.hf-card__media--empty { background: var(--hf-dark); background-image: radial-gradient(500px 260px at 90% 0%, color-mix(in srgb, var(--hf-primary) 55%, transparent), transparent 70%), linear-gradient(135deg, var(--hf-dark), var(--hf-dark-2)); }
.hf-lead__media .hf-card__placeholder { font-size: 1.4rem; }

/* Mobile menu: backdrop-filter makes the header the containing block for the
   fixed drawer, which collapsed it to zero height. Turn it off on small screens. */
@media (max-width: 1080px) {
	.hf-header__main { backdrop-filter: none; -webkit-backdrop-filter: none; background: #fff; }
	.hf-drawer .hf-drawer__region { display: block; padding: 0 var(--hf-gutter) 8px; }
}
.hf-drawer__region { display: none; }
.hf-drawer__region a { display: inline-flex; align-items: center; gap: 8px; padding: 12px 0; color: var(--hf-ink); font-weight: 550; text-decoration: none; }
@media (max-width: 600px) {
	.hf-topbar__inner { justify-content: space-between; }
	.hf-topbar__links { width: 100%; justify-content: space-between; gap: 12px; }
	.hf-topbar__region, .hf-topbar__chat { display: none !important; }
}
