:root {
	--hrc-forest-950: #0d2a20;
	--hrc-forest-900: #153b2e;
	--hrc-forest-800: #1d4c3b;
	--hrc-forest-700: #28634e;
	--hrc-forest-100: #dfece3;
	--hrc-forest-50: #f0f6f2;
	--hrc-cream: #fbf8f1;
	--hrc-paper: #fffdf8;
	--hrc-white: #fff;
	--hrc-ink: #1c2924;
	--hrc-muted: #5b6862;
	--hrc-line: #dce2dc;
	--hrc-gold: #d99a2b;
	--hrc-gold-dark: #9b6512;
	--hrc-gold-light: #faedcd;
	--hrc-red: #a93f38;
	--hrc-red-light: #f8e7e4;
	--hrc-green: #28734f;
	--hrc-green-light: #e4f2e9;
	--hrc-amber: #9f6919;
	--hrc-amber-light: #fbefd5;
	--hrc-radius-sm: 10px;
	--hrc-radius: 18px;
	--hrc-radius-lg: 28px;
	--hrc-shadow-sm: 0 8px 28px rgba(13, 42, 32, 0.08);
	--hrc-shadow: 0 24px 70px rgba(13, 42, 32, 0.13);
	--hrc-container: 1180px;
	--hrc-reading: 760px;
	--hrc-serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
	--hrc-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 92px;
}

body {
	margin: 0;
	background: var(--hrc-paper);
	color: var(--hrc-ink);
	font-family: var(--hrc-sans);
	font-size: 17px;
	line-height: 1.68;
	-webkit-font-smoothing: antialiased;
}

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

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

img {
	height: auto;
}

a {
	color: var(--hrc-forest-800);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

a:hover {
	color: var(--hrc-forest-950);
}

button,
input,
textarea,
select {
	font: inherit;
}

button,
a {
	-webkit-tap-highlight-color: transparent;
}

:focus-visible {
	outline: 3px solid rgba(217, 154, 43, 0.75);
	outline-offset: 3px;
}

::selection {
	background: var(--hrc-gold-light);
	color: var(--hrc-forest-950);
}

h1,
h2,
h3,
h4 {
	margin: 0 0 0.6em;
	color: var(--hrc-forest-950);
	font-family: var(--hrc-serif);
	font-weight: 700;
	letter-spacing: -0.025em;
	line-height: 1.12;
}

h1 {
	font-size: clamp(2.65rem, 6vw, 5rem);
}

h2 {
	font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
	font-size: clamp(1.28rem, 2vw, 1.65rem);
}

p {
	margin: 0 0 1.25em;
}

.hrc-container {
	width: min(calc(100% - 40px), var(--hrc-container));
	margin-inline: auto;
}

.hrc-reading-width {
	max-width: var(--hrc-reading);
}

.hrc-main {
	min-height: 64vh;
}

.hrc-skip-link {
	position: fixed;
	z-index: 99999;
	top: 12px;
	left: 12px;
	padding: 10px 16px;
	border-radius: 8px;
	background: var(--hrc-forest-950);
	color: #fff;
	transform: translateY(-180%);
	transition: transform 0.15s ease;
}

.hrc-skip-link:focus {
	color: #fff;
	transform: translateY(0);
}

.hrc-eyebrow {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 14px;
	color: var(--hrc-forest-700);
	font-size: 0.79rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	line-height: 1.3;
	text-transform: uppercase;
}

.hrc-eyebrow > span {
	width: 22px;
	height: 2px;
	background: var(--hrc-gold);
}

.hrc-kicker {
	margin: 0 0 8px;
	color: var(--hrc-forest-700);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hrc-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 13px 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-size: 0.94rem;
	font-weight: 800;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.hrc-button:hover {
	transform: translateY(-1px);
}

.hrc-button--primary {
	background: var(--hrc-forest-900);
	box-shadow: 0 9px 25px rgba(21, 59, 46, 0.2);
	color: #fff;
}

.hrc-button--primary:hover {
	background: var(--hrc-forest-950);
	color: #fff;
}

.hrc-button--ghost {
	border-color: #a7b8af;
	background: transparent;
	color: var(--hrc-forest-900);
}

.hrc-button--ghost:hover {
	border-color: var(--hrc-forest-900);
	background: var(--hrc-forest-50);
	color: var(--hrc-forest-950);
}

.hrc-button--text {
	min-height: auto;
	padding-inline: 4px;
	color: var(--hrc-forest-800);
}

.hrc-button--text:hover {
	color: var(--hrc-forest-950);
}

.hrc-button--cream {
	background: var(--hrc-cream);
	color: var(--hrc-forest-950);
}

.hrc-button--cream:hover {
	background: #fff;
	color: var(--hrc-forest-950);
}

.hrc-button--small {
	min-height: 42px;
	padding: 10px 17px;
	font-size: 0.84rem;
}

.hrc-button--block {
	width: 100%;
}

.hrc-button-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
}

/* Header */

.hrc-site-header {
	position: sticky;
	z-index: 1000;
	top: 0;
	border-bottom: 1px solid rgba(21, 59, 46, 0.1);
	background: rgba(255, 253, 248, 0.92);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.hrc-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 78px;
}

.hrc-brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	color: var(--hrc-forest-950);
	line-height: 1.05;
	text-decoration: none;
}

.hrc-brand:hover {
	color: var(--hrc-forest-950);
}

