/**
 * Stowhill Property Feed — Coming Soon board landing page.
 * Inherits the brand tokens from .spf-main in spf.css (Poppins headings,
 * Raleway body, #F6F6F6 page, #474444 accent, square outline buttons).
 * Designed mobile-first: this page is almost always opened from a QR code
 * at the kerbside, on a phone, one-handed.
 */

.spf-cs {
	padding: 48px 0 72px;
}

.spf-cs-wrap {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
	gap: 40px;
	align-items: start;
}

/* ------- Card ------- */

.spf-cs-card {
	background: var(--spf-card);
	border: 1px solid var(--spf-line);
	padding: 40px;
}

.spf-cs-eyebrow {
	font-family: "Poppins", sans-serif;
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--spf-muted);
	margin: 0 0 12px;
}

.spf-cs-title {
	font-size: clamp(1.9rem, 5vw, 2.6rem);
	margin: 0 0 18px;
	letter-spacing: -0.01em;
}

.spf-cs-intro {
	font-size: 1.02rem;
	line-height: 1.7;
	color: var(--spf-text);
	margin: 0 0 30px;
	max-width: 56ch;
}

/* ------- Form ------- */

.spf-cs-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.spf-cs-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.spf-cs-field {
	display: flex;
	flex-direction: column;
	gap: 7px;
	min-width: 0;
}

.spf-cs-field label {
	font-family: "Poppins", sans-serif;
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--spf-ink);
}

.spf-cs-req {
	color: var(--spf-muted);
}

.spf-cs-opt {
	text-transform: none;
	letter-spacing: 0;
	font-weight: 400;
	color: var(--spf-muted);
	font-size: 0.75rem;
}

.spf-cs-field input,
.spf-cs-field select {
	font-family: "Raleway", sans-serif;
	font-size: 1rem;
	color: var(--spf-ink);
	background: #fff;
	border: 1px solid var(--spf-line);
	border-radius: 0;
	padding: 14px 14px;
	width: 100%;
	transition: border-color 0.2s;
	/* 16px+ font size stops iOS Safari zooming the page on focus. */
}

.spf-cs-field select {
	appearance: none;
	-webkit-appearance: none;
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23474444' stroke-width='1.4' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 12px 8px;
	padding-right: 40px;
}

.spf-cs-field input:focus,
.spf-cs-field select:focus {
	outline: none;
	border-color: var(--spf-accent);
}

.spf-cs-field input::placeholder {
	color: #a6a8ab;
}

/* Honeypot — off-screen, never focusable, invisible to humans. */
.spf-cs-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.spf-cs-consent {
	display: flex;
	align-items: flex-start;
	gap: 11px;
	font-size: 0.88rem;
	line-height: 1.55;
	color: var(--spf-text);
	cursor: pointer;
}

.spf-cs-consent input {
	margin: 3px 0 0;
	flex: 0 0 auto;
	width: 17px;
	height: 17px;
	accent-color: var(--spf-accent);
}

.spf-cs-consent a {
	color: var(--spf-accent);
}

.spf-cs-submit {
	width: 100%;
	margin-top: 4px;
}

.spf-cs-small {
	font-size: 0.8rem;
	color: var(--spf-muted);
	margin: 0;
	text-align: center;
}

.spf-cs-error {
	background: #fdf3f3;
	border-left: 3px solid #a5443f;
	color: #7d322e;
	padding: 12px 16px;
	margin: 0 0 24px;
	font-size: 0.92rem;
}

/* ------- Thank you ------- */

.spf-cs-thanks {
	padding: 8px 0 4px;
}

.spf-cs-thanks-lead {
	font-family: "Poppins", sans-serif;
	font-size: 1.15rem;
	font-weight: 400;
	line-height: 1.6;
	color: var(--spf-ink);
	margin: 0 0 18px;
	max-width: 48ch;
}

.spf-cs-thanks-sub {
	font-size: 0.92rem;
	color: var(--spf-muted);
	margin: 0 0 26px;
}

.spf-cs-thanks-sub a {
	color: var(--spf-accent);
}

/* ------- Aside ------- */

.spf-cs-aside {
	padding: 8px 0 0 8px;
}

.spf-cs-benefits {
	list-style: none;
	margin: 0 0 30px;
	padding: 0;
}

.spf-cs-benefits li {
	position: relative;
	padding: 0 0 0 22px;
	margin: 0 0 16px;
	font-size: 0.95rem;
	line-height: 1.65;
	color: var(--spf-text);
}

.spf-cs-benefits li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 11px;
	width: 9px;
	height: 1px;
	background: var(--spf-accent);
}

.spf-cs-contact {
	border-top: 1px solid var(--spf-line);
	padding-top: 20px;
	font-size: 0.92rem;
	line-height: 2;
}

.spf-cs-contact strong {
	font-family: "Poppins", sans-serif;
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--spf-muted);
	display: inline-block;
	min-width: 62px;
}

.spf-cs-contact a {
	color: var(--spf-accent);
	text-decoration: none;
}

.spf-cs-contact a:hover {
	text-decoration: underline;
}

/* ------- Buttons (scoped, matching the detail page) ------- */

.spf-cs .spf-btn {
	display: inline-block;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-size: 0.82rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 16px 28px;
	border: 1px solid var(--spf-accent);
	color: var(--spf-accent);
	background: transparent;
	border-radius: 0;
	cursor: pointer;
	transition: 0.2s;
	text-decoration: none;
	text-align: center;
}

.spf-cs .spf-btn:hover {
	background: var(--spf-accent);
	color: #fff;
}

.spf-cs .spf-btn-solid {
	background: var(--spf-accent);
	color: #fff;
}

.spf-cs .spf-btn-solid:hover {
	background: #2f2d2d;
}

/* ------- Mobile: the primary experience ------- */

@media (max-width: 860px) {
	.spf-cs {
		padding: 28px 0 48px;
	}

	.spf-cs-wrap {
		grid-template-columns: 1fr;
		gap: 28px;
		padding: 0 16px;
	}

	.spf-cs-card {
		padding: 28px 22px;
	}

	.spf-cs-row {
		grid-template-columns: 1fr;
	}

	.spf-cs-aside {
		padding: 0;
	}
}
