/**
 * Heritage Shop — design system.
 *
 * Everything resolves against the CSS custom properties printed by
 * inc/design-tokens.php, so a colourway switch repaints the whole site
 * including pages built with Elementor Free widgets.
 */

/* ---------------------------------------------------------------- 1. reset */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: #fff;
	color: var(--hs-body);
	font-family: var(--hs-font-body);
	font-size: 16px;
	line-height: 1.7;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img,
svg,
video {
	max-width: 100%;
	height: auto;
	display: block;
}

figure {
	margin: 0;
}

/* ---------------------------------------------------------- 2. typography */
h1, h2, h3, h4, h5, h6 {
	margin: 0 0 .6em;
	color: var(--hs-ink);
	font-family: var(--hs-font-head);
	font-weight: 600;
	line-height: 1.2;
	letter-spacing: -.01em;
}

h1 { font-size: clamp(2rem, 4vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.35rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }
h6 { font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; }

p { margin: 0 0 1.25em; }

a {
	color: var(--hs-brand);
	text-decoration: none;
	transition: color .18s ease, opacity .18s ease;
}

a:hover,
a:focus { color: var(--hs-accent); }

blockquote {
	margin: 2em 0;
	padding: 1.25em 1.75em;
	border-left: 3px solid var(--hs-accent);
	background: var(--hs-surface);
	color: var(--hs-ink);
	font-size: 1.075rem;
}

code, pre {
	font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
	font-size: .9em;
	background: var(--hs-surface-2);
	border-radius: var(--hs-radius);
}

code { padding: .15em .4em; }
pre { padding: 1.25em; overflow: auto; }

hr {
	border: 0;
	border-top: 1px solid var(--hs-line);
	margin: 2.5em 0;
}

/* ------------------------------------------------------------- 3. layout */
.hs-container {
	width: 100%;
	max-width: var(--hs-container);
	margin-inline: auto;
	padding-inline: 24px;
}

.hs-container--narrow { max-width: 820px; }

.hs-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 56px;
	padding-block: 56px;
}

@media (min-width: 1024px) {
	.hs-layout:has(.hs-sidebar) {
		grid-template-columns: minmax(0, 1fr) 320px;
	}
}

.hs-main--full { padding: 0; }

.hs-section { padding-block: clamp(48px, 7vw, 96px); }
.hs-section--tight { padding-block: 32px; }

.hs-grid {
	display: grid;
	gap: var(--hs-gap);
	grid-template-columns: repeat(var(--hs-cols, 1), minmax(0, 1fr));
}

.hs-grid--cols-2 { --hs-cols: 2; }
.hs-grid--cols-3 { --hs-cols: 2; }
.hs-grid--cols-4 { --hs-cols: 2; }
.hs-grid--cols-5 { --hs-cols: 2; }

@media (min-width: 700px) {
	.hs-grid--cols-3 { --hs-cols: 3; }
	.hs-grid--cols-4 { --hs-cols: 3; }
	.hs-grid--cols-5 { --hs-cols: 3; }
}

@media (min-width: 1024px) {
	.hs-grid--cols-4 { --hs-cols: 4; }
	.hs-grid--cols-5 { --hs-cols: 5; }
}

.hs-section__head {
	max-width: 680px;
	margin: 0 auto clamp(28px, 4vw, 48px);
	text-align: center;
}

.hs-section__title { margin-bottom: .35em; }
.hs-section__sub { color: var(--hs-muted); margin: 0; }
.hs-section__foot { margin-top: 40px; text-align: center; }