.hrc-brand img {
	flex: 0 0 auto;
	border-radius: 12px;
}

.hrc-brand span {
	display: grid;
	gap: 5px;
}

.hrc-brand strong {
	font-family: var(--hrc-serif);
	font-size: 1.08rem;
	letter-spacing: -0.015em;
}

.hrc-brand small {
	color: var(--hrc-muted);
	font-size: 0.67rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.hrc-primary-nav {
	display: flex;
	align-items: center;
	gap: 28px;
}

.hrc-menu {
	display: flex;
	align-items: center;
	gap: 25px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hrc-menu a {
	position: relative;
	color: var(--hrc-ink);
	font-size: 0.87rem;
	font-weight: 750;
	text-decoration: none;
}

.hrc-menu a::after {
	position: absolute;
	right: 50%;
	bottom: -9px;
	left: 50%;
	height: 2px;
	background: var(--hrc-gold);
	content: "";
	transition: left 0.16s ease, right 0.16s ease;
}

.hrc-menu a:hover::after,
.hrc-menu .current-menu-item a::after {
	right: 0;
	left: 0;
}

.hrc-nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-width: 44px;
	min-height: 44px;
	padding: 8px;
	border: 0;
	background: transparent;
	color: var(--hrc-forest-950);
	font-size: 0.84rem;
	font-weight: 800;
	cursor: pointer;
}

.hrc-nav-toggle__icon {
	display: grid;
	gap: 4px;
	width: 25px;
}

.hrc-nav-toggle__icon i {
	display: block;
	height: 2px;
	border-radius: 5px;
	background: currentColor;
	transition: transform 0.18s ease, opacity 0.18s ease;
}

/* Homepage hero */

.hrc-hero {
	position: relative;
	overflow: hidden;
	padding: 78px 0 70px;
	background:
		radial-gradient(circle at 8% 15%, rgba(217, 154, 43, 0.11), transparent 28%),
		linear-gradient(115deg, var(--hrc-cream) 0 52%, #edf3ee 52% 100%);
}

.hrc-hero::after {
	position: absolute;
	right: -130px;
	bottom: -170px;
	width: 420px;
	height: 420px;
	border: 1px solid rgba(21, 59, 46, 0.09);
	border-radius: 50%;
	box-shadow: inset 0 0 0 52px rgba(255, 255, 255, 0.18), inset 0 0 0 104px rgba(255, 255, 255, 0.12);
	content: "";
}

.hrc-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	align-items: center;
	gap: clamp(42px, 7vw, 90px);
}

.hrc-hero__copy h1 {
	max-width: 700px;
	margin-bottom: 24px;
}

.hrc-hero__lede {
	max-width: 650px;
	margin-bottom: 29px;
	color: #45534c;
	font-size: clamp(1.06rem, 1.7vw, 1.25rem);
	line-height: 1.65;
}

.hrc-proof-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	margin: 30px 0 0;
	padding: 0;
	color: #3f5148;
	font-size: 0.81rem;
	font-weight: 700;
	list-style: none;
}

.hrc-proof-list li {
	display: flex;
	align-items: center;
	gap: 7px;
}

.hrc-proof-list svg {
	width: 18px;
	height: 18px;
	padding: 3px;
	border-radius: 50%;
	background: var(--hrc-green-light);
	fill: none;
	stroke: var(--hrc-green);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.5;
}

.hrc-hero__visual {
	position: relative;
	min-width: 0;
}

.hrc-hero__visual picture {
	display: block;
}

.hrc-hero__image {
	width: 100%;
	aspect-ratio: 1.32;
	border-radius: var(--hrc-radius-lg);
	box-shadow: var(--hrc-shadow);
	object-fit: cover;
}

.hrc-hero__visual::before {
	position: absolute;
	z-index: -1;
	top: -24px;
	right: -22px;
	width: 55%;
	height: 55%;
	border-radius: 24px;
	background-image: radial-gradient(rgba(21, 59, 46, 0.23) 1px, transparent 1px);
	background-size: 12px 12px;
	content: "";
}

.hrc-floating-card {
	position: absolute;
	display: flex;
	align-items: center;
	gap: 11px;
	min-width: 220px;
	padding: 13px 16px;
	border: 1px solid rgba(21, 59, 46, 0.08);
	border-radius: 14px;
	background: rgba(255, 253, 248, 0.95);
	box-shadow: var(--hrc-shadow-sm);
	color: var(--hrc-ink);
}

.hrc-floating-card small,
.hrc-floating-card strong {
	display: block;
}

