:root {
	--color-ink: #17211c;
	--color-muted: #4d5853;
	--color-surface: #ffffff;
	--color-soft: #f3f6f2;
	--color-line: #d7ded8;
	--color-teal: #0f766e;
	--color-teal-dark: #0a4f49;
	--color-leaf: #7a9848;
	--color-brick: #a65334;
	--color-gold: #c7923a;
	/* Elevation — one tokenised recipe per role (was three inline one-offs). */
	--shadow-sm: 0 8px 22px rgba(23, 33, 28, 0.06);
	--shadow-md: 0 18px 40px rgba(23, 33, 28, 0.1);
	--shadow-cta: 0 10px 28px rgba(15, 118, 110, 0.22);
	--radius: 8px;
	--radius-sm: 4px;
	--accent-bar: 4px;
	/* Spacing scale (4px base) — single source of truth for margins/padding/gaps. */
	--space-3xs: 4px;
	--space-2xs: 8px;
	--space-xs: 12px;
	--space-sm: 16px;
	--space-md: 24px;
	--space-lg: 32px;
	--space-xl: 48px;
	--space-2xl: 64px;
	--space-section: clamp(40px, 5vw, 56px);
	--measure: 720px;
	--content: min(1120px, calc(100vw - 40px));
	--content-narrow: min(780px, calc(100vw - 40px));
	--header-height: 76px;
	--font-body: "Public Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-display: "Source Serif 4", Georgia, "Times New Roman", serif;
	color: var(--color-ink);
	background: var(--color-surface);
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.65;
	color: var(--color-ink);
	background: var(--color-surface);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.nav-open {
	overflow: hidden;
}

@media (prefers-reduced-motion: no-preference) {
	html {
		scroll-behavior: smooth;
	}
}

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

a {
	color: var(--color-teal-dark);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.18em;
}

a:hover,
a:focus-visible {
	color: var(--color-brick);
}

/* Consistent, visible keyboard focus across all interactive elements. */
:focus-visible {
	outline: 2px solid var(--color-gold);
	outline-offset: 2px;
	border-radius: var(--radius-sm);
}

/* Programmatic focus target (skip link) should not show a ring. */
[id="main-content"]:focus,
[id="main-content"]:focus-visible {
	outline: none;
}

h1,
h2,
h3,
h4 {
	margin: 0 0 0.5em;
	font-family: var(--font-display);
	font-weight: 600;
	font-optical-sizing: auto;
	line-height: 1.08;
	letter-spacing: -0.01em;
	color: var(--color-ink);
}

h1 {
	font-size: clamp(2.5rem, 7vw, 5.3rem);
	max-width: 16ch;
}

h2 {
	font-size: clamp(2rem, 4vw, 3.2rem);
	max-width: 22ch;
}

h3 {
	font-size: clamp(1.25rem, 2.2vw, 1.55rem);
}

p {
	margin: 0 0 1.1em;
}

ul,
ol {
	margin: 0 0 1.25em 1.25em;
	padding: 0;
}

li + li {
	margin-top: 0.45em;
}

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

.skip-link:focus {
	z-index: 1000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: var(--space-2xs) var(--space-sm);
	clip: auto;
	border-radius: var(--radius);
	background: var(--color-ink);
	color: #ffffff;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	min-height: var(--header-height);
	border-bottom: 1px solid var(--color-line);
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(14px);
}

@supports not (backdrop-filter: blur(1px)) {
	.site-header {
		background: #ffffff;
	}
}

#main-content {
	scroll-margin-top: calc(var(--header-height) + 16px);
}

.site-header__inner {
	width: var(--content);
	min-height: var(--header-height);
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-md);
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: var(--space-xs);
	color: var(--color-ink);
	text-decoration: none;
	min-width: 0;
}

.site-brand__mark {
	display: block;
	width: 48px;
	height: 48px;
	object-fit: contain;
	flex: 0 0 48px;
}

.site-brand__text {
	display: grid;
	gap: 0;
	line-height: 1.05;
}

