@import url("https://fonts.googleapis.com/css2?family=Heebo:wght@400;500;600;700;800&display=swap");

:root {
	--wdm-bg: #fbfaf7;
	--wdm-surface: #ffffff;
	--wdm-ink: #172323;
	--wdm-muted: #66736f;
	--wdm-border: #e5ded2;
	--wdm-primary: #0b4b4a;
	--wdm-primary-strong: #073837;
	--wdm-gold: #c59b46;
	--wdm-burgundy: #8d3145;
	--wdm-soft: #f1eee7;
	--wdm-shadow: 0 18px 45px rgba(23, 35, 35, 0.1);
	--wdm-radius: 8px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--wdm-bg);
	color: var(--wdm-ink);
	font-family: Arial, "Helvetica Neue", sans-serif;
	line-height: 1.65;
}

a {
	color: inherit;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}

.wdm-shell {
	width: min(1120px, calc(100% - 32px));
	margin: 0 auto;
}

.wdm-header {
	position: sticky;
	top: 0;
	z-index: 30;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid var(--wdm-border);
	backdrop-filter: blur(14px);
}

.wdm-header__inner {
	min-height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.wdm-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 800;
	font-size: 1.08rem;
	white-space: nowrap;
}

.wdm-brand__mark {
	width: 36px;
	height: 36px;
	display: inline-grid;
	place-items: center;
	border-radius: 50%;
	background: var(--wdm-primary);
	color: #fff;
	font-weight: 800;
}

.wdm-nav ul {
	display: flex;
	align-items: center;
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
	color: var(--wdm-muted);
	font-weight: 700;
}

.wdm-nav a:hover,
.wdm-link {
	color: var(--wdm-primary);
}

.wdm-menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--wdm-border);
	background: #fff;
	border-radius: 8px;
	font-size: 1.2rem;
}

.wdm-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 18px;
	border: 0;
	border-radius: 8px;
	font-weight: 800;
	cursor: pointer;
	transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

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

.wdm-button--primary {
	background: var(--wdm-primary);
	color: #fff;
	box-shadow: 0 10px 24px rgba(11, 75, 74, 0.18);
}

.wdm-button--primary:hover {
	background: var(--wdm-primary-strong);
}

.wdm-button--light {
	background: #fff;
	color: var(--wdm-primary);
}

.wdm-button--small {
	min-height: 36px;
	padding: 7px 12px;
	background: var(--wdm-primary);
	color: #fff;
	font-size: 0.9rem;
}

.wdm-button--whatsapp {
	background: #1f9d55;
	color: #fff;
}

.wdm-hero {
	position: relative;
	min-height: 660px;
	display: flex;
	align-items: center;
	overflow: hidden;
	color: #fff;
	background: #123332;
	isolation: isolate;
}

.wdm-hero__media {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(5, 39, 38, 0.92) 0%, rgba(5, 39, 38, 0.72) 38%, rgba(5, 39, 38, 0.18) 100%),
		linear-gradient(180deg, rgba(5, 39, 38, 0.08), rgba(5, 39, 38, 0.52)),
		url("../images/hero-wedding-date-marketplace.png");
	background-size: cover;
	background-position: center;
}

.wdm-hero__media::after {
	content: "";
	position: absolute;
	inset: auto 0 0 0;
	height: 34%;
	background: linear-gradient(180deg, rgba(251, 250, 247, 0), var(--wdm-bg));
	pointer-events: none;
}

.wdm-hero__content {
	position: relative;
	padding: 88px 0 120px;
	max-width: 1000px;
	z-index: 1;
}

.wdm-eyebrow {
	margin: 0 0 12px;
	color: var(--wdm-gold);
	font-weight: 900;
	font-size: 0.92rem;
}

.wdm-hero h1,
.wdm-page-head h1 {
	max-width: 760px;
	margin: 0 0 18px;
	font-size: clamp(2.4rem, 6vw, 4.8rem);
	line-height: 1.04;
}

.wdm-hero p,
.wdm-page-head p {
	max-width: 720px;
	font-size: 1.15rem;
}

.wdm-quick-search {
	margin-top: 34px;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
	padding: 12px;
	background: rgba(255, 255, 255, 0.94);
	border-radius: 8px;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
	color: var(--wdm-ink);
	backdrop-filter: blur(14px);
	border: 1px solid rgba(255, 255, 255, 0.52);
}

.wdm-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 22px;
}

.wdm-section {
	padding: 72px 0;
}

.wdm-section--soft {
	background: var(--wdm-soft);
}

.wdm-section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 24px;
}

.wdm-section h2,
.wdm-detail-block h2,
.wdm-summary-box h2,
.wdm-cta-box h2 {
	margin: 0 0 14px;
	font-size: 1.75rem;
	line-height: 1.2;
}

.wdm-value-grid,
.wdm-card-grid,
.wdm-cta-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.wdm-value-grid article,
.wdm-card,
.wdm-summary-box,
.wdm-cta-box,
.wdm-detail-block,
.wdm-benefits,
.wdm-form,
.wdm-empty {
	background: var(--wdm-surface);
	border: 1px solid var(--wdm-border);
	border-radius: var(--wdm-radius);
	box-shadow: 0 10px 28px rgba(23, 35, 35, 0.06);
}

.wdm-value-grid article {
	padding: 24px;
}

.wdm-card {
	overflow: hidden;
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.wdm-card.is-featured {
	border-color: rgba(197, 155, 70, 0.65);
}

.wdm-card__image {
	position: relative;
	min-height: 190px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--wdm-primary), var(--wdm-burgundy));
	background-size: cover;
	background-position: center;
	color: #fff;
	font-weight: 900;
}

.wdm-card__badges,
.wdm-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.wdm-card__badges {
	position: absolute;
	inset: 12px 12px auto 12px;
}

.wdm-card__badges span,
.wdm-tags span,
.wdm-chip-list li,
.wdm-status {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 4px 9px;
	border-radius: 999px;
	background: #eef6f5;
	color: var(--wdm-primary);
	font-size: 0.82rem;
	font-weight: 800;
}

.wdm-card__badges span {
	background: rgba(255, 255, 255, 0.92);
}

.wdm-card__badges .is-verified {
	color: #1f7a57;
}

.wdm-card__badges .is-featured {
	color: #8a651c;
}

.wdm-card__badges .is-urgent {
	color: var(--wdm-burgundy);
}

.wdm-card__body {
	padding: 18px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

.wdm-card__date {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 10px;
	color: var(--wdm-muted);
}

.wdm-card__date strong {
	color: var(--wdm-primary);
	font-size: 1.55rem;
}

.wdm-card h3 {
	margin: 0;
	font-size: 1.15rem;
	line-height: 1.35;
}

.wdm-card__facts {
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--wdm-muted);
}

.wdm-card__footer {
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.wdm-two-columns,
.wdm-single-grid,
.wdm-search-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 24px;
	align-items: start;
}

.wdm-search-layout {
	grid-template-columns: 300px minmax(0, 1fr);
}

.wdm-steps {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 12px;
	counter-reset: steps;
}

.wdm-steps li {
	position: relative;
	padding: 18px 58px 18px 18px;
	background: #fff;
	border: 1px solid var(--wdm-border);
	border-radius: 8px;
}

.wdm-steps li::before {
	counter-increment: steps;
	content: counter(steps);
	position: absolute;
	right: 16px;
	top: 18px;
	width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--wdm-primary);
	color: #fff;
	font-weight: 900;
}

.wdm-steps strong,
.wdm-steps span {
	display: block;
}

.wdm-steps span,
.wdm-seo-copy,
.wdm-benefits,
.wdm-content,
.wdm-disclaimer {
	color: var(--wdm-muted);
}

.wdm-cta-band {
	background: #153a39;
	color: #fff;
}

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

.wdm-cta-grid > div {
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
}

.wdm-page-head {
	padding: 72px 0;
	background: #123332;
	color: #fff;
}

