:root {
	--shb-gold: #b08d57;
	--shb-gold-light: #c8a877;
	--shb-gold-dark: #8c6e40;
	--shb-charcoal: #241f1a;
	--shb-charcoal-soft: #2e2823;
	--shb-cream: #f6f0e7;
	--shb-cream-dark: #f4e8db;
}

.shb-form,
.shb-form * {
	box-sizing: border-box;
}

.shb-form {
	width: 100%;
	max-width: 1152px;
	margin: 0 auto;
	color: var(--shb-charcoal);
	font-family: Inter, Arial, sans-serif;
}

.shb-honeypot {
	position: absolute !important;
	left: -9999px !important;
}

.shb-progress {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	max-width: 672px;
	margin: 0 auto 48px;
}

.shb-progress-line {
	position: absolute;
	top: 20px;
	left: 12.5%;
	right: 12.5%;
	height: 1px;
	background: rgb(36 31 26 / 15%);
}

.shb-progress-line i {
	display: block;
	width: 0;
	height: 1px;
	background: var(--shb-gold);
	transition: width .5s ease;
}

.shb-progress > span {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	color: rgb(36 31 26 / 45%);
	text-align: center;
}

.shb-progress > span b {
	display: grid;
	width: 40px;
	height: 40px;
	place-items: center;
	border: 1px solid rgb(36 31 26 / 20%);
	border-radius: 50%;
	background: var(--shb-cream);
	font: 400 14px "Cormorant Garamond", Georgia, serif;
	transition: all .25s ease;
}

.shb-progress > span small {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: .2em;
}

.shb-progress > span.active,
.shb-progress > span.complete {
	color: var(--shb-charcoal);
}

.shb-progress > span.active b {
	border-color: var(--shb-gold);
	color: var(--shb-gold-dark);
}

.shb-progress > span.complete b {
	border-color: var(--shb-gold);
	background: var(--shb-gold);
	color: var(--shb-cream);
}

.shb-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 336px;
	gap: 48px;
	align-items: start;
}

.shb-panel {
	order: 1;
	min-width: 0;
	padding: 40px;
	border: 1px solid rgb(176 141 87 / 15%);
	background: var(--shb-cream-dark);
}

.shb-panel fieldset {
	display: none;
	min-width: 0;
	margin: 0;
	padding: 0;
	border: 0;
}

.shb-panel fieldset.active {
	display: block;
	animation: shb-step-in .4s cubic-bezier(.16, 1, .3, 1);
}

.shb-panel legend {
	padding: 0;
	font: 500 36px/1.12 "Cormorant Garamond", Georgia, serif;
	color: var(--shb-charcoal);
}

.shb-panel fieldset > p {
	margin: 8px 0 0;
	color: rgb(36 31 26 / 60%);
	font-size: 14px;
}

.shb-rooms {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin-top: 32px;
}

.shb-empty {
	grid-column: 1 / -1;
	margin: 0;
	padding: 28px;
	border: 1px solid rgb(176 141 87 / 20%);
	color: rgb(36 31 26 / 60%);
	text-align: center;
	font-size: 14px;
}

.shb-room {
	position: relative;
	display: block;
	overflow: hidden;
	border: 1px solid rgb(36 31 26 / 15%);
	background: var(--shb-cream);
	cursor: pointer;
	transition: border-color .25s, box-shadow .25s, transform .25s;
}

.shb-room:hover {
	border-color: rgb(176 141 87 / 55%);
	transform: translateY(-2px);
	box-shadow: 0 12px 28px rgb(36 31 26 / 10%);
}

.shb-room.selected {
	border-color: var(--shb-gold);
	box-shadow: 0 0 0 1px var(--shb-gold);
}

.shb-room > input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.shb-room:focus-within {
	outline: 2px solid var(--shb-gold);
	outline-offset: 2px;
}

.shb-room-image {
	position: relative;
	display: block;
	height: 128px;
	overflow: hidden;
	background: var(--shb-charcoal-soft);
}

.shb-room-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .5s ease;
}

.shb-room:hover .shb-room-image img {
	transform: scale(1.05);
}

