:root {
	--hmp-ink: #172027;
	--hmp-deep: #0b2b28;
	--hmp-green: #15584f;
	--hmp-green-2: #247668;
	--hmp-gold: #c7952e;
	--hmp-gold-2: #f1cf78;
	--hmp-cream: #fff8e7;
	--hmp-paper: #f6efdf;
	--hmp-white: #ffffff;
	--hmp-muted: #5f6b72;
	--hmp-border: rgba(23, 32, 39, 0.14);
	--hmp-hero-overlay-opacity: 0.55;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	margin: 0;
	background: var(--hmp-white);
	color: var(--hmp-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 17px;
	line-height: 1.65;
	overflow-x: hidden;
}

body.admin-bar .hmp-site-header {
	top: 32px;
}

.hmp-announcement {
	background: var(--hmp-deep);
	color: var(--hmp-cream);
	font-size: 15px;
	font-weight: 800;
}

.hmp-announcement--gold {
	background: var(--hmp-gold);
	color: #17150d;
}

.hmp-announcement--burgundy {
	background: var(--hmp-burgundy);
	color: #fff8e7;
}

.hmp-announcement__inner {
	display: flex;
	width: min(1160px, calc(100% - 36px));
	min-height: 44px;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-inline: auto;
	padding-block: 8px;
	text-align: center;
}

.hmp-announcement p {
	margin: 0;
}

.hmp-announcement a {
	color: inherit;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

a {
	color: var(--hmp-green);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
	outline: 3px solid var(--hmp-gold);
	outline-offset: 3px;
}

img {
	max-width: 100%;
	height: auto;
}

.screen-reader-text,
.hmp-skip-link {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
}

.hmp-skip-link:focus {
	z-index: 9999;
	top: 14px;
	left: 14px;
	width: auto;
	height: auto;
	min-height: 44px;
	border: 2px solid var(--hmp-gold);
	border-radius: 4px;
	padding: 11px 16px;
	clip: auto;
	background: var(--hmp-deep);
	color: #fff4cf;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-decoration: none;
	text-transform: uppercase;
}

.hmp-container,
.hmp-header-inner,
.hmp-footer-inner,
.hmp-footer-bottom,
.hmp-section {
	width: min(1160px, calc(100% - 36px));
	margin-inline: auto;
}

.hmp-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid rgba(199, 149, 46, 0.38);
	background: rgba(255, 248, 231, 0.97);
	backdrop-filter: blur(16px);
	box-shadow: 0 10px 24px rgba(23, 32, 39, 0.08);
}

.hmp-header-static .hmp-site-header {
	position: relative;
	top: auto;
}

.hmp-header-inner {
	display: flex;
	min-height: 82px;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
}

.hmp-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--hmp-green);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(20px, 2.2vw, 30px);
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
}

.hmp-brand img,
.hmp-brand .custom-logo {
	width: clamp(72px, 9vw, 118px);
	height: auto;
}

.hmp-logo-small .hmp-brand img,
.hmp-logo-small .hmp-brand .custom-logo {
	width: clamp(56px, 7vw, 86px);
}

.hmp-logo-large .hmp-brand img,
.hmp-logo-large .hmp-brand .custom-logo {
	width: clamp(96px, 12vw, 158px);
}

.hmp-primary-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 2px;
	align-items: center;
	justify-content: flex-end;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hmp-primary-menu li {
	position: relative;
}

.hmp-primary-menu a {
	position: relative;
	display: block;
	padding: 10px 11px;
	color: var(--hmp-deep);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.03em;
	text-decoration: none;
	text-transform: uppercase;
}

.hmp-primary-menu a:hover,
.hmp-primary-menu a:focus {
	color: var(--hmp-gold);
}

.hmp-primary-menu .current-menu-item > a,
.hmp-primary-menu .current-menu-ancestor > a,
.hmp-primary-menu a[aria-current="page"] {
	color: var(--hmp-burgundy);
}

.hmp-primary-menu .current-menu-item > a::after,
.hmp-primary-menu .current-menu-ancestor > a::after,
.hmp-primary-menu a[aria-current="page"]::after {
	content: "";
	position: absolute;
	right: 11px;
	bottom: 4px;
	left: 11px;
	height: 3px;
	background: var(--hmp-gold);
}

.hmp-primary-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 230px;
	display: none;
	margin: 0;
	padding: 8px;
	list-style: none;
	background: var(--hmp-cream);
	box-shadow: 0 18px 34px rgba(23, 32, 39, 0.18);
}

.hmp-primary-menu li:hover > .sub-menu,
.hmp-primary-menu li:focus-within > .sub-menu {
	display: block;
}

.hmp-menu-toggle {
	display: none;
	border: 1px solid var(--hmp-gold);
	background: var(--hmp-cream);
	color: var(--hmp-deep);
	padding: 9px 13px;
	font-weight: 900;
}

.hmp-main {
	min-height: 55vh;
}

.hmp-text-large {
	font-size: 18.5px;
}

.hmp-text-xlarge {
	font-size: 20px;
}

.hmp-archive-compact .hmp-post-grid {
	grid-template-columns: 1fr;
}

.hmp-hero-compact .hmp-home-hero {
	min-height: clamp(460px, 58vh, 620px);
}

.hmp-hero-tall .hmp-home-hero {
	min-height: clamp(680px, 82vh, 880px);
}

.hmp-high-contrast {
	--hmp-ink: #07110f;
	--hmp-muted: #293832;
	--hmp-border: rgba(7, 17, 15, 0.28);
}

.hmp-underline-links a:not(.hmp-button):not(.hmp-donate-button):not(.hmp-footer-button) {
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.hmp-reduce-motion *,
.hmp-reduce-motion *::before,
.hmp-reduce-motion *::after {
	animation-duration: 0.001ms !important;
	scroll-behavior: auto !important;
	transition-duration: 0.001ms !important;
}

.hmp-next-step {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
	gap: clamp(22px, 4vw, 44px);
	align-items: center;
	margin-top: clamp(34px, 6vw, 72px);
	margin-bottom: clamp(34px, 6vw, 72px);
	border: 3px solid rgba(199, 149, 46, 0.5);
	background:
		linear-gradient(135deg, rgba(11, 43, 40, 0.98), rgba(21, 88, 79, 0.94)),
		var(--hmp-deep);
	color: #fff;
	padding: clamp(28px, 5vw, 54px);
}

.hmp-next-step h2 {
	max-width: 760px;
	margin: 0;
	color: #fff4cf;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(34px, 5vw, 58px);
	line-height: 1.05;
	text-wrap: balance;
}

.hmp-next-step p:not(.hmp-entry-kicker) {
	max-width: 720px;
	margin: 14px 0 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: clamp(16px, 1.5vw, 19px);
	line-height: 1.55;
}

.hmp-next-step__actions {
	display: grid;
	gap: 12px;
}

.hmp-next-step__button {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	border: 2px solid rgba(255, 244, 207, 0.46);
	border-radius: 4px;
	color: #fff4cf;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.06em;
	padding: 13px 16px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.hmp-next-step__button:hover,
.hmp-next-step__button:focus-visible {
	border-color: #fff4cf;
	background: rgba(255, 244, 207, 0.1);
	color: #fff4cf;
	transform: translateY(-1px);
}

.hmp-next-step__button--primary {
	border-color: var(--hmp-gold);
	background: linear-gradient(180deg, #f5d779, #c7952e);
	color: #162a26;
}

.hmp-next-step__button--primary:hover,
.hmp-next-step__button--primary:focus-visible {
	background: #fff4cf;
	color: #162a26;
}

.hmp-hero {
	position: relative;
	min-height: clamp(560px, calc(100vh - 82px), 760px);
	display: grid;
	align-items: center;
	overflow: hidden;
	background: var(--hmp-deep);
	isolation: isolate;
}

.hmp-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: linear-gradient(90deg, rgba(11, 43, 40, 0.96), rgba(11, 43, 40, 0.76) 50%, rgba(11, 43, 40, 0.15));
}

.hmp-hero__image {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.92) contrast(1.05);
}

.hmp-hero__content {
	width: min(1160px, calc(100% - 36px));
	margin: 0 auto;
	color: #fff;
}

.hmp-hero__mark {
	width: min(170px, 42vw);
	margin-bottom: 22px;
	filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.32));
}

.hmp-hero h1,
.hmp-page-hero h1,
.hmp-single-hero h1,
.hmp-archive-header h1,
.hmp-empty h1 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	line-height: 1.05;
	letter-spacing: 0;
	text-wrap: balance;
}

.hmp-hero h1 {
	max-width: 790px;
	color: #fff4cf;
	font-size: clamp(44px, 7vw, 82px);
	text-shadow: 0 5px 0 rgba(0, 0, 0, 0.16);
}

.hmp-hero p {
	max-width: 680px;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.9);
	font-size: clamp(18px, 1.75vw, 23px);
}

.hmp-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}

.hmp-button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	border: 2px solid transparent;
	padding: 13px 22px;
	font-weight: 900;
	line-height: 1.1;
	text-align: center;
	text-decoration: none;
}

.hmp-button--gold {
	background: linear-gradient(180deg, var(--hmp-gold-2), var(--hmp-gold));
	color: #17150d;
	box-shadow: 0 10px 22px rgba(0, 0, 0, 0.24);
}

.hmp-button--light {
	background: var(--hmp-cream);
	color: var(--hmp-deep);
}

.hmp-button--outline {
	border-color: rgba(255, 244, 207, 0.72);
	color: #fff4cf;
}

.hmp-proof {
	width: min(980px, calc(100% - 36px));
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin: -56px auto 0;
	position: relative;
	z-index: 4;
	border: 2px solid rgba(241, 207, 120, 0.65);
	background: rgba(255, 248, 231, 0.98);
	box-shadow: 0 24px 48px rgba(23, 32, 39, 0.18);
}

.hmp-proof div {
	padding: 22px;
	text-align: center;
}

.hmp-proof div + div {
	border-left: 1px solid rgba(199, 149, 46, 0.34);
}

.hmp-proof strong {
	display: block;
	color: var(--hmp-green);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(34px, 5vw, 52px);
	line-height: 1;
}

.hmp-proof span {
	display: block;
	margin-top: 8px;
	color: var(--hmp-muted);
	font-size: 0.82em;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hmp-section {
	margin-top: clamp(72px, 10vw, 118px);
	margin-bottom: clamp(72px, 10vw, 118px);
}

.hmp-section-heading {
	max-width: 780px;
	margin-bottom: 26px;
}

.hmp-section-heading h2,
.hmp-district h2,
.hmp-support-cta h2,
.hmp-treasure-band h2 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(36px, 5vw, 64px);
	line-height: 1.05;
	text-wrap: balance;
}

.hmp-section-heading p,
.hmp-district p,
.hmp-support-cta p,
.hmp-treasure-band p {
	margin: 12px 0 0;
	color: var(--hmp-muted);
	font-size: 1.08em;
}

.hmp-card-grid {
	display: grid;
	gap: 16px;
}

.hmp-card-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hmp-path-card,
.hmp-story-card {
	background: var(--hmp-paper);
	box-shadow: 0 14px 34px rgba(23, 32, 39, 0.08);
}

.hmp-path-card {
	min-height: 300px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	padding: clamp(22px, 3vw, 32px);
	border-top: 5px solid var(--hmp-gold);
}

.hmp-path-card span {
	color: var(--hmp-gold);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 34px;
	font-weight: 800;
	line-height: 1;
}

.hmp-path-card h3,
.hmp-story-card h3 {
	margin: 20px 0 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(26px, 3vw, 36px);
	line-height: 1.1;
}

.hmp-path-card p,
.hmp-story-card p {
	color: var(--hmp-muted);
}

.hmp-path-card a,
.hmp-story-card a,
.hmp-link-list a {
	color: var(--hmp-green);
	font-weight: 900;
	text-decoration: none;
}

.hmp-path-card a {
	border-bottom: 2px solid var(--hmp-gold);
}

.hmp-treasure-band {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(250px, 410px);
	gap: clamp(24px, 5vw, 62px);
	align-items: center;
	padding: clamp(34px, 7vw, 76px) max(24px, calc((100vw - 1160px) / 2));
	background: linear-gradient(135deg, rgba(11, 43, 40, 0.98), rgba(21, 88, 79, 0.92));
	border-block: 5px solid var(--hmp-gold);
	color: #fff;
}

.hmp-treasure-band h2 {
	color: #fff4cf;
}

.hmp-treasure-band p {
	color: rgba(255, 255, 255, 0.86);
}

.hmp-treasure-band img {
	width: 100%;
	max-height: 420px;
	object-fit: contain;
	filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.36));
}

.hmp-district {
	display: grid;
	grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
	gap: clamp(24px, 5vw, 58px);
	align-items: center;
}

.hmp-district figure {
	margin: 0;
	border: 1px solid var(--hmp-border);
	box-shadow: 0 16px 38px rgba(23, 32, 39, 0.12);
}

.hmp-link-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
	margin-top: 28px;
}

.hmp-link-list a {
	border: 1px solid rgba(21, 88, 79, 0.22);
	background: #fff;
	padding: 13px 15px;
}

.hmp-story-card {
	display: grid;
	grid-template-rows: auto 1fr;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--hmp-border);
}

.hmp-story-card__image {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: var(--hmp-paper);
}

.hmp-story-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hmp-story-card > div {
	padding: 22px;
}

.hmp-support-cta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 28px;
	align-items: center;
	width: min(1160px, calc(100% - 36px));
	margin: 0 auto;
	padding: clamp(32px, 6vw, 62px);
	background: var(--hmp-paper);
	border-top: 5px solid var(--hmp-gold);
}

.hmp-page-hero,
.hmp-single-hero,
.hmp-archive-header,
.hmp-empty {
	padding: clamp(48px, 8vw, 92px) 0;
	background: var(--hmp-paper);
	border-bottom: 1px solid rgba(199, 149, 46, 0.35);
}

.hmp-entry-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(255, 248, 231, 0.98), rgba(255, 248, 231, 0.88) 46%, rgba(255, 248, 231, 0.24)),
		var(--hmp-paper);
}

.hmp-entry-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -2;
	background-image: var(--hmp-entry-hero-image);
	background-position: center;
	background-size: cover;
	opacity: 0.34;
	filter: saturate(0.88) sepia(0.14);
}

.hmp-entry-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		radial-gradient(circle at 12% 18%, rgba(199, 149, 46, 0.16), transparent 26rem),
		linear-gradient(180deg, rgba(255, 250, 240, 0.72), rgba(246, 239, 223, 0.9));
}

.hmp-entry-kicker,
.hmp-card-meta,
.hmp-rail-kicker {
	margin: 0 0 12px;
	color: var(--hmp-burgundy);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hmp-entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
	color: var(--hmp-deep);
	font-size: 14px;
	font-weight: 850;
	line-height: 1.35;
}

.hmp-entry-meta span {
	display: inline-flex;
	align-items: center;
	min-height: 32px;
	border: 1px solid rgba(21, 88, 79, 0.16);
	background: rgba(255, 250, 240, 0.72);
	padding: 7px 11px;
}

.hmp-entry-meta span::before {
	content: "";
	display: inline-block;
	width: 6px;
	height: 6px;
	margin-right: 9px;
	border-radius: 999px;
	background: var(--hmp-gold);
	box-shadow: 0 0 0 3px rgba(199, 149, 46, 0.16);
}

.hmp-date-note {
	max-width: 620px;
	margin: 12px 0 0;
	color: #56625d;
	font-size: 14px;
	line-height: 1.5;
}

.hmp-page-hero h1,
.hmp-single-hero h1,
.hmp-archive-header h1,
.hmp-empty h1 {
	max-width: 980px;
	font-size: clamp(40px, 7vw, 78px);
	overflow-wrap: break-word;
}

.hmp-breadcrumbs {
	margin: 0 0 18px;
	color: var(--hmp-muted);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
	line-height: 1.35;
	text-transform: uppercase;
}

.hmp-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hmp-breadcrumbs li {
	display: inline-flex;
	gap: 6px;
	align-items: center;
	max-width: min(100%, 54ch);
}

.hmp-breadcrumbs li + li::before {
	content: "/";
	color: rgba(143, 28, 42, 0.62);
}

.hmp-breadcrumbs a,
.hmp-breadcrumbs span {
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.hmp-breadcrumbs a {
	color: var(--hmp-burgundy);
	text-decoration: none;
}

.hmp-breadcrumbs a:hover,
.hmp-breadcrumbs a:focus {
	color: var(--hmp-green);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.hmp-empty h1 {
	max-width: 780px;
	font-size: clamp(30px, 3.2vw, 42px);
}

.hmp-content {
	max-width: 920px;
	padding-block: clamp(36px, 6vw, 72px);
}

.hmp-entry-layout {
	display: block;
	padding-block: clamp(34px, 6vw, 72px);
}

.hmp-entry-main {
	min-width: 0;
	width: 100%;
}

.hmp-entry-panel {
	max-width: none;
	border: 1px solid rgba(199, 149, 46, 0.28);
	border-left: 5px solid var(--hmp-gold);
	background:
		linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(247, 239, 217, 0.92)),
		var(--hmp-paper);
	box-shadow: 0 16px 38px rgba(43, 31, 16, 0.08);
	padding: clamp(24px, 4vw, 44px);
}

.hmp-entry-panel > :first-child {
	margin-top: 0;
}

.hmp-entry-panel > :last-child {
	margin-bottom: 0;
}

.hmp-entry-panel .wp-block-columns:has(.wp-block-jetpack-slideshow),
.hmp-entry-panel .wp-block-columns:has(.wp-block-gallery),
.hmp-entry-panel .wp-block-columns:has(.gallery) {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) !important;
	gap: clamp(24px, 4vw, 42px);
	align-items: start;
}

.hmp-entry-panel .wp-block-columns:has(.wp-block-jetpack-slideshow) > .wp-block-column,
.hmp-entry-panel .wp-block-columns:has(.wp-block-gallery) > .wp-block-column,
.hmp-entry-panel .wp-block-columns:has(.gallery) > .wp-block-column {
	min-width: 0;
	width: min(100%, 820px);
	margin-inline: auto;
	overflow-wrap: break-word;
}

.hmp-entry-panel .wp-block-jetpack-slideshow {
	width: min(100%, 680px) !important;
	margin: clamp(18px, 3vw, 30px) auto !important;
	border: 1px solid rgba(199, 149, 46, 0.34);
	background: #fffdf7;
	box-shadow: 0 16px 34px rgba(43, 31, 16, 0.1);
	padding: clamp(8px, 1.5vw, 14px);
}

.hmp-entry-panel .wp-block-jetpack-slideshow_container {
	max-height: min(78vh, 760px);
	background: #f7f0e3;
}

.hmp-entry-panel .wp-block-jetpack-slideshow figure {
	margin: 0;
}

.hmp-entry-panel .wp-block-jetpack-slideshow img {
	width: 100% !important;
	height: 100% !important;
	max-height: min(78vh, 740px);
	object-fit: contain !important;
}

.hmp-legacy-event-recap .hmp-entry-layout {
	width: min(1120px, calc(100% - 56px));
	padding-top: clamp(26px, 4vw, 44px);
}

.hmp-legacy-event-recap .hmp-entry-main > .hmp-single-image {
	display: none;
}

.hmp-legacy-event-recap .hmp-entry-panel {
	max-width: none;
	border-left-width: 6px;
	padding: clamp(24px, 4vw, 52px);
}

.hmp-legacy-event-recap .hmp-entry-panel > * {
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
}

.hmp-legacy-event-recap .hmp-entry-panel p,
.hmp-legacy-event-recap .hmp-entry-panel li {
	color: #173531;
	font-size: clamp(17px, 1.4vw, 20px);
	line-height: 1.68;
}

.hmp-legacy-event-recap .hmp-entry-panel a {
	color: var(--hmp-burgundy);
	font-weight: 900;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.hmp-legacy-event-recap .hmp-entry-panel .wp-block-columns {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) !important;
	gap: clamp(22px, 4vw, 40px);
	align-items: start;
	max-width: 920px;
	margin: clamp(28px, 4vw, 42px) auto;
}

.hmp-legacy-event-recap .hmp-entry-panel .wp-block-column {
	min-width: 0;
	width: 100%;
	overflow-wrap: break-word;
}

.hmp-legacy-event-recap .hmp-entry-panel .wp-block-columns:has(.wp-block-image):not(:has(p)):not(:has(ol)):not(:has(ul)) {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)) !important;
	max-width: 980px;
	gap: 16px;
}

.hmp-legacy-event-recap .hmp-entry-panel .wp-block-columns:has(.wp-block-image):not(:has(p)):not(:has(ol)):not(:has(ul)) .wp-block-column {
	display: grid;
	align-items: start;
}

.hmp-legacy-event-recap .hmp-entry-panel .wp-block-columns:has(ol),
.hmp-legacy-event-recap .hmp-entry-panel .wp-block-columns:has(ul) {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)) !important;
	max-width: 980px;
	gap: clamp(18px, 3vw, 28px);
	border-top: 1px solid rgba(21, 88, 79, 0.18);
	padding-top: clamp(18px, 3vw, 28px);
}

.hmp-legacy-event-recap .hmp-entry-panel .wp-block-image {
	width: 100%;
	margin: 0 auto;
}

.hmp-legacy-event-recap .hmp-entry-panel .wp-block-image img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: min(72vh, 720px);
	margin: 0 auto;
	object-fit: contain;
}

.hmp-legacy-event-recap .hmp-entry-panel .wp-block-image figcaption {
	margin-top: 10px;
	color: #53625e;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
}

.hmp-legacy-event-recap .hmp-entry-panel .wp-block-columns:has(.wp-block-image):not(:has(p)):not(:has(ol)):not(:has(ul)) .wp-block-image {
	border: 1px solid rgba(199, 149, 46, 0.32);
	background: #fffdf7;
	box-shadow: 0 12px 28px rgba(43, 31, 16, 0.08);
	padding: 8px;
}

.hmp-legacy-event-recap .hmp-entry-panel .wp-block-jetpack-slideshow {
	width: min(100%, 760px) !important;
}

.hmp-legacy-event-recap .hmp-entry-panel .wp-block-separator {
	max-width: 920px;
	margin: clamp(28px, 5vw, 46px) auto;
	border-color: rgba(21, 88, 79, 0.22);
}

.hmp-legacy-event-recap .hmp-entry-panel .has-background {
	border: 1px solid rgba(199, 149, 46, 0.38);
	background: linear-gradient(135deg, #fff3cb, #f4c35a) !important;
	color: #17150d;
	padding: 16px 18px;
	font-weight: 900;
}

.hmp-legacy-event-recap .hmp-entry-panel .alignwide,
.hmp-legacy-event-recap .hmp-entry-panel .alignfull {
	width: 100%;
	max-width: 980px;
}

.hmp-entry-rail {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
	gap: 18px;
	position: static;
	top: auto;
	width: 100%;
	margin-top: clamp(24px, 4vw, 40px);
}

.hmp-rail-card {
	border: 1px solid rgba(199, 149, 46, 0.34);
	background: rgba(255, 250, 240, 0.94);
	box-shadow: 0 14px 32px rgba(43, 31, 16, 0.08);
	padding: 24px;
}

.hmp-rail-card--dark {
	background:
		linear-gradient(135deg, rgba(11, 43, 40, 0.97), rgba(21, 88, 79, 0.94)),
		var(--hmp-deep);
	color: #fff;
}

.hmp-rail-card h2 {
	margin: 0;
	color: var(--hmp-deep);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 26px;
	line-height: 1.08;
}

.hmp-rail-card--dark h2 {
	color: #fff4cf;
}

.hmp-rail-card p:not(.hmp-rail-kicker) {
	margin: 12px 0 18px;
	color: #3f4d48;
	font-size: 15px;
	line-height: 1.5;
}

.hmp-rail-card--dark p:not(.hmp-rail-kicker) {
	color: rgba(255, 255, 255, 0.84);
}

.hmp-rail-card a {
	display: block;
	margin-top: 10px;
	border-bottom: 1px solid rgba(199, 149, 46, 0.58);
	color: var(--hmp-burgundy);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.06em;
	padding-bottom: 8px;
	text-decoration: none;
	text-transform: uppercase;
}

.hmp-rail-card--dark a {
	color: #fff4cf;
}

.hmp-rail-card--tools {
	background:
		linear-gradient(160deg, rgba(255, 250, 240, 0.96), rgba(249, 235, 199, 0.92)),
		var(--hmp-paper);
}

.hmp-rail-card--note {
	border-color: rgba(21, 88, 79, 0.24);
	background:
		linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(235, 245, 236, 0.74)),
		#f7fbf6;
}

.hmp-share-actions {
	display: grid;
	gap: 10px;
	margin-top: 16px;
}

.hmp-share-actions button,
.hmp-share-actions a {
	display: block;
	width: 100%;
	min-height: 44px;
	margin: 0;
	border: 1px solid rgba(128, 28, 36, 0.34);
	border-radius: 4px;
	background: #fffaf0;
	color: var(--hmp-burgundy);
	cursor: pointer;
	font: inherit;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.06em;
	line-height: 1.1;
	padding: 13px 14px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.hmp-share-actions button:hover,
.hmp-share-actions a:hover,
.hmp-share-actions button:focus-visible,
.hmp-share-actions a:focus-visible {
	border-color: var(--hmp-burgundy);
	background: var(--hmp-burgundy);
	color: #fffaf0;
	transform: translateY(-1px);
}

.hmp-copy-status {
	margin: 12px 0 0 !important;
	color: var(--hmp-green) !important;
	font-size: 13px !important;
	font-weight: 800;
}

.hmp-content--landing {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
}

.hmp-landing-refresh {
	width: 100%;
	max-width: 100%;
	margin: 0;
	color: var(--hmp-ink);
	font-size: clamp(16px, 1.3vw, 18px);
	line-height: 1.65;
	overflow-x: hidden;
}

.hmp-landing-refresh * {
	box-sizing: border-box;
}

.hmp-landing-refresh h1,
.hmp-landing-refresh h2,
.hmp-landing-refresh h3 {
	margin: 0;
	color: var(--hmp-ink);
	font-family: Georgia, "Times New Roman", serif;
	line-height: 1.08;
	letter-spacing: 0;
}

.hmp-landing-refresh p {
	margin: 0;
}

.hmp-lp-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.03fr) minmax(280px, 0.78fr);
	gap: clamp(22px, 4vw, 48px);
	align-items: center;
	width: min(1280px, calc(100% - 56px));
	min-height: 0;
	margin: clamp(34px, 5vw, 60px) auto 0;
	padding: clamp(24px, 4vw, 44px);
	background:
		linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(247, 239, 217, 0.96)),
		var(--hmp-paper);
	border: 1px solid rgba(201, 154, 46, 0.34);
	border-left: 6px solid var(--hmp-gold);
	border-radius: 6px;
	box-shadow: 0 18px 42px rgba(43, 31, 16, 0.08);
	overflow: hidden;
}

.hmp-lp-hero__copy,
.hmp-lp-hero__image {
	min-width: 0;
}

.hmp-lp-kicker {
	color: var(--hmp-burgundy);
	font-size: 0.78em;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hmp-lp-hero .hmp-breadcrumbs {
	margin-bottom: 14px;
}

.hmp-lp-hero h1 {
	max-width: 780px;
	margin-top: 12px;
	color: var(--hmp-deep);
	font-size: clamp(38px, 5.6vw, 68px);
	line-height: 1;
	text-wrap: balance;
	overflow-wrap: break-word;
}

.hmp-lp-lead {
	max-width: 680px;
	margin-top: 18px !important;
	color: #3f4d48;
	font-size: clamp(17px, 1.6vw, 21px);
	line-height: 1.48;
}

.hmp-lp-hero__image {
	margin: 0;
	border: 1px solid rgba(201, 154, 46, 0.42);
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.5);
	box-shadow: 0 16px 30px rgba(43, 31, 16, 0.12);
	overflow: hidden;
}

.hmp-lp-hero__image img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.page-id-164 .hmp-lp-hero__image {
	display: grid;
	place-items: center;
	background:
		linear-gradient(135deg, rgba(255, 253, 247, 0.96), rgba(239, 231, 215, 0.92));
	padding: clamp(10px, 1.4vw, 18px);
}

.page-id-164 .hmp-lp-hero__image img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: min(40vw, 430px);
	aspect-ratio: auto;
	object-fit: contain;
}

.hmp-lp-band,
.hmp-lp-legacy,
.hmp-lp-cta {
	width: min(1280px, calc(100% - 56px));
	margin: clamp(32px, 5vw, 58px) auto;
}

.hmp-lp-band {
	padding: clamp(28px, 5vw, 50px);
	border: 1px solid rgba(25, 35, 43, 0.12);
	border-radius: 6px;
	background: #fff;
	box-shadow: 0 16px 36px rgba(43, 31, 16, 0.06);
	overflow: hidden;
}

.hmp-lp-band--paper {
	background:
		linear-gradient(135deg, rgba(255, 248, 231, 0.96), rgba(247, 239, 217, 0.96)),
		var(--hmp-paper);
	border: 2px solid rgba(201, 154, 46, 0.28);
}

.hmp-lp-section-heading {
	max-width: 840px;
	margin-bottom: clamp(24px, 4vw, 34px);
}

.hmp-lp-section-heading h2 {
	margin-top: 8px;
	font-size: clamp(28px, 3.8vw, 44px);
}

.hmp-lp-card-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(min(100%, 320px), 1fr));
	gap: clamp(14px, 2.4vw, 22px);
	min-width: 0;
}

.hmp-lp-card-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hmp-lp-card {
	position: relative;
	display: flex;
	max-width: 100%;
	min-width: 0;
	min-height: 210px;
	flex-direction: column;
	align-items: flex-start;
	justify-content: space-between;
	border: 1px solid rgba(21, 88, 78, 0.18);
	border-top: 4px solid rgba(199, 149, 46, 0.76);
	border-radius: 5px;
	background:
		linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(255, 255, 255, 0.94));
	padding: clamp(20px, 3vw, 28px);
	box-shadow: 0 14px 30px rgba(25, 35, 43, 0.07);
	overflow: hidden;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hmp-lp-card::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 5px;
	background: rgba(21, 88, 78, 0.14);
}

.hmp-lp-card:hover,
.hmp-lp-card:focus-within {
	border-color: rgba(21, 88, 78, 0.32);
	box-shadow: 0 20px 42px rgba(25, 35, 43, 0.12);
	transform: translateY(-2px);
}

.hmp-lp-card h3 {
	color: var(--hmp-green);
	font-size: clamp(22px, 2.2vw, 30px);
	text-wrap: balance;
}

.hmp-lp-card p {
	margin-top: 12px;
	color: var(--hmp-muted);
	overflow-wrap: break-word;
}

.hmp-lp-section-copy {
	max-width: 900px;
	color: var(--hmp-muted);
}

.hmp-lp-card a {
	margin-top: 22px;
	border-bottom: 2px solid rgba(199, 149, 46, 0.82);
	color: var(--hmp-green);
	font-weight: 900;
	text-decoration: none;
	text-underline-offset: 4px;
}