.wdm-page-head .wdm-eyebrow {
	color: #dfc375;
}

.wdm-filters form {
	position: sticky;
	top: 96px;
	display: grid;
	gap: 12px;
	padding: 18px;
	background: #fff;
	border: 1px solid var(--wdm-border);
	border-radius: 8px;
	box-shadow: 0 10px 28px rgba(23, 35, 35, 0.06);
}

label span,
.wdm-field-title {
	display: block;
	margin-bottom: 5px;
	font-weight: 800;
	color: var(--wdm-ink);
}

label:has(input[required]) > span::after,
label:has(select[required]) > span::after,
label:has(textarea[required]) > span::after,
label:has([data-business-required]) > span::after {
	content: " *";
	color: var(--wdm-burgundy);
	font-weight: 900;
}

input,
select,
textarea {
	width: 100%;
	min-height: 44px;
	border: 1px solid var(--wdm-border);
	border-radius: 8px;
	background: #fff;
	color: var(--wdm-ink);
	padding: 9px 12px;
	font: inherit;
}

textarea {
	resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
	outline: 3px solid rgba(197, 155, 70, 0.45);
	outline-offset: 2px;
}

.wdm-check {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
}

.wdm-check input {
	width: 18px;
	height: 18px;
	min-height: auto;
}

[data-private-only][hidden] {
	display: none !important;
}

.wdm-check:has(input[required])::after,
.wdm-check:has([data-business-required])::after {
	content: " *";
	color: var(--wdm-burgundy);
	font-weight: 900;
}

.wdm-results__head {
	margin-bottom: 14px;
}

.wdm-empty {
	grid-column: 1 / -1;
	padding: 28px;
}

.wdm-pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 24px;
}

.wdm-pagination a {
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	border: 1px solid var(--wdm-border);
	border-radius: 8px;
	background: #fff;
}

.wdm-pagination .is-active {
	background: var(--wdm-primary);
	color: #fff;
}

.wdm-single-head .wdm-shell {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
}

.wdm-single-head__date {
	min-width: 190px;
	padding: 24px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	text-align: center;
}

.wdm-single-head__date strong {
	display: block;
	font-size: 2rem;
}

.wdm-single-grid {
	grid-template-columns: minmax(0, 1fr) 360px;
}

.wdm-gallery__main,
.wdm-gallery__placeholder {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--wdm-primary), var(--wdm-burgundy));
	color: #fff;
	display: grid;
	place-items: center;
	font-weight: 900;
	font-size: 1.5rem;
}

.wdm-gallery__thumbs {
	display: flex;
	gap: 10px;
	margin-top: 10px;
}

.wdm-gallery__thumbs img {
	width: 86px;
	height: 64px;
	object-fit: cover;
	border-radius: 8px;
}

.wdm-detail-block,
.wdm-summary-box,
.wdm-cta-box,
.wdm-benefits {
	padding: 24px;
	margin-top: 18px;
}

.wdm-summary-box dl {
	display: grid;
	grid-template-columns: 42% 58%;
	gap: 8px 14px;
	margin: 0;
}

.wdm-summary-box dt {
	color: var(--wdm-muted);
}

.wdm-summary-box dd {
	margin: 0;
	font-weight: 800;
}

.wdm-single-side {
	position: sticky;
	top: 96px;
}

.wdm-cta-box .wdm-button {
	width: 100%;
	margin-bottom: 10px;
}

.wdm-chip-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

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

.wdm-form--wide fieldset {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin: 0;
	padding: 20px;
	border: 1px solid var(--wdm-border);
	border-radius: 8px;
}

.wdm-form legend {
	padding: 0 8px;
	font-weight: 900;
	color: var(--wdm-primary);
}

.wdm-form__full,
.wdm-check-grid {
	grid-column: 1 / -1;
}

.wdm-check-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 10px;
}

.wdm-hp {
	position: absolute;
	inset-inline-start: -9999px;
}

.wdm-notice {
	margin: 16px auto 0;
	width: min(1120px, calc(100% - 32px));
	padding: 14px 18px;
	border: 1px solid rgba(31, 122, 87, 0.25);
	border-radius: 8px;
	background: #eaf7f1;
	color: #14533b;
	font-weight: 800;
}

.wdm-footer {
	padding: 42px 0;
	background: #101918;
	color: #d9e2df;
}

.wdm-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 40px;
}

.wdm-footer p {
	max-width: 760px;
	color: #aebbb7;
}

.wdm-footer nav {
	display: grid;
	gap: 8px;
}

.wdm-legal {
	max-width: 820px;
}

@media (max-width: 920px) {
	.wdm-header__cta,
	.wdm-nav {
		display: none;
	}

	.wdm-menu-toggle {
		display: inline-grid;
		place-items: center;
	}

	.wdm-header.is-open .wdm-nav {
		display: block;
		position: absolute;
		inset: 72px 0 auto 0;
		background: #fff;
		border-bottom: 1px solid var(--wdm-border);
		padding: 18px;
	}

	.wdm-header.is-open .wdm-nav ul {
		display: grid;
		gap: 12px;
	}

	.wdm-header.is-open .wdm-nav__auth {
		display: grid;
		gap: 10px;
		margin-top: 14px;
		padding-top: 14px;
		border-top: 1px solid var(--wdm-border);
	}

	.wdm-quick-search,
	.wdm-value-grid,
	.wdm-card-grid,
	.wdm-two-columns,
	.wdm-single-grid,
	.wdm-search-layout,
	.wdm-cta-grid,
	.wdm-form,
	.wdm-form--wide fieldset,
	.wdm-check-grid,
	.wdm-footer__grid {
		grid-template-columns: 1fr;
	}

	.wdm-hero {
		min-height: auto;
	}

	.wdm-hero__content,
	.wdm-section,
	.wdm-page-head {
		padding: 48px 0;
	}

	.wdm-single-head .wdm-shell {
		display: block;
	}

	.wdm-single-head__date,
	.wdm-single-side,
	.wdm-filters form {
		position: static;
	}

	body.single-wedding_date {
		padding-bottom: 74px;
	}

	.wdm-single .wdm-cta-box > .wdm-button--primary:first-of-type {
		position: fixed;
		left: 12px;
		right: 12px;
		bottom: 12px;
		z-index: 60;
		width: auto;
		box-shadow: 0 18px 36px rgba(7, 56, 55, 0.28);
	}

	.wdm-card-grid {
		gap: 14px;
	}
}

@media (max-width: 560px) {
	.wdm-shell {
		width: min(100% - 24px, 1120px);
	}

	.wdm-hero h1,
	.wdm-page-head h1 {
		font-size: 2.2rem;
	}

	.wdm-card__date {
		display: block;
	}

	.wdm-summary-box dl {
		grid-template-columns: 1fr;
	}
}

/* Premium redesign pass */
:root {
	--wdm-bg: #f7f3ea;
	--wdm-surface: #fffdf8;
	--wdm-ink: #101716;
	--wdm-muted: #62716d;
	--wdm-border: rgba(18, 35, 32, 0.14);
	--wdm-primary: #063f3b;
	--wdm-primary-strong: #022925;
	--wdm-gold: #d9ae59;
	--wdm-gold-strong: #b8882f;
	--wdm-burgundy: #6e1324;
	--wdm-blue: #1d7ea6;
	--wdm-soft: #f0e8d8;
	--wdm-shadow: 0 22px 70px rgba(9, 23, 21, 0.14);
	--wdm-radius: 8px;
}

html {
	scroll-behavior: smooth;
}