.shb-room-check {
	position: absolute;
	top: 8px;
	right: 8px;
	display: grid;
	width: 24px;
	height: 24px;
	place-items: center;
	border-radius: 50%;
	background: var(--shb-gold);
	color: var(--shb-cream);
	font-style: normal;
	opacity: 0;
	transform: scale(.75);
	transition: opacity .2s, transform .2s;
}

.shb-room.selected .shb-room-check {
	opacity: 1;
	transform: scale(1);
}

.shb-room-copy {
	display: block;
	padding: 16px;
}

.shb-room-copy > b {
	display: block;
	font: 500 21px/1.2 "Cormorant Garamond", Georgia, serif;
}

.shb-room-copy > small {
	display: block;
	margin-top: 4px;
	color: rgb(36 31 26 / 50%);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: .12em;
}

.shb-room-copy > strong {
	display: block;
	margin-top: 8px;
	color: var(--shb-gold-dark);
	font-size: 14px;
	font-weight: 500;
}

.shb-room-copy > strong i {
	color: rgb(36 31 26 / 45%);
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
}

.shb-fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	margin-top: 32px;
}

.shb-fields label {
	display: block;
	min-width: 0;
	color: rgb(36 31 26 / 55%);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: .2em;
}

.shb-fields label > span {
	display: block;
	margin-bottom: 8px;
}

.shb-fields label i {
	color: var(--shb-gold-dark);
	font-style: normal;
}

.shb-fields input,
.shb-fields select,
.shb-fields textarea {
	display: block;
	width: 100%;
	min-width: 0;
	padding: 12px 16px;
	border: 1px solid rgb(36 31 26 / 20%);
	border-radius: 0;
	background: var(--shb-cream);
	color: var(--shb-charcoal);
	font: 14px/1.4 Inter, Arial, sans-serif;
	outline: none;
	text-transform: none;
	letter-spacing: normal;
	transition: border-color .2s, box-shadow .2s;
}

.shb-fields input:focus,
.shb-fields select:focus,
.shb-fields textarea:focus {
	border-color: var(--shb-gold);
	box-shadow: 0 0 0 2px rgb(176 141 87 / 15%);
}

.shb-fields .wide {
	grid-column: 1 / -1;
}

.shb-error {
	margin-top: 10px !important;
	color: #a12622 !important;
	font-size: 12px !important;
}

.shb-availability {
	min-height: 21px;
	margin: 18px 0 0 !important;
	font-size: 13px !important;
}

.shb-availability.available {
	color: #477a3a !important;
}

.shb-availability.unavailable {
	color: #a12622 !important;
}

.shb-review {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin: 32px 0 0;
	padding-top: 24px;
	border-top: 1px solid rgb(176 141 87 / 20%);
}

.shb-review dt {
	color: rgb(36 31 26 / 50%);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: .2em;
}

.shb-review dd {
	margin: 4px 0 0;
	color: var(--shb-charcoal);
	font-size: 14px;
	overflow-wrap: anywhere;
}

.shb-actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid rgb(36 31 26 / 10%);
}

.shb-back,
.shb-next,
.shb-submit {
	min-height: 48px;
	padding: 14px 36px;
	border: 0;
	border-radius: 0;
	background: var(--shb-charcoal);
	color: var(--shb-cream);
	font: 500 11px/1 Inter, Arial, sans-serif;
	text-transform: uppercase;
	letter-spacing: .2em;
	cursor: pointer;
	transition: background .2s, color .2s, opacity .2s;
}

.shb-back {
	padding-left: 0;
	background: transparent;
	color: rgb(36 31 26 / 60%);
}

.shb-back:disabled {
	visibility: hidden;
}

.shb-next:hover {
	background: var(--shb-gold);
}

.shb-next:disabled {
	cursor: wait;
	opacity: .65;
}

.shb-submit {
	background: var(--shb-gold);
}

.shb-submit:hover {
	background: var(--shb-gold-light);
	color: var(--shb-charcoal);
}

.shb-summary {
	position: sticky;
	top: 112px;
	order: 2;
	overflow: hidden;
	border: 1px solid rgb(176 141 87 / 15%);
	background: var(--shb-charcoal);
	color: var(--shb-cream);
}

