/* "Visit Us" map placeholder (page-contact.php) — a decorative grid + pin,
   not a real map embed: no Google Maps API key is configured, and adding
   one is a deployment-time decision, not a theme-build one. */

.map-placeholder-section {
	background: var(--navy);
	color: var(--paper);
	padding-block: var(--section-pad-dark);
}

.map-placeholder-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 48px;
	align-items: center;
}

.map-placeholder-layout h2 {
	color: var(--paper);
}

.map-placeholder__intro {
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 0;
}

.map-placeholder {
	position: relative;
	aspect-ratio: 4 / 3;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
	background-size: 40px 40px;
	background-color: rgba(255, 255, 255, 0.04);
	border-radius: 12px;
	overflow: hidden;
}

.map-placeholder__pin {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -100%);
	width: 28px;
	height: 28px;
	color: var(--cyan);
}

.map-placeholder-address__label {
	font-size: 0.8125rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.5);
	text-transform: uppercase;
	letter-spacing: 0.02em;
	margin-bottom: 8px;
}

.map-placeholder-address__value {
	margin: 0;
	max-width: 32ch;
}

@media (max-width: 900px) {
	.map-placeholder-layout {
		grid-template-columns: 1fr;
	}
}
