.hcb-booking,
.hcb-booking * {
	box-sizing: border-box;
}

.hcb-booking {
	--hcb-black: #111111;
	--hcb-red: #b22222;
	--hcb-line: #d8d0cc;
	--hcb-muted: #626262;
	--hcb-white: #f7f7f7;
	width: 100%;
	padding: 64px 48px;
	background: #f7f7f7;
	color: #111111;
	font-family: Inter, Arial, sans-serif;
}

.hcb-layout {
	display: grid;
	grid-template-columns: minmax(0, 2fr) minmax(280px, 0.95fr);
	gap: 24px;
	max-width: 1280px;
	margin: 0 auto;
	align-items: start;
}

.hcb-form-content {
	min-width: 0;
}

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

.hcb-step + .hcb-step {
	margin-top: 46px;
}

.hcb-step-heading {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}

.hcb-step-number {
	color: rgba(178, 34, 34, 0.2);
	font: 700 28px/1 Montserrat, Arial, sans-serif;
}

.hcb-step-title {
	margin: 0;
	color: #111111;
	font: 700 27px/1.1 Montserrat, Arial, sans-serif;
	text-transform: uppercase;
}

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

.hcb-service-option {
	display: block;
	margin: 0;
	cursor: pointer;
}

.hcb-service-input {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	margin: -1px !important;
	padding: 0 !important;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0 !important;
}

.hcb-service-card {
	display: flex;
	min-height: 178px;
	padding: 24px;
	flex-direction: column;
	gap: 12px;
	background: transparent;
	border: 1px solid var(--hcb-line);
	transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.hcb-service-option:hover .hcb-service-card {
	box-shadow: 0 10px 24px rgba(5, 5, 5, 0.08);
}

.hcb-service-input:checked + .hcb-service-card {
	background: #ffffff;
	border-color: #111111;
}

.hcb-service-input:focus-visible + .hcb-service-card {
	outline: 2px solid var(--hcb-red);
	outline-offset: 2px;
}

.hcb-service-icon {
	display: inline-flex;
	width: 32px;
	height: 32px;
	align-items: center;
	color: #111111;
	font-size: 25px;
}

.hcb-service-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.hcb-service-title,
.hcb-service-description {
	display: block;
}

.hcb-service-title {
	color: #111111;
	font: 600 20px/1.25 Montserrat, Arial, sans-serif;
}

.hcb-service-description {
	color: var(--hcb-muted);
	font-size: 14px;
	line-height: 1.55;
}

.hcb-fields-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

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

.hcb-field-full {
	margin-top: 20px;
}

.hcb-field label {
	display: block;
	margin-bottom: 8px;
	color: #515151;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.hcb-field-control {
	width: 100%;
	min-height: 48px;
	padding: 10px 12px;
	border: 0;
	border-bottom: 1px solid var(--hcb-line);
	border-radius: 0;
	outline: 1px solid transparent;
	background: transparent;
	color: #111111;
	font: 400 14px/1.4 Inter, Arial, sans-serif;
	box-shadow: none;
}

textarea.hcb-field-control {
	min-height: 100px;
	border: 1px solid var(--hcb-line);
	resize: vertical;
}

.hcb-field-control:focus {
	border-color: var(--hcb-red);
	outline-color: transparent;
	box-shadow: none;
}

.hcb-date-control {
	position: relative;
	display: block;
}

.hcb-date-control input[type="date"] {
	padding-right: 42px;
}

.hcb-date-control input[type="date"]::-webkit-calendar-picker-indicator {
	position: absolute;
	right: 0;
	width: 42px;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: pointer;
}

.hcb-date-icon {
	position: absolute;
	top: 50%;
	right: 13px;
	display: inline-flex;
	width: 16px;
	height: 16px;
	align-items: center;
	justify-content: center;
	color: #111111;
	font-size: 15px;
	transform: translateY(-50%);
	pointer-events: none;
}

.hcb-date-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.hcb-sidebar {
	position: sticky;
	top: 96px;
}

.hcb-summary {
	padding: 28px;
	background: var(--hcb-black);
	color: var(--hcb-white);
	box-shadow: 0 15px 30px rgba(5, 5, 5, 0.16);
}

.hcb-summary-title {
	margin: 0;
	color: inherit;
	font: 700 22px/1.2 Montserrat, Arial, sans-serif;
}

.hcb-summary-header {
	padding-bottom: 17px;
	border-bottom: 1px solid #3a3a3a;
}

.hcb-summary-service {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 0;
}

.hcb-summary-label {
	display: block;
	margin-bottom: 4px;
	color: #b8b8b8;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.hcb-summary-service strong {
	display: block;
	font: 600 18px/1.25 Montserrat, Arial, sans-serif;
}

.hcb-summary-check {
	display: grid;
	width: 22px;
	height: 22px;
	place-items: center;
	border: 1px solid var(--hcb-red);
	border-radius: 50%;
	color: var(--hcb-red);
	font-size: 12px;
}

.hcb-summary-total {
	display: flex;
	padding: 22px 0;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	border-top: 1px solid #3a3a3a;
}

.hcb-summary-total strong {
	font: 700 18px/1.2 Montserrat, Arial, sans-serif;
	white-space: nowrap;
}

.hcb-submit {
	width: 100%;
	min-height: 48px;
	padding: 12px 18px;
	border: 1px solid var(--hcb-red);
	border-radius: 0;
	background: var(--hcb-red);
	color: #ffffff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
}

.hcb-submit:hover,
.hcb-submit:focus-visible {
	background: #ffffff;
	color: #111111;
}

.hcb-submit:disabled {
	cursor: wait;
	opacity: 0.65;
}

.hcb-summary-note {
	margin: 12px 0 0;
	color: #b8b8b8;
	font-size: 10px;
	line-height: 1.45;
	text-align: center;
}

.hcb-trust {
	display: flex;
	margin-top: 16px;
	padding: 18px;
	align-items: center;
	gap: 14px;
	border: 1px solid var(--hcb-line);
}

.hcb-trust-icon {
	display: grid;
	width: 40px;
	height: 40px;
	flex: 0 0 40px;
	place-items: center;
	background: #ecebea;
	color: #111111;
	border-radius: 50%;
}

.hcb-trust-icon svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.hcb-trust strong {
	display: block;
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.hcb-trust p {
	margin: 2px 0 0;
	color: var(--hcb-muted);
	font-size: 10px;
	line-height: 1.35;
}

.hcb-form-status {
	display: none;
	margin-top: 16px;
	padding: 14px 16px;
	border: 1px solid var(--hcb-line);
	font-size: 13px;
}

.hcb-form-status.is-visible {
	display: block;
}

.hcb-form-status.is-success {
	border-color: #237a3b;
	background: #eef8f0;
	color: #155b2a;
}

.hcb-form-status.is-error {
	border-color: var(--hcb-red);
	background: #fff2f2;
	color: #7e1515;
}

@media (max-width: 1024px) {
	.hcb-booking {
		padding: 48px 28px;
	}

	.hcb-layout {
		grid-template-columns: minmax(0, 1.65fr) minmax(260px, 0.85fr);
	}

	.hcb-fields-grid-three {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.hcb-booking {
		padding: 40px 18px;
	}

	.hcb-layout,
	.hcb-fields-grid,
	.hcb-fields-grid-three,
	.hcb-services-grid {
		grid-template-columns: 1fr;
	}

	.hcb-sidebar {
		position: static;
	}

	.hcb-step-title {
		font-size: 23px;
	}
}