.hmp-lp-card a:focus-visible {
	outline: 3px solid rgba(199, 149, 46, 0.62);
	outline-offset: 4px;
}

.hmp-lp-card--profile,
.hmp-lp-card--story {
	padding: 0;
	justify-content: flex-start;
}

.hmp-lp-card--profile::before,
.hmp-lp-card--story::before {
	display: none;
}

.hmp-lp-card__image {
	width: 100%;
	margin: 0;
	border-bottom: 1px solid rgba(21, 88, 78, 0.14);
	background: rgba(255, 248, 231, 0.72);
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.hmp-lp-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hmp-lp-card__body {
	display: flex;
	min-height: 230px;
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
	padding: clamp(20px, 3vw, 28px);
}

.hmp-lp-card__body a {
	margin-top: auto;
}

.hmp-women-intro__text {
	max-width: 900px;
	color: var(--hmp-muted);
	font-size: clamp(18px, 2vw, 22px);
	line-height: 1.65;
}

.hmp-event-ad {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
	gap: clamp(22px, 4vw, 46px);
	align-items: stretch;
	width: min(1280px, calc(100% - 56px));
	margin: clamp(32px, 5vw, 58px) auto;
	border: 2px solid rgba(199, 149, 46, 0.44);
	border-left: 8px solid var(--hmp-gold);
	border-radius: 6px;
	background:
		linear-gradient(135deg, rgba(255, 253, 247, 0.98), rgba(247, 239, 217, 0.95)),
		var(--hmp-paper);
	box-shadow: 0 20px 46px rgba(43, 31, 16, 0.12);
	overflow: hidden;
}

.hmp-event-ad--empty {
	grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
	align-items: center;
	background:
		linear-gradient(135deg, rgba(7, 59, 53, 0.98), rgba(14, 84, 75, 0.96)),
		var(--hmp-green);
}

.hmp-event-ad__image {
	min-height: 100%;
	margin: 0;
	background: #efe7d7;
}

.hmp-event-ad__image img {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 360px;
	object-fit: cover;
}

.hmp-event-ad__copy {
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: center;
	padding: clamp(26px, 5vw, 54px);
}

.hmp-event-ad--empty .hmp-event-ad__copy {
	max-width: 980px;
}

.hmp-event-ad h2 {
	margin-top: 10px;
	color: var(--hmp-deep);
	font-size: clamp(34px, 5vw, 58px);
	line-height: 1;
	text-wrap: balance;
}

.hmp-event-ad--empty h2 {
	max-width: 860px;
	font-size: clamp(36px, 4.8vw, 66px);
}

.hmp-event-ad--empty h2,
.hmp-event-ad--empty p {
	color: #fff8dc;
}

.hmp-event-ad--empty .hmp-lp-kicker {
	color: #ffd966;
}

.hmp-event-ad__copy > p:not(.hmp-lp-kicker) {
	margin-top: 18px;
	max-width: 720px;
	color: #3f4d48;
	font-size: clamp(17px, 1.45vw, 20px);
	line-height: 1.55;
}

.hmp-event-ad--empty .hmp-event-ad__copy > p:not(.hmp-lp-kicker) {
	color: rgba(255, 248, 220, 0.9);
}

.hmp-event-ad__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 18px;
}

.hmp-event-ad__meta span {
	border: 1px solid rgba(21, 88, 78, 0.18);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.72);
	color: var(--hmp-deep);
	padding: 8px 12px;
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.hmp-event-ad__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 26px;
}

.hmp-event-ad__notice {
	margin: clamp(22px, 4vw, 44px);
	border: 1px solid rgba(255, 217, 102, 0.36);
	border-radius: 6px;
	background: rgba(255, 253, 247, 0.08);
	box-shadow: inset 0 0 0 1px rgba(255, 253, 247, 0.08);
	padding: clamp(20px, 3vw, 28px);
	color: #fff8dc;
}

.hmp-event-ad__notice strong,
.hmp-event-ad__notice span {
	display: block;
}

.hmp-event-ad__notice strong {
	color: #ffd966;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hmp-event-ad__notice span {
	margin-top: 10px;
	font-size: 18px;
	line-height: 1.45;
}

.hmp-event-recaps {
	margin-top: 0;
}

.hmp-event-recap-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(14px, 2vw, 22px);
}

.hmp-event-recap-card {
	display: grid;
	grid-template-rows: auto 1fr;
	border: 1px solid rgba(21, 88, 78, 0.18);
	border-top: 4px solid rgba(199, 149, 46, 0.72);
	border-radius: 5px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 14px 30px rgba(25, 35, 43, 0.07);
	overflow: hidden;
	transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.hmp-event-recap-card:hover,
.hmp-event-recap-card:focus-within {
	border-color: rgba(21, 88, 78, 0.32);
	box-shadow: 0 20px 42px rgba(25, 35, 43, 0.12);
	transform: translateY(-2px);
}

.hmp-event-recap-card__image {
	display: grid;
	place-items: center;
	aspect-ratio: 16 / 10;
	background: #efe7d7;
	color: var(--hmp-deep);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 24px;
	font-weight: 900;
	text-decoration: none;
	overflow: hidden;
}

.hmp-event-recap-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hmp-event-recap-card__body {
	padding: clamp(18px, 2.4vw, 24px);
}

.hmp-event-recap-card h3 {
	margin-top: 8px;
	font-size: clamp(22px, 2.2vw, 30px);
}

.hmp-event-recap-card h3 a {
	color: var(--hmp-green);
	text-decoration: none;
}

.hmp-event-recap-card__meta {
	margin-top: 10px !important;
	color: var(--hmp-burgundy) !important;
	font-size: 13px !important;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.hmp-event-recap-card p:not(.hmp-lp-kicker):not(.hmp-event-recap-card__meta) {
	margin-top: 12px;
	color: var(--hmp-muted);
	line-height: 1.5;
}

.hmp-event-recap-card a:focus-visible {
	outline: 3px solid rgba(199, 149, 46, 0.62);
	outline-offset: 4px;
}

.hmp-lp-cta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 22px;
	align-items: center;
	border: 3px solid var(--hmp-gold);
	background:
		linear-gradient(135deg, rgba(13, 47, 43, 0.96), rgba(35, 115, 101, 0.92)),
		var(--hmp-deep);
	padding: clamp(24px, 5vw, 42px);
	color: #fff;
}

.hmp-lp-cta h2 {
	margin-top: 8px;
	color: #fff4cf;
	font-size: clamp(28px, 3.8vw, 44px);
}

.hmp-lp-cta p:not(.hmp-lp-kicker) {
	margin-top: 10px;
	color: rgba(255, 255, 255, 0.86);
}

.hmp-lp-button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	border: 2px solid transparent;
	border-radius: 4px;
	padding: 13px 22px;
	font-weight: 900;
	line-height: 1.1;
	text-align: center;
	text-decoration: none;
}

.hmp-lp-button--burgundy {
	background: linear-gradient(180deg, var(--hmp-burgundy), var(--hmp-burgundy-dark));
	color: #fff;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.hmp-lp-button--gold {
	background: linear-gradient(180deg, var(--hmp-gold-light), var(--hmp-gold));
	color: #172027;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
}

.hmp-support-impact {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin: 24px 0;
	border: 1px solid rgba(21, 88, 78, 0.16);
	background: rgba(21, 88, 78, 0.16);
}

.hmp-support-impact div {
	min-width: 0;
	background: rgba(255, 255, 255, 0.82);
	padding: 20px;
}

.hmp-support-impact strong,
.hmp-support-impact span {
	display: block;
}

.hmp-support-impact strong {
	color: var(--hmp-green);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 24px;
	line-height: 1.15;
}

.hmp-support-impact span {
	margin-top: 8px;
	color: var(--hmp-muted);
}

.hmp-support-paths {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hmp-support-trust__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-end;
}

.hmp-lp-legacy {
	border-top: 1px solid rgba(25, 35, 43, 0.14);
	padding-top: clamp(28px, 5vw, 44px);
}

.hmp-lp-legacy > :not(.hmp-lp-section-heading) {
	max-width: 900px;
}

.hmp-content h2,
.hmp-content h3 {
	font-family: Georgia, "Times New Roman", serif;
	line-height: 1.12;
}

.hmp-single-image {
	margin: 0 0 clamp(20px, 4vw, 34px);
	border: 1px solid rgba(199, 149, 46, 0.32);
	background: var(--hmp-paper);
	box-shadow: 0 14px 32px rgba(43, 31, 16, 0.1);
	overflow: hidden;
}

.hmp-single-image img {
	display: block;
	width: 100%;
}

.hmp-single-image figcaption,
.hmp-artifact-figure figcaption {
	border-top: 1px solid rgba(199, 149, 46, 0.24);
	background: rgba(255, 253, 247, 0.92);
	padding: 10px 14px;
	color: #53625e;
	font-size: 13px;
	line-height: 1.45;
}

.hmp-single-explorer {
	display: grid;
	gap: clamp(22px, 4vw, 36px);
	margin-top: clamp(28px, 5vw, 52px);
}

.hmp-single-explorer__intro,
.hmp-story-nav,
.hmp-related-stories {
	border: 1px solid rgba(199, 149, 46, 0.3);
	background:
		linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(247, 239, 217, 0.94)),
		var(--hmp-paper);
	box-shadow: 0 14px 32px rgba(43, 31, 16, 0.07);
}

.hmp-single-explorer__intro {
	border-left: 5px solid var(--hmp-gold);
	padding: clamp(22px, 4vw, 34px);
}

.hmp-single-explorer h2 {
	max-width: 760px;
	margin: 0;
	color: var(--hmp-deep);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(30px, 4vw, 46px);
	line-height: 1.06;
	text-wrap: balance;
}

.hmp-term-trail {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
}

.hmp-term-trail a {
	border: 1px solid rgba(21, 88, 79, 0.22);
	background: rgba(255, 255, 255, 0.82);
	color: var(--hmp-green);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.06em;
	padding: 8px 10px;
	text-decoration: none;
	text-transform: uppercase;
}

.hmp-term-trail a:hover,
.hmp-term-trail a:focus {
	border-color: rgba(143, 28, 42, 0.45);
	color: var(--hmp-burgundy);
}

.hmp-story-nav {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	padding: 1px;
}

.hmp-story-nav__item {
	display: grid;
	gap: 8px;
	min-height: 132px;
	align-content: center;
	background: rgba(255, 255, 255, 0.78);
	padding: clamp(18px, 3vw, 26px);
	color: var(--hmp-deep);
	text-decoration: none;
}

.hmp-story-nav__item:hover,
.hmp-story-nav__item:focus {
	background: #fff;
}

.hmp-story-nav__item span {
	color: var(--hmp-burgundy);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.hmp-story-nav__item strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(22px, 2.4vw, 30px);
	line-height: 1.08;
}

.hmp-related-stories {
	padding: clamp(18px, 3vw, 28px);
}

.hmp-related-stories .hmp-archive-results-heading {
	margin-bottom: 20px;
	box-shadow: none;
}

.hmp-post-grid--related {
	margin-bottom: 0;
}

.hmp-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 48px;
}

.hmp-archive-body {
	padding-block: clamp(34px, 6vw, 68px);
}

.hmp-archive-tools {
	display: grid;
	grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
	gap: clamp(18px, 3vw, 32px);
	align-items: stretch;
	margin-bottom: clamp(34px, 5vw, 58px);
}

.hmp-archive-tools__search,
.hmp-archive-topics,
.hmp-archive-results-heading,
.hmp-empty--inline {
	border: 1px solid rgba(199, 149, 46, 0.3);
	background:
		linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(247, 239, 217, 0.94)),
		var(--hmp-paper);
	box-shadow: 0 14px 32px rgba(43, 31, 16, 0.07);
}

.hmp-archive-tools__search,
.hmp-archive-topics {
	padding: clamp(20px, 3vw, 30px);
}

.hmp-archive-tools__search {
	border-left: 5px solid var(--hmp-gold);
}

.hmp-archive-tools h2,
.hmp-archive-results-heading h2,
.hmp-empty--inline h2 {
	max-width: 100%;
	margin: 0;
	color: var(--hmp-deep);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(28px, 3vw, 38px);
	line-height: 1.08;
	overflow-wrap: anywhere;
}

.hmp-archive-tools .hmp-search-form {
	margin-top: 18px;
}

.hmp-archive-topic-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 16px;
}

.hmp-archive-topic {
	display: grid;
	gap: 8px;
	min-height: 124px;
	align-content: start;
	border: 1px solid rgba(21, 88, 79, 0.18);
	background: rgba(255, 255, 255, 0.78);
	padding: 16px;
	color: var(--hmp-ink);
	text-decoration: none;
	transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.hmp-archive-topic:hover,
.hmp-archive-topic:focus,
.hmp-archive-topic.is-active {
	border-color: rgba(143, 28, 42, 0.42);
	box-shadow: 0 12px 24px rgba(43, 31, 16, 0.1);
	transform: translateY(-2px);
}

.hmp-archive-topic strong {
	color: var(--hmp-green);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 22px;
	line-height: 1.1;
}

.hmp-archive-topic span {
	color: #46544f;
	font-size: 14px;
	line-height: 1.45;
}

.hmp-archive-results-heading {
	margin-bottom: 22px;
	border-left: 5px solid var(--hmp-gold);
	padding: 22px;
}

.hmp-empty--inline {
	padding: clamp(22px, 4vw, 36px);
}

.hmp-empty--inline p {
	max-width: 640px;
	margin-bottom: 0;
	color: #46544f;
}

.hmp-search-empty {
	display: grid;
	gap: 16px;
}

.hmp-search-empty__links {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-top: 8px;
}

.hmp-search-empty__links a {
	display: flex;
	min-height: 72px;
	align-items: center;
	justify-content: center;
	padding: 14px 16px;
	border: 1px solid rgba(0, 79, 58, 0.24);
	background: rgba(255, 255, 255, 0.66);
	color: var(--hmp-green);
	font-family: var(--hmp-font-sans);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.08em;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

.hmp-search-empty__links a:hover,
.hmp-search-empty__links a:focus {
	border-color: var(--hmp-green);
	background: var(--hmp-green);
	color: #fff8e3;
}

.hmp-loop-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	border: 1px solid rgba(199, 149, 46, 0.28);
	background: rgba(255, 250, 240, 0.96);
	box-shadow: 0 14px 32px rgba(43, 31, 16, 0.08);
	overflow: hidden;
}

.hmp-loop-card__image {
	display: block;
	aspect-ratio: 4 / 3;
	background:
		linear-gradient(135deg, rgba(11, 43, 40, 0.72), rgba(199, 149, 46, 0.2)),
		#e9dfcc;
	overflow: hidden;
}

.hmp-loop-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: sepia(0.08) saturate(0.94);
	transition: filter 160ms ease, transform 160ms ease;
}

.hmp-loop-card:hover .hmp-loop-card__image img,
.hmp-loop-card:focus-within .hmp-loop-card__image img {
	filter: sepia(0) saturate(1);
	transform: scale(1.025);
}

.hmp-loop-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 20px;
}

.hmp-loop-card h2 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(22px, 2.2vw, 29px);
	line-height: 1.12;
}

.hmp-loop-card h2 a {
	color: var(--hmp-deep);
	text-decoration: none;
}

.hmp-loop-card p:not(.hmp-card-meta) {
	color: #46544f;
	line-height: 1.52;
}

.hmp-card-meta {
	color: var(--hmp-gold);
	font-size: 12px;
}

.hmp-card-link {
	margin-top: auto;
	color: var(--hmp-burgundy);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.06em;
	text-decoration: none;
	text-transform: uppercase;
}

.hmp-sitemap-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: clamp(24px, 4vw, 52px);
	padding-block: clamp(34px, 6vw, 72px);
}

.hmp-sitemap-section {
	border: 1px solid rgba(199, 149, 46, 0.3);
	border-left: 5px solid var(--hmp-gold);
	background:
		linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(247, 239, 217, 0.94)),
		var(--hmp-paper);
	box-shadow: 0 16px 38px rgba(43, 31, 16, 0.08);
	padding: clamp(22px, 4vw, 34px);
}

.hmp-sitemap-section h2 {
	margin: 0 0 18px;
	color: var(--hmp-deep);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(28px, 3vw, 38px);
	line-height: 1.08;
}

.hmp-sitemap-section ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hmp-sitemap-section a {
	display: block;
	border-bottom: 1px solid rgba(199, 149, 46, 0.24);
	color: var(--hmp-deep);
	font-weight: 800;
	line-height: 1.35;
	padding-bottom: 10px;
	text-decoration: none;
	overflow-wrap: anywhere;
}

.hmp-sitemap-section a:hover,
.hmp-sitemap-section a:focus {
	color: var(--hmp-burgundy);
}

.hmp-legacy-view {
	width: 100%;
	margin-block: clamp(22px, 4vw, 42px);
}

.hmp-lp-band .hmp-legacy-view {
	margin-block: 0;
}

.hmp-legacy-view .hmp-lp-section-heading {
	margin-bottom: 20px;
}

.hmp-legacy-view-grid {
	margin-bottom: 0;
}

.hmp-legacy-view-card h3 {
	margin: 0;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(22px, 2.2vw, 29px);
	line-height: 1.12;
}

.hmp-legacy-view-card h3 a {
	color: var(--hmp-deep);
	text-decoration: none;
}

.hmp-legacy-view-card h3 a:hover,
.hmp-legacy-view-card h3 a:focus {
	color: var(--hmp-burgundy);
}

.hmp-legacy-view-empty {
	border: 1px solid rgba(199, 149, 46, 0.34);
	background: rgba(255, 250, 240, 0.94);
	padding: 22px;
}

.hmp-legacy-view-empty p {
	margin: 0;
	color: #3f4d48;
}

.hmp-search-form {
	display: flex;
	gap: 8px;
	max-width: 620px;
}

.hmp-search-field {
	width: 100%;
	min-height: 48px;
	border: 1px solid var(--hmp-border);
	padding: 10px 12px;
}

.hmp-search-form button {
	min-height: 48px;
	border: 0;
	background: var(--hmp-green);
	color: #fff;
	padding: 10px 16px;
	font-weight: 900;
}

.hmp-site-footer {
	margin-top: clamp(60px, 8vw, 100px);
	background: var(--hmp-deep);
	color: rgba(255, 255, 255, 0.84);
}

.hmp-footer-inner {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 28px;
	padding: clamp(34px, 6vw, 64px) 0;
}

.hmp-site-footer h2 {
	margin: 0 0 12px;
	color: #fff4cf;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 24px;
}

.hmp-site-footer a {
	display: block;
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
}

.hmp-site-footer span {
	display: block;
	margin-top: 8px;
}

.hmp-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.16);
	padding: 18px 0;
}

.hmp-footer-bottom p {
	margin: 0;
}

.woocommerce .hmp-main--shop {
	padding-top: 48px;
}

.hmp-shop-intro {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
	gap: 24px;
	align-items: center;
	margin: 0 0 clamp(28px, 4vw, 46px);
	border-left: 8px solid var(--hmp-green);
	background:
		linear-gradient(135deg, rgba(255, 248, 231, 0.96), rgba(255, 255, 255, 0.98)),
		var(--hmp-paper);
	padding: clamp(22px, 4vw, 36px);
	box-shadow: 0 18px 36px rgba(43, 31, 16, 0.08);
}

.hmp-shop-intro h2 {
	margin-top: 8px;
	color: var(--hmp-green);
	font-size: clamp(28px, 3vw, 42px);
}

.hmp-shop-intro p:not(.hmp-lp-kicker) {
	max-width: 760px;
	margin-top: 10px;
	color: var(--hmp-muted);
	font-size: clamp(17px, 1.6vw, 20px);
}

.hmp-shop-intro ul {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hmp-shop-intro li {
	border: 1px solid rgba(21, 88, 78, 0.18);
	background: rgba(255, 255, 255, 0.74);
	padding: 12px 14px;
	color: var(--hmp-green);
	font-weight: 900;
}

.woocommerce ul.products {
	display: grid;
	gap: clamp(18px, 3vw, 28px);
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
	margin-top: 18px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	background: #fffdf7;
	border: 1px solid rgba(199, 149, 46, 0.34);
	box-shadow: 0 16px 34px rgba(43, 31, 16, 0.08);
	float: none;
	margin: 0;
	min-width: 0;
	overflow: hidden;
	padding: 14px 14px 18px;
	width: auto;
}

.woocommerce ul.products li.product a img {
	aspect-ratio: 4 / 3;
	background: #f7efd9;
	margin: 0 0 14px;
	object-fit: cover;
	width: 100%;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	color: var(--hmp-green);
	font-size: clamp(20px, 2vw, 26px);
	line-height: 1.15;
	padding: 0;
}

.woocommerce ul.products li.product .price {
	color: var(--hmp-burgundy);
	font-size: 18px;
	font-weight: 900;
}

.hmp-commerce-note,
.hmp-commerce-receipt-note,
.hmp-commerce-checkout-note {
	border: 1px solid rgba(199, 149, 46, 0.34);
	background:
		linear-gradient(135deg, rgba(255, 253, 247, 0.98), rgba(247, 239, 217, 0.92)),
		var(--hmp-paper);
	color: var(--hmp-ink);
}

.hmp-commerce-note {
	display: grid;
	gap: 5px;
	margin: 0 0 18px;
	border-left: 5px solid var(--hmp-gold);
	padding: 14px 16px;
}

.hmp-commerce-note strong,
.hmp-commerce-receipt-note strong {
	color: var(--hmp-green);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 20px;
	line-height: 1.15;
}

.hmp-commerce-note span,
.hmp-commerce-receipt-note span {
	color: var(--hmp-muted);
}

.hmp-commerce-receipt-note {
	display: grid;
	gap: 5px;
	margin-top: 18px;
	padding: 16px;
}

.hmp-commerce-checkout-note {
	margin: 0 0 24px;
	border-left: 6px solid var(--hmp-gold);
	padding: clamp(18px, 3vw, 28px);
	box-shadow: 0 12px 26px rgba(43, 31, 16, 0.08);
}

.hmp-commerce-checkout-note h2 {
	margin-top: 6px;
	color: var(--hmp-green);
	font-size: clamp(24px, 2.8vw, 34px);
}

.hmp-commerce-checkout-note p:not(.hmp-lp-kicker) {
	max-width: 820px;
	margin-top: 8px;
	color: var(--hmp-muted);
}

.hmp-contact-panel {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 380px);
	gap: 24px;
	align-items: stretch;
	margin: 0 0 clamp(28px, 5vw, 48px);
	border: 1px solid rgba(201, 154, 46, 0.32);
	background:
		linear-gradient(135deg, rgba(13, 47, 43, 0.96), rgba(22, 92, 82, 0.94)),
		var(--hmp-deep);
	padding: clamp(24px, 5vw, 42px);
	color: #fff;
}

.hmp-contact-panel h2 {
	max-width: 820px;
	margin-top: 8px;
	color: #fff4cf;
	font-size: clamp(30px, 4vw, 50px);
}

.hmp-contact-panel p:not(.hmp-lp-kicker) {
	max-width: 780px;
	margin-top: 14px;
	color: rgba(255, 255, 255, 0.86);
}

.hmp-contact-panel__methods {
	display: grid;
	gap: 12px;
	align-content: center;
}

.hmp-contact-panel__methods a,
.hmp-contact-panel__methods div {
	display: block;
	border: 1px solid rgba(255, 244, 207, 0.3);
	background: rgba(255, 255, 255, 0.08);
	padding: 14px 16px;
	color: #fff;
	text-decoration: none;
	overflow-wrap: anywhere;
}

.hmp-contact-panel__methods span {
	display: block;
	margin-bottom: 4px;
	color: var(--hmp-gold-light);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

@media (max-width: 980px) {
	body.admin-bar .hmp-site-header {
		top: 46px;
	}

	body.hmp-menu-is-open {
		overflow-x: hidden;
	}

	body.no-js .hmp-menu-toggle {
		display: none !important;
	}

	body.no-js .hmp-primary-nav {
		position: static;
		display: block;
		width: 100%;
		max-height: none;
		margin-top: 10px;
		padding: 0;
		background: transparent;
		box-shadow: none;
	}

	body.no-js .hmp-header-inner,
	body.no-js .hmp-header-actions {
		display: grid;
		padding-right: 0;
	}

	.hmp-header-inner {
		min-height: 72px;
	}

	.hmp-menu-toggle {
		display: inline-flex;
	}

	.hmp-primary-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		max-height: calc(100vh - 78px);
		overflow-y: auto;
		padding: 12px 18px 18px;
		background: var(--hmp-cream);
		box-shadow: 0 16px 28px rgba(23, 32, 39, 0.12);
	}

	.hmp-primary-nav.is-open {
		display: block;
	}

	.hmp-primary-menu,
	.hmp-primary-menu .sub-menu {
		position: static;
		display: grid;
		min-width: 0;
		box-shadow: none;
		background: transparent;
	}

	.hmp-primary-menu .sub-menu {
		padding-left: 16px;
	}

	.hmp-primary-menu .current-menu-item > a::after,
	.hmp-primary-menu .current-menu-ancestor > a::after,
	.hmp-primary-menu a[aria-current="page"]::after {
		top: 12px;
		right: auto;
		bottom: 12px;
		left: 0;
		width: 4px;
		height: auto;
	}

	.hmp-card-grid--three,
	.hmp-post-grid,
	.hmp-treasure-band,
	.hmp-next-step,
	.hmp-district,
	.hmp-support-cta,
	.hmp-support-impact,
	.hmp-shop-intro,
	.hmp-contact-panel,
	.hmp-footer-inner {
		grid-template-columns: 1fr;
	}

	.hmp-support-trust__actions {
		justify-content: flex-start;
	}

	.hmp-proof {
		grid-template-columns: 1fr;
	}

	.hmp-proof div + div {
		border-left: 0;
		border-top: 1px solid rgba(199, 149, 46, 0.34);
	}
}

@media (max-width: 620px) {
	.hmp-container,
	.hmp-header-inner,
	.hmp-footer-inner,
	.hmp-footer-bottom,
	.hmp-section,
	.hmp-hero__content,
	.hmp-support-cta {
		width: min(100% - 24px, 1160px);
	}

	.hmp-brand span {
		display: none;
	}

	.hmp-hero {
		min-height: 620px;
	}

	.hmp-hero h1 {
		font-size: clamp(38px, 12vw, 54px);
	}

	.hmp-actions {
		flex-direction: column;
	}

	.hmp-button {
		width: 100%;
	}

	.hmp-link-list {
		grid-template-columns: 1fr;
	}
}

/* Homepage preservation redesign. */
:root {
	--hmp-burgundy: #8f1f2a;
	--hmp-burgundy-dark: #68141d;
	--hmp-soft: #fbf5ea;
	--hmp-soft-2: #f5ead8;
	--hmp-line: #ddcdae;
}

body {
	background:
		radial-gradient(circle at 4% 8%, rgba(199, 149, 46, 0.08), transparent 26rem),
		linear-gradient(180deg, #fffaf0, #f8efe0 72%, #fffaf0);
	color: #1b2d29;
}

.hmp-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid rgba(105, 69, 35, 0.16);
	background: rgba(255, 251, 242, 0.98);
	box-shadow: 0 10px 26px rgba(39, 27, 17, 0.08);
}

.hmp-header-inner {
	width: min(1380px, calc(100% - 56px));
	min-height: 108px;
	gap: 28px;
	position: relative;
}

.hmp-brand {
	flex: 0 0 auto;
	max-width: min(360px, 35vw);
}

.hmp-brand img,
.hmp-brand .custom-logo {
	width: min(350px, 34vw);
	max-height: 84px;
	object-fit: contain;
	object-position: left center;
}

.hmp-brand span {
	display: none;
}

.hmp-header-actions {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	min-width: 0;
}

.hmp-primary-menu {
	flex-wrap: nowrap;
	gap: 12px;
}

.hmp-primary-menu a {
	padding: 10px 0;
	color: #1d2a27;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: none;
	white-space: nowrap;
}

.hmp-primary-menu a:hover,
.hmp-primary-menu a:focus {
	color: var(--hmp-burgundy);
}

.hmp-primary-menu .sub-menu {
	border: 1px solid var(--hmp-line);
	border-radius: 4px;
	background: #fffaf0;
}

.hmp-donate-button {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	border-radius: 3px;
	background: linear-gradient(180deg, var(--hmp-burgundy), var(--hmp-burgundy-dark));
	box-shadow: 0 8px 18px rgba(104, 20, 29, 0.22);
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.08em;
	padding: 0 24px;
	text-decoration: none;
	text-transform: uppercase;
}

.hmp-donate-button::before {
	content: "♥";
	margin-right: 9px;
	font-size: 15px;
	line-height: 1;
}

.hmp-home-hero {
	position: relative;
	min-height: clamp(560px, 70vh, 760px);
	display: grid;
	align-items: center;
	overflow: hidden;
	background: var(--hmp-deep);
	border-bottom: 1px solid var(--hmp-line);
	isolation: isolate;
}

.hmp-home-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(90deg, rgba(7, 41, 34, 0.94) 0%, rgba(7, 41, 34, 0.84) 35%, rgba(7, 41, 34, 0.28) 64%, rgba(7, 41, 34, 0.08) 100%),
		linear-gradient(0deg, rgba(0, 0, 0, 0.12), transparent 42%);
	opacity: var(--hmp-hero-overlay-opacity);
}

.hmp-home-hero__image {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: saturate(1.03) contrast(1.02);
}

.hmp-home-hero__content {
	width: min(1280px, calc(100% - 56px));
	margin-inline: auto;
	padding-block: clamp(72px, 10vw, 130px);
	color: #fff;
}

.hmp-kicker {
	display: inline-block;
	margin: 0 0 22px;
	border-bottom: 2px solid var(--hmp-gold);
	color: #e2b240;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 0.08em;
	line-height: 1.7;
	text-transform: uppercase;
}

.hmp-home-hero h1 {
	max-width: 720px;
	margin: 0;
	color: #fff6d7;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(48px, 6.2vw, 86px);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 0.98;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
	text-wrap: balance;
}

.hmp-home-hero__content > p:not(.hmp-kicker) {
	max-width: 560px;
	margin: 24px 0 0;
	color: rgba(255, 255, 255, 0.95);
	font-size: clamp(18px, 1.7vw, 23px);
	line-height: 1.45;
}

.hmp-district-sign {
	position: absolute;
	right: clamp(30px, 8vw, 120px);
	top: 50%;
	display: grid;
	min-width: 158px;
	min-height: 172px;
	place-items: center;
	border: 2px solid var(--hmp-gold);
	border-radius: 0 0 78px 78px;
	background: rgba(8, 51, 42, 0.86);
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
	color: #f6d177;
	font-family: Georgia, "Times New Roman", serif;
	text-align: center;
	text-transform: uppercase;
	transform: translateY(-50%);
}

