:root {
	--pamk-font-ui: "Bricolage Grotesque", system-ui, sans-serif;
	--pamk-font-display: "Spectral", Georgia, "Times New Roman", serif;
	--pamk-font-cta: "Figtree", system-ui, sans-serif;
	--pamk-text: #1c1917;
	--pamk-muted: #57534e;
}

html {
	scroll-behavior: smooth;
}

body.pamk-ref {
	margin: 0;
	font-family: var(--pamk-font-ui);
	font-size: 1rem;
	line-height: 1.6;
	background: #fff;
	color: var(--pamk-text);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.pamk-ref .pamk-display,
.pamk-ref .pamk-hero__title,
.pamk-ref .pamk-hero__subtitle,
.pamk-ref .pamk-section__title,
.pamk-ref .pamk-footer h3,
.pamk-ref .pamk-card__title,
.pamk-ref .pamk-room-card h3,
.pamk-ref .pamk-room-card__title,
.pamk-ref .pamk-location-point h4,
.pamk-ref .pamk-kontakt-agency-hero__title,
.pamk-ref .pamk-kontakt-agency-form__title,
.pamk-ref .pamk-page-title {
	font-family: var(--pamk-font-display);
}

.pamk-ref a {
	color: inherit;
	text-decoration: none;
}

.pamk-ref a:hover {
	text-decoration: none;
}

.pamk-container {
	width: 100%;
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

.pamk-max-6xl {
	max-width: 72rem;
	margin-left: auto;
	margin-right: auto;
}

.pamk-max-7xl {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
}

.pamk-max-3xl {
	max-width: 48rem;
}

.pamk-max-2xl {
	max-width: 42rem;
}

.pamk-skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
	z-index: 100000;
	padding: 0.65rem 1.1rem;
	background: #0f172a;
	color: #fff !important;
	font-family: var(--pamk-font-ui);
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 2px;
}

.pamk-skip-link:focus {
	left: 0.75rem;
	top: 0.75rem;
	outline: 2px solid #047857;
	outline-offset: 2px;
}

body.admin-bar .pamk-skip-link:focus {
	top: calc(32px + 0.75rem);
}

@media screen and (max-width: 782px) {
	body.admin-bar .pamk-skip-link:focus {
		top: calc(46px + 0.75rem);
	}
}

.pamk-page--inner {
	min-height: 50vh;
	padding: 4.5rem 1rem 4rem;
	background: #fafaf9;
}

.pamk-page-title {
	font-size: clamp(1.5rem, 4vw, 2rem);
	font-weight: 600;
	color: #0f172a;
	margin: 0 0 1.5rem;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.pamk-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 50;
	background: rgb(250 250 249 / 0.78);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgb(231 229 228 / 0.65);
	transition: box-shadow 0.2s ease, background 0.2s ease, backdrop-filter 0.2s ease;
}

.pamk-nav--scrolled {
	background: rgb(255 255 255 / 0.86);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	box-shadow: 0 1px 0 0 rgb(231 229 228 / 0.75);
}

body.admin-bar .pamk-nav {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar .pamk-nav {
		top: 46px;
	}
}

.pamk-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 4.25rem;
	gap: 1.5rem;
}

.pamk-nav__brand {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--pamk-font-ui);
	font-size: 1.0625rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.2;
	color: var(--pamk-text);
	text-decoration: none;
	white-space: nowrap;
}

.pamk-nav__logo {
	height: 2rem;
	width: auto;
	max-width: 10rem;
	object-fit: contain;
	flex-shrink: 0;
}

.pamk-nav__brand:hover {
	color: #0c0a09;
}

.pamk-nav__links {
	display: none;
	align-items: center;
	gap: 0.25rem 1.75rem;
	flex-wrap: wrap;
	justify-content: flex-end;
}

@media (min-width: 768px) {
	.pamk-nav__links {
		display: flex;
	}
}

.pamk-nav__link {
	position: relative;
	display: inline-block;
	padding: 0.35rem 0;
	background: none;
	border: none;
	cursor: pointer;
	font-family: var(--pamk-font-ui);
	font-size: 0.9375rem;
	font-weight: 500;
	font-style: normal;
	line-height: 1.4;
	letter-spacing: -0.01em;
	color: var(--pamk-muted);
	text-decoration: none;
	transition: color 0.15s ease;
}