.site-brand__text strong {
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 600;
}

.site-brand__text span {
	font-size: 0.78rem;
	color: var(--color-muted);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.site-menu,
.footer-menu {
	display: flex;
	align-items: center;
	gap: var(--space-2xs);
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Reset the content-prose `li + li` top margin so nav items align (the first
   item is otherwise left higher than the rest). Spacing comes from flex gap.
   The footer contact list is also a horizontal flex row, so it needs the same
   reset — otherwise the email item drops ~0.45em below the phone. */
.site-menu li,
.footer-menu li,
.site-footer__contact-item {
	margin: 0;
}

.site-menu a,
.footer-menu a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: var(--space-2xs) var(--space-xs);
	border-radius: var(--radius);
	color: var(--color-ink);
	font-size: 0.94rem;
	font-weight: 600;
	text-decoration: none;
}

.site-menu a:hover,
.site-menu a:focus-visible,
.footer-menu a:hover,
.footer-menu a:focus-visible {
	background: var(--color-soft);
	color: var(--color-teal-dark);
}

.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: #ffffff;
	color: var(--color-ink);
	cursor: pointer;
}

.nav-toggle__line,
.nav-toggle__line::before,
.nav-toggle__line::after {
	display: block;
	width: 19px;
	height: 2px;
	border-radius: 999px;
	background: currentColor;
	content: "";
}

.nav-toggle__line {
	position: relative;
}

.nav-toggle__line::before,
.nav-toggle__line::after {
	position: absolute;
	left: 0;
}

.nav-toggle__line::before {
	top: -6px;
}

.nav-toggle__line::after {
	top: 6px;
}

@media (prefers-reduced-motion: no-preference) {
	.nav-toggle__line,
	.nav-toggle__line::before,
	.nav-toggle__line::after {
		transition: transform 0.2s ease, opacity 0.2s ease;
	}
}

/* Open state: morph the hamburger into an X. */
.nav-toggle[aria-expanded="true"] .nav-toggle__line {
	background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line::before {
	top: 0;
	transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line::after {
	top: 0;
	transform: rotate(-45deg);
}

.button,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: var(--space-xs) var(--space-md);
	border: 1px solid var(--color-teal);
	border-radius: var(--radius);
	background: var(--color-teal);
	color: #ffffff;
	font-family: var(--font-body);
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	box-shadow: var(--shadow-cta);
}

.button:hover,
.button:focus-visible,
.wp-block-button__link:hover,
.wp-block-button__link:focus-visible {
	background: var(--color-teal-dark);
	border-color: var(--color-teal-dark);
	color: #ffffff;
}

.button--ghost {
	background: rgba(31, 45, 42, 0.78);
	border-color: rgba(255, 255, 255, 0.62);
	box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
	background: #ffffff;
	color: var(--color-teal-dark);
}

.button--light {
	background: #ffffff;
	border-color: #ffffff;
	color: var(--color-teal-dark);
	box-shadow: none;
}

.eyebrow,
.hh-kicker {
	margin-bottom: 0.8rem;
	color: var(--color-brick);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.hero {
	position: relative;
	overflow: hidden;
	min-height: min(660px, calc(100svh - var(--header-height) - 112px));
	background: var(--color-ink);
	color: #ffffff;
}

.hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero__media::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(12, 25, 20, 0.94) 0%, rgba(12, 25, 20, 0.76) 44%, rgba(12, 25, 20, 0.18) 78%);
	content: "";
}

/* Decorative blend of the hero image into the page below. The white is kept to
   a fixed ~48px band hugging the very bottom edge (not a % of the hero height):
   the proof list is the bottom-most hero content, and any white reaching it
   turns the white labels invisible. A fixed band clears the labels identically
   whether the hero is short (desktop, one row of proof) or tall (mobile, three
   stacked rows) — the hero reserves >=48px below the proof on every breakpoint. */
.hero__shade {
	position: absolute;
	inset: auto 0 0;
	z-index: 1;
	height: 30%;
	background: linear-gradient(to top, var(--color-surface) 0, rgba(255, 255, 255, 0) 48px);
	pointer-events: none;
}