.hrc-floating-card small {
	margin-bottom: 2px;
	color: var(--hrc-muted);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.hrc-floating-card strong {
	font-size: 0.82rem;
	line-height: 1.25;
}

.hrc-floating-card--status {
	bottom: 28px;
	left: -38px;
}

.hrc-floating-card--source {
	top: 28px;
	right: -22px;
}

.hrc-floating-card--source svg {
	width: 29px;
	height: 29px;
	fill: none;
	stroke: var(--hrc-gold-dark);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.6;
}

.hrc-status-dot {
	width: 13px;
	height: 13px;
	border-radius: 50%;
	box-shadow: 0 0 0 6px var(--hrc-amber-light);
}

.hrc-status-dot--amber {
	background: var(--hrc-gold);
}

.hrc-trust-strip {
	border-top: 1px solid rgba(21, 59, 46, 0.08);
	border-bottom: 1px solid rgba(21, 59, 46, 0.11);
	background: #fff;
}

.hrc-trust-strip__inner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.hrc-trust-strip p {
	display: grid;
	gap: 3px;
	margin: 0;
	padding: 21px 28px;
	border-right: 1px solid var(--hrc-line);
}

.hrc-trust-strip p:first-child {
	padding-left: 0;
}

.hrc-trust-strip p:last-child {
	padding-right: 0;
	border-right: 0;
}

.hrc-trust-strip strong {
	color: var(--hrc-forest-900);
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.hrc-trust-strip span {
	color: var(--hrc-muted);
	font-size: 0.78rem;
	line-height: 1.45;
}

/* Sections */

.hrc-section {
	padding: clamp(74px, 9vw, 120px) 0;
}

.hrc-section--tint {
	background: var(--hrc-forest-50);
}

.hrc-section--forest {
	position: relative;
	overflow: hidden;
	background: var(--hrc-forest-950);
	color: #dfe9e3;
}

.hrc-section--forest::before {
	position: absolute;
	top: -170px;
	right: -130px;
	width: 460px;
	height: 460px;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 50%;
	box-shadow: inset 0 0 0 65px rgba(255, 255, 255, 0.025), inset 0 0 0 130px rgba(255, 255, 255, 0.02);
	content: "";
}

.hrc-section-heading {
	max-width: 760px;
	margin-bottom: clamp(34px, 5vw, 57px);
}

.hrc-section-heading h2 {
	margin-bottom: 14px;
}

.hrc-section-heading > p:last-child {
	margin-bottom: 0;
	color: var(--hrc-muted);
	font-size: 1.02rem;
}

.hrc-section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
	align-items: end;
	gap: 45px;
	max-width: none;
}

.hrc-section-heading--split > p {
	margin-bottom: 12px;
	padding-left: 24px;
	border-left: 2px solid var(--hrc-gold);
}

.hrc-section-heading--light h2,
.hrc-section-heading--light .hrc-eyebrow {
	color: #fff;
}

.hrc-section-heading--light > p:last-child {
	color: #baccc2;
}

.hrc-checker-section {
	background: var(--hrc-paper);
}

.hrc-tool-boundary {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	max-width: 980px;
	margin: 24px auto 0;
	padding: 15px 17px;
	border: 1px solid #ead8b2;
	border-radius: 13px;
	background: #fffaf0;
	color: #5f5238;
	font-size: 0.82rem;
	line-height: 1.55;
}

.hrc-tool-boundary svg {
	flex: 0 0 21px;
	width: 21px;
	margin-top: 1px;
	fill: none;
	stroke: var(--hrc-amber);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.8;
}

.hrc-state-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.hrc-state-card {
	padding: 30px 27px 27px;
	border: 1px solid var(--hrc-line);
	border-top-width: 4px;
	border-radius: var(--hrc-radius);
	background: #fff;
	box-shadow: 0 12px 36px rgba(13, 42, 32, 0.045);
}

.hrc-state-card--green {
	border-top-color: var(--hrc-green);
}

.hrc-state-card--red {
	border-top-color: var(--hrc-red);
}

.hrc-state-card--amber {
	border-top-color: var(--hrc-gold);
}

.hrc-state-card__icon {
	display: grid;
	width: 42px;
	height: 42px;
	margin-bottom: 21px;
	border-radius: 12px;
	place-items: center;
}

.hrc-state-card__icon svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2;
}

.hrc-state-card--green .hrc-state-card__icon {
	background: var(--hrc-green-light);
	color: var(--hrc-green);
}

.hrc-state-card--red .hrc-state-card__icon {
	background: var(--hrc-red-light);
	color: var(--hrc-red);
}

.hrc-state-card--amber .hrc-state-card__icon {
	background: var(--hrc-amber-light);
	color: var(--hrc-amber);
}

.hrc-state-card h3 {
	margin-bottom: 13px;
	font-size: 1.38rem;
}

.hrc-state-card > p:last-child {
	margin: 0;
	color: var(--hrc-muted);
	font-size: 0.9rem;
}

.hrc-inline-link {
	margin: 30px 0 0;
	font-weight: 800;
	text-align: center;
}

.hrc-process-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
	align-items: center;
	gap: clamp(50px, 8vw, 110px);
}

.hrc-process-copy p:not(.hrc-eyebrow) {
	color: var(--hrc-muted);
}

.hrc-steps {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hrc-steps li {
	position: relative;
	display: grid;
	grid-template-columns: 55px 1fr;
	gap: 22px;
	padding-bottom: 34px;
}

.hrc-steps li:last-child {
	padding-bottom: 0;
}

.hrc-steps li::after {
	position: absolute;
	top: 51px;
	bottom: 8px;
	left: 25px;
	width: 1px;
	background: #cbd6d0;
	content: "";
}

.hrc-steps li:last-child::after {
	display: none;
}

.hrc-steps > li > span {
	display: grid;
	width: 51px;
	height: 51px;
	border: 1px solid #c3d0c9;
	border-radius: 50%;
	background: #fff;
	color: var(--hrc-gold-dark);
	font-size: 0.74rem;
	font-weight: 850;
	place-items: center;
}

.hrc-steps h3 {
	margin: 4px 0 6px;
	font-size: 1.35rem;
}

.hrc-steps p {
	margin: 0;
	color: var(--hrc-muted);
	font-size: 0.92rem;
}

.hrc-card-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1.35fr 1fr 1fr;
	gap: 20px;
}