.pamk-nav__link:hover {
	color: var(--pamk-text);
}

.pamk-nav__link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0.15rem;
	width: 0;
	height: 2px;
	background: #047857;
	transition: width 0.2s ease;
}

.pamk-nav__link:hover::after {
	width: 100%;
}

.pamk-nav__link--current {
	color: var(--pamk-text);
	font-weight: 600;
}

.pamk-nav__link--current::after {
	width: 100%;
	background: #047857;
}

.pamk-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	border-radius: 2px;
	font-family: var(--pamk-font-ui);
	font-weight: 600;
	font-size: 0.9375rem;
	font-style: normal;
	line-height: 1.25;
	letter-spacing: -0.02em;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.pamk-btn--emerald {
	background: #047857;
	color: #fff !important;
	min-height: 2.5rem;
	padding: 0 1.125rem;
	border: 1px solid #047857;
	cursor: pointer;
}

.pamk-btn--emerald:hover {
	background: #065f46;
	border-color: #065f46;
	color: #fff !important;
}

.pamk-btn--nav {
	min-height: 2.5rem;
	padding: 0 1.125rem;
	font-size: 0.875rem;
}

.pamk-btn--nav::after {
	display: none;
}

.pamk-btn--lg {
	min-height: 3rem;
	padding: 0 1.75rem;
	font-size: 1rem;
}

.pamk-btn--outline-white {
	min-height: 3rem;
	padding: 0 1.75rem;
	font-size: 1rem;
	font-family: var(--pamk-font-ui);
	font-weight: 600;
	line-height: 1.25;
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.85);
	color: #fff !important;
}

.pamk-btn--outline-white:hover {
	background: rgba(255, 255, 255, 0.12);
	border-color: #fff;
	color: #fff !important;
}

.pamk-btn--block {
	width: 100%;
}

@media (min-width: 768px) {
	.pamk-btn--block-md-auto {
		width: auto;
	}
}

.pamk-hero {
	position: relative;
	height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-top: 4.25rem;
}

body.admin-bar .pamk-hero {
	margin-top: 0;
	padding-top: calc(4.25rem + 32px);
}

@media screen and (max-width: 782px) {
	body.admin-bar .pamk-hero {
		padding-top: calc(4.25rem + 46px);
	}
}

.pamk-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
}

.pamk-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgb(15 23 42 / 0.6), rgb(15 23 42 / 0.4));
}

.pamk-hero__content {
	position: relative;
	z-index: 10;
	text-align: center;
	color: #fff;
	padding: 0 1rem;
	max-width: 64rem;
	margin: 0 auto;
}