.hmp-district-sign span {
	display: block;
	max-width: 120px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.1;
}

.hmp-district-sign small {
	display: block;
	color: #fff6d7;
	font-size: 12px;
	letter-spacing: 0.08em;
}

.hmp-button {
	border-radius: 4px;
	font-size: 13px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hmp-button--burgundy {
	background: linear-gradient(180deg, var(--hmp-burgundy), var(--hmp-burgundy-dark));
	box-shadow: 0 12px 22px rgba(104, 20, 29, 0.24);
	color: #fff;
}

.hmp-button--glass {
	border-color: rgba(255, 255, 255, 0.72);
	background: rgba(9, 56, 46, 0.42);
	color: #fff;
	backdrop-filter: blur(8px);
}

.hmp-button--cream {
	background: #fffaf0;
	color: var(--hmp-deep);
}

.hmp-quick-links {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin-top: 28px;
}

.hmp-feature-tile,
.hmp-home-card,
.hmp-spotlight-card,
.hmp-resource-grid article {
	border: 1px solid var(--hmp-line);
	border-radius: 6px;
	background: rgba(255, 250, 240, 0.92);
	box-shadow: 0 14px 34px rgba(50, 31, 15, 0.07);
}

.hmp-feature-tile {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 18px;
	padding: 24px;
}

.hmp-icon {
	display: inline-flex;
	width: 54px;
	height: 54px;
	align-items: center;
	justify-content: center;
	border: 2px solid rgba(11, 43, 40, 0.18);
	border-radius: 50%;
	color: var(--hmp-deep);
}

.hmp-icon svg {
	width: 32px;
	height: 32px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.45;
}

.hmp-feature-tile h2,
.hmp-resource-grid h3 {
	margin: 0;
	color: #1d2a27;
	font-family: Georgia, "Times New Roman", serif;
	font-size: 20px;
	line-height: 1.1;
	text-transform: uppercase;
}

.hmp-feature-tile p,
.hmp-resource-grid p,
.hmp-home-card p,
.hmp-spotlight-card p {
	margin: 8px 0 14px;
	color: #3f4d48;
	font-size: 15px;
	line-height: 1.45;
}

.hmp-feature-tile a,
.hmp-home-card a,
.hmp-spotlight-card a,
.hmp-resource-grid a,
.hmp-section-heading--row a,
.hmp-support-ribbon__links a {
	color: var(--hmp-burgundy);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.05em;
	text-decoration: none;
	text-transform: uppercase;
}

.hmp-section {
	width: min(1280px, calc(100% - 56px));
}

.hmp-front-page .hmp-section {
	margin-top: clamp(34px, 5vw, 64px);
	margin-bottom: clamp(34px, 5vw, 64px);
}

.hmp-home-section {
	padding-top: clamp(12px, 2vw, 24px);
}

.hmp-section-heading--row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 22px;
}

.hmp-section-heading h2 {
	margin: 0;
	color: var(--hmp-deep);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(27px, 3vw, 38px);
	font-weight: 500;
	line-height: 1.1;
	text-transform: uppercase;
}

.hmp-featured-homes {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.hmp-home-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	overflow: hidden;
}

.hmp-home-card__image {
	display: block;
	aspect-ratio: 1.15 / 1;
	overflow: hidden;
	background: var(--hmp-soft-2);
}

.hmp-home-card__image img,
.hmp-spotlight-card__image img,
.hmp-photo-band img,
.hmp-support-ribbon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hmp-home-card__body {
	padding: 24px;
}

.hmp-home-card h3,
.hmp-spotlight-card h3,
.hmp-photo-band h2,
.hmp-support-ribbon h2 {
	margin: 0;
	color: #1c2d28;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(24px, 2.2vw, 32px);
	font-weight: 500;
	line-height: 1.08;
}

.hmp-home-card h3 a,
.hmp-spotlight-card h3 a {
	color: inherit;
	text-decoration: none;
}

.hmp-photo-band {
	display: grid;
	grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1fr);
	gap: clamp(28px, 5vw, 58px);
	align-items: center;
	margin-top: clamp(38px, 7vw, 76px);
	padding: clamp(28px, 5vw, 46px);
	border: 1px solid var(--hmp-line);
	border-radius: 6px;
	background: var(--hmp-deep);
	color: #fff;
	overflow: hidden;
}

.hmp-photo-band figure {
	height: 100%;
	min-height: 330px;
	margin: 0;
	border-radius: 4px;
	overflow: hidden;
}

.hmp-photo-band h2 {
	color: #fff6d7;
	font-size: clamp(32px, 4vw, 52px);
}

.hmp-photo-band p {
	max-width: 650px;
	color: rgba(255, 255, 255, 0.86);
	font-size: 18px;
}

.hmp-spotlight-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.hmp-spotlight-card {
	display: grid;
	grid-template-columns: 42% 1fr;
	overflow: hidden;
}

.hmp-spotlight-card__image {
	min-height: 205px;
	background: var(--hmp-soft-2);
}

.hmp-spotlight-card > div {
	padding: 22px;
}

.hmp-resource-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.hmp-resource-grid article {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 18px;
	align-items: start;
	padding: 26px;
}

.hmp-resource-grid article > span {
	grid-row: span 3;
}

.hmp-support-ribbon {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.9fr);
	gap: 30px;
	align-items: center;
	margin-top: clamp(36px, 7vw, 76px);
	padding: clamp(28px, 5vw, 44px);
	overflow: hidden;
	border-radius: 6px;
	background: linear-gradient(135deg, #0b2b28, #15584f);
	color: #fff;
}

.hmp-support-ribbon__lead {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 22px;
	align-items: center;
}

.hmp-support-ribbon .hmp-icon {
	border-color: var(--hmp-gold);
	color: var(--hmp-gold-2);
}

.hmp-support-ribbon h2 {
	color: #fff6d7;
}

.hmp-support-ribbon p {
	max-width: 600px;
	color: rgba(255, 255, 255, 0.84);
}

.hmp-support-ribbon__links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hmp-support-ribbon__links a {
	border-left: 1px solid rgba(255, 255, 255, 0.18);
	color: #fff6d7;
	padding: 8px 18px;
}

.hmp-support-ribbon img {
	position: absolute;
	right: 0;
	bottom: 0;
	width: min(34%, 430px);
	height: 100%;
	opacity: 0.18;
	mix-blend-mode: screen;
}

.hmp-site-footer {
	margin-top: clamp(46px, 7vw, 78px);
	background:
		linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(248, 239, 224, 0.98)),
		var(--hmp-soft);
	border-top: 1px solid var(--hmp-line);
	color: #2c3a36;
}

.hmp-footer-inner {
	width: min(1280px, calc(100% - 56px));
	grid-template-columns: 1.35fr repeat(3, 1fr);
}

.hmp-site-footer h2 {
	color: var(--hmp-deep);
	font-size: 21px;
}

.hmp-site-footer a {
	color: var(--hmp-deep);
}

.hmp-footer-bottom {
	width: 100%;
	background: var(--hmp-deep);
	color: rgba(255, 255, 255, 0.78);
	text-align: center;
}

/* Final footer system: overrides the starter footer rules above. */
.hmp-site-footer {
	margin-top: clamp(46px, 7vw, 78px);
	background:
		linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(246, 239, 223, 0.98)),
		var(--hmp-paper);
	border-top: 1px solid rgba(199, 149, 46, 0.32);
	color: #273a35;
	overflow: hidden;
}

.hmp-footer-cta {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: clamp(20px, 4vw, 42px);
	align-items: center;
	width: min(1280px, calc(100% - 56px));
	margin: clamp(34px, 5vw, 56px) auto 0;
	border: 2px solid rgba(199, 149, 46, 0.62);
	border-radius: 6px;
	background:
		linear-gradient(135deg, rgba(11, 43, 40, 0.98), rgba(21, 88, 79, 0.94)),
		var(--hmp-deep);
	box-shadow: 0 18px 42px rgba(43, 31, 16, 0.16);
	color: #fff;
	padding: clamp(24px, 4vw, 42px);
}

