/* ============================================================
   KODIF — CONTACT
   Tokens (--primary, --bg-reverse, --chat-bg, …) are declared in css/style.css.
   Order: components → @media (breakpoints at the end of the file).
   ============================================================ */

/* ============ HERO ============ */
/* Reuses .section-title-hero from style/about: dark intro band, 64px block padding. */
.section-title-hero {
	padding-top: 64px;
	padding-bottom: 64px;
	background: var(--bg-reverse);
}

/* Copy capped to a readable measure */
.contact-hero__content {
	max-width: 640px;
}

.section-title-hero .title {
	margin-bottom: 24px;
}

.contact-hero__lead {
	font-size: 18px;
	line-height: 1.55;
	color: var(--text-dim);
}

/* ============ CONTACT ROUTES ============ */
/* Cream stage holding a 3-up grid of white request cards. */
.section-contact-list {
	padding-top: 80px;
	padding-bottom: 80px;
	background: var(--chat-bg);
}

.contact-list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* Card: orange eyebrow → title → description → arrow link */
.contact-card {
	display: flex;
	flex-direction: column;
	padding: 32px;
	background: var(--white);
}

.contact-card__eyebrow {
	margin-bottom: 24px;
	font-size: 14px;
	text-transform: uppercase;
	color: var(--primary);
}

.contact-card__title {
	margin-bottom: 16px;
	font-size: 24px;
	line-height: 1.25;
	font-weight: 600;
	color: var(--text-title);
}

.contact-card__desc {
	font-size: 16px;
	line-height: 1.5;
	color: #7a7a7a;
}

/* Underlined arrow link sits at the card foot, pushed down by margin-top:auto */
.contact-card__link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	align-self: flex-start;
	margin-top: 24px;
	padding-bottom: 6px;
	font-size: 16px;
	font-weight: 600;
	color: var(--text-title);
	border-bottom: 1px solid currentColor;
}

.contact-card__link svg {
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.contact-card__link:hover svg {
	transform: translateX(4px);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1199px) {
	.contact-card {
		padding: 24px;
	}

	.contact-card__desc {
		font-size: 14px;
	}
}

@media (max-width: 991px) {
	.contact-list {
		grid-template-columns: repeat(2, 1fr);
	}

	.contact-card {
		padding: 20px;
	}

	.contact-card__eyebrow {
		margin-bottom: 12px;
	}

	.contact-card__title {
		margin-bottom: 8px;
		font-size: 20px;
	}

	.contact-card__link {
		margin-top: 12px;
		font-size: 14px;
	}
}

@media (max-width: 767px) {
	.contact-hero__lead {
		font-size: 16px;
	}

	.section-contact-list {
		padding-top: 56px;
		padding-bottom: 56px;
	}

	.contact-list {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.contact-card {
		padding: 16px;
	}

	.contact-card__title {
		font-size: 18px;
	}
}
