.wsb-hub-wizard {
	--wsb-ink: #2a2622;
	--wsb-muted: #6d655c;
	--wsb-line: #d9cfc2;
	--wsb-paper: #f7f2ea;
	--wsb-paper-2: #efe6d8;
	--wsb-accent: #8a6f3c;
	--wsb-accent-ink: #fffdf8;
	max-width: 68rem;
	margin: 2rem auto;
	padding: clamp(1.25rem, 3vw, 2.25rem);
	color: var(--wsb-ink);
	background:
		radial-gradient(1200px 400px at 10% -10%, rgba(138, 111, 60, 0.12), transparent 60%),
		linear-gradient(180deg, var(--wsb-paper) 0%, var(--wsb-paper-2) 100%);
	border: 1px solid var(--wsb-line);
	font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
}

.wsb-hub-wizard__brand {
	margin: 0 0 0.35rem;
	font-size: 0.8rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wsb-accent);
}

.wsb-hub-wizard__title {
	font-size: clamp(1.75rem, 3vw, 2.4rem);
	font-weight: 500;
	margin: 0 0 0.4rem;
	letter-spacing: -0.02em;
}

.wsb-hub-wizard__lede {
	margin: 0 0 1.25rem;
	color: var(--wsb-muted);
	font-size: 1.05rem;
	max-width: 36rem;
}

.wsb-hub-wizard__steps {
	display: flex;
	gap: 0.75rem;
	list-style: none;
	margin: 0 0 1.75rem;
	padding: 0;
	flex-wrap: wrap;
}

.wsb-hub-wizard__steps li {
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--wsb-muted);
	padding-bottom: 0.35rem;
	border-bottom: 2px solid transparent;
}

.wsb-hub-wizard__steps li.is-active {
	color: var(--wsb-ink);
	border-bottom-color: var(--wsb-accent);
}

.wsb-hub-wizard__steps li.is-done {
	color: var(--wsb-accent);
}

.wsb-hub-wizard__panel-title {
	margin: 0 0 1rem;
	font-size: 1.2rem;
	font-weight: 500;
}

.wsb-hub-wizard .screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.wsb-hub-wizard__filters {
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
	margin: 0 0 1.1rem;
	padding: 0.75rem 0.85rem;
	background: rgba(255, 253, 248, 0.72);
	border: 1px solid var(--wsb-line);
}

.wsb-hub-wizard__filters-row {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem 0.65rem;
}

.wsb-hub-wizard__filter-search {
	flex: 1 1 12rem;
	min-width: 10rem;
	margin: 0;
}

.wsb-hub-wizard__filter-search input,
.wsb-hub-wizard__filter-select select {
	width: 100%;
	margin: 0;
	padding: 0.45rem 0.65rem;
	border: 1px solid var(--wsb-line);
	background: #fffdf8;
	color: var(--wsb-ink);
	font: inherit;
	font-size: 0.92rem;
}

.wsb-hub-wizard__filter-select {
	flex: 0 1 10rem;
	min-width: 8.5rem;
	margin: 0;
}

.wsb-hub-wizard__filter-segment {
	display: inline-flex;
	border: 1px solid var(--wsb-line);
	background: #fffdf8;
}

.wsb-hub-wizard__filter-segment button {
	margin: 0;
	padding: 0.4rem 0.7rem;
	border: 0;
	border-right: 1px solid var(--wsb-line);
	background: transparent;
	color: var(--wsb-muted);
	font: inherit;
	font-size: 0.82rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	cursor: pointer;
}

.wsb-hub-wizard__filter-segment button:last-child {
	border-right: 0;
}

.wsb-hub-wizard__filter-segment button.is-active {
	background: var(--wsb-ink);
	color: var(--wsb-accent-ink);
}

.wsb-hub-wizard__filter-featured {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin: 0;
	font-size: 0.9rem;
	color: var(--wsb-muted);
	cursor: pointer;
}

.wsb-hub-wizard__mood-chip {
	margin: 0;
	padding: 0.28rem 0.65rem;
	border: 1px solid var(--wsb-line);
	background: #fffdf8;
	color: var(--wsb-muted);
	font: inherit;
	font-size: 0.82rem;
	cursor: pointer;
	transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.wsb-hub-wizard__mood-chip[aria-pressed="true"] {
	border-color: var(--wsb-accent);
	background: rgba(138, 111, 60, 0.12);
	color: var(--wsb-ink);
}

.wsb-hub-wizard__filters-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	min-height: 1.25rem;
}

.wsb-hub-wizard__filter-count {
	font-size: 0.85rem;
	color: var(--wsb-muted);
}

.wsb-hub-wizard__filter-clear {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	color: var(--wsb-accent);
	font: inherit;
	font-size: 0.85rem;
	text-decoration: underline;
	cursor: pointer;
}

.wsb-hub-wizard__filter-empty {
	margin: 0.75rem 0 0;
	padding: 1rem;
	border: 1px dashed var(--wsb-line);
	color: var(--wsb-muted);
	text-align: center;
	font-size: 0.95rem;
}