.hero__inner {
	position: relative;
	z-index: 2;
	width: var(--content);
	min-height: min(660px, calc(100svh - var(--header-height) - 112px));
	margin: 0 auto;
	display: grid;
	align-content: center;
	gap: 32px;
	padding: 56px 0 72px;
}

.hero__content {
	max-width: 760px;
}

.hero h1,
.hero p {
	color: #ffffff;
}

.hero h1 {
	margin-bottom: 0.24em;
	max-width: 18ch;
	font-size: clamp(2.4rem, 4.6vw, 3.85rem);
	text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
	text-wrap: balance;
}

.hero__content > p:not(.eyebrow) {
	max-width: var(--measure);
	font-size: clamp(1.08rem, 2vw, 1.35rem);
	color: rgba(255, 255, 255, 0.92);
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.22);
}

.hero .eyebrow {
	color: #f0c987;
}

.hero__actions,
.wp-block-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-sm);
	margin-top: var(--space-lg);
}

.hero__proof {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2xs) var(--space-lg);
	margin: 0;
	padding: 0;
	list-style: none;
}

/* Proof points, not buttons: no box/border (which made them read as a row of
   buttons next to the real CTAs) — just a small gold tick and legible label. */
.hero__proof li {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2xs);
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.9rem;
	font-weight: 600;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.hero__proof li::before {
	content: "";
	flex: 0 0 auto;
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: #f0c987;
}

/* Orchestrated, restrained entrance for the hero (respects reduced motion). */
@media (prefers-reduced-motion: no-preference) {
	.hero__content > *,
	.hero__proof {
		opacity: 0;
		transform: translateY(12px);
		animation: hhpm-rise 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
	}

	.hero__content > *:nth-child(1) {
		animation-delay: 0.05s;
	}

	.hero__content > *:nth-child(2) {
		animation-delay: 0.12s;
	}

	.hero__content > *:nth-child(3) {
		animation-delay: 0.19s;
	}

	.hero__content > *:nth-child(4) {
		animation-delay: 0.26s;
	}

	.hero__proof {
		animation-delay: 0.34s;
	}

	@keyframes hhpm-rise {
		to {
			opacity: 1;
			transform: none;
		}
	}
}