.hs-eyebrow {
	display: inline-block;
	margin-bottom: 12px;
	color: var(--hs-accent);
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.hs-skip-link:focus {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 999;
	width: auto;
	height: auto;
	clip: auto;
	padding: 12px 20px;
	background: var(--hs-brand);
	color: #fff;
}

/* ------------------------------------------------------------ 4. controls */
.hs-btn,
.wp-block-button__link,
button,
input[type="submit"],
input[type="button"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .55em;
	padding: 14px 28px;
	border: 1px solid transparent;
	border-radius: var(--hs-radius);
	background: var(--hs-brand);
	color: #fff;
	font-family: inherit;
	font-size: .875rem;
	font-weight: 500;
	letter-spacing: .06em;
	text-transform: uppercase;
	line-height: 1;
	cursor: pointer;
	transition: background .2s ease, color .2s ease, border-color .2s ease, transform .12s ease;
}

.hs-btn:hover,
.hs-btn:focus,
button:hover,
input[type="submit"]:hover {
	background: var(--hs-accent);
	color: #fff;
	transform: translateY(-1px);
}

.hs-btn--ghost {
	background: transparent;
	border-color: var(--hs-line-strong);
	color: var(--hs-ink);
}

.hs-btn--ghost:hover {
	background: var(--hs-brand);
	border-color: var(--hs-brand);
	color: #fff;
}

.hs-btn--accent { background: var(--hs-accent); }
.hs-btn--block { width: 100%; }

.hs-link-arrow {
	display: inline-flex;
	align-items: center;
	gap: .4em;
	font-size: .875rem;
	font-weight: 500;
	letter-spacing: .04em;
}

.hs-link-arrow .hs-icon { transition: transform .2s ease; }
.hs-link-arrow:hover .hs-icon { transform: translateX(4px); }

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="date"],
select,
textarea {
	width: 100%;
	padding: 13px 16px;
	border: 1px solid var(--hs-line-strong);
	border-radius: var(--hs-radius);
	background: #fff;
	color: var(--hs-ink);
	font-family: inherit;
	font-size: .95rem;
	line-height: 1.4;
	transition: border-color .18s ease, box-shadow .18s ease;
}

input:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: var(--hs-brand);
	box-shadow: 0 0 0 3px rgb(20 36 61 / 8%);
}

::placeholder { color: var(--hs-muted); opacity: .8; }

.hs-search-form,
.search-form {
	display: flex;
	gap: 10px;
	align-items: stretch;
}

.hs-search-form input[type="search"],
.search-form input[type="search"] { flex: 1 1 auto; }

/* -------------------------------------------------------------- 5. header */
.hs-announcement {
	background: var(--hs-brand);
	color: #fff;
	font-size: .8125rem;
	letter-spacing: .04em;
	text-align: center;
}

.hs-announcement__inner { padding-block: 10px; }

.hs-header {
	position: relative;
	z-index: 60;
	background: #fff;
	border-bottom: 1px solid var(--hs-line);
}

.hs-header[data-hs-sticky].is-stuck {
	position: sticky;
	top: 0;
	box-shadow: 0 6px 24px rgb(0 0 0 / 6%);
}

.hs-header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 16px;
	min-height: 76px;
}

.hs-brand { grid-column: 2; text-align: center; }
.hs-brand__link { display: inline-block; color: var(--hs-ink); }
.hs-brand__name {
	display: block;
	font-family: var(--hs-font-head);
	font-size: 1.35rem;
	font-weight: 600;
	letter-spacing: .12em;
	text-transform: uppercase;
	line-height: 1.1;
}

.hs-brand__tagline {
	display: block;
	margin-top: 2px;
	color: var(--hs-muted);
	font-size: .6875rem;
	letter-spacing: .18em;
	text-transform: uppercase;
}

.custom-logo { margin-inline: auto; }

.hs-nav { grid-column: 1 / -1; order: 3; }

.hs-nav__toggle {
	grid-column: 1;
	display: inline-flex;
	padding: 10px;
	background: transparent;
	color: var(--hs-ink);
	border: 0;
}

.hs-nav__toggle:hover { background: transparent; color: var(--hs-accent); }

.hs-nav__toggle-bars,
.hs-nav__toggle-bars::before,
.hs-nav__toggle-bars::after {
	display: block;
	width: 22px;
	height: 1.5px;
	background: currentColor;
	transition: transform .2s ease, opacity .2s ease;
}

