.scf-shell {
	box-sizing: border-box;
	left: 50%;
	margin: 36px 0;
	max-width: 80vw;
	position: relative;
	transform: translateX(-50%);
	width: 80vw;
}

.scf-card {
	background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
	border: 1px solid rgba(111, 138, 148, 0.18);
	border-radius: 32px;
	box-shadow: 0 28px 70px rgba(23, 43, 53, 0.12);
	display: grid;
	grid-template-columns: minmax(280px, 1.05fr) minmax(320px, 1fr);
	overflow: hidden;
}

.scf-media-panel {
	background: linear-gradient(135deg, #1f4f5f 0%, #6f8f98 100%);
	min-height: 100%;
	position: relative;
}

.scf-media-panel img {
	display: block;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
	width: 100%;
}

.scf-media-placeholder {
	align-items: center;
	color: #f3f7f8;
	display: flex;
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	font-weight: 600;
	height: 100%;
	justify-content: center;
	line-height: 1.6;
	min-height: 640px;
	padding: 42px;
	text-align: center;
}

.scf-form-panel {
	padding: clamp(24px, 4vw, 48px);
}

.scf-form-header {
	margin-bottom: 24px;
}

.scf-eyebrow {
	color: #996633;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	margin: 0 0 10px;
	text-transform: uppercase;
}

.scf-form-header h2 {
	color: #18323a;
	font-size: clamp(1.85rem, 3vw, 2.6rem);
	line-height: 1.1;
	margin: 0 0 12px;
}

.scf-form-header p {
	color: #4a5d66;
	margin: 0;
}

.scf-notice {
	border-radius: 18px;
	margin-bottom: 22px;
	padding: 16px 18px;
}

.scf-notice p {
	margin: 0;
}

.scf-notice p + p {
	margin-top: 8px;
}

.scf-notice-success {
	background: #edf8ef;
	border: 1px solid #8cc69b;
	color: #1d5b2c;
}

.scf-notice-error {
	background: #fff1f1;
	border: 1px solid #ebb1b1;
	color: #8a2424;
}

.scf-fields {
	display: grid;
	gap: 18px;
}

.scf-field label {
	color: #18323a;
	display: inline-block;
	font-weight: 700;
	margin-bottom: 8px;
}

.scf-field input[type="text"],
.scf-field input[type="email"],
.scf-field input[type="tel"],
.scf-field select,
.scf-field textarea {
	background: #ffffff;
	border: 1px solid #cdd8dd;
	border-radius: 18px;
	box-sizing: border-box;
	color: #18323a;
	font-size: 1rem;
	padding: 14px 16px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
	width: 100%;
}

.scf-field textarea {
	min-height: 170px;
	resize: vertical;
}

.scf-field input:focus,
.scf-field select:focus,
.scf-field textarea:focus {
	border-color: #996633;
	box-shadow: 0 0 0 4px rgba(153, 102, 51, 0.12);
	outline: none;
	transform: translateY(-1px);
}

.scf-field-checkbox label {
	align-items: center;
	display: flex;
	gap: 12px;
	margin-bottom: 0;
}

.scf-field-checkbox input[type="checkbox"] {
	accent-color: #996633;
	height: 18px;
	margin: 0;
	width: 18px;
}

.scf-required {
	color: #996633;
	margin-left: 4px;
}

.scf-submit-row {
	margin-top: 26px;
}

.scf-submit-button {
	background: linear-gradient(135deg, #996633 0%, #c4873d 100%);
	border: 0;
	border-radius: 999px;
	box-shadow: 0 18px 36px rgba(153, 102, 51, 0.22);
	color: #ffffff;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 700;
	min-width: 180px;
	padding: 16px 28px;
	transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.scf-submit-button:hover,
.scf-submit-button:focus {
	box-shadow: 0 22px 42px rgba(153, 102, 51, 0.28);
	opacity: 0.96;
	transform: translateY(-2px);
}

@media (max-width: 1024px) {
	.scf-shell {
		max-width: 88vw;
		width: 88vw;
	}

	.scf-card {
		grid-template-columns: 1fr;
	}

	.scf-media-panel {
		max-height: 420px;
		min-height: 320px;
	}

	.scf-media-placeholder {
		min-height: 320px;
	}
}

@media (max-width: 640px) {
	.scf-shell {
		margin: 18px 0;
		max-width: 90vw;
		width: 90vw;
	}

	.scf-card {
		border-radius: 24px;
	}

	.scf-form-panel {
		padding: 22px 18px;
	}

	.scf-submit-button {
		min-width: 100%;
		width: 100%;
	}
}
