/* Arveon Contact — /contact and /ch/contact.
   Loaded on top of arveon-legal's legal.css, which supplies the shared
   tokens (--av-rose etc.), nav, and footer. This file only styles the
   page body: a hero CTA button and the three-card contact grid, in place
   of legal.css's plain prose sections. */

.av-contact-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-top: 28px;
	background: #25d366;
	color: #ffffff;
	font-size: 12.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	text-decoration: none;
	padding: 15px 16px 15px 26px;
	border-radius: 999px;
	transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
	box-shadow: 0 10px 30px rgba(37, 211, 102, 0.32);
}

.av-contact-hero__cta:hover {
	background: #1fb958;
	transform: translateY(-2px);
	box-shadow: 0 14px 34px rgba(37, 211, 102, 0.42);
}

.av-contact-hero__cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.14);
	flex: 0 0 auto;
}

.av-contact-grid {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 clamp(20px, 5vw, 80px) clamp(90px, 10vw, 140px);
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(18px, 2.4vw, 28px);
}

.av-contact-card {
	position: relative;
	padding: 34px 28px;
	background: #fff;
	border: 1px solid rgba(170, 101, 81, 0.16);
	border-radius: 18px;
	box-shadow: 0 16px 40px rgba(90, 60, 45, 0.06);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.av-contact-card:hover {
	transform: translateY(-4px);
	border-color: rgba(170, 101, 81, 0.36);
	box-shadow: 0 22px 48px rgba(90, 60, 45, 0.12);
}

.av-contact-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(198, 137, 110, 0.14);
	color: var(--av-rose-dark);
	margin-bottom: 20px;
}

.av-contact-card h2 {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-weight: 600;
	font-size: 22px;
	color: #1f1a17;
	margin: 0 0 10px;
}

.av-contact-card p {
	margin: 0 0 20px;
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--av-body);
}

.av-contact-card__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--av-rose-dark);
	text-decoration: none;
	border-bottom: 1px solid rgba(170, 101, 81, 0.4);
	padding-bottom: 3px;
	transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}

.av-contact-card__link:hover {
	gap: 12px;
	color: var(--av-ink);
	border-color: var(--av-ink);
}

@media (max-width: 860px) {
	.av-contact-grid {
		grid-template-columns: 1fr;
	}
}