.hrc-content-card {
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--hrc-radius);
	background: #18392d;
	box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.hrc-content-card__image {
	display: block;
	overflow: hidden;
}

.hrc-content-card__image img {
	width: 100%;
	aspect-ratio: 1.42;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.hrc-content-card:hover .hrc-content-card__image img {
	transform: scale(1.025);
}

.hrc-content-card__body {
	padding: 25px;
}

.hrc-content-card .hrc-kicker {
	color: #d9b46c;
}

.hrc-content-card h3 {
	margin-bottom: 10px;
	color: #fff;
	font-size: 1.45rem;
}

.hrc-content-card h3 a {
	color: inherit;
	text-decoration: none;
}

.hrc-content-card__body > p:last-child {
	margin: 0;
	color: #bcd0c5;
	font-size: 0.86rem;
}

.hrc-card-links {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 18px 34px;
	margin-top: 27px;
}

.hrc-card-links a {
	color: #f1dfb9;
	font-size: 0.9rem;
	font-weight: 800;
}

.hrc-evidence-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
	align-items: start;
	gap: clamp(50px, 8vw, 110px);
}

.hrc-evidence-panel {
	padding: 34px;
	border: 1px solid var(--hrc-line);
	border-radius: var(--hrc-radius-lg);
	background: var(--hrc-cream);
}

.hrc-evidence-panel > p {
	color: var(--hrc-muted);
}

.hrc-source-list {
	display: grid;
	gap: 0;
	margin: 25px 0 23px;
	padding: 0;
	border-top: 1px solid var(--hrc-line);
	list-style: none;
}

.hrc-source-list li {
	display: grid;
	grid-template-columns: 36px 1fr;
	align-items: center;
	gap: 13px;
	padding: 16px 0;
	border-bottom: 1px solid var(--hrc-line);
}

.hrc-source-list li > span {
	display: grid;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--hrc-forest-900);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 800;
	place-items: center;
}

.hrc-source-list strong,
.hrc-source-list small {
	display: block;
}

.hrc-source-list strong {
	margin-bottom: 2px;
	font-size: 0.9rem;
}

.hrc-source-list small {
	color: var(--hrc-muted);
	font-size: 0.78rem;
}

.hrc-faq-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
	align-items: start;
	gap: clamp(45px, 8vw, 100px);
}

.hrc-accordion {
	border-top: 1px solid #cbd8d1;
}

.hrc-accordion details {
	border-bottom: 1px solid #cbd8d1;
}

.hrc-accordion summary {
	position: relative;
	padding: 22px 46px 22px 0;
	color: var(--hrc-forest-950);
	font-family: var(--hrc-serif);
	font-size: 1.16rem;
	font-weight: 700;
	line-height: 1.35;
	list-style: none;
	cursor: pointer;
}

.hrc-accordion summary::-webkit-details-marker {
	display: none;
}

.hrc-accordion summary::before,
.hrc-accordion summary::after {
	position: absolute;
	top: 31px;
	right: 6px;
	width: 16px;
	height: 2px;
	background: var(--hrc-forest-700);
	content: "";
}

.hrc-accordion summary::after {
	transform: rotate(90deg);
	transition: transform 0.15s ease;
}

.hrc-accordion details[open] summary::after {
	transform: rotate(0);
}

.hrc-accordion details > p {
	margin: -2px 0 22px;
	padding-right: 42px;
	color: var(--hrc-muted);
	font-size: 0.9rem;
}

.hrc-cta-band {
	padding: 58px 0;
	background: var(--hrc-forest-900);
	color: #fff;
}

.hrc-cta-band .hrc-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 35px;
}

.hrc-cta-band .hrc-eyebrow,
.hrc-cta-band h2 {
	color: #fff;
}

.hrc-cta-band h2 {
	max-width: 700px;
	margin: 0;
	font-size: clamp(1.8rem, 3.2vw, 2.85rem);
}

/* Content page headers */

.hrc-page-hero {
	padding: 62px 0;
	border-bottom: 1px solid var(--hrc-line);
	background: linear-gradient(112deg, var(--hrc-cream), #edf4ef);
}

.hrc-page-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(340px, 0.83fr);
	align-items: center;
	gap: clamp(45px, 7vw, 86px);
}

.hrc-page-hero h1 {
	font-size: clamp(2.55rem, 5vw, 4.45rem);
}

.hrc-page-hero__lede {
	color: #4b5c53;
	font-size: 1.05rem;
}

.hrc-page-hero__media {
	position: relative;
}

.hrc-page-hero__media::after {
	position: absolute;
	z-index: -1;
	right: -17px;
	bottom: -17px;
	width: 60%;
	height: 60%;
	border-radius: 18px;
	background: var(--hrc-gold-light);
	content: "";
}

.hrc-page-hero__media img {
	width: 100%;
	aspect-ratio: 1.32;
	border-radius: var(--hrc-radius-lg);
	box-shadow: var(--hrc-shadow);
	object-fit: cover;
}

.hrc-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 29px;
	color: var(--hrc-muted);
	font-size: 0.77rem;
	font-weight: 700;
}

