.hrr-form-wrap {
	--hrr-ink: #2d1e17;
	--hrr-muted: #6d5648;
	--hrr-accent: #a1421a;
	--hrr-accent-soft: #f6e5d8;
	--hrr-line: #dfc3ab;
	--hrr-bg: linear-gradient(145deg, #fff9f3 0%, #fff1e4 100%);
	max-width: 860px;
	padding: 32px;
	background: var(--hrr-bg);
	border: 1px solid var(--hrr-line);
	border-radius: 24px;
	box-shadow: 0 20px 45px rgba(92, 49, 24, 0.1);
}

.hrr-form-header {
	margin-bottom: 24px;
}

.hrr-eyebrow {
	margin: 0 0 8px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--hrr-accent);
}

.hrr-form-header h3 {
	margin: 0;
	font-size: clamp(28px, 4vw, 40px);
	line-height: 1.05;
	color: var(--hrr-ink);
}

.hrr-intro {
	margin: 12px 0 0;
	max-width: 62ch;
	color: var(--hrr-muted);
	font-size: 15px;
	line-height: 1.6;
}

.hrr-form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.hrr-form .hrr-field {
	display: grid;
	gap: 8px;
	margin: 0;
}

.hrr-field-hidden {
	display: none !important;
}

.hrr-field-slot {
	padding: 16px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(161, 66, 26, 0.12);
	border-radius: 18px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.hrr-field-half,
.hrr-field-compact {
	grid-column: span 1;
}

.hrr-contact-block {
	margin-top: 16px;
}

.hrr-contact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.hrr-field-contact {
	grid-column: span 1;
}

.hrr-form .hrr-field label {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: var(--hrr-ink);
}

.hrr-form input,
.hrr-form select,
.hrr-form textarea,
.hrr-form button {
	width: 100%;
	padding: 14px 16px;
	border-radius: 14px;
	border: 1px solid #c6a98d;
	background: #fffdfa;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.hrr-checkbox-row {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
}

.hrr-checkbox-row input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin: 0;
	padding: 0;
	border-radius: 5px;
}

.hrr-form input:focus,
.hrr-form select:focus,
.hrr-form textarea:focus {
	outline: none;
	border-color: var(--hrr-accent);
	box-shadow: 0 0 0 4px rgba(161, 66, 26, 0.12);
}

.hrr-input-emphasis {
	font-weight: 700;
	font-size: 16px;
	min-height: 54px;
}

.hrr-form input[type="date"]::-webkit-calendar-picker-indicator {
	opacity: 0.9;
}

.hrr-form button {
	max-width: 320px;
	padding: 15px 20px;
	border: 0;
	background: linear-gradient(135deg, #b0491e 0%, #8d3310 100%);
	color: #fff;
	cursor: pointer;
	font-weight: 700;
	box-shadow: 0 14px 24px rgba(141, 51, 16, 0.24);
}

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

.hrr-submit-row {
	margin-top: 24px;
}

.hrr-error {
	color: #b42318;
	font-size: 12px;
}

.hrr-message-success {
	background: #e7f7ed;
	padding: 14px 16px;
	margin-bottom: 18px;
	border-radius: 14px;
	border: 1px solid #b4ddc1;
}

.hrr-message-error {
	background: #fef3f2;
	padding: 14px 16px;
	margin-bottom: 18px;
	border-radius: 14px;
	border: 1px solid #f3b7b2;
	color: #912018;
}

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

.hrr-preview {
	padding: 10px 12px;
	border: 1px dashed #c6a98d;
	border-radius: 8px;
	background: #fffdf9;
	font-size: 14px;
}

@media (max-width: 680px) {
	.hrr-form-wrap {
		padding: 20px;
		border-radius: 18px;
	}

	.hrr-form-grid {
		grid-template-columns: 1fr;
	}

	.hrr-form button {
		max-width: none;
	}

	.hrr-contact-grid {
		grid-template-columns: 1fr;
		gap: 12px;
	}
}
