/* =============================================
   CONTACT — page-specific styles
   Hero uses global .page-hero
   Section headers use global .section-hd-center
   Direct-path cards use global .org-grid + .org-card (clickable)
   ============================================= */

/* ---------- FORM PANEL ---------- */
.ct-form {
	max-width: 720px;
	margin: 0 auto;
	background: #fff;
	padding: clamp(1.5rem, 3vw, 2.5rem);
	border: 1px solid var(--ink-100);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow);
}

/* Honeypot — hidden from users, catches bots */
.ct-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	opacity: 0 !important;
	pointer-events: none;
}

/* Layout */
.ct-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.25rem;
}

.ct-field {
	margin-bottom: 1.25rem;
}

.ct-row .ct-field {
	margin-bottom: 0;
}

.ct-row + .ct-field,
.ct-row + .ct-row {
	margin-top: 1.25rem;
}

/* Labels */
.ct-field label {
	display: block;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--ink-800);
	margin-bottom: 0.45rem;
}

.ct-req {
	color: var(--warn);
	font-weight: 700;
}

/* Inputs, select, textarea */
.ct-field input[type="text"],
.ct-field input[type="email"],
.ct-field input[type="tel"],
.ct-field select,
.ct-field textarea {
	width: 100%;
	padding: 0.75rem 0.9rem;
	font-family: var(--font);
	font-size: 0.95rem;
	color: var(--ink-900);
	background: var(--ink-50);
	border: 1px solid var(--ink-200);
	border-radius: 8px;
	transition: border-color 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.ct-field input::placeholder,
.ct-field textarea::placeholder {
	color: var(--ink-400);
}

.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
	outline: none;
	background: #fff;
	border-color: var(--brand-500);
	box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.12);
}

.ct-field textarea {
	resize: vertical;
	min-height: 120px;
	line-height: 1.5;
}

/* Custom select chevron */
.ct-field select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path fill='none' stroke='%235E6C82' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/></svg>");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 12px;
	padding-right: 2.5rem;
	cursor: pointer;
}

/* Submit button */
.ct-submit {
	margin-top: 0.75rem;
}

/* Form responsive */
@media (max-width: 600px) {
	.ct-row {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}
}

/* ---------- OFFICE INFO ---------- */
.ct-office {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	max-width: 760px;
	margin: 0 auto;
}

.ct-office-item {
	padding: 2rem 1.5rem;
	background: #fff;
	border: 1px solid var(--ink-100);
	border-radius: var(--radius);
	text-align: center;
}

.ct-office-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: var(--brand-50);
	color: var(--brand-600);
	font-size: 1.1rem;
	margin-bottom: 1rem;
}

.ct-office-label {
	font-family: var(--mono);
	font-size: 0.65rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--ink-500);
	margin-bottom: 0.5rem;
}

.ct-office-value {
	font-size: 1rem;
	color: var(--ink-800);
	line-height: 1.55;
}

.ct-office-value a {
	color: var(--brand-600);
	font-weight: 600;
	transition: color 0.15s ease;
}

.ct-office-value a:hover {
	color: var(--brand-700);
}

@media (max-width: 600px) {
	.ct-office {
		grid-template-columns: 1fr;
	}
}

/* Direct Paths — polished clickable cards */
	.ct-paths {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 1.25rem;
	}

	@media (max-width: 820px) {
		.ct-paths {
			grid-template-columns: 1fr;
		}
	}

	.ct-path-card {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		padding: 1.9rem 1.75rem;
		border: 1px solid #e7eaf0;
		border-radius: 16px;
		background: #fff;
		text-decoration: none;
		color: inherit;
		box-shadow: 0 1px 2px rgba(16, 24, 40, .04);
		transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
	}

	.ct-path-card:hover,
	.ct-path-card:focus-visible {
		transform: translateY(-4px);
		border-color: #d4dae4;
		box-shadow: 0 16px 32px -8px rgba(16, 24, 40, .14);
		outline: none;
	}

	.ct-path-card .org-card-icon {
		width: 52px;
		height: 52px;
		border-radius: 13px;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.35rem;
		margin-bottom: 1.25rem;
		transition: transform .2s ease;
	}

	.ct-path-card:hover .org-card-icon {
		transform: scale(1.06);
	}

	.ct-path-card:nth-child(1) .org-card-icon {
		background: #e6f1fb;
		color: #185fa5;
	}

	.ct-path-card:nth-child(2) .org-card-icon {
		background: #e1f5ee;
		color: #0f6e56;
	}

	.ct-path-card:nth-child(3) .org-card-icon {
		background: #faece7;
		color: #993c1d;
	}

	.ct-path-card h3 {
		margin: 0 0 .45rem;
		font-size: 1.15rem;
	}

	.ct-path-card p {
		margin: 0;
		color: #5f6470;
		line-height: 1.55;
	}

	.ct-path-go {
		margin-top: 1.25rem;
		font-weight: 600;
		font-size: .92rem;
		color: #185fa5;
		display: inline-flex;
		align-items: center;
		gap: .45rem;
	}

	.ct-path-go i {
		transition: transform .2s ease;
	}

	.ct-path-card:hover .ct-path-go i {
		transform: translateX(4px);
	}

	/* Address card */
	.ct-address-card {
		max-width: 560px;
		margin: 0 auto;
		display: flex;
		align-items: center;
		gap: 1.25rem;
		padding: 1.75rem 2rem;
		background: #fff;
		border: 1px solid #e7eaf0;
		border-radius: 16px;
		box-shadow: 0 1px 2px rgba(16, 24, 40, .04);
	}

	.ct-address-icon {
		flex: none;
		width: 52px;
		height: 52px;
		border-radius: 13px;
		background: #e6f1fb;
		color: #185fa5;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.35rem;
	}

	.ct-address-card address {
		font-style: normal;
		line-height: 1.6;
		color: #5f6470;
	}

	.ct-address-card .ct-address-name {
		display: block;
		font-weight: 600;
		color: #1a1f2b;
		margin-bottom: .15rem;
	}

	@media (max-width: 560px) {
		.ct-address-card {
			flex-direction: column;
			text-align: center;
		}
	}