.hrc-breadcrumb a {
	color: var(--hrc-forest-700);
}

.hrc-page-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 9px 22px;
	margin-top: 25px;
	color: var(--hrc-muted);
	font-size: 0.76rem;
	font-weight: 700;
}

.hrc-page-meta span {
	position: relative;
}

.hrc-page-meta span + span::before {
	position: absolute;
	top: 50%;
	left: -13px;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--hrc-gold);
	content: "";
}

.hrc-page-title {
	padding: 70px 0 64px;
	border-bottom: 1px solid var(--hrc-line);
	background: var(--hrc-cream);
}

.hrc-page-title h1 {
	margin-bottom: 18px;
	font-size: clamp(2.6rem, 5vw, 4.45rem);
}

.hrc-page-title p:last-child {
	color: var(--hrc-muted);
	font-size: 1.04rem;
}

.hrc-page-title--compact {
	padding-block: 58px;
}

/* Long-form content */

.hrc-article-wrap {
	padding: clamp(62px, 8vw, 100px) 0;
}

.hrc-article-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	align-items: start;
	gap: clamp(50px, 7vw, 90px);
}

.hrc-article {
	min-width: 0;
	max-width: 790px;
}

.hrc-article > *:first-child {
	margin-top: 0;
}

.hrc-article h2 {
	margin-top: 1.65em;
	font-size: clamp(1.8rem, 3vw, 2.5rem);
	scroll-margin-top: 105px;
}

.hrc-article h3 {
	margin-top: 1.55em;
	font-size: clamp(1.3rem, 2vw, 1.65rem);
	scroll-margin-top: 105px;
}

.hrc-article h4 {
	margin-top: 1.4em;
	font-size: 1.08rem;
}

.hrc-article p,
.hrc-article li {
	color: #3e4e46;
}

.hrc-article ul,
.hrc-article ol {
	padding-left: 1.35em;
}

.hrc-article li {
	margin-bottom: 0.55em;
}

.hrc-article strong {
	color: var(--hrc-ink);
}

.hrc-article blockquote {
	margin: 34px 0;
	padding: 23px 25px;
	border-left: 4px solid var(--hrc-gold);
	border-radius: 0 13px 13px 0;
	background: var(--hrc-cream);
}

.hrc-article blockquote p:last-child {
	margin-bottom: 0;
}

.hrc-article hr {
	margin: 45px 0;
	border: 0;
	border-top: 1px solid var(--hrc-line);
}

.hrc-article table {
	width: 100%;
	margin: 28px 0 35px;
	border-collapse: separate;
	border: 1px solid var(--hrc-line);
	border-spacing: 0;
	border-radius: 14px;
	overflow: hidden;
	font-size: 0.87rem;
}

.hrc-article th,
.hrc-article td {
	padding: 13px 15px;
	border-right: 1px solid var(--hrc-line);
	border-bottom: 1px solid var(--hrc-line);
	text-align: left;
	vertical-align: top;
}

.hrc-article th {
	background: var(--hrc-forest-50);
	color: var(--hrc-forest-950);
	font-size: 0.79rem;
}

.hrc-article tr:last-child td {
	border-bottom: 0;
}

.hrc-article th:last-child,
.hrc-article td:last-child {
	border-right: 0;
}

.hrc-article-aside {
	position: sticky;
	top: 105px;
	display: grid;
	gap: 24px;
}

.hrc-aside-card {
	padding: 25px;
	border: 1px solid #cbd8d1;
	border-radius: var(--hrc-radius);
	background: var(--hrc-forest-50);
}

.hrc-aside-card h2,
.hrc-aside-links h2 {
	font-size: 1.36rem;
}

.hrc-aside-card p {
	color: var(--hrc-muted);
	font-size: 0.84rem;
}

.hrc-aside-links {
	display: grid;
	padding: 23px 25px;
	border: 1px solid var(--hrc-line);
	border-radius: var(--hrc-radius);
}

.hrc-aside-links a {
	padding: 9px 0;
	border-top: 1px solid var(--hrc-line);
	font-size: 0.82rem;
	font-weight: 750;
}

.hrc-aside-links a:last-child {
	padding-bottom: 0;
}

.hrc-jump-links {
	margin: 0 0 36px;
	padding: 24px 26px;
	border: 1px solid var(--hrc-line);
	border-radius: var(--hrc-radius);
	background: var(--hrc-forest-50);
}

.hrc-jump-links > strong {
	display: block;
	margin-bottom: 10px;
	color: var(--hrc-forest-950);
	font-family: var(--hrc-serif);
	font-size: 1.15rem;
}

.hrc-jump-links ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 7px 22px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hrc-jump-links li {
	margin: 0;
}

.hrc-jump-links a {
	font-size: 0.84rem;
	font-weight: 750;
}

.hrc-callout {
	margin: 30px 0;
	padding: 22px 24px;
	border: 1px solid #ead8b2;
	border-radius: 14px;
	background: #fffaf0;
}

.hrc-callout--green {
	border-color: #bfd7c7;
	background: var(--hrc-green-light);
}

.hrc-callout--red {
	border-color: #e5bbb6;
	background: var(--hrc-red-light);
}

.hrc-callout--neutral {
	border-color: var(--hrc-line);
	background: var(--hrc-forest-50);
}

.hrc-callout > strong {
	display: block;
	margin-bottom: 6px;
}

