/* Site footer — SPA-canonical styles. Mirrors components/shared.jsx SiteFooter.
 *
 * Replaces the legacy .site-footer / .footer-* rules in style.css. Both name-
 * spaces (legacy + new) are emitted by the WP template during the transition,
 * but the new rules win because this stylesheet is enqueued AFTER va-style.
 *
 * SPA structure (shared.jsx:1034):
 *   <footer> dark ionian, padding 56px 48px 36px, margin-top 36px
 *     <div> flex-row, gap 56px
 *       <div>  brand block — flex:2, max-width:280, logo + italic tagline + 3 inline links
 *       <div>  cols container — flex:1, gap 48px
 *         <FooterCol>  4 of them: Destinations, Guides, Partners, Follow
 *     <div>  legal strip — margin-top 72px, border-top, fontsize 11
 */

.va-site-footer {
	background: var(--ionian-deep);
	color: rgba(255, 255, 255, 0.8);
	padding: 56px 48px 36px;
	margin-top: 36px;
}

.va-site-footer-inner {
	display: flex;
	gap: 56px;
	align-items: flex-start;
}

/* Brand block — logo + italic tagline + Home/About/Press inline links. */
.va-site-footer-brand {
	flex: 2;
	max-width: 280px;
}

.va-site-footer-brand-tagline {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 24px;
	color: #fff;
	margin-top: 20px;
	line-height: 1.3;
}

.va-site-footer-brand-links {
	margin-top: 20px;
	font-size: 13px;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.8);
}

.va-site-footer-brand-links a {
	color: inherit;
	text-decoration: none;
}

.va-site-footer-brand-links a:hover {
	color: #fff;
}

.va-site-footer-brand-links .sep {
	margin: 0 8px;
	color: rgba(255, 255, 255, 0.4);
}

/* Column container — 4 FooterCol siblings in a flex row. */
.va-site-footer-cols {
	display: flex;
	gap: 48px;
	flex-wrap: wrap;
	flex: 1;
}

.va-site-footer-col {
	min-width: 140px;
}

.va-site-footer-col h4 {
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.5);
	margin: 0 0 16px;
}

.va-site-footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.va-site-footer-col ul li {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.8);
}

.va-site-footer-col ul li a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}

.va-site-footer-col ul li a:hover {
	color: #fff;
}

/* Legal strip — bottom of the footer. */
.va-site-footer-legal {
	margin-top: 72px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 11px;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.55);
}

.va-site-footer-legal a {
	color: rgba(255, 255, 255, 0.72);
	text-decoration: none;
}

.va-site-footer-legal a:hover {
	color: #fff;
}

/* ── Mobile: matches SPA at window.innerWidth <= 900 ─────────────── */
@media (max-width: 900px) {
	.va-site-footer {
		padding: 40px 24px 32px;
		margin-top: 24px;
	}
	.va-site-footer-inner {
		flex-direction: column;
		gap: 32px;
	}
	.va-site-footer-brand {
		max-width: 100%;
	}
	.va-site-footer-brand-tagline {
		font-size: 20px;
	}
	.va-site-footer-cols {
		gap: 32px;
	}
	.va-site-footer-legal {
		margin-top: 40px;
	}
}
