.gcf-wrap {
	--gcf-ink: #1c1914;
	--gcf-muted: #6f6a60;
	--gcf-line: #e4dfd4;
	--gcf-fill: #f3efe6;
	--gcf-bg: #fffcf7;
	--gcf-accent: #b0893e;
	--gcf-ok: #2d6a46;
	--gcf-ok-bg: #eef6f0;
	--gcf-err: #9b2c2c;
	--gcf-err-bg: #f8eeee;
	--gcf-info-bg: #eef2f8;
	--gcf-radius: 18px;
	container-type: inline-size;
	container-name: gcf;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	color: var(--gcf-ink);
	font-family: inherit;
	font-size: 15px;
	line-height: 1.7;
}

.gcf-wrap *,
.gcf-wrap *::before,
.gcf-wrap *::after {
	box-sizing: border-box;
}

.gcf-shell {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: var(--gcf-bg);
	border: 1px solid var(--gcf-line);
	border-radius: var(--gcf-radius);
}

.gcf-tabs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
	padding: 8px;
	background: var(--gcf-fill);
	border-bottom: 1px solid var(--gcf-line);
}

.gcf-tab {
	margin: 0;
	padding: 11px 12px;
	border: 0;
	border-radius: 12px;
	background: transparent;
	color: var(--gcf-muted);
	font: inherit;
	font-weight: 600;
	line-height: 1.3;
	cursor: pointer;
	transition: background-color 0.18s ease, color 0.18s ease;
}

.gcf-tab:hover {
	color: var(--gcf-ink);
}

.gcf-tab.is-active {
	background: var(--gcf-bg);
	color: var(--gcf-ink);
}

.gcf-tab:focus-visible {
	outline: 2px solid var(--gcf-accent);
	outline-offset: 2px;
}

.gcf-body {
	padding: 20px 18px 18px;
}

.gcf-panel[hidden] {
	display: none !important;
}

.gcf-fields {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px 16px;
}

.gcf-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.gcf-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--gcf-ink);
}

.gcf-label-text {
	display: inline;
}

.gcf-icon {
	display: none;
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.gcf-icon:not(:empty) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.gcf-icon svg,
.gcf-icon img {
	display: block;
	width: 18px;
	height: 18px;
}

.gcf-icon--input {
	position: absolute;
	top: 50%;
	right: 12px;
	transform: translateY(-50%);
	z-index: 1;
	pointer-events: none;
}

.gcf-field--contact_description .gcf-icon--input {
	top: 14px;
	transform: none;
}

.gcf-wrap .gcf-input,
.gcf-wrap input.gcf-input,
.gcf-wrap select.gcf-input,
.gcf-wrap textarea.gcf-input {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 11px 12px;
	border: 1px solid var(--gcf-line);
	border-radius: 12px;
	background: #fff;
	color: var(--gcf-ink);
	font: inherit;
	line-height: 1.5;
	box-shadow: none;
	appearance: none;
	-webkit-appearance: none;
}

.gcf-wrap select.gcf-input {
	background-image: linear-gradient(45deg, transparent 50%, var(--gcf-muted) 50%), linear-gradient(135deg, var(--gcf-muted) 50%, transparent 50%);
	background-position: left 14px calc(50% - 3px), left 9px calc(50% - 3px);
	background-size: 5px 5px, 5px 5px;
	background-repeat: no-repeat;
	padding-left: 28px;
	padding-right: 12px;
}

.gcf-wrap textarea.gcf-input {
	min-height: 128px;
	resize: vertical;
}

.gcf-wrap .gcf-input:focus {
	border-color: var(--gcf-accent);
	outline: 2px solid color-mix(in srgb, var(--gcf-accent) 25%, transparent);
	outline-offset: 0;
}

.gcf-wrap .gcf-input.is-invalid {
	border-color: var(--gcf-err);
}

.gcf-wrap .gcf-input:disabled {
	background: var(--gcf-fill);
	color: var(--gcf-muted);
	cursor: not-allowed;
}

.gcf-control {
	position: relative;
	display: block;
	min-width: 0;
}

.gcf-stepper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 0 0 8px;
}