.hrc-callout > p:last-child {
	margin-bottom: 0;
}

.hrc-check-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin: 36px 0;
	padding: 27px;
	border-radius: var(--hrc-radius);
	background: var(--hrc-forest-900);
	color: #fff;
}

.hrc-check-cta h2,
.hrc-check-cta h3,
.hrc-check-cta p {
	color: #fff;
}

.hrc-check-cta h2,
.hrc-check-cta h3 {
	margin: 0 0 7px;
	font-size: 1.45rem;
}

.hrc-check-cta p {
	margin: 0;
	color: #c6d8cf;
	font-size: 0.85rem;
}

.hrc-check-cta .hrc-button {
	flex: 0 0 auto;
}

.hrc-status-key {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin: 27px 0;
}

.hrc-status-key > div {
	padding: 16px;
	border: 1px solid var(--hrc-line);
	border-radius: 12px;
	background: #fff;
	font-size: 0.78rem;
}

.hrc-status-key strong {
	display: block;
	margin-bottom: 4px;
}

.hrc-pill {
	display: inline-flex;
	align-items: center;
	min-height: 27px;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.025em;
}

.hrc-pill--green {
	background: var(--hrc-green-light);
	color: var(--hrc-green);
}

.hrc-pill--red {
	background: var(--hrc-red-light);
	color: var(--hrc-red);
}

.hrc-pill--amber {
	background: var(--hrc-amber-light);
	color: var(--hrc-amber);
}

.hrc-recipe-summary {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1px;
	margin: 30px 0;
	border: 1px solid var(--hrc-line);
	border-radius: 14px;
	background: var(--hrc-line);
	overflow: hidden;
}

.hrc-recipe-summary > div {
	padding: 16px;
	background: #fff;
}

.hrc-recipe-summary small,
.hrc-recipe-summary strong {
	display: block;
}

.hrc-recipe-summary small {
	margin-bottom: 3px;
	color: var(--hrc-muted);
	font-size: 0.67rem;
	font-weight: 750;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.hrc-recipe-summary strong {
	font-size: 0.9rem;
}

.hrc-recipe-box {
	margin: 36px 0;
	padding: 30px;
	border: 1px solid #cbd8d1;
	border-radius: var(--hrc-radius-lg);
	background: var(--hrc-cream);
}

.hrc-recipe-box h2 {
	margin-top: 0;
}

.hrc-recipe-box__section {
	margin-top: 28px;
	padding-top: 23px;
	border-top: 1px solid var(--hrc-line);
}

.hrc-ingredient-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.hrc-ingredient-list li {
	display: grid;
	grid-template-columns: 115px 1fr;
	gap: 17px;
	margin: 0;
	padding: 10px 0;
	border-bottom: 1px solid rgba(28, 41, 36, 0.1);
}

.hrc-ingredient-list li:last-child {
	border-bottom: 0;
}

.hrc-ingredient-list strong {
	font-variant-numeric: tabular-nums;
}

.hrc-method-steps {
	margin: 0;
	padding: 0;
	counter-reset: hrc-method;
	list-style: none;
}

.hrc-method-steps li {
	position: relative;
	margin: 0 0 19px;
	padding-left: 49px;
	counter-increment: hrc-method;
}

.hrc-method-steps li::before {
	position: absolute;
	top: 1px;
	left: 0;
	display: grid;
	width: 33px;
	height: 33px;
	border-radius: 50%;
	background: var(--hrc-forest-900);
	color: #fff;
	content: counter(hrc-method);
	font-size: 0.72rem;
	font-weight: 800;
	place-items: center;
}

.hrc-source-card {
	margin: 18px 0;
	padding: 18px 20px;
	border: 1px solid var(--hrc-line);
	border-radius: 12px;
	background: #fff;
}

.hrc-source-card p {
	margin: 0;
	font-size: 0.84rem;
}

.hrc-source-card small {
	display: block;
	margin-top: 7px;
	color: var(--hrc-muted);
	font-size: 0.72rem;
}

/* Contact */

.hrc-contact-wrap {
	margin-top: 26px;
}

.hrc-contact-form {
	display: grid;
	gap: 19px;
	padding: clamp(22px, 4vw, 34px);
	border: 1px solid var(--hrc-line);
	border-radius: var(--hrc-radius);
	background: var(--hrc-cream);
}

.hrc-contact-form label:not(.hrc-consent-check):not(.hrc-honeypot) {
	display: grid;
	gap: 7px;
	color: var(--hrc-ink);
	font-size: 0.8rem;
	font-weight: 800;
}

.hrc-form-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 17px;
}

.hrc-contact-form input[type="text"],
.hrc-contact-form input[type="email"],
.hrc-contact-form select,
.hrc-contact-form textarea {
	width: 100%;
	border: 1px solid #bdcac3;
	border-radius: 10px;
	background: #fff;
	color: var(--hrc-ink);
}

.hrc-contact-form input,
.hrc-contact-form select {
	min-height: 48px;
	padding: 9px 12px;
}

.hrc-contact-form textarea {
	min-height: 160px;
	padding: 12px;
	resize: vertical;
}

.hrc-consent-check {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: var(--hrc-muted);
	font-size: 0.76rem;
}

.hrc-consent-check input {
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	margin-top: 3px;
	accent-color: var(--hrc-forest-900);
}

