/* ---------- Map section ---------- */

.map-section {
	padding: var(--s12) 0;
	position: relative;
	background: var(--cream);
}

.map-section .container {
	width: 100%;
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 var(--s3);
}

/* ---------- Section head ---------- */

.map-section .section-head {
	margin: 0 auto var(--s8);
	text-align: center;
	max-width: 640px;
}

.map-section .section-head .kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 800;
	font-size: .82rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--orange);
	margin-bottom: var(--s2);
}

.map-section .kicker .dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--yellow);
	display: inline-block;
}

.map-section .section-head h2 {
	font-family: var(--font-display);
	font-size: clamp(1.8rem, 3.6vw, 2.6rem);
	line-height: 1.15;
	margin: 0 0 var(--s2);
	color: var(--color-text);
}

.map-section .section-head p {
	color: var(--color-text-muted);
	font-size: 1.06rem;
	max-width: 640px;
	margin: 0 auto;
}

/* ---------- Media (map + photo) ---------- */

.map-media {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: var(--s3);
	align-items: stretch;
}

.map-media--single {
	grid-template-columns: 1fr;
}

.map-frame {
	position: relative;
	overflow: hidden;
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-md);
	min-height: 420px;
	background: var(--gray);
}

.map-frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* ---------- Companion photo ---------- */

.map-photo {
	position: relative;
	overflow: hidden;
	border-radius: var(--r-lg);
	box-shadow: var(--shadow-md);
	min-height: 420px;
}

.map-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* ---------- Responsive ---------- */

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

	.map-frame,
	.map-photo {
		min-height: 320px;
	}
}
