/* Contact page — minimalist, friendly vacation vibe */

.page-contact {
	min-height: 60vh;
	padding: 3rem 1.5rem 4rem;
	background: linear-gradient(180deg, #fafbfc 0%, #ffffff 24%);
}

.page-contact__inner {
	max-width: 520px;
	margin: 0 auto;
}

.page-contact__header {
	text-align: center;
	margin-bottom: 2.5rem;
}

.page-contact__kicker {
	font-size: 0.875rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #7a7a8c;
	margin-bottom: 0.5rem;
	font-family: "OpenSans-SemiBold", sans-serif;
}

.page-contact__title {
	font-family: "Gilroy", sans-serif;
	font-size: clamp(2rem, 5vw, 2.75rem);
	font-weight: bold;
	color: #1a1a2e;
	margin: 0 0 1rem;
	line-height: 1.2;
}

.page-contact__intro {
	font-size: 1.0625rem;
	line-height: 1.65;
	color: #5a5a6e;
	margin: 0;
}

.page-contact__channels {
	margin-bottom: 2rem;
}

.page-contact__footnote {
	font-size: 0.9375rem;
	line-height: 1.6;
	color: #7a7a8c;
	text-align: center;
	margin: 0;
}

.page-contact__link {
	color: #6c42a8;
	text-decoration: none;
	font-family: "OpenSans-SemiBold", sans-serif;
}

.page-contact__link:hover {
	text-decoration: underline;
}

.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Contact block — calm, friendly CTAs */
.contact-block {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1.25rem 1.5rem;
	padding: 2rem 1.5rem;
	background: #ffffff;
	border-radius: 1rem;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
	border: 1px solid rgba(0, 0, 0, 0.04);
	margin: 0;
}

.contact-block__image {
	flex-shrink: 0;
}

.contact-block__image img {
	width: 100%;
	max-width: 100px;
	height: auto;
	border-radius: 50%;
	object-fit: cover;
}

.contact-block__channels {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	align-items: center;
	justify-content: center;
}

.contact-channel {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	border-radius: 2rem;
	font-family: "OpenSans-SemiBold", sans-serif;
	font-size: 0.9375rem;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	border: 1px solid transparent;
}

.contact-channel:hover {
	transform: translateY(-2px);
	text-decoration: none;
}

.contact-channel .contact-channel__icon {
	font-size: 1.25rem;
	line-height: 1;
}

.contact-channel .contact-channel__label {
	color: inherit;
}

.contact-channel--whatsapp {
	background: #25d366;
	color: #fff;
	box-shadow: 0 2px 12px rgba(37, 211, 102, 0.35);
}

.contact-channel--whatsapp:hover {
	color: #fff;
	background: #20bd5a;
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.contact-channel--email {
	background: #f5f2f9;
	color: #5a4a7a;
	border-color: rgba(108, 66, 168, 0.2);
}

.contact-channel--email:hover {
	background: #ebe6f2;
	color: #4a3a6a;
	box-shadow: 0 4px 16px rgba(108, 66, 168, 0.12);
}

@media (max-width: 767px) {
	.page-contact {
		padding: 2rem 1rem 3rem;
	}

	.contact-block {
		flex-direction: column;
		text-align: center;
		padding: 1.75rem 1.25rem;
	}

	.contact-block__image img {
		max-width: 88px;
	}

	.contact-block__channels {
		justify-content: center;
	}
}