.hmp-footer-kicker {
	margin: 0 0 10px;
	color: var(--hmp-gold-2);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hmp-footer-cta h2 {
	margin: 0;
	color: #fff6d7;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(32px, 4vw, 52px);
	font-weight: 500;
	line-height: 1.02;
}

.hmp-footer-cta p:not(.hmp-footer-kicker) {
	max-width: 720px;
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 17px;
	line-height: 1.5;
}

.hmp-footer-cta__actions {
	display: grid;
	gap: 12px;
	min-width: min(100%, 260px);
}

.hmp-footer-button {
	display: inline-flex;
	min-height: 50px;
	align-items: center;
	justify-content: center;
	border: 2px solid transparent;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.08em;
	line-height: 1.1;
	padding: 12px 18px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

.hmp-footer-button--gold {
	background: linear-gradient(180deg, var(--hmp-gold-2), var(--hmp-gold));
	color: #17150d;
}

.hmp-footer-button--outline {
	border-color: rgba(255, 246, 215, 0.72);
	color: #fff6d7;
}

.hmp-footer-inner {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(150px, 1fr));
	gap: clamp(22px, 4vw, 46px);
	width: min(1280px, calc(100% - 56px));
	margin-inline: auto;
	padding: clamp(34px, 6vw, 64px) 0;
}

.hmp-footer-inner section {
	min-width: 0;
}

.hmp-footer-logo {
	display: block;
	width: min(250px, 100%);
	height: auto;
	margin: 0 0 18px;
	object-fit: contain;
	object-position: left center;
}

.hmp-site-footer h2 {
	margin: 0 0 14px;
	color: var(--hmp-deep);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(20px, 2vw, 25px);
	line-height: 1.12;
	overflow-wrap: anywhere;
}

.hmp-site-footer p {
	max-width: 540px;
	margin: 0;
	color: #3f4d48;
	line-height: 1.55;
}

.hmp-site-footer a {
	display: block;
	width: fit-content;
	max-width: 100%;
	color: var(--hmp-deep);
	font-weight: 700;
	line-height: 1.35;
	margin-top: 9px;
	text-decoration: none;
	overflow-wrap: anywhere;
}

.hmp-site-footer a:hover,
.hmp-site-footer a:focus {
	color: var(--hmp-burgundy);
}

.hmp-footer-bottom {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 22px;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	background: var(--hmp-deep);
	color: rgba(255, 255, 255, 0.78);
	padding: 16px max(28px, calc((100vw - 1280px) / 2 + 28px));
	text-align: left;
}

.hmp-footer-bottom p {
	max-width: none;
	color: inherit;
	font-size: 14px;
}

.hmp-footer-bottom nav {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 18px;
}

.hmp-footer-bottom a {
	display: inline-flex;
	width: auto;
	color: rgba(255, 255, 255, 0.86);
	font-size: 14px;
	margin: 0;
}

.hmp-footer-bottom a:hover,
.hmp-footer-bottom a:focus {
	color: #fff6d7;
}

.hmp-site-footer .hmp-footer-cta h2 {
	color: #fff6d7;
}

.hmp-site-footer .hmp-footer-kicker {
	color: var(--hmp-gold-2);
}

.hmp-site-footer .hmp-footer-cta p:not(.hmp-footer-kicker) {
	color: rgba(255, 255, 255, 0.88);
}

.hmp-site-footer .hmp-footer-button {
	width: 100%;
	margin: 0;
}

.hmp-site-footer .hmp-footer-button--gold {
	color: #17150d;
}

.hmp-site-footer .hmp-footer-button--outline {
	color: #fff6d7;
}

@media (max-width: 1180px) {
	.hmp-header-inner {
		width: min(100% - 36px, 1280px);
	}

	.hmp-primary-menu {
		gap: 8px;
	}

	.hmp-primary-menu a {
		font-size: 13px;
	}
}

@media (max-width: 980px) {
	.hmp-header-inner {
		min-height: 78px;
		position: relative;
		padding-right: 108px;
	}

	.hmp-brand,
	.hmp-brand img,
	.hmp-brand .custom-logo {
		max-width: 250px;
		width: 250px;
	}

	.hmp-header-actions {
		margin-left: auto;
	}

	.hmp-menu-toggle {
		position: absolute !important;
		top: 18px;
		right: auto;
		left: min(300px, calc(100vw - 92px));
		z-index: 60;
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		min-height: 42px;
		border-radius: 4px;
		border-color: var(--hmp-burgundy);
		background: var(--hmp-burgundy);
		color: #fff;
		padding: 9px 12px;
	}

	.hmp-primary-nav {
		top: 100%;
		left: 0;
		right: auto;
		width: 100vw;
		background: #fffaf0;
	}

	.hmp-primary-menu {
		gap: 0;
		width: 100%;
		justify-content: stretch;
	}

	.hmp-primary-menu li,
	.hmp-primary-menu a,
	.hmp-primary-menu .sub-menu {
		width: 100%;
	}

	.hmp-donate-button {
		min-height: 42px;
		padding-inline: 16px;
	}

	.hmp-district-sign {
		display: none;
	}

	.hmp-quick-links,
	.hmp-featured-homes,
	.hmp-spotlight-grid,
	.hmp-resource-grid,
	.hmp-photo-band,
	.hmp-support-ribbon,
	.hmp-entry-layout,
	.hmp-archive-tools,
	.hmp-sitemap-grid,
	.hmp-footer-cta,
	.hmp-footer-inner {
		grid-template-columns: 1fr;
	}

	.hmp-footer-cta__actions {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hmp-entry-rail {
		position: static;
	}

	.hmp-support-ribbon img {
		display: none;
	}

	.hmp-lp-hero,
	.hmp-lp-card-grid,
	.hmp-lp-card-grid--three,
	.hmp-lp-cta,
	.hmp-event-ad,
	.hmp-event-recap-grid {
		grid-template-columns: 1fr;
	}

	.hmp-lp-hero,
	.hmp-event-ad {
		width: min(100% - 32px, 1280px);
	}

	.hmp-event-ad__image img {
		min-height: 260px;
	}

	.page-id-164 .hmp-lp-hero__image img {
		max-height: 360px;
		min-height: 0;
	}

	.hmp-event-ad__notice {
		margin-top: 0;
	}

	.hmp-lp-button {
		width: 100%;
	}
}

@media (max-width: 680px) {
	.hmp-header-inner,
	.hmp-section,
	.hmp-next-step,
	.hmp-home-hero__content,
	.hmp-footer-cta,
	.hmp-footer-inner {
		width: calc(100vw - 28px);
	}

	.hmp-header-inner {
		width: 100% !important;
		min-height: 78px;
		justify-content: flex-start;
		padding-right: 108px;
		padding-left: 14px;
	}

	.hmp-header-actions {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		flex: 0 0 auto;
		margin-left: 0;
		transform: none;
	}

	.hmp-brand,
	.hmp-brand img,
	.hmp-brand .custom-logo {
		width: 190px;
		max-width: calc(100vw - 126px);
	}

	.hmp-donate-button {
		display: none;
	}

	.hmp-event-ad,
	.hmp-lp-band,
	.hmp-lp-legacy,
	.hmp-lp-cta {
		width: calc(100vw - 28px);
	}

	.hmp-event-ad__copy {
		padding: 22px;
	}

	.hmp-event-ad__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.hmp-home-hero {
		min-height: 640px;
	}

	.hmp-home-hero::before {
		background: linear-gradient(180deg, rgba(7, 41, 34, 0.88), rgba(7, 41, 34, 0.76));
	}

	.hmp-home-hero h1 {
		max-width: 100%;
		font-size: clamp(36px, 10.5vw, 43px);
		line-height: 1.04;
	}

	.hmp-page-hero h1,
	.hmp-single-hero h1,
	.hmp-archive-header h1,
	.hmp-empty h1 {
		font-size: clamp(32px, 9.4vw, 44px);
		line-height: 1.05;
	}

	.hmp-entry-hero .hmp-container {
		width: min(360px, calc(100vw - 28px));
		margin-left: 12px;
		margin-right: auto;
	}

	.hmp-entry-hero p {
		max-width: 100%;
		overflow-wrap: break-word;
	}

	.hmp-entry-meta {
		gap: 8px;
		margin-top: 18px;
	}

	.hmp-entry-meta span {
		width: 100%;
		min-height: 38px;
	}

	.hmp-breadcrumbs {
		max-width: 100%;
		margin-bottom: 14px;
		font-size: 11px;
	}

	.hmp-breadcrumbs ol {
		flex-wrap: nowrap;
		overflow: hidden;
	}

	.hmp-breadcrumbs li {
		min-width: 0;
	}

	.hmp-breadcrumbs li:not(:first-child):not(:last-child) {
		display: none;
	}

	.hmp-breadcrumbs a,
	.hmp-breadcrumbs span {
		max-width: 22ch;
	}

	.hmp-empty h1 {
		font-size: clamp(30px, 7.2vw, 36px);
	}

	.hmp-entry-layout {
		width: min(340px, calc(100vw - 40px)) !important;
		max-width: min(340px, calc(100vw - 40px)) !important;
		margin-right: 0;
		margin-left: 14px;
		padding-block: 24px;
	}

	.hmp-entry-panel,
	.hmp-rail-card {
		padding: 20px;
	}

	.hmp-home-hero__content > p:not(.hmp-kicker) {
		max-width: 330px;
		font-size: 17px;
		overflow-wrap: break-word;
	}

	.hmp-kicker {
		font-size: 12px;
	}

	.hmp-menu-toggle {
		position: absolute !important;
		top: 19px;
		right: auto;
		left: min(300px, calc(100vw - 92px));
		z-index: 60;
		margin-left: 0;
		display: inline-flex !important;
		align-items: center;
		justify-content: center;
		min-height: 40px;
		border-radius: 4px;
		border-color: var(--hmp-burgundy);
		background: var(--hmp-burgundy);
		color: #fff;
		padding: 9px 12px;
	}

	.hmp-feature-tile,
	.hmp-resource-grid article,
	.hmp-support-ribbon__lead {
		grid-template-columns: 1fr;
		min-width: 0;
	}

	.hmp-sitemap-grid {
		padding-block: 24px;
	}

	.hmp-archive-body {
		width: min(340px, calc(100vw - 40px)) !important;
		max-width: min(340px, calc(100vw - 40px)) !important;
		margin-right: 0;
		margin-left: 14px;
	}

	.hmp-archive-topic-grid {
		grid-template-columns: 1fr;
	}

	.hmp-search-empty__links {
		grid-template-columns: 1fr;
	}

	.hmp-archive-tools__search,
	.hmp-archive-topics,
	.hmp-archive-results-heading,
	.hmp-empty--inline {
		padding: 20px;
	}

	.hmp-archive-tools .hmp-search-form {
		display: grid;
	}

	.hmp-archive-tools .hmp-search-form label,
	.hmp-archive-tools .hmp-search-form button {
		width: 100%;
	}

	.hmp-archive-tools h2,
	.hmp-archive-results-heading h2,
	.hmp-empty--inline h2 {
		font-size: clamp(26px, 8vw, 32px);
	}

	.hmp-single-explorer__intro,
	.hmp-related-stories {
		padding: 20px;
	}

	.hmp-single-explorer h2 {
		font-size: clamp(26px, 8vw, 34px);
	}

	.hmp-story-nav,
	.hmp-post-grid--related {
		grid-template-columns: 1fr;
	}

	.hmp-story-nav__item {
		min-height: 0;
	}

	.hmp-footer-cta {
		margin-top: 24px;
		padding: 22px;
	}

	.hmp-footer-cta h2 {
		font-size: clamp(30px, 8vw, 38px);
	}

	.hmp-footer-cta__actions {
		grid-template-columns: 1fr;
	}

	.hmp-footer-inner {
		gap: 24px;
		padding: 30px 0;
	}

	.hmp-footer-logo {
		width: min(220px, 100%);
	}

	.hmp-footer-bottom {
		display: grid;
		gap: 10px;
		justify-content: stretch;
		padding: 16px 14px;
		text-align: left;
	}

	.hmp-footer-bottom nav {
		justify-content: flex-start;
	}

	.hmp-quick-links,
	.hmp-featured-homes,
	.hmp-spotlight-grid,
	.hmp-resource-grid,
	.hmp-actions {
		min-width: 0;
		width: 100%;
	}

	.hmp-feature-tile,
	.hmp-home-card,
	.hmp-spotlight-card,
	.hmp-resource-grid article,
	.hmp-button {
		max-width: 100%;
		min-width: 0;
		overflow: hidden;
	}

	.hmp-feature-tile p,
	.hmp-resource-grid p,
	.hmp-home-card p,
	.hmp-spotlight-card p {
		overflow-wrap: break-word;
	}

	.hmp-section-heading--row {
		align-items: flex-start;
		flex-direction: column;
	}

	.hmp-spotlight-card {
		grid-template-columns: 1fr;
	}

	.hmp-photo-band {
		padding: 18px;
	}

	.hmp-photo-band figure {
		min-height: 260px;
	}

	.hmp-landing-refresh,
	.hmp-content--landing {
		width: 100%;
		max-width: 100vw;
		overflow-x: hidden;
	}

	.hmp-lp-hero {
		width: min(340px, calc(100vw - 40px)) !important;
		max-width: min(340px, calc(100vw - 40px)) !important;
		margin-right: 0;
		margin-left: 14px;
		margin-top: 24px;
		padding: 20px;
	}

	.hmp-lp-hero h1 {
		max-width: calc(100vw - 80px);
		font-size: clamp(30px, 9.3vw, 36px);
		line-height: 1.05;
		text-wrap: auto;
	}

	.hmp-lp-lead {
		font-size: 16px;
		overflow-wrap: break-word;
	}

	.hmp-lp-band,
	.hmp-lp-legacy,
	.hmp-lp-cta {
		width: min(340px, calc(100vw - 40px)) !important;
		max-width: min(340px, calc(100vw - 40px)) !important;
		margin-right: 0;
		margin-left: 14px;
	}

	.hmp-lp-band,
	.hmp-lp-card,
	.hmp-lp-cta,
	.hmp-next-step {
		padding: 20px;
	}

	.hmp-next-step {
		width: min(340px, calc(100vw - 40px)) !important;
		max-width: min(340px, calc(100vw - 40px)) !important;
		margin-right: 0;
		margin-left: 14px;
	}

	.hmp-next-step h2 {
		font-size: clamp(30px, 9vw, 40px);
		overflow-wrap: anywhere;
	}

	.hmp-lp-card-grid,
	.hmp-lp-card-grid--three {
		display: grid;
		grid-template-columns: minmax(0, 1fr);
		width: 100%;
	}

	.hmp-lp-card {
		width: 100% !important;
		max-width: 100% !important;
	}

	.hmp-lp-card h3,
	.hmp-lp-card p {
		max-width: 100%;
		overflow-wrap: anywhere;
		word-break: normal;
	}

	.hmp-lp-legacy img,
	.hmp-lp-legacy iframe,
	.hmp-lp-legacy table {
		max-width: 100%;
	}

	.hmp-legacy-view,
	.hmp-legacy-view-grid,
	.hmp-loop-card,
	.hmp-loop-card__body {
		min-width: 0;
		max-width: 100%;
	}

	.hmp-legacy-view .hmp-post-grid {
		grid-template-columns: minmax(0, 1fr);
		gap: 18px;
	}

	.hmp-loop-card__body {
		padding: 18px;
	}

	.hmp-loop-card h2,
	.hmp-loop-card p,
	.hmp-loop-card a {
		max-width: 100%;
		overflow-wrap: anywhere;
	}

	.hmp-loop-card h2 {
		font-size: clamp(23px, 7vw, 28px);
	}

	.hmp-loop-card p:not(.hmp-card-meta) {
		font-size: 16px;
		line-height: 1.48;
	}
}

/* Conversion and mobile-accessibility refinements. */
.hmp-product-donation .woocommerce-product-gallery {
	display: none !important;
}

.hmp-product-donation div.product .summary {
	float: none !important;
	margin: 0 auto !important;
	max-width: 820px;
	width: 100% !important;
}

.hmp-product-donation div.product .summary > .price {
	display: none;
}

.hmp-product-donation .wdgk_donation_content {
	background: #fffdf7;
	border: 1px solid rgba(199, 149, 44, 0.42);
	box-shadow: 0 18px 42px rgba(15, 26, 22, 0.08);
	margin: 1.25rem 0;
	max-width: 640px;
	padding: clamp(1.15rem, 3vw, 1.75rem);
}

.hmp-product-donation .wdgk_donation_content h3 {
	color: var(--hmp-green);
	font-size: clamp(1.65rem, 4vw, 2.4rem);
	margin: 0 0 0.8rem;
}

.hmp-product-donation .wdgk_display_option {
	align-items: center;
	display: flex;
	gap: 0.5rem;
	margin-bottom: 0.85rem;
}

.hmp-product-donation .wdgk_display_option span {
	color: var(--hmp-green);
	font-size: 1.45rem;
	font-weight: 900;
	margin: 0;
}

.hmp-product-donation input.wdgk_donation,
.hmp-product-donation textarea.donation_note {
	background: #fff;
	border: 1px solid rgba(11, 45, 40, 0.34);
	color: #0b2d28;
	font: inherit;
	min-height: 50px;
	padding: 0.75rem 0.85rem;
	width: 100%;
}

.hmp-product-donation textarea.donation_note {
	min-height: 110px;
	resize: vertical;
}

.hmp-product-donation a.button.wdgk_add_donation {
	align-items: center;
	background: linear-gradient(180deg, #f3cc62 0%, #c7952c 100%) !important;
	border: 1px solid #a7791d !important;
	color: #101915 !important;
	display: inline-flex;
	font-weight: 900;
	justify-content: center;
	margin-top: 0.85rem;
	min-height: 50px;
	padding: 0.8rem 1.2rem !important;
	text-decoration: none;
}

@media (max-width: 760px) {
	.hmp-menu-toggle {
		min-height: 44px;
		min-width: 72px;
	}

	.hmp-feature-tile a,
	.hmp-home-card__body > a,
	.hmp-spotlight-card > div > a,
	.hmp-resource-grid article > a,
	.hmp-section-heading--row > a,
	.hmp-lp-card > a,
	.hmp-lp-card__body > a,
	.hmp-card-link,
	.hmp-support-ribbon__links a {
		align-items: center;
		display: inline-flex;
		min-height: 44px;
		padding-bottom: 0.45rem;
		padding-top: 0.45rem;
	}
}

/* Explore Murphysburg: a practical split between research and an in-person visit. */
.hmp-landing-refresh--explore {
	--hmp-explore-green: #073e35;
	--hmp-explore-green-soft: #0b5145;
	--hmp-explore-gold: #c7952c;
	--hmp-explore-gold-pale: #ffe08a;
	--hmp-explore-ink: #102e29;
	--hmp-explore-muted: #425954;
	--hmp-explore-paper: #fffdf7;
	--hmp-explore-cream: #f5ecd5;
}

.hmp-landing-refresh--explore .hmp-lp-hero {
	align-items: stretch;
	gap: clamp(28px, 5vw, 68px);
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
	min-height: 470px;
}

.hmp-landing-refresh--explore .hmp-lp-hero__copy {
	align-self: center;
}

.hmp-landing-refresh--explore .hmp-lp-hero h1 {
	max-width: 760px;
}

.hmp-landing-refresh--explore .hmp-lp-lead {
	max-width: 55ch;
}

.hmp-landing-refresh--explore .hmp-lp-hero__image {
	height: 100%;
	min-height: 390px;
	overflow: hidden;
}

.hmp-landing-refresh--explore .hmp-lp-hero__image img {
	height: 100%;
	min-height: 390px;
	object-fit: cover;
	object-position: 52% center;
	width: 100%;
}

.hmp-explore-paths {
	background:
		linear-gradient(135deg, rgba(255, 253, 247, 0.98), rgba(247, 239, 217, 0.88)),
		var(--hmp-explore-paper);
}

.hmp-explore-path-grid {
	display: grid;
	gap: clamp(18px, 3vw, 32px);
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hmp-explore-panel {
	background: var(--hmp-explore-paper);
	border: 1px solid rgba(143, 97, 19, 0.3);
	border-top: 6px solid var(--hmp-explore-gold);
	box-shadow: 0 18px 42px rgba(23, 47, 42, 0.08);
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
}

.hmp-explore-panel--visit {
	background: linear-gradient(145deg, var(--hmp-explore-green) 0%, var(--hmp-explore-green-soft) 100%);
	border-color: rgba(199, 149, 44, 0.7);
	box-shadow: 0 22px 48px rgba(7, 62, 53, 0.18);
}

.hmp-explore-panel__header {
	padding: clamp(25px, 4vw, 42px);
}

.hmp-landing-refresh--explore .hmp-explore-panel__header .hmp-lp-kicker {
	color: #8f1f32;
	font-size: 12px;
	letter-spacing: 0.12em;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.hmp-landing-refresh--explore .hmp-explore-panel--visit .hmp-lp-kicker {
	color: var(--hmp-explore-gold-pale);
}

.hmp-landing-refresh--explore .hmp-explore-panel h3 {
	color: var(--hmp-explore-green);
	font-size: clamp(30px, 3vw, 42px);
	letter-spacing: -0.018em;
	line-height: 1.08;
	margin: 0 0 14px;
	max-width: 15ch;
}

.hmp-landing-refresh--explore .hmp-explore-panel--visit h3 {
	color: var(--hmp-explore-paper);
}

.hmp-landing-refresh--explore .hmp-explore-panel__header > p:last-child {
	color: var(--hmp-explore-muted);
	font-size: clamp(16px, 1.2vw, 18px);
	line-height: 1.58;
	margin: 0;
	max-width: 52ch;
}

.hmp-landing-refresh--explore .hmp-explore-panel--visit .hmp-explore-panel__header > p:last-child {
	color: #e8f0ed;
}

.hmp-explore-route-list {
	display: grid;
	list-style: none;
	margin: auto 0 0;
	padding: 0;
}

.hmp-explore-route-list li {
	border-top: 1px solid rgba(143, 97, 19, 0.24);
	margin: 0;
	padding: 0;
}

.hmp-explore-panel--visit .hmp-explore-route-list li {
	border-top-color: rgba(255, 224, 138, 0.28);
}

.hmp-landing-refresh--explore .hmp-explore-route-list a {
	align-items: center;
	color: var(--hmp-explore-ink);
	display: grid;
	gap: 16px;
	grid-template-columns: 32px minmax(0, 1fr) 24px;
	min-height: 112px;
	padding: 19px clamp(22px, 3.5vw, 38px);
	text-decoration: none;
	transition: background-color 160ms ease, color 160ms ease;
}

.hmp-landing-refresh--explore .hmp-explore-route-list a:hover {
	background: rgba(199, 149, 44, 0.1);
}

.hmp-landing-refresh--explore .hmp-explore-route-list a:focus-visible {
	background: rgba(199, 149, 44, 0.12);
	outline: 3px solid #8f1f32;
	outline-offset: -5px;
}

.hmp-landing-refresh--explore .hmp-explore-panel--visit .hmp-explore-route-list a {
	color: var(--hmp-explore-paper);
}

.hmp-landing-refresh--explore .hmp-explore-panel--visit .hmp-explore-route-list a:hover,
.hmp-landing-refresh--explore .hmp-explore-panel--visit .hmp-explore-route-list a:focus-visible {
	background: rgba(255, 255, 255, 0.08);
}

.hmp-landing-refresh--explore .hmp-explore-panel--visit .hmp-explore-route-list a:focus-visible {
	outline-color: var(--hmp-explore-gold-pale);
}

.hmp-explore-route__number {
	color: #8a6113;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.hmp-explore-panel--visit .hmp-explore-route__number {
	color: var(--hmp-explore-gold-pale);
}

.hmp-explore-route__copy {
	display: grid;
	gap: 4px;
}

.hmp-explore-route__copy strong {
	color: inherit;
	font-family: var(--hmp-font-display, Georgia, serif);
	font-size: clamp(21px, 1.8vw, 27px);
	line-height: 1.15;
}

.hmp-explore-route__copy > span {
	color: var(--hmp-explore-muted);
	font-size: 15px;
	line-height: 1.45;
}

.hmp-explore-panel--visit .hmp-explore-route__copy > span {
	color: #e8f0ed;
}

.hmp-explore-route__arrow {
	color: var(--hmp-explore-gold);
	font-size: 24px;
	font-weight: 800;
	justify-self: end;
}

.hmp-explore-panel--visit .hmp-explore-route__arrow {
	color: var(--hmp-explore-gold-pale);
}

.hmp-explore-map {
	align-items: center;
	background:
		linear-gradient(125deg, rgba(245, 236, 213, 0.96), rgba(255, 253, 247, 0.9)),
		var(--hmp-explore-cream);
	border: 1px solid rgba(143, 97, 19, 0.3);
	display: grid;
	gap: clamp(28px, 5vw, 64px);
	grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
}

.hmp-explore-map__figure {
	background: #fff;
	border: 1px solid rgba(7, 62, 53, 0.22);
	box-shadow: 0 18px 42px rgba(23, 47, 42, 0.1);
	margin: 0;
	padding: clamp(10px, 2vw, 18px);
}

.hmp-explore-map__figure > a:first-child {
	display: block;
}

.hmp-explore-map__figure img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-height: 650px;
	object-fit: contain;
	width: 100%;
}

.hmp-explore-map__figure figcaption {
	color: var(--hmp-explore-muted);
	font-size: 13px;
	line-height: 1.45;
	padding: 12px 4px 2px;
}

.hmp-explore-map__figure figcaption a {
	color: var(--hmp-explore-green);
	font-weight: 800;
	margin-left: 5px;
	text-underline-offset: 3px;
}

.hmp-landing-refresh--explore .hmp-explore-map__copy .hmp-lp-kicker {
	color: #8f1f32;
	font-size: 12px;
	letter-spacing: 0.12em;
	margin-bottom: 12px;
	text-transform: uppercase;
}

.hmp-landing-refresh--explore .hmp-explore-map__copy h2 {
	color: var(--hmp-explore-green);
	font-size: clamp(38px, 4vw, 58px);
	letter-spacing: -0.025em;
	line-height: 1.04;
	margin: 0 0 18px;
	max-width: 13ch;
}

.hmp-landing-refresh--explore .hmp-explore-map__copy > p:not(.hmp-lp-kicker) {
	color: var(--hmp-explore-muted);
	font-size: clamp(17px, 1.3vw, 19px);
	line-height: 1.62;
	margin: 0;
	max-width: 54ch;
}

.hmp-explore-map__notes {
	display: grid;
	list-style: none;
	margin: 26px 0;
	padding: 0;
}

.hmp-explore-map__notes li {
	border-top: 1px solid rgba(7, 62, 53, 0.2);
	display: grid;
	gap: 4px;
	padding: 14px 0;
}

.hmp-explore-map__notes li:last-child {
	border-bottom: 1px solid rgba(7, 62, 53, 0.2);
}

.hmp-explore-map__notes strong {
	color: var(--hmp-explore-green);
	font-size: 15px;
	letter-spacing: 0.025em;
}

.hmp-explore-map__notes span {
	color: var(--hmp-explore-muted);
	font-size: 15px;
	line-height: 1.5;
}

.hmp-explore-map__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hmp-explore-map__actions .hmp-lp-button {
	min-height: 50px;
}

@media (max-width: 980px) {
	.hmp-landing-refresh--explore .hmp-lp-hero,
	.hmp-explore-path-grid,
	.hmp-explore-map {
		grid-template-columns: 1fr;
	}

	.hmp-landing-refresh--explore .hmp-lp-hero__image,
	.hmp-landing-refresh--explore .hmp-lp-hero__image img {
		min-height: 330px;
	}

	.hmp-landing-refresh--explore .hmp-lp-hero__image img {
		max-height: 440px;
	}

	.hmp-explore-map__figure {
		margin-inline: auto;
		max-width: 620px;
		width: 100%;
	}
}

@media (max-width: 620px) {
	.hmp-landing-refresh--explore .hmp-lp-hero {
		min-height: 0;
	}

	.hmp-landing-refresh--explore .hmp-lp-hero h1 {
		font-size: clamp(36px, 10vw, 39px);
		line-height: 1;
	}

	.hmp-landing-refresh--explore .hmp-lp-hero__image,
	.hmp-landing-refresh--explore .hmp-lp-hero__image img {
		min-height: 250px;
	}

	.hmp-explore-panel__header {
		padding: 24px 20px;
	}

	.hmp-landing-refresh--explore .hmp-explore-route-list a {
		gap: 12px;
		grid-template-columns: 26px minmax(0, 1fr) 18px;
		min-height: 104px;
		padding: 16px 18px;
	}

	.hmp-explore-route__copy > span {
		font-size: 14px;
	}

	.hmp-explore-map__actions {
		display: grid;
	}

	.hmp-explore-map__actions .hmp-lp-button {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hmp-landing-refresh--explore .hmp-explore-route-list a {
		transition: none;
	}
}

/* Visual elevation pass: field-guide surfaces, refined cards, and heritage CTA treatment. */
body {
	background:
		radial-gradient(circle at 9% 8%, rgba(199, 149, 46, 0.08), transparent 26rem),
		linear-gradient(180deg, #fffaf0 0%, #f5ecd9 48%, #fffaf0 100%);
}

:root {
	--hmp-burgundy: #8f1d2b;
	--hmp-card-border: rgba(199, 149, 46, 0.34);
	--hmp-soft-shadow: 0 18px 42px rgba(43, 31, 16, 0.11);
	--hmp-field-paper: linear-gradient(135deg, rgba(255, 252, 244, 0.96), rgba(246, 239, 223, 0.98));
}

.hmp-site-header {
	border-bottom-color: rgba(199, 149, 46, 0.46);
	background:
		linear-gradient(180deg, rgba(255, 252, 244, 0.98), rgba(255, 248, 231, 0.96));
	box-shadow: 0 14px 34px rgba(23, 32, 39, 0.09);
}

.hmp-header-inner {
	min-height: 86px;
}

.hmp-brand img,
.hmp-brand .custom-logo {
	filter: drop-shadow(0 6px 10px rgba(23, 32, 39, 0.08));
}

.hmp-primary-menu {
	gap: 6px;
}

.hmp-primary-menu a {
	border-radius: 3px;
	padding: 11px 12px;
	transition: background 160ms ease, color 160ms ease;
}

.hmp-primary-menu a:hover,
.hmp-primary-menu a:focus {
	background: rgba(199, 149, 46, 0.1);
	color: var(--hmp-burgundy);
}

.hmp-donate-button,
.hmp-button,
.hmp-footer-button,
.hmp-lp-button,
.hmp-next-step__button,
.hmp-share-actions button,
.hmp-share-actions a {
	border-radius: 3px;
	letter-spacing: 0.075em;
}

.hmp-donate-button,
.hmp-button--gold,
.hmp-footer-button--gold,
.hmp-next-step__button--primary,
.hmp-lp-button {
	background: linear-gradient(180deg, #f5d779 0%, #d5a83a 55%, #b57b21 100%);
	border-color: rgba(93, 61, 16, 0.28);
	box-shadow: 0 10px 22px rgba(94, 61, 16, 0.18);
	color: #17150d;
}

.hmp-entry-hero,
.hmp-page-hero,
.hmp-single-hero,
.hmp-archive-header {
		border-bottom: 1px solid rgba(199, 149, 46, 0.34);
	background:
		linear-gradient(90deg, rgba(255, 250, 240, 0.99), rgba(255, 250, 240, 0.9) 45%, rgba(255, 250, 240, 0.34)),
		var(--hmp-entry-hero-image, linear-gradient(transparent, transparent)),
		var(--hmp-field-paper);
	background-size: cover;
}

.hmp-entry-kicker,
.hmp-card-meta,
.hmp-rail-kicker,
.hmp-footer-kicker,
.hmp-lp-kicker {
	color: var(--hmp-burgundy);
	letter-spacing: 0.16em;
}

.hmp-section-heading,
.hmp-archive-results-heading,
.hmp-lp-section-heading {
	position: relative;
}

.hmp-section-heading::after,
.hmp-archive-results-heading::after,
.hmp-lp-section-heading::after {
	content: "";
	display: block;
	width: min(240px, 46vw);
	height: 1px;
	margin-top: 18px;
	background: linear-gradient(90deg, var(--hmp-gold), rgba(199, 149, 46, 0));
}

.hmp-archive-body,
.hmp-entry-layout {
	padding-top: clamp(44px, 6vw, 74px);
	padding-bottom: clamp(44px, 6vw, 74px);
}

.hmp-entry-panel,
.hmp-archive-tools,
.hmp-archive-results-heading,
.hmp-rail-card,
.hmp-lp-band,
.hmp-lp-card,
.hmp-feature-tile,
.hmp-resource-grid article,
.hmp-path-card,
.hmp-story-card {
	border: 1px solid var(--hmp-card-border);
	background: var(--hmp-field-paper);
	box-shadow: var(--hmp-soft-shadow);
}

.hmp-loop-card {
	position: relative;
	display: grid;
	grid-template-rows: auto 1fr;
	border: 1px solid var(--hmp-card-border);
	background: linear-gradient(180deg, #fffdf6, #f8eedb);
	box-shadow: var(--hmp-soft-shadow);
	overflow: hidden;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hmp-loop-card:hover,
.hmp-loop-card:focus-within {
	border-color: rgba(143, 29, 43, 0.42);
	box-shadow: 0 22px 50px rgba(43, 31, 16, 0.16);
	transform: translateY(-3px);
}

.hmp-loop-card__image {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	margin: 12px 12px 0;
	border: 1px solid rgba(199, 149, 46, 0.48);
	background: #efe2c5;
	overflow: hidden;
}

.hmp-loop-card__image::before,
.hmp-loop-card__image::after {
	content: "";
	position: absolute;
	z-index: 2;
	width: 34px;
	height: 34px;
	border-color: var(--hmp-gold);
	pointer-events: none;
}

.hmp-loop-card__image::before {
	top: 7px;
	left: 7px;
	border-top: 2px solid var(--hmp-gold);
	border-left: 2px solid var(--hmp-gold);
}

.hmp-loop-card__image::after {
	right: 7px;
	bottom: 7px;
	border-right: 2px solid var(--hmp-gold);
	border-bottom: 2px solid var(--hmp-gold);
}

.hmp-loop-card__image img,
.hmp-home-card img,
.hmp-spotlight-card img,
.hmp-single-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.92) contrast(1.04);
	transition: transform 240ms ease, filter 240ms ease;
}

.hmp-entry-main > .hmp-single-image {
	display: grid;
	place-items: center;
	max-height: min(72vh, 720px);
}

.hmp-entry-main > .hmp-single-image img {
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: min(72vh, 720px);
	object-fit: contain;
}

.hmp-loop-card:hover .hmp-loop-card__image img,
.hmp-loop-card:focus-within .hmp-loop-card__image img {
	filter: saturate(1.02) contrast(1.06);
	transform: scale(1.025);
}

.hmp-loop-card__body {
	display: grid;
	align-content: start;
	gap: 12px;
	padding: 22px 22px 24px;
}

.hmp-loop-card h2,
.hmp-loop-card h3 {
	margin: 0;
	color: var(--hmp-deep);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(24px, 2.15vw, 30px);
	line-height: 1.03;
	text-wrap: balance;
}

.hmp-loop-card h2 a,
.hmp-loop-card h3 a {
	color: inherit;
	overflow-wrap: anywhere;
	text-decoration: none;
}

.hmp-site-footer span {
	display: block;
	margin-top: 8px;
	color: #3f4d48;
}

.hmp-loop-card p:not(.hmp-card-meta) {
	margin: 0;
	color: #52625d;
	font-size: 16px;
	line-height: 1.5;
}

.hmp-card-link,
.hmp-loop-card .hmp-card-link {
	align-self: end;
	margin-top: 8px;
	color: var(--hmp-burgundy);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.hmp-card-link::after,
.hmp-loop-card .hmp-card-link::after {
	content: " ->";
	color: var(--hmp-gold);
}

.hmp-post-grid {
	gap: clamp(18px, 2.4vw, 28px);
}

.hmp-next-step,
.hmp-footer-cta,
.hmp-support-ribbon {
	position: relative;
	overflow: hidden;
	border-color: rgba(199, 149, 46, 0.72);
	background:
		linear-gradient(135deg, rgba(9, 35, 32, 0.99), rgba(18, 77, 69, 0.96)),
		var(--hmp-deep);
	box-shadow: 0 24px 52px rgba(9, 35, 32, 0.18);
}

.hmp-next-step::before,
.hmp-footer-cta::before,
.hmp-support-ribbon::before {
	content: "";
	position: absolute;
	inset: 18px;
	border: 1px solid rgba(199, 149, 46, 0.28);
	pointer-events: none;
}

.hmp-next-step__content,
.hmp-next-step__actions,
.hmp-footer-cta > *,
.hmp-support-ribbon > * {
	position: relative;
	z-index: 1;
}

.hmp-next-step h2,
.hmp-footer-cta h2,
.hmp-support-ribbon h2 {
	color: #fff4cf;
	text-shadow: 0 2px 0 rgba(0, 0, 0, 0.14);
}

.hmp-rail-card--dark {
	border-color: rgba(199, 149, 46, 0.62);
	box-shadow: 0 18px 42px rgba(9, 35, 32, 0.14);
}

.hmp-rail-card--tools,
.hmp-rail-card--note {
	box-shadow: var(--hmp-soft-shadow);
}

@media (min-width: 981px) {
	.hmp-post-grid {
		align-items: stretch;
	}

	.hmp-loop-card__body {
		min-height: 290px;
	}
}

@media (max-width: 680px) {
	.hmp-loop-card__image {
		margin: 10px 10px 0;
	}

	.hmp-loop-card__body {
		padding: 18px;
	}

	.hmp-loop-card h2,
	.hmp-loop-card h3 {
		font-size: clamp(24px, 7.4vw, 31px);
	}

	.hmp-next-step::before,
	.hmp-footer-cta::before,
	.hmp-support-ribbon::before {
		inset: 10px;
	}
}

/* Interior page polish: keep archive pages useful above the fold. */
.hmp-page-hero,
.hmp-single-hero,
.hmp-archive-header {
	min-height: auto;
	padding: clamp(28px, 3.8vw, 48px) 0;
	background:
		linear-gradient(90deg, rgba(7, 33, 30, 0.9), rgba(7, 33, 30, 0.58) 42%, rgba(255, 250, 240, 0.2)),
		var(--hmp-entry-hero-image, linear-gradient(transparent, transparent)),
		var(--hmp-field-paper);
	background-position: center;
	background-size: cover;
}

.hmp-entry-hero::before {
	opacity: 0.18;
	filter: saturate(0.78) sepia(0.18) blur(0.2px);
}

.hmp-entry-hero::after {
	background:
		radial-gradient(circle at 11% 14%, rgba(199, 149, 46, 0.14), transparent 22rem),
		linear-gradient(180deg, rgba(255, 250, 240, 0.5), rgba(246, 239, 223, 0.76));
}

.hmp-page-hero .hmp-container,
.hmp-single-hero .hmp-container,
.hmp-archive-header .hmp-container {
	max-width: 1160px;
	border-left: 5px solid var(--hmp-gold);
	background:
		linear-gradient(135deg, rgba(7, 36, 33, 0.96), rgba(18, 82, 73, 0.9)),
		var(--hmp-deep);
	box-shadow: 0 22px 46px rgba(7, 31, 29, 0.22);
	padding: clamp(24px, 4vw, 42px);
}

.hmp-page-hero h1,
.hmp-single-hero h1,
.hmp-archive-header h1 {
	max-width: 760px;
	color: #fff4cf;
	font-size: clamp(42px, 4.9vw, 66px);
	line-height: 0.98;
	text-shadow: 0 3px 0 rgba(0, 0, 0, 0.16);
}

.hmp-page-hero p:not(.hmp-entry-kicker),
.hmp-single-hero p:not(.hmp-entry-kicker),
.hmp-archive-header p:not(.hmp-entry-kicker) {
	max-width: 680px;
	color: rgba(255, 250, 228, 0.92);
	font-size: clamp(18px, 1.7vw, 24px);
	line-height: 1.45;
}

.hmp-page-hero .hmp-breadcrumbs,
.hmp-single-hero .hmp-breadcrumbs,
.hmp-archive-header .hmp-breadcrumbs {
	color: rgba(255, 250, 228, 0.72);
}

.hmp-page-hero .hmp-breadcrumbs a,
.hmp-single-hero .hmp-breadcrumbs a,
.hmp-archive-header .hmp-breadcrumbs a {
	color: #f1c957;
}

.hmp-page-hero .hmp-entry-kicker,
.hmp-single-hero .hmp-entry-kicker,
.hmp-archive-header .hmp-entry-kicker {
	color: #f1c957;
}

.hmp-entry-layout {
	align-items: start;
	padding-top: clamp(28px, 4vw, 44px);
	padding-bottom: clamp(48px, 6vw, 78px);
}

.hmp-entry-panel {
	border: 1px solid rgba(199, 149, 46, 0.48);
	border-left: 6px solid var(--hmp-gold);
	background:
		linear-gradient(135deg, rgba(255, 253, 247, 0.98), rgba(248, 241, 226, 0.96)),
		var(--hmp-field-paper);
	box-shadow: 0 18px 40px rgba(43, 31, 16, 0.1);
	color: var(--hmp-ink);
}

.hmp-entry-panel h2,
.hmp-entry-panel h3,
.hmp-entry-panel h4 {
	color: var(--hmp-deep);
}

.hmp-entry-panel p,
.hmp-entry-panel li {
	color: #243834;
}

.hmp-entry-panel a {
	color: var(--hmp-burgundy);
	font-weight: 800;
	text-underline-offset: 3px;
}

.hmp-entry-rail {
	top: auto;
}

.hmp-rail-card {
	border-color: rgba(199, 149, 46, 0.48);
	background:
		linear-gradient(145deg, rgba(255, 253, 247, 0.98), rgba(248, 239, 219, 0.95)),
		var(--hmp-field-paper);
	color: var(--hmp-ink);
}

.hmp-rail-card--dark {
	background:
		linear-gradient(145deg, rgba(9, 38, 35, 0.98), rgba(18, 82, 73, 0.96)),
		var(--hmp-deep);
	color: #fff8df;
}

.hmp-rail-card h2 {
	color: var(--hmp-deep);
	font-size: clamp(24px, 2vw, 31px);
}

.hmp-rail-card--dark h2 {
	color: #fff2c2;
}

.hmp-rail-card p:not(.hmp-rail-kicker) {
	color: #30423d;
}

.hmp-rail-card--dark p:not(.hmp-rail-kicker) {
	color: rgba(255, 248, 223, 0.9);
}

.hmp-rail-card--dark .hmp-rail-kicker {
	color: #f1c957;
}

.hmp-rail-card a {
	border-bottom-color: rgba(143, 28, 42, 0.28);
	color: var(--hmp-burgundy);
}

.hmp-rail-card--dark a {
	border-bottom-color: rgba(241, 201, 87, 0.45);
	color: #fff2c2;
}

@media (max-width: 980px) {
	.hmp-entry-layout {
		grid-template-columns: 1fr;
	}

	.hmp-entry-rail {
		position: static;
	}
}

@media (max-width: 680px) {
	.hmp-page-hero,
	.hmp-single-hero,
	.hmp-archive-header {
		padding: 24px 0;
	}

	.hmp-page-hero .hmp-container,
	.hmp-single-hero .hmp-container,
	.hmp-archive-header .hmp-container,
	.hmp-entry-layout {
		width: min(100% - 32px, 640px) !important;
		max-width: min(100% - 32px, 640px) !important;
		margin-right: auto;
		margin-left: auto;
	}

	.hmp-page-hero h1,
	.hmp-single-hero h1,
	.hmp-archive-header h1 {
		font-size: clamp(36px, 12vw, 48px);
	}

	.hmp-page-hero p:not(.hmp-entry-kicker),
	.hmp-single-hero p:not(.hmp-entry-kicker),
	.hmp-archive-header p:not(.hmp-entry-kicker) {
		font-size: 17px;
	}

	.hmp-entry-layout {
		padding-block: 28px 44px;
	}
}

/* People directory: use the page as a searchable index, not an article with a sidebar. */
.page-id-4906 .hmp-entry-layout--people {
	display: block;
	width: min(1500px, calc(100% - 48px));
	max-width: min(1500px, calc(100% - 48px));
	padding-top: clamp(22px, 3vw, 38px);
}

.page-id-4906 .hmp-entry-layout--people .hmp-entry-panel {
	border-left-width: 0;
	padding: clamp(20px, 2.6vw, 34px);
}

.page-id-4906 .hmp-people-index {
	max-width: none;
}

.page-id-4906 .hmp-people-index .hmp-archive-results-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 24px;
	align-items: end;
	margin: 0 0 22px;
	border: 0;
	border-bottom: 1px solid rgba(199, 149, 46, 0.32);
	background: transparent;
	box-shadow: none;
	padding: 0 0 22px;
}

.page-id-4906 .hmp-people-index .hmp-archive-results-heading h2 {
	max-width: 920px;
	margin: 6px 0 0;
	font-size: clamp(34px, 3.2vw, 48px);
}

.page-id-4906 .hmp-people-index .hmp-archive-results-heading p:not(.hmp-section-kicker) {
	max-width: 840px;
	margin-top: 10px;
	color: #354741;
	font-size: clamp(16px, 1.2vw, 19px);
}

.page-id-4906 .hmp-people-filter {
	margin: -4px 0 24px;
}

.page-id-4906 .hmp-people-filter input {
	width: min(520px, 100%);
	min-height: 54px;
	border: 1px solid rgba(21, 88, 79, 0.24);
	border-radius: 0;
	background: #fffdf7;
	box-shadow: 0 10px 22px rgba(43, 31, 16, 0.06);
	color: var(--hmp-deep);
	font-size: 17px;
	padding: 0 18px;
}

.page-id-4906 .hmp-people-index .hmp-post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
	gap: 16px;
	align-items: stretch;
}

.page-id-4906 .hmp-people-index .hmp-loop-card {
	display: grid;
	grid-template-columns: 124px minmax(0, 1fr);
	grid-template-rows: 1fr;
	min-height: 190px;
	border-color: rgba(199, 149, 46, 0.34);
	background:
		linear-gradient(135deg, rgba(255, 253, 247, 0.98), rgba(248, 241, 226, 0.96)),
		var(--hmp-field-paper);
	box-shadow: 0 12px 26px rgba(43, 31, 16, 0.08);
}

.page-id-4906 .hmp-people-index .hmp-loop-card:hover,
.page-id-4906 .hmp-people-index .hmp-loop-card:focus-within {
	border-color: rgba(143, 28, 42, 0.45);
	box-shadow: 0 18px 34px rgba(43, 31, 16, 0.13);
	transform: translateY(-2px);
}

.page-id-4906 .hmp-people-index .hmp-loop-card > a.hmp-loop-card__image,
.page-id-4906 .hmp-people-index .hmp-loop-card > a.hmp-loop-card__media {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 190px;
	margin: 0;
	border: 0;
	background:
		linear-gradient(135deg, rgba(11, 43, 40, 0.9), rgba(21, 88, 79, 0.84)),
		var(--hmp-deep);
	overflow: hidden;
}

.page-id-4906 .hmp-people-index .hmp-loop-card > a.hmp-loop-card__image img,
.page-id-4906 .hmp-people-index .hmp-loop-card > a.hmp-loop-card__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	filter: sepia(0.12) saturate(0.9);
	transition: transform 180ms ease, filter 180ms ease;
}

.page-id-4906 .hmp-people-index .hmp-loop-card:hover > a img,
.page-id-4906 .hmp-people-index .hmp-loop-card:focus-within > a img {
	filter: sepia(0) saturate(1);
	transform: scale(1.04);
}

.page-id-4906 .hmp-people-index .hmp-loop-card:not(:has(> a.hmp-loop-card__image)):not(:has(> a.hmp-loop-card__media)) {
	grid-template-columns: 1fr;
}

.page-id-4906 .hmp-people-index .hmp-loop-card__body {
	display: flex;
	min-width: 0;
	min-height: 0;
	flex-direction: column;
	justify-content: center;
	padding: 18px 20px;
}

.page-id-4906 .hmp-people-index .hmp-card-meta {
	margin-bottom: 8px;
	color: var(--hmp-burgundy);
	font-size: 11px;
	letter-spacing: 0.14em;
}

.page-id-4906 .hmp-people-index .hmp-loop-card h2 {
	margin: 0;
	font-size: clamp(24px, 2vw, 31px);
	line-height: 1.02;
}

.page-id-4906 .hmp-people-index .hmp-loop-card h2 a {
	color: var(--hmp-deep);
	text-decoration: none;
}

.page-id-4906 .hmp-people-index .hmp-loop-card p:not(.hmp-card-meta) {
	display: -webkit-box;
	margin: 10px 0 0;
	color: #354741;
	font-size: 15px;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.page-id-4906 .hmp-people-index .hmp-card-link {
	align-self: flex-start;
	margin-top: 14px;
	border-bottom: 2px solid rgba(199, 149, 46, 0.75);
	color: var(--hmp-burgundy);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.07em;
	text-decoration: none;
	text-transform: uppercase;
}

@media (min-width: 1380px) {
	.page-id-4906 .hmp-people-index .hmp-post-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.page-id-4906 .hmp-entry-layout--people {
		width: min(100% - 28px, 680px) !important;
		max-width: min(100% - 28px, 680px) !important;
	}

	.page-id-4906 .hmp-people-index .hmp-archive-results-heading {
		display: block;
	}

	.page-id-4906 .hmp-people-index .hmp-post-grid {
		grid-template-columns: 1fr;
	}

	.page-id-4906 .hmp-people-index .hmp-loop-card {
		grid-template-columns: 104px minmax(0, 1fr);
		min-height: 168px;
	}

	.page-id-4906 .hmp-people-index .hmp-loop-card > a.hmp-loop-card__image,
	.page-id-4906 .hmp-people-index .hmp-loop-card > a.hmp-loop-card__media {
		min-height: 168px;
	}

	.page-id-4906 .hmp-people-index .hmp-loop-card__body {
		padding: 16px;
	}
}

@media (max-width: 640px) {
	.page-id-4906 {
		overflow-x: hidden;
	}

	.page-id-4906 .hmp-entry-layout--people {
		width: calc(100vw - 28px) !important;
		max-width: calc(100vw - 28px) !important;
		margin-right: auto !important;
		margin-left: auto !important;
	}

	.page-id-4906 .hmp-entry-layout--people .hmp-entry-panel {
		box-sizing: border-box;
		overflow: hidden;
	}

	.page-id-4906 .hmp-people-index .hmp-archive-results-heading h2 {
		max-width: calc(100vw - 62px);
		font-size: clamp(30px, 9vw, 40px);
	}

	.page-id-4906 .hmp-people-index .hmp-archive-results-heading p:not(.hmp-section-kicker) {
		max-width: calc(100vw - 62px);
	}

	.page-id-4906 .hmp-people-index .hmp-loop-card {
		grid-template-columns: 96px minmax(0, 1fr);
	}
}

@media (max-width: 480px) {
	.page-id-4906 {
		overflow-x: hidden;
	}

	.page-id-4906 .hmp-entry-layout--people {
		width: calc(100vw - 28px) !important;
		max-width: calc(100vw - 28px) !important;
		margin-right: auto !important;
		margin-left: auto !important;
		padding-right: 0;
		padding-left: 0;
	}

	.page-id-4906 .hmp-entry-layout--people .hmp-entry-panel {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		overflow: hidden;
		padding: 16px;
	}

	.page-id-4906 .hmp-people-index,
	.page-id-4906 .hmp-people-index * {
		max-width: 100%;
	}

	.page-id-4906 .hmp-people-index .hmp-archive-results-heading h2 {
		max-width: calc(100vw - 62px);
		font-size: clamp(30px, 10vw, 38px);
	}

	.page-id-4906 .hmp-people-index .hmp-archive-results-heading p:not(.hmp-section-kicker) {
		max-width: calc(100vw - 62px);
		overflow-wrap: anywhere;
	}

	.page-id-4906 .hmp-people-index .hmp-loop-card,
	.page-id-4906 .hmp-people-index .hmp-loop-card:not(:has(> a.hmp-loop-card__image)):not(:has(> a.hmp-loop-card__media)) {
		grid-template-columns: 96px minmax(0, 1fr);
		min-height: 164px;
	}

	.page-id-4906 .hmp-people-index .hmp-loop-card > a.hmp-loop-card__image,
	.page-id-4906 .hmp-people-index .hmp-loop-card > a.hmp-loop-card__media {
		aspect-ratio: auto;
		min-height: 164px;
	}

	.page-id-4906 .hmp-people-index .hmp-loop-card:not(:has(> a.hmp-loop-card__image)):not(:has(> a.hmp-loop-card__media)) {
		grid-template-columns: 1fr;
	}

	.page-id-4906 .hmp-people-index .hmp-loop-card h2 {
		font-size: clamp(22px, 7vw, 28px);
	}

	.page-id-4906 .hmp-people-index .hmp-loop-card p:not(.hmp-card-meta) {
		-webkit-line-clamp: 2;
	}
}

.hmp-person-profile {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
	gap: clamp(24px, 4vw, 48px);
	align-items: start;
}

.hmp-person-profile__article > :first-child {
	margin-top: 0;
}

.hmp-person-profile__article > :last-child {
	margin-bottom: 0;
}

.hmp-person-profile__side {
	display: grid;
	gap: 18px;
}

.hmp-person-profile__picture {
	margin: 0;
	border: 1px solid rgba(199, 149, 46, 0.34);
	background: var(--hmp-field-paper);
	box-shadow: 0 14px 30px rgba(43, 31, 16, 0.1);
	padding: 10px;
}

.hmp-person-profile__picture img {
	display: block;
	width: 100%;
	height: auto;
}

.hmp-person-profile__links {
	border: 1px solid rgba(21, 88, 79, 0.16);
	background: #fffdf7;
	padding: 20px;
}

.hmp-person-profile__links h2 {
	margin: 0 0 14px;
	color: var(--hmp-deep);
	font-size: 22px;
}

.hmp-person-profile__links ul {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hmp-person-profile__links li {
	margin: 0;
}

.hmp-person-profile__links a,
.hmp-person-profile__links strong {
	color: var(--hmp-burgundy);
	font-weight: 900;
}

.hmp-person-profile__links span {
	display: block;
	margin-top: 3px;
	color: #53625e;
	font-size: 14px;
	line-height: 1.4;
}

@media (max-width: 880px) {
	.hmp-person-profile {
		grid-template-columns: 1fr;
	}

	.hmp-person-profile__side {
		order: -1;
	}

	.hmp-person-profile__picture {
		max-width: 420px;
	}
}

@media print {
	*,
	*::before,
	*::after {
		background: transparent !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}

	html,
	body {
		background: #fff !important;
		color: #111 !important;
		font-size: 12pt;
	}

	body {
		margin: 0;
	}

	a,
	a:visited {
		color: #111 !important;
		text-decoration: underline;
	}

	img {
		max-width: 100% !important;
		page-break-inside: avoid;
	}

	.hmp-site-header,
	.hmp-site-footer,
	.hmp-breadcrumbs,
	.hmp-entry-rail,
	.hmp-single-explorer,
	.hmp-footer-cta,
	.hmp-topbar,
	.hmp-menu-toggle,
	.hmp-primary-menu,
	#wpadminbar {
		display: none !important;
	}

	.hmp-content,
	.hmp-entry-shell,
	.hmp-entry-layout,
	.hmp-entry-main,
	.hmp-entry-panel,
	.hmp-entry-content {
		display: block !important;
		width: 100% !important;
		max-width: none !important;
		margin: 0 !important;
		padding: 0 !important;
		border: 0 !important;
	}

	.hmp-entry-shell {
		padding: 0.35in !important;
	}

	.hmp-entry-header {
		margin-bottom: 18pt !important;
		padding-bottom: 12pt !important;
		border-bottom: 1px solid #999 !important;
	}

	.hmp-entry-header h1 {
		color: #111 !important;
		font-size: 28pt !important;
		line-height: 1.08 !important;
	}

	.hmp-entry-content {
		color: #111 !important;
		font-family: Georgia, "Times New Roman", serif !important;
		font-size: 12pt !important;
		line-height: 1.55 !important;
	}

	.hmp-entry-content a[href]::after {
		content: " (" attr(href) ")";
		font-size: 9pt;
		word-break: break-all;
	}

	.hmp-entry-image,
	.hmp-single-image {
		margin: 0 0 16pt !important;
		page-break-inside: avoid;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

/* Museum finish layer: calmer spacing, stronger hierarchy, and safer footer/layout behavior. */
:root {
	--hmp-museum-panel: linear-gradient(135deg, rgba(255, 253, 247, 0.98), rgba(248, 241, 226, 0.97));
	--hmp-museum-border: rgba(199, 149, 46, 0.34);
	--hmp-museum-shadow: 0 18px 42px rgba(43, 31, 16, 0.1);
}

.hmp-main {
	background:
		linear-gradient(180deg, rgba(255, 253, 247, 0.9), rgba(246, 239, 223, 0.72)),
		var(--hmp-paper);
}

.hmp-page-hero,
.hmp-single-hero,
.hmp-archive-header {
	padding-block: clamp(22px, 3vw, 38px);
}

.hmp-page-hero .hmp-container,
.hmp-single-hero .hmp-container,
.hmp-archive-header .hmp-container {
	width: min(1280px, calc(100% - 48px));
	max-width: 1280px;
	border: 1px solid rgba(199, 149, 46, 0.35);
	border-left: 6px solid var(--hmp-gold);
	padding: clamp(24px, 3.6vw, 42px);
}

.hmp-page-hero h1,
.hmp-single-hero h1,
.hmp-archive-header h1 {
	max-width: 980px;
	font-size: clamp(38px, 4.4vw, 62px);
	letter-spacing: 0;
}

.hmp-page-hero p:not(.hmp-entry-kicker),
.hmp-single-hero p:not(.hmp-entry-kicker),
.hmp-archive-header p:not(.hmp-entry-kicker) {
	max-width: 820px;
	font-size: clamp(18px, 1.45vw, 23px);
}

.hmp-entry-layout {
	width: min(1280px, calc(100% - 48px));
	max-width: 1280px;
	gap: clamp(24px, 3.5vw, 44px);
	padding-top: clamp(24px, 3vw, 40px);
}

.hmp-entry-panel {
	border-color: var(--hmp-museum-border);
	background: var(--hmp-museum-panel), #fffdf7;
	box-shadow: var(--hmp-museum-shadow);
}

.hmp-entry-content,
.hmp-entry-panel,
.hmp-person-profile__article,
.hmp-event-profile .hmp-person-profile__article {
	font-size: clamp(18px, 1.35vw, 20px);
	line-height: 1.72;
}

.hmp-entry-panel h2,
.hmp-entry-panel h3,
.hmp-entry-panel h4,
.hmp-person-profile__article h2,
.hmp-person-profile__article h3,
.hmp-event-profile .hmp-person-profile__article h2,
.hmp-event-profile .hmp-person-profile__article h3 {
	margin-top: clamp(26px, 4vw, 46px);
	margin-bottom: 12px;
	color: var(--hmp-deep);
	font-family: Georgia, "Times New Roman", serif;
	letter-spacing: 0;
	text-wrap: balance;
}

.hmp-entry-panel h2,
.hmp-person-profile__article h2,
.hmp-event-profile .hmp-person-profile__article h2 {
	font-size: clamp(30px, 3vw, 42px);
	line-height: 1.08;
}

.hmp-entry-panel h3,
.hmp-person-profile__article h3,
.hmp-event-profile .hmp-person-profile__article h3 {
	font-size: clamp(24px, 2.2vw, 32px);
	line-height: 1.12;
}

.hmp-entry-panel p,
.hmp-entry-panel li {
	max-width: 78ch;
}

.hmp-person-profile__identity,
.hmp-place-at-a-glance,
.hmp-event-profile__summary,
.hmp-event-profile__sales-hero,
.hmp-event-profile__details,
.hmp-event-profile__tickets,
.hmp-person-profile__links,
.hmp-place-card,
.hmp-people-card-public,
.hmp-loop-card {
	border-color: var(--hmp-museum-border);
	background: var(--hmp-museum-panel), #fffdf7;
	box-shadow: 0 14px 32px rgba(43, 31, 16, 0.075);
}

.hmp-place-at-a-glance,
.hmp-event-profile__summary,
.hmp-event-profile__sales-hero,
.hmp-event-profile__tickets {
	border-left: 6px solid var(--hmp-gold);
}

.hmp-person-profile__picture,
.hmp-place-gallery__grid a,
.hmp-person-gallery__grid a {
	border-color: rgba(199, 149, 46, 0.42);
	background: #fffdf7;
	box-shadow: 0 14px 30px rgba(43, 31, 16, 0.08);
}

.hmp-person-profile__picture figcaption,
.hmp-place-gallery figcaption,
.hmp-person-gallery figcaption {
	border-top: 1px solid rgba(199, 149, 46, 0.22);
	padding-top: 8px;
	color: #4d5d58;
	font-size: 13px;
}

.hmp-person-profile__links,
.hmp-rail-card {
	padding: clamp(18px, 2.4vw, 24px);
}

.hmp-rail-card h2,
.hmp-person-profile__links h2,
.hmp-place-section-title,
.hmp-place-gallery h2,
.hmp-person-gallery h2 {
	letter-spacing: 0;
	text-wrap: balance;
}

.hmp-place-profile-page .hmp-entry-panel,
.hmp-people-profile-page .hmp-entry-panel,
.hmp-event-profile-page .hmp-entry-panel {
	max-width: min(100%, 1120px) !important;
}

.hmp-place-profile-page .hmp-entry-rail,
.hmp-people-profile-page .hmp-entry-rail,
.hmp-person-profile__side {
	max-width: min(100%, 1120px) !important;
	margin-inline: auto;
}

.hmp-event-profile__summary-copy p:not(.hmp-event-profile__eyebrow),
.hmp-event-profile__sales-hero p,
.hmp-place-at-a-glance dd,
.hmp-person-profile__facts span {
	color: #243834;
}

.hmp-event-profile__button,
.hmp-event-profile__ticket-button,
.hmp-footer-button,
.hmp-next-step__button,
.hmp-donate-button,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	border-radius: 3px !important;
	letter-spacing: 0.075em;
}

.hmp-event-profile__button--primary,
.hmp-event-profile__ticket-button,
.hmp-next-step__button--primary,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
	background: linear-gradient(180deg, var(--hmp-burgundy), var(--hmp-burgundy-dark)) !important;
	color: #fffdf7 !important;
}

.hmp-site-footer {
	position: relative;
	z-index: 2;
	clear: both;
	margin-top: clamp(34px, 5vw, 58px);
	overflow: clip;
}

.hmp-footer-cta {
	width: min(1280px, calc(100% - 48px));
	margin-top: clamp(24px, 4vw, 42px);
	border-radius: 4px;
}

.hmp-footer-inner {
	width: min(1280px, calc(100% - 48px));
	grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 1fr));
	align-items: start;
}

.hmp-footer-about {
	max-width: 420px;
}

.hmp-footer-logo {
	width: min(220px, 100%) !important;
	max-width: 220px !important;
	max-height: 110px;
	object-fit: contain;
}

.hmp-site-footer a,
.hmp-site-footer span,
.hmp-site-footer p {
	overflow-wrap: anywhere;
}

.hmp-place-profile-page .hmp-site-footer,
.hmp-people-profile-page .hmp-site-footer,
.hmp-event-profile-page .hmp-site-footer,
.single-hmp_place .hmp-site-footer,
.single-hmp_person .hmp-site-footer,
.single-hmp_event .hmp-site-footer {
	margin-top: clamp(28px, 4vw, 46px);
}

@media (min-width: 1120px) {
	.hmp-entry-layout {
		grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
	}

	.hmp-entry-main {
		min-width: 0;
	}
}

@media (max-width: 980px) {
	.hmp-page-hero .hmp-container,
	.hmp-single-hero .hmp-container,
	.hmp-archive-header .hmp-container,
	.hmp-entry-layout,
	.hmp-footer-cta,
	.hmp-footer-inner {
		width: min(100% - 36px, 900px) !important;
	}

	.hmp-footer-cta,
	.hmp-footer-inner {
		grid-template-columns: 1fr;
	}

	.hmp-footer-about {
		max-width: 640px;
	}
}

@media (max-width: 680px) {
	.hmp-page-hero .hmp-container,
	.hmp-single-hero .hmp-container,
	.hmp-archive-header .hmp-container,
	.hmp-entry-layout,
	.hmp-footer-cta,
	.hmp-footer-inner {
		width: min(100% - 28px, 640px) !important;
	}

	.hmp-page-hero,
	.hmp-single-hero,
	.hmp-archive-header {
		padding-block: 18px;
	}

	.hmp-page-hero h1,
	.hmp-single-hero h1,
	.hmp-archive-header h1 {
		font-size: clamp(34px, 10vw, 46px);
	}

	.hmp-entry-panel,
	.hmp-person-profile__identity,
	.hmp-place-at-a-glance,
	.hmp-event-profile__summary,
	.hmp-event-profile__sales-hero,
	.hmp-event-profile__details,
	.hmp-event-profile__tickets {
		padding: 18px !important;
	}

	.hmp-footer-cta {
		padding: 22px;
	}

	.hmp-footer-logo {
		max-width: 190px !important;
	}
}

.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-media-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)) !important;
	gap: clamp(18px, 3vw, 28px) !important;
	align-items: start !important;
	width: 100% !important;
	max-width: 980px !important;
	margin: clamp(28px, 4vw, 44px) auto !important;
	clear: both;
}

.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-media-grid .wp-block-column {
	display: flex !important;
	flex-direction: column;
	gap: 10px;
	min-width: 0 !important;
	width: 100% !important;
	flex-basis: auto !important;
	flex-grow: 0 !important;
}

.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-media-grid .wp-block-image,
.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-media-grid figure {
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	clear: none !important;
}

.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-media-grid img {
	display: block !important;
	width: 100% !important;
	height: auto !important;
	max-width: 100% !important;
	max-height: 420px !important;
	object-fit: contain;
	background: #fffdf7;
	border: 1px solid rgba(199, 149, 46, 0.34);
	box-shadow: 0 12px 26px rgba(43, 31, 16, 0.08);
	padding: 8px;
}

.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-media-grid .wp-block-jetpack-slideshow {
	width: min(100%, 460px) !important;
	max-width: 100% !important;
	margin: 0 auto !important;
	overflow: hidden;
}

.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-media-grid .wp-block-jetpack-slideshow_container,
.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-media-grid .wp-block-jetpack-slideshow_swiper-wrapper {
	display: block !important;
	width: 100% !important;
	height: auto !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	transform: none !important;
	overflow: visible !important;
}

.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-media-grid .wp-block-jetpack-slideshow_slide {
	display: none !important;
	width: 100% !important;
	height: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-media-grid .wp-block-jetpack-slideshow_slide:first-child {
	display: block !important;
}

.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-media-grid .wp-block-jetpack-slideshow figure {
	display: block !important;
	width: 100% !important;
	margin: 0 !important;
}

.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-media-grid .wp-block-jetpack-slideshow img {
	width: auto !important;
	max-width: 100% !important;
	max-height: 460px !important;
	margin: 0 auto !important;
}

.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-media-grid .wp-block-jetpack-slideshow_button-prev,
.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-media-grid .wp-block-jetpack-slideshow_button-next,
.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-media-grid .wp-block-jetpack-slideshow_button-pause,
.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-media-grid .wp-block-jetpack-slideshow_pagination {
	display: none !important;
}

.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-media-grid figcaption,
.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-media-grid p {
	display: block !important;
	width: 100%;
	max-width: 100% !important;
	margin: 0 !important;
	color: #173531;
	font-size: clamp(14px, 1.15vw, 16px) !important;
	font-weight: 800;
	line-height: 1.4 !important;
	text-align: center;
	overflow-wrap: normal;
	word-break: normal;
	white-space: normal;
}

.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-media-grid + p,
.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-media-grid + .wp-block-image,
.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-media-grid + .wp-block-columns {
	margin-top: clamp(28px, 5vw, 52px) !important;
	clear: both;
}

.hmp-legacy-event-recap .hmp-entry-panel > .wp-block-image,
.hmp-legacy-event-recap .hmp-entry-panel > figure.wp-block-image {
	display: block !important;
	width: min(100%, 760px) !important;
	max-width: 760px !important;
	margin: clamp(28px, 4vw, 46px) auto !important;
	clear: both;
}

.hmp-legacy-event-recap .hmp-entry-panel > .wp-block-image img,
.hmp-legacy-event-recap .hmp-entry-panel > figure.wp-block-image img {
	display: block !important;
	width: auto !important;
	max-width: 100% !important;
	height: auto !important;
	max-height: min(78vh, 760px) !important;
	margin: 0 auto !important;
	object-fit: contain;
}

.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-clue-grid {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)) !important;
	gap: clamp(18px, 3vw, 28px) !important;
	max-width: 980px !important;
	margin: clamp(30px, 4vw, 44px) auto !important;
	padding-top: clamp(18px, 3vw, 28px);
	border-top: 1px solid rgba(21, 88, 79, 0.18);
	clear: both;
}

