/* ==========================================================================
   SkyTrade Aviation — Legal page
   Loaded on template-legal.php (after services.css).
   ========================================================================== */

.legal-page {
	background: var(--st-navy);
}

.legal-page .eyebrow-gold {
	font-family: var(--st-font-body);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 3px;
	color: var(--st-gold);
	text-transform: uppercase;
	margin: 0;
}

.contact-hero {
	position: relative;
	padding: 72px 0 56px;
	background: linear-gradient(180deg, var(--st-navy) 0%, var(--st-navy-light) 100%);
	text-align: center;
}

.contact-hero__content {
	max-width: 640px;
	margin: 0 auto;
}

.contact-hero__headline {
	font-family: var(--st-font-display);
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 700;
	color: var(--st-white);
	line-height: 1.12;
	margin: 14px 0 18px;
}

.contact-hero__sub {
	color: var(--st-white-60);
	font-size: 16px;
	line-height: 1.65;
	max-width: 520px;
	margin: 0 auto;
}

.legal-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--st-space-lg);
	padding-bottom: var(--st-space-3xl);
}

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

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

.legal-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	background-color: var(--st-navy-light);
	border: 1px solid var(--st-navy-mid);
	border-radius: var(--st-radius-card);
	padding: var(--st-space-lg);
	cursor: pointer;
	text-decoration: none;
	transition: border-color 0.15s ease;
	width: 100%;
	font: inherit;
	color: inherit;
}

.legal-card:hover,
.legal-card:focus-visible {
	border-color: var(--st-gold);
	outline: none;
}

.legal-card h3 {
	color: var(--st-white);
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
}

.legal-card p {
	color: var(--st-white-60);
	font-size: 13px;
	line-height: 1.5;
	margin-bottom: 16px;
	flex-grow: 1;
}

.legal-card__action {
	color: var(--st-gold);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}