.pamk-hero__intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.pamk-hero__badge {
	display: inline-block;
	padding: 0.4rem 1rem;
	font-family: var(--pamk-font-ui);
	background: rgba(28, 25, 23, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 2px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 0;
	color: rgba(255, 255, 255, 0.95);
}

.pamk-hero__title {
	font-size: 3rem;
	font-weight: 600;
	line-height: 1.12;
	margin: 0;
	letter-spacing: 0.01em;
}

@media (min-width: 768px) {
	.pamk-hero__title {
		font-size: 3.75rem;
	}
}

@media (min-width: 1024px) {
	.pamk-hero__title {
		font-size: 4.25rem;
	}
}

.pamk-hero__subtitle {
	font-size: 1.5rem;
	font-weight: 500;
	font-style: italic;
	letter-spacing: 0.04em;
	color: #a7f3d0;
	margin: 0;
	max-width: 36rem;
}

@media (min-width: 768px) {
	.pamk-hero__subtitle {
		font-size: 1.75rem;
	}
}

.pamk-hero__lead {
	font-size: 1.125rem;
	line-height: 1.65;
	color: #e2e8f0;
	max-width: 38rem;
	margin: 0 auto;
	padding-top: 0.25rem;
	font-weight: 400;
}

@media (min-width: 768px) {
	.pamk-hero__lead {
		font-size: 1.25rem;
		line-height: 1.7;
	}
}

.pamk-hero__actions {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	justify-content: center;
	align-items: stretch;
	padding-top: 1.5rem;
	flex-wrap: wrap;
}

@media (min-width: 640px) {
	.pamk-hero__actions {
		flex-direction: row;
		align-items: center;
		justify-content: center;
		max-width: 52rem;
		margin-left: auto;
		margin-right: auto;
	}
}

.pamk-hero__scroll {
	position: absolute;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	background: none;
	border: none;
	cursor: pointer;
	animation: pamk-bounce 1.5s infinite;
}

@keyframes pamk-bounce {
	0%,
	100% {
		transform: translate(-50%, 0);
	}
	50% {
		transform: translate(-50%, 0.35rem);
	}
}

.pamk-icon {
	display: inline-flex;
	width: 2rem;
	height: 2rem;
	flex-shrink: 0;
}

.pamk-icon svg {
	width: 100%;
	height: 100%;
	display: block;
}

.pamk-section {
	padding: 5rem 0;
}

.pamk-section--muted {
	background: #f8fafc;
}

.pamk-section--white {
	background: #fff;
}

.pamk-section--dark {
	background: #0f172a;
	color: #fff;
}

.pamk-section--cta {
	padding: 4.5rem 1rem 5rem;
	background: linear-gradient(180deg, #fafafa 0%, #f4f4f5 50%, #fafafa 100%);
	color: #27272a;
	text-align: center;
	position: relative;
	overflow: visible;
	border-top: 1px solid #e4e4e7;
	border-bottom: 1px solid #e4e4e7;
}

.pamk-section--cta__inner {
	position: relative;
	z-index: 1;
	max-width: 40rem;
	margin: 0 auto;
}

.pamk-section--cta .pamk-cta-title {
	font-family: var(--pamk-font-cta);
	font-size: 2.125rem;
	font-weight: 600;
	letter-spacing: -0.035em;
	line-height: 1.15;
	color: #18181b;
	margin: 0 0 1rem;
}

@media (min-width: 768px) {
	.pamk-section--cta .pamk-cta-title {
		font-size: 2.75rem;
	}
}

.pamk-cta-eyebrow {
	font-family: var(--pamk-font-cta);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #047857;
	margin: 0 0 0.75rem;
}

.pamk-section--cta .pamk-cta-text {
	font-family: var(--pamk-font-cta);
	font-size: 1.0625rem;
	line-height: 1.65;
	font-weight: 400;
	color: #52525b;
	margin: 0 auto 1.75rem;
	max-width: 28rem;
}

.pamk-cta-btn {
	box-shadow: 0 2px 12px rgb(4 120 87 / 0.2);
}

.pamk-cta-btn:hover {
	box-shadow: 0 4px 20px rgb(4 120 87 / 0.28);
}

.pamk-section__title {
	font-size: 2.25rem;
	font-weight: 600;
	color: #0f172a;
	margin: 0 0 1rem;
	text-align: center;
}

@media (min-width: 768px) {
	.pamk-section__title {
		font-size: 3rem;
	}
}

.pamk-section__subtitle {
	font-size: 1.25rem;
	color: #475569;
	max-width: 42rem;
	margin: 0 auto 3rem;
	text-align: center;
}

.pamk-section--rooms {
	padding-bottom: 5.5rem;
}

#rooms {
	scroll-margin-top: 5.75rem;
}

body.admin-bar #rooms {
	scroll-margin-top: 8rem;
}

@media screen and (max-width: 782px) {
	body.admin-bar #rooms {
		scroll-margin-top: 8.5rem;
	}
}

.pamk-section__subtitle--rooms {
	margin-bottom: 2.5rem;
}

.pamk-grid-2 {
	display: grid;
	gap: 4rem;
	align-items: center;
	margin-bottom: 4rem;
}

@media (min-width: 1024px) {
	.pamk-grid-2 {
		grid-template-columns: 1fr 1fr;
	}
}