.page-hero {
	background: linear-gradient(135deg, #edf5f1 0%, #ffffff 58%, #f7efe8 100%);
	border-bottom: 1px solid var(--color-line);
}

.page-hero__inner {
	width: var(--content);
	margin: 0 auto;
	padding: 72px 0 56px;
}

.page-hero h1 {
	max-width: 16ch;
	font-size: clamp(2.25rem, 6vw, 4.4rem);
}

.page-hero p:not(.eyebrow) {
	max-width: var(--measure);
	font-size: 1.16rem;
	color: var(--color-muted);
}

.page-hero__search {
	margin-top: var(--space-md);
	max-width: 520px;
}

.content-wrap {
	width: var(--content);
	margin: 0 auto;
	padding: 56px 0;
}

.content-wrap--front {
	padding-top: var(--space-md);
}

/* Contact is the only page that uses --narrow. Share the wide page grid so the
   body lines up with the same left edge as the hero and footer (it was inset
   ~170px); cap the form/notice to a readable measure instead. */
.content-wrap--narrow {
	width: var(--content);
}

.content-wrap--narrow .contact-form,
.content-wrap--narrow .contact-direct,
.content-wrap--narrow .form-notice {
	max-width: var(--measure);
}

.content-wrap > * + * {
	margin-top: var(--space-lg);
}

/* Each section already pads itself top and bottom, so cancel the additive
   sibling margin between two adjacent sections — gaps were compounding to
   124–174px. Bands keep their own margin (below) so they still float clear. */
.content-wrap > .hh-section:not(.hh-band) + .hh-section:not(.hh-band) {
	margin-top: 0;
}

.wp-block-group.hh-section {
	padding: var(--space-section) 0;
}

.wp-block-group.hh-section:first-child {
	padding-top: var(--space-md);
}

.wp-block-group.hh-section > h2,
.wp-block-group.hh-section > p {
	max-width: var(--measure);
}

.wp-block-group.hh-band {
	margin: var(--space-section) 0;
	padding: clamp(var(--space-lg), 5vw, var(--space-xl));
	border-radius: var(--radius);
	background: var(--color-soft);
	border: 1px solid var(--color-line);
}

.wp-block-columns.hh-card-grid {
	gap: var(--space-md);
	margin-top: var(--space-lg);
}

.wp-block-group.hh-card,
.post-card {
	height: 100%;
	padding: var(--space-md);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: #ffffff;
	box-shadow: var(--shadow-sm);
}

.wp-block-group.hh-card h3,
.post-card h2 {
	font-size: 1.35rem;
}

.wp-block-group.hh-card p:last-child,
.post-card p:last-child {
	margin-bottom: 0;
}

.wp-block-group.hh-card a,
.text-link {
	font-weight: 700;
}

.wp-block-group.hh-card-accent {
	border-top: var(--accent-bar) solid var(--color-teal);
}

.wp-block-group.hh-card-brick {
	border-top: var(--accent-bar) solid var(--color-brick);
}

.wp-block-group.hh-card-leaf {
	border-top: var(--accent-bar) solid var(--color-leaf);
}

/* Group blocks wrap their children in .wp-block-group__inner-container, so the
   two-column grid must live on whichever element actually holds the columns
   (the inner container when present, otherwise the group itself). */
.wp-block-group.hh-split > .wp-block-group__inner-container,
.wp-block-group.hh-split:not(:has(> .wp-block-group__inner-container)) {
	display: grid;
	/* Primary text column dominant; the supporting card is the narrower, capped
	   sidebar (was 0.9fr / 1fr, which made the secondary card wider than the copy
	   and stranded a tall void beside it). */
	grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
	gap: var(--space-xl);
	align-items: start;
}

.wp-block-group.hh-proof-list {
	padding: var(--space-md);
	border-radius: var(--radius);
	background: var(--color-ink);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

.wp-block-group.hh-proof-list h2,
.wp-block-group.hh-proof-list h3,
.wp-block-group.hh-proof-list p,
.wp-block-group.hh-proof-list li {
	color: #ffffff;
}

.wp-block-group.hh-proof-list ul {
	margin-bottom: 0;
}

.wp-block-group.hh-faq {
	border-top: 1px solid var(--color-line);
	padding-top: var(--space-md);
}

.wp-block-group.hh-faq h3 {
	margin-top: var(--space-md);
	color: var(--color-teal-dark);
}

.wp-block-quote,
.wp-block-pullquote {
	margin: var(--space-lg) 0;
	padding: var(--space-md);
	border-left: var(--accent-bar) solid var(--color-gold);
	background: #fbf7ef;
	border-radius: var(--radius);
}

.wp-block-pullquote {
	text-align: left;
	border-top: 0;
	border-bottom: 0;
}

.wp-block-quote p,
.wp-block-pullquote p {
	font-family: var(--font-display);
	font-size: 1.2rem;
}

/* Baseline styling for common core blocks an editor may insert. */
.content-wrap .wp-block-table table {
	width: 100%;
	border-collapse: collapse;
}

.content-wrap .wp-block-table th,
.content-wrap .wp-block-table td {
	padding: var(--space-xs) var(--space-sm);
	border: 1px solid var(--color-line);
	text-align: left;
}

.content-wrap .wp-block-table thead th {
	background: var(--color-soft);
}

.content-wrap figcaption,
.wp-element-caption {
	margin-top: var(--space-2xs);
	color: var(--color-muted);
	font-size: 0.88rem;
}

.content-wrap .wp-block-separator {
	height: 0;
	margin: var(--space-lg) auto;
	border: 0;
	border-top: 1px solid var(--color-line);
}

.content-wrap pre,
.content-wrap .wp-block-code {
	padding: var(--space-sm);
	overflow: auto;
	background: var(--color-soft);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	font-size: 0.92rem;
}

.content-wrap code {
	padding: 0.15em 0.35em;
	background: var(--color-soft);
	border-radius: var(--radius-sm);
	font-size: 0.92em;
}

.page-links {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2xs);
	margin-top: var(--space-md);
	font-weight: 700;
}

.post-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: var(--space-md);
}