.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-clue-grid .wp-block-column {
	padding: 16px;
	background: rgba(255, 253, 247, 0.82);
	border: 1px solid rgba(199, 149, 46, 0.24);
}

.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-clue-grid p {
	max-width: 100% !important;
	margin: 0;
	font-size: clamp(15px, 1.1vw, 17px) !important;
	line-height: 1.58 !important;
}

.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-recap-feature,
.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-photo-grid {
	width: 100%;
	max-width: 980px !important;
	margin: clamp(30px, 5vw, 54px) auto !important;
	clear: both;
}

.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-recap-feature {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
	gap: clamp(22px, 4vw, 42px);
	align-items: center;
	padding: clamp(18px, 3vw, 28px);
	border: 1px solid rgba(199, 149, 46, 0.24);
	background: rgba(255, 253, 247, 0.72);
}

.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-recap-feature__copy {
	display: grid;
	gap: 14px;
}

.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-recap-feature__copy > * {
	max-width: 100% !important;
	margin: 0 !important;
}

.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-recap-feature__photos,
.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-photo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
	gap: clamp(16px, 2.4vw, 24px);
	align-items: start;
}

.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-recap-feature__photos {
	grid-template-columns: 1fr;
}

.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-photo-card {
	display: grid;
	gap: 10px;
	width: 100%;
	max-width: 100%;
	margin: 0 !important;
	padding: 10px;
	background: #fffdf7;
	border: 1px solid rgba(199, 149, 46, 0.34);
	box-shadow: 0 12px 26px rgba(43, 31, 16, 0.08);
}

.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-photo-card img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
	max-height: 440px;
	object-fit: contain;
	margin: 0 auto;
}

.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-recap-feature .hmp-legacy-photo-card img {
	width: auto;
	max-height: 460px;
}

.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-photo-card figcaption {
	margin: 0;
	color: #173531;
	font-size: clamp(14px, 1.1vw, 16px);
	font-weight: 850;
	line-height: 1.35;
	text-align: center;
	word-break: normal;
	overflow-wrap: normal;
}

.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-recap-feature + *,
.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-photo-grid + * {
	margin-top: clamp(28px, 5vw, 52px) !important;
}

@media (max-width: 820px) {
	.hmp-legacy-event-recap .hmp-entry-panel .hmp-legacy-recap-feature {
		grid-template-columns: 1fr;
	}
}

/* Visual template completion: museum-quality hierarchy, cards, and support commerce. */
.hmp-home-hero {
	min-height: clamp(500px, 72vh, 740px);
}

.hmp-home-hero h1 {
	max-width: 840px;
	font-size: clamp(42px, 6vw, 72px);
	line-height: 1.02;
}

.hmp-lp-hero {
	margin-top: clamp(22px, 4vw, 42px);
	padding: clamp(22px, 3.5vw, 38px);
}

.hmp-lp-hero h1 {
	max-width: 14ch;
	font-size: clamp(42px, 4.5vw, 62px);
	line-height: 1.02;
}

.hmp-lp-lead {
	max-width: 760px;
}

.hmp-lp-card {
	min-height: 180px;
}

.hmp-lp-card h3,
.hmp-loop-card h2,
.hmp-loop-card h3,
.hmp-place-card h2,
.hmp-people-card-public h2 {
	letter-spacing: 0;
	overflow-wrap: anywhere;
	text-wrap: balance;
}

.hmp-card-badges,
.hmp-place-card__kicker,
.hmp-people-card-public__terms,
.hmp-person-profile__terms,
.hmp-place-record-overview__chips,
.hmp-event-profile__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	align-items: center;
	margin: 0 0 12px;
}

.hmp-card-badges span,
.hmp-place-card__kicker span,
.hmp-people-card-public__terms span,
.hmp-person-profile__terms span,
.hmp-place-record-overview__chips span,
.hmp-event-profile__chips span,
.hmp-commerce-product-badge {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	border: 1px solid rgba(143, 28, 42, 0.18);
	border-radius: 999px;
	background: rgba(255, 248, 231, 0.78);
	color: var(--hmp-burgundy);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.07em;
	line-height: 1;
	padding: 6px 9px;
	text-transform: uppercase;
}

.hmp-card-badges span:first-child,
.hmp-commerce-product-badge {
	border-color: rgba(21, 88, 79, 0.22);
	background: rgba(21, 88, 79, 0.08);
	color: var(--hmp-deep);
}

.hmp-loop-card__body {
	gap: 10px;
}

.hmp-loop-card__body > p:not(.hmp-card-meta) {
	margin-top: 0;
}

.hmp-profile-dek {
	max-width: 760px;
	margin: 0 0 clamp(16px, 2vw, 22px) !important;
	color: #203a35;
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(21px, 2.2vw, 30px);
	line-height: 1.28;
	text-wrap: balance;
}

.hmp-profile-provenance {
	border-left: 5px solid var(--hmp-gold) !important;
}

.hmp-profile-provenance p {
	margin: 0;
	color: #344944;
	font-size: 15px;
	line-height: 1.5;
}

.hmp-support-commerce-paths {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: clamp(12px, 2vw, 18px);
	margin: 0 0 clamp(28px, 4vw, 44px);
}

.hmp-support-commerce-paths a {
	display: grid;
	gap: 6px;
	border: 1px solid rgba(199, 149, 46, 0.34);
	border-top: 4px solid rgba(199, 149, 46, 0.72);
	border-radius: 5px;
	background: #fffdf7;
	box-shadow: 0 12px 28px rgba(43, 31, 16, 0.06);
	color: var(--hmp-deep);
	padding: 16px;
	text-decoration: none;
}

.hmp-support-commerce-paths a:hover,
.hmp-support-commerce-paths a:focus {
	border-color: rgba(21, 88, 79, 0.34);
	box-shadow: 0 18px 38px rgba(43, 31, 16, 0.1);
	color: var(--hmp-burgundy);
}

.hmp-support-commerce-paths strong,
.hmp-support-commerce-paths span {
	display: block;
}

.hmp-support-commerce-paths strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 22px;
	line-height: 1.1;
}

.hmp-support-commerce-paths span {
	color: #53625e;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.35;
}

.woocommerce ul.products li.product {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	color: var(--hmp-deep);
	font-size: clamp(19px, 1.8vw, 24px);
	line-height: 1.18;
}

.woocommerce ul.products li.product .button {
	margin-top: auto;
}

.hmp-commerce-product-badge {
	width: fit-content;
	margin: 0 0 2px !important;
}

