.rh-application-wrap {
	--rh-ink: #20251f;
	--rh-muted: #60695f;
	--rh-border: #d6ddd3;
	--rh-panel: #f5f7f3;
	--rh-accent: #344934;
	--rh-accent-dark: #233323;
	--rh-error: #8b1f1f;
	--rh-error-bg: #fff1f1;
	--rh-success: #215d34;
	--rh-success-bg: #effaf2;
	max-width: 980px;
	margin: 2rem auto;
	color: var(--rh-ink);
	font-family: inherit;
	line-height: 1.55;
}

.rh-application-wrap *,
.rh-application-wrap *::before,
.rh-application-wrap *::after {
	box-sizing: border-box;
}

.rh-application-form {
	background: #fff;
	border: 1px solid var(--rh-border);
	border-radius: 12px;
	box-shadow: 0 14px 40px rgba(24, 34, 24, 0.08);
	overflow: hidden;
}

.rh-form-header {
	padding: clamp(1.6rem, 4vw, 3rem);
	background: var(--rh-accent);
	color: #fff;
}

.rh-form-header h1 {
	margin: 0.2rem 0 0.7rem;
	font-size: clamp(2rem, 5vw, 3.35rem);
	line-height: 1.08;
	color: inherit;
}

.rh-form-header p:last-child {
	max-width: 65ch;
	margin-bottom: 0;
	font-size: 1.04rem;
}

.rh-eyebrow {
	margin: 0;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	opacity: 0.85;
}

.rh-process,
.rh-final-consent {
	margin: 0;
	padding: 1.6rem clamp(1.25rem, 4vw, 2.5rem);
	background: var(--rh-panel);
	border-bottom: 1px solid var(--rh-border);
}

.rh-process h2,
.rh-final-consent h2 {
	margin-top: 0;
}

.rh-process ol {
	margin-bottom: 1rem;
	padding-left: 1.4rem;
}

.rh-process li + li {
	margin-top: 0.35rem;
}

.rh-source-note {
	margin-bottom: 0;
	padding: 0.9rem 1rem;
	background: #fff;
	border-left: 4px solid #9d7921;
}

.rh-section {
	min-width: 0;
	margin: 0;
	padding: 1.7rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
	border: 0;
	border-bottom: 1px solid var(--rh-border);
}

.rh-section > legend {
	float: left;
	width: 100%;
	margin: 0 0 1.35rem;
	padding: 0;
	font-size: clamp(1.35rem, 3vw, 1.75rem);
	font-weight: 750;
	line-height: 1.2;
	color: var(--rh-accent-dark);
}

.rh-section > legend + * {
	clear: both;
}

.rh-section h3 {
	margin: 1.5rem 0 0.65rem;
	font-size: 1.08rem;
	color: var(--rh-accent-dark);
}

.rh-grid {
	display: grid;
	gap: 1rem;
}

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

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

.rh-top-align {
	align-items: start;
}

.rh-field,
.rh-inline-fieldset,
.rh-checkbox-field,
.rh-subsection {
	margin: 0 0 1rem;
}

.rh-label-text,
.rh-inline-fieldset > legend {
	display: block;
	margin-bottom: 0.38rem;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--rh-ink);
}