.pamk-badge-emerald {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	background: #d1fae5;
	color: #047857;
	border-radius: 9999px;
	font-size: 0.875rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

.pamk-prose {
	font-size: 1.125rem;
	line-height: 1.75;
	color: #475569;
}

.pamk-prose p {
	margin: 0 0 1.5rem;
}

.pamk-prose p:last-child {
	margin-bottom: 0;
}

.pamk-img-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.pamk-img-grid__col--offset {
	padding-top: 2rem;
}

.pamk-img-tile {
	border-radius: 0.5rem;
	background-size: cover;
	background-position: center;
	width: 100%;
}

.pamk-img-tile--h48 {
	height: 12rem;
}

.pamk-img-tile--h56 {
	height: 14rem;
}

.pamk-grid-3 {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.pamk-grid-3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

.pamk-card {
	border: 1px solid #e2e8f0;
	border-radius: 0.5rem;
	background: #fff;
	transition: border-color 0.15s ease;
}

.pamk-card:hover {
	border-color: #a7f3d0;
}

.pamk-card__body {
	padding: 1.5rem;
}

.pamk-card__icon-wrap {
	width: 3rem;
	height: 3rem;
	background: #d1fae5;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
}

.pamk-card__title {
	font-weight: 600;
	color: #0f172a;
	margin: 0 0 0.5rem;
	font-size: 1.125rem;
}

.pamk-card__text {
	color: #475569;
	margin: 0;
	font-size: 1rem;
}

.pamk-features {
	display: grid;
	gap: 2rem;
	text-align: center;
}

@media (min-width: 768px) {
	.pamk-features {
		grid-template-columns: repeat(4, 1fr);
	}
}

.pamk-feature__icon {
	display: inline-flex;
	width: 4rem;
	height: 4rem;
	align-items: center;
	justify-content: center;
	border-radius: 9999px;
	background: #d1fae5;
	margin-bottom: 1rem;
}

.pamk-feature__title {
	font-weight: 600;
	color: #0f172a;
	margin: 0 0 0.25rem;
}

.pamk-feature__desc {
	font-size: 0.875rem;
	color: #475569;
	margin: 0;
}

.pamk-room-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 1px solid #e2e8f0;
	border-radius: 0.75rem;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 1px 2px rgb(15 23 42 / 0.05);
	transition:
		box-shadow 0.2s ease,
		border-color 0.2s ease;
}

.pamk-room-card:hover {
	border-color: #cbd5e1;
	box-shadow: 0 10px 28px rgb(15 23 42 / 0.08);
}

.pamk-room-card__title {
	font-size: 1.125rem;
	font-weight: 600;
	color: #0f172a;
	margin: 0;
	padding: 1.125rem 1.25rem;
	line-height: 1.35;
	min-height: 5rem;
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
	border-bottom: 1px solid #f1f5f9;
	background: #fafafa;
}

.pamk-room-card .pamk-card__body {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	padding: 1.125rem 1.25rem 1.375rem;
}

.pamk-room-card__img-wrap {
	position: relative;
	flex-shrink: 0;
	width: 100%;
	aspect-ratio: 4 / 3;
	max-height: 15rem;
	overflow: hidden;
	background: #f1f5f9;
}

.pamk-room-card__img-wrap--split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3px;
}

.pamk-room-card__img-wrap--split .pamk-room-card__img {
	position: relative;
	inset: auto;
	min-height: 0;
}

.pamk-room-card__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: transform 0.35s ease;
}

.pamk-room-card:hover .pamk-room-card__img {
	transform: scale(1.04);
}

.pamk-check-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pamk-check-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	color: #475569;
	margin-bottom: 0.5rem;
	font-size: 0.9375rem;
	line-height: 1.45;
}

.pamk-room-card .pamk-check-list li:last-child {
	margin-bottom: 0;
}

.pamk-check-list svg {
	flex-shrink: 0;
	color: #059669;
	width: 1rem;
	height: 1rem;
	max-width: 1rem;
	max-height: 1rem;
	display: block;
	margin-top: 0.15em;
}

.pamk-card__icon-wrap > svg {
	width: 1.5rem;
	height: 1.5rem;
	max-width: 1.5rem;
	max-height: 1.5rem;
	display: block;
	flex-shrink: 0;
}

.pamk-feature__icon > svg {
	width: 2rem;
	height: 2rem;
	max-width: 2rem;
	max-height: 2rem;
	display: block;
	flex-shrink: 0;
}

.pamk-location-point__icon > svg {
	width: 1.5rem;
	height: 1.5rem;
	max-width: 1.5rem;
	max-height: 1.5rem;
	display: block;
	flex-shrink: 0;
}

.pamk-welcome-baths {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0.75rem;
	margin: 0 0 3rem;
}

.pamk-welcome-baths__item {
	aspect-ratio: 4 / 3;
	border-radius: 0.5rem;
	background-size: cover;
	background-position: center;
	background-color: #f1f5f9;
	border: 1px solid #e2e8f0;
	box-shadow: 0 1px 2px rgb(15 23 42 / 0.04);
}