body {
	background:
		linear-gradient(90deg, rgba(6, 63, 59, 0.035) 1px, transparent 1px) 0 0 / 56px 56px,
		linear-gradient(180deg, #fbf7ee 0%, #f3ecdf 52%, #fbf7ee 100%);
	font-family: "Assistant", "Rubik", Arial, "Helvetica Neue", sans-serif;
	letter-spacing: 0;
}

.wdm-shell {
	width: min(1220px, calc(100% - 40px));
}

.wdm-header {
	background: rgba(7, 16, 15, 0.82);
	border-bottom: 1px solid rgba(217, 174, 89, 0.28);
	color: #fffaf0;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

.wdm-header::after {
	content: "";
	position: absolute;
	inset-inline: 0;
	bottom: -1px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(217, 174, 89, 0.8), transparent);
}

.wdm-brand {
	font-size: 1.16rem;
	color: #fff;
}

.wdm-brand__mark {
	width: 42px;
	height: 42px;
	border-radius: 8px;
	background: transparent;
	border: 1px solid rgba(217, 174, 89, 0.75);
	color: var(--wdm-gold);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 12px 30px rgba(217, 174, 89, 0.2);
}

.wdm-nav ul {
	gap: clamp(12px, 2vw, 28px);
	color: rgba(255, 250, 240, 0.74);
}

.wdm-nav a {
	position: relative;
	padding-block: 24px;
}

.wdm-nav a::after {
	content: "";
	position: absolute;
	inset: auto 0 14px 0;
	height: 2px;
	background: var(--wdm-gold);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.2s ease;
}

.wdm-nav a:hover {
	color: #fff;
}

.wdm-nav a:hover::after {
	transform: scaleX(1);
}

.wdm-header__actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.wdm-nav__auth {
	display: none;
}

.wdm-nav__auth a {
	color: inherit;
	font-weight: 900;
}

.wdm-header__hello {
	color: rgba(255, 250, 240, 0.76);
	font-weight: 800;
	white-space: nowrap;
}

.wdm-button {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	font-size: 0.98rem;
	letter-spacing: 0;
}

.wdm-button::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.24) 46%, transparent 58%);
	transform: translateX(120%);
	transition: transform 0.55s ease;
	pointer-events: none;
}

.wdm-button:hover::before {
	transform: translateX(-120%);
}

.wdm-button--primary {
	background: linear-gradient(135deg, #084b46, #021f1d);
	border: 1px solid rgba(217, 174, 89, 0.24);
	box-shadow: 0 14px 34px rgba(6, 63, 59, 0.26);
}

.wdm-button--light {
	background: rgba(255, 253, 248, 0.95);
	border: 1px solid rgba(217, 174, 89, 0.55);
	color: var(--wdm-primary);
	box-shadow: 0 12px 28px rgba(9, 23, 21, 0.08);
}

.wdm-hero {
	min-height: min(820px, calc(100vh - 40px));
	align-items: center;
	background: #07100f;
}

.wdm-hero__media {
	background:
		linear-gradient(180deg, rgba(2, 11, 10, 0.72), rgba(2, 11, 10, 0.18) 42%, rgba(2, 11, 10, 0.84)),
		linear-gradient(90deg, rgba(2, 11, 10, 0.84), rgba(2, 11, 10, 0.42) 48%, rgba(2, 11, 10, 0.78)),
		url("../images/hero-wedding-date-marketplace.png");
	background-size: cover;
	background-position: center;
}

.wdm-hero__media::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(217, 174, 89, 0.16) 1px, transparent 1px) 0 0 / 92px 100%,
		linear-gradient(180deg, transparent 0%, rgba(217, 174, 89, 0.1) 50%, transparent 100%);
	mix-blend-mode: screen;
	opacity: 0.42;
}

.wdm-hero__content {
	text-align: center;
	padding: 92px 0 130px;
}

.wdm-eyebrow {
	color: var(--wdm-gold);
	font-size: 0.9rem;
	letter-spacing: 0;
}

.wdm-hero .wdm-eyebrow {
	display: inline-flex;
	padding: 8px 14px;
	border: 1px solid rgba(217, 174, 89, 0.58);
	border-radius: 8px;
	background: rgba(4, 28, 26, 0.58);
	backdrop-filter: blur(10px);
}

.wdm-hero h1,
.wdm-page-head h1 {
	margin-inline: auto;
	font-weight: 900;
	line-height: 1.02;
	text-wrap: balance;
}

.wdm-hero h1 {
	max-width: 920px;
	font-size: clamp(2.75rem, 6vw, 6.4rem);
	text-shadow: 0 16px 50px rgba(0, 0, 0, 0.52);
}

.wdm-hero p {
	margin-inline: auto;
	color: rgba(255, 250, 240, 0.88);
	font-size: clamp(1.05rem, 1.8vw, 1.35rem);
}

.wdm-quick-search {
	max-width: 1060px;
	margin: 38px auto 0;
	grid-template-columns: 1.15fr 1fr 1fr 1fr auto;
	gap: 0;
	padding: 10px;
	border: 1px solid rgba(217, 174, 89, 0.45);
	background: rgba(255, 253, 248, 0.92);
	box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36), inset 0 0 0 1px rgba(255, 255, 255, 0.52);
}

.wdm-quick-search label {
	padding: 4px 12px;
	border-inline-start: 1px solid rgba(18, 35, 32, 0.12);
}

.wdm-quick-search label:first-child {
	border-inline-start: 0;
}

.wdm-quick-search input,
.wdm-quick-search select {
	border: 0;
	background: transparent;
	box-shadow: none;
}

.wdm-hero__actions {
	justify-content: center;
}

.wdm-section {
	padding: 88px 0;
}

.wdm-section--soft {
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(240, 232, 216, 0.86)),
		linear-gradient(90deg, rgba(110, 19, 36, 0.05), transparent 40%, rgba(6, 63, 59, 0.06));
}

.wdm-section-head {
	margin-bottom: 30px;
}

.wdm-section-head--center {
	align-items: center;
}

.wdm-section h2,
.wdm-detail-block h2,
.wdm-summary-box h2,
.wdm-cta-box h2 {
	font-size: clamp(1.6rem, 2.7vw, 2.55rem);
	font-weight: 900;
	letter-spacing: 0;
	text-wrap: balance;
}

.wdm-value-grid article,
.wdm-card,
.wdm-summary-box,
.wdm-cta-box,
.wdm-detail-block,
.wdm-benefits,
.wdm-form,
.wdm-empty,
.wdm-filters form,
.wdm-auth-panel,
.wdm-auth-gate {
	border: 1px solid rgba(18, 35, 32, 0.12);
	border-radius: 8px;
	background: rgba(255, 253, 248, 0.92);
	box-shadow: var(--wdm-shadow);
}

.wdm-value-grid article {
	position: relative;
	overflow: hidden;
}

.wdm-value-grid article::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 3px;
	background: linear-gradient(90deg, var(--wdm-gold), var(--wdm-primary), var(--wdm-burgundy));
}

.wdm-market-lanes {
	background:
		linear-gradient(180deg, #081211 0%, #0d1d1b 100%);
	color: #fffaf0;
}

.wdm-market-lanes .wdm-link {
	color: var(--wdm-gold);
}

.wdm-lane-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.wdm-lane {
	position: relative;
	display: grid;
	gap: 18px;
	align-content: start;
	padding: 28px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 8px;
	overflow: hidden;
	min-height: 100%;
}

.wdm-lane::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 36%),
		linear-gradient(90deg, rgba(217, 174, 89, 0.16) 1px, transparent 1px) 0 0 / 78px 100%;
	pointer-events: none;
}

.wdm-lane--couple {
	background: linear-gradient(135deg, rgba(5, 58, 54, 0.92), rgba(4, 31, 29, 0.94));
}

.wdm-lane--venue {
	background: linear-gradient(135deg, rgba(91, 15, 30, 0.94), rgba(27, 8, 13, 0.96));
}

.wdm-lane > * {
	position: relative;
	z-index: 1;
}

.wdm-lane__head {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr);
	gap: 16px;
	align-items: start;
}

.wdm-lane__icon {
	width: 56px;
	height: 56px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(217, 174, 89, 0.72);
	border-radius: 8px;
	color: var(--wdm-gold);
	font-size: 1.85rem;
	font-weight: 900;
}

