.story-engine-form {
	max-width: 640px;
	margin: 0 auto;
	font-family: 'DM Sans', sans-serif;
	background: #fffdf9;
	border: 1px solid #ece5d6;
	border-radius: 6px;
	padding: 2.5rem 2.5rem 2.25rem;
	box-shadow: 0 4px 24px rgba(26, 26, 26, 0.05);
}

.story-engine-form .se-field {
	margin-bottom: 1.85rem;
}

.story-engine-form label {
	display: block;
	font-family: 'Cormorant Garamond', serif;
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: #1a1a1a;
	letter-spacing: 0.01em;
}

.story-engine-form input[type="text"],
.story-engine-form input[type="email"],
.story-engine-form textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid #d9d3c7;
	border-radius: 4px;
	background: #fff;
	font-family: 'DM Sans', sans-serif;
	font-size: 1rem;
	color: #1a1a1a;
	box-sizing: border-box;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.story-engine-form textarea {
	resize: vertical;
	line-height: 1.6;
}

.story-engine-form input[type="text"]:focus,
.story-engine-form input[type="email"]:focus,
.story-engine-form textarea:focus {
	outline: none;
	border-color: #c9a227;
	box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}

.story-engine-form input[type="text"]::placeholder,
.story-engine-form textarea::placeholder {
	color: #a8a094;
}

.se-file-upload {
	border: 1px dashed #d9d3c7;
	border-radius: 4px;
	padding: 1.25rem 1rem;
	background: #faf8f2;
	transition: border-color 0.2s ease, background 0.2s ease;
}

.se-file-upload:hover {
	border-color: #c9a227;
	background: #f7f2e4;
}

.story-engine-form input[type="file"] {
	width: 100%;
	font-family: 'DM Sans', sans-serif;
	font-size: 0.92rem;
	color: #444;
}

.se-hint {
	font-size: 0.85rem;
	color: #8a8478;
	margin-top: 0.5rem;
}

.se-honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.se-consent-group {
	margin-bottom: 2rem;
	padding: 1.25rem 1.25rem 0.5rem;
	background: #faf8f2;
	border-left: 3px solid #c9a227;
	border-radius: 0 4px 4px 0;
}

.se-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	margin-bottom: 0.9rem;
	cursor: pointer;
	font-family: 'DM Sans', sans-serif;
}

.se-checkbox input[type="checkbox"] {
	margin-top: 0.2rem;
	width: 17px;
	height: 17px;
	accent-color: #c9a227;
	flex-shrink: 0;
	cursor: pointer;
}

.se-checkbox span {
	font-size: 0.88rem;
	line-height: 1.55;
	color: #4a4638;
}

.se-checkbox a {
	color: #a3811c;
	text-decoration: underline;
}

.se-checkbox a:hover {
	color: #c9a227;
}

.se-submit-btn {
	width: 100%;
	background: #1a1a1a;
	color: #fff;
	border: 1px solid #1a1a1a;
	padding: 0.95rem 2rem;
	border-radius: 4px;
	font-family: 'DM Sans', sans-serif;
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.se-submit-btn:hover {
	background: #c9a227;
	border-color: #c9a227;
	color: #1a1a1a;
}

.se-submit-btn:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

.se-progress-wrap {
	position: relative;
	margin-top: 1rem;
	height: 8px;
	background: #ece5d6;
	border-radius: 4px;
	overflow: hidden;
}

.se-progress-bar {
	height: 100%;
	width: 0%;
	background: linear-gradient(90deg, #c9a227, #e0bb4a);
	border-radius: 4px;
	transition: width 0.2s ease;
}

.se-progress-label {
	display: block;
	margin-top: 0.4rem;
	font-size: 0.8rem;
	color: #8a8478;
	text-align: right;
}

.se-form-status {
	margin-top: 1.25rem;
	padding: 0.9rem 1.1rem;
	border-radius: 4px;
	font-size: 0.92rem;
	line-height: 1.5;
}

.se-form-status.success {
	background: #f5f1e6;
	border-left: 3px solid #c9a227;
	color: #1a1a1a;
}

.se-form-status.error {
	background: #fbeaea;
	border-left: 3px solid #c0392b;
	color: #7a1f1f;
}

@media (max-width: 480px) {
	.story-engine-form {
		padding: 1.75rem 1.5rem;
	}
}