.hs-nav__toggle-bars::before,
.hs-nav__toggle-bars::after { content: ""; position: relative; }
.hs-nav__toggle-bars::before { top: -7px; }
.hs-nav__toggle-bars::after { top: 5.5px; }

.hs-menu {
	display: none;
	margin: 0;
	padding: 0 0 20px;
	list-style: none;
}

.hs-menu.is-open { display: block; }

.hs-menu > li > a {
	display: block;
	padding: 12px 0;
	border-bottom: 1px solid var(--hs-line);
	color: var(--hs-ink);
	font-size: .8125rem;
	font-weight: 500;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.hs-menu .sub-menu {
	margin: 0;
	padding: 0 0 8px 16px;
	list-style: none;
}

.hs-menu .sub-menu a {
	color: var(--hs-body);
	font-size: .875rem;
	letter-spacing: .02em;
	text-transform: none;
}

.hs-actions {
	grid-column: 3;
	display: flex;
	align-items: center;
	gap: 4px;
}

.hs-actions__item {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 10px;
	background: transparent;
	border: 0;
	color: var(--hs-ink);
	text-transform: none;
	letter-spacing: 0;
	cursor: pointer;
}

.hs-actions__item:hover { background: transparent; color: var(--hs-accent); transform: none; }

.hs-actions__count {
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	border-radius: 9px;
	background: var(--hs-accent);
	color: #fff;
	font-size: .6875rem;
	font-weight: 600;
	line-height: 18px;
	text-align: center;
}

.hs-search-panel {
	position: absolute;
	inset-inline: 0;
	top: 100%;
	padding-block: 20px;
	background: #fff;
	border-bottom: 1px solid var(--hs-line);
	box-shadow: 0 12px 32px rgb(0 0 0 / 7%);
}

.hs-search-panel__inner { display: flex; align-items: center; gap: 12px; }
.hs-search-panel .search-form { flex: 1 1 auto; }
.hs-search-panel__close { padding: 10px; background: transparent; color: var(--hs-ink); border: 0; }
.hs-search-panel__close:hover { background: transparent; color: var(--hs-accent); }

@media (min-width: 1024px) {
	.hs-header__inner { grid-template-columns: auto 1fr auto; min-height: 88px; }
	.hs-brand { grid-column: 1; text-align: left; margin-right: 24px; }
	.hs-nav { grid-column: 2; order: initial; }
	.hs-nav__toggle { display: none; }
	.hs-menu { display: flex; gap: 32px; padding: 0; justify-content: center; }
	.hs-menu > li { position: relative; }
	.hs-menu > li > a {
		padding: 12px 0;
		border-bottom: 0;
		position: relative;
	}
	.hs-menu > li > a::after {
		content: "";
		position: absolute;
		left: 0;
		bottom: 6px;
		width: 100%;
		height: 1px;
		background: var(--hs-accent);
		transform: scaleX(0);
		transform-origin: left;
		transition: transform .22s ease;
	}
	.hs-menu > li:hover > a::after,
	.hs-menu > li.current-menu-item > a::after { transform: scaleX(1); }
	.hs-menu .sub-menu {
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%) translateY(8px);
		min-width: 220px;
		padding: 12px 0;
		background: #fff;
		border: 1px solid var(--hs-line);
		box-shadow: 0 18px 40px rgb(0 0 0 / 8%);
		opacity: 0;
		visibility: hidden;
		transition: opacity .18s ease, transform .18s ease, visibility .18s;
		z-index: 70;
	}
	.hs-menu > li:hover .sub-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
	.hs-menu .sub-menu a { display: block; padding: 8px 20px; }
	.hs-menu .sub-menu a:hover { background: var(--hs-surface); }
}

/* ------------------------------------------------------------ 6. patterns */
.hs-tartan {
	background-image: var(--hs-pattern);
	background-size: 260px auto;
	background-position: center;
}

.hs-tartan--strip { height: 14px; }
.hs-tartan--band { height: 64px; }
.hs-tartan--full { height: 220px; position: relative; }

.hs-tartan--full::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgb(255 255 255 / 15%), rgb(0 0 0 / 15%));
}