@media (max-width: 980px) {
	.hmp-support-commerce-paths {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.hmp-home-hero {
		min-height: clamp(520px, 78vh, 620px);
	}

	.hmp-home-hero h1 {
		font-size: clamp(36px, 10vw, 43px);
	}

	.hmp-lp-hero {
		width: calc(100vw - 28px);
		margin-top: 18px;
		padding: 18px;
	}

	.hmp-lp-hero h1 {
		max-width: 100%;
		font-size: clamp(36px, 10vw, 46px);
		line-height: 1.04;
	}

	.hmp-profile-dek {
		font-size: clamp(19px, 6vw, 24px);
	}

	.hmp-single-hero h1 {
		font-size: clamp(28px, 7vw, 31px);
		line-height: 1.08;
		overflow-wrap: normal;
		word-break: normal;
		hyphens: none;
		text-wrap: balance;
	}

	.hmp-people-profile-page .hmp-entry-hero h1 {
		font-size: clamp(28px, 7vw, 31px) !important;
		line-height: 1.08 !important;
		overflow-wrap: normal !important;
		word-break: normal !important;
		hyphens: none;
	}

	.hmp-support-commerce-paths {
		grid-template-columns: 1fr;
	}
}

/* Homepage path cards: keep the four first-screen actions visually uniform. */
.hmp-quick-links {
	align-items: stretch;
}

.hmp-quick-links .hmp-feature-tile {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 16px;
	min-height: 190px;
	height: 100%;
	padding: clamp(22px, 2vw, 26px);
}

.hmp-quick-links .hmp-feature-tile > div {
	display: flex;
	min-width: 0;
	min-height: 100%;
	flex-direction: column;
}

.hmp-quick-links .hmp-icon {
	width: 54px;
	height: 54px;
	margin-top: 2px;
}

.hmp-quick-links .hmp-icon svg {
	width: 28px;
	height: 28px;
}

.hmp-quick-links .hmp-feature-tile h2 {
	display: flex;
	min-height: 2.2em;
	align-items: flex-start;
	margin: 0;
	font-size: clamp(19px, 1.45vw, 22px);
	line-height: 1.1;
	text-wrap: balance;
}

.hmp-quick-links .hmp-feature-tile p {
	min-height: 4.35em;
	margin: 10px 0 0;
	font-size: clamp(15px, 1.05vw, 17px);
	line-height: 1.45;
}

.hmp-quick-links .hmp-feature-tile a {
	width: fit-content;
	margin-top: auto;
	padding-top: 14px;
	font-size: clamp(12px, 0.95vw, 13px);
	letter-spacing: 0.04em;
	line-height: 1.2;
	white-space: nowrap;
}

@media (max-width: 1100px) {
	.hmp-quick-links {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 620px) {
	.hmp-quick-links {
		grid-template-columns: 1fr;
	}

	.hmp-quick-links .hmp-feature-tile {
		grid-template-columns: 54px minmax(0, 1fr);
		min-height: 0;
	}

	.hmp-quick-links .hmp-feature-tile h2,
	.hmp-quick-links .hmp-feature-tile p {
		min-height: 0;
	}
}

/* Historic Homes hub: remove gallery-page dead space and keep the collection close. */
.hmp-landing-refresh--our-historic-homes .hmp-lp-hero {
	grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
	gap: clamp(20px, 3vw, 34px);
	margin-top: clamp(20px, 3vw, 34px);
	padding: clamp(20px, 3vw, 32px);
}

.hmp-landing-refresh--our-historic-homes .hmp-lp-hero h1 {
	font-size: clamp(42px, 4.8vw, 60px);
}

.hmp-landing-refresh--our-historic-homes .hmp-lp-lead {
	max-width: 720px;
	margin-top: 14px !important;
}

.hmp-landing-refresh--our-historic-homes .hmp-lp-hero__image img {
	aspect-ratio: 16 / 7.5;
}

.hmp-landing-refresh--our-historic-homes .hmp-lp-band--collection {
	margin-top: clamp(22px, 3vw, 34px);
	margin-bottom: clamp(26px, 4vw, 42px);
	padding: clamp(22px, 3vw, 34px);
}

.hmp-landing-refresh--our-historic-homes .hmp-lp-band--collection .hmp-legacy-view {
	margin: 0;
}

.hmp-landing-refresh--our-historic-homes .hmp-lp-band--collection .hmp-lp-section-heading {
	max-width: none;
	margin-bottom: clamp(18px, 2.4vw, 26px);
	padding-bottom: 14px;
	border-bottom: 1px solid rgba(199, 149, 46, 0.32);
}

.hmp-landing-refresh--our-historic-homes .hmp-lp-band--collection .hmp-lp-section-heading h2 {
	font-size: clamp(32px, 3.2vw, 44px);
}

.hmp-landing-refresh--our-historic-homes .hmp-lp-cta {
	margin-top: clamp(26px, 4vw, 44px);
}

@media (max-width: 860px) {
	.hmp-landing-refresh--our-historic-homes .hmp-lp-hero {
		grid-template-columns: 1fr;
	}

	.hmp-landing-refresh--our-historic-homes .hmp-lp-hero__image img {
		aspect-ratio: 16 / 9;
	}
}

/* Content-focused template pass: page sections should foreground records, text, and choices. */
.hmp-section {
	padding-block: clamp(30px, 4vw, 54px);
}

.hmp-front-page .hmp-section,
.hmp-home-section {
	margin-block: clamp(24px, 3.5vw, 42px);
}

.hmp-page-hero,
.hmp-single-hero,
.hmp-archive-header {
	padding-block: clamp(14px, 2.4vw, 28px);
}

.hmp-page-hero .hmp-container,
.hmp-single-hero .hmp-container,
.hmp-archive-header .hmp-container {
	width: min(1280px, calc(100% - 40px));
	padding: clamp(18px, 2.6vw, 30px);
	box-shadow: none;
}

.hmp-page-hero h1,
.hmp-single-hero h1,
.hmp-archive-header h1 {
	font-size: clamp(34px, 4vw, 54px);
	line-height: 1.02;
}

.hmp-page-hero p:not(.hmp-entry-kicker),
.hmp-single-hero p:not(.hmp-entry-kicker),
.hmp-archive-header p:not(.hmp-entry-kicker) {
	font-size: clamp(17px, 1.25vw, 20px);
	line-height: 1.45;
}

.hmp-lp-hero {
	gap: clamp(18px, 2.8vw, 34px);
	width: min(1280px, calc(100% - 40px));
	margin-top: clamp(16px, 2.6vw, 30px);
	padding: clamp(18px, 2.8vw, 30px);
	box-shadow: none;
}

.hmp-lp-hero h1 {
	font-size: clamp(36px, 4.4vw, 56px);
}

.hmp-lp-lead {
	margin-top: 12px !important;
	font-size: clamp(16px, 1.35vw, 19px);
	line-height: 1.44;
}

.hmp-lp-hero .hmp-breadcrumbs {
	margin-bottom: 10px;
}

.hmp-lp-hero__image {
	box-shadow: none;
}

.hmp-lp-hero__image img {
	aspect-ratio: 16 / 8;
}

.hmp-lp-band,
.hmp-lp-legacy,
.hmp-lp-cta {
	width: min(1280px, calc(100% - 40px));
	margin: clamp(20px, 3vw, 36px) auto;
}

.hmp-lp-band,
.hmp-lp-band--paper {
	padding: clamp(8px, 1.4vw, 16px) 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	overflow: visible;
}

.hmp-lp-legacy {
	padding-top: 0;
	border-top: 0;
}

.hmp-lp-legacy > :not(.hmp-lp-section-heading) {
	max-width: none;
}

.hmp-lp-section-heading,
.hmp-section-heading,
.hmp-archive-results-heading {
	max-width: 980px;
	margin-bottom: clamp(14px, 2vw, 22px);
}

.hmp-lp-section-heading h2,
.hmp-section-heading h2,
.hmp-archive-results-heading h2 {
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.06;
}

.hmp-lp-section-heading::after,
.hmp-section-heading::after,
.hmp-archive-results-heading::after {
	width: min(180px, 38vw);
	margin-top: 12px;
}

.hmp-lp-section-copy {
	max-width: 76ch;
}

.hmp-lp-card {
	min-height: 0;
	padding: clamp(16px, 2vw, 22px);
	box-shadow: 0 10px 22px rgba(25, 35, 43, 0.055);
}

.hmp-lp-card h3 {
	font-size: clamp(22px, 2vw, 28px);
}

.hmp-lp-card p {
	margin-top: 8px;
	line-height: 1.48;
}

.hmp-lp-card a {
	margin-top: 16px;
}

.hmp-lp-card-grid,
.hmp-lp-card-grid--three,
.hmp-legacy-view-grid,
.hmp-post-grid {
	gap: clamp(14px, 2vw, 22px);
}

.hmp-lp-cta,
.hmp-footer-cta,
.hmp-support-ribbon {
	padding: clamp(18px, 3vw, 30px);
	box-shadow: none;
}

.hmp-lp-cta h2,
.hmp-footer-cta h2,
.hmp-support-ribbon h2 {
	font-size: clamp(28px, 3vw, 40px);
}

.hmp-archive-body,
.hmp-entry-layout {
	padding-top: clamp(20px, 3vw, 36px);
	padding-bottom: clamp(24px, 4vw, 44px);
}

.hmp-entry-panel,
.hmp-archive-tools,
.hmp-archive-results-heading {
	padding: clamp(18px, 2.5vw, 30px);
	box-shadow: none;
}

.hmp-entry-panel h2,
.hmp-entry-panel h3,
.hmp-entry-panel h4,
.hmp-person-profile__article h2,
.hmp-person-profile__article h3,
.hmp-event-profile .hmp-person-profile__article h2,
.hmp-event-profile .hmp-person-profile__article h3 {
	margin-top: clamp(22px, 3vw, 34px);
}

.hmp-loop-card__image {
	margin: 10px 10px 0;
}

.hmp-loop-card__body {
	padding: clamp(14px, 1.8vw, 18px);
}

.hmp-landing-refresh--our-historic-homes .hmp-lp-band--collection {
	padding: clamp(8px, 1.4vw, 16px) 0;
}

@media (max-width: 680px) {
	.hmp-lp-hero,
	.hmp-lp-band,
	.hmp-lp-legacy,
	.hmp-lp-cta,
	.hmp-entry-layout,
	.hmp-archive-body,
	.hmp-page-hero .hmp-container,
	.hmp-single-hero .hmp-container,
	.hmp-archive-header .hmp-container {
		width: min(100% - 28px, 1280px);
	}

	.hmp-lp-hero {
		padding: 16px;
	}

	.hmp-lp-hero h1,
	.hmp-page-hero h1,
	.hmp-single-hero h1,
	.hmp-archive-header h1 {
		font-size: clamp(30px, 9vw, 38px);
	}
}

/* Content-focused tightening pass: bring the first useful choices into the first viewport. */
.hmp-home-hero {
	min-height: clamp(430px, 56vh, 560px);
}

.hmp-home-hero__content {
	padding-block: clamp(42px, 6vw, 76px);
}

.hmp-home-hero .hmp-kicker {
	margin-bottom: 14px;
}

.hmp-home-hero h1 {
	max-width: 760px;
	font-size: clamp(40px, 5vw, 62px);
	line-height: 1.02;
}

.hmp-home-hero__content > p:not(.hmp-kicker) {
	max-width: 640px;
	margin-top: 16px;
	font-size: clamp(17px, 1.35vw, 20px);
	line-height: 1.42;
}

.hmp-home-hero .hmp-actions {
	gap: 10px;
	margin-top: 20px;
}

.hmp-home-hero .hmp-button {
	min-height: 46px;
	padding: 11px 18px;
}

.hmp-quick-links.hmp-section {
	margin-top: clamp(16px, 2.4vw, 28px);
	margin-bottom: clamp(20px, 3vw, 34px);
	padding-block: 0;
}

.hmp-lp-hero {
	grid-template-columns: minmax(0, 1.18fr) minmax(220px, 0.58fr);
	gap: clamp(16px, 2.2vw, 26px);
	padding: clamp(16px, 2.2vw, 24px);
}

.hmp-lp-hero h1 {
	font-size: clamp(34px, 3.4vw, 48px);
	line-height: 1.04;
}

.hmp-lp-lead {
	margin-top: 10px !important;
	font-size: clamp(16px, 1.1vw, 18px);
	line-height: 1.42;
}

.hmp-lp-hero__image img {
	aspect-ratio: 16 / 6;
	max-height: 220px;
}

.page-id-164 .hmp-lp-hero__image img {
	max-height: min(24vw, 240px);
}

.hmp-lp-band,
.hmp-lp-legacy,
.hmp-lp-cta {
	margin-block: clamp(18px, 2.4vw, 30px);
}

.hmp-lp-section-heading {
	margin-bottom: clamp(12px, 1.6vw, 18px);
}

.hmp-lp-section-heading h2 {
	font-size: clamp(26px, 2.5vw, 36px);
}

.hmp-lp-card {
	min-height: 0;
	padding: clamp(14px, 1.8vw, 20px);
}

.hmp-lp-card h3 {
	font-size: clamp(21px, 1.75vw, 26px);
}

.hmp-support-paths.hmp-lp-card-grid,
.hmp-lp-card-grid--three {
	gap: clamp(12px, 1.6vw, 18px);
}

.hmp-support-impact-band {
	padding-block: 0;
}

.hmp-support-impact {
	margin: 0;
}

.hmp-support-impact div {
	padding: clamp(12px, 1.6vw, 18px);
}

.hmp-support-impact strong {
	font-size: clamp(20px, 1.9vw, 24px);
}

.hmp-support-impact span {
	margin-top: 5px;
	font-size: 14px;
	line-height: 1.35;
}

.woocommerce .hmp-main--shop {
	padding-top: clamp(20px, 2.5vw, 30px);
}

.hmp-shop-intro {
	grid-template-columns: minmax(0, 1fr) minmax(250px, 0.6fr);
	gap: clamp(14px, 2vw, 22px);
	margin-bottom: clamp(14px, 2vw, 20px);
	padding: clamp(16px, 2.2vw, 24px);
	box-shadow: none;
}

.hmp-shop-intro h1,
.hmp-shop-intro h2 {
	margin-top: 6px;
	color: var(--hmp-green);
	font-size: clamp(34px, 3.4vw, 48px);
	line-height: 1.03;
}

.hmp-shop-intro p:not(.hmp-lp-kicker) {
	margin-top: 8px;
	font-size: clamp(16px, 1.15vw, 18px);
	line-height: 1.42;
}

.hmp-shop-intro ul {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}

.hmp-shop-intro li {
	padding: 9px 11px;
	font-size: 13px;
	line-height: 1.25;
}

.hmp-support-commerce-paths {
	gap: clamp(10px, 1.4vw, 14px);
	margin-bottom: clamp(16px, 2.2vw, 24px);
}

.hmp-support-commerce-paths a {
	padding: 12px 14px;
}

.hmp-support-commerce-paths strong {
	font-size: clamp(18px, 1.55vw, 21px);
}

.hmp-support-commerce-paths span {
	font-size: 13px;
	line-height: 1.25;
}

.post-type-archive-product .hmp-main--shop .page-title {
	display: none;
}

.woocommerce ul.products {
	margin-top: clamp(12px, 1.8vw, 18px);
}

.hmp-event-ad--empty {
	grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
	gap: clamp(14px, 2vw, 24px);
	margin-block: clamp(18px, 2.5vw, 28px);
}

.hmp-event-ad--empty .hmp-event-ad__copy {
	padding: clamp(18px, 3vw, 30px);
}

.hmp-event-ad--empty h2 {
	font-size: clamp(30px, 3.4vw, 46px);
	line-height: 1.04;
}

.hmp-event-ad--empty .hmp-event-ad__copy > p:not(.hmp-lp-kicker) {
	margin-top: 10px;
	font-size: clamp(16px, 1.15vw, 18px);
	line-height: 1.42;
}

.hmp-event-ad--empty .hmp-event-ad__actions {
	margin-top: 18px;
}

.hmp-event-ad--empty .hmp-event-ad__notice {
	margin: clamp(14px, 2vw, 20px);
	padding: clamp(14px, 2vw, 18px);
}

.hmp-event-ad--empty .hmp-event-ad__notice span {
	margin-top: 7px;
	font-size: 15px;
	line-height: 1.35;
}

.single-hmp_place .hmp-entry-main {
	display: grid;
	gap: clamp(18px, 2.4vw, 28px);
	align-items: start;
}

.single-hmp_place .hmp-entry-main > .hmp-single-image {
	width: 100%;
	margin: 0;
}

.single-hmp_place .hmp-entry-main > .hmp-single-image img {
	width: 100%;
	height: 100%;
	max-height: none;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

@media (min-width: 1040px) {
	.single-hmp_place .hmp-entry-main {
		grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
	}

	.single-hmp_place .hmp-entry-main > .hmp-single-image,
	.single-hmp_place .hmp-entry-main > .hmp-entry-panel {
		grid-row: 1;
	}

	.single-hmp_place .hmp-entry-main > .hmp-single-image {
		position: sticky;
		top: 24px;
	}

	.single-hmp_place .hmp-entry-main > .hmp-entry-panel {
		grid-column: 2;
	}

	.single-hmp_place .hmp-entry-main > :not(.hmp-single-image):not(.hmp-entry-panel) {
		grid-column: 1 / -1;
	}
}

@media (max-width: 860px) {
	.hmp-lp-hero {
		grid-template-columns: 1fr;
	}

	.hmp-lp-hero__image img,
	.page-id-164 .hmp-lp-hero__image img {
		aspect-ratio: 16 / 7;
		max-height: 170px;
	}

	.hmp-shop-intro {
		grid-template-columns: 1fr;
	}

	.hmp-event-ad--empty {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.hmp-home-hero {
		min-height: clamp(500px, 64vh, 560px);
	}

	.hmp-home-hero__content {
		padding-block: 38px;
	}

	.hmp-home-hero h1 {
		font-size: clamp(34px, 9vw, 39px);
		line-height: 1.04;
	}

	.hmp-home-hero__content > p:not(.hmp-kicker) {
		font-size: 16px;
	}

	.hmp-home-hero .hmp-actions {
		margin-top: 16px;
	}

	.hmp-lp-hero {
		padding: 14px;
	}

	.hmp-lp-hero h1,
	.hmp-page-hero h1,
	.hmp-single-hero h1,
	.hmp-archive-header h1 {
		font-size: clamp(29px, 8vw, 36px);
	}

	.hmp-lp-hero__image img,
	.page-id-164 .hmp-lp-hero__image img {
		max-height: 150px;
	}

	.hmp-support-impact {
		gap: 0;
	}

	.hmp-support-impact div {
		padding: 12px;
	}

	.hmp-support-impact strong {
		font-size: 18px;
	}

	.hmp-support-impact span {
		font-size: 13px;
	}

	.hmp-shop-intro {
		padding: 14px;
	}

	.hmp-shop-intro h1,
	.hmp-shop-intro h2 {
		font-size: clamp(30px, 8vw, 36px);
	}

	.hmp-shop-intro ul {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hmp-support-commerce-paths {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hmp-support-commerce-paths a {
		padding: 10px;
	}

	.hmp-support-commerce-paths strong {
		font-size: 17px;
	}

	.hmp-support-commerce-paths span {
		font-size: 12px;
	}

	.hmp-event-ad--empty .hmp-event-ad__copy {
		padding: 16px;
	}

	.hmp-event-ad--empty h2 {
		font-size: clamp(27px, 7.4vw, 32px);
	}

	.hmp-event-ad--empty .hmp-event-ad__actions {
		display: grid;
		grid-template-columns: 1fr;
		margin-top: 14px;
	}

	.hmp-event-ad--empty .hmp-event-ad__notice {
		margin: 0 16px 16px;
		padding: 14px;
	}

	.single-hmp_place .hmp-entry-main > .hmp-single-image img {
		max-height: 240px;
		aspect-ratio: 16 / 9;
	}
}

/* Full content-focus refinement: denser records, stronger reading rhythm, fewer poster-like pages. */
.hmp-page-hero,
.hmp-single-hero,
.hmp-archive-header {
	padding-block: clamp(10px, 1.8vw, 22px);
}

.hmp-page-hero .hmp-container,
.hmp-single-hero .hmp-container,
.hmp-archive-header .hmp-container {
	padding: clamp(16px, 2vw, 24px);
}

.hmp-page-hero h1,
.hmp-single-hero h1,
.hmp-archive-header h1 {
	font-size: clamp(32px, 3.3vw, 48px);
	line-height: 1.04;
}

.hmp-page-hero p:not(.hmp-entry-kicker),
.hmp-single-hero p:not(.hmp-entry-kicker),
.hmp-archive-header p:not(.hmp-entry-kicker) {
	font-size: clamp(16px, 1.1vw, 18px);
	line-height: 1.42;
}

.hmp-entry-meta {
	margin-top: 14px;
}

.hmp-lp-hero {
	grid-template-columns: minmax(0, 1.32fr) minmax(180px, 0.42fr);
}

.hmp-lp-hero__image img {
	aspect-ratio: 16 / 5.5;
	max-height: 180px;
}

.hmp-lp-band,
.hmp-lp-legacy,
.hmp-lp-cta,
.hmp-event-ad,
.hmp-footer-cta,
.hmp-support-ribbon {
	margin-block: clamp(16px, 2vw, 26px);
}

.hmp-lp-card,
.hmp-feature-tile,
.hmp-resource-grid article,
.hmp-archive-topic,
.hmp-loop-card,
.woocommerce ul.products li.product {
	border-radius: 4px;
}

.hmp-lp-card p,
.hmp-feature-tile p,
.hmp-resource-grid p,
.hmp-loop-card p:not(.hmp-card-meta),
.woocommerce ul.products li.product {
	line-height: 1.42;
}

.hmp-lp-card a,
.hmp-feature-tile a,
.hmp-loop-card .hmp-card-link,
.woocommerce ul.products li.product .button {
	letter-spacing: 0.055em;
}

.hmp-post-grid,
.hmp-legacy-view-grid {
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 360px), 1fr));
	gap: clamp(12px, 1.5vw, 18px);
}

.hmp-post-grid .hmp-loop-card:has(> .hmp-loop-card__image),
.hmp-legacy-view-grid .hmp-loop-card:has(> .hmp-loop-card__image) {
	display: grid;
	grid-template-columns: clamp(108px, 32%, 148px) minmax(0, 1fr);
	grid-template-rows: 1fr;
	min-height: 172px;
}

.hmp-post-grid .hmp-loop-card__image,
.hmp-legacy-view-grid .hmp-loop-card__image {
	height: 100%;
	min-height: 172px;
	margin: 0;
	border: 0;
	aspect-ratio: auto;
}

.hmp-post-grid .hmp-loop-card__image::before,
.hmp-post-grid .hmp-loop-card__image::after,
.hmp-legacy-view-grid .hmp-loop-card__image::before,
.hmp-legacy-view-grid .hmp-loop-card__image::after {
	display: none;
}

.hmp-post-grid .hmp-loop-card__body,
.hmp-legacy-view-grid .hmp-loop-card__body {
	display: grid;
	align-content: start;
	gap: 7px;
	min-width: 0;
	padding: clamp(12px, 1.4vw, 16px);
}

.hmp-post-grid .hmp-loop-card h2,
.hmp-legacy-view-grid .hmp-loop-card h2,
.hmp-post-grid .hmp-loop-card h3,
.hmp-legacy-view-grid .hmp-loop-card h3 {
	font-size: clamp(20px, 1.55vw, 25px);
	line-height: 1.08;
}

.hmp-post-grid .hmp-loop-card p:not(.hmp-card-meta),
.hmp-legacy-view-grid .hmp-loop-card p:not(.hmp-card-meta) {
	display: -webkit-box;
	margin: 0;
	font-size: 14px;
	line-height: 1.38;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.hmp-post-grid .hmp-card-badges,
.hmp-legacy-view-grid .hmp-card-badges {
	margin-bottom: 2px;
}

.hmp-post-grid .hmp-card-badges span,
.hmp-legacy-view-grid .hmp-card-badges span {
	min-height: 22px;
	padding: 5px 7px;
	font-size: 10px;
	letter-spacing: 0.055em;
}

.hmp-post-grid .hmp-card-link,
.hmp-legacy-view-grid .hmp-card-link {
	align-self: end;
	margin-top: 4px;
	font-size: 11px;
}

.hmp-archive-body {
	padding-top: clamp(16px, 2.4vw, 28px);
}

.hmp-archive-tools {
	gap: clamp(12px, 2vw, 22px);
	margin-bottom: clamp(18px, 2.4vw, 30px);
}

.hmp-archive-tools__search,
.hmp-archive-topics,
.hmp-archive-results-heading {
	padding: clamp(14px, 1.8vw, 22px);
}

.hmp-archive-topic {
	min-height: 0;
	padding: 12px;
}

.hmp-archive-topic strong {
	font-size: 19px;
}

.hmp-archive-topic span {
	font-size: 13px;
	line-height: 1.34;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr)) !important;
	gap: clamp(12px, 1.8vw, 20px) !important;
	align-items: stretch;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.woocommerce ul.products[class*="columns-"] li.product,
.woocommerce-page ul.products[class*="columns-"] li.product {
	float: none !important;
	clear: none !important;
	width: auto !important;
	margin: 0 !important;
	padding: 12px !important;
}

.woocommerce ul.products li.product a img {
	aspect-ratio: 16 / 10;
	margin-bottom: 10px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-size: clamp(18px, 1.45vw, 22px);
	line-height: 1.12;
}

.woocommerce ul.products li.product .price {
	font-size: 16px;
}

.hmp-entry-panel,
.hmp-person-profile__article,
.hmp-event-profile .hmp-person-profile__article {
	font-size: clamp(17px, 1.05vw, 19px);
	line-height: 1.64;
}

.single-post .hmp-entry-panel > p,
.single-post .hmp-entry-panel > ul,
.single-post .hmp-entry-panel > ol,
.single-post .hmp-entry-panel > h2,
.single-post .hmp-entry-panel > h3,
.single-post .hmp-entry-panel > h4 {
	max-width: 72ch;
	margin-right: auto;
	margin-left: auto;
}

.single-post .hmp-entry-panel > h2,
.single-post .hmp-entry-panel > h3,
.single-post .hmp-entry-panel > h4 {
	margin-top: clamp(22px, 3vw, 34px);
}

.single-post .hmp-entry-panel p,
.single-post .hmp-entry-panel li {
	line-height: 1.66;
}

.hmp-person-profile__identity,
.hmp-event-profile__summary,
.hmp-event-profile__sales-hero,
.hmp-event-profile__details,
.hmp-event-profile__tickets,
.hmp-place-record-overview {
	padding: clamp(16px, 2vw, 22px);
}

.hmp-event-profile__summary,
.hmp-event-profile__tickets {
	gap: clamp(12px, 1.8vw, 20px);
}

.hmp-place-record-overview p,
.hmp-person-profile__identity p,
.hmp-event-profile__summary p {
	line-height: 1.44;
}

@media (max-width: 860px) {
	.hmp-lp-hero {
		grid-template-columns: minmax(0, 1fr) 104px;
		align-items: center;
	}

	.hmp-lp-hero__image,
	.page-id-164 .hmp-lp-hero__image {
		align-self: stretch;
	}

	.hmp-lp-hero__image img,
	.page-id-164 .hmp-lp-hero__image img {
		width: 100%;
		height: 100%;
		max-height: 112px;
		aspect-ratio: 1;
		object-fit: cover;
	}

	.hmp-lp-hero .hmp-breadcrumbs {
		grid-column: 1 / -1;
	}

	.hmp-archive-tools {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.hmp-page-hero,
	.hmp-single-hero,
	.hmp-archive-header {
		padding-block: 10px;
	}

	.hmp-page-hero .hmp-container,
	.hmp-single-hero .hmp-container,
	.hmp-archive-header .hmp-container {
		padding: 14px;
	}

	.hmp-page-hero h1,
	.hmp-single-hero h1,
	.hmp-archive-header h1 {
		font-size: clamp(27px, 7.6vw, 34px);
		line-height: 1.05;
	}

	.hmp-lp-hero {
		gap: 10px;
		padding: 12px;
	}

	.hmp-lp-hero h1 {
		font-size: clamp(27px, 7.4vw, 34px);
	}

	.hmp-lp-lead {
		font-size: 15px;
		line-height: 1.36;
	}

	.hmp-lp-hero__image img,
	.page-id-164 .hmp-lp-hero__image img {
		max-height: 94px;
	}

	.hmp-post-grid,
	.hmp-legacy-view-grid {
		grid-template-columns: 1fr;
	}

	.hmp-post-grid .hmp-loop-card:has(> .hmp-loop-card__image),
	.hmp-legacy-view-grid .hmp-loop-card:has(> .hmp-loop-card__image) {
		grid-template-columns: 94px minmax(0, 1fr);
		min-height: 150px;
	}

	.hmp-post-grid .hmp-loop-card__image,
	.hmp-legacy-view-grid .hmp-loop-card__image {
		min-height: 150px;
	}

	.hmp-post-grid .hmp-loop-card__body,
	.hmp-legacy-view-grid .hmp-loop-card__body {
		padding: 12px;
	}

	.hmp-post-grid .hmp-loop-card h2,
	.hmp-legacy-view-grid .hmp-loop-card h2,
	.hmp-post-grid .hmp-loop-card h3,
	.hmp-legacy-view-grid .hmp-loop-card h3 {
		font-size: clamp(18px, 5.4vw, 22px);
	}

	.hmp-post-grid .hmp-loop-card p:not(.hmp-card-meta),
	.hmp-legacy-view-grid .hmp-loop-card p:not(.hmp-card-meta) {
		-webkit-line-clamp: 2;
	}

	.woocommerce ul.products,
	.woocommerce-page ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}

	.woocommerce ul.products li.product,
	.woocommerce-page ul.products li.product {
		padding: 10px !important;
	}

	.woocommerce ul.products li.product .woocommerce-loop-product__title {
		font-size: 16px;
	}

	.woocommerce ul.products li.product .price {
		font-size: 14px;
	}

	.hmp-entry-panel,
	.hmp-person-profile__article,
	.hmp-event-profile .hmp-person-profile__article {
		font-size: 16px;
		line-height: 1.58;
	}

	.hmp-entry-panel h2,
	.hmp-person-profile__article h2,
	.hmp-event-profile .hmp-person-profile__article h2 {
		font-size: clamp(24px, 7vw, 30px);
	}

	.hmp-event-profile__summary,
	.hmp-event-profile__tickets,
	.hmp-person-profile__identity,
	.hmp-place-record-overview {
		padding: 14px;
	}
}

/* Content-focused completion for the custom Places directory. */
.hmp-places-directory {
	width: min(1240px, calc(100% - 40px));
	padding: clamp(18px, 3vw, 36px) 0 clamp(30px, 5vw, 54px);
}

.hmp-places-directory__header {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 12px clamp(18px, 3vw, 30px);
	align-items: end;
	border-left-width: 6px;
	border-radius: 4px;
	padding: clamp(18px, 3vw, 30px);
	box-shadow: 0 12px 26px rgba(43, 31, 16, 0.1);
}

.hmp-places-directory__kicker {
	grid-column: 1 / -1;
	margin: 0;
}

.hmp-places-directory__header h1 {
	font-size: clamp(34px, 4.2vw, 56px);
	line-height: 1;
}

.hmp-places-directory__header > p:not(.hmp-places-directory__kicker) {
	max-width: 700px;
	margin: 8px 0 0;
	font-size: clamp(16px, 1.35vw, 20px);
	line-height: 1.38;
}

.hmp-places-directory__stats {
	justify-content: flex-end;
	align-self: end;
	max-width: 360px;
	margin-top: 0;
	gap: 8px;
}

.hmp-places-directory__stats span,
.hmp-places-directory__filters a,
.hmp-place-card__meta span {
	min-height: 24px;
	border-radius: 999px;
	padding: 6px 9px;
	font-size: 11px;
	letter-spacing: 0.055em;
}

.hmp-places-directory__stats strong {
	font-size: 15px;
}

.hmp-places-directory__filters {
	gap: 6px;
	margin: 12px 0 16px;
	border-radius: 4px;
	padding: 8px;
}

.hmp-places-directory__grid {
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 390px), 1fr));
	gap: clamp(12px, 1.5vw, 16px);
	align-items: stretch;
}

.hmp-place-card {
	display: grid;
	grid-template-columns: clamp(112px, 30%, 150px) minmax(0, 1fr);
	grid-template-rows: 1fr;
	min-height: 174px;
	border-top: 0;
	border-left: 4px solid rgba(199, 149, 46, 0.72);
	border-radius: 4px;
	box-shadow: 0 10px 22px rgba(43, 31, 16, 0.055);
}

.hmp-place-card:hover,
.hmp-place-card:focus-within {
	box-shadow: 0 14px 30px rgba(43, 31, 16, 0.1);
	transform: none;
}

.hmp-place-card__media {
	height: 100%;
	min-height: 174px;
	aspect-ratio: auto;
}

.hmp-place-card__media span {
	padding: 10px;
	font-size: 12px;
	font-weight: 900;
	line-height: 1.2;
	text-align: center;
}

.hmp-place-card__body {
	display: grid;
	align-content: start;
	gap: 7px;
	min-width: 0;
	padding: clamp(12px, 1.4vw, 16px);
}

.hmp-place-card__kicker {
	gap: 5px;
	margin: 0;
}

.hmp-place-card__kicker span {
	min-height: 22px;
	padding: 5px 7px;
	font-size: 10px;
	letter-spacing: 0.055em;
}

.hmp-place-card h2 {
	font-size: clamp(20px, 1.55vw, 25px);
	line-height: 1.08;
}

.hmp-place-card__body > p:not(.hmp-place-card__kicker) {
	display: -webkit-box;
	margin: 0;
	font-size: 14px;
	line-height: 1.38;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

.hmp-place-card__meta {
	gap: 5px;
	margin-top: 2px;
}

.hmp-place-card__link {
	align-self: end;
	margin-top: 4px;
	font-size: 11px;
}

@media (max-width: 860px) {
	.page-id-200 .hmp-lp-hero {
		grid-template-columns: 1fr;
	}

	.page-id-200 .hmp-lp-hero__image {
		align-self: stretch;
	}

	.page-id-200 .hmp-lp-hero__image img {
		width: 100%;
		max-height: 86px;
		aspect-ratio: 16 / 4;
		object-fit: cover;
	}

	.hmp-places-directory__header {
		grid-template-columns: 1fr;
	}

	.hmp-places-directory__stats {
		justify-content: flex-start;
		max-width: none;
	}
}

@media (max-width: 680px) {
	.hmp-places-directory {
		width: min(100% - 24px, 1240px);
		padding: 12px 0 30px;
	}

	.hmp-places-directory__header {
		border-left-width: 5px;
		padding: 14px;
	}

	.hmp-places-directory__header h1 {
		font-size: clamp(30px, 8.4vw, 38px);
	}

	.hmp-places-directory__header > p:not(.hmp-places-directory__kicker) {
		font-size: 15px;
		line-height: 1.36;
	}

	.hmp-places-directory__filters {
		margin-block: 10px 12px;
	}

	.hmp-places-directory__grid {
		grid-template-columns: 1fr;
	}

	.hmp-place-card {
		grid-template-columns: 94px minmax(0, 1fr);
		min-height: 150px;
	}

	.hmp-place-card__media {
		min-height: 150px;
	}

	.hmp-place-card__body {
		padding: 12px;
	}

	.hmp-place-card h2 {
		font-size: clamp(18px, 5.4vw, 22px);
	}

	.hmp-place-card__body > p:not(.hmp-place-card__kicker) {
		-webkit-line-clamp: 2;
	}
}

/* Final directory and mobile density refinements. */
.hmp-people-directory {
	width: min(1240px, calc(100% - 40px));
	margin-inline: auto;
	padding-block: clamp(18px, 3vw, 36px) clamp(30px, 5vw, 54px);
}

.hmp-people-directory__header {
	display: grid;
	grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
	grid-template-areas:
		"kicker kicker"
		"title description"
		"stats stats";
	gap: 12px clamp(18px, 3vw, 30px);
	align-items: start;
	margin-bottom: 14px;
	border-left-width: 6px;
	border-radius: 4px;
	padding: clamp(18px, 3vw, 30px);
	box-shadow: 0 12px 26px rgba(43, 31, 16, 0.1);
}

.hmp-people-directory__kicker {
	grid-area: kicker;
	grid-column: 1 / -1;
	margin: 0;
}

.hmp-people-directory__header .hmp-people-directory__kicker {
	color: #ffd966;
}

.hmp-people-directory__header h1 {
	grid-area: title;
	font-size: clamp(34px, 4.2vw, 56px);
	line-height: 1;
}

.hmp-people-directory__header > p:not(.hmp-people-directory__kicker) {
	grid-area: description;
	max-width: 700px;
	margin: 8px 0 0;
	font-size: clamp(16px, 1.35vw, 20px);
	line-height: 1.38;
}

.hmp-people-directory__stats {
	grid-area: stats;
	justify-content: flex-start;
	max-width: none;
	margin-top: 0;
	gap: 8px;
}

.hmp-people-directory__stats span {
	min-height: 24px;
	border-radius: 999px;
	padding: 6px 9px;
	font-size: 11px;
	letter-spacing: 0.055em;
}

.hmp-people-directory__stats strong {
	font-size: 15px;
}

.hmp-people-directory__filters {
	gap: 8px;
	margin-bottom: 12px;
	border-radius: 4px;
	padding: 10px;
}

.hmp-people-directory__filters label {
	flex: 1 1 320px;
}

.hmp-people-directory__filters input {
	width: 100%;
	min-width: 0;
}

.hmp-people-directory__filters select {
	flex: 0 1 220px;
}

.hmp-people-directory__count {
	margin-bottom: 10px;
	font-size: 13px;
}

.hmp-people-directory__grid {
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
	gap: clamp(12px, 1.5vw, 16px);
}

.hmp-people-card-public {
	border-top: 0;
	border-left: 4px solid rgba(199, 149, 46, 0.72);
	border-radius: 4px;
	gap: 10px;
	padding: 10px;
	box-shadow: 0 10px 22px rgba(43, 31, 16, 0.055);
}

.hmp-people-card-public:hover,
.hmp-people-card-public:focus-within {
	box-shadow: 0 14px 30px rgba(43, 31, 16, 0.1);
	transform: none;
}

.hmp-people-card-public__body {
	display: grid;
	align-content: start;
	gap: 6px;
}

.hmp-people-card-public__terms {
	gap: 5px;
	margin: 0 !important;
}

.hmp-people-card-public__terms span {
	min-height: 22px;
	padding: 5px 7px;
	font-size: 10px;
	letter-spacing: 0.055em;
}

.hmp-people-card-public h2 {
	margin: 0;
	font-size: clamp(18px, 1.45vw, 21px);
	line-height: 1.12;
}

.hmp-people-card-public p {
	display: -webkit-box;
	font-size: 14px;
	line-height: 1.34;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.hmp-people-card-public__link {
	margin-top: 2px;
	font-size: 11px;
}

@media (max-width: 860px) {
	.hmp-landing-refresh--our-historic-homes .hmp-lp-hero {
		grid-template-columns: minmax(0, 1fr) 92px;
		gap: 10px;
		align-items: center;
	}

	.hmp-landing-refresh--our-historic-homes .hmp-lp-hero h1 {
		max-width: none;
		font-size: clamp(28px, 7.2vw, 33px);
	}

	.hmp-landing-refresh--our-historic-homes .hmp-lp-hero__image {
		align-self: center;
		width: 92px;
	}

	.hmp-landing-refresh--our-historic-homes .hmp-lp-hero__image img {
		width: 100%;
		height: auto;
		max-height: 92px;
		aspect-ratio: 1;
		object-fit: cover;
	}

	.hmp-people-directory__header {
		grid-template-columns: 1fr;
		grid-template-areas:
			"kicker"
			"title"
			"description"
			"stats";
	}

	.hmp-people-directory__stats {
		justify-content: flex-start;
		max-width: none;
	}
}

@media (max-width: 680px) {
	.hmp-landing-refresh--our-historic-homes .hmp-lp-band--collection {
		margin-top: 12px;
		padding-block: 10px;
	}

	.hmp-landing-refresh--our-historic-homes .hmp-lp-band--collection .hmp-lp-section-heading {
		margin-bottom: 10px;
		padding-bottom: 10px;
	}

	.hmp-landing-refresh--our-historic-homes .hmp-lp-band--collection .hmp-lp-section-heading h2 {
		font-size: clamp(24px, 7vw, 30px);
		line-height: 1.08;
	}

	.hmp-landing-refresh--our-historic-homes .hmp-lp-band--collection .hmp-lp-section-heading p:not(.hmp-lp-kicker) {
		font-size: 14px;
		line-height: 1.34;
	}

	.woocommerce .hmp-main--shop {
		padding-top: 10px;
	}

	.hmp-shop-intro {
		gap: 8px;
		margin-bottom: 10px;
		padding: 12px;
	}

	.hmp-shop-intro h1,
	.hmp-shop-intro h2 {
		margin-top: 4px;
		font-size: clamp(28px, 7.4vw, 34px);
	}

	.hmp-shop-intro p:not(.hmp-lp-kicker) {
		margin-top: 6px;
		font-size: 15px;
		line-height: 1.34;
	}

	.hmp-shop-intro ul {
		gap: 6px;
		margin-top: 8px;
	}

	.hmp-shop-intro li {
		padding: 7px 8px;
		font-size: 12px;
	}

	.hmp-support-commerce-paths {
		gap: 8px;
		margin-bottom: 10px;
	}

	.hmp-support-commerce-paths a {
		padding: 8px;
	}

	.hmp-support-commerce-paths strong {
		font-size: 15px;
		line-height: 1.15;
	}

	.hmp-support-commerce-paths span {
		display: none;
	}

	.woocommerce .woocommerce-result-count,
	.woocommerce-page .woocommerce-result-count,
	.woocommerce .woocommerce-ordering,
	.woocommerce-page .woocommerce-ordering {
		margin: 0 0 8px;
		font-size: 13px;
	}

	.woocommerce .woocommerce-ordering select,
	.woocommerce-page .woocommerce-ordering select {
		min-height: 34px;
	}

	.woocommerce ul.products,
	.woocommerce-page ul.products {
		margin-top: 8px !important;
	}

	.hmp-people-directory {
		width: min(100% - 24px, 1240px);
		padding: 12px 0 30px;
	}

	.hmp-people-directory__header {
		border-left-width: 5px;
		gap: 8px;
		padding: 12px;
	}

	.hmp-people-directory__header h1 {
		font-size: clamp(30px, 8.4vw, 38px);
	}

	.hmp-people-directory__header > p:not(.hmp-people-directory__kicker) {
		font-size: 15px;
		line-height: 1.36;
	}

	.hmp-people-directory__stats {
		display: grid;
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 5px;
	}

	.hmp-people-directory__stats span {
		justify-content: center;
		min-height: 22px;
		padding: 5px;
		font-size: 10px;
		text-align: center;
	}

	.hmp-people-directory__filters {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 7px;
		padding: 8px;
	}

	.hmp-people-directory__filters input,
	.hmp-people-directory__filters select,
	.hmp-people-directory__filters button {
		width: 100%;
		min-height: 36px;
	}

	.hmp-people-directory__filters label {
		grid-column: 1 / -1;
	}

	.hmp-people-directory__filters select {
		min-width: 0;
	}

	.hmp-people-directory__filters button {
		padding-inline: 10px;
		font-size: 11px;
	}

	.hmp-people-directory__grid {
		grid-template-columns: 1fr;
	}
}

/* Place records: remove duplicate image column and rescue imported WordPress column layouts. */
.single-hmp_place .hmp-entry-main {
	display: block !important;
	max-width: min(100%, 1120px);
	margin-inline: auto;
}

.single-hmp_place .hmp-entry-main > .hmp-single-image {
	display: none !important;
}

.single-hmp_place .hmp-entry-main > .hmp-entry-panel,
.hmp-place-profile-page .hmp-entry-panel,
.hmp-place-profile-page .hmp-content {
	width: 100% !important;
	max-width: min(100%, 1120px) !important;
	margin-inline: auto !important;
}

.single-hmp_place .hmp-place-profile {
	width: 100%;
}

.single-hmp_place .hmp-person-profile__article {
	max-width: 78ch;
	margin-inline: auto;
	font-size: clamp(18px, 1.08vw, 20px);
	line-height: 1.68;
}

.single-hmp_place .hmp-person-profile__article .wp-block-columns {
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)) !important;
	gap: clamp(18px, 2.5vw, 28px) !important;
	align-items: start;
	width: 100% !important;
	max-width: 100% !important;
	margin: clamp(18px, 2.5vw, 30px) 0 !important;
}