/*
 * The post grid spaces its items with `gap`, so neutralize the inherited
 * `.content-wrap > * + *` vertical rhythm. Otherwise every card after the
 * first picks up a 30px top margin and the first card sits higher than
 * the rest, looking misaligned.
 */
.post-list > * + * {
	margin-top: 0;
}

.post-card {
	display: grid;
	align-content: start;
	overflow: hidden;
}

.post-card__media {
	display: block;
	margin: calc(-1 * var(--space-md)) calc(-1 * var(--space-md)) var(--space-sm);
}

.post-card__media img {
	display: block;
	width: 100%;
	height: 190px;
	object-fit: cover;
}

.post-card h2 {
	margin-bottom: 0.6rem;
}

.post-card h2 a {
	color: var(--color-ink);
	text-decoration: none;
}

.post-card h2 a:hover,
.post-card h2 a:focus-visible {
	color: var(--color-teal-dark);
	text-decoration: underline;
}

.post-list__empty {
	grid-column: 1 / -1;
	padding: var(--space-xl) 0;
	text-align: center;
	color: var(--color-muted);
	font-size: 1.05rem;
}

.single-post {
	font-size: 1.08rem;
}

.post-header {
	margin-bottom: var(--space-lg);
	padding-bottom: var(--space-md);
	border-bottom: 1px solid var(--color-line);
}

.post-header h1 {
	max-width: none;
	font-size: clamp(2rem, 4vw, 2.9rem);
	line-height: 1.12;
}

/*
 * In-article headings are sized for the narrow 780px reading column. The base
 * h2/h3 sizes scale off viewport width (vw), which makes them balloon far too
 * large inside this column and crushes the title-vs-subhead hierarchy.
 */
.single-post h2,
.single-post .wp-block-heading {
	max-width: none;
	font-size: clamp(1.5rem, 2.4vw, 1.85rem);
	line-height: 1.2;
}

.single-post h3 {
	font-size: clamp(1.2rem, 1.6vw, 1.35rem);
	line-height: 1.25;
}

/* Group each subhead with the text that follows it: more space above than below. */
.single-post h2,
.single-post h3 {
	margin-top: 2.4rem;
}

.post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--space-2xs) var(--space-md);
	color: var(--color-muted);
	font-size: 0.93rem;
	font-weight: 600;
}

.post-meta a {
	color: var(--color-teal-dark);
}

.post-feature {
	margin: 0 0 var(--space-md);
}

.post-feature img {
	width: 100%;
	border-radius: var(--radius);
}

/* Contact / lender-intake form. */
.contact-form {
	display: grid;
	gap: var(--space-sm);
	margin-top: var(--space-xs);
	padding: var(--space-md);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: var(--color-soft);
}

.contact-form__field {
	display: grid;
	gap: var(--space-2xs);
	margin: 0;
}

.contact-form__field label {
	font-weight: 600;
}

.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: var(--space-xs) var(--space-sm);
	font: inherit;
	color: var(--color-ink);
	background: #ffffff;
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
	border-color: var(--color-teal);
	outline-offset: 0;
}

.contact-form__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.contact-form__actions {
	margin: 0;
}

.contact-direct {
	margin-top: var(--space-sm);
	color: var(--color-muted);
}

.form-notice {
	margin: 0 0 var(--space-sm);
	padding: var(--space-sm);
	border-radius: var(--radius);
	border: 1px solid var(--color-line);
}

.form-notice--success {
	background: #eaf5ee;
	border-color: #b8dcc4;
	color: #18432b;
}

.form-notice--error {
	background: #fbeee9;
	border-color: #e6c2b4;
	color: #7a2f17;
}