@media (max-width: 639px) {
	.pamk-welcome-baths {
		grid-template-columns: 1fr;
		gap: 0.625rem;
	}
}

.pamk-gallery {
	border-bottom: 1px solid #e2e8f0;
	background: #f1f5f9;
}

.pamk-gallery:focus {
	outline: none;
}

.pamk-gallery:focus-visible {
	box-shadow: inset 0 0 0 2px #047857;
}

.pamk-gallery__stage {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	gap: 0;
	min-height: 12rem;
	max-height: 22rem;
	aspect-ratio: 16 / 9;
	background: #e2e8f0;
}

.pamk-gallery__frame {
	flex: 1;
	min-width: 0;
	position: relative;
	display: flex;
	flex-direction: column;
}

.pamk-gallery__view {
	display: block;
	width: 100%;
	flex: 1;
	min-height: 0;
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	cursor: zoom-in;
	line-height: 0;
	text-align: left;
	position: relative;
}

.pamk-gallery__view::after {
	content: '';
	position: absolute;
	inset: 0;
	background: transparent;
	transition: background 0.2s ease;
	pointer-events: none;
}

.pamk-gallery__view:hover::after {
	background: rgb(15 23 42 / 0.04);
}

.pamk-gallery__view:focus {
	outline: none;
}

.pamk-gallery__view:focus-visible {
	outline: 2px solid #047857;
	outline-offset: -2px;
}

.pamk-gallery__main {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 11rem;
	object-fit: cover;
}

.pamk-gallery__counter {
	position: absolute;
	bottom: 0.65rem;
	left: 50%;
	transform: translateX(-50%);
	padding: 0.2rem 0.55rem;
	font-family: var(--pamk-font-ui);
	font-size: 0.75rem;
	font-weight: 600;
	font-variant-numeric: tabular-nums;
	color: #f8fafc;
	background: rgb(15 23 42 / 0.55);
	border-radius: 9999px;
	letter-spacing: 0.02em;
	pointer-events: none;
	z-index: 1;
}

.pamk-gallery__counter-sep {
	margin: 0 0.15em;
	opacity: 0.85;
}

.pamk-gallery__arrow {
	flex: 0 0 2.75rem;
	width: 2.75rem;
	align-self: stretch;
	min-height: 8rem;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: #fff;
	color: #334155;
	cursor: pointer;
	transition:
		background 0.15s ease,
		color 0.15s ease;
	box-shadow: inset 0 0 0 1px #e2e8f0;
}

.pamk-gallery__arrow:hover,
.pamk-gallery__arrow:focus-visible {
	background: #ecfdf5;
	color: #047857;
	outline: none;
}

.pamk-gallery__arrow:focus-visible {
	box-shadow: inset 0 0 0 2px #047857;
}

.pamk-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	box-sizing: border-box;
}

.pamk-lightbox[hidden] {
	display: none;
}

.pamk-lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgb(15 23 42 / 0.78);
}

.pamk-lightbox__panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 56rem;
	max-height: min(92vh, 900px);
	overflow: auto;
	margin: auto;
	padding: 2.75rem 1rem 1rem;
	background: #fff;
	border-radius: 0.75rem;
	box-shadow: 0 25px 50px rgb(0 0 0 / 0.2);
}

.pamk-lightbox__close {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	z-index: 2;
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	font-size: 1.5rem;
	line-height: 1;
	color: #64748b;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 0.375rem;
	cursor: pointer;
	transition:
		background 0.15s ease,
		color 0.15s ease;
}

.pamk-lightbox__close:hover,
.pamk-lightbox__close:focus-visible {
	background: #f1f5f9;
	color: #0f172a;
	outline: none;
}

.pamk-lightbox__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(12rem, 1fr));
	gap: 0.875rem;
}

@media (min-width: 640px) {
	.pamk-lightbox__grid {
		grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
		gap: 1.125rem;
	}
}

.pamk-lightbox__figure {
	margin: 0;
}

.pamk-lightbox__figure img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 0.375rem;
}

.pamk-grid-rooms {
	display: grid;
	gap: 1.5rem;
	margin-bottom: 3rem;
	grid-template-columns: 1fr;
	align-items: stretch;
}