.shb-summary-image {
	position: relative;
	display: grid;
	height: 160px;
	place-items: center;
	overflow: hidden;
	background: var(--shb-charcoal-soft);
	color: rgb(246 240 231 / 40%);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: .2em;
}

.shb-summary-image img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.shb-summary-copy {
	padding: 24px;
}

.shb-summary-copy > p {
	margin: 0;
	color: var(--shb-gold-light);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: .3em;
}

.shb-summary-copy > h3 {
	margin: 8px 0 24px;
	color: var(--shb-cream);
	font: 500 28px/1.15 "Cormorant Garamond", Georgia, serif;
}

.shb-summary dl {
	margin: 0;
	padding: 20px 0;
	border-top: 1px solid rgb(246 240 231 / 15%);
}

.shb-summary dl > div,
.shb-subtotal,
.shb-discount,
.shb-total {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	margin: 0;
	padding: 5px 0;
	font-size: 13px;
}

.shb-summary dt,
.shb-subtotal span {
	color: rgb(246 240 231 / 55%);
}

.shb-summary dd {
	margin: 0;
	color: var(--shb-cream);
	text-align: right;
}

.shb-subtotal {
	padding-top: 20px;
	border-top: 1px solid rgb(246 240 231 / 15%);
}

.shb-subtotal b {
	font-weight: 400;
}

.shb-discount span,
.shb-discount b {
	color: var(--shb-gold-light);
	font-weight: 400;
}

.shb-total {
	align-items: end;
	margin-top: 12px;
	padding-top: 16px;
	border-top: 1px solid rgb(246 240 231 / 15%);
}

.shb-total span {
	color: rgb(246 240 231 / 55%);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: .2em;
}

.shb-total b {
	color: var(--shb-gold-light);
	font: 500 28px/1 "Cormorant Garamond", Georgia, serif;
}

.shb-summary ul {
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
	color: rgb(246 240 231 / 60%);
	font-size: 12px;
}

.shb-summary li {
	position: relative;
	margin: 8px 0;
	padding-left: 22px;
}

.shb-summary li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--shb-gold-light);
	font-weight: 700;
}

@keyframes shb-step-in {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: none; }
}

@media (max-width: 1023px) {
	.shb-layout {
		grid-template-columns: minmax(0, 1fr);
		gap: 32px;
	}

	.shb-summary {
		position: static;
		order: 1;
	}

	.shb-panel {
		order: 2;
		padding: 40px;
	}
}

@media (max-width: 639px) {
	.shb-progress {
		margin-bottom: 32px;
	}

	.shb-progress > span b {
		width: 36px;
		height: 36px;
	}

	.shb-progress-line {
		top: 18px;
	}

	.shb-progress > span small {
		font-size: 9px;
		letter-spacing: .12em;
	}

	.shb-panel {
		padding: 24px 18px;
	}

	.shb-panel legend {
		font-size: 31px;
	}

	.shb-rooms,
	.shb-fields,
	.shb-review {
		grid-template-columns: 1fr;
	}

	.shb-fields .wide {
		grid-column: auto;
	}

	.shb-actions {
		gap: 12px;
	}

	.shb-next,
	.shb-submit {
		padding-right: 22px;
		padding-left: 22px;
	}
}

@media (max-width: 479px) {
	.shb-progress {
		gap: 2px;
	}

	.shb-progress > span {
		gap: 6px;
		min-width: 0;
	}

	.shb-progress > span small {
		font-size: 8px;
		letter-spacing: .06em;
		overflow-wrap: anywhere;
	}

	.shb-panel {
		padding: 24px 16px;
	}

	.shb-panel legend {
		font-size: 29px;
	}

	.shb-actions {
		align-items: stretch;
		flex-direction: column-reverse;
	}

	.shb-back,
	.shb-next,
	.shb-submit {
		width: 100%;
		padding: 15px 14px;
		text-align: center;
	}

	.shb-back {
		min-height: 42px;
		padding-left: 14px;
	}

	.shb-back:disabled {
		display: none;
	}

	.shb-summary-copy {
		padding: 22px 18px;
	}

	.shb-summary dl > div,
	.shb-subtotal,
	.shb-discount,
	.shb-total {
		gap: 10px;
	}
}