.wdm-lane h3 {
	margin: 0 0 8px;
	font-size: clamp(1.6rem, 2.5vw, 2.25rem);
	line-height: 1.08;
}

.wdm-lane p {
	margin: 0;
	color: rgba(255, 250, 240, 0.78);
}

.wdm-event-strip,
.wdm-event-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.wdm-event-strip span,
.wdm-event-chips span {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 4px 9px;
	border-radius: 8px;
	font-size: 0.82rem;
	font-weight: 900;
}

.wdm-event-strip span {
	border: 1px solid rgba(217, 174, 89, 0.42);
	color: #ffe0a4;
	background: rgba(255, 255, 255, 0.06);
}

.wdm-event-chips span {
	background: rgba(217, 174, 89, 0.14);
	color: #725016;
}

.wdm-lane__cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.wdm-lane .wdm-card {
	background: rgba(255, 253, 248, 0.96);
	color: var(--wdm-ink);
	box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.wdm-card {
	transform: translateY(0);
	transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.wdm-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 26px 76px rgba(9, 23, 21, 0.18);
}

.wdm-card__image {
	min-height: 210px;
	background:
		linear-gradient(145deg, rgba(6, 63, 59, 0.94), rgba(10, 19, 18, 0.86)),
		linear-gradient(90deg, rgba(217, 174, 89, 0.18) 1px, transparent 1px) 0 0 / 56px 100%;
}

.wdm-card--venue .wdm-card__image {
	background:
		linear-gradient(145deg, rgba(110, 19, 36, 0.94), rgba(20, 8, 12, 0.88)),
		linear-gradient(90deg, rgba(217, 174, 89, 0.2) 1px, transparent 1px) 0 0 / 56px 100%;
}

.wdm-card__badges {
	gap: 7px;
}

.wdm-card__badges span,
.wdm-tags span,
.wdm-chip-list li,
.wdm-status {
	border-radius: 8px;
	background: rgba(255, 253, 248, 0.94);
	color: var(--wdm-primary);
	border: 1px solid rgba(6, 63, 59, 0.12);
}

.wdm-card__date strong {
	color: var(--wdm-primary);
	font-size: 1.72rem;
	letter-spacing: 0;
}

.wdm-card h3 {
	font-size: 1.22rem;
	font-weight: 900;
}

.wdm-card__facts {
	font-size: 0.95rem;
}

.wdm-ai-section {
	position: relative;
	background:
		linear-gradient(135deg, #061113, #062d37 48%, #071013),
		linear-gradient(90deg, rgba(29, 126, 166, 0.18) 1px, transparent 1px) 0 0 / 64px 100%;
	color: #eefbff;
	overflow: hidden;
}

.wdm-ai-section::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, transparent 0 34%, rgba(29, 126, 166, 0.2) 34% 35%, transparent 35% 100%),
		linear-gradient(120deg, rgba(217, 174, 89, 0.15), transparent 42%);
	opacity: 0.85;
	pointer-events: none;
}

.wdm-ai-grid {
	position: relative;
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	gap: 32px;
	align-items: center;
}

.wdm-ai-copy h2 {
	color: #fff;
}

.wdm-ai-copy p:not(.wdm-eyebrow) {
	color: rgba(238, 251, 255, 0.78);
	font-size: 1.08rem;
}

.wdm-ai-form {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	padding: 22px;
	border: 1px solid rgba(122, 212, 239, 0.26);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(14px);
	box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
}

.wdm-ai-form label span {
	color: rgba(238, 251, 255, 0.9);
}

.wdm-ai-form input,
.wdm-ai-form select {
	border-color: rgba(122, 212, 239, 0.26);
	background: rgba(255, 255, 255, 0.92);
}

.wdm-ai-form .wdm-button,
.wdm-ai-result {
	grid-column: 1 / -1;
}

.wdm-ai-result {
	min-height: 56px;
	padding: 14px 16px;
	border: 1px solid rgba(217, 174, 89, 0.34);
	border-radius: 8px;
	background: rgba(2, 13, 16, 0.58);
	color: #fff3d7;
	font-weight: 800;
}

.wdm-card.is-ai-match {
	border-color: var(--wdm-blue);
	box-shadow: 0 0 0 3px rgba(29, 126, 166, 0.18), 0 28px 86px rgba(29, 126, 166, 0.22);
}

.wdm-card.is-ai-runner {
	border-color: rgba(217, 174, 89, 0.62);
}

.wdm-ai-score {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 28px;
	padding: 4px 10px;
	border-radius: 8px;
	background: #083d52;
	color: #d8f6ff;
	font-size: 0.82rem;
	font-weight: 900;
}

.wdm-page-head {
	background:
		linear-gradient(135deg, rgba(4, 25, 23, 0.96), rgba(8, 54, 50, 0.9)),
		linear-gradient(90deg, rgba(217, 174, 89, 0.12) 1px, transparent 1px) 0 0 / 80px 100%;
	border-bottom: 1px solid rgba(217, 174, 89, 0.24);
}

.wdm-search-layout {
	grid-template-columns: 330px minmax(0, 1fr);
}

.wdm-filters form {
	padding: 22px;
}