/* --------------------------------------------------------------- 7. trust */
.hs-trust {
	display: grid;
	gap: 12px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.hs-trust__item {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--hs-body);
	font-size: .875rem;
}

.hs-trust__item .hs-icon { flex: 0 0 auto; color: var(--hs-accent); }

.hs-trust--grid { grid-template-columns: 1fr; }
.hs-trust--grid .hs-trust__item {
	flex-direction: column;
	align-items: center;
	gap: 12px;
	padding: 26px 18px;
	background: var(--hs-surface);
	border: 1px solid var(--hs-line);
	border-radius: var(--hs-radius);
	text-align: center;
}

.hs-trust--grid .hs-icon { width: 26px; height: 26px; }

@media (min-width: 700px) {
	.hs-trust--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.hs-trust--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* -------------------------------------------------------------- 8. cards */
.hs-cards { display: grid; gap: 40px; grid-template-columns: 1fr; }

@media (min-width: 700px) { .hs-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .hs-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.hs-card__media {
	display: block;
	overflow: hidden;
	border-radius: var(--hs-radius);
	background: var(--hs-surface-2);
}

.hs-card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .5s ease; }
.hs-card:hover .hs-card__media img { transform: scale(1.04); }
.hs-card__body { padding-top: 20px; }
.hs-card__title { font-size: 1.2rem; margin-bottom: .4em; }
.hs-card__excerpt { color: var(--hs-muted); font-size: .9375rem; }

.hs-entry__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	color: var(--hs-muted);
	font-size: .75rem;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.hs-entry__sep { opacity: .5; }

.hs-page-head { padding-block: 12px 36px; text-align: center; }
.hs-page-title { margin-bottom: .3em; }
.hs-page-desc { color: var(--hs-muted); }

.hs-empty { text-align: center; padding-block: 60px; }
.hs-empty .search-form { max-width: 420px; margin: 24px auto 0; }

.hs-notice {
	padding: 16px 20px;
	background: var(--hs-surface);
	border-left: 3px solid var(--hs-gold);
	color: var(--hs-body);
}

/* ------------------------------------------------------------ 9. collections */
.hs-collections { display: grid; gap: 28px; grid-template-columns: repeat(var(--hs-cols, 1), minmax(0, 1fr)); }
.hs-collections.hs-grid--cols-3 { --hs-cols: 2; }

/**
 * Auto-fit collections: the tile count depends on how many categories a store
 * actually has, so a fixed column count leaves a hole in the last row (a
 * five-category shop in a three-column grid). Auto-fit fills the row whatever
 * the count.
 */
.hs-collections--auto { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }

@media (max-width: 699px) {
	.hs-collections--auto { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 700px) {
	.hs-collections.hs-grid--cols-3 { --hs-cols: 3; }
	.hs-collections.hs-grid--cols-4 { --hs-cols: 4; }
}

.hs-collection {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: var(--hs-radius);
	background: var(--hs-brand);
	color: #fff;
}

.hs-collection__media,
.hs-collection__media img { display: block; width: 100%; width: 100%; }

.hs-collections--4-5 .hs-collection__media img { aspect-ratio: 4 / 5; object-fit: cover; }
.hs-collections--3-4 .hs-collection__media img { aspect-ratio: 3 / 4; object-fit: cover; }
.hs-collections--1-1 .hs-collection__media img { aspect-ratio: 1 / 1; object-fit: cover; }

.hs-collection__media { opacity: .92; transition: transform .5s ease, opacity .3s ease; }
.hs-collection:hover .hs-collection__media { transform: scale(1.03); opacity: .8; }

.hs-collection__body {
	position: absolute;
	inset-inline: 0;
	bottom: 0;
	padding: 26px 24px;
	background: linear-gradient(180deg, transparent, rgb(0 0 0 / 62%));
	color: #fff;
}

.hs-collection__name { display: block; font-size: 1.15rem; font-weight: 600; }
.hs-collection__count { display: block; color: rgb(255 255 255 / 75%); font-size: .8125rem; }
.hs-collection:hover { color: #fff; }

/* --------------------------------------------------------- 9b. homepage */
.hs-section--alt { background: var(--hs-surface); }

.hs-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 560px;
	overflow: hidden;
	background: var(--hs-brand);
}

.hs-hero__media { position: absolute; inset: 0; }
.hs-hero__media img { width: 100%; height: 100%; object-fit: cover; }

.hs-hero__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgb(8 16 26 / 80%) 0%, rgb(8 16 26 / 52%) 52%, rgb(8 16 26 / 18%) 100%);
}