.hrc-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.hrc-notice {
	margin-bottom: 20px;
	padding: 16px 18px;
	border: 1px solid var(--hrc-line);
	border-radius: 11px;
	font-size: 0.86rem;
}

.hrc-notice--success {
	border-color: #b8d7c3;
	background: var(--hrc-green-light);
}

.hrc-notice--error {
	border-color: #e6beb9;
	background: var(--hrc-red-light);
}

/* Footer and consent */

.hrc-site-footer {
	padding: 68px 0 25px;
	background: #0b261d;
	color: #c0d1c8;
}

.hrc-footer-grid {
	display: grid;
	grid-template-columns: 1.8fr 1fr 1fr;
	gap: 70px;
	padding-bottom: 48px;
}

.hrc-brand--footer {
	color: #fff;
}

.hrc-brand--footer:hover {
	color: #fff;
}

.hrc-footer-brand > p {
	max-width: 470px;
	margin: 20px 0 0;
	color: #9fb5aa;
	font-size: 0.86rem;
}

.hrc-site-footer h2 {
	margin-bottom: 17px;
	color: #fff;
	font-family: var(--hrc-sans);
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.hrc-site-footer ul {
	display: grid;
	gap: 9px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.hrc-site-footer a {
	color: #c0d1c8;
	font-size: 0.83rem;
	text-decoration: none;
}

.hrc-site-footer a:hover {
	color: #fff;
}

.hrc-footer-note {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 30px;
	padding-top: 23px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: #8da59a;
	font-size: 0.7rem;
}

.hrc-footer-note p {
	margin: 0;
}

.hrc-footer-note p:first-child {
	max-width: 780px;
}

.hrc-consent {
	position: fixed;
	z-index: 9999;
	right: 20px;
	bottom: 20px;
	left: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	max-width: 900px;
	margin-inline: auto;
	padding: 18px 20px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 16px;
	background: #102f24;
	box-shadow: 0 20px 70px rgba(0, 0, 0, 0.28);
	color: #fff;
}

.hrc-consent[hidden] {
	display: none;
}

.hrc-consent strong {
	font-size: 0.86rem;
}

.hrc-consent p {
	margin: 3px 0 0;
	color: #c5d5cd;
	font-size: 0.74rem;
	line-height: 1.45;
}

.hrc-consent .hrc-button--ghost {
	border-color: #91aa9e;
	color: #fff;
}

.hrc-consent__actions {
	display: flex;
	flex: 0 0 auto;
	gap: 9px;
}

.hrc-consent__actions .hrc-button {
	min-height: 48px;
}

.hrc-empty-state {
	padding-block: 110px;
	text-align: center;
}

.hrc-empty-state p:not(.hrc-eyebrow) {
	color: var(--hrc-muted);
}

.hrc-empty-state .hrc-button-row {
	justify-content: center;
}

/* Responsive */

@media (max-width: 1020px) {
	body.admin-bar .hrc-site-header {
		top: 32px;
	}

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

	.hrc-primary-nav {
		position: absolute;
		top: calc(100% + 1px);
		right: 0;
		left: 0;
		display: none;
		align-items: stretch;
		padding: 18px 20px 24px;
		border-bottom: 1px solid var(--hrc-line);
		background: var(--hrc-paper);
		box-shadow: 0 18px 35px rgba(13, 42, 32, 0.12);
	}

	.hrc-primary-nav.is-open {
		display: grid;
	}

	.hrc-menu {
		display: grid;
		gap: 0;
	}

	.hrc-menu a {
		display: block;
		padding: 12px 2px;
		border-bottom: 1px solid var(--hrc-line);
	}

	.hrc-menu a::after {
		display: none;
	}

	.hrc-button--header {
		margin-top: 13px;
	}

	.hrc-nav-toggle[aria-expanded="true"] .hrc-nav-toggle__icon i:first-child {
		transform: translateY(6px) rotate(45deg);
	}

	.hrc-nav-toggle[aria-expanded="true"] .hrc-nav-toggle__icon i:nth-child(2) {
		opacity: 0;
	}

	.hrc-nav-toggle[aria-expanded="true"] .hrc-nav-toggle__icon i:last-child {
		transform: translateY(-6px) rotate(-45deg);
	}

	.hrc-hero__grid,
	.hrc-page-hero__grid {
		grid-template-columns: 1fr;
	}

	.hrc-hero__copy {
		max-width: 760px;
	}

	.hrc-hero__visual {
		max-width: 790px;
	}

	.hrc-floating-card--status {
		left: 22px;
	}

	.hrc-floating-card--source {
		right: 22px;
	}

	.hrc-card-grid {
		grid-template-columns: 1.2fr 1fr;
	}

	.hrc-content-card:last-child {
		grid-column: 1 / -1;
	}

	.hrc-content-card:last-child {
		display: grid;
		grid-template-columns: 0.8fr 1.2fr;
	}

	.hrc-content-card:last-child .hrc-content-card__image img {
		height: 100%;
		aspect-ratio: auto;
	}

	.hrc-article-layout {
		grid-template-columns: minmax(0, 1fr) 260px;
		gap: 48px;
	}
}

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

	.hrc-trust-strip__inner {
		grid-template-columns: 1fr;
	}

	.hrc-trust-strip p,
	.hrc-trust-strip p:first-child,
	.hrc-trust-strip p:last-child {
		padding: 17px 0;
		border-right: 0;
		border-bottom: 1px solid var(--hrc-line);
	}

	.hrc-trust-strip p:last-child {
		border-bottom: 0;
	}

	.hrc-section-heading--split,
	.hrc-process-grid,
	.hrc-evidence-grid,
	.hrc-faq-layout,
	.hrc-article-layout {
		grid-template-columns: 1fr;
	}

	.hrc-section-heading--split {
		align-items: start;
		gap: 15px;
	}

	.hrc-section-heading--split > p {
		padding-left: 16px;
	}

	.hrc-state-grid {
		grid-template-columns: 1fr;
	}

	.hrc-state-card {
		display: grid;
		grid-template-columns: 47px 1fr;
		column-gap: 16px;
	}

	.hrc-state-card__icon {
		grid-row: 1 / span 3;
	}

	.hrc-state-card .hrc-kicker,
	.hrc-state-card h3,
	.hrc-state-card > p:last-child {
		grid-column: 2;
	}

	.hrc-article {
		max-width: none;
	}

	.hrc-article-aside {
		position: static;
		grid-template-columns: 1fr 1fr;
	}

	.hrc-footer-grid {
		grid-template-columns: 1.4fr 1fr 1fr;
		gap: 35px;
	}

	.hrc-consent {
		align-items: flex-start;
	}
}

@media (max-width: 620px) {
	body {
		font-size: 16px;
	}

	.hrc-container {
		width: min(calc(100% - 28px), var(--hrc-container));
	}

	.hrc-header-inner {
		min-height: 68px;
	}

	.hrc-brand img {
		width: 39px;
		height: 39px;
	}

	.hrc-brand strong {
		font-size: 0.99rem;
	}

	.hrc-brand small {
		display: none;
	}

	.hrc-nav-toggle__label {
		display: none;
	}

	.hrc-hero {
		padding: 54px 0 60px;
		background: linear-gradient(160deg, var(--hrc-cream), #edf3ee);
	}

	.hrc-hero__grid {
		gap: 44px;
	}

	.hrc-hero__copy h1 {
		font-size: clamp(2.5rem, 13vw, 3.6rem);
	}

	.hrc-hero__lede {
		font-size: 1rem;
	}

	.hrc-button-row {
		align-items: stretch;
	}

	.hrc-button-row .hrc-button--primary {
		width: 100%;
	}

	.hrc-button-row .hrc-button--text {
		justify-content: flex-start;
	}

	.hrc-proof-list {
		display: grid;
	}

	.hrc-hero__image {
		aspect-ratio: 1.16;
	}

	.hrc-floating-card {
		position: static;
		min-width: 0;
		margin-top: 10px;
	}

	.hrc-floating-card--source {
		display: none;
	}

	.hrc-section {
		padding-block: 70px;
	}

	.hrc-state-card {
		display: block;
		padding: 24px 21px;
	}

	.hrc-state-card__icon {
		margin-bottom: 17px;
	}

	.hrc-card-grid,
	.hrc-content-card:last-child {
		grid-template-columns: 1fr;
	}

	.hrc-content-card:last-child {
		grid-column: auto;
	}

	.hrc-content-card:last-child .hrc-content-card__image img {
		aspect-ratio: 1.42;
	}

	.hrc-page-hero {
		padding-block: 46px;
	}

	.hrc-page-hero__grid {
		gap: 38px;
	}

	.hrc-page-hero h1 {
		font-size: clamp(2.45rem, 12vw, 3.5rem);
	}

	.hrc-page-hero__media img {
		aspect-ratio: 1.18;
	}

	.hrc-page-title,
	.hrc-page-title--compact {
		padding-block: 46px;
	}

	.hrc-breadcrumb {
		margin-bottom: 22px;
	}

	.hrc-page-meta span + span::before {
		display: none;
	}

	.hrc-article-wrap {
		padding-block: 55px;
	}

	.hrc-article h2 {
		font-size: 1.85rem;
	}

	.hrc-article-aside,
	.hrc-form-row {
		grid-template-columns: 1fr;
	}

	.hrc-jump-links ul,
	.hrc-status-key {
		grid-template-columns: 1fr;
	}

	.hrc-check-cta {
		display: grid;
	}

	.hrc-recipe-summary {
		grid-template-columns: repeat(2, 1fr);
	}

	.hrc-recipe-box {
		padding: 22px 19px;
	}

	.hrc-ingredient-list li {
		grid-template-columns: 92px 1fr;
		gap: 11px;
	}

	.hrc-article table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.hrc-cta-band .hrc-container,
	.hrc-footer-note {
		align-items: stretch;
		flex-direction: column;
	}

	.hrc-footer-grid {
		grid-template-columns: 1fr 1fr;
		gap: 36px 25px;
	}

	.hrc-footer-brand {
		grid-column: 1 / -1;
	}

	.hrc-consent {
		right: 10px;
		bottom: 10px;
		left: 10px;
		display: grid;
		padding: 16px;
	}

	.hrc-consent__actions {
		flex-wrap: wrap;
	}

	.hrc-consent__actions .hrc-button {
		flex: 1 1 150px;
	}
}

@media (max-width: 360px) {
	.hrc-brand strong {
		font-size: 0.9rem;
	}

	.hrc-recipe-summary,
	.hrc-footer-grid {
		grid-template-columns: 1fr;
	}

	.hrc-footer-brand {
		grid-column: auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}