/* Comments. */
.comments {
	margin-top: var(--space-xl);
	padding-top: var(--space-lg);
	border-top: 1px solid var(--color-line);
}

.comments__header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: var(--space-sm);
	margin-bottom: var(--space-md);
}

.comments__eyebrow {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-teal);
}

.comments__title {
	margin: 0;
	font-family: var(--font-display);
	font-size: clamp(1.5rem, 2vw, 2rem);
	line-height: 1.15;
}

.comment-list {
	margin: 0 0 var(--space-md);
	padding: 0;
	list-style: none;
}

.comment-list .comment {
	margin: 0 0 var(--space-sm);
	padding: var(--space-md);
	border: 1px solid var(--color-line);
	border-radius: var(--radius);
	background: #ffffff;
}

.comment-list .children {
	margin: var(--space-sm) 0 0;
	padding-left: var(--space-md);
	border-left: 2px solid var(--color-line);
	list-style: none;
}

.comment-body {
	display: grid;
	gap: var(--space-xs);
}

.comment-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--space-xs);
	color: var(--color-muted);
	font-size: 0.92rem;
}

.comment-author {
	display: inline-flex;
	align-items: center;
	gap: var(--space-xs);
	color: var(--color-ink);
	font-weight: 700;
}

.comment-author .avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}

.comment-metadata a,
.comment-edit-link,
.reply a {
	color: var(--color-muted);
	text-decoration: none;
}

.comment-metadata a:hover,
.comment-edit-link:hover,
.reply a:hover {
	color: var(--color-teal);
}

.comment-content > :first-child {
	margin-top: 0;
}

.comment-content > :last-child {
	margin-bottom: 0;
}

.reply {
	margin-top: var(--space-xs);
	font-weight: 700;
}

.comments__closed {
	margin: var(--space-sm) 0 0;
	padding: var(--space-sm);
	border: 1px solid #d8c08e;
	border-radius: var(--radius);
	background: #fff8e8;
	color: #604315;
}

.site-footer {
	margin-top: 0;
	background: var(--color-ink);
	color: rgba(255, 255, 255, 0.82);
}

.footer-cta {
	width: var(--content);
	margin: 0 auto;
	padding: var(--space-xl) 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-md);
	border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-cta__title {
	margin: 0 0 0.5em;
	font-family: var(--font-display);
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -0.01em;
	color: #ffffff;
	max-width: 16ch;
	font-size: clamp(1.9rem, 4vw, 3rem);
}

.footer-cta p {
	max-width: var(--measure);
}

.site-footer__inner {
	width: var(--content);
	margin: 0 auto;
	padding: var(--space-lg) 0;
	display: grid;
	grid-template-columns: minmax(280px, 420px) 1fr;
	gap: var(--space-lg);
	align-items: start;
}

.site-brand--footer {
	color: #ffffff;
}

.site-brand--footer .site-brand__mark {
	padding: 4px;
	border-radius: var(--radius);
	background: #ffffff;
}

.site-brand--footer .site-brand__text span,
.site-footer .eyebrow {
	color: #d9aa59;
}

.site-footer__brand p {
	margin-top: var(--space-sm);
	max-width: 520px;
}

.site-footer__contact {
	list-style: none;
	margin: var(--space-md) 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-xs) var(--space-md);
}

.site-footer__contact-item {
	color: rgba(255, 255, 255, 0.82);
}

.site-footer__contact-item a {
	color: #ffffff;
	text-decoration: none;
	border-bottom: 1px solid rgba(217, 170, 89, 0.6);
	padding-bottom: 2px;
}

.site-footer__contact-item a:hover,
.site-footer__contact-item a:focus-visible {
	color: #d9aa59;
	border-bottom-color: #d9aa59;
}

.footer-nav {
	justify-self: end;
}

.footer-menu {
	justify-content: flex-end;
	flex-wrap: wrap;
}

.footer-menu a {
	color: #ffffff;
}

