/* ==========================================================================
   Heritage Outdoor Structures
   Design tokens, layout and components.
   Brand colours (--brand, --accent, --ink, --paper) are injected from the
   Customizer, so everything below reacts to a palette change.
   ========================================================================== */

:root {
	color-scheme: light;

	--brand: #1E4D3F;
	--accent: #C2703C;
	--ink: #1B1A17;
	--paper: #FBF8F2;
	--brand-rgb: 30, 77, 63;
	--accent-rgb: 194, 112, 60;

	--card: #FFFFFF;
	--tint: #F3F0E8;
	--line: #E3DDD0;
	--line-soft: #EDE8DC;
	--muted: #6B6759;
	--ink-soft: #45423A;

	--font-head: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
	--font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

	--r-sm: 8px;
	--r-md: 14px;
	--r-lg: 22px;

	--sp-1: 4px;
	--sp-2: 8px;
	--sp-3: 12px;
	--sp-4: 16px;
	--sp-5: 24px;
	--sp-6: 32px;
	--sp-7: 48px;
	--sp-8: 64px;
	--sp-9: 88px;

	--shadow-sm: 0 1px 2px rgba(27, 26, 23, .05), 0 2px 8px rgba(27, 26, 23, .04);
	--shadow-md: 0 4px 12px rgba(27, 26, 23, .07), 0 12px 32px rgba(27, 26, 23, .06);
	--shadow-lg: 0 12px 28px rgba(27, 26, 23, .1), 0 28px 64px rgba(27, 26, 23, .08);

	--wrap: 1200px;
	--wrap-narrow: 760px;
	--gutter: clamp(16px, 4vw, 40px);
}

/* --------------------------------------------------------------- Reset */

*, *::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 { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
	font-family: var(--font-head);
	font-weight: 600;
	line-height: 1.14;
	letter-spacing: -.015em;
	color: var(--ink);
	margin: 0 0 .5em;
	text-wrap: balance;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--brand); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--accent); }

:focus-visible {
	outline: 3px solid var(--accent);
	outline-offset: 2px;
	border-radius: 3px;
}

ul, ol { margin: 0 0 1em; padding-left: 1.2em; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	white-space: nowrap;
}

.hs-skip {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 999;
	background: var(--brand);
	color: #fff;
	padding: 12px 20px;
	border-radius: 0 0 var(--r-sm) 0;
}
.hs-skip:focus { left: 0; color: #fff; }

/* --------------------------------------------------------------- Layout */

.hs-wrap {
	width: 100%;
	max-width: var(--wrap);
	margin-inline: auto;
	padding-inline: var(--gutter);
}
.hs-wrap--narrow { max-width: var(--wrap-narrow); }

.hs-section { padding-block: clamp(48px, 7vw, 88px); }
.hs-section--tint { background: var(--tint); }

.hs-sec-head { margin-bottom: clamp(28px, 4vw, 48px); max-width: 720px; }
.hs-sec-head--center { margin-inline: auto; text-align: center; }
.hs-sec-title { font-size: clamp(28px, 3.6vw, 44px); margin-bottom: .35em; }
.hs-sec-intro { color: var(--muted); font-size: 1.06rem; margin: 0; }

.hs-eyebrow {
	font-family: var(--font-body);
	font-size: .78rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	color: var(--accent);
	margin: 0 0 .8em;
}
.hs-eyebrow a { color: inherit; text-decoration: none; }
.hs-eyebrow a:hover { text-decoration: underline; }
.hs-eyebrow--light { color: #F0DCC8; }

.hs-grid { display: grid; gap: clamp(18px, 2.4vw, 28px); }
.hs-grid--2 { grid-template-columns: repeat(2, 1fr); }
.hs-grid--3 { grid-template-columns: repeat(3, 1fr); }
.hs-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1000px) {
	.hs-grid--4 { grid-template-columns: repeat(2, 1fr); }
	.hs-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
	.hs-grid--2, .hs-grid--3, .hs-grid--4 { grid-template-columns: 1fr; }
}

.hs-section__more { margin-top: clamp(24px, 3vw, 36px); }
.hs-empty {
	padding: 48px 24px;
	text-align: center;
	color: var(--muted);
	background: var(--card);
	border: 1px dashed var(--line);
	border-radius: var(--r-md);
}

/* --------------------------------------------------------------- Buttons */

.hs-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 13px 24px;
	border: 2px solid transparent;
	border-radius: 999px;
	font-family: var(--font-body);
	font-size: .96rem;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	cursor: pointer;
	transition: transform .16s ease, background-color .16s ease, box-shadow .16s ease, color .16s ease;
	white-space: nowrap;
}
.hs-btn:hover { transform: translateY(-1px); }
.hs-btn:active { transform: translateY(0); }
.hs-btn--lg { padding: 16px 30px; font-size: 1.02rem; }

