.mmp-shell {
	--mmp-green: #174f46;
	--mmp-green-deep: #123f38;
	--mmp-sand: #f5f2e7;
	--mmp-sand-strong: #ece8d7;
	--mmp-lime: #e4efc8;
	--mmp-text: #184940;
	--mmp-muted: #55756e;
	--mmp-shadow: 0 30px 60px rgba(20, 59, 51, 0.08);
	--mmp-viewport-gap: 28px;
	--mmp-map-height: 94vh;
	--mmp-closed-tab-height: 189px;
	--mmp-card-closed-bg: #f5f2e7;
	--mmp-card-active-bg: #174f46;
	--mmp-content-bg: #e4efc8;
	--mmp-icon-bg: #b9a9a1;
	--mmp-button-bg: #174f46;
	--mmp-marker-bg: #af9c94;
	--mmp-marker-active-bg: #dfb5ad;
	--mmp-sea-bg: #f6f7f2;
	--mmp-tab-radius: 26px;
	position: relative;
	left: auto;
	width: 100%;
	max-width: 100%;
	height: auto;
	min-height: 100vh;
	margin-left: 0;
	margin-right: 0;
	transform: none;
	overflow: visible;
}

.mmp-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	align-items: start;
	min-height: 100dvh;
	background: #fff;
}

.mmp-map-column,
.mmp-tabs-column {
	min-height: 0;
}

.mmp-map-column {
	position: sticky;
	top: 16px;
	align-self: start;
	padding: var(--mmp-viewport-gap) 18px var(--mmp-viewport-gap) 28px;
	box-sizing: border-box;
}

.mmp-map-panel {
	height: calc(var(--mmp-map-height) - (var(--mmp-viewport-gap) * 2));
	border-radius: var(--mmp-tab-radius);
	border: 1px solid #d7ddd4;
	overflow: hidden;
	box-shadow: var(--mmp-shadow);
	background: #eef2eb;
}

.mmp-map-canvas {
	height: 100%;
	min-height: 100%;
}

.mmp-map-canvas .maplibregl-map,
.mmp-map-canvas .maplibregl-canvas-container,
.mmp-map-canvas .maplibregl-canvas {
	height: 100%;
	width: 100%;
}

.mmp-tabs-column {
	height: auto;
	min-height: 0;
	padding: var(--mmp-viewport-gap) 28px var(--mmp-viewport-gap) 18px;
	box-sizing: border-box;
}

.mmp-tabs-scroll {
	display: flex;
	flex-direction: column;
	gap: 24px;
	height: auto;
	overflow: visible;
	padding-right: 0;
}

.mmp-card {
	border-radius: var(--mmp-tab-radius);
	background: var(--mmp-card-closed-bg);
	transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
	box-shadow: 0 15px 40px rgba(21, 58, 51, 0.05);
	scroll-margin-top: 28px;
}

.mmp-card.is-active {
	background: transparent;
	box-shadow: none;
}

.mmp-card-summary {
	display: grid;
	grid-template-columns: clamp(160px, calc(var(--mmp-closed-tab-height) * 1.38), 240px) minmax(0, 1fr) auto;
	align-items: center;
	width: 100%;
	min-height: var(--mmp-closed-tab-height);
	padding: 22px;
	border: 0;
	border-radius: var(--mmp-tab-radius);
	background: var(--mmp-card-closed-bg);
	color: var(--mmp-text);
	text-align: left;
	cursor: pointer;
	transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.mmp-card-summary:focus,
.mmp-card-summary:focus-visible {
	outline: none;
	box-shadow: none;
}

.mmp-card:hover .mmp-card-summary {
	transform: translateY(-2px);
}

.mmp-card.is-active .mmp-card-summary {
	background: var(--mmp-card-active-bg);
	color: #fff;
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.mmp-card-media {
	width: 100%;
	height: calc(var(--mmp-closed-tab-height) - 44px);
	border-radius: 18px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.18);
}

.mmp-card-media img,
.mmp-card-placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.mmp-card-placeholder {
	background: linear-gradient(135deg, rgba(255,255,255,.22), rgba(255,255,255,.06));
}

.mmp-card-copy {
	padding: 0 22px 0 26px;
	min-width: 0;
}

.mmp-card-copy h3 {
	margin: 0 0 8px;
	font-size: clamp(28px, 2.3vw, 34px);
	line-height: 1.04;
	font-weight: 500;
	letter-spacing: -0.04em;
	word-break: break-word;
	overflow-wrap: anywhere;
}

.mmp-card-copy p {
	margin: 0;
	font-size: 18px;
	color: inherit;
	opacity: 0.9;
	word-break: break-word;
	overflow-wrap: anywhere;
}

.mmp-card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--mmp-icon-bg);
	color: #fff;
	flex-shrink: 0;
	transition: transform 220ms ease, background 220ms ease;
}

.mmp-card.is-active .mmp-card-icon {
	transform: rotate(45deg);
	background: var(--mmp-icon-bg);
}

.mmp-card-icon svg {
	width: 24px;
	height: 24px;
}

.mmp-card-panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 260ms ease;
}

.mmp-card.is-active .mmp-card-panel {
	grid-template-rows: 1fr;
}