.rh-field input,
.rh-field textarea,
.rh-staff-section input,
.rh-staff-section textarea {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0.78rem 0.85rem;
	border: 1px solid #aeb7ab;
	border-radius: 7px;
	background: #fff;
	color: var(--rh-ink);
	font: inherit;
	line-height: 1.35;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.rh-field textarea,
.rh-staff-section textarea {
	min-height: 7rem;
	resize: vertical;
}

.rh-field input:focus,
.rh-field textarea:focus,
.rh-choice input:focus-visible,
.rh-checkbox-field input:focus-visible,
.rh-submit-button:focus-visible,
.rh-policy summary:focus-visible {
	outline: 3px solid rgba(52, 73, 52, 0.25);
	outline-offset: 2px;
	border-color: var(--rh-accent);
}

.rh-required {
	color: #a40000;
}

.rh-help {
	margin: 0.38rem 0 0;
	color: var(--rh-muted);
	font-size: 0.88rem;
}

.rh-inline-fieldset {
	min-width: 0;
	padding: 0;
	border: 0;
}

.rh-choice-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.rh-choice {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	min-height: 44px;
	padding: 0.6rem 0.85rem;
	border: 1px solid var(--rh-border);
	border-radius: 7px;
	background: #fff;
	cursor: pointer;
}

.rh-choice input,
.rh-checkbox-field input {
	width: 1.15rem;
	height: 1.15rem;
	margin: 0;
	accent-color: var(--rh-accent);
	flex: 0 0 auto;
}

.rh-checkbox-field {
	padding: 0.9rem 1rem;
	border: 1px solid var(--rh-border);
	border-radius: 8px;
	background: #fafbf9;
}

.rh-checkbox-field label {
	display: flex;
	align-items: flex-start;
	gap: 0.7rem;
	cursor: pointer;
}

.rh-checkbox-field span {
	line-height: 1.45;
}

.rh-subsection {
	padding: 1rem;
	border: 1px solid var(--rh-border);
	border-radius: 8px;
	background: var(--rh-panel);
}

.rh-subsection h3 {
	margin-top: 0;
}

.rh-agreement-box,
.rh-contract-copy {
	margin-bottom: 1.2rem;
	padding: 1rem 1.1rem;
	border: 1px solid var(--rh-border);
	border-radius: 8px;
	background: var(--rh-panel);
}


.rh-contract-copy p:first-child {
	margin-top: 0;
}

.rh-contract-copy p:last-child {
	margin-bottom: 0;
}

.rh-policy {
	margin-bottom: 1rem;
	border: 1px solid var(--rh-border);
	border-radius: 8px;
	background: #fff;
}

.rh-policy summary {
	padding: 0.9rem 1rem;
	font-weight: 750;
	cursor: pointer;
}

.rh-policy > :not(summary) {
	margin-left: 1rem;
	margin-right: 1rem;
}

.rh-policy > :last-child {
	margin-bottom: 1rem;
}

.rh-staff-section[disabled] {
	opacity: 0.72;
}

.rh-staff-section input,
.rh-staff-section textarea {
	background: #f2f3f1;
}

.rh-final-consent {
	border-bottom: 0;
}

.rh-submit-row {
	padding: 1.5rem clamp(1.25rem, 4vw, 2.5rem) 2rem;
	background: #fff;
	text-align: center;
}

.rh-submit-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0.85rem 1.55rem;
	border: 0;
	border-radius: 7px;
	background: var(--rh-accent);
	color: #fff;
	font: inherit;
	font-weight: 750;
	cursor: pointer;
	transition: background 0.15s ease, transform 0.15s ease;
}

.rh-submit-button:hover {
	background: var(--rh-accent-dark);
	transform: translateY(-1px);
}

.rh-submit-row p {
	margin: 0.7rem 0 0;
	color: var(--rh-muted);
	font-size: 0.88rem;
}

.rh-message {
	margin: 1.5rem 0;
	padding: 1.1rem 1.25rem;
	border: 1px solid;
	border-radius: 9px;
}

.rh-message h2 {
	margin: 0 0 0.5rem;
	font-size: 1.25rem;
}

.rh-message p:last-child,
.rh-message ul:last-child {
	margin-bottom: 0;
}

.rh-message-error {
	border-color: #dfb6b6;
	background: var(--rh-error-bg);
	color: var(--rh-error);
}

.rh-message-success {
	border-color: #b9d8c0;
	background: var(--rh-success-bg);
	color: var(--rh-success);
}

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

@media (max-width: 760px) {
	.rh-application-wrap {
		margin: 1rem auto;
	}

	.rh-application-form {
		border-radius: 8px;
	}

	.rh-grid-2,
	.rh-grid-3 {
		grid-template-columns: 1fr;
	}

	.rh-choice-row {
		flex-direction: column;
	}

	.rh-choice {
		width: 100%;
	}
}

@media print {
	.rh-application-wrap {
		max-width: none;
		margin: 0;
	}

	.rh-application-form {
		border: 0;
		box-shadow: none;
	}

	.rh-submit-row,
	.rh-honeypot {
		display: none !important;
	}

}