@media (min-width: 640px) {
	.pamk-grid-rooms {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.5rem 1.25rem;
	}
}

@media (min-width: 1024px) {
	.pamk-grid-rooms {
		gap: 2rem 1.75rem;
	}
}

.pamk-card-large .pamk-card__body {
	padding: 2rem;
}

.pamk-split-check {
	display: grid;
	gap: 2rem;
}

@media (min-width: 768px) {
	.pamk-split-check {
		grid-template-columns: 1fr 1fr;
	}
}

.pamk-split-check h4 {
	font-weight: 600;
	color: #0f172a;
	margin: 0 0 1rem;
}

.pamk-location-grid {
	display: grid;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 1024px) {
	.pamk-location-grid {
		grid-template-columns: 1fr 1fr;
	}
}

.pamk-location-points {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.pamk-location-point {
	display: flex;
	gap: 1rem;
}

.pamk-location-point__icon {
	width: 3rem;
	height: 3rem;
	background: #d1fae5;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.pamk-location-img {
	height: 31.25rem;
	border-radius: 0.75rem;
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
	background-size: cover;
	background-position: center;
}

.pamk-footer {
	background: #070b12;
	color: #fff;
	padding: 3.5rem 1rem 2.5rem;
	border-top: 1px solid rgb(255 255 255 / 0.08);
}

.pamk-footer__grid {
	display: grid;
	gap: 2.5rem;
	align-items: start;
}

@media (min-width: 768px) {
	.pamk-footer__grid {
		grid-template-columns: 1.35fr 1fr 1fr;
		gap: 3rem;
	}
}

.pamk-footer__brand h3 {
	font-size: 1.75rem;
	font-weight: 600;
	margin: 0 0 1rem;
	letter-spacing: 0.02em;
	line-height: 1.2;
}

.pamk-footer__tagline {
	color: #94a3b8;
	font-size: 0.9375rem;
	line-height: 1.75;
	margin: 0;
	max-width: 28rem;
}

.pamk-footer__col h4 {
	margin: 0 0 1.125rem;
	font-family: var(--pamk-font-ui);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #64748b;
}

.pamk-footer__nav {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.pamk-footer__nav a,
.pamk-footer__nav button {
	display: block;
	color: #cbd5e1;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	text-align: left;
	font: inherit;
	font-size: 0.9375rem;
	line-height: 1.5;
	transition: color 0.15s ease;
}

.pamk-footer__nav a:hover,
.pamk-footer__nav button:hover {
	color: #34d399;
}

.pamk-footer__nav--legal a {
	color: #94a3b8;
	font-size: 0.875rem;
}

.pamk-footer__nav--legal a:hover {
	color: #e2e8f0;
}

.pamk-footer__copy {
	margin-top: 2.75rem;
	padding-top: 1.75rem;
	border-top: 1px solid rgb(255 255 255 / 0.08);
	text-align: center;
	font-size: 0.8125rem;
	color: #64748b;
	letter-spacing: 0.02em;
}

.pamk-page--kontakt {
	min-height: 100vh;
	padding-top: 3.65rem;
}

body.admin-bar .pamk-page--kontakt {
	padding-top: calc(32px + 3.65rem);
}

@media screen and (max-width: 782px) {
	body.admin-bar .pamk-page--kontakt {
		padding-top: calc(46px + 3.65rem);
	}
}

.pamk-card--emerald {
	background: #ecfdf5;
	border-color: #a7f3d0;
}

.pamk-legal-prose .pamk-legal-prose__h2 {
	font-family: var(--pamk-font-display);
	font-size: 1.25rem;
	font-weight: 600;
	color: #0f172a;
	margin: 2rem 0 0.75rem;
	line-height: 1.3;
}

.pamk-legal-prose .pamk-legal-prose__h2:first-child {
	margin-top: 0;
}

.pamk-legal-prose .pamk-legal-prose__h3 {
	font-family: var(--pamk-font-ui);
	font-size: 1rem;
	font-weight: 600;
	color: #1c1917;
	margin: 1.25rem 0 0.5rem;
}

.pamk-legal-prose__ul {
	margin: 0.5rem 0 1rem 1.25rem;
	padding: 0;
	list-style: disc;
}

.pamk-legal-prose__ul li {
	margin-bottom: 0.35rem;
}