input,
select,
textarea {
	border-color: rgba(18, 35, 32, 0.16);
	background: rgba(255, 253, 248, 0.98);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

input:hover,
select:hover,
textarea:hover {
	border-color: rgba(6, 63, 59, 0.34);
}

.wdm-check {
	align-items: flex-start;
	line-height: 1.45;
}

.wdm-check a {
	color: var(--wdm-primary);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.wdm-auth-layout {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
	align-items: start;
}

.wdm-auth-layout--single {
	grid-template-columns: minmax(0, 760px);
	justify-content: center;
}

.wdm-auth-panel {
	padding: 26px;
}

.wdm-auth-panel.is-active {
	border-color: rgba(217, 174, 89, 0.7);
}

.wdm-auth-form {
	box-shadow: none;
	padding: 0;
	border: 0;
	background: transparent;
}

.wdm-auth-switch {
	margin: 18px 0 0;
	text-align: center;
	font-weight: 800;
}

.wdm-auth-switch a {
	color: var(--wdm-primary);
	text-decoration: underline;
	text-underline-offset: 4px;
}

.wdm-business-fields {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 4px 0 8px;
	padding: 18px;
	border: 1px solid rgba(11, 75, 74, 0.18);
	border-radius: 8px;
	background: rgba(241, 238, 231, 0.64);
}

.wdm-business-fields[hidden] {
	display: none;
}

.wdm-business-fields legend {
	padding: 0 8px;
	font-weight: 900;
	color: var(--wdm-primary);
}

.wdm-business-fields .wdm-form__full {
	grid-column: 1 / -1;
}

.wdm-auth-gate {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 20px;
	align-items: center;
	padding: 28px;
	background:
		linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(244, 235, 216, 0.92)),
		linear-gradient(90deg, rgba(217, 174, 89, 0.18) 1px, transparent 1px) 0 0 / 70px 100%;
}

.wdm-auth-gate h2,
.wdm-auth-gate p {
	margin: 0;
}

.wdm-auth-gate p {
	color: var(--wdm-muted);
}

.wdm-auth-gate__actions {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.wdm-contact-reveal {
	display: grid;
	gap: 4px;
	padding: 14px 16px;
	margin-bottom: 10px;
	border: 1px solid rgba(31, 157, 85, 0.28);
	border-radius: 8px;
	background: #eaf8f0;
	color: #14533b;
}

.wdm-contact-reveal span {
	font-weight: 800;
}

.wdm-contact-reveal strong {
	font-size: 1.45rem;
	letter-spacing: 0;
}

.wdm-form--wide fieldset {
	background: rgba(255, 255, 255, 0.38);
}

.wdm-cta-band {
	background:
		linear-gradient(135deg, #071312, #0b3b37 50%, #2b1018);
}

.wdm-cta-grid > div {
	background: rgba(255, 255, 255, 0.05);
}

.wdm-footer {
	background: #070d0c;
	border-top: 1px solid rgba(217, 174, 89, 0.18);
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

@media (max-width: 1080px) {
	.wdm-nav ul {
		gap: 12px;
		font-size: 0.92rem;
	}

	.wdm-header__hello,
	.wdm-header__login {
		display: none;
	}

	.wdm-lane__cards {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 920px) {
	.wdm-shell {
		width: min(100% - 28px, 1220px);
	}

	.wdm-header__actions {
		display: none;
	}

	.wdm-header.is-open .wdm-nav {
		background: rgba(7, 16, 15, 0.98);
		color: #fff;
	}

	.wdm-header.is-open .wdm-nav__auth {
		border-top-color: rgba(217, 174, 89, 0.25);
	}

	.wdm-nav a {
		padding-block: 8px;
	}

	.wdm-menu-toggle {
		color: #fffaf0;
		background: rgba(255, 255, 255, 0.08);
		border-color: rgba(217, 174, 89, 0.45);
	}

	.wdm-hero__content {
		padding: 62px 0 72px;
		text-align: right;
	}

	.wdm-hero h1,
	.wdm-hero p {
		margin-inline: 0;
	}

	.wdm-hero__actions {
		justify-content: flex-start;
	}

	.wdm-quick-search {
		grid-template-columns: 1fr;
		gap: 10px;
	}

	.wdm-quick-search label {
		border-inline-start: 0;
		border-bottom: 1px solid rgba(18, 35, 32, 0.1);
	}

	.wdm-lane-grid,
	.wdm-ai-grid,
	.wdm-business-fields,
	.wdm-auth-layout {
		grid-template-columns: 1fr;
	}

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

	.wdm-search-layout {
		grid-template-columns: 1fr;
	}

	.wdm-auth-gate {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.wdm-shell {
		width: min(100% - 22px, 1220px);
	}

	.wdm-section {
		padding: 56px 0;
	}

	.wdm-hero h1,
	.wdm-page-head h1 {
		font-size: 2.28rem;
	}

	.wdm-lane,
	.wdm-auth-panel,
	.wdm-auth-gate {
		padding: 18px;
	}

	.wdm-lane__head {
		grid-template-columns: 46px minmax(0, 1fr);
	}

	.wdm-lane__icon {
		width: 46px;
		height: 46px;
		font-size: 1.4rem;
	}

	.wdm-form {
		padding: 18px;
	}

	.wdm-auth-gate__actions,
	.wdm-hero__actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.wdm-button {
		width: 100%;
	}
}

/* Final polish after rendered QA */
body {
	font-family: "Heebo", "Segoe UI", Arial, "Helvetica Neue", sans-serif;
	font-weight: 400;
}

.wdm-hero h1,
.wdm-page-head h1,
.wdm-section h2,
.wdm-lane h3 {
	font-weight: 800;
}

.wdm-hero h1 {
	font-size: clamp(2.55rem, 5.4vw, 5.6rem);
	letter-spacing: 0;
}

.wdm-card h3 {
	font-weight: 800;
}

.wdm-lane .wdm-card__image {
	min-height: 128px;
}

.wdm-lane .wdm-card__body {
	padding: 15px;
	gap: 9px;
}

.wdm-lane .wdm-card__date strong {
	font-size: 1.45rem;
}

.wdm-lane .wdm-card__facts {
	line-height: 1.48;
}

.wdm-lane .wdm-card__facts li:nth-child(n+5) {
	display: none;
}

.wdm-quick-search .wdm-button {
	min-width: 130px;
}

@media (max-width: 920px) {
	.wdm-hero h1 {
		font-size: 2.55rem;
	}
}

@media (max-width: 560px) {
	.wdm-hero h1,
	.wdm-page-head h1 {
		font-size: 2.05rem;
		line-height: 1.12;
	}

	.wdm-hero .wdm-eyebrow {
		font-size: 0.78rem;
	}

	.wdm-quick-search {
		margin-top: 28px;
	}
}

/* Conversion-led redesign: marketplace first, story second */
.wdm-header {
	background: rgba(255, 253, 248, 0.9);
	color: var(--wdm-ink);
	border-bottom: 1px solid rgba(6, 63, 59, 0.12);
	box-shadow: 0 10px 34px rgba(9, 23, 21, 0.08);
}

.wdm-header::after {
	background: linear-gradient(90deg, transparent, rgba(217, 174, 89, 0.58), transparent);
}

.wdm-brand {
	color: var(--wdm-primary);
}

.wdm-nav ul {
	color: #4c5a56;
}

.wdm-nav a:hover {
	color: var(--wdm-primary);
}

.wdm-header__hello {
	color: #66736f;
}

.wdm-hero--dealdesk {
	min-height: auto;
	color: var(--wdm-ink);
	background:
		linear-gradient(135deg, #fbf7ee 0%, #f3ecdf 100%);
	border-bottom: 1px solid rgba(6, 63, 59, 0.08);
}

.wdm-hero--dealdesk .wdm-hero__media {
	background:
		linear-gradient(90deg, rgba(251, 247, 238, 0.98) 0%, rgba(251, 247, 238, 0.82) 52%, rgba(251, 247, 238, 0.34) 100%),
		url("../images/hero-wedding-date-marketplace.png");
	background-size: cover;
	background-position: center;
}

.wdm-hero--dealdesk .wdm-hero__media::before {
	background:
		linear-gradient(90deg, rgba(6, 63, 59, 0.06) 1px, transparent 1px) 0 0 / 74px 100%;
	opacity: 0.55;
	mix-blend-mode: normal;
}

.wdm-hero--dealdesk .wdm-hero__media::after {
	height: 20%;
	background: linear-gradient(180deg, rgba(247, 243, 234, 0), #f7f3ea);
}

.wdm-hero--dealdesk .wdm-hero__content {
	text-align: right;
	padding: 58px 0 46px;
	display: grid;
	grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
	gap: 32px;
	align-items: end;
}

.wdm-hero--dealdesk h1 {
	grid-column: 1;
	margin: 0;
	max-width: 640px;
	color: #10201d;
	text-shadow: none;
	font-size: clamp(2.8rem, 4.7vw, 5rem);
	line-height: 0.96;
}

.wdm-hero--dealdesk p {
	grid-column: 1;
	margin: 16px 0 0;
	max-width: 560px;
	color: #4f5f5a;
	font-size: 1.16rem;
}

.wdm-hero--dealdesk .wdm-quick-search {
	grid-column: 2;
	grid-row: 1 / span 3;
	margin: 0;
	max-width: none;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
	padding: 16px;
	background: rgba(255, 253, 248, 0.96);
	border: 1px solid rgba(6, 63, 59, 0.16);
	box-shadow: 0 26px 70px rgba(17, 33, 30, 0.16);
}

.wdm-source-tabs {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	padding: 5px;
	border: 1px solid rgba(6, 63, 59, 0.12);
	border-radius: 8px;
	background: #f1eadc;
}

.wdm-source-tabs button {
	min-height: 42px;
	border: 0;
	border-radius: 8px;
	background: transparent;
	color: #51605c;
	font: inherit;
	font-weight: 900;
	cursor: pointer;
}

.wdm-source-tabs button.is-active {
	background: var(--wdm-primary);
	color: #fff;
	box-shadow: 0 10px 24px rgba(6, 63, 59, 0.18);
}

.wdm-hero--dealdesk .wdm-quick-search label {
	border: 1px solid rgba(6, 63, 59, 0.1);
	border-radius: 8px;
	padding: 8px 10px;
	background: #fff;
}

.wdm-hero--dealdesk .wdm-quick-search input,
.wdm-hero--dealdesk .wdm-quick-search select {
	min-height: 34px;
	padding: 0;
}

.wdm-hero--dealdesk .wdm-quick-search .wdm-button {
	min-height: 58px;
	align-self: stretch;
}

.wdm-hero--dealdesk .wdm-quick-search .wdm-button--primary {
	grid-column: span 3;
}

.wdm-hero--dealdesk .wdm-quick-search .wdm-button--light {
	grid-column: span 2;
}

.wdm-trust-row {
	grid-column: 1 / -1;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 14px;
	color: #65736f;
	font-weight: 800;
	font-size: 0.9rem;
}

.wdm-trust-row span::before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-inline-end: 7px;
	border-radius: 50%;
	background: var(--wdm-gold);
}

.wdm-hot-section {
	position: relative;
	z-index: 3;
	padding: 24px 0 56px;
	background: #f7f3ea;
}

.wdm-hot-section .wdm-section-head h2 {
	font-size: clamp(1.7rem, 2.6vw, 2.45rem);
}

.wdm-hot-strip {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.wdm-hot-strip .wdm-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.wdm-hot-strip .wdm-card__image {
	min-height: 94px;
	height: auto;
}

.wdm-hot-strip .wdm-card__badges {
	display: none;
}

.wdm-hot-strip .wdm-card__badges span:nth-child(n+3) {
	display: none;
}

.wdm-hot-strip .wdm-card__body {
	padding: 14px;
	gap: 8px;
}

.wdm-hot-strip .wdm-card__date strong {
	font-size: 1.32rem;
}

.wdm-hot-strip .wdm-card h3 {
	font-size: 1.02rem;
}

.wdm-hot-strip .wdm-card__facts li:nth-child(n+4),
.wdm-hot-strip .wdm-event-chips span:nth-child(n+4) {
	display: none;
}

.wdm-value-section {
	padding: 34px 0 60px;
}

.wdm-value-grid article {
	box-shadow: 0 14px 34px rgba(9, 23, 21, 0.08);
}

.wdm-deal-board {
	background: #071310;
}

.wdm-deal-board .wdm-section-head {
	max-width: 980px;
	margin-inline: auto;
	text-align: center;
	justify-content: center;
}

.wdm-deal-board__layout {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
}

.wdm-source-rail {
	position: sticky;
	top: 92px;
	display: grid;
	gap: 8px;
	padding: 12px;
	border: 1px solid rgba(217, 174, 89, 0.24);
	border-radius: 8px;
	background: rgba(255, 253, 248, 0.06);
}

.wdm-source-rail a {
	display: flex;
	align-items: center;
	min-height: 44px;
	padding: 9px 12px;
	border-radius: 8px;
	color: rgba(255, 250, 240, 0.78);
	font-weight: 900;
}

.wdm-source-rail a.is-active,
.wdm-source-rail a:hover {
	background: #fffdf8;
	color: var(--wdm-primary);
}

.wdm-deal-board .wdm-lane-grid {
	grid-template-columns: 1fr;
	gap: 16px;
}

.wdm-deal-board .wdm-lane {
	padding: 20px;
	background: rgba(255, 253, 248, 0.96);
	color: var(--wdm-ink);
	border-color: rgba(255, 255, 255, 0.14);
}

.wdm-deal-board .wdm-lane--couple {
	border-inline-start: 6px solid #0b5a52;
}

.wdm-deal-board .wdm-lane--venue {
	border-inline-start: 6px solid #8d3145;
}

.wdm-deal-board .wdm-lane::before {
	background:
		linear-gradient(90deg, rgba(6, 63, 59, 0.055) 1px, transparent 1px) 0 0 / 70px 100%;
}

.wdm-deal-board .wdm-lane__head {
	grid-template-columns: 48px minmax(0, 1fr);
}

.wdm-deal-board .wdm-lane__icon {
	width: 48px;
	height: 48px;
	background: #f3ead8;
}

.wdm-deal-board .wdm-lane h3 {
	font-size: 1.55rem;
	color: #101716;
}

.wdm-deal-board .wdm-lane p {
	color: #64736f;
}

.wdm-deal-board .wdm-lane__cards {
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.wdm-deal-board .wdm-lane .wdm-card {
	box-shadow: 0 12px 26px rgba(9, 23, 21, 0.08);
}

.wdm-deal-board .wdm-lane .wdm-card__image {
	min-height: 96px;
}

.wdm-deal-board .wdm-lane .wdm-card__date strong {
	font-size: 1.22rem;
}

.wdm-deal-board .wdm-lane .wdm-card h3 {
	font-size: 0.98rem;
}

.wdm-deal-board .wdm-lane .wdm-card__facts,
.wdm-deal-board .wdm-lane .wdm-card__date span {
	font-size: 0.82rem;
}

.wdm-deal-board .wdm-lane .wdm-event-chips span:nth-child(n+4) {
	display: none;
}

.wdm-deal-board .wdm-lane > .wdm-button {
	width: auto;
	justify-self: start;
}

.wdm-ai-section {
	background:
		linear-gradient(135deg, #0a1718, #073944 52%, #0b1112);
}

@media (max-width: 1180px) {
	.wdm-hero--dealdesk .wdm-hero__content {
		grid-template-columns: 1fr;
	}

	.wdm-hero--dealdesk .wdm-quick-search {
		grid-column: 1;
		grid-row: auto;
	}

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

	.wdm-deal-board .wdm-lane__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 920px) {
	.wdm-header {
		background: rgba(255, 253, 248, 0.96);
	}

	.wdm-header.is-open .wdm-nav {
		background: rgba(255, 253, 248, 0.98);
		color: var(--wdm-ink);
	}

	.wdm-menu-toggle {
		color: var(--wdm-primary);
		background: #fff;
	}

	.wdm-hero--dealdesk .wdm-hero__content {
		padding: 42px 0 34px;
	}

	.wdm-hero--dealdesk h1 {
		font-size: 2.55rem;
		line-height: 1.04;
	}

	.wdm-hero--dealdesk .wdm-quick-search {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.wdm-source-tabs {
		grid-column: 1 / -1 !important;
		width: 100%;
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.wdm-source-tabs button {
		min-height: 42px;
		padding-inline: 6px;
		font-size: 0.82rem;
	}

	.wdm-hero--dealdesk .wdm-quick-search .wdm-button--primary,
	.wdm-hero--dealdesk .wdm-quick-search .wdm-button--light,
	.wdm-trust-row {
		grid-column: 1 / -1;
	}

	.wdm-deal-board__layout {
		grid-template-columns: 1fr;
	}

	.wdm-source-rail {
		position: static;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.wdm-hero--dealdesk h1 {
		font-size: 2.15rem;
	}

	.wdm-hero--dealdesk p {
		font-size: 1rem;
	}

	.wdm-hot-strip,
	.wdm-deal-board .wdm-lane__cards {
		grid-template-columns: 1fr;
	}

	.wdm-hot-strip .wdm-card {
		display: grid;
		grid-template-columns: 92px minmax(0, 1fr);
	}

	.wdm-source-rail {
		grid-template-columns: 1fr;
	}
}

/* Clean sales homepage and real portal separation */
.wdm-header__hello {
	display: none;
}

.wdm-home-story {
	background: #fbfaf6;
	color: #12201d;
}

.wdm-story-hero {
	padding: clamp(58px, 8vw, 112px) 0;
	background:
		linear-gradient(90deg, #fbfaf6 0%, rgba(251, 250, 246, 0.94) 48%, rgba(251, 250, 246, 0.52) 100%),
		url("../images/hero-wedding-date-marketplace.png");
	background-size: cover;
	background-position: center;
	border-bottom: 1px solid rgba(18, 32, 29, 0.08);
}

.wdm-story-hero__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
	gap: clamp(32px, 6vw, 92px);
	align-items: center;
}

.wdm-story-hero__copy {
	max-width: 720px;
}

.wdm-story-hero h1 {
	margin: 0;
	font-size: clamp(2.7rem, 5.6vw, 5.8rem);
	line-height: 0.98;
	font-weight: 800;
	letter-spacing: 0;
	text-wrap: balance;
}

.wdm-story-hero p {
	max-width: 590px;
	margin: 22px 0 0;
	color: #53625e;
	font-size: clamp(1.08rem, 1.55vw, 1.28rem);
	line-height: 1.75;
}

.wdm-story-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.wdm-story-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 22px;
	margin: 24px 0 0;
	padding: 0;
	list-style: none;
	color: #687772;
	font-weight: 700;
}

.wdm-story-trust li::before {
	content: "";
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-inline-end: 8px;
	border-radius: 50%;
	background: var(--wdm-gold);
}

.wdm-story-hero__image {
	aspect-ratio: 4 / 5;
	border-radius: 8px;
	background:
		linear-gradient(180deg, rgba(6, 63, 59, 0), rgba(6, 63, 59, 0.32)),
		url("../images/hero-wedding-date-marketplace.png");
	background-size: cover;
	background-position: center;
	box-shadow: 0 28px 80px rgba(9, 23, 21, 0.14);
	border: 1px solid rgba(217, 174, 89, 0.28);
}

.wdm-story-section {
	padding: clamp(58px, 7vw, 96px) 0;
}

.wdm-story-section + .wdm-story-section {
	border-top: 1px solid rgba(18, 32, 29, 0.08);
}

.wdm-story-head {
	max-width: 760px;
	margin-bottom: 30px;
}

.wdm-story-head h2,
.wdm-story-cta h2 {
	margin: 0;
	font-size: clamp(2rem, 3.4vw, 3.8rem);
	line-height: 1.05;
	font-weight: 800;
	text-wrap: balance;
}

.wdm-story-head p,
.wdm-story-cta p {
	margin: 14px 0 0;
	color: #65736f;
	font-size: 1.08rem;
}

.wdm-story-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.wdm-story-steps li {
	padding: 22px;
	border-radius: 8px;
	background: #fff;
	border: 1px solid rgba(18, 32, 29, 0.11);
	box-shadow: 0 16px 36px rgba(9, 23, 21, 0.06);
}

.wdm-story-steps span {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	margin-bottom: 18px;
	border-radius: 50%;
	background: #073f3a;
	color: #fff;
	font-weight: 900;
}

.wdm-story-steps strong {
	display: block;
	font-size: 1.2rem;
}

.wdm-story-steps p {
	margin: 8px 0 0;
	color: #687772;
}

.wdm-story-sources {
	background: #f3ede0;
}

.wdm-source-story {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.wdm-source-story a {
	display: grid;
	gap: 12px;
	padding: 26px;
	border-radius: 8px;
	background: #fffdf8;
	border: 1px solid rgba(18, 32, 29, 0.11);
	box-shadow: 0 18px 42px rgba(9, 23, 21, 0.07);
}

.wdm-source-story span {
	color: var(--wdm-gold-strong);
	font-weight: 900;
}

.wdm-source-story strong {
	max-width: 620px;
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	line-height: 1.32;
}

.wdm-source-story em {
	color: var(--wdm-primary);
	font-style: normal;
	font-weight: 900;
}

.wdm-story-cta {
	text-align: center;
	background: #081512;
	color: #fff;
}

.wdm-story-cta .wdm-shell {
	max-width: 820px;
}

.wdm-story-cta p {
	color: rgba(255, 255, 255, 0.72);
}

.wdm-story-cta .wdm-story-hero__actions {
	justify-content: center;
}

.wdm-archive .wdm-page-head {
	padding: 58px 0 36px;
	background: #fbfaf6;
	color: #12201d;
	border-bottom: 1px solid rgba(18, 32, 29, 0.08);
}

.wdm-archive .wdm-page-head .wdm-eyebrow {
	color: var(--wdm-gold-strong);
}

.wdm-archive .wdm-page-head h1 {
	max-width: 860px;
	margin-inline: 0;
	font-size: clamp(2.2rem, 4.4vw, 4.6rem);
}

.wdm-archive .wdm-page-head p {
	max-width: 720px;
	color: #65736f;
}

.wdm-search-layout {
	display: block;
}

.wdm-filters {
	margin-bottom: 26px;
}

.wdm-filters form {
	position: static;
	display: grid;
	grid-template-columns: minmax(260px, 1.6fr) repeat(4, minmax(140px, 1fr));
	gap: 12px;
	padding: 18px;
	background: #fff;
	border-radius: 8px;
}

.wdm-filters h2 {
	grid-column: 1 / -1;
	margin: 0;
	font-size: 1.25rem;
}

.wdm-filters .wdm-form__full {
	grid-column: auto;
}

.wdm-filters .wdm-check {
	align-self: center;
}

.wdm-filters .wdm-button {
	min-height: 50px;
}

.wdm-results__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: 4px 18px;
}

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

@media (max-width: 1100px) {
	.wdm-story-steps,
	.wdm-results .wdm-card-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

@media (max-width: 820px) {
	.wdm-story-hero__grid,
	.wdm-source-story {
		grid-template-columns: 1fr;
	}

	.wdm-story-hero__image {
		display: none;
	}

	.wdm-story-hero {
		background:
			linear-gradient(180deg, rgba(251, 250, 246, 0.96), rgba(251, 250, 246, 0.9)),
			url("../images/hero-wedding-date-marketplace.png");
		background-size: cover;
		background-position: center;
	}
}

@media (max-width: 640px) {
	.wdm-story-hero {
		padding: 48px 0;
	}

	.wdm-story-hero h1 {
		font-size: 2.35rem;
		line-height: 1.06;
	}

	.wdm-story-hero__actions,
	.wdm-story-trust {
		display: grid;
		grid-template-columns: 1fr;
	}

	.wdm-story-steps,
	.wdm-filters form,
	.wdm-results .wdm-card-grid {
		grid-template-columns: 1fr;
	}

	.wdm-filters .wdm-form__full {
		grid-column: 1;
	}
}

/* Sales story polish and tighter portal entry */
.wdm-story-hero {
	min-height: min(760px, calc(100vh - 72px));
	display: grid;
	align-items: center;
}

.wdm-story-hero__image {
	position: relative;
	overflow: hidden;
	display: grid;
	align-content: end;
	gap: 14px;
	padding: 22px;
}

.wdm-story-hero__image::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(5, 24, 21, 0.02), rgba(5, 24, 21, 0.62)),
		radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.62), transparent 32%);
}

.wdm-hero-dealcard {
	position: relative;
	z-index: 1;
	width: min(100%, 360px);
	padding: 18px;
	border-radius: 8px;
	background: rgba(255, 253, 248, 0.94);
	box-shadow: 0 20px 70px rgba(4, 18, 16, 0.28);
	backdrop-filter: blur(12px);
}

.wdm-hero-dealcard--light {
	margin-inline-start: auto;
	background: rgba(7, 63, 58, 0.92);
	color: #fff;
}

.wdm-hero-dealcard span,
.wdm-hero-dealcard em {
	display: block;
	color: var(--wdm-gold-strong);
	font-size: 0.82rem;
	font-style: normal;
	font-weight: 900;
}

.wdm-hero-dealcard--light span,
.wdm-hero-dealcard--light em {
	color: #f1d39b;
}

.wdm-hero-dealcard strong {
	display: block;
	margin-top: 8px;
	font-size: clamp(1.45rem, 2.6vw, 2.15rem);
	line-height: 1.12;
}

.wdm-hero-dealcard p {
	margin: 8px 0 12px;
	color: inherit;
	font-size: 0.98rem;
	line-height: 1.45;
}

.wdm-customer-journey {
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(251, 250, 246, 0.96)),
		#fbfaf6;
}

.wdm-journey-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.wdm-journey-grid article {
	position: relative;
	min-height: 250px;
	padding: 28px;
	border-radius: 8px;
	overflow: hidden;
	background: #fffdf8;
	border: 1px solid rgba(18, 32, 29, 0.1);
	box-shadow: 0 18px 42px rgba(9, 23, 21, 0.06);
}

.wdm-journey-grid article::after {
	content: "";
	position: absolute;
	inset-inline: 28px;
	bottom: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--wdm-gold), #073f3a);
}

.wdm-journey-grid span {
	color: var(--wdm-gold-strong);
	font-weight: 900;
}

.wdm-journey-grid h3 {
	margin: 18px 0 10px;
	font-size: clamp(1.35rem, 2vw, 1.9rem);
	line-height: 1.16;
}

.wdm-journey-grid p {
	margin: 0;
	color: #65736f;
	font-size: 1.02rem;
	line-height: 1.7;
}

.wdm-journey-close {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-top: 18px;
	padding: 20px 24px;
	border-radius: 8px;
	background: #081512;
	color: #fff;
}

.wdm-journey-close strong {
	font-size: clamp(1.15rem, 2vw, 1.65rem);
}

.wdm-archive .wdm-page-head {
	padding: 38px 0 24px;
}

.wdm-archive .wdm-section {
	padding: 30px 0 76px;
	background:
		linear-gradient(180deg, #f6f1e7, #fbfaf6 48%, #fffdf8);
}

.wdm-portal-switcher {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 14px;
}

.wdm-portal-switcher a {
	display: grid;
	gap: 6px;
	min-height: 92px;
	padding: 18px;
	border-radius: 8px;
	background: rgba(255, 253, 248, 0.86);
	border: 1px solid rgba(18, 32, 29, 0.11);
	box-shadow: 0 16px 34px rgba(9, 23, 21, 0.05);
}

.wdm-portal-switcher a.is-active {
	background: #073f3a;
	color: #fff;
	border-color: #073f3a;
}

.wdm-portal-switcher span {
	color: var(--wdm-gold-strong);
	font-weight: 900;
}

.wdm-portal-switcher strong {
	font-size: clamp(1rem, 1.4vw, 1.22rem);
	line-height: 1.25;
}

.wdm-filters {
	margin-bottom: 22px;
}

.wdm-filters form {
	border: 1px solid rgba(18, 32, 29, 0.1);
	box-shadow: 0 22px 60px rgba(9, 23, 21, 0.08);
}

.wdm-filters form > label:first-of-type {
	grid-column: span 2;
}

.wdm-results__head strong {
	font-size: 1.2rem;
}

.wdm-results .wdm-card {
	box-shadow: 0 18px 46px rgba(9, 23, 21, 0.08);
}

@media (max-width: 1100px) {
	.wdm-journey-grid,
	.wdm-portal-switcher {
		grid-template-columns: 1fr;
	}

	.wdm-filters form > label:first-of-type {
		grid-column: 1 / -1;
	}
}

@media (max-width: 820px) {
	.wdm-story-hero {
		min-height: auto;
	}
}

@media (max-width: 640px) {
	.wdm-story-hero {
		padding: 42px 0;
	}

	.wdm-story-section {
		padding: 48px 0;
	}

	.wdm-journey-grid article {
		min-height: auto;
		padding: 22px;
	}

	.wdm-journey-close {
		display: grid;
		padding: 18px;
	}

	.wdm-archive .wdm-page-head {
		padding: 34px 0 20px;
	}

	.wdm-portal-switcher a {
		min-height: auto;
		padding: 16px;
	}
}

.wdm-legal-tabs {
	display: flex;
	gap: 10px;
	margin: 0 0 28px;
	padding: 8px;
	overflow-x: auto;
	border: 1px solid rgba(217, 174, 89, 0.24);
	background: rgba(255, 255, 255, 0.68);
}

.wdm-legal-tabs a {
	flex: 0 0 auto;
	padding: 11px 16px;
	color: var(--wdm-ink);
	text-decoration: none;
	border: 1px solid transparent;
}

.wdm-legal-tabs a.is-active {
	color: #fff;
	background: var(--wdm-burgundy);
	border-color: var(--wdm-burgundy);
}

.wdm-legal-card {
	margin: 0 0 24px;
	padding: clamp(22px, 4vw, 42px);
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(217, 174, 89, 0.22);
}

.wdm-legal-card h2 {
	margin: 0 0 18px;
	font-size: clamp(1.7rem, 4vw, 2.8rem);
	line-height: 1.15;
}

.wdm-legal-card h3 {
	margin: 28px 0 8px;
	font-size: 1.08rem;
}

.wdm-legal-card p {
	margin: 0 0 14px;
	line-height: 1.85;
}

.wdm-plugin-footer {
	padding: 34px 0;
	color: rgba(255, 255, 255, 0.76);
	background: #120c0a;
	border-top: 1px solid rgba(217, 174, 89, 0.24);
}

.wdm-plugin-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.8fr);
	gap: 28px;
	align-items: start;
}

.wdm-plugin-footer p {
	max-width: 780px;
	margin: 16px 0 0;
	color: rgba(255, 255, 255, 0.58);
	font-size: 0.82rem;
	line-height: 1.75;
}

.wdm-plugin-footer .wdm-brand {
	color: #fff;
}

.wdm-plugin-footer nav {
	display: grid;
	gap: 10px;
	justify-items: start;
}

.wdm-plugin-footer nav a {
	color: rgba(255, 255, 255, 0.78);
	text-decoration: none;
}

.wdm-plugin-footer nav a:hover {
	color: #e8bd6b;
}

@media (max-width: 920px) {
	.wdm-plugin-footer__inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 560px) {
	.wdm-legal-tabs {
		margin-inline: -2px;
		padding: 6px;
	}

	.wdm-legal-tabs a {
		padding: 10px 12px;
		font-size: 0.9rem;
	}

	.wdm-legal-card {
		padding: 20px 16px;
	}

	.wdm-legal-card p {
		line-height: 1.75;
	}

	.wdm-plugin-footer {
		padding: 30px 0;
	}
}

.wdm-package-guide {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 4px 0 12px;
}

.wdm-package-card {
	position: relative;
	display: flex;
	min-height: 210px;
	flex-direction: column;
	gap: 9px;
	padding: 18px;
	background: #fffaf1;
	border: 1px solid rgba(194, 142, 47, 0.22);
	border-radius: 20px;
	box-shadow: 0 16px 38px rgba(43, 28, 20, 0.07);
	cursor: pointer;
	transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.wdm-package-card:hover {
	transform: translateY(-2px);
	border-color: rgba(141, 49, 69, 0.34);
	box-shadow: 0 20px 46px rgba(43, 28, 20, 0.1);
}

.wdm-package-card:has(input:checked) {
	background: linear-gradient(145deg, #fffaf1, #fff3df);
	border-color: var(--wdm-burgundy);
	box-shadow: 0 0 0 3px rgba(141, 49, 69, 0.1), 0 20px 48px rgba(43, 28, 20, 0.12);
}

.wdm-package-card input[type="radio"] {
	width: auto;
	min-height: 0;
	margin: 0;
	accent-color: var(--wdm-burgundy);
}

.wdm-package-card--queue {
	background: linear-gradient(145deg, #fffaf1, #f5ead8);
	border-color: rgba(194, 142, 47, 0.44);
}

.wdm-package-card span {
	color: #7a4a1d;
	font-size: 0.86rem;
	font-weight: 800;
}

.wdm-package-card strong {
	color: #231812;
	font-family: Georgia, serif;
	font-size: 1.55rem;
	line-height: 1;
}

.wdm-package-card p,
.wdm-package-card ul,
.wdm-package-card small,
.wdm-package-card em {
	margin: 0;
	color: #6b5a51;
	font-size: 0.9rem;
	line-height: 1.55;
}

.wdm-package-card ul {
	display: grid;
	gap: 5px;
	padding-inline-start: 18px;
}

.wdm-package-card small {
	font-weight: 800;
}

.wdm-package-card em {
	margin-top: auto;
	padding-top: 10px;
	border-top: 1px solid rgba(194, 142, 47, 0.2);
	font-style: normal;
}

[data-waitlist-confirm][hidden] {
	display: none !important;
}

@media (max-width: 1080px) {
	.wdm-package-guide {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.wdm-package-guide {
		grid-template-columns: 1fr;
	}

	.wdm-package-card {
		min-height: 0;
		padding: 16px;
		border-radius: 16px;
	}
}
