/*
 * The two post-payment landing pages. Self-contained, no theme deps, and unchanged from the
 * rules they were carved out of: they used to ride the guest booking testbed's stylesheet,
 * which #287 deleted with the testbed. Reconciling .srr-btn with the theme's .btn is still
 * deferred, and is the island's to do.
 */
.srr-complete {
	--srr-ink: #14302f;
	--srr-teal: #0f5b57;
	--srr-gold: #c8912f;
	box-sizing: border-box;
	max-width: 560px;
	margin: 0 auto;
	padding: 40px 24px;
	color: var(--srr-ink);
	font-family: inherit;
	text-align: center;
}

.srr-complete__title {
	margin: 0 0 10px;
	font-size: 1.6rem;
	color: var(--srr-teal);
}

.srr-complete--fail .srr-complete__title {
	color: var(--srr-gold);
}

.srr-complete__ref {
	margin: 0 0 18px;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
}

.srr-complete__lead {
	margin: 0 auto 14px;
	line-height: 1.55;
}

.srr-complete__note {
	margin: 0 auto 22px;
	font-size: 0.9rem;
	opacity: 0.75;
}

.srr-complete .srr-btn {
	display: inline-block;
	cursor: pointer;
	border: 0;
	border-radius: 8px;
	padding: 12px 20px;
	background: var(--srr-teal);
	color: #fff;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	text-decoration: none;
	transition: background-color 0.15s ease, transform 0.05s ease;
}

.srr-complete .srr-btn:active {
	transform: translateY(1px);
}

@media (prefers-color-scheme: dark) {
	.srr-complete {
		--srr-ink: #ece7db;
		--srr-teal: #4bb3ac;
		--srr-gold: #d9a63f;
	}
}