.mmp-card-panel-inner {
	min-height: 0;
	overflow: hidden;
	border-radius: var(--mmp-tab-radius);
	background: linear-gradient(180deg, color-mix(in srgb, var(--mmp-content-bg) 88%, #ffffff 12%) 0%, var(--mmp-content-bg) 100%);
	color: var(--mmp-text);
}

.mmp-card.is-active .mmp-card-panel-inner {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.mmp-card-richtext {
	padding: 32px;
	font-size: 18px;
	line-height: 1.65;
}

.mmp-detail-block {
	padding: 32px 32px 0;
}

.mmp-detail-block h4 {
	margin: 0 0 18px;
	font-size: 22px;
	line-height: 1.1;
	color: var(--mmp-text);
}

.mmp-detail-list {
	margin: 0;
}

.mmp-detail-row {
	display: grid;
	grid-template-columns: minmax(160px, 0.7fr) minmax(0, 1.3fr);
	gap: 10px;
	margin-bottom: 8px;
}

.mmp-detail-row dt,
.mmp-detail-row dd {
	margin: 0;
	font-size: 17px;
	line-height: 1.35;
}

.mmp-detail-row dt {
	font-weight: 700;
	color: var(--mmp-text);
}

.mmp-detail-row dd {
	color: #1e2d2a;
}

.mmp-contact-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px 36px;
	padding: 10px 32px 32px;
}

.mmp-contact-item h5 {
	margin: 0 0 8px;
	font-size: 17px;
	line-height: 1.2;
	color: var(--mmp-text);
}

.mmp-contact-value {
	font-size: 18px;
	line-height: 1.35;
	color: #1e2d2a;
}

.mmp-contact-value a {
	color: var(--mmp-text);
	text-decoration: none;
	font-weight: 700;
}

.mmp-card-richtext > *:first-child {
	margin-top: 0;
}

.mmp-card-richtext > *:last-child {
	margin-bottom: 0;
}

.mmp-card-actions {
	padding: 0 32px 32px;
}

.mmp-card-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 22px;
	border-radius: 999px;
	background: var(--mmp-button-bg);
	color: #fff;
	text-decoration: none;
	font-size: 15px;
	font-weight: 600;
}

.mmp-card-button:hover,
.mmp-card-button:focus {
	background: color-mix(in srgb, var(--mmp-button-bg) 82%, #000000 18%);
	color: #fff;
}

.mmp-shell .maplibregl-map {
	background: #eef2eb;
	font-family: inherit;
	min-width: 100%;
}

.mmp-shell .maplibregl-ctrl-top-left {
	top: 12px;
	left: 12px;
}

.mmp-shell .maplibregl-ctrl-group {
	border: 0;
	border-radius: 14px;
	box-shadow: 0 10px 20px rgba(20, 59, 51, 0.12);
	overflow: hidden;
}

.mmp-shell .maplibregl-ctrl button {
	width: 42px;
	height: 42px;
	color: #44645d;
}

.mmp-shell .maplibregl-ctrl button .maplibregl-ctrl-icon {
	filter: saturate(0.7);
}

.mmp-map-marker {
	cursor: pointer;
}

.mmp-marker-button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 5px solid #fff;
	border-radius: 50%;
	background: var(--mmp-marker-bg);
	box-shadow: 0 10px 18px rgba(20, 59, 51, 0.18);
	transition: transform 180ms ease, background 180ms ease;
}

.mmp-marker-button::after {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #fff;
}

.mmp-marker-button.is-active {
	background: var(--mmp-marker-active-bg);
	transform: scale(1.14);
}

.mmp-marker-stack {
	position: relative;
	display: block;
	width: 48px;
	height: 48px;
}

.mmp-marker-stack__layer,
.mmp-marker-stack__main {
	position: absolute;
	border-radius: 50%;
	box-shadow: 0 10px 18px rgba(20, 59, 51, 0.16);
}

.mmp-marker-stack__layer {
	background: rgba(255, 255, 255, 0.92);
	border: 3px solid #fff;
}

.mmp-marker-stack__layer--back {
	inset: 7px 5px 5px 7px;
	opacity: 0.6;
	transform: translate(-5px, -5px);
}

.mmp-marker-stack__layer--mid {
	inset: 5px 7px 7px 5px;
	opacity: 0.78;
	transform: translate(-2px, -2px);
}

.mmp-marker-stack__main {
	inset: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--mmp-marker-bg);
	border: 5px solid #fff;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.mmp-marker-stack.is-active .mmp-marker-stack__main {
	background: var(--mmp-marker-active-bg);
	transform: scale(1.06);
}

.mmp-empty-state {
	padding: 24px;
	border-radius: 18px;
	background: #f6f3e9;
	color: #184f46;
}

@media (max-width: 1280px) {
	.mmp-card-summary {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.mmp-card-copy {
		padding: 0;
	}

	.mmp-card-icon {
		justify-self: flex-start;
	}
}

@media (max-width: 900px) {
	.mmp-shell,
	.mmp-layout,
	.mmp-map-column,
	.mmp-tabs-column {
		height: auto;
		min-height: 0;
	}

	.mmp-layout {
		grid-template-columns: 1fr;
	}

	.mmp-map-column {
		position: relative;
		padding: 20px 20px 10px;
	}

	.mmp-map-panel,
	.mmp-map-canvas {
		height: min(62vh, 620px);
	}

	.mmp-tabs-column {
		padding: 10px 20px 20px;
	}

	.mmp-tabs-scroll {
		height: auto;
		overflow: visible;
		padding-right: 0;
	}
}

@media (max-width: 767px) {
	.mmp-detail-row,
	.mmp-contact-grid {
		grid-template-columns: 1fr;
	}

	.mmp-card-copy h3 {
		font-size: 32px;
	}
}
