/* ==========================================================================
   KZT Combined Section v2.0 — Subscription + Contact Form
   Стиль kaztheatre2025: шрифты Merriweather/Montserrat, золотые акценты.
   ========================================================================== */

/* ── Section wrapper ── */
.kzt-combined-section {
	background: #f4f4f6;
	padding: 60px 0 70px;
	border-top: 1px solid #eeeef2;
}

/* ── Two-column card ── */
.kzt-combined-row {
	display: flex;
	align-items: stretch;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 6px 40px rgba(0, 0, 0, 0.12);
}

/* ══════════════════════════════════════════════════════════════════════════
   LEFT — Subscription block (dark)
   ══════════════════════════════════════════════════════════════════════════ */

.kzt-subscribe-block {
	flex: 0 0 58%;
	background: #111827;
	padding: 60px 56px;
	display: flex;
	align-items: center;
}

.kzt-subscribe-content {
	width: 100%;
}

.kzt-subscribe-heading {
	font-family: 'Merriweather', serif;
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	margin: 0 0 20px;
}

/* Gold accent line */
.kzt-sub-line {
	display: block;
	width: 48px;
	height: 3px;
	background: linear-gradient(90deg, #FFAF01, #FFD700);
	border-radius: 2px;
	margin-bottom: 40px;
}

/* Email input + button row */
.kzt-sub-field-wrap {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	transition: border-color 0.2s ease;
}

.kzt-sub-field-wrap:focus-within {
	border-bottom-color: #FFAF01;
}

.kzt-sub-field-row {
	display: flex;
	align-items: center;
}

.kzt-sub-email {
	flex: 1;
	padding: 12px 0;
	font-family: 'Merriweather', serif;
	font-size: 0.95rem;
	color: #fff;
	background: transparent;
	border: none;
	outline: none;
	min-width: 0;
}

.kzt-sub-email::placeholder {
	color: rgba(255, 255, 255, 0.45);
	font-weight: 300;
}

.kzt-sub-btn {
	padding: 12px 0 12px 20px;
	background: none;
	border: none;
	color: #FFAF01;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	white-space: nowrap;
	transition: color 0.2s ease;
	flex-shrink: 0;
}

.kzt-sub-btn:hover {
	color: #FFD700;
}

.kzt-sub-btn:disabled {
	opacity: 0.55;
	cursor: not-allowed;
}

/* Subscription response */
.kzt-sub-response {
	margin-top: 16px;
	font-family: 'Merriweather', serif;
	font-size: 0.85rem;
	line-height: 1.55;
}

.kzt-sub-response:empty {
	display: none;
}

.kzt-sub-response.is-success {
	color: #86efac;
}

.kzt-sub-response.is-error {
	color: #fca5a5;
}

/* ══════════════════════════════════════════════════════════════════════════
   RIGHT — Contact form block (light)
   ══════════════════════════════════════════════════════════════════════════ */

.kzt-contact-block {
	flex: 1;
	background: #fff;
	padding: 60px 48px;
	min-width: 0;
}

.kzt-contact-heading {
	font-family: 'Merriweather', serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: #222;
	line-height: 1.25;
	margin: 0 0 16px;
}

/* Gold accent line under form heading */
.kzt-heading-line {
	display: block;
	width: 48px;
	height: 3px;
	background: linear-gradient(90deg, #FFAF01, #FFD700);
	border-radius: 2px;
	margin-bottom: 28px;
}

/* Form layout */
.kzt-contact-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.kzt-field-group {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

/* Inputs & textarea */
.kzt-input {
	width: 100%;
	padding: 12px 14px;
	font-family: 'Merriweather', serif;
	font-size: 0.9rem;
	color: #333;
	background: #fff;
	border: 1px solid #c8c8cc;
	border-radius: 6px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	box-sizing: border-box;
	appearance: none;
	-webkit-appearance: none;
}

.kzt-input::placeholder {
	color: #aaa;
	font-weight: 300;
}

.kzt-input:focus {
	border-color: #FFAF01;
	box-shadow: 0 0 0 3px rgba(255, 175, 1, 0.18);
}

.kzt-input.kzt-error {
	border-color: #a52a2a;
	box-shadow: 0 0 0 3px rgba(165, 42, 42, 0.12);
}

.kzt-textarea {
	resize: vertical;
	min-height: 110px;
	line-height: 1.6;
}

/* Submit row */
.kzt-submit-group {
	flex-direction: row;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 4px;
}

/* Submit button */
.kzt-submit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 12px 36px;
	background: linear-gradient(45deg, #FFD700, #FFAA00, #FFD700);
	background-size: 200% auto;
	color: #1a1a1a;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	box-shadow: 0 4px 18px rgba(255, 175, 1, 0.28);
	transition: background-position 0.4s ease, transform 0.2s ease, box-shadow 0.2s ease;
	white-space: nowrap;
}

.kzt-submit-btn:hover:not(:disabled) {
	background-position: right center;
	transform: scale(1.04);
	box-shadow: 0 6px 24px rgba(255, 175, 1, 0.45);
}

.kzt-submit-btn:active:not(:disabled) {
	transform: scale(0.97);
}

.kzt-submit-btn:disabled {
	opacity: 0.65;
	cursor: not-allowed;
}

.kzt-btn-loader {
	display: none;
	flex-shrink: 0;
}

.kzt-submit-btn.is-loading .kzt-btn-text {
	opacity: 0.5;
}

.kzt-submit-btn.is-loading .kzt-btn-loader {
	display: block;
}

/* Response message */
.kzt-response {
	font-family: 'Merriweather', serif;
	font-size: 0.88rem;
	line-height: 1.55;
	border-radius: 6px;
	transition: opacity 0.3s ease;
}

.kzt-response:empty {
	display: none;
}

.kzt-response.is-success {
	padding: 11px 14px;
	color: #1e5c1e;
	background: #f0faf0;
	border: 1px solid #a5d6a7;
}

.kzt-response.is-error {
	padding: 11px 14px;
	color: #8b0000;
	background: #fff5f5;
	border: 1px solid #f5a0a0;
}

/* ══════════════════════════════════════════════════════════════════════════
   Responsive
   ══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 960px) {
	.kzt-subscribe-block {
		flex: 0 0 52%;
		padding: 50px 40px;
	}

	.kzt-contact-block {
		padding: 50px 36px;
	}

	.kzt-subscribe-heading {
		font-size: 1.7rem;
	}

	.kzt-contact-heading {
		font-size: 1.55rem;
	}
}

@media (max-width: 720px) {
	.kzt-combined-section {
		padding: 48px 0 56px;
	}

	.kzt-combined-row {
		flex-direction: column;
		border-radius: 8px;
	}

	.kzt-subscribe-block {
		flex: none;
		padding: 48px 32px;
	}

	.kzt-contact-block {
		padding: 48px 32px;
	}

	.kzt-subscribe-heading {
		font-size: 1.5rem;
	}

	.kzt-contact-heading {
		font-size: 1.45rem;
	}
}

@media (max-width: 480px) {
	.kzt-combined-section {
		padding: 36px 0 44px;
	}

	.kzt-subscribe-block,
	.kzt-contact-block {
		padding: 40px 20px;
	}

	.kzt-subscribe-heading {
		font-size: 1.3rem;
	}

	.kzt-contact-heading {
		font-size: 1.3rem;
	}

	.kzt-submit-btn {
		width: 100%;
	}
}