.footer-menu a:hover,
.footer-menu a:focus-visible {
	background: rgba(255, 255, 255, 0.1);
	color: #ffffff;
}

.site-footer__bottom {
	width: var(--content);
	margin: 0 auto;
	padding: var(--space-sm) 0 var(--space-md);
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	font-size: 0.9rem;
}

.site-footer__bottom p {
	margin: 0;
}

.navigation.pagination {
	grid-column: 1 / -1;
}

@media (max-width: 980px) {
	.post-list,
	.wp-block-columns.hh-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wp-block-columns.hh-card-grid {
		display: grid;
	}

	.wp-block-group.hh-split > .wp-block-group__inner-container,
	.wp-block-group.hh-split:not(:has(> .wp-block-group__inner-container)) {
		grid-template-columns: 1fr;
	}

	.footer-cta,
	.site-footer__inner {
		align-items: flex-start;
		grid-template-columns: 1fr;
		flex-direction: column;
	}

	.footer-nav {
		justify-self: start;
	}

	.footer-menu {
		justify-content: flex-start;
	}
}

@media (max-width: 1020px) {
	:root {
		--header-height: 68px;
		--content: min(100vw - 40px, 1120px);
	}

	body {
		font-size: 16px;
	}

	.site-header__inner {
		min-height: var(--header-height);
	}

	.nav-toggle {
		display: inline-flex;
	}

	.site-nav {
		position: absolute;
		left: 0;
		right: 0;
		top: 100%;
		padding: 0 14px;
	}

	.site-menu {
		width: 100%;
		padding: 10px;
		border: 1px solid var(--color-line);
		border-radius: var(--radius);
		background: #ffffff;
		box-shadow: var(--shadow-md);
	}

	.js .site-menu {
		display: none;
	}

	.js .site-menu.is-open,
	.no-js .site-menu {
		display: grid;
	}

	.no-js .nav-toggle {
		display: none;
	}

	body.nav-open::before {
		position: fixed;
		inset: var(--header-height) 0 0;
		z-index: 40;
		background: rgba(12, 25, 20, 0.42);
		content: "";
	}

	.site-menu a {
		width: 100%;
		min-height: 44px;
	}

	.hero {
		min-height: min(620px, calc(100svh - var(--header-height) - 56px));
	}

	.hero__media::after {
		background: linear-gradient(180deg, rgba(12, 25, 20, 0.92) 0%, rgba(12, 25, 20, 0.76) 52%, rgba(12, 25, 20, 0.3) 100%);
	}

	.hero__img {
		object-position: 62% center;
	}

	.hero__inner {
		min-height: min(620px, calc(100svh - var(--header-height) - 56px));
		align-content: end;
		/* Bottom-anchored here, so this bottom pad is exactly the clearance below
		   the proof list — keep it above the 48px hero__shade fade so the white
		   labels never sit on the white blend. */
		padding: 56px 0 72px;
	}

	.hero h1 {
		font-size: clamp(2.15rem, 10vw, 3.1rem);
	}

	.hero__actions {
		margin-top: 18px;
	}

	h1 {
		font-size: clamp(2.35rem, 13vw, 4rem);
	}

	h2 {
		font-size: clamp(1.85rem, 8vw, 2.75rem);
	}

	.page-hero__inner {
		padding: 48px 0 40px;
	}
}

@media (max-width: 700px) {
	.site-brand__text span {
		font-size: 0.72rem;
		letter-spacing: 0.05em;
	}

	.hero__actions,
	.wp-block-buttons {
		display: grid;
	}

	.button,
	.wp-block-button__link {
		width: 100%;
	}

	.wp-block-columns.hh-card-grid,
	.post-list {
		display: grid;
		grid-template-columns: 1fr;
	}

	.wp-block-group.hh-card,
	.post-card,
	.wp-block-group.hh-band,
	.wp-block-group.hh-proof-list,
	.contact-form {
		padding: var(--space-md);
	}

	.post-card__media {
		margin: calc(-1 * var(--space-md)) calc(-1 * var(--space-md)) var(--space-sm);
	}
}