.hs-hero__inner {
	position: relative;
	z-index: 2;
	max-width: 660px;
	padding-block: clamp(72px, 10vw, 128px);
}

.hs-hero__title { margin-bottom: .3em; color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); }
.hs-hero__text { color: rgb(255 255 255 / 84%); font-size: 1.0625rem; max-width: 46ch; }
.hs-hero .hs-eyebrow { color: var(--hs-gold); }
.hs-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hs-hero .hs-btn--ghost { border-color: rgb(255 255 255 / 45%); color: #fff; }
.hs-hero .hs-btn--ghost:hover { background: #fff; border-color: #fff; color: var(--hs-brand); }

/* Hero background variants, used by the Hero Banner widget. */
.hs-hero--tartan { background-image: var(--hs-pattern); background-size: 260px auto; }
.hs-hero--tartan .hs-hero__scrim {
	background: linear-gradient(90deg, rgb(8 16 26 / 88%) 0%, rgb(8 16 26 / 66%) 55%, rgb(8 16 26 / 42%) 100%);
}

.hs-hero--center .hs-hero__inner { margin-inline: auto; text-align: center; }
.hs-hero--center .hs-hero__text { margin-inline: auto; }
.hs-hero--center .hs-hero__actions { justify-content: center; }

.hs-split { display: grid; gap: 48px; align-items: center; }

@media (min-width: 900px) {
	.hs-split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; }
}

.hs-split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--hs-radius); }
.hs-split__body p { color: var(--hs-body); }