.wsb-hub-wizard__card.is-filtered-out {
	display: none;
}

.wsb-hub-wizard__gallery {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

@media (min-width: 900px) {
	.wsb-hub-wizard__gallery {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.wsb-hub-wizard__card {
	display: flex;
	flex-direction: column;
	margin: 0;
	cursor: pointer;
	background: #fffdf8;
	border: 1px solid var(--wsb-line);
	transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.wsb-hub-wizard__card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(42, 38, 34, 0.08);
}

.wsb-hub-wizard__card:has(input:checked) {
	border-color: var(--wsb-accent);
	box-shadow: 0 0 0 1px var(--wsb-accent);
}

.wsb-hub-wizard__card input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.wsb-hub-wizard__card-media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--wsb-bg, #efe6d8);
}

.wsb-hub-wizard__card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	cursor: zoom-in;
}

.wsb-hub-wizard__hint {
	margin: -0.35rem 0 1rem;
	color: var(--wsb-muted);
	font-size: 0.9rem;
}

body.wsb-hub-lightbox-open {
	overflow: hidden;
}

.wsb-hub-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	background: rgba(20, 16, 12, 0.88);
	backdrop-filter: blur(2px);
}

.wsb-hub-lightbox[hidden] {
	display: none !important;
}

.wsb-hub-lightbox__figure {
	margin: 0;
	max-width: min(96vw, 900px);
	max-height: 92vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.wsb-hub-lightbox__img {
	display: block;
	max-width: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
	background: #1a1612;
}

.wsb-hub-lightbox__caption {
	margin: 0;
	color: #f7f2ea;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
	text-align: center;
}

.wsb-hub-lightbox__close {
	position: absolute;
	top: 0.85rem;
	right: 0.85rem;
	width: 2.5rem;
	height: 2.5rem;
	border: 1px solid rgba(247, 242, 234, 0.35);
	border-radius: 999px;
	background: rgba(20, 16, 12, 0.55);
	color: #f7f2ea;
	font-size: 1.6rem;
	line-height: 1;
	cursor: pointer;
}

.wsb-hub-lightbox__close:hover,
.wsb-hub-lightbox__close:focus-visible {
	background: rgba(20, 16, 12, 0.85);
	outline: 2px solid #d4af78;
	outline-offset: 2px;
}

.wsb-hub-wizard__card-fallback {
	display: block;
	width: 100%;
	height: 100%;
	background:
		linear-gradient(135deg, var(--wsb-bg, #efe6d8), #fff),
		radial-gradient(circle at 70% 30%, var(--wsb-accent), transparent 55%);
}

.wsb-hub-wizard__card-meta {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	padding: 0.75rem 0.85rem 0.95rem;
}

.wsb-hub-wizard__card-meta strong {
	font-size: 1rem;
}

.wsb-hub-wizard__card-meta small {
	color: var(--wsb-muted);
	font-size: 0.85rem;
	line-height: 1.35;
}

.wsb-hub-wizard__plans {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.85rem;
}

@media (min-width: 720px) {
	.wsb-hub-wizard__plans {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.wsb-hub-wizard__plan {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	margin: 0;
	padding: 1rem 1.1rem;
	cursor: pointer;
	background: #fffdf8;
	border: 1px solid var(--wsb-line);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.wsb-hub-wizard__plan:has(input:checked) {
	border-color: var(--wsb-accent);
	box-shadow: 0 0 0 1px var(--wsb-accent);
}

.wsb-hub-wizard__plan input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.wsb-hub-wizard__plan-top {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	gap: 0.75rem;
}

.wsb-hub-wizard__plan-top strong {
	font-size: 1.15rem;
}

.wsb-hub-wizard__plan-top em {
	font-style: normal;
	font-size: 1.25rem;
	color: var(--wsb-accent);
}

.wsb-hub-wizard__plan-tag {
	font-size: 0.75rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--wsb-muted);
}

.wsb-hub-wizard__plan.is-concierge .wsb-hub-wizard__plan-tag {
	color: #6a4f2a;
}

.wsb-hub-wizard__plan small {
	color: var(--wsb-muted);
	line-height: 1.4;
}

.wsb-hub-wizard__fields {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.9rem 1rem;
}

@media (min-width: 720px) {
	.wsb-hub-wizard__fields {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.wsb-hub-wizard__field--wide {
	grid-column: 1 / -1;
}

.wsb-hub-wizard__form label {
	display: block;
	margin: 0;
}

.wsb-hub-wizard__form label > span {
	display: block;
	font-size: 0.85rem;
	margin-bottom: 0.3rem;
	color: var(--wsb-muted);
}

.wsb-hub-wizard__form input[type="text"],
.wsb-hub-wizard__form input[type="email"],
.wsb-hub-wizard__form input[type="date"] {
	width: 100%;
	padding: 0.7rem 0.8rem;
	border: 1px solid var(--wsb-line);
	background: #fffdf8;
	font: inherit;
	color: var(--wsb-ink);
	box-sizing: border-box;
}

.wsb-hub-wizard__hint {
	display: block;
	margin-top: 0.3rem;
	font-size: 0.8rem;
	color: var(--wsb-muted);
}

.wsb-hub-wizard__nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-top: 1.5rem;
}

.wsb-hub-wizard__btn {
	padding: 0.8rem 1.2rem;
	border: 1px solid var(--wsb-line);
	background: transparent;
	color: var(--wsb-ink);
	font: inherit;
	cursor: pointer;
}

.wsb-hub-wizard__btn--primary {
	border-color: var(--wsb-accent);
	background: var(--wsb-accent);
	color: var(--wsb-accent-ink);
}

.wsb-hub-wizard__btn:hover {
	filter: brightness(0.97);
}

.wsb-hub-wizard__status {
	margin-top: 1rem;
	padding: 0.85rem 1rem;
	background: #fffdf8;
	border: 1px solid var(--wsb-line);
}

.wsb-hub-wizard__status.is-error {
	border-color: #b71c1c;
	color: #b71c1c;
}

.wsb-hub-wizard__fields label.is-invalid > span,
.wsb-hub-wizard__domain-own.is-invalid > label > span,
.wsb-hub-wizard__domain-buy.is-invalid > label > span {
	color: #b71c1c;
}

.wsb-hub-wizard__fields input.is-invalid,
.wsb-hub-wizard__domain-own input.is-invalid,
.wsb-hub-wizard__domain-buy input.is-invalid {
	border-color: #b71c1c;
	background: #fff5f5;
	box-shadow: 0 0 0 1px #b71c1c;
}

.wsb-hub-wizard__fields input.is-invalid:focus,
.wsb-hub-wizard__domain-own input.is-invalid:focus,
.wsb-hub-wizard__domain-buy input.is-invalid:focus {
	outline: 2px solid #b71c1c;
	outline-offset: 1px;
}

.wsb-hub-wizard__domain {
	margin-top: 0.75rem;
	padding: 0.85rem 0 0;
	border: 0;
	border-top: 1px solid var(--wsb-line);
}

.wsb-hub-wizard__domain legend {
	padding: 0 0 0.5rem;
	font-weight: 600;
}

.wsb-hub-wizard__radio {
	display: flex;
	gap: 0.5rem;
	align-items: flex-start;
	margin: 0.35rem 0;
	cursor: pointer;
}

.wsb-hub-wizard__radio-copy {
	display: inline;
	line-height: 1.45;
}

.wsb-hub-wizard__help {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.15rem;
	height: 1.15rem;
	margin-left: 0.35rem;
	padding: 0;
	border: 1px solid var(--wsb-line);
	border-radius: 999px;
	background: #fffdf8;
	color: var(--wsb-muted);
	font: inherit;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1;
	vertical-align: middle;
	cursor: help;
}

.wsb-hub-wizard__help:hover,
.wsb-hub-wizard__help:focus,
.wsb-hub-wizard__help:focus-visible,
.wsb-hub-wizard__help[aria-expanded="true"] {
	border-color: var(--wsb-accent);
	color: var(--wsb-ink);
	outline: none;
}

.wsb-hub-wizard__help::after {
	content: attr(data-tip);
	position: absolute;
	left: 50%;
	bottom: calc(100% + 0.55rem);
	z-index: 5;
	width: min(18rem, 70vw);
	padding: 0.65rem 0.75rem;
	border: 1px solid var(--wsb-line);
	background: #fffdf8;
	color: var(--wsb-ink);
	font-size: 0.8rem;
	font-weight: 400;
	line-height: 1.4;
	text-align: left;
	white-space: normal;
	box-shadow: 0 8px 24px rgba(28, 24, 20, 0.12);
	opacity: 0;
	pointer-events: none;
	transform: translateX(-50%) translateY(0.15rem);
	transition: opacity 0.15s ease, transform 0.15s ease;
}

.wsb-hub-wizard__help:hover::after,
.wsb-hub-wizard__help:focus::after,
.wsb-hub-wizard__help:focus-visible::after,
.wsb-hub-wizard__help[aria-expanded="true"]::after {
	opacity: 1;
	transform: translateX(-50%) translateY(0);
}

.wsb-hub-wizard__domain-results {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0.75rem 0;
}

.wsb-hub-wizard__domain-chip {
	padding: 0.45rem 0.75rem;
	border: 1px solid var(--wsb-line);
	background: #fffdf8;
	font: inherit;
	cursor: pointer;
}

.wsb-hub-wizard__domain-chip.is-selected {
	border-color: var(--wsb-accent);
	background: rgba(138, 111, 60, 0.12);
}

.wsb-hub-wizard__domain-chip:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

.wsb-hub-wizard__domain-total {
	margin: 0.5rem 0 0;
	color: var(--wsb-muted);
}