.gcf-step {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--gcf-fill);
	color: var(--gcf-muted);
	font-size: 13px;
	font-weight: 700;
}

.gcf-step.is-active,
.gcf-step.is-done {
	background: var(--gcf-ink);
	color: #fff;
}

.gcf-step-line {
	width: 48px;
	height: 2px;
	background: var(--gcf-line);
}

.gcf-step-caption {
	margin: 0 0 16px;
	text-align: center;
	font-size: 13px;
	font-weight: 600;
	color: var(--gcf-muted);
}

.gcf-step-panel[hidden] {
	display: none !important;
}

.gcf-actions {
	margin-top: 18px;
}

.gcf-actions .gcf-submit {
	margin-top: 0;
}

.gcf-actions--split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
	gap: 10px;
}

.gcf-back {
	margin: 0;
	padding: 13px 16px;
	border: 1px solid var(--gcf-line);
	border-radius: 12px;
	background: #fff;
	color: var(--gcf-ink);
	font: inherit;
	font-weight: 700;
	cursor: pointer;
}

.gcf-back:hover {
	background: var(--gcf-fill);
}

.gcf-back:disabled {
	opacity: 0.65;
	cursor: wait;
}

.gcf-error {
	font-size: 12px;
	color: var(--gcf-err);
}

.gcf-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	margin: 18px 0 0;
	padding: 13px 16px;
	border: 0;
	border-radius: 12px;
	background: var(--gcf-ink);
	color: #fff;
	font: inherit;
	font-weight: 700;
	letter-spacing: -0.01em;
	cursor: pointer;
}

.gcf-submit:hover {
	background: #2a261f;
}

.gcf-submit:focus-visible {
	outline: 2px solid var(--gcf-accent);
	outline-offset: 3px;
}

.gcf-submit:disabled {
	opacity: 0.65;
	cursor: wait;
}

.gcf-result {
	margin-top: 16px;
	padding: 14px 16px;
	border: 1px solid var(--gcf-line);
	border-radius: 14px;
	background: var(--gcf-info-bg);
}

.gcf-result[hidden] {
	display: none !important;
}

.gcf-result.is-success {
	background: var(--gcf-ok-bg);
	border-color: #c9dfd0;
}

.gcf-result.is-error {
	background: var(--gcf-err-bg);
	border-color: #e3c4c4;
}

.gcf-result__title {
	margin: 0 0 8px;
	font-size: 15px;
	font-weight: 700;
}

.gcf-result__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.gcf-result__list li {
	padding: 6px 0;
	border-top: 1px solid color-mix(in srgb, var(--gcf-ink) 8%, transparent);
}

.gcf-result__list li:first-child {
	border-top: 0;
	padding-top: 0;
}

.gcf-result__list strong {
	display: inline;
	margin-left: 6px;
	font-weight: 700;
}

.gcf-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	background: color-mix(in srgb, var(--gcf-bg) 78%, transparent);
	z-index: 2;
}

.gcf-overlay[hidden] {
	display: none !important;
}

.gcf-spinner {
	width: 28px;
	height: 28px;
	border: 2px solid var(--gcf-line);
	border-top-color: var(--gcf-accent);
	border-radius: 50%;
	animation: gcf-spin 0.7s linear infinite;
}

.gcf-overlay-text {
	font-size: 13px;
	color: var(--gcf-muted);
}

.gcf-noscript {
	margin: 10px 0 0;
	color: var(--gcf-err);
}

@keyframes gcf-spin {
	to {
		transform: rotate(360deg);
	}
}

@container gcf (min-width: 520px) {
	.gcf-body {
		padding: 24px 22px 22px;
	}

	.gcf-fields {
		grid-template-columns: 1fr 1fr;
	}

	.gcf-field--full {
		grid-column: 1 / -1;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gcf-tab,
	.gcf-submit,
	.gcf-spinner {
		transition: none;
		animation: none;
	}
}
