.contacts-page {
	--contacts-ink: #14231e;
	--contacts-green: #14805c;
	--contacts-dark: #102820;
	--contacts-muted: #61706a;
	--contacts-border: #dce6e0;
	background: #f6f8f7;
	color: var(--contacts-ink);
}

.contacts-section {
	padding: clamp(58px, 7vw, 96px) 0 clamp(74px, 9vw, 128px);
}

.contacts-container {
	max-width: 1080px;
}

.contacts-heading {
	max-width: 820px;
	margin-bottom: clamp(34px, 5vw, 56px);
}

.contacts-eyebrow {
	margin: 0 0 12px;
	color: var(--contacts-green);
	font-size: 14px;
	font-weight: 850;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.contacts-heading h1 {
	margin: 0;
	font-size: clamp(40px, 5.5vw, 68px);
	line-height: 1.02;
	letter-spacing: -.045em;
}

.contacts-heading > p:last-child {
	max-width: 740px;
	margin: 22px 0 0;
	color: var(--contacts-muted);
	font-size: clamp(17px, 2vw, 20px);
	line-height: 1.6;
}

.contacts-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 310px;
	gap: 24px;
	align-items: start;
}

.contacts-card,
.contacts-info-card {
	border: 1px solid var(--contacts-border);
	background: #fff;
	box-shadow: 0 18px 55px rgb(16 40 32 / 6%);
}

.contacts-card {
	padding: clamp(26px, 4vw, 44px);
	border-radius: 26px;
}

.contacts-card__heading {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding-bottom: 26px;
	border-bottom: 1px solid var(--contacts-border);
}

.contacts-card__number {
	display: grid;
	width: 46px;
	height: 46px;
	flex: 0 0 46px;
	place-items: center;
	border-radius: 13px;
	background: #e9f7f2;
	color: var(--contacts-green);
	font-size: 12px;
	font-weight: 900;
}

.contacts-card__heading h2 {
	margin: 1px 0 5px;
	font-size: clamp(22px, 3vw, 28px);
	line-height: 1.2;
}

.contacts-card__heading p {
	margin: 0;
	color: var(--contacts-muted);
	font-size: 14px;
	line-height: 1.5;
}

.contacts-form {
	display: grid;
	gap: 24px;
	margin-top: 28px;
}

.contacts-field label {
	display: flex;
	justify-content: space-between;
	gap: 15px;
	margin-bottom: 9px;
	font-size: 15px;
	font-weight: 800;
}

.contacts-field label span {
	color: var(--contacts-muted);
	font-size: 12px;
	font-weight: 500;
}

.contacts-field input,
.contacts-field textarea {
	display: block;
	width: 100%;
	border: 1px solid #cfdcd6;
	border-radius: 14px;
	outline: 0;
	background: #fbfcfb;
	color: var(--contacts-ink);
	font: inherit;
	transition: border-color .18s, box-shadow .18s, background .18s;
}

.contacts-field input {
	height: 56px;
	padding: 0 16px;
}

.contacts-field textarea {
	min-height: 190px;
	padding: 15px 16px;
	line-height: 1.55;
	resize: vertical;
}

.contacts-field input:focus,
.contacts-field textarea:focus {
	border-color: var(--contacts-green);
	background: #fff;
	box-shadow: 0 0 0 4px rgb(20 128 92 / 11%);
}

.contacts-field input::placeholder,
.contacts-field textarea::placeholder {
	color: #91a29b;
}

.contacts-field__hint,
.contacts-field__error {
	margin: 7px 0 0;
	font-size: 12px;
}

.contacts-field__hint { color: var(--contacts-muted); }
.contacts-field__error { color: #b33d35; font-weight: 700; }

.contacts-privacy-note {
	display: flex;
	gap: 11px;
	align-items: flex-start;
	padding: 15px 17px;
	border: 1px solid #dceae4;
	border-radius: 13px;
	background: #f2f8f5;
}

.contacts-privacy-note span {
	display: grid;
	width: 23px;
	height: 23px;
	flex: 0 0 23px;
	place-items: center;
	border-radius: 50%;
	background: var(--contacts-green);
	color: #fff;
	font-size: 12px;
	font-weight: 900;
}

.contacts-privacy-note p {
	margin: 1px 0 0;
	color: #52665e;
	font-size: 13px;
	line-height: 1.5;
}

.contacts-submit {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 58px;
	border: 0;
	border-radius: 14px;
	padding: 0 20px;
	background: var(--contacts-green);
	box-shadow: 0 12px 28px rgb(20 128 92 / 20%);
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-weight: 850;
	transition: background .18s, transform .18s, box-shadow .18s;
}

.contacts-submit:hover {
	background: #0d704f;
	box-shadow: 0 15px 32px rgb(20 128 92 / 26%);
	transform: translateY(-1px);
}

.contacts-submit span:last-child { font-size: 22px; }

.contacts-aside {
	display: grid;
	gap: 18px;
}

.contacts-info-card {
	padding: 25px;
	border-radius: 21px;
}

.contacts-info-card__icon {
	display: grid;
	width: 46px;
	height: 46px;
	place-items: center;
	margin-bottom: 24px;
	border-radius: 13px;
	background: #e9f7f2;
	color: var(--contacts-green);
	font-size: 20px;
	font-weight: 900;
}

.contacts-info-card__label {
	margin: 0 0 8px;
	color: var(--contacts-muted);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.contacts-info-card > a {
	display: inline-block;
	color: var(--contacts-ink);
	font-size: 20px;
	font-weight: 850;
	text-decoration: none;
}

.contacts-info-card > a:hover { color: var(--contacts-green); }

.contacts-info-card > p:last-child {
	margin: 16px 0 0;
	color: var(--contacts-muted);
	font-size: 13px;
	line-height: 1.55;
}

.contacts-info-card--dark {
	border-color: var(--contacts-dark);
	background: var(--contacts-dark);
	box-shadow: none;
	color: #fff;
}

.contacts-info-card--dark .contacts-info-card__label { color: #73d4b3; }
.contacts-info-card--dark ul { margin: 16px 0 0; padding: 0 0 0 19px; color: #c6d7d1; font-size: 14px; line-height: 1.7; }

.contacts-alert {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	margin-top: 24px;
	padding: 15px 17px;
	border-radius: 13px;
}

.contacts-alert span {
	display: grid;
	width: 24px;
	height: 24px;
	flex: 0 0 24px;
	place-items: center;
	border-radius: 50%;
	color: #fff;
	font-size: 13px;
	font-weight: 900;
}

.contacts-alert p { margin: 1px 0 0; font-size: 14px; line-height: 1.5; }
.contacts-alert--success { border: 1px solid #b9dfd1; background: #edf9f4; color: #0c6548; }
.contacts-alert--success span { background: #14805c; }
.contacts-alert--error { border: 1px solid #ebc6c1; background: #fff3f1; color: #91372f; }
.contacts-alert--error span { background: #b84d43; }

.contacts-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

@media (max-width: 850px) {
	.contacts-layout { grid-template-columns: 1fr; }
	.contacts-aside { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 580px) {
	.contacts-section { padding-top: 44px; }
	.contacts-heading h1 { font-size: 43px; }
	.contacts-card { padding: 21px; border-radius: 20px; }
	.contacts-card__heading { gap: 12px; }
	.contacts-card__number { width: 40px; height: 40px; flex-basis: 40px; }
	.contacts-card__heading h2 { font-size: 21px; }
	.contacts-aside { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
	.contacts-page *,
	.contacts-page *::before,
	.contacts-page *::after { transition: none !important; }
}