.single-hmp_place .hmp-person-profile__article .wp-block-column {
	min-width: 0 !important;
	width: 100% !important;
	flex-basis: auto !important;
}

.single-hmp_place .hmp-person-profile__article .wp-block-columns > p:empty,
.single-hmp_place .hmp-person-profile__article .wp-block-column > p:empty {
	display: none;
}

.single-hmp_place .hmp-person-profile__article figure.wp-block-image,
.single-hmp_place .hmp-person-profile__article .wp-block-image {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 0 clamp(14px, 2vw, 22px) !important;
}

.single-hmp_place .hmp-person-profile__article .wp-block-image img {
	display: block;
	width: 100% !important;
	height: auto !important;
	max-height: 520px;
	object-fit: contain;
}

.single-hmp_place .hmp-person-profile__article .hmp-person-profile__picture {
	float: none;
	max-width: min(100%, 620px);
	margin: 0 auto clamp(18px, 2.5vw, 28px);
}

@media (min-width: 980px) {
	.single-hmp_place .hmp-person-profile__article .hmp-person-profile__picture {
		float: right;
		max-width: min(38%, 360px);
		margin: 0 0 20px 28px;
	}
}

@media (max-width: 680px) {
	.single-hmp_place .hmp-person-profile__article {
		max-width: none;
		font-size: 16px;
		line-height: 1.58;
	}

	.single-hmp_place .hmp-person-profile__article .wp-block-columns {
		grid-template-columns: 1fr !important;
	}
}

/* Menu-wide presentation quality pass for high-traffic public pages. */
.hmp-page .hmp-entry-layout {
	width: min(100% - 32px, 1280px);
	margin-block: clamp(24px, 4vw, 48px);
}

.hmp-page .hmp-entry-panel {
	width: 100%;
	border-color: rgba(201, 154, 46, 0.34);
	background:
		linear-gradient(135deg, rgba(255, 252, 244, 0.96), rgba(250, 244, 229, 0.82)),
		var(--hmp-cream);
	padding: clamp(24px, 4.5vw, 46px);
	box-shadow: 0 18px 42px rgba(43, 31, 16, 0.08);
}

.hmp-page .hmp-entry-panel > * {
	max-width: 78ch;
}

.hmp-page .hmp-entry-panel > .hmp-people-directory {
	max-width: 100%;
}

.hmp-page .hmp-entry-panel > .wp-block-columns,
.hmp-page .hmp-entry-panel > .wp-block-group,
.hmp-page .hmp-entry-panel > .hmp-contact-panel,
.hmp-page .hmp-entry-panel > .hmp-form-fallback,
.hmp-page .hmp-entry-panel > .hmp-commerce-membership,
.hmp-page .hmp-entry-panel > .hmp-support-membership {
	max-width: 100%;
}

.hmp-entry-panel h2,
.hmp-entry-panel h3,
.hmp-entry-panel h4 {
	line-height: 1.08;
	letter-spacing: 0;
}

.hmp-entry-panel h2 {
	font-size: clamp(30px, 4vw, 46px);
}

.hmp-entry-panel h3 {
	font-size: clamp(22px, 2.4vw, 32px);
}

.hmp-entry-panel p,
.hmp-entry-panel li {
	font-size: clamp(16px, 1.1vw, 18px);
	line-height: 1.64;
}

.hmp-entry-panel ul,
.hmp-entry-panel ol {
	padding-left: 1.35rem;
}

.hmp-entry-panel .wp-block-columns {
	gap: clamp(18px, 3vw, 34px);
	align-items: start;
}

.hmp-entry-panel .wp-block-button__link,
.hmp-entry-panel input[type="submit"] {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(13, 47, 43, 0.28);
	border-radius: 2px;
	background: var(--hmp-green);
	padding: 12px 18px;
	color: #fff4cf !important;
	font-family: var(--hmp-sans);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.08em;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

.hmp-entry-panel .wp-block-button__link:hover,
.hmp-entry-panel .wp-block-button__link:focus-visible,
.hmp-entry-panel input[type="submit"]:hover,
.hmp-entry-panel input[type="submit"]:focus-visible {
	background: var(--hmp-burgundy);
	color: #fff !important;
}

.hmp-landing-refresh .hmp-lp-hero {
	grid-template-columns: minmax(0, 1fr) minmax(220px, 288px);
	gap: clamp(22px, 4vw, 52px);
	align-items: center;
	min-height: 0;
	padding: clamp(24px, 4vw, 42px) clamp(24px, 4vw, 48px);
}

.hmp-landing-refresh .hmp-lp-hero__copy {
	max-width: 760px;
}

.hmp-landing-refresh .hmp-lp-hero h1 {
	font-size: clamp(44px, 5.2vw, 68px);
	line-height: 0.98;
}

.hmp-landing-refresh .hmp-lp-lead {
	max-width: 760px;
	font-size: clamp(17px, 1.25vw, 20px);
	line-height: 1.48;
}

.hmp-landing-refresh .hmp-lp-hero__image {
	width: 100%;
	min-height: 0;
	aspect-ratio: 16 / 9;
	align-self: center;
}

.hmp-landing-refresh .hmp-lp-hero__image img,
.page-id-164 .hmp-lp-hero__image img {
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: cover;
}

.hmp-lp-band,
.hmp-lp-legacy,
.hmp-lp-cta,
.hmp-event-ad {
	width: min(100% - 32px, 1280px);
	margin-block: clamp(20px, 3vw, 34px);
	padding: clamp(24px, 4vw, 44px);
}

.hmp-lp-section-heading {
	margin-bottom: clamp(18px, 2.5vw, 28px);
}

.hmp-lp-section-heading--compact {
	margin-top: clamp(18px, 3vw, 30px);
}

.hmp-lp-section-heading h2 {
	max-width: 920px;
	font-size: clamp(32px, 4vw, 50px);
	line-height: 1.04;
}

.hmp-lp-section-heading p:not(.hmp-lp-kicker),
.hmp-lp-section-copy {
	max-width: 820px;
	font-size: clamp(16px, 1.2vw, 19px);
	line-height: 1.58;
}

.hmp-lp-card-grid--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hmp-lp-card {
	min-height: 0;
	padding: clamp(18px, 2.2vw, 24px);
}

.hmp-lp-card h3 {
	font-size: clamp(22px, 2.1vw, 30px);
	line-height: 1.08;
	overflow-wrap: anywhere;
}

.hmp-lp-card p {
	font-size: 16px;
	line-height: 1.52;
}

.hmp-marker-paths,
.hmp-women-paths {
	margin-top: clamp(16px, 2vw, 24px);
}

.hmp-places-shortcode {
	margin-top: clamp(18px, 3vw, 28px);
}

.hmp-places-shortcode .hmp-places-shortcode__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
	gap: clamp(16px, 2.2vw, 24px);
}

.hmp-places-shortcode .hmp-place-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	border: 1px solid rgba(201, 154, 46, 0.36);
	background: rgba(255, 253, 247, 0.92);
	box-shadow: 0 14px 30px rgba(43, 31, 16, 0.08);
}

.hmp-places-shortcode .hmp-place-card__media {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	background: rgba(13, 47, 43, 0.08);
}

.hmp-places-shortcode .hmp-place-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hmp-places-shortcode .hmp-place-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 16px;
}

.hmp-places-shortcode .hmp-place-card h2 {
	margin-top: 10px;
	font-size: clamp(22px, 2vw, 28px);
	line-height: 1.08;
}

.hmp-places-shortcode .hmp-place-card p {
	font-size: 15px;
	line-height: 1.48;
}