.hs-quotes {
	display: grid;
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (min-width: 700px) {
	.hs-quotes { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.hs-quote {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 32px 30px;
	background: #fff;
	border: 1px solid var(--hs-line);
	border-radius: var(--hs-radius);
}

.hs-quote__stars { color: var(--hs-gold); font-size: .875rem; letter-spacing: .18em; }
.hs-quote__text { flex: 1 1 auto; margin: 0; color: var(--hs-ink); font-size: 1rem; }
.hs-quote__author {
	color: var(--hs-muted);
	font-size: .75rem;
	font-weight: 500;
	letter-spacing: .12em;
	text-transform: uppercase;
}

/* ------------------------------------------------------------- 10. footer */
.hs-footer {
	background: var(--hs-surface);
	border-top: 1px solid var(--hs-line);
	padding-block: clamp(48px, 6vw, 80px) 28px;
}

.hs-footer__top { display: grid; gap: 48px; }

@media (min-width: 1024px) {
	.hs-footer__top { grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: 72px; }
}

.hs-footer__blurb { margin-top: 16px; color: var(--hs-muted); max-width: 42ch; }
.hs-brand--footer .hs-brand__name { font-size: 1.15rem; }

/**
 * Footer newsletter slot.
 *
 * The theme ships no subscribe form of its own — a form that silently does
 * nothing on submit is worse than no form. Buyers drop their provider's widget
 * into the Footer — Newsletter area, so this block only has to make whatever
 * lands there look like it belongs: the fallback link, and sane defaults for
 * the predictable parts of third-party form markup.
 */
.hs-newsletter-area { margin-top: 26px; max-width: 440px; }

.hs-newsletter__label {
	display: block;
	margin-bottom: 10px;
	color: var(--hs-ink);
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.hs-newsletter__note { margin: 10px 0 0; color: var(--hs-muted); font-size: .75rem; }
.hs-newsletter__mailto { display: inline-block; margin-top: 14px; }

.hs-newsletter-area .widget-title {
	margin: 0 0 10px;
	color: var(--hs-ink);
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.hs-newsletter-area input[type="email"],
.hs-newsletter-area input[type="text"] {
	width: 100%;
	padding: 11px 14px;
	border: 1px solid var(--hs-line-strong);
	border-radius: var(--hs-radius);
	background: #fff;
	color: var(--hs-ink);
	font: inherit;
	font-size: .875rem;
}

.hs-newsletter-area input[type="submit"],
.hs-newsletter-area button {
	margin-top: 12px;
	padding: 12px 22px;
	border: 0;
	border-radius: var(--hs-radius);
	background: var(--hs-brand);
	color: #fff;
	font: inherit;
	font-size: .8125rem;
	font-weight: 600;
	letter-spacing: .08em;
	text-transform: uppercase;
	cursor: pointer;
}

.hs-newsletter-area input[type="submit"]:hover,
.hs-newsletter-area button:hover { background: var(--hs-accent); }

.hs-footer__columns { display: grid; gap: 36px; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }

.hs-footer__title {
	margin-bottom: 14px;
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.hs-footer__links { margin: 0; padding: 0; list-style: none; }
.hs-footer__links li { margin-bottom: 8px; }
.hs-footer__links a { color: var(--hs-body); font-size: .9375rem; }
.hs-footer__links a:hover { color: var(--hs-accent); }

.hs-footer__bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 56px;
	padding-top: 24px;
	border-top: 1px solid var(--hs-line);
}

.hs-footer__legal,
.hs-footer__payments {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--hs-muted);
	font-size: .8125rem;
}

.hs-footer__payments li {
	padding: 5px 10px;
	border: 1px solid var(--hs-line-strong);
	border-radius: var(--hs-radius);
	background: #fff;
	font-size: .6875rem;
	letter-spacing: .08em;
	text-transform: uppercase;
}

/* ------------------------------------------------- 11. elementor harmony */
.hs-elementor .elementor-section.elementor-section-boxed > .elementor-container {
	max-width: var(--hs-container);
}

.hs-elementor .elementor-widget-heading .elementor-heading-title { color: var(--hs-ink); }

.hs-elementor .elementor-button {
	border-radius: var(--hs-radius);
	font-family: var(--hs-font-body);
	font-size: .875rem;
	font-weight: 500;
	letter-spacing: .06em;
	text-transform: uppercase;
	padding: 15px 30px;
}

.hs-elementor .elementor-widget-text-editor { color: var(--hs-body); }

.hs-elementor .elementor-icon-list-item .elementor-icon-list-text { color: var(--hs-body); }

.elementor-widget-container .hs-section { padding-block: 0; }

/* --------------------------------------------------- 11b. single & pages */
.hs-article__head { margin-bottom: 32px; }
.hs-article__title { margin-bottom: .35em; }
.hs-article__lede { max-width: 60ch; margin: 0; color: var(--hs-muted); font-size: 1.0625rem; }
.hs-article__media { margin: 0 0 40px; }
.hs-article__media img { width: 100%; border-radius: var(--hs-radius); }
.hs-article__content { max-width: 72ch; }
.hs-article__content > * + * { margin-top: 1.25em; }
.hs-article__content h2 { margin-top: 1.8em; }
.hs-article__content h3 { margin-top: 1.6em; }
.hs-article__content img { border-radius: var(--hs-radius); }
.hs-article__content ul,
.hs-article__content ol { padding-left: 1.5em; }
.hs-article__content li + li { margin-top: .4em; }
.hs-article__edit a { font-size: .8125rem; letter-spacing: .06em; }

.hs-article__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 40px 0 0;
	padding: 0;
	list-style: none;
}

.hs-article__tags a {
	display: inline-block;
	padding: 6px 14px;
	border: 1px solid var(--hs-line-strong);
	border-radius: 999px;
	color: var(--hs-body);
	font-size: .6875rem;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.hs-article__tags a:hover { background: var(--hs-brand); border-color: var(--hs-brand); color: #fff; }

.hs-post-nav {
	display: grid;
	gap: 16px;
	margin: 56px 0;
	padding-top: 32px;
	border-top: 1px solid var(--hs-line);
	clear: both;
}

@media (min-width: 700px) {
	.hs-post-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.hs-post-nav .nav-next { text-align: right; }
}

.hs-post-nav a {
	display: block;
	padding: 20px 24px;
	border: 1px solid var(--hs-line);
	border-radius: var(--hs-radius);
	background: var(--hs-surface);
}

.hs-post-nav a:hover { border-color: var(--hs-line-strong); background: #fff; }

.hs-post-nav .meta-nav {
	display: block;
	margin-bottom: 8px;
	color: var(--hs-muted);
	font-size: .6875rem;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.hs-post-nav .post-title { color: var(--hs-ink); font-weight: 500; line-height: 1.35; }

.hs-comments { margin-top: 64px; }
.hs-comment-area__title { font-size: 1.15rem; }
.hs-comment-area__notes { color: var(--hs-muted); font-size: .8125rem; }
.hs-comment-list,
.hs-comment-area .comment-list { margin: 0; padding: 0; list-style: none; }
.hs-comment-area .comment-list ol,
.hs-comment-area .children { padding-left: 0; list-style: none; }
.hs-comment-area .comment-body { padding: 22px 0; border-bottom: 1px solid var(--hs-line); }
.hs-comment-area .comment-meta { margin-bottom: 8px; font-size: .8125rem; }
.hs-comment-area .comment-author img { border-radius: 50%; margin-right: 10px; }
.hs-comment-area .reply a { font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.hs-comment-form p { margin-bottom: 18px; }
.hs-comment-form label { display: block; margin-bottom: 6px; color: var(--hs-ink); font-size: .8125rem; font-weight: 500; }

/* Tables inside content, e.g. the size guide. */
.hs-article__content table,
.hs-entry-content table,
.elementor-widget-text-editor table,
.hs-table {
	width: 100%;
	margin: 1.5em 0;
	border: 1px solid var(--hs-line);
	border-collapse: collapse;
	font-size: .9375rem;
}

.hs-article__content th,
.hs-article__content td,
.hs-entry-content th,
.hs-entry-content td,
.elementor-widget-text-editor th,
.elementor-widget-text-editor td,
.hs-table th,
.hs-table td {
	padding: 14px 16px;
	border-bottom: 1px solid var(--hs-line);
	text-align: left;
}

.hs-article__content thead th,
.hs-entry-content thead th,
.elementor-widget-text-editor thead th,
.hs-table thead th {
	background: var(--hs-surface);
	color: var(--hs-ink);
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.hs-article__content tbody tr:hover td,
.hs-entry-content tbody tr:hover td,
.hs-table tbody tr:hover td { background: var(--hs-surface); }

.hs-page-head--start { text-align: left; }
.hs-search-form--page { max-width: 560px; margin-bottom: 48px; }
.hs-section__title--left { text-align: left; margin-bottom: 28px; }

.hs-404 { padding-block: clamp(64px, 9vw, 132px); text-align: center; }
.hs-404__code {
	display: block;
	color: var(--hs-line-strong);
	font-size: clamp(3.5rem, 11vw, 7.5rem);
	font-weight: 600;
	line-height: 1;
	letter-spacing: -.04em;
}

.hs-404__title { margin: .3em 0 .4em; }
.hs-404__text { max-width: 52ch; margin-inline: auto; color: var(--hs-muted); }
.hs-404 .search-form { max-width: 440px; margin: 32px auto 0; }
.hs-404__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 28px; }

/* --------------------------------------------------------- 12. utilities */
.has-text-align-center { text-align: center; }
.hs-text-center { text-align: center; }
.hs-mt-0 { margin-top: 0; }
.hs-mb-0 { margin-bottom: 0; }
.hs-hidden { display: none !important; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: .001ms !important;
		transition-duration: .001ms !important;
		scroll-behavior: auto !important;
	}
}