.hs-btn--brand { background: var(--brand); color: #fff; box-shadow: var(--shadow-sm); }
.hs-btn--brand:hover { background: color-mix(in srgb, var(--brand) 86%, #000); color: #fff; box-shadow: var(--shadow-md); }

.hs-btn--accent { background: var(--accent); color: #fff; box-shadow: var(--shadow-sm); }
.hs-btn--accent:hover { background: color-mix(in srgb, var(--accent) 86%, #000); color: #fff; box-shadow: var(--shadow-md); }

.hs-btn--outline { background: transparent; color: var(--brand); border-color: var(--brand); }
.hs-btn--outline:hover { background: var(--brand); color: #fff; }

.hs-btn--ghost-light { background: rgba(255, 255, 255, .12); color: #fff; border-color: rgba(255, 255, 255, .55); backdrop-filter: blur(4px); }
.hs-btn--ghost-light:hover { background: #fff; color: var(--brand); border-color: #fff; }

.hs-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 600;
	font-size: .95rem;
	text-decoration: none;
	color: var(--brand);
}
.hs-link-arrow svg { transition: transform .16s ease; }
.hs-link-arrow:hover svg { transform: translateX(4px); }

.hs-icon { flex: none; vertical-align: middle; }

/* --------------------------------------------------------------- Top bar */

.hs-topbar {
	background: var(--brand);
	color: rgba(255, 255, 255, .82);
	font-size: .84rem;
}
.hs-topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 42px;
	flex-wrap: wrap;
}
.hs-topbar p { margin: 0; }
.hs-topbar__right { display: flex; align-items: center; gap: 20px; }
.hs-topbar__hours,
.hs-topbar__phone { display: inline-flex; align-items: center; gap: 7px; }
.hs-topbar__phone { color: #fff; font-weight: 600; text-decoration: none; }
.hs-topbar__phone:hover { color: #F3D9C1; }
.hs-topbar__social { display: inline-flex; gap: 12px; }
.hs-topbar__social a { color: rgba(255, 255, 255, .8); display: inline-flex; }
.hs-topbar__social a:hover { color: #fff; }

@media (max-width: 820px) {
	.hs-topbar__area, .hs-topbar__hours { display: none; }
	.hs-topbar__inner { justify-content: center; }
}

/* --------------------------------------------------------------- Header */

.hs-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(251, 248, 242, .96);
	backdrop-filter: saturate(1.4) blur(10px);
	border-bottom: 1px solid var(--line);
}
.hs-header__inner {
	display: flex;
	align-items: center;
	gap: clamp(16px, 3vw, 40px);
	min-height: 82px;
}

.hs-brand { flex: none; }
.hs-brand__link { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.hs-brand__mark { flex: none; display: block; }
.hs-brand__text { display: flex; flex-direction: column; }
.hs-brand__name {
	font-family: var(--font-head);
	font-weight: 700;
	font-size: 1.22rem;
	line-height: 1.1;
	letter-spacing: -.02em;
	color: var(--brand);
}
.hs-brand__tag {
	font-size: .72rem;
	color: var(--muted);
	letter-spacing: .02em;
	max-width: 26ch;
}
.custom-logo-link img { max-height: 58px; width: auto; }

.hs-nav { margin-left: auto; }
.hs-menu {
	display: flex;
	align-items: center;
	gap: clamp(4px, 1.4vw, 18px);
	list-style: none;
	margin: 0;
	padding: 0;
}
.hs-menu li { position: relative; }
.hs-menu > li > a {
	display: block;
	padding: 10px 6px;
	font-size: .95rem;
	font-weight: 500;
	color: var(--ink-soft);
	text-decoration: none;
	border-radius: var(--r-sm);
}
.hs-menu > li > a:hover,
.hs-menu > li.current-menu-item > a,
.hs-menu > li.current-menu-ancestor > a { color: var(--brand); }
.hs-menu > li.current-menu-item > a { font-weight: 600; }

.hs-menu .sub-menu {
	position: absolute;
	top: calc(100% + 6px);
	left: -14px;
	min-width: 244px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	box-shadow: var(--shadow-md);
	list-style: none;
	margin: 0;
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	transition: opacity .16s ease, transform .16s ease, visibility .16s;
	z-index: 20;
}
.hs-menu li:hover > .sub-menu,
.hs-menu li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.hs-menu .sub-menu a {
	display: block;
	padding: 9px 12px;
	border-radius: var(--r-sm);
	font-size: .93rem;
	color: var(--ink-soft);
	text-decoration: none;
}
.hs-menu .sub-menu a:hover { background: var(--tint); color: var(--brand); }
.hs-menu .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 6px; height: 6px;
	margin-left: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	transform: translateY(-2px) rotate(45deg);
}

.hs-header__actions { display: flex; align-items: center; gap: 10px; flex: none; }
.hs-burger {
	display: none;
	background: transparent;
	border: 1px solid var(--line);
	border-radius: var(--r-sm);
	padding: 8px;
	color: var(--brand);
	cursor: pointer;
	line-height: 0;
}
.hs-burger__close { display: none; }
.hs-burger[aria-expanded="true"] .hs-burger__close { display: block; }
.hs-burger[aria-expanded="true"] .hs-burger__open { display: none; }

@media (max-width: 1080px) {
	.hs-header__cta { display: none; }
}
@media (max-width: 980px) {
	.hs-burger { display: block; }

	/* A backdrop-filter makes an element the containing block for any
	   position:fixed descendant, which would trap the off-canvas menu inside
	   the header. Drop the frosted effect at these widths — the header is
	   opaque on mobile anyway — so the panel resolves against the viewport. */
	.hs-header {
		backdrop-filter: none;
		background: var(--paper);
	}

	/* The nav becomes a viewport-sized, clipping shell and the menu itself is
	   the panel that slides. Parking the panel off-canvas inside a shell that
	   is exactly the size of the viewport means it can never widen the page,
	   so there is no need to clip overflow on <html> — which would stop the
	   sticky header working. */
	.hs-nav {
		position: fixed;
		inset: 0;
		margin: 0;
		overflow: hidden;
		pointer-events: none;
		z-index: 55;
	}
	.hs-nav .hs-menu {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		width: min(400px, 88vw);
		background: var(--card);
		border-left: 1px solid var(--line);
		box-shadow: var(--shadow-lg);
		/* Clears the top bar plus the header, so the first link never sits
		   underneath the logo or the close button. */
		padding: 128px 24px 32px;
		overflow-y: auto;
		transform: translateX(100%);
		visibility: hidden;
		transition: transform .24s ease, visibility .24s;
		pointer-events: auto;
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
	}
	.hs-nav.is-open .hs-menu { transform: translateX(0); visibility: visible; }

	/* The nav shell lives inside the header, so the close button needs to be
	   lifted above it or the open panel swallows it. */
	.hs-header__actions { position: relative; z-index: 56; }
	.hs-brand { position: relative; z-index: 56; }
	.hs-menu > li > a {
		padding: 13px 12px;
		font-size: 1.04rem;
		border-bottom: 1px solid var(--line-soft);
		border-radius: 0;
	}
	.hs-menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: 0;
		border-left: 2px solid var(--line);
		border-radius: 0;
		margin: 0 0 8px 12px;
		padding: 4px 0 4px 8px;
		display: none;
	}
	.hs-menu li.is-open > .sub-menu { display: block; }
	.hs-menu .menu-item-has-children > a::after { float: right; margin-top: 8px; }
	body.hs-nav-open { overflow: hidden; }
	.hs-nav-scrim {
		position: fixed;
		inset: 0;
		background: rgba(27, 26, 23, .45);
		z-index: 54;
	}
}

/* On a phone the drawer takes the full width — a sliver of the page showing
   down one side just looks like a mistake. */
@media (max-width: 560px) {
	.hs-nav .hs-menu { width: 100%; border-left: 0; }
	.hs-brand__tag { display: none; }
}

/* --------------------------------------------------------------- Hero */

.hs-hero {
	position: relative;
	isolation: isolate;
	min-height: clamp(460px, 62vh, 640px);
	display: flex;
	align-items: center;
	overflow: hidden;
}
.hs-hero__art { position: absolute; inset: 0; z-index: -2; }
.hs-hero__art svg { width: 100%; height: 100%; }
.hs-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(100deg, rgba(var(--brand-rgb), .93) 0%, rgba(var(--brand-rgb), .82) 38%, rgba(var(--brand-rgb), .28) 68%, rgba(var(--brand-rgb), .12) 100%);
}
.hs-hero__inner { padding-block: clamp(56px, 8vw, 96px); width: 100%; }
.hs-hero__copy { max-width: 620px; color: #fff; }
.hs-hero__title {
	color: #fff;
	font-size: clamp(34px, 5.2vw, 60px);
	margin-bottom: .38em;
}
.hs-hero__text {
	font-size: clamp(1.02rem, 1.4vw, 1.18rem);
	color: rgba(255, 255, 255, .92);
	margin-bottom: 2em;
	max-width: 54ch;
}
.hs-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 760px) {
	.hs-hero::after {
		background: linear-gradient(180deg, rgba(var(--brand-rgb), .9) 0%, rgba(var(--brand-rgb), .86) 60%, rgba(var(--brand-rgb), .78) 100%);
	}
}

/* --------------------------------------------------------------- Trust bar */

.hs-trust { background: var(--card); border-bottom: 1px solid var(--line); }
.hs-trust__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(20px, 3vw, 40px);
	padding-block: clamp(32px, 4vw, 48px);
}
.hs-trust__item h3 { font-size: 1.05rem; margin: 12px 0 6px; }
.hs-trust__item p { margin: 0; color: var(--muted); font-size: .93rem; line-height: 1.55; }
.hs-trust__item .hs-icon { color: var(--accent); }

@media (max-width: 900px) { .hs-trust__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .hs-trust__grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- Cards */

.hs-thumb {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--tint);
}
.hs-thumb img, .hs-thumb svg { width: 100%; height: 100%; object-fit: cover; }
.hs-thumb--hero { aspect-ratio: 16 / 10; border-radius: var(--r-lg); box-shadow: var(--shadow-md); }

.hs-card {
	display: flex;
	flex-direction: column;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	overflow: hidden;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.hs-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--brand) 28%, var(--line)); }
.hs-card__media { display: block; position: relative; }
.hs-card__body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.hs-card__title { font-size: 1.18rem; margin: 0; }
.hs-card__title a { color: var(--ink); text-decoration: none; }
.hs-card__title a:hover { color: var(--brand); }
.hs-card__text { color: var(--muted); font-size: .93rem; margin: 0; }
.hs-card__meta { margin-top: auto; padding-top: 12px; display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.hs-card__sizes { font-size: .85rem; color: var(--muted); margin: 0; }

.hs-price-from { margin: 0; font-size: 1.16rem; font-weight: 700; color: var(--brand); font-family: var(--font-head); }
.hs-price-from span { font-size: .74rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-family: var(--font-body); display: block; }

.hs-card__price { margin-top: auto; padding-top: 10px; display: flex; align-items: baseline; gap: 10px; }
.hs-price--now { font-family: var(--font-head); font-size: 1.32rem; font-weight: 700; color: var(--brand); }
.hs-price--was { text-decoration: line-through; color: var(--muted); font-size: .95rem; }
.hs-card__rto { font-size: .85rem; color: var(--muted); margin: 2px 0 0; }
.hs-card--inv.is-sold { opacity: .62; }

/* The inventory grid wraps each card in a filterable div, so the card needs
   telling to fill that wrapper or rows end up ragged. */
.hs-inv-item { display: flex; }
.hs-inv-item > .hs-card { flex: 1 1 auto; }
.hs-inv-item[hidden] { display: none; }

.hs-badge {
	position: absolute;
	top: 12px; left: 12px;
	background: var(--brand);
	color: #fff;
	font-size: .7rem;
	font-weight: 700;
	letter-spacing: .07em;
	text-transform: uppercase;
	padding: 5px 11px;
	border-radius: 999px;
}
.hs-badge--used, .hs-badge--repossessed { background: var(--accent); }
.hs-badge--display { background: #6B6759; }
.hs-badge--status { left: auto; right: 12px; background: #8E2C24; }

.hs-cat {
	display: flex;
	flex-direction: column;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.hs-cat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--brand) 30%, var(--line)); color: inherit; }
.hs-cat__media { display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.hs-cat__media svg { width: 100%; height: 100%; object-fit: cover; }
.hs-cat__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.hs-cat__title { font-family: var(--font-head); font-size: 1.24rem; font-weight: 600; color: var(--ink); }
.hs-cat__text { color: var(--muted); font-size: .93rem; }
.hs-cat__more { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 10px; font-weight: 600; font-size: .92rem; color: var(--brand); }
.hs-cat:hover .hs-cat__more svg { transform: translateX(4px); }
.hs-cat__more svg { transition: transform .16s ease; }

.hs-post-card {
	display: flex;
	flex-direction: column;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	overflow: hidden;
}
.hs-post-card__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.hs-post-card__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.hs-post-card__date { font-size: .8rem; color: var(--muted); margin: 0; text-transform: uppercase; letter-spacing: .06em; }
.hs-post-card h2, .hs-post-card h3 { font-size: 1.2rem; margin: 0; }
.hs-post-card h2 a, .hs-post-card h3 a { color: var(--ink); text-decoration: none; }
.hs-post-card h2 a:hover, .hs-post-card h3 a:hover { color: var(--brand); }
.hs-post-card p { color: var(--muted); font-size: .93rem; margin: 0; }
.hs-post-card .hs-link-arrow { margin-top: auto; padding-top: 10px; }

/* --------------------------------------------------------------- Steps */

.hs-steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(18px, 2.4vw, 28px);
	counter-reset: step;
}
.hs-step {
	position: relative;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 26px 22px 24px;
}
.hs-step__num {
	position: absolute;
	top: -14px; left: 22px;
	width: 34px; height: 34px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--brand);
	color: #fff;
	font-weight: 700;
	font-size: .92rem;
}
.hs-step__icon { display: block; color: var(--accent); margin: 8px 0 12px; }
.hs-step h3 { font-size: 1.06rem; margin: 0 0 8px; }
.hs-step p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.56; }

@media (max-width: 1000px) { .hs-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .hs-steps { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- Split */

.hs-split { background: var(--card); border-block: 1px solid var(--line); }
.hs-split--plain { background: transparent; border: 0; }
.hs-split__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
	padding-block: clamp(48px, 7vw, 88px);
}
.hs-split__copy h2 { font-size: clamp(26px, 3.2vw, 40px); }
.hs-split__copy > p { color: var(--muted); }
.hs-split__art svg { border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.hs-split__actions { display: flex; align-items: center; flex-wrap: wrap; gap: 20px; margin-top: 24px; }

@media (max-width: 860px) {
	.hs-split__inner { grid-template-columns: 1fr; }
	.hs-split__art { order: -1; }
}

/* --------------------------------------------------------------- Ticks */

.hs-ticks { list-style: none; margin: 20px 0; padding: 0; display: grid; gap: 11px; }
.hs-ticks li { display: flex; gap: 11px; align-items: flex-start; font-size: .97rem; }
.hs-ticks .hs-icon { color: var(--accent); margin-top: 3px; }
.hs-ticks--small li { font-size: .9rem; }

.hs-numbered { margin: 0; padding-left: 1.1em; display: grid; gap: 10px; }
.hs-numbered li { font-size: .95rem; color: var(--ink-soft); padding-left: 4px; }
.hs-numbered li::marker { color: var(--accent); font-weight: 700; }

/* --------------------------------------------------------------- Product page */

.hs-crumbs { background: var(--tint); border-bottom: 1px solid var(--line); font-size: .85rem; }
.hs-crumbs .hs-wrap { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding-block: 12px; }
.hs-crumbs a { color: var(--muted); text-decoration: none; }
.hs-crumbs a:hover { color: var(--brand); text-decoration: underline; }
.hs-crumbs span[aria-hidden] { color: var(--line); }
.hs-crumbs__current { color: var(--ink); font-weight: 500; }

.hs-page-head { padding-block: clamp(36px, 5vw, 64px) clamp(20px, 3vw, 32px); }
.hs-page-head h1 { font-size: clamp(32px, 4.6vw, 54px); margin-bottom: .3em; }
.hs-page-head__intro { color: var(--muted); font-size: 1.06rem; max-width: 66ch; margin: 0; }
.hs-page-feature img { border-radius: var(--r-lg); box-shadow: var(--shadow-md); margin-top: 16px; }

.hs-product__hero { padding-block: clamp(32px, 4.6vw, 60px); }
.hs-product__hero-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
	gap: clamp(28px, 4vw, 56px);
	align-items: center;
}
.hs-product__hero-inner--flip .hs-product__media { order: -1; }
.hs-product__title { font-size: clamp(32px, 4.4vw, 52px); margin-bottom: .25em; }
.hs-product__tagline { font-size: 1.12rem; color: var(--muted); margin-bottom: 1.5em; }

.hs-product__facts { display: flex; flex-wrap: wrap; gap: 28px; margin: 0 0 28px; }
.hs-product__facts dt { font-size: .74rem; text-transform: uppercase; letter-spacing: .09em; color: var(--muted); font-weight: 600; }
.hs-product__facts dd { margin: 4px 0 0; font-weight: 600; font-size: 1.04rem; }
.hs-product__price { font-family: var(--font-head); font-size: 1.6rem !important; color: var(--brand); }
.hs-product__actions { display: flex; flex-wrap: wrap; gap: 12px; }

@media (max-width: 900px) {
	.hs-product__hero-inner { grid-template-columns: 1fr; }
	.hs-product__hero-inner--flip .hs-product__media { order: 0; }
}

.hs-highlights { background: var(--brand); color: #fff; }
.hs-highlights__grid {
	list-style: none;
	margin: 0;
	padding-block: clamp(24px, 3vw, 36px);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: clamp(16px, 2.4vw, 32px);
}
.hs-highlights__grid li { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; line-height: 1.5; }
.hs-highlights__grid .hs-icon { color: #F0C79E; margin-top: 2px; }

@media (max-width: 900px) { .hs-highlights__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .hs-highlights__grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- Tabs */

.hs-tabs__list {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	border-bottom: 2px solid var(--line);
	margin-bottom: clamp(24px, 3vw, 40px);
}
.hs-tabs__tab {
	appearance: none;
	background: transparent;
	border: 0;
	border-bottom: 3px solid transparent;
	margin-bottom: -2px;
	padding: 13px 20px;
	font-family: var(--font-body);
	font-size: 1rem;
	font-weight: 600;
	color: var(--muted);
	cursor: pointer;
	border-radius: var(--r-sm) var(--r-sm) 0 0;
}
.hs-tabs__tab:hover { color: var(--brand); background: rgba(var(--brand-rgb), .05); }
.hs-tabs__tab[aria-selected="true"] { color: var(--brand); border-bottom-color: var(--accent); }

.hs-spec-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: clamp(20px, 2.6vw, 32px);
}
.hs-spec {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 24px;
}
.hs-spec__title {
	font-size: 1.06rem;
	margin: 0 0 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--line-soft);
}
.hs-spec__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.hs-spec__list li { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; line-height: 1.5; }
.hs-spec__list .hs-icon { color: var(--brand); margin-top: 3px; }
.hs-spec__list--plus .hs-icon { color: var(--accent); }

/* --------------------------------------------------------------- Swatches */

.hs-swatches { display: grid; gap: clamp(24px, 3vw, 36px); }
.hs-swatch-set__title { font-size: 1.02rem; margin: 0 0 14px; }
.hs-swatch-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
	gap: 14px;
}
.hs-swatch { display: flex; flex-direction: column; gap: 7px; }
.hs-swatch__chip {
	display: block;
	height: 58px;
	border-radius: var(--r-sm);
	border: 1px solid rgba(27, 26, 23, .12);
	box-shadow: inset 0 -8px 14px rgba(0, 0, 0, .06);
}
.hs-swatch__name { font-size: .8rem; color: var(--muted); }
.hs-swatch-note {
	margin-top: 24px;
	padding: 14px 18px;
	background: rgba(var(--accent-rgb), .08);
	border-left: 3px solid var(--accent);
	border-radius: 0 var(--r-sm) var(--r-sm) 0;
	font-size: .9rem;
	color: var(--ink-soft);
}

/* --------------------------------------------------------------- Tables */

/* `position: relative` matters here: it makes this the containing block for
   the absolutely-positioned screen-reader labels inside the table, so they
   are clipped by the scroll area instead of widening the whole page. */
.hs-table-wrap { position: relative; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--card); }
.hs-table { width: 100%; border-collapse: collapse; min-width: 620px; }
.hs-table th, .hs-table td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--line-soft); }
.hs-table thead th {
	background: var(--tint);
	font-size: .76rem;
	text-transform: uppercase;
	letter-spacing: .08em;
	color: var(--muted);
	font-weight: 700;
}
.hs-table tbody th { font-weight: 600; font-size: 1rem; }
.hs-table tbody tr:last-child th, .hs-table tbody tr:last-child td { border-bottom: 0; }
.hs-table tbody tr:hover { background: rgba(var(--brand-rgb), .035); }
.hs-table__price { font-family: var(--font-head); font-weight: 700; color: var(--brand); font-size: 1.06rem; }
.hs-table__action { text-align: right; }

/* --------------------------------------------------------------- Terms */

.hs-terms { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.hs-term-card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 26px 24px;
}
.hs-term-card h3 { display: flex; align-items: center; gap: 10px; font-size: 1.12rem; margin: 0 0 8px; }
.hs-term-card h3 .hs-icon { color: var(--accent); }
.hs-term-card p { color: var(--muted); font-size: .94rem; }
.hs-term-card--accent { background: var(--brand); border-color: var(--brand); color: #fff; }
.hs-term-card--accent h3 { color: #fff; }
.hs-term-card--accent h3 .hs-icon { color: #F0C79E; }
.hs-term-card--accent p { color: rgba(255, 255, 255, .86); }
.hs-term-card--accent .hs-btn--brand { background: #fff; color: var(--brand); margin-top: 6px; }
.hs-term-card--accent .hs-btn--brand:hover { background: #F3D9C1; color: var(--brand); }

@media (max-width: 940px) { .hs-terms { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- Payment cards */

.hs-pay-card {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 26px 22px;
}
.hs-pay-card__icon {
	display: grid;
	place-items: center;
	width: 52px; height: 52px;
	border-radius: 14px;
	background: rgba(var(--accent-rgb), .12);
	color: var(--accent);
	margin-bottom: 16px;
}
.hs-pay-card h2 { font-size: 1.14rem; margin: 0 0 8px; }
.hs-pay-card p { margin: 0; color: var(--muted); font-size: .93rem; line-height: 1.56; }

/* --------------------------------------------------------------- Calculator */

.hs-calc {
	display: grid;
	grid-template-columns: 1.15fr .85fr;
	gap: clamp(24px, 3vw, 44px);
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: clamp(24px, 3.4vw, 44px);
	box-shadow: var(--shadow-sm);
}
.hs-calc__row { margin-bottom: 32px; border: 0; padding: 0; }
.hs-calc__row:last-child { margin-bottom: 0; }
.hs-calc__row label, .hs-calc__row legend {
	display: block;
	font-weight: 600;
	font-size: .88rem;
	text-transform: uppercase;
	letter-spacing: .07em;
	color: var(--muted);
	margin-bottom: 10px;
	padding: 0;
}
.hs-calc__value {
	display: block;
	font-family: var(--font-head);
	font-size: clamp(30px, 4vw, 42px);
	font-weight: 700;
	color: var(--brand);
	line-height: 1.1;
	margin-bottom: 14px;
}
.hs-calc input[type="range"] {
	width: 100%;
	appearance: none;
	height: 8px;
	border-radius: 999px;
	background: var(--line);
	outline-offset: 6px;
}
.hs-calc input[type="range"]::-webkit-slider-thumb {
	appearance: none;
	width: 26px; height: 26px;
	border-radius: 50%;
	background: var(--accent);
	border: 3px solid #fff;
	box-shadow: var(--shadow-sm);
	cursor: pointer;
}
.hs-calc input[type="range"]::-moz-range-thumb {
	width: 22px; height: 22px;
	border-radius: 50%;
	background: var(--accent);
	border: 3px solid #fff;
	box-shadow: var(--shadow-sm);
	cursor: pointer;
}
.hs-calc__scale { display: flex; justify-content: space-between; font-size: .78rem; color: var(--muted); margin-top: 8px; }

.hs-calc__terms { display: flex; flex-wrap: wrap; gap: 8px; }
.hs-calc__term input { position: absolute; opacity: 0; pointer-events: none; }
.hs-calc__term span {
	display: block;
	padding: 10px 18px;
	border: 2px solid var(--line);
	border-radius: 999px;
	font-size: .92rem;
	font-weight: 600;
	color: var(--muted);
	cursor: pointer;
	transition: all .16s ease;
}
.hs-calc__term input:checked + span { border-color: var(--brand); background: var(--brand); color: #fff; }
.hs-calc__term input:focus-visible + span { outline: 3px solid var(--accent); outline-offset: 2px; }

.hs-calc__result {
	background: var(--tint);
	border-radius: var(--r-md);
	padding: clamp(22px, 2.6vw, 32px);
	align-self: start;
}
.hs-calc__label { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600; margin: 0; }
.hs-calc__big {
	font-family: var(--font-head);
	font-size: clamp(40px, 5.4vw, 58px);
	font-weight: 700;
	color: var(--brand);
	line-height: 1.05;
	margin: 6px 0 18px;
}
.hs-calc__lines { margin: 0 0 16px; display: grid; gap: 9px; }
.hs-calc__lines > div { display: flex; justify-content: space-between; gap: 12px; font-size: .9rem; border-bottom: 1px dashed var(--line); padding-bottom: 9px; }
.hs-calc__lines dt { color: var(--muted); }
.hs-calc__lines dd { margin: 0; font-weight: 700; }
.hs-calc__note { font-size: .82rem; color: var(--muted); line-height: 1.55; }

@media (max-width: 860px) { .hs-calc { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- FAQ */

.hs-faq { border-top: 1px solid var(--line); }
.hs-faq__item { border-bottom: 1px solid var(--line); }
.hs-faq h3 { margin: 0; }
.hs-faq__q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	background: transparent;
	border: 0;
	padding: 20px 4px;
	font-family: var(--font-head);
	font-size: 1.08rem;
	font-weight: 600;
	color: var(--ink);
	text-align: left;
	cursor: pointer;
	line-height: 1.35;
}
.hs-faq__q:hover { color: var(--brand); }
.hs-faq__q .hs-icon { flex: none; color: var(--accent); transform: rotate(90deg); transition: transform .18s ease; }
.hs-faq__q[aria-expanded="true"] .hs-icon { transform: rotate(-90deg); }
.hs-faq__a { padding: 0 4px 22px; color: var(--muted); max-width: 70ch; }
.hs-faq__a p { margin: 0; }

/* --------------------------------------------------------------- Filters */

.hs-filterbar { border-block: 1px solid var(--line); background: var(--card); position: sticky; top: 81px; z-index: 40; }
.hs-filterbar__inner { display: flex; align-items: center; gap: 10px; padding-block: 14px; flex-wrap: wrap; }
.hs-filterbar--tools .hs-filterbar__inner { justify-content: space-between; }
.hs-filterbar__chips { display: flex; gap: 8px; flex-wrap: wrap; }
.hs-filterbar__tools { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }

.hs-chip {
	display: inline-block;
	padding: 8px 16px;
	border: 1.5px solid var(--line);
	border-radius: 999px;
	background: transparent;
	font-family: var(--font-body);
	font-size: .89rem;
	font-weight: 600;
	color: var(--muted);
	text-decoration: none;
	cursor: pointer;
	transition: all .16s ease;
	white-space: nowrap;
}
.hs-chip:hover { border-color: var(--brand); color: var(--brand); }
.hs-chip.is-on { background: var(--brand); border-color: var(--brand); color: #fff; }

.hs-search { position: relative; display: flex; align-items: center; }
.hs-search .hs-icon { position: absolute; left: 13px; color: var(--muted); pointer-events: none; }
.hs-search input {
	padding: 9px 14px 9px 40px;
	border: 1.5px solid var(--line);
	border-radius: 999px;
	font-family: var(--font-body);
	font-size: .89rem;
	background: var(--paper);
	min-width: 240px;
	color: var(--ink);
}
.hs-select select {
	padding: 9px 16px;
	border: 1.5px solid var(--line);
	border-radius: 999px;
	font-family: var(--font-body);
	font-size: .89rem;
	background: var(--paper);
	color: var(--ink);
	cursor: pointer;
}

@media (max-width: 980px) { .hs-filterbar { top: 0; position: static; } }
@media (max-width: 560px) { .hs-search input { min-width: 0; width: 100%; } .hs-filterbar__tools { width: 100%; } }

/* --------------------------------------------------------------- Gallery */

.hs-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: clamp(14px, 2vw, 22px);
}
.hs-gallery__item { margin: 0; }
.hs-gallery__item[hidden] { display: none; }
.hs-gallery__btn {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	overflow: hidden;
	background: var(--tint);
	cursor: zoom-in;
	aspect-ratio: 4 / 3;
}
.hs-gallery__btn img, .hs-gallery__btn svg { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.hs-gallery__btn:hover img, .hs-gallery__btn:hover svg { transform: scale(1.05); }
.hs-gallery__zoom {
	position: absolute;
	right: 10px; bottom: 10px;
	display: grid;
	place-items: center;
	width: 38px; height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .92);
	color: var(--brand);
	opacity: 0;
	transition: opacity .18s ease;
}
.hs-gallery__btn:hover .hs-gallery__zoom, .hs-gallery__btn:focus-visible .hs-gallery__zoom { opacity: 1; }
.hs-gallery figcaption { padding: 10px 2px 0; font-size: .9rem; font-weight: 600; }
.hs-gallery figcaption a { text-decoration: none; color: var(--ink); }
.hs-gallery figcaption a:hover { color: var(--brand); }
.hs-gallery figcaption span { display: block; font-weight: 400; font-size: .82rem; color: var(--muted); }

.hs-lightbox {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: rgba(20, 19, 17, .93);
	display: grid;
	place-items: center;
	padding: clamp(16px, 4vw, 48px);
}
.hs-lightbox[hidden] { display: none; }
.hs-lightbox__inner { margin: 0; max-width: 1100px; max-height: 100%; }
.hs-lightbox__inner img { max-height: 78vh; width: auto; margin-inline: auto; border-radius: var(--r-md); }
.hs-lightbox figcaption { color: #fff; text-align: center; margin-top: 14px; font-size: .95rem; }
.hs-lightbox__close {
	position: absolute;
	top: 18px; right: 18px;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .3);
	border-radius: 50%;
	color: #fff;
	width: 48px; height: 48px;
	display: grid;
	place-items: center;
	cursor: pointer;
}
.hs-lightbox__close:hover { background: rgba(255, 255, 255, .24); }

/* --------------------------------------------------------------- Forms */

.hs-form-wrap {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-lg);
	padding: clamp(24px, 3.4vw, 44px);
	box-shadow: var(--shadow-sm);
}
.hs-form-heading { font-size: clamp(26px, 3.2vw, 38px); margin-bottom: .3em; }
.hs-form-intro { color: var(--muted); margin-bottom: 28px; }

.hs-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.hs-field { margin: 0; }
.hs-field--full { grid-column: 1 / -1; }
.hs-field label { display: block; font-size: .86rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 7px; }
.hs-req { color: var(--accent); }

.hs-field input,
.hs-field select,
.hs-field textarea {
	width: 100%;
	padding: 13px 15px;
	border: 1.5px solid var(--line);
	border-radius: var(--r-sm);
	background: var(--paper);
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--ink);
	transition: border-color .16s ease, box-shadow .16s ease;
}
.hs-field textarea { resize: vertical; min-height: 120px; }
.hs-field input:focus,
.hs-field select:focus,
.hs-field textarea:focus {
	outline: none;
	border-color: var(--brand);
	box-shadow: 0 0 0 3px rgba(var(--brand-rgb), .14);
}
.hs-field.has-error input,
.hs-field.has-error select,
.hs-field.has-error textarea { border-color: #B3382F; box-shadow: 0 0 0 3px rgba(179, 56, 47, .12); }
.hs-field__error { display: block; color: #B3382F; font-size: .84rem; margin-top: 6px; font-weight: 500; }

.hs-hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.hs-form-foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 26px; }
.hs-form-privacy { font-size: .84rem; color: var(--muted); margin: 0; }

.hs-form-msg { margin-top: 18px; }
.hs-form-msg:empty { margin-top: 0; }
.hs-form-msg .hs-alert {
	padding: 15px 18px;
	border-radius: var(--r-sm);
	font-size: .95rem;
	border-left: 3px solid;
}
.hs-form-msg .hs-alert--ok { background: rgba(var(--brand-rgb), .09); border-color: var(--brand); color: var(--ink); }
.hs-form-msg .hs-alert--err { background: rgba(179, 56, 47, .09); border-color: #B3382F; color: #7C2721; }

.hs-form.is-sending { opacity: .6; pointer-events: none; }

@media (max-width: 620px) { .hs-form-grid { grid-template-columns: 1fr; } }

.hs-searchform { display: flex; gap: 10px; margin: 20px 0; flex-wrap: wrap; }
.hs-searchform__input {
	flex: 1;
	min-width: 200px;
	padding: 13px 16px;
	border: 1.5px solid var(--line);
	border-radius: var(--r-sm);
	font-family: var(--font-body);
	font-size: 1rem;
	background: var(--card);
	color: var(--ink);
}

/* --------------------------------------------------------------- Quote layout */

.hs-quote-layout { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, .85fr); gap: clamp(24px, 3vw, 44px); align-items: start; }
.hs-quote-layout__aside { display: grid; gap: 18px; }
.hs-aside-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px; }
.hs-aside-card h2 { font-size: 1.1rem; margin: 0 0 14px; }
.hs-aside-card--tint { background: var(--brand); border-color: var(--brand); color: #fff; }
.hs-aside-card--tint h2 { color: #fff; }
.hs-aside-card--tint p { color: rgba(255, 255, 255, .86); font-size: .93rem; }
.hs-aside-card--tint .hs-btn--brand { background: #fff; color: var(--brand); }
.hs-aside-card--tint .hs-btn--brand:hover { background: #F3D9C1; }
.hs-aside-card__hours { font-size: .82rem; margin: 12px 0 0; }
.hs-aside-card .hs-ticks { margin: 0; }

@media (max-width: 900px) { .hs-quote-layout { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- Buy box */

.hs-buybox { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px; }
.hs-buybox__price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.hs-buybox__price .hs-price--now { font-size: clamp(32px, 4vw, 44px); }
.hs-savetag {
	background: rgba(var(--accent-rgb), .14);
	color: var(--accent);
	font-size: .8rem;
	font-weight: 700;
	padding: 5px 11px;
	border-radius: 999px;
}
.hs-buybox__rto { font-size: .92rem; color: var(--muted); margin: 8px 0 0; }
.hs-buybox__facts { display: flex; flex-wrap: wrap; gap: 24px; margin: 22px 0; padding-top: 20px; border-top: 1px solid var(--line-soft); }
.hs-buybox__facts dt { font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600; }
.hs-buybox__facts dd { margin: 4px 0 0; font-weight: 600; }
.hs-stockno { color: var(--muted); font-weight: 500; letter-spacing: 0; text-transform: none; }
.hs-sold-note { background: var(--tint); padding: 14px 16px; border-radius: var(--r-sm); font-size: .92rem; }

.hs-inv-detail { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: clamp(24px, 3vw, 44px); align-items: start; }
@media (max-width: 860px) { .hs-inv-detail { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- Locations */

.hs-locations--grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: clamp(18px, 2.4vw, 26px); }
.hs-locations--grid .hs-location {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 24px;
}
.hs-location__name { font-size: 1.1rem; margin: 0 0 10px; }
.hs-location__address { font-style: normal; color: var(--muted); font-size: .93rem; margin-bottom: 10px; }
.hs-location__phone { margin: 0 0 6px; }
.hs-location__phone a { font-weight: 600; text-decoration: none; }
.hs-location__hours { font-size: .86rem; color: var(--muted); margin: 0 0 14px; }
.hs-locations--compact { display: grid; gap: 18px; }
.hs-locations--compact .hs-location__name { font-size: .96rem; margin-bottom: 4px; }
.hs-locations--compact .hs-location__address,
.hs-locations--compact .hs-location__hours { font-size: .84rem; margin-bottom: 4px; }

.hs-contact-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 24px); }
.hs-contact-tile {
	display: flex;
	flex-direction: column;
	gap: 4px;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 24px;
	text-decoration: none;
	color: inherit;
}
.hs-contact-tile .hs-icon { color: var(--accent); margin-bottom: 8px; }
.hs-contact-tile__label { font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 600; }
.hs-contact-tile__value { font-family: var(--font-head); font-size: 1.16rem; font-weight: 600; color: var(--brand); word-break: break-word; }
a.hs-contact-tile:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); }

@media (max-width: 760px) { .hs-contact-strip { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- Testimonials */

.hs-quotes { display: grid; grid-template-columns: repeat(auto-fit, minmax(288px, 1fr)); gap: clamp(18px, 2.4vw, 26px); }
.hs-quote {
	margin: 0;
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--r-md);
	padding: 26px 24px;
	display: flex;
	flex-direction: column;
}
.hs-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.hs-star { color: var(--line); font-size: 1.1rem; line-height: 1; }
.hs-star.is-on { color: var(--accent); }
.hs-quote blockquote { margin: 0; font-size: 1rem; line-height: 1.6; color: var(--ink-soft); }
.hs-quote blockquote p:first-child::before { content: "“"; }
.hs-quote blockquote p:last-child::after { content: "”"; }
.hs-quote figcaption { margin-top: auto; padding-top: 18px; }
.hs-quote__name { display: block; font-weight: 700; font-size: .95rem; }
.hs-quote__meta { display: block; font-size: .84rem; color: var(--muted); }

/* --------------------------------------------------------------- Values & stats */

.hs-value { display: flex; gap: 18px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px; }
.hs-value__icon { flex: none; display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: rgba(var(--accent-rgb), .12); color: var(--accent); }
.hs-value h3 { font-size: 1.08rem; margin: 0 0 8px; }
.hs-value p { margin: 0; color: var(--muted); font-size: .94rem; }

.hs-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.4vw, 28px); }
.hs-stat { text-align: center; padding: 26px 16px; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); }
.hs-stat__num { display: block; font-family: var(--font-head); font-size: clamp(30px, 3.6vw, 42px); font-weight: 700; color: var(--brand); line-height: 1.05; }
.hs-stat__label { display: block; font-size: .86rem; color: var(--muted); margin-top: 6px; }

@media (max-width: 760px) { .hs-stats { grid-template-columns: repeat(2, 1fr); } }

/* --------------------------------------------------------------- CTA strip */

.hs-cta-strip { background: var(--brand); color: #fff; }
.hs-cta-strip__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(20px, 3vw, 48px);
	padding-block: clamp(36px, 5vw, 60px);
	flex-wrap: wrap;
}
.hs-cta-strip h2 { color: #fff; font-size: clamp(24px, 3vw, 36px); margin-bottom: .3em; }
.hs-cta-strip p { color: rgba(255, 255, 255, .86); margin: 0; max-width: 56ch; }
.hs-cta-strip__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* --------------------------------------------------------------- Prose */

.hs-prose { font-size: 1.06rem; line-height: 1.75; }
.hs-prose h2 { font-size: clamp(24px, 3vw, 34px); margin-top: 1.6em; }
.hs-prose h3 { font-size: clamp(20px, 2.2vw, 26px); margin-top: 1.5em; }
.hs-prose h2:first-child, .hs-prose h3:first-child { margin-top: 0; }
.hs-prose ul, .hs-prose ol { margin-bottom: 1.4em; }
.hs-prose li { margin-bottom: .5em; }
.hs-prose img { border-radius: var(--r-md); margin-block: 1.6em; }
.hs-prose blockquote {
	margin: 1.6em 0;
	padding: 4px 0 4px 24px;
	border-left: 3px solid var(--accent);
	font-size: 1.14rem;
	font-style: italic;
	color: var(--ink-soft);
}
.hs-prose hr { border: 0; border-top: 1px solid var(--line); margin-block: 2.4em; }
.hs-prose table { width: 100%; border-collapse: collapse; margin-block: 1.6em; }
.hs-prose th, .hs-prose td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; }
.hs-prose code { background: var(--tint); padding: 2px 6px; border-radius: 4px; font-size: .92em; }

/* --------------------------------------------------------------- Pagination */

.pagination, .nav-links { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-top: clamp(32px, 4vw, 48px); }
.pagination .page-numbers, .nav-links .page-numbers {
	display: grid;
	place-items: center;
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	border: 1.5px solid var(--line);
	border-radius: var(--r-sm);
	text-decoration: none;
	font-weight: 600;
	font-size: .93rem;
	color: var(--ink-soft);
	background: var(--card);
}
.pagination .page-numbers:hover { border-color: var(--brand); color: var(--brand); }
.pagination .page-numbers.current { background: var(--brand); border-color: var(--brand); color: #fff; }
.pagination .dots { border-color: transparent; background: transparent; }

.hs-postnav__inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.hs-postnav__link { flex: 1; min-width: 220px; text-decoration: none; padding: 20px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--card); }
.hs-postnav__link--next { text-align: right; }
.hs-postnav__link span { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 6px; }
.hs-postnav__link strong { font-family: var(--font-head); font-size: 1.05rem; color: var(--ink); }
.hs-postnav__link:hover { border-color: var(--brand); }

.hs-blog-layout { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: clamp(28px, 4vw, 52px); align-items: start; }
.hs-blog-layout.is-full { grid-template-columns: 1fr; }
.hs-blog-layout__side .widget { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px; margin-bottom: 20px; }
.widget-title { font-size: 1.02rem; margin: 0 0 12px; }
@media (max-width: 900px) { .hs-blog-layout { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- 404 */

.hs-404 { text-align: center; }
.hs-404__art { max-width: 380px; margin: 0 auto 32px; }
.hs-404__art svg { border-radius: var(--r-lg); }
.hs-404 h1 { font-size: clamp(28px, 4vw, 44px); }
.hs-404 > .hs-wrap > p { color: var(--muted); max-width: 52ch; margin-inline: auto; }
.hs-404 .hs-searchform { justify-content: center; max-width: 520px; margin-inline: auto; }
.hs-404__links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

/* --------------------------------------------------------------- Footer */

.hs-footer { background: #14201B; color: rgba(255, 255, 255, .74); padding-top: clamp(48px, 6vw, 72px); font-size: .93rem; }
.hs-footer__top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
	gap: clamp(24px, 3vw, 48px);
	padding-bottom: clamp(36px, 4vw, 52px);
}
.hs-footer__name { font-family: var(--font-head); font-size: 1.32rem; font-weight: 700; color: #fff; display: block; margin-bottom: 12px; }
.hs-footer__note { color: rgba(255, 255, 255, .62); font-size: .9rem; max-width: 38ch; }
.hs-footer__social { display: flex; gap: 12px; margin-top: 18px; }
.hs-footer__social a {
	display: grid;
	place-items: center;
	width: 40px; height: 40px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .22);
	color: rgba(255, 255, 255, .8);
}
.hs-footer__social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.hs-footer h3 { color: #fff; font-size: 1rem; margin: 0 0 14px; }
.hs-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.hs-footer a { color: rgba(255, 255, 255, .74); text-decoration: none; }
.hs-footer a:hover { color: #fff; text-decoration: underline; }
.hs-footer .hs-location__name { color: #fff; }
.hs-footer .hs-location__address,
.hs-footer .hs-location__hours { color: rgba(255, 255, 255, .58); }

.hs-footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	padding-block: 22px;
	border-top: 1px solid rgba(255, 255, 255, .12);
	font-size: .85rem;
}
.hs-footer__bottom p { margin: 0; }
.hs-footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }

@media (max-width: 1000px) { .hs-footer__top { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .hs-footer__top { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------- Print */

@media print {
	.hs-topbar, .hs-header, .hs-footer, .hs-cta-strip, .hs-form-wrap, .hs-filterbar { display: none !important; }
	body { background: #fff; font-size: 12pt; }
	.hs-section { padding-block: 12pt; }
}