.hmp-places-shortcode .hmp-place-card__link {
	margin-top: auto;
	padding-top: 12px;
	font-family: var(--hmp-sans);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hmp-places-shortcode__empty {
	border-left: 5px solid var(--hmp-gold);
	background: rgba(255, 253, 247, 0.94);
	padding: clamp(18px, 3vw, 28px);
}

.hmp-landing-refresh--architecture .hmp-lp-hero {
	background:
		linear-gradient(135deg, rgba(255, 252, 244, 0.96), rgba(244, 234, 206, 0.86)),
		var(--hmp-cream);
}

.hmp-landing-refresh--architecture .hmp-lp-hero__image {
	aspect-ratio: 5 / 3;
}

.hmp-architecture-primer {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
	gap: clamp(22px, 4vw, 54px);
	align-items: start;
}

.hmp-architecture-primer .hmp-lp-section-heading {
	margin-bottom: 0;
}

.hmp-architecture-lens {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.hmp-architecture-lens div {
	border: 1px solid rgba(201, 154, 46, 0.38);
	background: #fffdf7;
	padding: clamp(16px, 2.2vw, 22px);
	box-shadow: 0 12px 26px rgba(43, 31, 16, 0.07);
}

.hmp-architecture-lens strong {
	display: block;
	color: var(--hmp-green);
	font-family: var(--hmp-serif);
	font-size: clamp(24px, 2.6vw, 34px);
	line-height: 1;
}

.hmp-architecture-lens span {
	display: block;
	margin-top: 8px;
	color: var(--hmp-muted);
	font-size: 15px;
	line-height: 1.48;
}

.hmp-architecture-places .hmp-places-shortcode__grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hmp-architecture-places .hmp-place-card__media {
	aspect-ratio: 16 / 10;
}

.hmp-architecture-paths .hmp-lp-card--story {
	padding: 0;
	overflow: hidden;
}

.hmp-architecture-paths .hmp-lp-card--story .hmp-lp-card__image {
	aspect-ratio: 16 / 10;
	margin: 0;
}

.hmp-architecture-paths .hmp-lp-card--story .hmp-lp-card__body {
	padding: clamp(18px, 2.4vw, 24px);
}

.hmp-landing-refresh--historic-markers .hmp-lp-legacy .alignleft,
.hmp-landing-refresh--historic-markers .hmp-lp-legacy .alignright,
.hmp-landing-refresh--historic-markers .hmp-lp-legacy figure {
	float: none !important;
	display: block;
	max-width: min(100%, 560px);
	margin: clamp(18px, 3vw, 28px) 0;
}

.hmp-landing-refresh--historic-markers .hmp-lp-legacy img {
	display: block;
	width: 100%;
	height: auto;
	border: 1px solid rgba(201, 154, 46, 0.35);
	box-shadow: 0 14px 30px rgba(43, 31, 16, 0.12);
}

.hmp-event-ad--empty {
	grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
	min-height: 0;
	align-items: center;
}

.hmp-event-ad--empty h2 {
	max-width: 860px;
	font-size: clamp(38px, 5vw, 58px);
	line-height: 0.98;
}

.hmp-event-ad--empty .hmp-event-ad__actions {
	align-items: stretch;
}

.hmp-event-ad--empty .hmp-lp-button {
	min-width: min(100%, 250px);
}

.hmp-contact-panel,
.hmp-entry-panel .hmp-contact-panel {
	color: #fff;
}

.hmp-contact-panel .hmp-lp-kicker,
.hmp-entry-panel .hmp-contact-panel .hmp-lp-kicker {
	color: var(--hmp-gold-light) !important;
}

.hmp-contact-panel h2,
.hmp-entry-panel .hmp-contact-panel h2 {
	color: #fff4cf !important;
	text-shadow: 0 2px 0 rgba(0, 0, 0, 0.22);
}

.hmp-contact-panel p:not(.hmp-lp-kicker),
.hmp-entry-panel .hmp-contact-panel p:not(.hmp-lp-kicker) {
	color: rgba(255, 255, 255, 0.9) !important;
}

.hmp-contact-panel__methods a,
.hmp-contact-panel__methods div,
.hmp-entry-panel .hmp-contact-panel__methods a,
.hmp-entry-panel .hmp-contact-panel__methods div {
	color: #fff4cf !important;
}

.hmp-contact-panel__methods span,
.hmp-entry-panel .hmp-contact-panel__methods span {
	color: var(--hmp-gold-light) !important;
}

.mc4wp-form input[type="email"],
.hmp-entry-panel input[type="email"],
.hmp-entry-panel input[type="text"],
.hmp-entry-panel textarea {
	width: min(100%, 360px);
	min-height: 42px;
	border: 1px solid rgba(13, 47, 43, 0.28);
	background: #fffdf7;
	padding: 10px 12px;
	color: var(--hmp-deep);
	font: inherit;
}

.page-id-147 .hmp-entry-panel > h2:first-child {
	max-width: 760px;
	margin-bottom: clamp(18px, 3vw, 28px);
}

.page-id-147 .hmp-entry-panel > .wp-block-columns {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: clamp(18px, 2.5vw, 28px);
	align-items: stretch;
}

.page-id-147 .hmp-entry-panel > .wp-block-columns > .wp-block-column {
	display: flex;
	min-width: 0;
	flex-basis: auto !important;
	flex-direction: column;
	border: 1px solid rgba(201, 154, 46, 0.4);
	background: rgba(255, 252, 244, 0.86);
	padding: clamp(18px, 2.5vw, 26px);
	box-shadow: 0 12px 26px rgba(43, 31, 16, 0.08);
}

.page-id-147 .hmp-entry-panel .wp-block-column h3 {
	margin-bottom: 14px;
	font-size: clamp(24px, 2.35vw, 32px);
	text-align: left !important;
	overflow-wrap: anywhere;
}

.page-id-147 .hmp-entry-panel .wp-block-column p {
	font-size: 16px;
	line-height: 1.58;
}

.page-id-147 .hmp-entry-panel .wp-block-buttons {
	width: 100%;
	margin: 0 0 10px;
}

.page-id-147 .hmp-entry-panel .wp-block-button,
.page-id-147 .hmp-entry-panel .wp-block-button__link {
	width: 100%;
}

.page-id-147 .hmp-entry-panel .wp-block-column .wp-block-buttons + p {
	margin-top: 12px;
}

.page-id-206 .hmp-entry-panel a {
	display: block;
	width: min(100%, 520px);
	border: 1px solid rgba(201, 154, 46, 0.38);
	background: #fffdf7;
	padding: 14px 16px;
	color: var(--hmp-burgundy);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.page-id-206 .hmp-entry-panel a + a,
.page-id-206 .hmp-entry-panel p + p {
	margin-top: 12px;
}

.page-id-208 .hmp-entry-panel > p:last-child,
.page-id-210 .hmp-entry-panel > p:last-child {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.page-id-208 .hmp-entry-panel > p:last-child a,
.page-id-210 .hmp-entry-panel > p:last-child a {
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(146, 29, 46, 0.24);
	background: rgba(146, 29, 46, 0.08);
	padding: 10px 14px;
	color: var(--hmp-burgundy);
	font-family: var(--hmp-sans);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-decoration: none;
	text-transform: uppercase;
}

.hmp-form-fallback {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: clamp(18px, 3vw, 32px);
	align-items: center;
	border-left: 6px solid var(--hmp-gold);
	background: rgba(13, 47, 43, 0.96);
	padding: clamp(22px, 3.5vw, 34px);
	color: #fff;
}

.hmp-form-fallback h2 {
	margin-top: 6px;
	color: #fff4cf;
	font-size: clamp(28px, 3.3vw, 42px);
}

.hmp-form-fallback .hmp-lp-kicker {
	color: var(--hmp-gold-light) !important;
}

.hmp-form-fallback p:not(.hmp-lp-kicker) {
	max-width: 760px;
	color: rgba(255, 255, 255, 0.9);
}

.hmp-form-fallback__actions {
	display: grid;
	gap: 10px;
	min-width: min(100%, 260px);
}

.hmp-form-fallback__actions span {
	color: rgba(255, 255, 255, 0.86);
	font-size: 14px;
	line-height: 1.45;
}

.woocommerce .hmp-main--shop {
	padding-top: clamp(24px, 4vw, 42px);
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	display: flex;
	min-height: 100%;
	flex-direction: column;
}

.woocommerce ul.products li.product .button {
	width: 100%;
	margin-top: auto;
	text-align: center;
}

.hmp-archive-tools {
	grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
	padding: clamp(22px, 3vw, 30px);
}

.hmp-archive-tools__search h2 {
	font-size: clamp(30px, 3.5vw, 44px);
	line-height: 1.05;
}

@media (max-width: 1020px) {
	.hmp-lp-card-grid--four {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.page-id-147 .hmp-entry-panel > .wp-block-columns,
	.hmp-event-ad--empty,
	.hmp-form-fallback,
	.hmp-archive-tools,
	.hmp-architecture-primer {
		grid-template-columns: 1fr;
	}

	.hmp-architecture-places .hmp-places-shortcode__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.hmp-page .hmp-entry-layout,
	.hmp-lp-band,
	.hmp-lp-legacy,
	.hmp-lp-cta,
	.hmp-event-ad {
		width: min(100% - 28px, 1280px);
	}

	.hmp-page .hmp-entry-panel {
		padding: 22px;
	}

	.hmp-landing-refresh .hmp-lp-hero {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 20px 18px;
	}

	.hmp-landing-refresh .hmp-lp-hero h1 {
		font-size: clamp(34px, 11vw, 44px);
	}

	.hmp-landing-refresh .hmp-lp-hero__image {
		aspect-ratio: 16 / 7;
	}

	.hmp-lp-card-grid,
	.hmp-lp-card-grid--three,
	.hmp-lp-card-grid--four {
		grid-template-columns: 1fr;
	}

	.hmp-lp-section-heading h2 {
		font-size: clamp(28px, 9vw, 38px);
	}

	.hmp-event-ad--empty h2 {
		font-size: clamp(30px, 10vw, 42px);
	}

	.hmp-contact-panel {
		grid-template-columns: 1fr;
		padding: 24px;
	}

	.hmp-contact-panel h2,
	.hmp-entry-panel .hmp-contact-panel h2 {
		font-size: clamp(30px, 9vw, 40px);
	}

	.hmp-architecture-lens,
	.hmp-architecture-places .hmp-places-shortcode__grid {
		grid-template-columns: 1fr;
	}

	.page-id-147 .hmp-entry-panel .wp-block-column h3 {
		font-size: clamp(24px, 8vw, 30px);
	}

	.page-id-147 .hmp-entry-panel > .wp-block-columns > .wp-block-column {
		padding: 18px;
	}

	.hmp-archive-topic-grid {
		grid-template-columns: 1fr;
	}
}

/* Editorial section introductions: quieter than the page hero and easier to scan. */
.hmp-landing-refresh .hmp-lp-section-heading,
.hmp-landing-refresh .hmp-lp-band .hmp-lp-section-heading {
	display: grid;
	grid-template-columns: minmax(130px, 0.24fr) minmax(0, 1fr);
	column-gap: clamp(30px, 5vw, 72px);
	row-gap: 8px;
	max-width: 1120px;
	margin-bottom: clamp(24px, 3vw, 38px);
	padding-top: clamp(16px, 2vw, 22px);
	border-top: 1px solid rgba(15, 77, 69, 0.26);
}

.hmp-landing-refresh .hmp-lp-section-heading::after {
	display: none;
}

.hmp-landing-refresh .hmp-lp-section-heading > .hmp-lp-kicker {
	grid-column: 1;
	grid-row: 1 / span 2;
	align-self: start;
	margin: 4px 0 0;
	color: #8b2f35;
	font-size: 13px;
	font-weight: 750;
	letter-spacing: 0.035em;
	line-height: 1.35;
	text-transform: none;
}

.hmp-landing-refresh .hmp-lp-band .hmp-lp-section-heading h2,
.hmp-landing-refresh .hmp-lp-legacy .hmp-lp-section-heading h2 {
	grid-column: 2;
	margin: 0;
	max-width: 760px;
	font-size: clamp(30px, 3vw, 42px);
	letter-spacing: -0.014em;
	line-height: 1.1;
	text-wrap: balance;
}

.hmp-landing-refresh .hmp-lp-band .hmp-lp-section-heading p:not(.hmp-lp-kicker),
.hmp-landing-refresh .hmp-lp-legacy .hmp-lp-section-heading p:not(.hmp-lp-kicker),
.hmp-landing-refresh .hmp-lp-section-heading .hmp-lp-section-copy {
	grid-column: 2;
	margin: 2px 0 0;
	max-width: 64ch;
	color: #4e5b60;
	font-size: clamp(16px, 1.15vw, 18px);
	line-height: 1.5;
}

@media (max-width: 760px) {
	.hmp-landing-refresh .hmp-lp-section-heading,
	.hmp-landing-refresh .hmp-lp-band .hmp-lp-section-heading {
		grid-template-columns: 1fr;
		row-gap: 7px;
		margin-bottom: 24px;
		padding-top: 14px;
	}

	.hmp-landing-refresh .hmp-lp-section-heading > .hmp-lp-kicker,
	.hmp-landing-refresh .hmp-lp-band .hmp-lp-section-heading h2,
	.hmp-landing-refresh .hmp-lp-legacy .hmp-lp-section-heading h2,
	.hmp-landing-refresh .hmp-lp-band .hmp-lp-section-heading p:not(.hmp-lp-kicker),
	.hmp-landing-refresh .hmp-lp-legacy .hmp-lp-section-heading p:not(.hmp-lp-kicker),
	.hmp-landing-refresh .hmp-lp-section-heading .hmp-lp-section-copy {
		grid-column: 1;
		grid-row: auto;
	}

	.hmp-landing-refresh .hmp-lp-section-heading > .hmp-lp-kicker {
		margin-top: 0;
		font-size: 12px;
	}

	.hmp-landing-refresh .hmp-lp-band .hmp-lp-section-heading h2,
	.hmp-landing-refresh .hmp-lp-legacy .hmp-lp-section-heading h2 {
		font-size: clamp(27px, 8vw, 34px);
		line-height: 1.12;
	}

	.hmp-landing-refresh .hmp-lp-band .hmp-lp-section-heading p:not(.hmp-lp-kicker),
	.hmp-landing-refresh .hmp-lp-legacy .hmp-lp-section-heading p:not(.hmp-lp-kicker) {
		font-size: 16px;
		line-height: 1.48;
	}
}

/* Keep Explore's photographic hero larger than the shared landing-page thumbnail. */
.hmp-landing-refresh--explore .hmp-lp-hero {
	align-items: stretch;
	gap: clamp(28px, 5vw, 68px);
	grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
	min-height: 470px;
}

.hmp-landing-refresh--explore .hmp-lp-hero__image {
	align-self: stretch;
	aspect-ratio: auto;
	height: 100%;
	min-height: 390px;
}

.hmp-landing-refresh--explore .hmp-lp-hero__image img {
	aspect-ratio: auto;
	height: 100%;
	max-height: none;
	min-height: 390px;
	object-fit: cover;
	object-position: 52% center;
}

@media (max-width: 980px) {
	.hmp-landing-refresh--explore .hmp-lp-hero {
		grid-template-columns: 1fr;
	}

	.hmp-landing-refresh--explore .hmp-lp-hero__image,
	.hmp-landing-refresh--explore .hmp-lp-hero__image img {
		min-height: 330px;
	}

	.hmp-landing-refresh--explore .hmp-lp-hero__image img {
		max-height: 440px;
	}
}

@media (max-width: 620px) {
	.hmp-landing-refresh--explore .hmp-lp-hero {
		min-height: 0;
	}

	.hmp-landing-refresh--explore .hmp-lp-hero h1 {
		font-size: clamp(36px, 10vw, 39px);
		line-height: 1;
	}

	.hmp-landing-refresh--explore .hmp-lp-hero__image,
	.hmp-landing-refresh--explore .hmp-lp-hero__image img {
		min-height: 250px;
	}
}

/* Local History: a research guide rather than another generic card directory. */
.hmp-landing-refresh--local-history .hmp-lp-hero {
	align-items: stretch;
	gap: clamp(30px, 5vw, 70px);
	grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
	min-height: 480px;
}

.hmp-landing-refresh--local-history .hmp-lp-hero__copy {
	align-self: center;
}

.hmp-landing-refresh--local-history .hmp-lp-hero h1 {
	max-width: 720px;
}

.hmp-landing-refresh--local-history .hmp-lp-hero__image {
	align-self: stretch;
	aspect-ratio: auto;
	height: 100%;
	min-height: 400px;
	overflow: hidden;
}

.hmp-landing-refresh--local-history .hmp-lp-hero__image img {
	aspect-ratio: auto;
	filter: saturate(0.72) sepia(0.14) contrast(1.03);
	height: 100%;
	max-height: none;
	min-height: 400px;
	object-fit: cover;
	object-position: center 46%;
}

.hmp-history-start {
	align-items: start;
	display: grid;
	gap: clamp(34px, 5.5vw, 76px);
	grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
}

.hmp-history-start__intro {
	padding-top: 14px;
}

.hmp-history-start__intro::before {
	background: #c7952c;
	content: "";
	display: block;
	height: 3px;
	margin-bottom: 27px;
	width: 70px;
}

.hmp-history-start__intro h2 {
	color: #102e29;
	font-family: var(--hmp-font-display, Georgia, serif);
	font-size: clamp(38px, 4.2vw, 58px);
	line-height: 0.99;
	margin: 12px 0 22px;
	max-width: 520px;
}

.hmp-history-start__intro > p:last-child {
	color: #425954;
	font-size: clamp(17px, 1.35vw, 20px);
	line-height: 1.62;
	margin: 0;
}

.hmp-history-directory-grid {
	display: grid;
	gap: 18px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hmp-history-directory {
	background: #fffdf7;
	border: 1px solid rgba(16, 46, 41, 0.18);
	border-top: 6px solid #c7952c;
	box-shadow: 0 16px 38px rgba(48, 37, 18, 0.08);
	color: #102e29;
	display: flex;
	flex-direction: column;
	min-height: 330px;
	padding: clamp(28px, 3vw, 42px);
	text-decoration: none;
	transition: box-shadow 160ms ease, transform 160ms ease;
}

.hmp-history-directory--place {
	background: #8f1f32;
	border-color: #8f1f32;
	border-top-color: #ffe08a;
	color: #fffdf7;
}

.hmp-history-directory--story {
	grid-column: 1 / -1;
}

.hmp-history-directory:hover {
	box-shadow: 0 20px 44px rgba(48, 37, 18, 0.14);
	transform: translateY(-3px);
}

.hmp-history-directory:focus-visible {
	outline: 4px solid #8f1f32;
	outline-offset: 4px;
}

.hmp-history-directory--place:focus-visible {
	outline-color: #ffe08a;
}

.hmp-history-directory__prompt {
	color: #8f1f32;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.hmp-history-directory--place .hmp-history-directory__prompt {
	color: #ffe08a;
}

.hmp-history-directory__title {
	font-family: var(--hmp-font-display, Georgia, serif);
	font-size: clamp(29px, 2.4vw, 38px);
	font-weight: 700;
	line-height: 1.03;
	margin-top: 18px;
}

.hmp-history-directory__body {
	color: #526863;
	font-size: 16px;
	line-height: 1.55;
	margin-top: 20px;
}

.hmp-history-directory--place .hmp-history-directory__body {
	color: rgba(255, 253, 247, 0.86);
}

.hmp-history-directory__action {
	align-items: center;
	border-top: 1px solid rgba(16, 46, 41, 0.16);
	display: flex;
	font-size: 14px;
	font-weight: 800;
	justify-content: space-between;
	letter-spacing: 0.05em;
	margin-top: auto;
	padding-top: 20px;
	text-transform: uppercase;
}

.hmp-history-directory--place .hmp-history-directory__action {
	border-top-color: rgba(255, 253, 247, 0.28);
	color: #ffe08a;
}

.hmp-history-directory__action span {
	font-size: 24px;
	line-height: 1;
}

.hmp-history-start__note {
	border-left: 3px solid #c7952c;
	color: #425954;
	font-size: 15px;
	grid-column: 2;
	line-height: 1.55;
	margin: -4px 0 0;
	padding-left: 18px;
}

.hmp-history-start__note strong {
	color: #102e29;
}

.hmp-history-subjects {
	background:
		linear-gradient(rgba(255, 253, 247, 0.88), rgba(255, 253, 247, 0.88)),
		repeating-linear-gradient(0deg, transparent 0, transparent 35px, rgba(16, 46, 41, 0.035) 36px);
}

.hmp-history-shelves {
	display: grid;
	gap: clamp(20px, 3vw, 34px);
	grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
}

.hmp-history-shelf {
	background: #fffdf7;
	border: 1px solid rgba(16, 46, 41, 0.18);
	box-shadow: 0 16px 38px rgba(48, 37, 18, 0.07);
	min-width: 0;
}

.hmp-history-shelf--public {
	background: #0b5145;
	border-color: #0b5145;
	color: #fffdf7;
}

.hmp-history-shelf__header {
	border-top: 6px solid #c7952c;
	min-height: 225px;
	padding: clamp(31px, 4vw, 52px);
}

.hmp-history-shelf--public .hmp-history-shelf__header {
	border-top-color: #ffe08a;
}

.hmp-history-shelf__header p {
	color: #8f1f32;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.16em;
	margin: 0 0 17px;
	text-transform: uppercase;
}

.hmp-history-shelf--public .hmp-history-shelf__header p {
	color: #ffe08a;
}

.hmp-history-shelf__header h3 {
	color: #102e29;
	font-family: var(--hmp-font-display, Georgia, serif);
	font-size: clamp(35px, 3.7vw, 52px);
	line-height: 1.01;
	margin: 0;
	max-width: 560px;
}

.hmp-history-shelf--public .hmp-history-shelf__header h3 {
	color: #fffdf7;
}

.hmp-history-shelf__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hmp-history-shelf__list li {
	border-top: 1px solid rgba(16, 46, 41, 0.16);
	margin: 0;
}

.hmp-history-shelf--public .hmp-history-shelf__list li {
	border-top-color: rgba(255, 253, 247, 0.2);
}

.hmp-history-shelf__list a {
	align-items: center;
	color: #102e29;
	display: grid;
	gap: 20px;
	grid-template-columns: 34px minmax(0, 1fr) 24px;
	min-height: 148px;
	padding: 26px clamp(24px, 3vw, 42px);
	text-decoration: none;
	transition: background-color 150ms ease;
}

.hmp-history-shelf--public .hmp-history-shelf__list a {
	color: #fffdf7;
}

.hmp-history-shelf__list a:hover {
	background: rgba(199, 149, 44, 0.1);
}

.hmp-history-shelf--public .hmp-history-shelf__list a:hover {
	background: rgba(255, 224, 138, 0.08);
}

.hmp-history-shelf__list a:focus-visible {
	outline: 4px solid #8f1f32;
	outline-offset: -4px;
}

.hmp-history-shelf--public .hmp-history-shelf__list a:focus-visible {
	outline-color: #ffe08a;
}

.hmp-history-topic__number {
	color: #9b701d;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.hmp-history-shelf--public .hmp-history-topic__number,
.hmp-history-shelf--public .hmp-history-topic__arrow {
	color: #ffe08a;
}

.hmp-history-topic__copy {
	display: grid;
	gap: 7px;
}

.hmp-history-topic__title {
	font-family: var(--hmp-font-display, Georgia, serif);
	font-size: clamp(23px, 2vw, 30px);
	font-weight: 700;
	line-height: 1.06;
}

.hmp-history-topic__body {
	color: #526863;
	font-size: 15px;
	line-height: 1.48;
}

.hmp-history-shelf--public .hmp-history-topic__body {
	color: rgba(255, 253, 247, 0.82);
}

.hmp-history-topic__arrow {
	color: #9b701d;
	font-size: 23px;
	line-height: 1;
	transition: transform 150ms ease;
}

.hmp-history-shelf__list a:hover .hmp-history-topic__arrow,
.hmp-history-shelf__list a:focus-visible .hmp-history-topic__arrow {
	transform: translateX(4px);
}

.hmp-history-visit__actions {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-end;
}

@media (max-width: 980px) {
	.hmp-landing-refresh--local-history .hmp-lp-hero {
		grid-template-columns: 1fr;
	}

	.hmp-landing-refresh--local-history .hmp-lp-hero__image,
	.hmp-landing-refresh--local-history .hmp-lp-hero__image img {
		min-height: 340px;
	}

	.hmp-landing-refresh--local-history .hmp-lp-hero__image img {
		max-height: 470px;
	}

	.hmp-history-start,
	.hmp-history-shelves {
		grid-template-columns: 1fr;
	}

	.hmp-history-start__note {
		grid-column: 1;
	}

	.hmp-history-shelf__header {
		min-height: 0;
	}

	.hmp-history-visit__actions {
		justify-content: flex-start;
	}
}

@media (max-width: 680px) {
	.hmp-landing-refresh--local-history .hmp-lp-hero {
		min-height: 0;
	}

	.hmp-landing-refresh--local-history .hmp-lp-hero h1 {
		font-size: clamp(35px, 10vw, 40px);
		line-height: 1.01;
	}

	.hmp-landing-refresh--local-history .hmp-lp-hero__image,
	.hmp-landing-refresh--local-history .hmp-lp-hero__image img {
		min-height: 260px;
	}

	.hmp-history-directory-grid {
		grid-template-columns: 1fr;
	}

	.hmp-history-directory {
		min-height: 300px;
	}

	.hmp-history-shelf__list a {
		gap: 13px;
		grid-template-columns: 28px minmax(0, 1fr) 20px;
		min-height: 0;
		padding: 24px 20px;
	}

	.hmp-history-topic__body {
		font-size: 14px;
	}

	.hmp-history-visit__actions,
	.hmp-history-visit__actions .hmp-lp-button {
		align-items: stretch;
		width: 100%;
	}

	.hmp-history-visit__actions .hmp-lp-button {
		justify-content: center;
	}
}

/* Keep the Treasure Hunt leaderboard contained inside a normal page article. */
.hmp-page .hmp-entry-panel > .thga-leaderboard {
	align-items: stretch;
	margin: clamp(24px, 3vw, 38px) 0 0;
	max-width: 100%;
	min-height: 0;
	overflow-x: hidden;
	width: 100%;
}

.hmp-page .hmp-entry-panel > .thga-leaderboard .thga-shell {
	min-height: 0;
	width: 100%;
}

/* Keep WooCommerce cart access visible in the top bar on every screen. */
.hmp-header-cart {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	gap: 7px;
	min-height: 44px;
	border: 1px solid rgba(143, 29, 43, 0.34);
	border-radius: 3px;
	background: rgba(255, 253, 247, 0.82);
	color: var(--hmp-burgundy);
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
	padding: 0 11px;
	text-decoration: none;
	transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.hmp-header-cart:hover,
.hmp-header-cart:focus {
	border-color: var(--hmp-burgundy);
	background: rgba(199, 149, 46, 0.14);
	color: var(--hmp-burgundy-dark);
}

.hmp-header-cart__icon {
	position: relative;
	display: block;
	width: 18px;
	height: 13px;
	border: 2px solid currentColor;
	border-radius: 2px 2px 4px 4px;
}

.hmp-header-cart__icon::before {
	content: "";
	position: absolute;
	top: -7px;
	left: 3px;
	width: 8px;
	height: 6px;
	border: 2px solid currentColor;
	border-bottom: 0;
	border-radius: 7px 7px 0 0;
}

.hmp-header-cart__count {
	display: inline-flex;
	min-width: 21px;
	height: 21px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	background: var(--hmp-burgundy);
	color: #fff;
	font-size: 11px;
	font-variant-numeric: tabular-nums;
	padding-inline: 6px;
}

@media (max-width: 1180px) {
	.hmp-header-cart {
		gap: 6px;
		padding-inline: 9px;
	}
}

@media (max-width: 680px) {
	.hmp-header-inner {
		padding-right: 0;
	}

	.hmp-brand,
	.hmp-brand img,
	.hmp-brand .custom-logo {
		width: min(190px, calc(100vw - 170px));
		max-width: min(190px, calc(100vw - 170px));
	}

	.hmp-menu-toggle {
		left: auto;
		right: 82px;
	}

	.hmp-header-cart {
		position: absolute;
		top: 18px;
		right: 14px;
		z-index: 60;
		min-height: 42px;
	}

	.hmp-header-cart__label {
		display: none;
	}
}

.hmp-page .hmp-entry-panel > .thga-leaderboard .thga-map-card {
	align-content: start;
	min-height: 0;
}

.hmp-page .hmp-entry-panel > .thga-leaderboard h2 {
	font-size: clamp(44px, 7vw, 92px);
}

@media (max-width: 720px) {
	.hmp-page .hmp-entry-panel > .thga-leaderboard {
		margin-top: 22px;
	}

	.hmp-page .hmp-entry-panel > .thga-leaderboard h2 {
		font-size: clamp(34px, 12vw, 54px);
	}
}

/* Cart experience: branded progress, clear item review, and a confident checkout path. */
.hmp-header-cart__details {
	display: grid;
	gap: 2px;
	text-align: left;
}

.hmp-header-cart__label {
	letter-spacing: 0.025em;
}

.hmp-header-cart__subtotal {
	color: var(--hmp-muted);
	font-size: 10px;
	font-weight: 800;
	white-space: nowrap;
}

.hmp-header-cart__subtotal .amount {
	color: inherit;
}

.hmp-header-cart[aria-current="page"] {
	border-color: var(--hmp-burgundy);
	background: var(--hmp-burgundy);
	color: #fff;
}

.hmp-header-cart[aria-current="page"] .hmp-header-cart__subtotal {
	color: rgba(255, 255, 255, 0.76);
}

.hmp-header-cart[aria-current="page"] .hmp-header-cart__count {
	background: var(--hmp-gold-2);
	color: #241908;
}

.hmp-shop-intro--cart,
.hmp-shop-intro--checkout {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(199, 149, 46, 0.58);
	border-left-width: 1px;
	background:
		radial-gradient(circle at 92% 14%, rgba(241, 207, 120, 0.18), transparent 17rem),
		linear-gradient(135deg, #0b2b28 0%, #15584f 70%, #1b655a 100%);
	box-shadow: 0 18px 42px rgba(11, 43, 40, 0.16);
	color: #fff;
}

.hmp-shop-intro--cart::after,
.hmp-shop-intro--checkout::after {
	content: "";
	position: absolute;
	top: -58px;
	right: -42px;
	width: 170px;
	height: 170px;
	border: 1px solid rgba(241, 207, 120, 0.24);
	border-radius: 50%;
}

.hmp-shop-intro--cart .hmp-lp-kicker,
.hmp-shop-intro--checkout .hmp-lp-kicker {
	color: var(--hmp-gold-2);
}

.hmp-shop-intro--cart h2,
.hmp-shop-intro--checkout h2 {
	color: #fff8e7;
}

.hmp-shop-intro--cart p:not(.hmp-lp-kicker),
.hmp-shop-intro--checkout p:not(.hmp-lp-kicker) {
	color: rgba(255, 255, 255, 0.82);
}

.hmp-commerce-steps {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: none;
}

.hmp-commerce-step {
	display: grid;
	gap: 7px;
	align-content: center;
	min-height: 86px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.065);
	padding: 12px;
	color: rgba(255, 255, 255, 0.68);
}

.hmp-commerce-step span {
	display: inline-flex;
	width: 28px;
	height: 28px;
	align-items: center;
	justify-content: center;
	border: 1px solid currentColor;
	border-radius: 50%;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.06em;
}

.hmp-commerce-step strong {
	font-size: 12px;
	line-height: 1.2;
}

.hmp-commerce-step.is-current {
	border-color: rgba(241, 207, 120, 0.72);
	background: rgba(241, 207, 120, 0.14);
	color: #fff8e7;
}

.hmp-commerce-step.is-current span {
	border-color: var(--hmp-gold-2);
	background: var(--hmp-gold-2);
	color: #241908;
}

.hmp-commerce-step.is-complete {
	border-color: rgba(255, 255, 255, 0.34);
	color: rgba(255, 255, 255, 0.9);
}

.woocommerce-cart .hmp-entry-layout {
	width: min(1240px, calc(100% - 36px));
}

.woocommerce-cart .hmp-entry-panel {
	overflow: visible;
}

.woocommerce-cart .hmp-entry-panel > .woocommerce {
	display: grid;
	grid-template-columns: minmax(0, 1.58fr) minmax(290px, 0.72fr);
	gap: clamp(18px, 2.5vw, 30px);
	align-items: start;
}

.woocommerce-cart .woocommerce-notices-wrapper,
.woocommerce-cart .hmp-entry-panel > .woocommerce > .hmp-commerce-checkout-note,
.woocommerce-cart .wc-empty-cart-message,
.woocommerce-cart .return-to-shop {
	grid-column: 1 / -1;
}

.woocommerce-cart .woocommerce-notices-wrapper:empty {
	display: none;
}

.woocommerce-cart .woocommerce-message,
.woocommerce-cart .woocommerce-info,
.woocommerce-cart .woocommerce-error {
	margin: 0;
	border: 1px solid rgba(21, 88, 79, 0.24);
	border-top: 0;
	border-left: 5px solid var(--hmp-green);
	background: #f1f8f3;
	color: var(--hmp-deep);
	box-shadow: 0 10px 24px rgba(23, 32, 39, 0.07);
	padding: 16px 18px 16px 48px;
}

.woocommerce-cart .woocommerce-message::before,
.woocommerce-cart .woocommerce-info::before {
	top: 16px;
	left: 18px;
	color: var(--hmp-green);
}

.woocommerce-cart .woocommerce-message .button,
.woocommerce-cart .woocommerce-info .button {
	color: var(--hmp-burgundy);
	font-weight: 900;
	text-decoration: underline;
	text-underline-offset: 0.18em;
}

.woocommerce-cart .woocommerce-cart-form {
	grid-column: 1;
	overflow: hidden;
	border: 1px solid rgba(199, 149, 46, 0.34);
	border-radius: 5px;
	background: #fffdf8;
	box-shadow: 0 18px 42px rgba(43, 31, 16, 0.09);
}

.woocommerce-cart .woocommerce-cart-form .hmp-commerce-checkout-note {
	margin: 0;
	border: 0;
	border-bottom: 1px solid rgba(199, 149, 46, 0.26);
	border-left: 5px solid var(--hmp-gold);
	background: linear-gradient(135deg, rgba(255, 250, 236, 0.96), rgba(247, 239, 217, 0.7));
	box-shadow: none;
	padding: 18px 20px;
}

.woocommerce-cart .woocommerce-cart-form .hmp-commerce-checkout-note h2 {
	font-size: clamp(21px, 2vw, 27px);
}

.woocommerce-cart .woocommerce-cart-form .hmp-commerce-checkout-note p:not(.hmp-lp-kicker) {
	font-size: 14px;
	line-height: 1.45;
}

.woocommerce-cart table.shop_table.cart {
	margin: 0;
	border: 0;
	border-collapse: separate;
	border-radius: 0;
	background: transparent;
}

.woocommerce-cart table.shop_table.cart thead {
	background: var(--hmp-deep);
}

.woocommerce-cart table.shop_table.cart thead th {
	border: 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.1em;
	padding: 13px 12px;
	text-transform: uppercase;
}

.woocommerce-cart table.shop_table.cart td {
	border-top: 0;
	border-bottom: 1px solid rgba(199, 149, 46, 0.2);
	padding: 18px 12px;
	vertical-align: middle;
}

.woocommerce-cart table.shop_table.cart .product-thumbnail {
	width: 92px;
}

.woocommerce-cart table.shop_table.cart .product-thumbnail img {
	display: block;
	width: 72px;
	height: 72px;
	border: 1px solid rgba(199, 149, 46, 0.3);
	border-radius: 4px;
	background: var(--hmp-paper);
	box-shadow: 0 8px 18px rgba(43, 31, 16, 0.09);
	object-fit: cover;
}

.woocommerce-cart table.shop_table.cart .product-name a {
	color: var(--hmp-green);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(17px, 1.6vw, 21px);
	font-weight: 800;
	line-height: 1.2;
	text-decoration: none;
}

.woocommerce-cart table.shop_table.cart .product-name a:hover,
.woocommerce-cart table.shop_table.cart .product-name a:focus {
	color: var(--hmp-burgundy);
	text-decoration: underline;
	text-underline-offset: 0.16em;
}

.woocommerce-cart table.shop_table.cart .product-price,
.woocommerce-cart table.shop_table.cart .product-subtotal {
	color: var(--hmp-deep);
	font-size: 15px;
	font-weight: 800;
}

.woocommerce-cart table.shop_table.cart .product-subtotal {
	color: var(--hmp-burgundy);
}

.woocommerce-cart table.shop_table.cart .quantity .qty {
	width: 68px;
	min-height: 42px;
	border: 1px solid rgba(21, 88, 79, 0.32);
	border-radius: 3px;
	background: #fff;
	color: var(--hmp-deep);
	font-size: 15px;
	font-weight: 800;
	text-align: center;
}

.woocommerce-cart table.shop_table.cart .remove {
	display: inline-flex;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(143, 29, 43, 0.2);
	border-radius: 50%;
	background: rgba(143, 29, 43, 0.055);
	color: var(--hmp-burgundy) !important;
	font-size: 22px;
	font-weight: 400;
	line-height: 1;
}

.woocommerce-cart table.shop_table.cart .remove:hover,
.woocommerce-cart table.shop_table.cart .remove:focus {
	border-color: var(--hmp-burgundy);
	background: var(--hmp-burgundy);
	color: #fff !important;
}

.woocommerce-cart table.shop_table.cart td.actions {
	background: rgba(246, 239, 223, 0.68);
	padding: 14px 18px;
}

.woocommerce-cart table.shop_table.cart td.actions .button,
.woocommerce-cart .return-to-shop .button,
.woocommerce-cart .hmp-cart-continue {
	display: inline-flex;
	min-height: 42px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(21, 88, 79, 0.34);
	border-radius: 3px;
	background: #fffdf7;
	color: var(--hmp-green);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.055em;
	padding: 0 16px;
	text-decoration: none;
	text-transform: uppercase;
}

.woocommerce-cart table.shop_table.cart td.actions .button:hover,
.woocommerce-cart table.shop_table.cart td.actions .button:focus,
.woocommerce-cart .return-to-shop .button:hover,
.woocommerce-cart .return-to-shop .button:focus,
.woocommerce-cart .hmp-cart-continue:hover,
.woocommerce-cart .hmp-cart-continue:focus {
	border-color: var(--hmp-green);
	background: var(--hmp-green);
	color: #fff;
}

.woocommerce-cart table.shop_table.cart td.actions .button:disabled {
	opacity: 0.48;
}

.woocommerce-cart .hmp-cart-continue {
	float: left;
}

.woocommerce-cart .cart-collaterals {
	grid-column: 2;
	width: 100%;
}

.woocommerce-cart .cart-collaterals::before,
.woocommerce-cart .cart-collaterals::after {
	display: none;
}

.woocommerce-cart .cart-collaterals .cart_totals {
	position: sticky;
	top: 112px;
	float: none;
	overflow: hidden;
	width: 100%;
	border: 1px solid rgba(199, 149, 46, 0.44);
	border-radius: 5px;
	background: #fffdf8;
	box-shadow: 0 20px 44px rgba(43, 31, 16, 0.12);
}

.woocommerce-cart .cart_totals > h2 {
	margin: 0;
	background:
		linear-gradient(135deg, rgba(11, 43, 40, 0.98), rgba(21, 88, 79, 0.96)),
		var(--hmp-deep);
	color: #fff8e7;
	font-size: clamp(24px, 2.4vw, 31px);
	padding: 20px 22px;
}

.woocommerce-cart .cart_totals table.shop_table {
	margin: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.woocommerce-cart .cart_totals table.shop_table th,
.woocommerce-cart .cart_totals table.shop_table td {
	border-top: 1px solid rgba(199, 149, 46, 0.2);
	padding: 16px 20px;
	vertical-align: middle;
}

.woocommerce-cart .cart_totals table.shop_table th {
	color: var(--hmp-muted);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.075em;
	text-transform: uppercase;
}

.woocommerce-cart .cart_totals table.shop_table td {
	color: var(--hmp-deep);
	font-size: 16px;
	font-weight: 800;
	text-align: right;
}

.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td {
	border-top: 2px solid rgba(199, 149, 46, 0.44);
	color: var(--hmp-deep);
}

.woocommerce-cart .cart_totals .order-total td {
	color: var(--hmp-burgundy);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 22px;
}

.woocommerce-cart .wc-proceed-to-checkout {
	padding: 18px 20px 20px;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
	display: flex;
	min-height: 54px;
	align-items: center;
	justify-content: center;
	margin: 0;
	border: 1px solid rgba(93, 61, 16, 0.3);
	border-radius: 3px;
	background: linear-gradient(180deg, #f5d779 0%, #d5a83a 58%, #b57b21 100%);
	box-shadow: 0 12px 24px rgba(94, 61, 16, 0.2);
	color: #17150d;
	font-size: 14px;
	font-weight: 900;
	letter-spacing: 0.065em;
	padding: 0 18px;
	text-transform: uppercase;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout .checkout-button:focus {
	background: linear-gradient(180deg, #ffe59b 0%, #dfb64f 58%, #bf8526 100%);
	color: #17150d;
	transform: translateY(-1px);
}

.hmp-cart-assurances {
	display: grid;
	gap: 8px;
	margin: 14px 0 0;
	padding: 14px 0 0;
	border-top: 1px solid rgba(199, 149, 46, 0.24);
	list-style: none;
}

.hmp-cart-assurances li {
	position: relative;
	margin: 0;
	color: var(--hmp-muted);
	font-size: 12px;
	font-weight: 700;
	line-height: 1.3;
	padding-left: 21px;
}

.hmp-cart-assurances li::before {
	content: "";
	position: absolute;
	top: 0.15em;
	left: 0;
	width: 12px;
	height: 12px;
	border: 2px solid var(--hmp-green);
	border-radius: 50%;
	box-shadow: inset 0 0 0 3px #fffdf8;
	background: var(--hmp-green);
}

.woocommerce-cart .wc-empty-cart-message {
	position: relative;
	margin: 0;
	border: 1px solid rgba(199, 149, 46, 0.38);
	border-radius: 5px;
	background:
		radial-gradient(circle at 50% 0, rgba(199, 149, 46, 0.12), transparent 16rem),
		linear-gradient(180deg, #fffdf8, #f8f0df);
	box-shadow: 0 18px 42px rgba(43, 31, 16, 0.09);
	padding: clamp(44px, 7vw, 72px) 24px clamp(30px, 5vw, 48px);
	text-align: center;
}

.woocommerce-cart .wc-empty-cart-message::before {
	content: "";
	display: block;
	width: 52px;
	height: 36px;
	margin: 0 auto 24px;
	border: 4px solid var(--hmp-burgundy);
	border-radius: 5px 5px 11px 11px;
	box-shadow: 0 8px 0 -5px rgba(143, 29, 43, 0.18);
}

.woocommerce-cart .wc-empty-cart-message::after {
	content: "";
	position: absolute;
	top: clamp(34px, 6vw, 60px);
	left: calc(50% - 13px);
	width: 26px;
	height: 19px;
	border: 4px solid var(--hmp-burgundy);
	border-bottom: 0;
	border-radius: 16px 16px 0 0;
}

.woocommerce-cart .wc-empty-cart-message .cart-empty {
	margin: 0;
	border: 0;
	background: transparent;
	box-shadow: none;
	color: var(--hmp-green);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(23px, 3vw, 32px);
	font-weight: 800;
	padding: 0;
}

.woocommerce-cart .wc-empty-cart-message .cart-empty::before {
	display: none;
}

.woocommerce-cart .return-to-shop {
	margin: -14px 0 0;
	text-align: center;
}

.woocommerce-cart .return-to-shop .button {
	min-height: 48px;
	border-color: var(--hmp-burgundy);
	background: var(--hmp-burgundy);
	color: #fff;
	padding-inline: 22px;
}

@media (max-width: 960px) {
	.woocommerce-cart .hmp-entry-panel > .woocommerce {
		grid-template-columns: 1fr;
	}

	.woocommerce-cart .woocommerce-cart-form,
	.woocommerce-cart .cart-collaterals {
		grid-column: 1;
	}

	.woocommerce-cart .cart-collaterals .cart_totals {
		position: static;
	}
}

@media (max-width: 782px) {
	.woocommerce-cart table.shop_table_responsive.cart thead {
		display: none;
	}

	.woocommerce-cart table.shop_table_responsive.cart,
	.woocommerce-cart table.shop_table_responsive.cart tbody {
		display: block;
		width: 100%;
	}

	.woocommerce-cart table.shop_table_responsive.cart tr.cart_item {
		display: grid;
		grid-template-columns: 78px minmax(0, 1fr) minmax(72px, auto);
		grid-template-areas:
			"image name remove"
			"image price subtotal"
			"image quantity subtotal";
		gap: 7px 14px;
		align-items: center;
		border-bottom: 1px solid rgba(199, 149, 46, 0.28);
		padding: 18px;
	}

	.woocommerce-cart table.shop_table_responsive.cart tr.cart_item td {
		display: block !important;
		float: none !important;
		width: auto !important;
		border: 0;
		padding: 0;
		text-align: left !important;
	}

	.woocommerce-cart table.shop_table_responsive.cart tr.cart_item td::before {
		display: none;
	}

	.woocommerce-cart table.shop_table_responsive.cart td.product-thumbnail {
		grid-area: image;
	}

	.woocommerce-cart table.shop_table_responsive.cart td.product-thumbnail a,
	.woocommerce-cart table.shop_table_responsive.cart td.product-thumbnail img {
		display: block;
	}

	.woocommerce-cart table.shop_table_responsive.cart td.product-name {
		grid-area: name;
	}

	.woocommerce-cart table.shop_table_responsive.cart td.product-price {
		grid-area: price;
	}

	.woocommerce-cart table.shop_table_responsive.cart td.product-price::before {
		content: attr(data-title) ": ";
		display: inline;
		margin-right: 4px;
		color: var(--hmp-muted);
		font-size: 10px;
		letter-spacing: 0.07em;
		text-transform: uppercase;
	}

	.woocommerce-cart table.shop_table_responsive.cart td.product-quantity {
		grid-area: quantity;
		display: flex !important;
		gap: 8px;
		align-items: center;
	}

	.woocommerce-cart table.shop_table_responsive.cart td.product-quantity::before {
		content: attr(data-title);
		display: inline;
		color: var(--hmp-muted);
		font-size: 10px;
		font-weight: 900;
		letter-spacing: 0.07em;
		text-transform: uppercase;
	}

	.woocommerce-cart table.shop_table_responsive.cart td.product-subtotal {
		grid-area: subtotal;
		align-self: end;
		text-align: right !important;
	}

	.woocommerce-cart table.shop_table_responsive.cart td.product-subtotal::before {
		content: attr(data-title);
		display: block;
		margin-bottom: 3px;
		color: var(--hmp-muted);
		font-size: 10px;
		font-weight: 900;
		letter-spacing: 0.07em;
		text-transform: uppercase;
	}

	.woocommerce-cart table.shop_table_responsive.cart td.product-remove {
		grid-area: remove;
		justify-self: end;
	}

	.woocommerce-cart table.shop_table_responsive.cart tbody > tr:last-child {
		display: block;
	}

	.woocommerce-cart table.shop_table_responsive.cart tbody > tr:last-child td.actions {
		display: flow-root;
		width: 100%;
		border: 0;
	}

	.woocommerce-cart .cart_totals table.shop_table_responsive tr {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
	}

	.woocommerce-cart .cart_totals table.shop_table_responsive th,
	.woocommerce-cart .cart_totals table.shop_table_responsive td {
		display: block;
		width: auto;
		border-top: 1px solid rgba(199, 149, 46, 0.2);
		text-align: right !important;
	}

	.woocommerce-cart .cart_totals table.shop_table_responsive td::before {
		display: none;
	}
}

@media (max-width: 680px) {
	.hmp-header-cart__details {
		display: none;
	}

	.hmp-commerce-steps {
		gap: 5px;
	}

	.hmp-commerce-step {
		min-height: 72px;
		gap: 5px;
		padding: 8px;
	}

	.hmp-commerce-step strong {
		font-size: 10px;
	}

	.woocommerce-cart .hmp-entry-layout {
		width: min(100% - 28px, 640px);
	}

	.woocommerce-cart .woocommerce-cart-form .hmp-commerce-checkout-note {
		padding: 16px;
	}
}

@media (max-width: 520px) {
	.woocommerce-cart table.shop_table_responsive.cart tr.cart_item {
		grid-template-columns: 64px minmax(0, 1fr) 36px;
		grid-template-areas:
			"image name remove"
			"image price price"
			"quantity quantity subtotal";
		padding: 14px;
	}

	.woocommerce-cart table.shop_table.cart .product-thumbnail,
	.woocommerce-cart table.shop_table.cart .product-thumbnail img {
		width: 64px;
		height: 64px;
	}

	.woocommerce-cart table.shop_table.cart td.actions .button,
	.woocommerce-cart .hmp-cart-continue {
		float: none;
		width: 100%;
		margin: 0 0 9px;
	}

	.woocommerce-cart .wc-proceed-to-checkout,
	.woocommerce-cart .cart_totals table.shop_table th,
	.woocommerce-cart .cart_totals table.shop_table td {
		padding-inline: 16px;
	}
}
