/* =====================================================================
   Eventlokationen.dk — hovedstilark
   Teal/blågrøn accent · lys baggrund · moderne marketplace
   ===================================================================== */

:root {
	--teal-50: #f0fdfa;
	--teal-100: #ccfbf1;
	--teal-200: #99f6e4;
	--teal-300: #5eead4;
	--teal-400: #2dd4bf;
	--teal-500: #14b8a6;
	--teal-600: #0d9488;
	--teal-700: #0f766e;
	--teal-800: #115e59;
	--teal-900: #134e4a;
	--teal: var(--teal-700); /* brand-alias; bruges af mange regler. teal-700 ↔ hvid = 5.5:1 (AA) */
	--ink-950: #020617;
	--ink-900: #0f172a;
	--ink-800: #1e293b;
	--ink-700: #334155;
	--ink-600: #475569;
	--ink-500: #64748b;
	--ink-400: #94a3b8;
	--ink-300: #cbd5e1;
	--ink-200: #e2e8f0;
	--ink-100: #f1f5f9;
	--ink-50: #f8fafc;
	--bg: #f8fafc;
	--surface: #ffffff;
	--amber: #f59e0b;
	--amber-bg: #fef3c7;
	--green: #16a34a;
	--green-bg: #dcfce7;
	--violet: #7c3aed;
	--violet-bg: #ede9fe;
	--gold: #b45309;
	--gold-bg: #fde68a;
	--red: #dc2626;
	--red-bg: #fee2e2;
	--blue: #2563eb;
	--blue-bg: #dbeafe;

	--radius: 14px;
	--radius-sm: 9px;
	--radius-lg: 22px;
	--shadow-sm:
		0 1px 2px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.08);
	--shadow:
		0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.06);
	--shadow-lg: 0 18px 40px -12px rgba(15, 23, 42, 0.18);
	--maxw: 1200px;
	--font:
		"Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto,
		sans-serif;
	--font-body: "Inter", system-ui, sans-serif;

	--ease-out: cubic-bezier(0.16, 0.84, 0.44, 1);
	--ease-in: cubic-bezier(0.5, 0, 0.75, 0);
	--reveal-y: 18px;
	--reveal-dur: 0.62s;

	/* ---- Mobile-first kontrol-tokens ---- */
	--control-h: 44px; /* min. højde på knapper/inputs (touch target) */
	--tap-min: 44px; /* min. tap-areal på ikon-knapper */

	/* ---- Z-index-skala (konsolideret, kollisionsfri) ----
	   Tidligere spredte værdier (40/50/55/60/100/120/200/300) mappes hertil. */
	--z-base: 1;
	--z-sticky: 50; /* sektions-subnav o.l. */
	--z-header: 100; /* sticky topbar */
	--z-overlay: 120; /* mobil filter-drawer / map-overlay */
	--z-stickybar: 130; /* sticky venue-CTA / compare-tray / compare-sticky */
	--z-nav: 140; /* fuldskærms mobilmenu (over alt chrome) */
	--z-modal: 200; /* lightbox / skip-link */
	--z-toast: 300; /* flash-beskeder */

	/* ---- Breakpoint-konvention (dokumentation; @media bruger rene px) ----
	   Mobile-first: base = mobil, breakpoints udvider opad.
	   sm 480 · md 768 · lg 980 · nav 1100 (topbar-nav fits først her) · xl 1280 */
}

* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink-800);
	background: var(--bg);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
	overflow-x: clip; /* fuldbredde-hero (100vw breakout) må ikke give vandret scroll; clip bevarer sticky-topbar */
}
h1,
h2,
h3,
h4 {
	font-family: var(--font);
	color: var(--ink-900);
	line-height: 1.2;
	margin: 0 0 0.4em;
	font-weight: 700;
}
a {
	color: var(--teal-700);
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
img {
	max-width: 100%;
	display: block;
}
button {
	font-family: inherit;
	cursor: pointer;
}

.container {
	width: 100%;
	max-width: var(--maxw);
	margin: 0 auto;
	padding: 0 20px;
}
.container--narrow {
	max-width: 780px;
}
.skip-link {
	position: absolute;
	left: -9999px;
}
.skip-link:focus {
	left: 16px;
	top: 16px;
	background: #fff;
	padding: 10px 16px;
	border-radius: 8px;
	z-index: 200;
	box-shadow: var(--shadow);
}

/* ---------- Knapper ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5em;
	font-family: var(--font);
	font-weight: 600;
	font-size: 0.95rem;
	padding: 0.7em 1.3em;
	min-height: var(--control-h); /* 44px touch target */
	border-radius: 999px;
	border: 1.5px solid transparent;
	transition: 0.15s ease;
	text-decoration: none;
	/* normal (ikke nowrap): lange danske labels wrapper pænt i stedet for at
	   sprænge layoutet vandret på smalle skærme. */
	white-space: normal;
	text-align: center;
	line-height: 1.15;
}
.btn:hover {
	text-decoration: none;
	transform: translateY(-1px);
}
.btn--primary {
	background: var(--teal-700); /* teal-700 ↔ #fff = 5.5:1 (AA); teal-600 var kun 3.75:1 */
	color: #fff;
}
.btn--primary:hover {
	background: var(--teal-800);
	color: #fff;
	box-shadow: var(--shadow);
}
.btn--outline {
	background: transparent;
	border-color: var(--ink-300);
	color: var(--ink-800);
}
.btn--outline:hover {
	border-color: var(--teal-600);
	color: var(--teal-700);
}
.btn--ghost {
	background: var(--ink-100);
	color: var(--ink-800);
}
.btn--ghost:hover {
	background: var(--ink-200);
}
.btn--block {
	width: 100%;
}
.btn--lg {
	padding: 0.85em 1.7em;
	font-size: 1.02rem;
}
.btn--sm {
	padding: 0.5em 0.9em;
	font-size: 0.85rem;
}

/* ---------- Topbar ---------- */
.topbar {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, 0.82);
	-webkit-backdrop-filter: blur(14px) saturate(140%);
	backdrop-filter: blur(14px) saturate(140%);
	border-bottom: 1px solid transparent;
	transition:
		background-color 0.3s var(--ease-out),
		box-shadow 0.3s var(--ease-out);
}
/* Fin hairline-bund med teal-anstrøg i stedet for flad grå streg */
.topbar::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(13, 148, 136, 0.22) 18%,
		rgba(15, 23, 42, 0.1) 50%,
		rgba(13, 148, 136, 0.22) 82%,
		transparent
	);
	pointer-events: none;
}
.topbar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	height: 68px;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	min-height: var(--tap-min); /* logo-link = fuldt tap-areal */
	font-family: var(--font);
	font-weight: 800;
	font-size: 1.18rem;
	letter-spacing: -0.015em;
	color: var(--ink-900);
	position: relative;
	z-index: 60;
}
.brand:hover {
	text-decoration: none;
}
.brand__mark {
	transition:
		transform 0.35s var(--ease-out),
		filter 0.35s var(--ease-out);
	filter: drop-shadow(0 2px 4px rgba(13, 148, 136, 0.18));
}
.brand:hover .brand__mark {
	transform: rotate(-8deg) scale(1.06);
	filter: drop-shadow(0 4px 10px rgba(13, 148, 136, 0.32));
}
.brand__dot {
	background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.brand--light .brand__name {
	color: #fff;
}
.brand--light .brand__dot {
	-webkit-text-fill-color: initial;
	color: var(--teal-300);
	background: none;
}

.topbar__nav {
	display: flex;
	align-items: center;
	gap: 16px;
}
.topbar__links {
	display: flex;
	align-items: center;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.topbar__link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 8px 10px;
	border-radius: var(--radius-sm);
	color: var(--ink-700);
	font-family: var(--font);
	font-weight: 600;
	font-size: 0.9rem;
	background: none;
	border: 0;
	cursor: pointer;
	transition: color 0.18s var(--ease-out);
}
.topbar__link::after {
	content: "";
	position: absolute;
	left: 12px;
	right: 12px;
	bottom: 3px;
	height: 2px;
	border-radius: 2px;
	background: linear-gradient(90deg, var(--teal-500), var(--teal-700));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.25s var(--ease-out);
}
.topbar__link:hover {
	color: var(--teal-700);
	background: var(--teal-50);
	text-decoration: none;
}
.topbar__link:hover::after,
.topbar__link.is-active::after,
.topbar__mega.is-active .topbar__mega-trigger::after,
.topbar__mega.is-open .topbar__mega-trigger::after {
	transform: scaleX(1);
}
.topbar__link.is-active {
	color: var(--ink-900);
	background: var(--teal-50);
}
/* Ikon i top-links: dæmpet som standard, teal ved hover/aktiv (matcher mega-foot) */
.topbar__link-ico {
	color: var(--ink-400);
	transition: color 0.18s var(--ease-out);
}
.topbar__link:hover .topbar__link-ico,
.topbar__link.is-active .topbar__link-ico {
	color: var(--teal-600);
}

.topbar__actions {
	position: relative;
	display: flex;
	align-items: center;
	gap: 8px;
}
/* Header-scopede knapper er en anelse mere kompakte, så hele nav-rækken får
   plads ned til ~1100px (under det skifter topbaren til hamburger-overlay). */
.topbar__actions .btn {
	padding: 0.55em 1em;
	font-size: 0.9rem;
}
/* Fin lodret skillelinje mellem nav-gruppen og handlingerne */
.topbar__actions::before {
	content: "";
	align-self: center;
	width: 1px;
	height: 22px;
	background: var(--ink-200);
	margin-right: 2px;
}
.topbar__user {
	font-size: 0.9rem;
	color: var(--ink-600);
}

/* Glødende primær-CTA — scopet til headeren, så øvrige .btn--primary er uberørt */
.topbar__cta {
	background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
	border-color: transparent;
	box-shadow: 0 8px 24px -9px rgba(13, 148, 136, 0.7);
}
.topbar__cta:hover {
	background: linear-gradient(135deg, var(--teal-400), var(--teal-600));
	color: #fff;
	box-shadow: 0 14px 32px -8px rgba(13, 148, 136, 0.9);
	transform: translateY(-1px);
}

/* Hamburger → X (drives af aria-expanded, som JS sætter) */
.topbar__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
	position: relative;
	z-index: 60;
}
.topbar__toggle-bars {
	position: relative;
	width: 24px;
	height: 18px;
}
.topbar__toggle-bars span {
	position: absolute;
	left: 0;
	width: 24px;
	height: 2px;
	background: var(--ink-900);
	border-radius: 2px;
	transition:
		transform 0.3s var(--ease-out),
		opacity 0.2s var(--ease-out);
}
.topbar__toggle-bars span:nth-child(1) {
	top: 0;
}
.topbar__toggle-bars span:nth-child(2) {
	top: 8px;
}
.topbar__toggle-bars span:nth-child(3) {
	top: 16px;
}
.topbar__toggle[aria-expanded="true"] .topbar__toggle-bars span:nth-child(1) {
	transform: translateY(8px) rotate(45deg);
}
.topbar__toggle[aria-expanded="true"] .topbar__toggle-bars span:nth-child(2) {
	opacity: 0;
}
.topbar__toggle[aria-expanded="true"] .topbar__toggle-bars span:nth-child(3) {
	transform: translateY(-8px) rotate(-45deg);
}

/* ---------- Mega-menu (Eventtyper) ---------- */
.topbar__mega {
	position: relative;
}
.topbar__mega-caret {
	color: var(--ink-400);
	transition:
		transform 0.2s var(--ease-out),
		color 0.18s var(--ease-out);
}
.topbar__mega-trigger:hover .topbar__mega-caret,
.topbar__mega.is-open .topbar__mega-caret {
	color: var(--teal-600);
}
.topbar__mega.is-open .topbar__mega-caret {
	transform: rotate(180deg);
}
.topbar__mega-panel {
	position: absolute;
	left: 0;
	top: calc(100% + 12px);
	width: 680px;
	max-width: calc(100vw - 40px);
	padding: 12px;
	background: #fff;
	border: 1px solid var(--ink-200);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	z-index: 120;
	opacity: 0;
	transform: translateY(8px);
	transition:
		opacity 0.2s var(--ease-out),
		transform 0.22s var(--ease-out);
}
.topbar__mega.is-open .topbar__mega-panel {
	opacity: 1;
	transform: none;
}
.topbar__mega-panel[hidden] {
	display: none;
}
/* Usynlig bro over 12px-gabet, så hover ikke lukker panelet undervejs fra trigger */
.topbar__mega-panel::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -12px;
	height: 12px;
}
.topbar__mega-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2px;
}
.topbar__mega-item {
	display: flex;
	align-items: center;
	gap: 11px;
	padding: 10px 11px;
	border-radius: var(--radius-sm);
	transition: background 0.15s var(--ease-out);
}
.topbar__mega-item:hover {
	background: var(--ink-50);
	text-decoration: none;
}
.topbar__mega-ico {
	flex: none;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 11px;
	background: var(--teal-50);
	color: var(--teal-700);
	transition:
		background 0.18s var(--ease-out),
		color 0.18s var(--ease-out),
		transform 0.18s var(--ease-out);
}
.topbar__mega-item:hover .topbar__mega-ico {
	background: var(--teal-600);
	color: #fff;
	transform: scale(1.06);
}
.topbar__mega-name {
	font-family: var(--font);
	font-weight: 600;
	font-size: 0.92rem;
	line-height: 1.25;
	color: var(--ink-900);
}
.topbar__mega-foot {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid var(--ink-100);
}
.topbar__mega-foot-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 11px 13px;
	border-radius: var(--radius-sm);
	font-family: var(--font);
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--ink-700);
	transition:
		background 0.15s var(--ease-out),
		color 0.15s var(--ease-out);
}
.topbar__mega-foot-link:hover {
	background: var(--ink-50);
	color: var(--teal-700);
	text-decoration: none;
}
.topbar__mega-foot-link .icon {
	color: var(--ink-400);
	transition: color 0.15s var(--ease-out);
}
.topbar__mega-foot-link:hover .icon {
	color: var(--teal-600);
}
.topbar__mega-all {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 11px 14px;
	border-radius: var(--radius-sm);
	background: var(--ink-50);
	font-family: var(--font);
	font-weight: 700;
	font-size: 0.9rem;
	color: var(--teal-700);
	transition: background 0.15s var(--ease-out);
}
.topbar__mega-all:hover {
	background: var(--teal-50);
	text-decoration: none;
}
.topbar__mega-arrow {
	transition: transform 0.2s var(--ease-out);
}
.topbar__mega-all:hover .topbar__mega-arrow {
	transform: translateX(4px);
}

/* Scroll-lås når fuldskærms-mobilmenu er åben */
body.nav-open {
	overflow: hidden;
}

/* Staggered reveal for mobil-overlay-rækker */
@keyframes navItemIn {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

/* ---------- Flash ---------- */
.flash-stack {
	position: fixed;
	top: 80px;
	right: 20px;
	z-index: 300;
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-width: 380px;
}
.flash {
	padding: 13px 18px;
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-lg);
	font-size: 0.92rem;
	background: #fff;
	border-left: 4px solid var(--ink-400);
	animation: flashIn 0.25s ease;
}
.flash--success {
	border-color: var(--green);
}
.flash--error {
	border-color: var(--red);
}
.flash--warning {
	border-color: var(--amber);
}
@keyframes flashIn {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}

/* ---------- Badges ---------- */
.badge {
	display: inline-flex;
	align-items: center;
	font-size: 0.7rem;
	font-weight: 700;
	padding: 0.32em 0.7em;
	border-radius: 999px;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}
.badge--sponsored {
	background: var(--amber-bg);
	color: var(--gold);
}
.badge--featured {
	background: var(--gold-bg);
	color: var(--gold);
}
.badge--premium {
	background: var(--violet-bg);
	color: var(--violet);
}
.badge--success {
	background: var(--green-bg);
	color: var(--green);
}
.badge--info {
	background: var(--blue-bg);
	color: var(--blue);
}
.badge--warning {
	background: var(--amber-bg);
	color: var(--gold);
}
.badge--danger {
	background: var(--red-bg);
	color: var(--red);
}
.badge--muted {
	background: var(--ink-100);
	color: var(--ink-600);
}
.badge--topprofile {
	background: var(--violet-bg);
	color: var(--violet);
}
.badge--new {
	background: var(--blue-bg);
	color: var(--blue);
}

/* ---------- Sponsorerede resultater øverst ---------- */
.results__sponsored {
	margin-bottom: 22px;
}
.results__sponsored-label,
.results__organic-label {
	margin: 0 0 12px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ink-500);
}
.results__organic-label {
	margin-top: 6px;
}

/* ---------- Cold-start discovery-slot ---------- */
.results__discovery {
	margin-bottom: 22px;
}
.results__discovery-label {
	margin: 0 0 12px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--teal-700, var(--ink-500));
}

/* Region-fallback-notice (tynd by-søgning udvidet til landsdel) */
.results__expanded {
	margin: 0 0 14px;
	padding: 10px 14px;
	background: var(--teal-50, #f0fdfa);
	border: 1px solid var(--line, #e6e6e6);
	border-radius: 10px;
	font-size: 0.9rem;
	color: var(--ink-700, inherit);
}

/* ---------- Hero ---------- */
.hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: linear-gradient(
		160deg,
		var(--teal-700) 0%,
		var(--teal-600) 45%,
		var(--teal-500) 100%
	);
	color: #fff;
	padding: 64px 0 80px;
}
.hero--compact {
	padding: 56px 0;
}
.hero__inner {
	position: relative;
	z-index: 1;
	text-align: center;
}
.hero__title {
	color: #fff;
	font-size: clamp(2rem, 4vw, 3.1rem);
	font-weight: 800;
	max-width: 900px;
	margin: 0 auto 0.35em;
}
.hero__lead {
	color: rgba(255, 255, 255, 0.92);
	font-size: clamp(1rem, 1.4vw, 1.2rem);
	max-width: 680px;
	margin: 0 auto 32px;
}
.hero__search {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 14px;
	display: grid;
	grid-template-columns: 2fr 1.3fr 1fr 1.3fr 1.2fr;
	gap: 10px;
	box-shadow: var(--shadow-lg);
	text-align: left;
	max-width: 1080px;
	margin: 0 auto;
	align-items: end;
}
.hero__field {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.hero__field label {
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--ink-600);
	text-transform: uppercase;
	letter-spacing: 0.03em;
	padding-left: 6px;
}
.hero__field input,
.hero__field select {
	border: 1px solid var(--ink-200);
	border-radius: var(--radius-sm);
	padding: 0.7em 0.8em;
	min-height: var(--control-h);
	font-size: 0.95rem;
	font-family: inherit;
	color: var(--ink-900);
	background: #fff;
	width: 100%;
}
.hero__field input:focus,
.hero__field select:focus {
	outline: none;
	border-color: var(--teal-500);
	box-shadow: 0 0 0 3px var(--teal-100);
}
.hero__actions {
	grid-column: 1 / -1;
	display: flex;
	gap: 10px;
	padding-top: 4px;
	min-width: 0;
}
.hero__actions .btn {
	flex: 1 1 0;
	min-width: 0;
}
.hero__field {
	min-width: 0;
}
/* På smalle skærme stakkes de to CTA'er, så lange labels ikke presser
   søgekortets kolonne bredere end viewporten. */
@media (max-width: 560px) {
	.hero__actions {
		flex-direction: column;
	}
}
.hero__chips {
	margin-top: 26px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	align-items: center;
}
.hero__chips span {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.9rem;
}
.hero__chips a {
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
	padding: 0.4em 0.9em;
	border-radius: 999px;
	font-size: 0.85rem;
}
.hero__chips a:hover {
	background: rgba(255, 255, 255, 0.28);
	text-decoration: none;
}

/* Hero baggrunds-slideshow (crossfade + langsom Ken Burns hvert 10. sek.) */
.hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}
.hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1.6s ease-in-out;
}
.hero__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.hero__slide.is-active {
	opacity: 1;
}
/* Turkis "scrim" så billederne ligger under en turkis tone (~30% synlige) */
.hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(
		160deg,
		rgba(15, 118, 110, 0.8) 0%,
		rgba(13, 148, 136, 0.68) 45%,
		rgba(20, 184, 166, 0.62) 100%
	);
}
@keyframes heroKenSlow {
	from {
		transform: scale(1.03);
	}
	to {
		transform: scale(1.1);
	}
}
.js .hero__slide.is-active img {
	animation: heroKenSlow 12s ease-out both;
}

/* ---------- Sektioner ---------- */
.section {
	padding: 48px 0;
}
.section--tint {
	background: var(--teal-50);
}
.section__head {
	text-align: center;
	margin-bottom: 30px;
}
.section__title {
	font-size: clamp(1.4rem, 2.4vw, 2rem);
}
.section__subtitle {
	color: var(--ink-500);
	margin: 0;
}
.section__cta {
	text-align: center;
	margin-top: 32px;
}

/* ---------- Rail (karrusel) ---------- */
.rail {
	padding: 30px 0;
}
.rail__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 16px;
	gap: 8px 16px;
	flex-wrap: wrap; /* "Se alle"-linket wrapper under titlen på smalle skærme */
}
.rail__title {
	min-width: 0;
	overflow-wrap: anywhere;
}
.rail__title {
	font-size: 1.4rem;
	margin: 0;
}
.rail__subtitle {
	color: var(--ink-500);
	margin: 2px 0 0;
	font-size: 0.9rem;
}
.rail__link {
	font-weight: 600;
	white-space: nowrap;
}
.rail__track {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding: 6px 0 16px;
	-webkit-overflow-scrolling: touch;
}
.rail__track::-webkit-scrollbar {
	height: 8px;
}
.rail__track::-webkit-scrollbar-thumb {
	background: var(--ink-200);
	border-radius: 8px;
}
.rail__item {
	flex: 0 0 300px;
	scroll-snap-align: start;
}

/* ---------- Venue card ---------- */
.venue-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 22px;
}
.vcard {
	background: var(--surface);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--ink-100);
	position: relative;
	transition: 0.18s ease;
	display: flex;
	flex-direction: column;
}
.vcard:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-3px);
}
.vcard--sponsored {
	border-color: var(--amber);
}
.vcard__media {
	display: block;
	position: relative;
	aspect-ratio: 3/2;
	overflow: hidden;
	background: var(--ink-100);
}
.vcard__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.3s ease;
}
.vcard:hover .vcard__media img {
	transform: scale(1.05);
}
/* ---------- Kort-mærker (scoped til .vcard — rører ikke globale .badge) ----------
   Tre familier, tre udtryk: kommerciel status (frostet pille øverst tv.),
   "Ny" (massivt tag nederst tv.), og tillids-/kvalitetssignaler i kortets krop. */
.vcard__status {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	max-width: calc(100% - 66px);
	padding: 5px 11px 5px 9px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	box-shadow: var(--shadow-sm);
	color: var(--ink-900);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	white-space: nowrap;
}
.vcard__status-ic {
	flex: 0 0 auto;
}
.vcard__status--sponsored .vcard__status-ic {
	fill: var(--amber);
}
.vcard__status--featured .vcard__status-ic {
	fill: var(--gold);
}
.vcard__flag {
	position: absolute;
	left: 12px;
	bottom: 12px;
	z-index: 1;
	padding: 3px 9px;
	border-radius: var(--radius-sm);
	background: var(--teal-700);
	color: #fff;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	box-shadow: var(--shadow-sm);
}
.vcard__verified {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 17px;
	height: 17px;
	margin-left: 5px;
	border-radius: 50%;
	background: var(--teal-600);
	color: #fff;
	vertical-align: middle;
	flex: 0 0 auto;
}
.vcard__signals {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.vcard__chip {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 3px 9px;
	border-radius: var(--radius-sm);
	font-size: 0.72rem;
	font-weight: 600;
	line-height: 1.2;
}
.vcard__chip svg {
	flex: 0 0 auto;
}
.vcard__chip--topprofile {
	background: var(--violet-bg);
	color: var(--violet);
}
.vcard__chip--fast {
	background: var(--ink-100);
	color: var(--ink-700);
}
.vcard__pop {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	color: var(--gold);
	font-weight: 700;
}
.vcard__pop svg {
	stroke: var(--amber);
}
.vcard__fav {
	position: absolute;
	top: 10px;
	right: 10px;
	margin: 0;
}
.fav-btn {
	width: var(--tap-min);
	height: var(--tap-min);
	border-radius: 50%;
	border: 0;
	background: rgba(255, 255, 255, 0.92);
	display: grid;
	place-items: center;
	box-shadow: var(--shadow-sm);
	transition:
		transform 0.15s var(--ease-out),
		background 0.15s ease;
}
.fav-btn:active {
	transform: scale(0.92);
}
.fav-btn svg {
	fill: none;
	stroke: var(--ink-500);
	stroke-width: 2;
}
.fav-btn:hover {
	transform: scale(1.1);
}
.fav-btn.is-active svg {
	fill: var(--red);
	stroke: var(--red);
}
.vcard__body {
	padding: 15px 16px 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}
.vcard__head {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	align-items: flex-start;
}
.vcard__title {
	font-size: 1.05rem;
	margin: 0;
	line-height: 1.25;
}
.vcard__title a {
	color: var(--ink-900);
}
.vcard__title a:hover {
	color: var(--teal-700);
	text-decoration: none;
}
.vcard__rating {
	display: inline-flex;
	align-items: center;
	gap: 3px;
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--ink-800);
	white-space: nowrap;
}
.vcard__rating svg {
	fill: var(--amber);
}
.vcard__rating-count {
	color: var(--ink-400);
	font-weight: 500;
}
.vcard__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 4px 12px;
	color: var(--ink-500);
	font-size: 0.85rem;
	margin: 0;
}
.vcard__meta span {
	position: relative;
}
.vcard__desc {
	color: var(--ink-600);
	font-size: 0.86rem;
	margin: 0;
	flex: 1;
}
.vcard__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-top: 6px;
	padding-top: 10px;
	border-top: 1px solid var(--ink-100);
}
.vcard__price {
	font-size: 0.9rem;
	color: var(--ink-800);
}
.vcard__price strong {
	font-size: 1.02rem;
}
.vcard__price-from,
.vcard__price-unit {
	color: var(--ink-500);
	font-weight: 500;
	font-size: 0.8rem;
}
.vcard__actions {
	display: flex;
	gap: 6px;
}

/* ---------- Kategori-grid ---------- */
.cat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 16px;
}
.cat-card {
	background: var(--surface);
	border: 1px solid var(--ink-100);
	border-radius: var(--radius);
	padding: 22px 16px;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 6px;
	box-shadow: var(--shadow-sm);
	transition: 0.15s ease;
}
.cat-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow);
	text-decoration: none;
	border-color: var(--teal-200);
}
.cat-card__icon {
	font-size: 2rem;
}
.cat-card__name {
	font-family: var(--font);
	font-weight: 700;
	color: var(--ink-900);
}
.cat-card__count {
	font-size: 0.78rem;
	color: var(--ink-500);
}

/* ---------- By-grid ---------- */
.city-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 12px;
}
.city-chip {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--surface);
	border: 1px solid var(--ink-200);
	border-radius: 999px;
	padding: 0.7em 1.2em;
	font-weight: 600;
	color: var(--ink-800);
	transition: 0.15s ease;
}
.city-chip:hover {
	border-color: var(--teal-500);
	color: var(--teal-700);
	text-decoration: none;
}
.city-chip__count {
	background: var(--teal-50);
	color: var(--teal-700);
	border-radius: 999px;
	padding: 0.1em 0.6em;
	font-size: 0.78rem;
}

/* ---------- Trust ---------- */
.trust-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
	gap: 18px;
}
.trust-card {
	text-align: center;
	padding: 24px 12px;
	background: var(--surface);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--ink-100);
}
.trust-card__num {
	display: block;
	font-family: var(--font);
	font-size: 1.7rem;
	font-weight: 800;
	color: var(--teal-700);
}
.trust-card__label {
	color: var(--ink-500);
	font-size: 0.85rem;
}

/* ---------- Steps ---------- */
.steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 18px;
	counter-reset: s;
}
.step {
	background: var(--surface);
	border-radius: var(--radius);
	padding: 24px 20px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--ink-100);
}
.step__num {
	display: inline-grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--teal-600);
	color: #fff;
	font-weight: 800;
	font-family: var(--font);
	margin-bottom: 10px;
}
.step h3 {
	font-size: 1.05rem;
	margin: 0 0 4px;
}
.step p {
	margin: 0;
	color: var(--ink-600);
	font-size: 0.9rem;
}

/* ---------- Feature grid ---------- */
.feature-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}
.feature-card {
	background: var(--surface);
	border-radius: var(--radius);
	padding: 26px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--ink-100);
}
.feature-card__icon {
	font-size: 1.9rem;
}
.feature-card h3 {
	margin: 10px 0 6px;
	font-size: 1.15rem;
}
.feature-card p {
	margin: 0;
	color: var(--ink-600);
	font-size: 0.92rem;
}

/* ---------- Page head ---------- */
.page-head {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background: linear-gradient(160deg, var(--teal-700) 0%, var(--teal-600) 48%, var(--teal-500) 100%);
	color: #fff;
	padding: 30px 0 46px;
}
.page-head::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: radial-gradient(120% 140% at 100% 0%, rgba(255, 255, 255, 0.16), transparent 55%);
	pointer-events: none;
}
.page-head__title {
	color: #fff;
	font-size: clamp(1.7rem, 3vw, 2.4rem);
	font-weight: 800;
	letter-spacing: -0.01em;
	margin: 0 0 0.25em;
}
.page-head__lead {
	color: rgba(255, 255, 255, 0.9);
	max-width: 760px;
	margin: 0;
}

/* Breadcrumbs on the dark page-head (scoped so global .breadcrumbs is untouched) */
.page-head .breadcrumbs {
	padding: 0 0 18px;
}
.page-head .breadcrumbs__list {
	color: rgba(255, 255, 255, 0.72);
}
.page-head .breadcrumbs a {
	color: rgba(255, 255, 255, 0.92);
}
.page-head .breadcrumbs a:hover {
	color: #fff;
}
.page-head .breadcrumbs__sep {
	color: rgba(255, 255, 255, 0.4);
}

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
	padding: 14px 0 0;
}
.breadcrumbs__list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin: 0;
	padding: 0 20px;
	font-size: 0.85rem;
	color: var(--ink-500);
}
.breadcrumbs__sep {
	margin: 0 4px;
	color: var(--ink-300);
}

/* ---------- Søgelayout ---------- */
.search-layout {
	display: grid;
	grid-template-columns: 280px 1fr;
	gap: 28px;
	padding-top: 28px;
	padding-bottom: 48px;
	align-items: start;
}
/* Grid-børn defaulter til min-width:auto (= min-content) og kan derved tvinge
   1fr-sporet bredere end viewporten. min-width:0 lader resultat-kolonnen krympe,
   så vcard-grid'et wrapper i stedet for at give vandret scroll på mobil. */
.search-layout > * {
	min-width: 0;
}
.filters {
	background: var(--surface);
	border: 1px solid var(--ink-100);
	border-radius: var(--radius);
	padding: 20px;
	position: sticky;
	top: 84px;
	box-shadow: var(--shadow-sm);
	max-height: calc(100dvh - 100px);
	overflow-y: auto;
	overscroll-behavior: contain;
	scrollbar-width: thin;
	scrollbar-color: var(--teal-300) transparent;
}
.filters::-webkit-scrollbar {
	width: 9px;
}
.filters::-webkit-scrollbar-track {
	background: transparent;
}
.filters::-webkit-scrollbar-thumb {
	background: var(--teal-200);
	border-radius: 9px;
	border: 2px solid var(--surface);
}
.filters:hover::-webkit-scrollbar-thumb {
	background: var(--teal-300);
}
.filters__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px;
}
.filters__title {
	font-size: 1.1rem;
	margin: 0;
}
.filters__close {
	display: none;
	background: none;
	border: 0;
	font-size: 1.6rem;
	line-height: 1;
	color: var(--ink-500);
	/* touch target (vises som inline-flex i 980px-blokken) */
	width: var(--tap-min);
	height: var(--tap-min);
	align-items: center;
	justify-content: center;
	margin: -8px -8px -8px 0;
}
.filters__group {
	padding: 14px 0;
	border-top: 1px solid var(--ink-100);
}
.filters__group:first-of-type {
	border-top: 0;
	padding-top: 0;
}
.filters__details summary {
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
}
.filters__details summary::after {
	content: "+";
	color: var(--ink-400);
}
.filters__details[open] summary::after {
	content: "–";
}
.filters__checks {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 8px;
}
.check {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.88rem;
	color: var(--ink-700);
	cursor: pointer;
}
.check input {
	accent-color: var(--teal-600);
	width: 16px;
	height: 16px;
}
.filters__actions {
	margin-top: 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.filters__reset {
	text-align: center;
	font-size: 0.85rem;
	color: var(--ink-500);
}
.filters__count {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--teal-600);
	margin-left: 4px;
}
.filters__facsearch input {
	margin-top: 6px;
}
.check.is-hidden {
	display: none;
}

.field {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-bottom: 12px;
}
.field__label {
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--ink-600);
}
.field__input {
	border: 1px solid var(--ink-200);
	border-radius: var(--radius-sm);
	padding: 0.6em 0.75em;
	min-height: var(--control-h);
	font-size: 0.92rem;
	font-family: inherit;
	color: var(--ink-900);
	background: #fff;
	width: 100%;
}
.field__input:focus {
	outline: none;
	border-color: var(--teal-500);
	box-shadow: 0 0 0 3px var(--teal-100);
}
.field__input.is-error {
	border-color: var(--red);
}
.field__error {
	color: var(--red);
	font-size: 0.8rem;
}
.field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

/* ---------- Mobile-first form- & touch-target-polish ---------- */
/* iOS zoomer ind på fokus hvis font-size < 16px. Hæv alle formkontroller til
   16px på touch-bredder, og sikr 44px min-højde. */
@media (max-width: 760px) {
	input,
	select,
	textarea,
	.field__input,
	.hero__field input,
	.hero__field select,
	.results__sort select,
	.mapsearch__country {
		font-size: 16px;
	}
	input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="hidden"]),
	select,
	textarea {
		min-height: var(--control-h);
	}
	.field {
		margin-bottom: 14px;
	}
	/* Disclosure-rækker (FAQ, filtre, info-toggles) er klikbare → fuldt tap-areal.
	   min-height bevarer summary'ets display (list-item/flex), så ::marker ikke ryger. */
	.faq__item summary,
	.filters__details summary,
	summary.field__label,
	.mapsearch__filterssummary,
	.venue__terms summary,
	.report-box summary,
	.calc-result__assumptions summary {
		min-height: var(--control-h);
		padding-block: 10px;
	}
	/* Flex-summaries (allerede flex) centreres pænt lodret */
	.filters__details summary,
	summary.field__label,
	.mapsearch__filterssummary {
		align-items: center;
	}
	/* Sekundære tekst-handlinger får også et brugbart tap-areal */
	.filters__reset,
	.cmp-remove {
		display: inline-flex;
		align-items: center;
		min-height: var(--control-h);
	}
}

.results__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
	flex-wrap: wrap;
}
.results__count {
	margin: 0;
	color: var(--ink-600);
}
.results__tools {
	display: flex;
	align-items: center;
	gap: 10px;
}
.results__sort {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 0.88rem;
	color: var(--ink-600);
}
.results__sort select {
	border: 1px solid var(--ink-200);
	border-radius: var(--radius-sm);
	padding: 0.45em 0.7em;
	font-family: inherit;
}
/* Mobil: værktøjsrækken (filter + liste/kort-toggle + sortering) wrapper, og
   sorteringen falder ned på sin egen fulde række, så intet giver vandret scroll. */
@media (max-width: 560px) {
	.results__bar {
		row-gap: 12px;
	}
	.results__tools {
		flex: 1 1 100%;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	.results__sort {
		flex: 1 1 100%;
	}
	.results__sort select {
		flex: 1 1 auto;
		min-width: 0;
	}
}
.results__filter-toggle {
	display: none;
}
.empty-state {
	text-align: center;
	padding: 60px 20px;
	background: var(--surface);
	border-radius: var(--radius);
	border: 1px dashed var(--ink-200);
}
.empty-state h3 {
	margin-bottom: 8px;
}
.empty-state p {
	color: var(--ink-500);
}
.empty-state__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	justify-content: center;
	margin-top: 16px;
}

/* ---------- Aktive filter-chips ---------- */
.filter-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}
.filter-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 6px 5px 12px;
	border: 1px solid var(--teal-200);
	background: var(--teal-50);
	color: var(--teal-800);
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 600;
	cursor: pointer;
	line-height: 1.2;
}
.filter-chip:hover {
	border-color: var(--teal-400);
	background: var(--teal-100);
}
.filter-chip__x {
	display: inline-grid;
	place-items: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(15, 23, 42, 0.06);
	font-size: 1rem;
	line-height: 1;
}
.filter-chips__clear {
	border: 0;
	background: none;
	color: var(--ink-500);
	font-size: 0.82rem;
	font-weight: 600;
	text-decoration: underline;
	cursor: pointer;
	padding: 5px 6px;
}
.filter-chips__clear:hover {
	color: var(--ink-700);
}

/* ---------- Infinite scroll: load-more + loading ---------- */
.results__sentinel {
	height: 1px;
}
.load-more {
	margin-top: 24px;
}
.load-more.is-loading {
	opacity: 0.6;
	pointer-events: none;
}
.results.is-loading #results-list {
	opacity: 0.45;
	transition: opacity 0.2s var(--ease-out);
}
.results.is-loading {
	position: relative;
}
.results.is-loading::after {
	content: "";
	position: absolute;
	top: 120px;
	left: 50%;
	width: 34px;
	height: 34px;
	margin-left: -17px;
	border: 3px solid var(--teal-200);
	border-top-color: var(--teal-600);
	border-radius: 50%;
	animation: evlspin 0.7s linear infinite;
	z-index: 5;
}
@keyframes evlspin {
	to {
		transform: rotate(360deg);
	}
}

/* ---------- Pagination ---------- */
.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 34px;
	flex-wrap: wrap;
}
/* listing.js skjuler disse via [hidden]-attributten (paginering når infinite
   scroll er aktiv, "Indlæs flere" på sidste side, tom chip-bar). Den eksplicitte
   display ovenfor vinder over UA-stylesheetets [hidden]{display:none}, så vi
   gentager det her. Uden JS forbliver pagineringen synlig (progressiv forbedring). */
.pagination[hidden],
.load-more[hidden],
.filter-chips[hidden] {
	display: none;
}
.pagination__pages {
	display: flex;
	gap: 6px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.pagination__page,
.pagination__link {
	display: inline-grid;
	place-items: center;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	border-radius: var(--radius-sm);
	border: 1px solid var(--ink-200);
	color: var(--ink-700);
	font-weight: 600;
	background: #fff;
}
.pagination__page:hover,
.pagination__link:hover {
	border-color: var(--teal-500);
	color: var(--teal-700);
	text-decoration: none;
}
.pagination__page.is-current {
	background: var(--teal-600);
	border-color: var(--teal-600);
	color: #fff;
}
.pagination .is-disabled {
	opacity: 0.4;
	pointer-events: none;
}
.pagination__gap {
	padding: 0 4px;
	color: var(--ink-400);
}

/* ---------- Venue side ---------- */
.venue {
	padding: 18px 0 50px;
}
/* Hero: mosaik-galleri */
.venue-hero {
	margin-bottom: 36px;
}
.vgallery-group {
	position: relative;
}
/* Cinematisk fuldbredde-hero: ét stort billede edge-to-edge med overlejret titel */
.venue-hero__stage {
	position: relative;
	width: 100vw;
	margin-left: calc(50% - 50vw);
	height: clamp(420px, 65vh, 760px);
	overflow: hidden;
	background: var(--ink-900);
	box-shadow: var(--shadow);
}
.venue-hero__main {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	border: 0;
	background: none;
	cursor: pointer;
}
.venue-hero__main img,
.venue-hero__stage--empty img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.venue-hero__main:focus-visible {
	outline: none;
	box-shadow: inset 0 0 0 4px var(--teal-400);
}
.venue-hero__scrim {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(
		0deg,
		rgba(2, 6, 23, 0.85) 0%,
		rgba(2, 6, 23, 0.35) 38%,
		rgba(2, 6, 23, 0) 64%
	);
}
.venue-hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	pointer-events: none;
	padding-bottom: clamp(20px, 4vh, 46px);
}
.venue-hero__overlay button {
	pointer-events: auto;
}
.venue-hero__overlay .venue__title {
	color: #fff;
	text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
	margin-bottom: 0.28em;
}
.venue-hero__overlay .venue__location {
	color: rgba(255, 255, 255, 0.92);
}
.venue-hero__overlay .venue__location .inline-ico {
	color: #fff;
}
.venue-hero__overlay .venue__rating {
	color: #fff;
}
.venue-hero__overlay .venue__rating-count {
	color: rgba(255, 255, 255, 0.78);
}
.venue-hero__thumbs {
	display: flex;
	gap: 10px;
	margin-top: 18px;
}
.venue-hero__thumb {
	width: 96px;
	height: 64px;
	padding: 0;
	border: 2px solid rgba(255, 255, 255, 0.55);
	border-radius: 10px;
	overflow: hidden;
	background: none;
	box-shadow: 0 6px 20px -10px rgba(0, 0, 0, 0.7);
	transition:
		transform 0.2s var(--ease-out),
		border-color 0.2s var(--ease-out);
}
.venue-hero__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.venue-hero__thumb:hover {
	transform: translateY(-2px);
	border-color: #fff;
}
.venue-hero__thumb:focus-visible {
	outline: none;
	border-color: #fff;
	box-shadow: 0 0 0 3px var(--teal-400);
}
.venue-hero__seeall {
	position: absolute;
	right: max(16px, 3vw);
	bottom: max(16px, 3vh);
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 18px;
	min-height: var(--control-h);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.92);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.65);
	color: var(--ink-900);
	font-family: var(--font);
	font-weight: 700;
	font-size: 0.9rem;
	box-shadow: var(--shadow);
	cursor: pointer;
}
.venue-hero__seeall:hover {
	background: #fff;
}

/* Hero-overlay tekst (badges/title/meta genbruges i .venue-hero__overlay) */
.venue__layout {
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 36px;
	align-items: start;
}
.venue__badges {
	display: flex;
	gap: 6px;
	margin-bottom: 12px;
	flex-wrap: wrap;
}
.venue__title {
	font-family: var(--font);
	font-size: clamp(1.9rem, 3.6vw, 2.85rem);
	line-height: 1.06;
	letter-spacing: -0.02em;
	margin: 0 0 0.32em;
	color: var(--ink-950);
}
.venue__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px 20px;
}
.venue__location {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--ink-600);
	margin: 0;
	font-size: 1.02rem;
}
.venue__location .inline-ico {
	color: var(--teal-600);
	flex: 0 0 auto;
}
.venue__rating {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--ink-900);
	font-weight: 700;
	margin: 0;
}
.venue__rating-star {
	color: var(--amber);
	font-size: 1.05em;
}
.venue__rating-count {
	color: var(--ink-500);
	font-weight: 500;
}

/* Fakta — løftede stat-kort */
.venue__facts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 12px;
	margin: 24px 0 0;
}
.fact {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 16px 18px;
	background: var(--surface);
	border: 1px solid var(--ink-200);
	border-radius: var(--radius);
	box-shadow: var(--shadow-sm);
}
.fact__ico {
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	background: var(--teal-50);
	color: var(--teal-700);
	margin-bottom: 6px;
}
.fact__ico svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.fact__label {
	font-size: 0.72rem;
	color: var(--ink-500);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 600;
}
.fact__value {
	font-weight: 700;
	color: var(--ink-900);
	font-size: 1.02rem;
}

/* Planløsninger */
.floorplans__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 14px;
}
.floorplans__tile {
	aspect-ratio: 4/3;
	border-radius: var(--radius);
	border: 1px solid var(--ink-200);
	background: #fff;
}
.floorplans__tile img {
	object-fit: contain;
	padding: 10px;
	background: #fff;
}
.floorplans__tile:hover img {
	transform: scale(1.03);
}
.floorplans__cap {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 9px 12px;
	font-size: 0.82rem;
	font-weight: 600;
	color: #fff;
	background: linear-gradient(180deg, rgba(2, 6, 23, 0), rgba(2, 6, 23, 0.68));
}

/* Fuldskærms-lightbox */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(16px, 4vw, 48px);
	opacity: 0;
	transition: opacity 0.4s var(--ease-out);
}
.lightbox[hidden] {
	display: none;
} /* attribut skal vinde over display:flex, ellers blokerer det usynlige overlay alle klik */
.lightbox.is-open {
	opacity: 1;
}
.lightbox__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(2, 6, 23, 0.94);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}
.lightbox__stage {
	position: relative;
	margin: 0;
	width: min(1400px, 92vw);
	height: min(86vh, 1000px);
	display: flex;
	align-items: center;
	justify-content: center;
	transform: scale(0.95);
	transition: transform 0.45s var(--ease-out);
}
.lightbox.is-open .lightbox__stage {
	transform: none;
}
.lightbox__img {
	position: absolute;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: var(--radius);
	box-shadow: 0 30px 90px -24px rgba(0, 0, 0, 0.75);
	opacity: 0;
	transition: opacity 0.45s var(--ease-out);
}
.lightbox__img.is-active {
	opacity: 1;
}
.lightbox--paper .lightbox__img {
	background: #fff;
} /* plantegninger er ofte transparente — hvid baggrund så de er synlige på den mørke backdrop */
.lightbox__nav,
.lightbox__close {
	position: absolute;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 999px;
	transition:
		background 0.25s var(--ease-out),
		transform 0.25s var(--ease-out),
		opacity 0.25s var(--ease-out);
}
.lightbox__nav {
	width: 54px;
	height: 54px;
	top: 50%;
	transform: translateY(-50%);
}
.lightbox__nav:hover {
	background: rgba(255, 255, 255, 0.22);
}
.lightbox__nav:active {
	transform: translateY(-50%) scale(0.93);
}
.lightbox__nav--prev {
	left: max(14px, 2vw);
}
.lightbox__nav--next {
	right: max(14px, 2vw);
}
.lightbox__nav:disabled {
	opacity: 0.28;
	cursor: default;
}
.lightbox__close {
	width: 46px;
	height: 46px;
	top: max(14px, 2vh);
	right: max(14px, 2vw);
}
.lightbox__close:hover {
	background: rgba(255, 255, 255, 0.22);
}
.lightbox__nav svg,
.lightbox__close svg {
	width: 24px;
	height: 24px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.lightbox__meta {
	position: absolute;
	left: 0;
	right: 0;
	bottom: max(14px, 2.4vh);
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	text-align: center;
	padding: 0 72px;
	pointer-events: none;
}
.lightbox__counter {
	font-family: var(--font);
	font-weight: 700;
	font-size: 0.78rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: #fff;
}
.lightbox__caption {
	font-size: 0.92rem;
	color: rgba(255, 255, 255, 0.72);
	max-width: 62ch;
}
body.lightbox-open {
	overflow: hidden;
}
.venue__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
}
.tag {
	background: var(--ink-100);
	color: var(--ink-700);
	border-radius: 999px;
	padding: 0.35em 0.9em;
	font-size: 0.82rem;
	font-weight: 500;
}
.venue__block {
	margin-bottom: 30px;
}
.venue__block h2 {
	font-size: 1.35rem;
	margin-bottom: 12px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--teal-100);
}
.venue__subhead {
	font-size: 1rem;
	color: var(--ink-700);
	margin: 14px 0 8px;
}
.venue__desc {
	color: var(--ink-700);
}
.venue__info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
}
.venue__info-grid p {
	color: var(--ink-700);
	margin: 0;
}
.facility-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
	gap: 8px;
}
.facility-list li {
	position: relative;
	padding-left: 24px;
	color: var(--ink-700);
	font-size: 0.92rem;
}
.facility-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--teal-600);
	font-weight: 800;
}
.map-placeholder {
	aspect-ratio: 21/8;
	background: linear-gradient(135deg, var(--teal-50), var(--teal-100));
	border-radius: var(--radius);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	color: var(--teal-800);
	border: 1px dashed var(--teal-200);
}
.map-placeholder span {
	font-size: 1.2rem;
	font-weight: 700;
}
.map-placeholder small {
	color: var(--ink-500);
}

.review-aspects {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}
.review-aspects__lead {
	font-weight: 600;
	color: var(--ink-700, inherit);
}
.review-aspects__n {
	opacity: 0.7;
}
.reviews {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.review {
	background: var(--surface);
	border: 1px solid var(--ink-100);
	border-radius: var(--radius);
	padding: 18px;
	box-shadow: var(--shadow-sm);
}
.review__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.review__stars {
	color: var(--amber);
	letter-spacing: 1px;
}
.review__title {
	font-weight: 700;
	margin: 8px 0 4px;
	color: var(--ink-900);
}
.review__body {
	margin: 0 0 6px;
	color: var(--ink-700);
}
.review__date {
	color: var(--ink-400);
	font-size: 0.8rem;
}
.review__source {
	color: var(--ink-400);
	font-size: 0.78rem;
	font-weight: 500;
}
.reviews-empty {
	background: var(--surface);
	border: 1px dashed var(--ink-100);
	border-radius: var(--radius);
	padding: 18px;
	color: var(--ink-600);
	margin: 0;
}

/* Kontakt-/forespørgselskort */
.venue__aside {
	position: sticky;
	top: 128px;
} /* klarer topbar (68) + sektions-nav */
.contact-card {
	background: var(--surface);
	border: 1px solid var(--ink-200);
	border-radius: var(--radius-lg);
	padding: 24px;
	box-shadow: var(--shadow);
}
.contact-card__title {
	font-size: 1.2rem;
	margin: 0 0 4px;
}
.contact-card__sub {
	color: var(--ink-500);
	font-size: 0.88rem;
	margin: 0 0 16px;
}
.contact-card__note {
	text-align: center;
	color: var(--ink-400);
	font-size: 0.8rem;
	margin: 10px 0 0;
}
.contact-card__chat {
	margin-bottom: 8px;
}
.contact-card__or {
	text-align: center;
	position: relative;
	margin: 14px 0;
	color: var(--ink-400);
	font-size: 0.8rem;
}
.contact-card__or::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	background: var(--ink-200);
}
.contact-card__or span {
	position: relative;
	background: var(--surface);
	padding: 0 10px;
}
.report-box {
	margin-top: 14px;
	border-top: 1px solid var(--ink-100);
	padding-top: 12px;
}
.report-box summary {
	cursor: pointer;
	color: var(--ink-500);
	font-size: 0.82rem;
}
.report-box .field {
	margin-top: 10px;
}
.form-errors {
	background: var(--red-bg);
	color: var(--red);
	padding: 10px 14px;
	border-radius: var(--radius-sm);
	font-size: 0.85rem;
	margin-bottom: 14px;
}
.inquiry-form .field {
	margin-bottom: 12px;
}

.venue__related {
	margin-top: 40px;
}
.venue__related .section__title {
	margin-bottom: 18px;
}

/* Sticky sektions-nav (scrollspy) — top:68px = topbar-højde */
.venue-subnav {
	position: sticky;
	top: 68px;
	z-index: 50;
	margin: 0 0 28px;
	background: rgba(248, 250, 252, 0.92);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--ink-200);
}
.venue-subnav__track {
	display: flex;
	gap: 4px;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
	scroll-behavior: smooth;
}
.venue-subnav__track::-webkit-scrollbar {
	display: none;
}
.venue-subnav__link {
	flex: 0 0 auto;
	padding: 14px 14px;
	font-family: var(--font);
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--ink-600);
	border-bottom: 2px solid transparent;
	white-space: nowrap;
	transition:
		color 0.18s var(--ease-out),
		border-color 0.18s var(--ease-out);
}
.venue-subnav__link:hover {
	color: var(--ink-900);
	text-decoration: none;
}
.venue-subnav__link.is-active {
	color: var(--teal-700);
	border-color: var(--teal-700);
}
.venue-subnav__link:focus-visible {
	outline-offset: -4px;
}
/* Hop-offset: sticky topbar (68) + subnav (~46) så overskrifter ikke gemmes bag de klæbrige barer */
.venue [id] {
	scroll-margin-top: 124px;
}

/* FAQ */
.faq {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.faq__item {
	background: var(--surface);
	border: 1px solid var(--ink-100);
	border-radius: var(--radius-sm);
	padding: 14px 18px;
}
.faq__item summary {
	cursor: pointer;
	font-weight: 600;
	color: var(--ink-900);
	list-style: none;
}
.faq__item summary::marker {
	content: "";
}
.faq__item p {
	margin: 10px 0 0;
	color: var(--ink-600);
}

/* ---------- Pricing ---------- */
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 22px;
	align-items: stretch;
}
.plan-card {
	background: var(--surface);
	border: 1px solid var(--ink-200);
	border-radius: var(--radius-lg);
	padding: 28px 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	position: relative;
	box-shadow: var(--shadow-sm);
}
.plan-card--highlight {
	border-color: var(--teal-600);
	box-shadow: var(--shadow-lg);
	transform: scale(1.02);
}
.plan-card__ribbon {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--teal-600);
	color: #fff;
	padding: 0.3em 1em;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 700;
}
.plan-card__name {
	font-size: 1.3rem;
	margin: 0;
}
.plan-card__price {
	margin: 0;
}
.plan-card__amount {
	font-family: var(--font);
	font-size: 2rem;
	font-weight: 800;
	color: var(--ink-900);
}
.plan-card__period {
	color: var(--ink-500);
}
.plan-card__desc {
	color: var(--ink-600);
	font-size: 0.9rem;
	margin: 0;
}
.plan-card__features {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}
.plan-card__features li {
	padding-left: 24px;
	position: relative;
	font-size: 0.9rem;
	color: var(--ink-700);
}
.plan-card__features li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--teal-600);
	font-weight: 800;
}
.pricing-note {
	text-align: center;
	color: var(--ink-500);
	font-size: 0.85rem;
	margin-top: 26px;
}

/* ---------- Footer ---------- */
.footer {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	background:
		radial-gradient(
			120% 90% at 12% 0%,
			rgba(13, 148, 136, 0.2),
			transparent 55%
		),
		radial-gradient(
			80% 70% at 100% 10%,
			rgba(20, 184, 166, 0.1),
			transparent 60%
		),
		linear-gradient(180deg, var(--ink-950), var(--ink-900) 60%, #0b1220);
	color: var(--ink-300);
	font-family: var(--font-body);
}
.footer a {
	color: inherit;
}
.footer a:hover {
	text-decoration: none;
}

/* Pre-footer CTA */
.footer-cta {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	position: relative;
	z-index: 2;
}
.footer-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	flex-wrap: wrap;
	padding: 36px 20px;
}
.footer-cta__title {
	color: #fff;
	font-size: clamp(1.3rem, 2.4vw, 1.85rem);
	margin: 0 0 0.25em;
	letter-spacing: -0.01em;
}
.footer-cta__sub {
	color: var(--ink-400);
	margin: 0;
	max-width: 48ch;
	font-size: 0.95rem;
}
.footer-cta__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}
.footer-cta__ghost {
	background: rgba(255, 255, 255, 0.04);
	border: 1.5px solid rgba(255, 255, 255, 0.22);
	color: #fff;
}
.footer-cta__ghost:hover {
	background: var(--teal-600);
	border-color: var(--teal-600);
	color: #fff;
	box-shadow: 0 10px 30px -12px rgba(13, 148, 136, 0.8);
}

/* Hovedsektion */
.footer__main {
	position: relative;
	z-index: 1;
}
.footer__grid {
	display: grid;
	grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr;
	gap: 34px;
	padding: 56px 20px 30px;
	position: relative;
	z-index: 1;
}
.footer__brandcol {
	max-width: 340px;
}
.footer__brand {
	margin-bottom: 14px;
}
.footer__tagline {
	color: var(--ink-400);
	font-size: 0.9rem;
	margin: 0 0 22px;
}

/* Nyhedsbrev */
.footer__news {
	margin: 0 0 20px;
}
.footer__news-label {
	display: block;
	color: #fff;
	font-family: var(--font);
	font-weight: 600;
	font-size: 0.85rem;
	margin-bottom: 9px;
}
.footer__news-row {
	display: flex;
	gap: 8px;
}
.footer__news-input {
	flex: 1;
	min-width: 0;
	padding: 0.62em 0.85em;
	min-height: var(--control-h);
	font-size: 0.9rem;
	font-family: var(--font-body);
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: var(--radius-sm);
	transition:
		border-color 0.15s var(--ease-out),
		background 0.15s var(--ease-out);
}
.footer__news-input::placeholder {
	color: var(--ink-500);
}
.footer__news-input:focus {
	outline: none;
	border-color: var(--teal-400);
	background: rgba(255, 255, 255, 0.09);
	box-shadow: 0 0 0 3px rgba(45, 212, 191, 0.18);
}
.footer__news-btn {
	flex: none;
	padding: 0.62em 1.15em;
	min-height: var(--control-h);
	font-family: var(--font);
	font-weight: 600;
	font-size: 0.9rem;
	color: #fff;
	background: var(--teal-600);
	border: none;
	border-radius: var(--radius-sm);
	transition:
		background 0.15s var(--ease-out),
		transform 0.15s var(--ease-out);
}
.footer__news-btn:hover {
	background: var(--teal-500);
	transform: translateY(-1px);
}

/* Sociale ikoner */
.footer__social {
	list-style: none;
	display: flex;
	gap: 10px;
	padding: 0;
	margin: 0;
}
.footer__social a {
	display: grid;
	place-items: center;
	width: var(--tap-min);
	height: var(--tap-min);
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--ink-300);
	transition:
		transform 0.18s var(--ease-out),
		background 0.18s var(--ease-out),
		color 0.18s var(--ease-out),
		border-color 0.18s var(--ease-out);
}
.footer__social a:hover {
	background: var(--teal-600);
	border-color: var(--teal-600);
	color: #fff;
	transform: translateY(-2px);
}
.footer__social svg {
	width: 18px;
	height: 18px;
}

/* Link-kolonner */
.footer__col h3 {
	color: var(--teal-300);
	font-family: var(--font);
	font-size: 0.74rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.09em;
	margin: 0 0 16px;
}
.footer__col ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 11px;
}
.footer__col a {
	color: var(--ink-300);
	font-size: 0.9rem;
	display: inline-block;
	transition:
		color 0.15s var(--ease-out),
		transform 0.15s var(--ease-out);
}
.footer__col a:hover {
	color: #fff;
	transform: translateX(3px);
}

/* Tillidsstribe */
.footer__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 26px;
	padding: 24px 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	position: relative;
	z-index: 1;
}
.footer__trust-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--ink-400);
	font-size: 0.85rem;
}
.footer__trust-item::before {
	content: "";
	flex: none;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--teal-500)
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")
		center/11px no-repeat;
}

/* Ghost-wordmark watermark */
.footer__watermark {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -0.18em;
	z-index: 0;
	pointer-events: none;
	user-select: none;
	text-align: center;
	font-family: var(--font);
	font-weight: 800;
	line-height: 0.8;
	font-size: clamp(3.5rem, 15vw, 12rem);
	letter-spacing: -0.02em;
	white-space: nowrap;
	color: transparent;
	-webkit-text-stroke: 1px rgba(255, 255, 255, 0.045);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
	-webkit-background-clip: text;
	background-clip: text;
}

/* Bundbjælke */
.footer__bar {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	position: relative;
	z-index: 2;
	background: rgba(2, 6, 23, 0.4);
}
.footer__bar-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px 24px;
	padding: 20px 20px;
	font-size: 0.82rem;
	color: var(--ink-400);
	flex-wrap: wrap;
}
.footer__legal {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}
.footer__legal a {
	color: var(--ink-400);
	transition: color 0.15s var(--ease-out);
}
.footer__legal a:hover {
	color: #fff;
}
.footer__made {
	display: inline-flex;
	align-items: center;
	gap: 0.35em;
}

/* ---------- Auth ---------- */
.auth-page {
	background: linear-gradient(160deg, var(--teal-700), var(--teal-500));
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px 16px;
}
.auth-shell {
	width: 100%;
	max-width: 440px;
}
.auth-brand {
	justify-content: center;
	margin-bottom: 18px;
}
.auth-brand .brand__name {
	color: #fff;
}
.auth-card {
	background: #fff;
	border-radius: var(--radius-lg);
	padding: 34px;
	box-shadow: var(--shadow-lg);
}
.auth-card__title {
	font-size: 1.6rem;
	margin: 0 0 4px;
}
.auth-card__sub {
	color: var(--ink-500);
	margin: 0 0 22px;
}
.auth-card__alt {
	text-align: center;
	margin: 18px 0 0;
	color: var(--ink-600);
	font-size: 0.9rem;
}
.auth-card__note {
	color: var(--ink-400);
	font-size: 0.8rem;
	text-align: center;
	margin-top: 10px;
}
.auth-form .field {
	margin-bottom: 16px;
}
.auth-form__row {
	display: flex;
	justify-content: flex-end;
	margin-bottom: 14px;
}
.auth-link {
	font-size: 0.85rem;
}
.auth-foot {
	text-align: center;
	margin-top: 18px;
}
.auth-foot a {
	color: rgba(255, 255, 255, 0.9);
}
.auth-tabs {
	display: flex;
	gap: 8px;
	background: var(--ink-100);
	padding: 5px;
	border-radius: 999px;
	margin-bottom: 22px;
}
.auth-tab {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0.6em;
	min-height: var(--control-h);
	border-radius: 999px;
	font-weight: 600;
	font-size: 0.88rem;
	color: var(--ink-600);
}
.auth-tab.is-active {
	background: #fff;
	color: var(--teal-700);
	box-shadow: var(--shadow-sm);
}
.auth-tab:hover {
	text-decoration: none;
}

/* ---------- Error ---------- */
.error-page {
	padding: 90px 0;
	text-align: center;
}
.error-page__code {
	font-family: var(--font);
	font-size: 5rem;
	font-weight: 800;
	color: var(--teal-200);
	margin: 0;
	line-height: 1;
}
.error-page__title {
	font-size: 1.8rem;
	margin: 10px 0;
}
.error-page__msg {
	color: var(--ink-600);
	margin-bottom: 24px;
}
.error-page__actions {
	display: flex;
	gap: 12px;
	justify-content: center;
	flex-wrap: wrap;
}

/* ---------- Responsivt ---------- */
/* Mobil sticky CTA på lokationssiden */
.venue-cta {
	display: none;
} /* skjult på desktop */
@media (prefers-reduced-motion: reduce) {
	.venue-cta.is-hidden {
		transition: none;
	}
}

@media (max-width: 980px) {
	.venue__layout {
		grid-template-columns: 1fr;
	}
	.venue__aside {
		position: static;
	}
	.venue-cta {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 55;
		display: flex;
		gap: 0.6rem;
		padding: 0.65rem 0.9rem calc(0.65rem + env(safe-area-inset-bottom, 0));
		background: rgba(255, 255, 255, 0.94);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
		border-top: 1px solid var(--ink-200);
		box-shadow: 0 -8px 26px -16px rgba(15, 23, 42, 0.4);
	}
	.venue-cta__call {
		flex: 0 0 auto;
	}
	.venue-cta__primary {
		flex: 1 1 auto;
		justify-content: center;
	}
	.venue {
		padding-bottom: 76px;
	} /* plads så baren ikke dækker indhold/footer */
	.cmp-tray {
		bottom: calc(76px + env(safe-area-inset-bottom, 0));
	} /* stack over CTA-baren */
	.venue-cta.is-hidden {
		transform: translateY(110%);
		opacity: 0;
		pointer-events: none;
		transition:
			transform 0.25s var(--ease-out),
			opacity 0.25s var(--ease-out);
	}
	.footer__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 30px;
	}
	.footer__brandcol {
		grid-column: 1 / -1;
		max-width: 520px;
	}
	.footer-cta__inner {
		justify-content: flex-start;
	}
	.hero__search {
		grid-template-columns: 1fr 1fr;
	}
	.search-layout {
		grid-template-columns: 1fr;
	}
	.filters {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		width: 86%;
		max-width: 340px;
		max-height: none;
		z-index: 200;
		border-radius: 0;
		overflow-y: auto;
		transform: translateX(-100%);
		transition: transform 0.25s ease;
	}
	.filters.is-open {
		transform: none;
	}
	.filters__close {
		display: inline-flex;
	}
	.results__filter-toggle {
		display: inline-flex;
	}
}
/* Topbar-nav: kollapser til hamburger-overlay op til 1140px, fordi den fulde
   vandrette nav (brand + links + handlinger + CTA) intrinsisk kræver ~1100px
   indhold (= ~1140px viewport inkl. container-rende). Tablets/små laptops får
   dermed en ren menu i stedet for en afklippet desktop-nav. Øvrige mobil-regler
   bliver ved 760px-grænsen nedenfor. */
@media (max-width: 1140px) {
	.topbar__toggle {
		display: flex;
	}
	/* backdrop-filter laver en containing block for fixed-børn → ville binde overlayet
       til den 68px høje bar. Slå den fra på mobil, så overlayet bliver viewport-relativt. */
	.topbar {
		background: rgba(255, 255, 255, 0.96);
		-webkit-backdrop-filter: none;
		backdrop-filter: none;
	}
	/* Fuldskærms-overlay — brand + hamburger forbliver synlige ovenpå via z-index */
	.topbar__nav {
		position: fixed;
		inset: 0;
		z-index: 40;
		background: rgba(255, 255, 255, 0.98);
		-webkit-backdrop-filter: blur(8px);
		backdrop-filter: blur(8px);
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0;
		padding: 88px 22px 28px;
		overflow-y: auto;
		opacity: 0;
		visibility: hidden;
		transform: translateY(-8px);
		transition:
			opacity 0.3s var(--ease-out),
			transform 0.3s var(--ease-out),
			visibility 0.3s;
	}
	.topbar__nav.is-open {
		opacity: 1;
		visibility: visible;
		transform: none;
	}
	.topbar__links {
		flex-direction: column;
		align-items: stretch;
		gap: 2px;
	}
	.topbar__link {
		font-family: var(--font);
		font-size: 1.45rem;
		font-weight: 700;
		padding: 12px 4px;
		border-radius: 0;
	}
	.topbar__link::after {
		display: none;
	}
	.topbar__link.is-active {
		color: var(--teal-700);
	}
	.topbar__link-ico {
		color: var(--ink-400);
	}
	/* Skillelinjen giver ikke mening i det stakkede overlay */
	.topbar__actions::before {
		display: none;
	}
	/* Eventtyper vises inline i overlayet — triggeren bliver en sektionsoverskrift */
	.topbar__mega {
		position: static;
	}
	.topbar__mega-trigger {
		width: 100%;
		justify-content: flex-start;
		pointer-events: none;
		font-size: 0.78rem;
		text-transform: uppercase;
		letter-spacing: 0.09em;
		color: var(--ink-400);
		font-weight: 700;
		padding: 18px 4px 4px;
	}
	.topbar__mega-caret {
		display: none;
	}
	.topbar__mega-panel,
	.topbar__mega-panel[hidden] {
		display: block;
		position: static;
		width: auto;
		max-width: none;
		padding: 0;
		background: none;
		border: 0;
		box-shadow: none;
		opacity: 1;
		transform: none;
	}
	.topbar__mega-panel::before {
		display: none;
	}
	.topbar__mega-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.topbar__mega-item {
		padding: 12px 4px;
	}
	.topbar__mega-name {
		font-size: 1.05rem;
	}
	.topbar__mega-foot {
		flex-direction: column;
		align-items: stretch;
		gap: 4px;
		margin-top: 6px;
		padding-top: 10px;
	}
	.topbar__mega-foot-link {
		padding: 12px 4px;
		font-size: 1.05rem;
	}
	.topbar__mega-all {
		margin: 8px 0 4px;
		padding: 14px;
		font-size: 1rem;
	}
	.topbar__actions {
		flex-direction: column;
		align-items: stretch;
		gap: 12px;
		margin-top: 20px;
		padding-top: 20px;
		border-top: 1px solid var(--ink-100);
	}
	.topbar__actions .btn {
		width: 100%;
		padding: 0.9em 1.3em;
		font-size: 1rem;
	}
	.topbar__compare {
		width: 100%;
	}
	.topbar__compare-btn {
		width: 100%;
	}
	.topbar__user {
		text-align: center;
	}
	/* Staggered reveal pr. række når overlayet åbnes */
	.topbar__nav.is-open .topbar__links > li,
	.topbar__nav.is-open .topbar__actions > * {
		animation: navItemIn 0.45s var(--ease-out) both;
	}
	.topbar__nav.is-open .topbar__links > li:nth-child(1) {
		animation-delay: 0.05s;
	}
	.topbar__nav.is-open .topbar__links > li:nth-child(2) {
		animation-delay: 0.1s;
	}
	.topbar__nav.is-open .topbar__links > li:nth-child(3) {
		animation-delay: 0.15s;
	}
	.topbar__nav.is-open .topbar__links > li:nth-child(4) {
		animation-delay: 0.18s;
	}
	.topbar__nav.is-open .topbar__actions > *:nth-child(1) {
		animation-delay: 0.2s;
	}
	.topbar__nav.is-open .topbar__actions > *:nth-child(2) {
		animation-delay: 0.25s;
	}
	.topbar__nav.is-open .topbar__actions > *:nth-child(3) {
		animation-delay: 0.3s;
	}
	.topbar__nav.is-open .topbar__actions > *:nth-child(4) {
		animation-delay: 0.35s;
	}
	.topbar__nav.is-open .topbar__actions > *:nth-child(5) {
		animation-delay: 0.4s;
	}
}
/* Øvrige mobil-layoutregler beholder 760px-grænsen (uafhængigt af nav-kollaps). */
@media (max-width: 760px) {
	.hero__search {
		grid-template-columns: 1fr;
	}
	.venue__info-grid {
		grid-template-columns: 1fr;
	}
	.field-row {
		grid-template-columns: 1fr;
	}
	.footer__grid {
		grid-template-columns: 1fr 1fr;
		gap: 26px 24px;
		padding-top: 42px;
	}
	.footer__brandcol {
		max-width: none;
	}
	.footer__news-row {
		flex-direction: column;
	}
	.footer__news-btn {
		width: 100%;
	}
	.footer-cta__inner {
		padding: 28px 20px;
	}
	.footer__bar-inner {
		justify-content: center;
		text-align: center;
	}
	.footer__watermark {
		font-size: clamp(3rem, 22vw, 7rem);
	}
	.flash-stack {
		left: 16px;
		right: 16px;
		max-width: none;
	}
	/* Cinematisk hero: lavere på mobil, thumbnails skjult så titlen får plads */
	.venue-hero__stage {
		height: clamp(340px, 52vh, 520px);
	}
	.venue-hero__thumbs {
		display: none;
	}
	.venue-hero__seeall {
		padding: 9px 14px;
		font-size: 0.84rem;
	}
	.venue__facts {
		grid-template-columns: 1fr 1fr;
	}
	.lightbox__nav {
		width: 46px;
		height: 46px;
	}
	.lightbox__meta {
		padding: 0 14px;
	}
}

/* =====================================================================
   Motion-lag, atmosfære & a11y-polish
   Initial skjult tilstand er gated bag .js (sættes i <head>) → ingen FOUC.
   Uden JS vises alt normalt. Reduced-motion neutraliseres til sidst.
   ===================================================================== */

/* ---------- Tastatur-fokus ---------- */
:focus-visible {
	outline: 3px solid var(--teal-500);
	outline-offset: 2px;
	border-radius: 6px;
}
.btn:focus-visible,
.fav-btn:focus-visible,
.rail__nav-btn:focus-visible {
	outline-offset: 3px;
}
.topbar__links a:focus-visible,
.hero__chips a:focus-visible {
	outline-offset: 4px;
}
:focus:not(:focus-visible) {
	outline: none;
}

/* ---------- Tabular tal (ingen layout-shift ved count-up/priser) ---------- */
.trust-card__num,
.vcard__price strong,
.plan-card__amount {
	font-variant-numeric: tabular-nums;
}

/* ---------- Touch ---------- */
.btn,
.fav-btn,
.cat-card,
.city-chip,
.rail__nav-btn,
.topbar__toggle,
.pagination__link,
.pagination__page,
.venue-subnav__link {
	touch-action: manipulation;
}

/* ---------- Header: materialeskift ved scroll ---------- */
.topbar.is-scrolled {
	background: rgba(255, 255, 255, 0.94);
	box-shadow: 0 10px 30px -16px rgba(15, 23, 42, 0.32);
}

/* ---------- Hero-atmosfære ---------- */
@keyframes heroGlow {
	0% {
		transform: translate3d(-2%, -1%, 0) scale(1);
	}
	50% {
		transform: translate3d(2%, 2%, 0) scale(1.06);
	}
	100% {
		transform: translate3d(-2%, -1%, 0) scale(1);
	}
}
.hero::before {
	content: "";
	position: absolute;
	inset: -25% -12% -35%;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(
			38% 52% at 16% 14%,
			rgba(204, 251, 241, 0.5),
			transparent 60%
		),
		radial-gradient(
			42% 58% at 88% 6%,
			rgba(153, 246, 228, 0.38),
			transparent 62%
		),
		radial-gradient(
			52% 60% at 74% 98%,
			rgba(13, 148, 136, 0.42),
			transparent 60%
		);
	animation: heroGlow 24s ease-in-out infinite;
}
.hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	opacity: 0.45;
	background-image: radial-gradient(
		rgba(255, 255, 255, 0.16) 1px,
		transparent 1.4px
	);
	background-size: 22px 22px;
	-webkit-mask-image: linear-gradient(180deg, #000, transparent 78%);
	mask-image: linear-gradient(180deg, #000, transparent 78%);
}

/* ---------- Hero load-animation (orkestreret stagger) ---------- */
@keyframes heroUp {
	from {
		opacity: 0;
		transform: translateY(16px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.js .hero__title,
.js .hero__lead,
.js .hero__search,
.js .hero__chips {
	opacity: 0;
	animation: heroUp 0.7s var(--ease-out) forwards;
}
.js .hero__title {
	animation-delay: 0.05s;
}
.js .hero__lead {
	animation-delay: 0.16s;
}
.js .hero__search {
	animation-delay: 0.27s;
}
.js .hero__chips {
	animation-delay: 0.4s;
}

/* Lokations-hero: billedet "sætter sig" + langsom cinematisk zoom; tekst/fakta glider op */
@keyframes heroRise {
	from {
		transform: translateY(10px);
	}
	to {
		transform: none;
	}
}
@keyframes heroKen {
	from {
		transform: scale(1);
	}
	to {
		transform: scale(1.06);
	}
}
.js .venue-hero__stage {
	animation: heroRise 0.85s var(--ease-out) both;
}
.js .venue-hero__main img {
	animation: heroKen 18s var(--ease-out) both;
}
.js .venue-hero__overlay .container {
	opacity: 0;
	animation: heroUp 0.7s var(--ease-out) 0.12s forwards;
}
.js .venue-hero .venue__facts {
	opacity: 0;
	animation: heroUp 0.7s var(--ease-out) 0.2s forwards;
}

/* ---------- Lokationsprofil: overblik, pakker, lokaler, aktiviteter ---------- */
.venue__block-intro {
	color: var(--ink-600);
	margin: -4px 0 18px;
	max-width: 60ch;
}
.venue__desc--muted {
	color: var(--ink-500);
	font-style: italic;
}
.venue__tour {
	margin-top: 14px;
}
.tag--soft {
	background: var(--teal-50);
	color: var(--teal-700);
}

/* Hurtigt overblik */
.venue__overview {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 32px;
	align-items: center;
}
.overview-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
}
.overview-stat {
	display: flex;
	flex-direction: column;
	line-height: 1.1;
}
.overview-stat__num {
	font-family: var(--font);
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--teal-700);
}
.overview-stat__label {
	font-size: 0.82rem;
	color: var(--ink-500);
}
.overview-chips {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

/* Prisniveau-indikator ($-skala, beregnet relativt) */
.price-level {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	line-height: 1;
	white-space: nowrap;
}
.price-level__signs {
	font-family: var(--font);
	font-weight: 800;
	letter-spacing: 1px;
}
.price-level__sign.is-on {
	color: var(--teal-700);
}
.price-level__sign.is-off {
	color: var(--ink-300);
}
.price-level__label {
	color: var(--ink-500);
	font-size: 0.82rem;
	font-weight: 600;
}
/* Standard (overblikskort) — matcher .overview-stat__num */
.price-level--default .price-level__signs {
	font-size: 1.4rem;
}
/* Kompakt (hero-fact + lokationskort) */
.price-level--compact {
	gap: 6px;
}
.price-level--compact .price-level__signs {
	font-size: 1.02rem;
}
.price-level--compact .price-level__label {
	font-size: 0.78rem;
}
/* Inline (tætpakkede flader) */
.price-level--inline .price-level__signs {
	font-size: 0.95rem;
}
.price-level--inline .price-level__label {
	font-size: 0.76rem;
}
@media (max-width: 480px) {
	.price-level--default .price-level__signs {
		font-size: 1.2rem;
	}
}
.overview-chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0.4em 0.85em;
	background: var(--surface);
	border: 1px solid var(--ink-200);
	border-radius: 999px;
	font-size: 0.85rem;
	color: var(--ink-700);
	font-weight: 500;
}
.overview-chip .inline-ico {
	color: var(--teal-600);
	width: 0.95em;
	height: 0.95em;
}

/* Pakker */
.pkg-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	align-items: start;
}
.pkg-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 14px;
	background: var(--surface);
	border: 1px solid var(--ink-200);
	border-radius: var(--radius-lg);
	padding: 24px;
	box-shadow: var(--shadow-sm);
	transition:
		box-shadow 0.2s var(--ease-out),
		transform 0.2s var(--ease-out),
		border-color 0.2s var(--ease-out);
}
.pkg-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-2px);
}
.pkg-card--featured {
	border-color: var(--teal-400);
	box-shadow:
		0 0 0 1px var(--teal-400),
		var(--shadow);
}
.pkg-card__flag {
	position: absolute;
	top: -11px;
	left: 24px;
	background: var(--teal-600);
	color: #fff;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 0.35em 0.8em;
	border-radius: 999px;
	box-shadow: var(--shadow-sm);
}
.pkg-card__head {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.pkg-card__name {
	font-size: 1.2rem;
	margin: 0;
}
.pkg-card__eventtags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.pkg-card__price {
	display: flex;
	flex-direction: column;
	gap: 2px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--ink-100);
}
.pkg-card__price-main {
	font-family: var(--font);
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--ink-900);
}
.pkg-card__price-note {
	font-size: 0.78rem;
	color: var(--ink-400);
}
.pkg-card__meta {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.pkg-card__meta li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	color: var(--ink-700);
}
.pkg-card__meta .inline-ico {
	color: var(--teal-600);
	flex-shrink: 0;
}
.pkg-card__desc {
	color: var(--ink-700);
	font-size: 0.93rem;
}
.pkg-card__desc p:last-child {
	margin-bottom: 0;
}
.pkg-card__section {
	border-top: 1px solid var(--ink-100);
	padding-top: 12px;
}
.pkg-card__subhead {
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--ink-500);
	margin: 0 0 8px;
}
.pkg-menu {
	margin-bottom: 10px;
}
.pkg-menu__name {
	font-weight: 600;
	margin: 0 0 4px;
	font-size: 0.92rem;
}
.pkg-menu__items {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.pkg-menu__items li {
	font-size: 0.9rem;
	color: var(--ink-700);
}
.pkg-menu__course {
	color: var(--ink-500);
	font-weight: 600;
}
.pkg-addons {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.pkg-addons li {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	font-size: 0.9rem;
	color: var(--ink-700);
}
.pkg-addons__price {
	font-weight: 600;
	color: var(--ink-900);
	white-space: nowrap;
}
.pkg-card__cta {
	margin-top: auto;
}

/* Lokaler */
.room-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.room-card {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 0;
	background: var(--surface);
	border: 1px solid var(--ink-200);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}
.room-card__media {
	position: relative;
}
.room-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.room-card__body {
	padding: 20px 22px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.room-card__name {
	font-size: 1.12rem;
	margin: 0;
}
.room-card__facts {
	color: var(--ink-600);
	font-size: 0.9rem;
	margin: 0;
}
.room-card__desc {
	color: var(--ink-700);
	font-size: 0.92rem;
}
.room-card__desc p:last-child {
	margin-bottom: 0;
}
.room-card__arr-head {
	font-size: 0.82rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--ink-500);
}
.room-arrangements {
	list-style: none;
	padding: 0;
	margin: 6px 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.room-arrangements li {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: var(--teal-50);
	border-radius: 8px;
	padding: 0.35em 0.7em;
	font-size: 0.82rem;
	color: var(--ink-700);
}
.room-arrangements li strong {
	color: var(--teal-800);
}
.room-card__tech {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.room-card__tech li {
	font-size: 0.8rem;
	color: var(--ink-600);
	background: var(--ink-100);
	border-radius: 999px;
	padding: 0.3em 0.75em;
}
.room-card__foot {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 8px;
	margin-top: auto;
	padding-top: 4px;
}
.room-card__price {
	font-weight: 700;
	color: var(--ink-900);
	font-size: 0.95rem;
}
.room-card__tour {
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--teal-700);
}

/* Aktiviteter */
.activity-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 18px;
	align-items: start;
}
.activity-card {
	display: flex;
	flex-direction: column;
	background: var(--surface);
	border: 1px solid var(--ink-200);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition:
		box-shadow 0.2s var(--ease-out),
		transform 0.2s var(--ease-out);
}
.activity-card:hover {
	box-shadow: var(--shadow);
	transform: translateY(-2px);
}
.activity-card__media {
	aspect-ratio: 3/2;
}
.activity-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.activity-card__body {
	padding: 18px 20px;
	display: flex;
	flex-direction: column;
	gap: 9px;
}
.activity-card__name {
	font-size: 1.1rem;
	margin: 0;
}
.activity-card__facts {
	color: var(--ink-600);
	font-size: 0.88rem;
	margin: 0;
}
.activity-card__desc,
.activity-card__points {
	color: var(--ink-700);
	font-size: 0.92rem;
}
.activity-card__desc p:last-child,
.activity-card__points p:last-child {
	margin-bottom: 0;
}
.activity-card__foot {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: baseline;
	gap: 8px;
	margin-top: auto;
	padding-top: 6px;
	border-top: 1px solid var(--ink-100);
}
.activity-card__price {
	font-weight: 700;
	color: var(--ink-900);
}
.activity-card__price-note,
.activity-card__partner {
	font-weight: 400;
	font-size: 0.8rem;
	color: var(--ink-400);
}
.activity-card__video {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin: 4px 0 10px;
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--teal-700, var(--teal-800));
	text-decoration: none;
}
.activity-card__video:hover { text-decoration: underline; }
.activity-card__video .icon { width: 16px; height: 16px; }

/* Kategori-indhold + highlights */
.venue__highlights ul {
	padding-left: 1.1em;
}
.venue__highlights li {
	color: var(--ink-700);
	margin-bottom: 4px;
}

/* Praktisk info: definition-lister + betingelser */
.venue__deflist {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.venue__deflist li {
	color: var(--ink-700);
	font-size: 0.92rem;
}
.venue__deflist-label {
	font-weight: 600;
	color: var(--ink-900);
}
.venue__notes {
	margin-top: 18px;
}
.venue__notes p {
	color: var(--ink-700);
	margin: 0;
}
.venue__terms {
	margin-top: 14px;
	border-top: 1px solid var(--ink-100);
	padding-top: 12px;
}
.venue__terms summary {
	cursor: pointer;
	font-weight: 600;
	color: var(--ink-700);
}
.venue__faq-intro {
	margin-bottom: 14px;
}

/* Kort */
.venue-map {
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--ink-200);
	box-shadow: var(--shadow-sm);
}
.venue-map iframe {
	display: block;
	width: 100%;
	height: 340px;
	border: 0;
}
.venue-map__addr {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 12px 0 0;
	color: var(--ink-700);
	font-size: 0.92rem;
}
.venue-map__addr .inline-ico {
	color: var(--teal-600);
}
.venue-map__addr a {
	margin-left: auto;
	font-weight: 600;
	color: var(--teal-700);
}

/* Kontaktperson + direkte kontakt i sidebar */
.contact-person {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: 1px solid var(--ink-100);
}
.contact-person__img {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}
.contact-person__info {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}
.contact-person__name {
	font-size: 1rem;
}
.contact-person__title {
	font-size: 0.85rem;
	color: var(--ink-500);
}
.contact-person__company {
	font-size: 0.82rem;
	color: var(--ink-400);
}
.contact-card__direct {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--ink-100);
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.contact-card__direct-head {
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--ink-400);
}
.contact-card__direct a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--ink-700);
	font-weight: 500;
	font-size: 0.92rem;
}
.contact-card__direct a:hover {
	color: var(--teal-700);
}
.contact-card__direct .inline-ico {
	color: var(--teal-600);
}

@media (max-width: 640px) {
	.room-card {
		grid-template-columns: 1fr;
	}
	.room-card__media {
		aspect-ratio: 16/9;
	}
	.pkg-grid {
		grid-template-columns: 1fr;
	}
	.venue-map iframe {
		height: 260px;
	}
}

/* ---------- Scroll-reveal (selektorliste matcher reveal.js) ---------- */
.js .section__head,
.js .cat-card,
.js .city-chip,
.js .trust-card,
.js .step,
.js .rail__head,
.js .rail__item,
.js .feature-card,
.js .plan-card,
.js .page-head,
.js .faq__item,
.js .venue__facts,
.js .venue__block,
.js .pkg-card,
.js .room-card,
.js .activity-card,
.js .review,
.js .contact-card,
/* Dashboard (selektorlisten matcher reveal.js) */
.js .kpi,
.js .dash-card,
.js .action-card,
.js .form-card,
.js .empty-state {
	opacity: 0;
	transform: translateY(var(--reveal-y));
	transition:
		opacity var(--reveal-dur) var(--ease-out),
		transform var(--reveal-dur) var(--ease-out);
}
.js .is-visible {
	opacity: 1 !important;
	transform: none !important;
}
/* Bevar fremhævet pris-korts skalering (har egen transform) */
.js .plan-card--highlight {
	transform: translateY(var(--reveal-y)) scale(1.02);
}
.js .plan-card--highlight.is-visible {
	transform: scale(1.02) !important;
}

/* ---------- Karrusel: pile + edge-fade ---------- */
.rail__head-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-shrink: 0;
}
.rail__nav {
	display: none;
	gap: 6px;
}
.rail__nav-btn {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	border: 1px solid var(--ink-200);
	background: #fff;
	color: var(--ink-700);
	display: grid;
	place-items: center;
	box-shadow: var(--shadow-sm);
	transition:
		border-color 0.18s var(--ease-out),
		color 0.18s var(--ease-out),
		transform 0.18s var(--ease-out),
		opacity 0.18s ease;
}
.rail__nav-btn:hover:not(:disabled) {
	border-color: var(--teal-500);
	color: var(--teal-700);
	transform: translateY(-1px);
}
.rail__nav-btn:disabled {
	opacity: 0.35;
	cursor: default;
}
.rail__nav-btn svg {
	width: 18px;
	height: 18px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.rail__viewport {
	position: relative;
}
.rail__viewport::before,
.rail__viewport::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 16px;
	width: 46px;
	z-index: 2;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.25s var(--ease-out);
}
.rail__viewport::before {
	left: 0;
	background: linear-gradient(90deg, var(--bg), rgba(248, 250, 252, 0));
}
.rail__viewport::after {
	right: 0;
	background: linear-gradient(270deg, var(--bg), rgba(248, 250, 252, 0));
}
.rail__viewport.has-prev::before {
	opacity: 1;
}
.rail__viewport.has-next::after {
	opacity: 1;
}
@media (min-width: 761px) {
	.rail__nav {
		display: flex;
	}
}

/* ---------- SVG-ikoner (kategori + feature + inline) ---------- */
.cat-card__icon {
	display: inline-grid;
	place-items: center;
	height: 42px;
	margin: 0 auto 2px;
	color: var(--teal-600);
	transition:
		transform 0.18s var(--ease-out),
		color 0.18s var(--ease-out);
}
.cat-card__icon svg {
	width: 30px;
	height: 30px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.cat-card:hover .cat-card__icon {
	transform: scale(1.1) translateY(-1px);
	color: var(--teal-700);
}

.feature-card__icon {
	display: inline-grid;
	place-items: center;
	width: 50px;
	height: 50px;
	border-radius: 15px;
	background: var(--teal-50);
	color: var(--teal-700);
	margin-bottom: 6px;
}
.feature-card__icon svg {
	width: 25px;
	height: 25px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.inline-ico {
	width: 1.05em;
	height: 1.05em;
	vertical-align: -0.16em;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.footer__flag {
	width: 1.25em;
	height: 0.95em;
	vertical-align: -0.1em;
	border-radius: 2px;
	margin-left: 0.15em;
}

/* ---------- Reduced motion: neutralisér alt bevægelse ---------- */
@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
	.hero::before {
		animation: none;
	}
	.js .hero__slide.is-active img {
		animation: none;
	}
	.js .hero__title,
	.js .hero__lead,
	.js .hero__search,
	.js .hero__chips {
		opacity: 1;
		animation: none;
	}
	.js .section__head,
	.js .cat-card,
	.js .city-chip,
	.js .trust-card,
	.js .step,
	.js .rail__head,
	.js .rail__item,
	.js .feature-card,
	.js .plan-card,
	.js .page-head,
	.js .faq__item,
	.js .venue__facts,
	.js .venue__block,
	.js .review,
	.js .contact-card,
	.js .pkg-card,
	.js .room-card,
	.js .activity-card,
	.js .venue-hero__overlay .container,
	.js .venue-hero__main img,
	.js .kpi,
	.js .dash-card,
	.js .action-card,
	.js .form-card,
	.js .empty-state {
		opacity: 1 !important;
		transform: none !important;
	}
	.js .plan-card--highlight {
		transform: scale(1.02) !important;
	}
	.vcard:hover .vcard__media img {
		transform: none;
	}
	/* Header: ingen stagger/forskydning — vis menupunkter straks */
	.topbar__nav.is-open .topbar__links > li,
	.topbar__nav.is-open .topbar__actions > * {
		animation: none !important;
		opacity: 1 !important;
		transform: none !important;
	}
	.topbar__mega-panel {
		opacity: 1 !important;
		transform: none !important;
	}
}

/* ---- Tilgængeligheds-kalender (N1) ---- */
.avail {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1.5rem;
}
.avail-cal__title {
	font-weight: 600;
	margin: 0 0 0.6rem;
	text-transform: capitalize;
}
.avail-cal__grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 3px;
}
.avail-cal__dow {
	text-align: center;
	font-size: 0.7rem;
	color: var(--ink-500);
	padding: 0.2rem 0;
	font-weight: 600;
}
.avail-cal__day {
	text-align: center;
	padding: 0.45rem 0;
	border-radius: 6px;
	font-size: 0.85rem;
	font-variant-numeric: tabular-nums;
}
.avail-cal__day--free {
	background: var(--green-bg);
	color: var(--green);
	font-weight: 600;
}
.avail-cal__day--free[data-date] {
	cursor: pointer;
	transition: background .12s ease, box-shadow .12s ease;
}
.avail-cal__day--free[data-date]:hover,
.avail-cal__day--free[data-date]:focus-visible {
	background: var(--green);
	color: #fff;
	outline: none;
}
.avail-cal__day--free.is-selected {
	background: var(--green);
	color: #fff;
	box-shadow: 0 0 0 2px var(--green);
}
.inquiry-date-note {
	margin: 0 0 .6rem;
	padding: .5rem .7rem;
	background: var(--green-bg);
	color: var(--green);
	border-radius: 8px;
	font-size: .88rem;
	font-weight: 600;
}
.avail-cal__day--off {
	background: var(--red-bg);
	color: var(--red);
	text-decoration: line-through;
}
.avail-cal__day--past {
	color: var(--ink-300);
}
.avail-cal__day--pad {
	background: transparent;
}
.avail-legend {
	display: flex;
	gap: 1.1rem;
	flex-wrap: wrap;
	margin-top: 1rem;
	font-size: 0.82rem;
	color: var(--ink-600);
}
.avail-legend span {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
}
.avail-legend i {
	width: 14px;
	height: 14px;
	border-radius: 4px;
	display: inline-block;
}
.avail-legend i.is-free {
	background: var(--green-bg);
}
.avail-legend i.is-off {
	background: var(--red-bg);
}
.avail-note {
	margin-top: 0.9rem;
	font-size: 0.82rem;
	color: var(--ink-500);
}

/* ---- Sammenlign (N2) ---- */
.vcard__compare {
	width: 100%;
	margin-top: 0.6rem;
	padding: 0.4rem;
	min-height: var(--control-h);
	border: 1px dashed var(--line, #cdd6df);
	background: transparent;
	border-radius: 8px;
	font-size: 0.82rem;
	color: var(--ink-600);
	cursor: pointer;
	transition: all 0.15s;
}
.vcard__compare:hover {
	border-color: var(--teal);
	color: var(--teal);
}
.vcard__compare.is-active {
	background: var(--teal);
	border-style: solid;
	border-color: var(--teal);
	color: #fff;
}
.cmp-tray {
	position: fixed;
	left: 50%;
	transform: translateX(-50%);
	bottom: 1rem;
	z-index: 60;
	display: flex;
	align-items: center;
	gap: 1rem;
	background: var(--ink-900, #13202b);
	color: #fff;
	padding: 0.7rem 1.1rem;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.cmp-tray[hidden] {
	display: none;
}
.cmp-tray__count {
	font-size: 0.9rem;
}
.cmp-tray__clear {
	background: transparent;
	border: 0;
	color: #cdd6df;
	cursor: pointer;
	font-size: 0.85rem;
	text-decoration: underline;
}
.cmp-wrap {
	overflow-x: auto;
}
.cmp-table {
	border-collapse: collapse;
	width: 100%;
	min-width: 600px;
}
.cmp-table th,
.cmp-table td {
	padding: 0.7rem 0.8rem;
	border-bottom: 1px solid var(--line, #e6ebf0);
	text-align: left;
	vertical-align: middle;
}
.cmp-rowhead {
	font-weight: 600;
	color: var(--ink-600);
	white-space: nowrap;
	width: 160px;
	position: sticky;
	left: 0;
	background: var(--surface);
	border-right: 1px solid var(--line, #e6ebf0);
	z-index: 1;
}
.cmp-col {
	text-align: left;
	min-width: 160px;
}
.cmp-venue {
	display: block;
}
.cmp-venue img {
	width: 100%;
	max-width: 220px;
	height: auto;
	border-radius: 8px;
	display: block;
	margin-bottom: 0.4rem;
}
.cmp-venue__title {
	font-weight: 600;
}
.cmp-remove {
	margin-top: 0.3rem;
	background: transparent;
	border: 0;
	color: var(--red);
	cursor: pointer;
	font-size: 0.78rem;
	text-decoration: underline;
}
.cmp-yes {
	color: var(--green);
	font-weight: 700;
}
.cmp-no {
	color: var(--ink-300);
}
.cmp-table thead .cmp-rowhead {
	z-index: 2;
}
.cmp-section__title {
	background: var(--ink-50);
	color: var(--teal-700);
	font-weight: 700;
	font-size: 0.72rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.cmp-table tbody tr:hover td,
.cmp-table tbody tr:hover .cmp-rowhead {
	background: var(--teal-50);
}

/* Sticky overlejringer på /sammenlign — kolonne-justerede flydende barer (JS-synket) */
.cmp-sticky {
	position: fixed;
	left: 0;
	right: 0;
	z-index: 55; /* over subnav(50), under cmp-tray(60)/topbar(100) */
	background: rgba(255, 255, 255, 0.92);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	opacity: 0;
	pointer-events: none;
	transition:
		opacity 0.2s var(--ease-out),
		transform 0.2s var(--ease-out);
}
.cmp-sticky.is-shown {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}
.cmp-sticky--top {
	top: 68px;
	border-bottom: 1px solid var(--ink-200);
	box-shadow: 0 6px 16px -12px rgba(15, 23, 42, 0.4);
	transform: translateY(-6px);
}
.cmp-sticky--bottom {
	bottom: 0;
	border-top: 1px solid var(--ink-200);
	box-shadow: 0 -8px 26px -16px rgba(15, 23, 42, 0.4);
	transform: translateY(6px);
	padding-bottom: env(safe-area-inset-bottom, 0);
}
/* Spejler .container's indholdsboks, så de flydende barer deler wrapper med
   tabellen (centreret, samme maxw og 20px-rende). overflow:hidden klipper
   sporet ved kolonnens kanter — track'et oversættes med -scrollLeft i compare.js. */
.cmp-sticky__inner {
	width: calc(100% - 40px);
	max-width: calc(var(--maxw) - 40px);
	margin: 0 auto;
	overflow: hidden;
}
.cmp-sticky__track {
	display: flex;
}
.cmp-sticky__spacer {
	flex: 0 0 160px;
} /* matcher .cmp-rowhead width:160px */
.cmp-sticky__col {
	flex: 0 0 auto;
	box-sizing: border-box;
	padding: 0.55rem 0.8rem;
	display: flex;
	align-items: center;
	gap: 0.6rem;
	min-width: 0;
}
.cmp-sticky--top .cmp-sticky__col {
	justify-content: space-between;
}
.cmp-sticky__venue {
	font-weight: 600;
	color: var(--ink-900);
	font-size: 0.92rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.cmp-sticky__remove {
	flex: none;
	background: transparent;
	border: 0;
	color: var(--red);
	cursor: pointer;
	font-size: 0.78rem;
	text-decoration: underline;
}
.cmp-sticky__cta {
	width: 100%;
	justify-content: center;
}
.cmp-page .cmp-tray {
	display: none;
} /* redundant på selve siden */
.cmp-page.cmp-has-bottombar .cmp-wrap {
	padding-bottom: 72px;
} /* plads til bund-baren */
/* På smalle skærme er de JS-synkede, kolonne-justerede flydende barer skrøbelige
   (smal viewport + vandret tabel-scroll). Skjul dem og lad selve tabellen scrolle;
   tabellen har overflow-x:auto med synlig affordance. */
@media (max-width: 560px) {
	.cmp-sticky {
		display: none;
	}
	.cmp-page.cmp-has-bottombar .cmp-wrap {
		padding-bottom: 0;
	}
}
@media (prefers-reduced-motion: reduce) {
	.cmp-sticky {
		transition: none;
		transform: none;
	}
}

/* ---- Pris-slider (U2) ---- */
.filters__range {
	width: 100%;
	accent-color: var(--teal);
}
.filters__range-out {
	float: right;
	font-weight: 600;
	color: var(--teal);
	font-size: 0.82rem;
}

/* ---- Autocomplete (U5) ---- */
.ac-box {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	z-index: 50;
	background: #fff;
	border: 1px solid var(--line, #cdd6df);
	border-radius: 10px;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
	margin-top: 4px;
	overflow: hidden;
	max-height: 340px;
	overflow-y: auto;
	text-align: left;
}
.ac-group {
	padding: 0.4rem 0.8rem;
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--ink-500);
	background: var(--ink-50, #f5f7f9);
}
.ac-item {
	display: block;
	padding: 0.55rem 0.8rem;
	color: var(--ink-800);
	text-decoration: none;
	font-size: 0.92rem;
}
.ac-item:hover,
.ac-item.is-active {
	background: var(--teal-100, #e6f7f3);
	color: var(--teal);
}
.ac-sub {
	color: var(--ink-400);
	font-size: 0.8rem;
}

/* ---- Kort-visning (U3) ---- */
.results-map {
	height: 520px;
	width: 100%;
	border-radius: 12px;
	overflow: hidden;
	position: relative; /* anchor z-index so Leaflet's internals stay contained */
	z-index: 1;
}
.view-toggle {
	display: inline-flex;
	gap: 2px;
}
.view-toggle .is-active {
	background: var(--teal);
	color: #fff;
}

/* ---- Kort-side (/kort) ---- */
.map-page__map {
	height: 72vh;
	min-height: 420px;
	/* Contain Leaflet's internal z-indexes (controls=1000, panes/popups=400-700)
	   in one low stacking context, so they stay below topbar(100) & cmp-tray(60). */
	position: relative;
	z-index: 0;
}
.map-page__count {
	margin-top: 0.8rem;
	color: var(--ink-500);
	font-size: 0.9rem;
}

/* ---- Rigt preview-kort i kort-popup ---- */
.leaflet-popup-content {
	margin: 12px;
}
.leaflet-popup-content-wrapper {
	border-radius: 12px;
}
.map-popup {
	width: 230px;
}
.map-popup__img {
	width: 100%;
	height: 120px;
	object-fit: cover;
	border-radius: 8px;
	display: block;
	margin-bottom: 0.5rem;
}
.map-popup__body {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}
.map-popup__title {
	font-size: 0.98rem;
	color: var(--ink-900);
	line-height: 1.25;
}
.map-popup__meta {
	font-size: 0.8rem;
	color: var(--ink-500);
}
.map-popup__price {
	font-size: 0.85rem;
	color: var(--ink-700);
	font-weight: 600;
}
.map-popup__actions {
	display: flex;
	gap: 0.4rem;
	margin-top: 0.5rem;
}
.map-popup__actions .btn {
	flex: 1;
	justify-content: center;
}
/* Leaflet sætter .leaflet-container a { color:#0078A8 } (specificitet 0,1,1) som ellers
   kaprer .btn--primary's hvide tekst → blå-på-teal. Vind med højere specificitet. */
.map-popup__actions a.btn--primary {
	color: #fff;
}
.map-popup__compare.is-active {
	background: var(--teal-600);
	border-color: var(--teal-600);
	color: #fff;
}

/* ---- Sammenlignings-widget i headeren ---- */
.topbar__compare {
	position: relative;
}
.topbar__compare-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--ink-200);
	border-radius: var(--radius-sm);
	background: #fff;
	color: var(--ink-700);
	cursor: pointer;
	transition:
		border-color 0.15s,
		color 0.15s;
}
.topbar__compare-btn:hover,
.topbar__compare.is-open .topbar__compare-btn {
	border-color: var(--teal-500);
	color: var(--teal-700);
}
.topbar__compare-count {
	position: absolute;
	top: -6px;
	right: -6px;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--teal-600);
	color: #fff;
	font-size: 0.7rem;
	font-weight: 700;
	line-height: 1;
	border-radius: 999px;
}
.topbar__compare-panel {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	width: 300px;
	max-width: calc(100vw - 32px);
	background: #fff;
	border: 1px solid var(--ink-200);
	border-radius: var(--radius);
	box-shadow: var(--shadow-lg);
	padding: 14px;
	z-index: 120;
}
.topbar__compare-head {
	margin: 0 0 0.6rem;
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: var(--ink-500);
}
.topbar__compare-list {
	list-style: none;
	margin: 0 0 0.8rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.1rem;
}
.topbar__compare-item {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.4rem 0;
	border-bottom: 1px solid var(--ink-100);
}
.topbar__compare-item:last-child {
	border-bottom: 0;
}
.topbar__compare-name {
	flex: 1;
	min-width: 0;
	font-size: 0.9rem;
	color: var(--ink-800);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
a.topbar__compare-name:hover {
	color: var(--teal-700);
}
.topbar__compare-remove {
	flex: none;
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	color: var(--ink-400);
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
	border-radius: 6px;
}
.topbar__compare-remove:hover {
	color: var(--red);
	background: var(--red-bg);
}
.topbar__compare-empty {
	font-size: 0.88rem;
	color: var(--ink-500);
	padding: 0.3rem 0 0.6rem;
}
.topbar__compare-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.6rem;
}
.topbar__compare-foot .btn {
	flex: 1;
	justify-content: center;
}
.topbar__compare-clear {
	flex: none;
	background: transparent;
	border: 0;
	color: var(--ink-500);
	font-size: 0.82rem;
	text-decoration: underline;
	cursor: pointer;
}
.topbar__compare-clear:hover {
	color: var(--ink-800);
}

/* =====================================================================
   Kort-søgning (/kort) — Otodom-stil: scrollbar liste + sticky kort
   ===================================================================== */
.mapsearch {
	display: flex;
	align-items: stretch;
	height: calc(100vh - 68px);
	min-height: 520px;
	background: var(--ink-50);
}
.mapsearch__panel {
	flex: 0 0 46%;
	max-width: 560px;
	min-width: 360px;
	overflow-y: auto;
	background: #fff;
	border-right: 1px solid var(--ink-200);
	-webkit-overflow-scrolling: touch;
}
.mapsearch__head {
	position: sticky;
	top: 0;
	z-index: 5;
	background: #fff;
	padding: 16px 20px 12px;
	border-bottom: 1px solid var(--ink-200);
}
.mapsearch__title {
	font-family: var(--font);
	font-size: 1.25rem;
	font-weight: 800;
	color: var(--ink-900);
	margin: 0;
}
.mapsearch__count {
	margin: 0.2rem 0 0;
	color: var(--ink-500);
	font-size: 0.9rem;
}
.mapsearch__count strong {
	color: var(--ink-900);
	font-variant-numeric: tabular-nums;
}
.mapsearch__cards {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 16px 20px 28px;
}
.mapsearch__mapwrap {
	flex: 1 1 auto;
	position: relative;
	/* Trap Leaflet's internal z-indexes (controls=1000, panes/popups=400-700)
	   in an isolated stacking context, so they stay below topbar(100) & cmp-tray(60). */
	isolation: isolate;
	z-index: 0;
}
.mapsearch__map {
	position: absolute;
	inset: 0;
	height: 100%;
	width: 100%;
}

/* Vandret liste-kort */
.mcard {
	position: relative;
	display: flex;
	background: #fff;
	border: 1px solid var(--ink-200);
	border-radius: var(--radius);
	overflow: hidden;
	transition:
		box-shadow 0.18s var(--ease-out),
		border-color 0.18s,
		transform 0.18s var(--ease-out);
}
.mcard:hover,
.mcard.is-highlight {
	box-shadow: var(--shadow-lg);
	border-color: var(--teal-300);
}
.mcard.is-highlight {
	transform: translateY(-1px);
}
.mcard__media {
	flex: 0 0 38%;
	max-width: 200px;
	position: relative;
	display: block;
	background: var(--ink-100);
}
.mcard__media img {
	width: 100%;
	height: 100%;
	min-height: 150px;
	object-fit: cover;
	display: block;
}
.mcard__badge {
	position: absolute;
	top: 8px;
	left: 8px;
}
.mcard__fav {
	position: absolute;
	top: 8px;
	right: 8px;
	margin: 0;
	z-index: 2;
}
.mcard__body {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	padding: 12px 14px;
}
.mcard__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 8px;
	min-width: 0; /* så titlen kan krympe/wrappe i den smalle kort-kolonne */
}
.mcard__title {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.25;
	margin: 0;
	min-width: 0;
	overflow-wrap: anywhere;
}
.mcard__title a {
	color: var(--ink-900);
}
.mcard__title a:hover {
	color: var(--teal-700);
}
.mcard__rating {
	flex: none;
	display: inline-flex;
	align-items: center;
	gap: 3px;
	font-size: 0.82rem;
	color: var(--ink-700);
}
.mcard__rating svg {
	fill: var(--amber);
}
.mcard__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0.35rem 0 0;
	color: var(--ink-500);
	font-size: 0.84rem;
}
.mcard__desc {
	margin: 0.45rem 0 0;
	color: var(--ink-600);
	font-size: 0.85rem;
	line-height: 1.45;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.mcard__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: auto;
	padding-top: 10px;
	min-width: 0;
	flex-wrap: wrap; /* pris + sammenlign-knap wrapper i stedet for at klippes */
}
.mcard__price {
	font-size: 0.95rem;
	color: var(--ink-900);
}
.mcard__price strong {
	font-weight: 800;
	font-variant-numeric: tabular-nums;
}
.mcard__price-from,
.mcard__price-unit {
	color: var(--ink-500);
	font-weight: 500;
	font-size: 0.8rem;
}
.mcard__compare {
	background: transparent;
	border: 1px solid var(--ink-200);
	border-radius: 8px;
	padding: 0.35rem 0.7rem;
	min-height: 36px;
	font-size: 0.8rem;
	color: var(--ink-600);
	cursor: pointer;
	transition: all 0.15s;
	white-space: nowrap;
}
@media (max-width: 760px) {
	.mcard__compare {
		min-height: var(--control-h);
	}
}
.mcard__compare:hover {
	border-color: var(--teal-500);
	color: var(--teal-700);
}
.mcard__compare.is-active {
	background: var(--teal-600);
	border-color: var(--teal-600);
	color: #fff;
}

/* Pris-pin (divIcon) — 0×0 container på punktet, pill centreret via transform */
.price-pin-wrap {
	width: 0 !important;
	height: 0 !important;
	overflow: visible;
}
.price-pin {
	position: absolute;
	left: 0;
	top: 0;
	transform: translate(-50%, calc(-100% - 7px));
	white-space: nowrap;
	background: #fff;
	color: var(--ink-900);
	font-size: 0.78rem;
	font-weight: 700;
	line-height: 1;
	padding: 6px 9px;
	border-radius: 999px;
	border: 1px solid var(--ink-200);
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.18);
	cursor: pointer;
	transition:
		background 0.12s,
		color 0.12s,
		transform 0.12s,
		border-color 0.12s;
	font-variant-numeric: tabular-nums;
}
.price-pin::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 100%;
	transform: translateX(-50%);
	border: 6px solid transparent;
	border-top-color: #fff;
	margin-top: -1px;
}
.price-pin:hover {
	border-color: var(--teal-400);
}
.price-pin.is-active {
	background: var(--teal-600);
	color: #fff;
	border-color: var(--teal-600);
	transform: translate(-50%, calc(-100% - 9px)) scale(1.06);
}
.price-pin.is-active::after {
	border-top-color: var(--teal-600);
}

/* Cluster — cirkulær tæller */
.price-cluster-wrap {
	width: 0 !important;
	height: 0 !important;
	overflow: visible;
}
.price-cluster {
	position: absolute;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 8px;
	border-radius: 999px;
	background: var(--teal-600);
	color: #fff;
	font-size: 0.85rem;
	font-weight: 800;
	box-shadow:
		0 0 0 4px rgba(13, 148, 136, 0.25),
		0 2px 8px rgba(15, 23, 42, 0.25);
	border: 2px solid #fff;
	font-variant-numeric: tabular-nums;
}

/* Mobil liste/kort-toggle (skjult på desktop) */
/* ---- Kort-værktøjer: land/landsdel-vælger, filtre, tegn, søg-område ---- */
.mapsearch__headtop {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.mapsearch__geo {
	margin-top: 12px;
}
.mapsearch__georow {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.mapsearch__geolabel {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--ink-600);
}
.mapsearch__country {
	flex: 1 1 auto;
	min-width: 140px;
	font: inherit;
	font-size: 0.9rem;
	color: var(--ink-900);
	background: #fff;
	border: 1px solid var(--ink-300);
	border-radius: var(--radius-sm);
	padding: 7px 10px;
	cursor: pointer;
}
.mapsearch__country:focus-visible {
	outline: 2px solid var(--teal-500);
	outline-offset: 1px;
}
.mapsearch__regions {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-top: 10px;
}
.region-chip {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	min-height: 36px;
	font: inherit;
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--ink-700);
	background: var(--ink-50);
	border: 1px solid var(--ink-200);
	border-radius: 999px;
	padding: 5px 11px;
	cursor: pointer;
	transition: background 0.15s, border-color 0.15s, color 0.15s;
}
@media (max-width: 760px) {
	.region-chip {
		min-height: var(--tap-min);
	}
}
.region-chip:hover {
	border-color: var(--teal-300);
	color: var(--ink-900);
}
.region-chip.is-active {
	background: var(--teal-600);
	border-color: var(--teal-600);
	color: #fff;
}
.region-chip__n {
	font-variant-numeric: tabular-nums;
	opacity: 0.7;
	font-weight: 700;
}
.region-chip.is-active .region-chip__n {
	opacity: 0.85;
}
.region-chip--reset {
	background: #fff;
	border-style: dashed;
}
.mapsearch__filters {
	margin-top: 12px;
	border-top: 1px solid var(--ink-100);
	padding-top: 10px;
}
.mapsearch__filterssummary {
	font-size: 0.86rem;
	font-weight: 700;
	color: var(--ink-700);
	cursor: pointer;
	list-style: none;
}
.mapsearch__filterssummary::-webkit-details-marker {
	display: none;
}
.mapsearch__filterssummary::before {
	content: "+ ";
	color: var(--teal-700);
	font-weight: 800;
}
.mapsearch__filters[open] .mapsearch__filterssummary::before {
	content: "– ";
}
.mapsearch__filtersbody {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 10px;
}
.mapsearch__field {
	display: flex;
	flex-direction: column;
	gap: 4px;
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--ink-600);
}
.mapsearch__field input,
.mapsearch__field select {
	font: inherit;
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--ink-900);
	background: #fff;
	border: 1px solid var(--ink-300);
	border-radius: var(--radius-sm);
	padding: 6px 9px;
	max-width: 140px;
}
.mapsearch__check {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	align-self: flex-end;
	font-size: 0.84rem;
	font-weight: 600;
	color: var(--ink-700);
	cursor: pointer;
}
.mapsearch__empty {
	margin: 0;
	padding: 14px 16px;
	background: var(--amber-bg);
	border: 1px solid var(--gold-bg);
	border-radius: var(--radius);
	color: var(--gold);
	font-size: 0.9rem;
	font-weight: 600;
}

/* Valgt liste-kort (tovejs-synk fra kort-klik) — tydeligere end hover. */
.mcard.is-selected {
	border-color: var(--teal-600);
	box-shadow: var(--shadow-lg);
	background: var(--teal-50);
}
.mcard.is-filtered-out {
	display: none;
}

/* Flydende kort-knapper */
.mapsearch__searcharea {
	position: absolute;
	top: 14px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1000;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #fff;
	color: var(--ink-900);
	border: 1px solid var(--ink-200);
	border-radius: 999px;
	padding: 9px 16px;
	font-size: 0.88rem;
	font-weight: 700;
	box-shadow: var(--shadow-lg);
	cursor: pointer;
}
.mapsearch__searcharea:hover {
	border-color: var(--teal-400);
}
.mapsearch__searcharea .icon {
	stroke: var(--teal-700);
}
.mapsearch__cleardraw {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1000;
	background: var(--ink-900);
	color: #fff;
	border: 0;
	border-radius: 999px;
	padding: 8px 16px;
	font-size: 0.84rem;
	font-weight: 700;
	box-shadow: var(--shadow-lg);
	cursor: pointer;
}

/* Leaflet-kontroller tilpasset design-tokens */
.mapsearch .leaflet-control-zoom {
	border: 0;
	box-shadow: var(--shadow);
	border-radius: var(--radius-sm);
	overflow: hidden;
}
.mapsearch .leaflet-control-zoom a {
	color: var(--ink-800);
	border-bottom-color: var(--ink-100);
}
.mapsearch .leaflet-control-zoom a:hover {
	background: var(--teal-50);
	color: var(--teal-700);
}
.mapsearch .leaflet-control-scale-line {
	border-color: var(--ink-300);
	color: var(--ink-600);
	background: rgba(255, 255, 255, 0.8);
}
/* Geoman-toolbar: blødere hjørner + skygge så den matcher zoom-kontrollen */
.mapsearch .leaflet-pm-toolbar .button-container a {
	border-radius: var(--radius-sm);
}

.mapsearch__viewbtn {
	display: none;
}

@media (max-width: 900px) {
	.mapsearch__searcharea {
		top: 10px;
	}
	.mapsearch__cleardraw {
		bottom: 74px;
	}
	/* Touch-polygon er fnidret — prioritér rektangel + cirkel på små skærme. */
	.leaflet-pm-toolbar .leaflet-pm-icon-polygon {
		display: none;
	}
	.mapsearch {
		display: block;
		height: auto;
		min-height: 0;
	}
	.mapsearch__panel {
		flex: none;
		width: 100%;
		max-width: none;
		min-width: 0;
		border-right: 0;
		overflow: visible;
	}
	.mapsearch__mapwrap {
		position: fixed;
		inset: 68px 0 0 0;
		z-index: 90;
		display: none;
	}
	.mapsearch.is-map-open .mapsearch__mapwrap {
		display: block;
	}
	.mapsearch__viewbtn {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		position: fixed;
		left: 50%;
		bottom: 18px;
		transform: translateX(-50%);
		z-index: 95;
		background: var(--ink-900);
		color: #fff;
		border: 0;
		border-radius: 999px;
		padding: 11px 18px;
		min-height: var(--control-h);
		font-size: 0.9rem;
		font-weight: 600;
		box-shadow: var(--shadow-lg);
		cursor: pointer;
	}
	.mapsearch__viewbtn .icon {
		stroke: #fff;
	}
}

/* ---- Bulk-handlinger (A2) ---- */
.bulk-bar {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin-bottom: 0.8rem;
	flex-wrap: wrap;
}
.bulk-bar__count {
	color: var(--ink-500);
	font-size: 0.85rem;
}

/* ---- Interne link-grupper (hub-and-spoke på landings-/combo-sider) ---- */
.related-links {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 28px;
}
.related-links__title {
	font-size: 1rem;
	margin: 0 0 0.6rem;
}
.related-links__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}
.related-links__list a {
	color: var(--ink-500);
	text-decoration: none;
	font-size: 0.9rem;
}
.related-links__list a:hover {
	color: var(--teal);
	text-decoration: underline;
}

/* ---- Læsbart tekstindhold (guides + lovsider) ---- */
.prose {
	line-height: 1.7;
	color: var(--ink-700, #334155);
}
.prose h2 {
	margin: 1.8rem 0 0.6rem;
	font-size: 1.3rem;
}
.prose h3 {
	margin: 1.3rem 0 0.4rem;
	font-size: 1.1rem;
}
.prose p,
.prose ul,
.prose ol {
	margin: 0 0 1rem;
}
.prose ul,
.prose ol {
	padding-left: 1.3rem;
}
.prose li {
	margin: 0.3rem 0;
}
.prose a {
	color: var(--teal);
}
.prose table {
	width: 100%;
	border-collapse: collapse;
	margin: 0 0 1rem;
}
.prose th,
.prose td {
	text-align: left;
	padding: 0.5rem 0.6rem;
	border-bottom: 1px solid var(--border, #e2e8f0);
}

/* ---- Guides-hub ---- */
.guide-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 22px;
}
.guide-card {
	background: var(--surface, #fff);
	border: 1px solid var(--border, #e2e8f0);
	border-radius: var(--radius-lg, 14px);
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}
.guide-card__title {
	font-size: 1.15rem;
	margin: 0;
}
.guide-card__title a {
	color: inherit;
	text-decoration: none;
}
.guide-card__title a:hover {
	color: var(--teal);
}
.guide-card__excerpt {
	color: var(--ink-500);
	font-size: 0.92rem;
	margin: 0;
	flex: 1;
}
.guide-card__link {
	color: var(--teal);
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
}
.guide__meta {
	color: var(--ink-500);
	font-size: 0.85rem;
	margin: 0.3rem 0 0;
}

/* ===================================================================
   Prisberegner (offentlig widget + selvstændig side)
   =================================================================== */
.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}
.form-grid .field--full {
	grid-column: 1 / -1;
}
.checks-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
	gap: 0.5rem 0.9rem;
}
.field__hint {
	display: block;
	color: var(--ink-500);
	font-size: 0.82rem;
	margin-top: 0.3rem;
}
@media (max-width: 560px) {
	.form-grid {
		grid-template-columns: 1fr;
	}
}

/* ---------- Multi-venue RFQ ("få tilbud") ---------- */
.rfq {
	max-width: 760px;
	margin-inline: auto;
	padding-block: 1.5rem 3rem;
}
.rfq-form__group {
	border: 1px solid var(--line, #e6e6e6);
	border-radius: 12px;
	padding: 1.25rem 1.25rem 1rem;
	margin: 0 0 1.25rem;
}
.rfq-form__group legend {
	font-weight: 700;
	padding-inline: 0.4rem;
	color: var(--ink-700, inherit);
}
.rfq__confirm {
	background: var(--teal-50, #ecfdf5);
	border: 1px solid var(--teal-700, #0f766e);
	border-radius: 12px;
	padding: 1.25rem 1.5rem;
	margin-bottom: 1.5rem;
}
.rfq__confirm h2 {
	margin: 0 0 0.4rem;
}
.rfq__confirm-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: 0.9rem;
}

.calc-card {
	padding: 1.5rem;
}
.calc-card__trust {
	color: var(--ink-500);
	font-size: 0.85rem;
	margin: 0.85rem 0.25rem 0;
	text-align: center;
}
.calc-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 0.85rem;
}
.calc-links a {
	color: var(--teal-700);
	font-weight: 600;
	text-decoration: none;
}
.calc-links a:hover {
	text-decoration: underline;
}

/* Trin-indikator */
.calc-steps {
	display: none;
	list-style: none;
	margin: 0 0 1.4rem;
	padding: 0;
	gap: 0.4rem;
}
.calc.is-js .calc-steps {
	display: flex;
	flex-wrap: wrap;
}
.calc-steps__item {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.8rem;
	color: var(--ink-400);
	font-weight: 600;
	flex: 1;
	min-width: 90px;
}
.calc-steps__item span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 999px;
	background: var(--ink-100);
	color: var(--ink-500);
	font-size: 0.8rem;
}
.calc-steps__item.is-active {
	color: var(--teal-700);
}
.calc-steps__item.is-active span {
	background: var(--teal-600);
	color: #fff;
}

/* Trin */
.calc-step {
	border: 0;
	margin: 0;
	padding: 0;
}
.calc.is-js .calc-step {
	display: none;
}
.calc.is-js .calc-step.is-active {
	display: block;
	animation: calcFade 0.3s var(--ease-out);
}
@keyframes calcFade {
	from {
		opacity: 0;
		transform: translateY(8px);
	}
	to {
		opacity: 1;
		transform: none;
	}
}
.calc-step__legend {
	font-family: var(--font);
	font-weight: 700;
	font-size: 1.1rem;
	margin: 0 0 1rem;
	padding: 0;
	color: var(--ink-900);
}
.calc-nav {
	display: flex;
	justify-content: space-between;
	gap: 0.6rem;
	margin-top: 1.25rem;
}
.calc-nav .btn {
	min-width: 120px;
}
.calc:not(.is-js) .calc-nav button[data-calc-next],
.calc:not(.is-js) .calc-nav button[data-calc-prev] {
	display: none;
}
.calc:not(.is-js) .calc-step {
	margin-bottom: 1.75rem;
}

/* Budgetniveau */
.calc-budget {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 0.6rem;
}
.calc-budget__opt {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.7rem 0.85rem;
	border: 1.5px solid var(--ink-200);
	border-radius: var(--radius-sm);
	cursor: pointer;
	font-weight: 600;
	font-size: 0.92rem;
}
.calc-budget__opt:has(input:checked) {
	border-color: var(--teal-500);
	background: var(--teal-50);
}
.calc-extra__desc {
	display: block;
	color: var(--ink-500);
	font-size: 0.78rem;
	font-weight: 400;
}

/* Status / fejl */
.calc-status {
	margin-top: 1rem;
	color: var(--ink-600);
	font-weight: 600;
}
.calc-error {
	margin-top: 1rem;
	padding: 0.7rem 0.9rem;
	background: var(--red-bg);
	color: var(--red);
	border-radius: var(--radius-sm);
	font-size: 0.9rem;
}
.calc-empty {
	color: var(--ink-500);
}

/* Resultat */
.calc-result {
	margin-top: 1.5rem;
	border-top: 1.5px dashed var(--ink-200);
	padding-top: 1.4rem;
}
.calc-result__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-size: 0.72rem;
	font-weight: 700;
	color: var(--teal-700);
}
.calc-result__total {
	font-family: var(--font);
	font-weight: 800;
	font-size: 1.9rem;
	line-height: 1.1;
	margin: 0.2rem 0 0.15rem;
	color: var(--ink-900);
}
.calc-result--unavailable .calc-result__total {
	font-size: 1.3rem;
	color: var(--ink-700);
}
.calc-result__perguest {
	color: var(--ink-600);
	font-weight: 600;
	margin: 0;
}
.calc-result__warnings {
	margin: 1rem 0;
}
.calc-warning {
	display: flex;
	align-items: flex-start;
	gap: 0.45rem;
	padding: 0.6rem 0.8rem;
	background: var(--amber-bg);
	color: var(--gold);
	border-radius: var(--radius-sm);
	font-size: 0.88rem;
	margin: 0.4rem 0;
}
.calc-warning svg {
	flex: 0 0 auto;
	margin-top: 0.1rem;
}
.calc-breakdown {
	width: 100%;
	border-collapse: collapse;
	margin: 1.1rem 0;
	font-size: 0.92rem;
}
.calc-breakdown__caption {
	text-align: left;
	font-weight: 700;
	color: var(--ink-700);
	margin-bottom: 0.4rem;
}
.calc-breakdown th[scope="row"] {
	text-align: left;
	font-weight: 600;
	color: var(--ink-700);
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--ink-100);
}
.calc-breakdown td {
	text-align: right;
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--ink-100);
	white-space: nowrap;
	color: var(--ink-800);
}
.calc-breakdown__note {
	display: block;
	color: var(--ink-400);
	font-size: 0.78rem;
	font-weight: 400;
}
.calc-breakdown tfoot th,
.calc-breakdown tfoot td {
	font-weight: 800;
	color: var(--ink-900);
	border-bottom: 0;
	padding-top: 0.7rem;
}
.calc-result__disclaimer {
	color: var(--ink-500);
	font-size: 0.82rem;
	margin: 0.5rem 0 1rem;
}
.calc-result__note {
	color: var(--ink-600);
	font-size: 0.9rem;
	margin: 0.3rem 0;
}
.calc-result__assumptions {
	margin: 0.5rem 0 1rem;
	font-size: 0.85rem;
	color: var(--ink-600);
}
.calc-result__assumptions summary {
	cursor: pointer;
	font-weight: 600;
	color: var(--ink-700);
}
.calc-result__assumptions ul {
	margin: 0.5rem 0 0;
	padding-left: 1.1rem;
}
.calc-result__cta {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
	margin-top: 1rem;
}

/* ---------- Language switcher (no-JS <details> dropdown) ---------- */
.lang-switcher {
	position: relative;
}
.lang-switcher__toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	cursor: pointer;
	list-style: none;
	padding: 0.45rem 0.65rem;
	border: 1.5px solid var(--ink-200);
	border-radius: 999px;
	background: var(--surface);
	font-family: var(--font);
	font-size: 0.85rem;
	font-weight: 600;
	color: var(--ink-700);
	line-height: 1;
	user-select: none;
}
.lang-switcher__toggle::-webkit-details-marker {
	display: none;
}
.lang-switcher__toggle::marker {
	content: "";
}
.lang-switcher__toggle:hover {
	border-color: var(--teal-600);
	color: var(--teal-700);
}
.lang-switcher__toggle:focus-visible {
	outline: 2px solid var(--teal-600);
	outline-offset: 2px;
}
.lang-switcher__caret {
	transition: transform 0.15s var(--ease-out);
}
.lang-switcher[open] .lang-switcher__caret {
	transform: rotate(180deg);
}
.lang-switcher__menu {
	position: absolute;
	right: 0;
	top: calc(100% + 0.4rem);
	z-index: 120;
	min-width: 9.5rem;
	margin: 0;
	padding: 0.3rem;
	list-style: none;
	background: var(--surface);
	border: 1px solid var(--ink-200);
	border-radius: var(--radius-sm);
	box-shadow: var(--shadow-lg);
}
.lang-switcher__link {
	display: block;
	padding: 0.45rem 0.65rem;
	border-radius: 7px;
	text-decoration: none;
	color: var(--ink-700);
	font-size: 0.88rem;
	font-weight: 500;
	white-space: nowrap;
}
.lang-switcher__link:hover {
	background: var(--ink-100);
	color: var(--ink-900);
	text-decoration: none;
}
.lang-switcher__link.is-active {
	color: var(--teal-700);
	font-weight: 700;
}
@media (max-width: 860px) {
	.lang-switcher {
		width: 100%;
	}
	.lang-switcher__toggle {
		width: 100%;
		justify-content: space-between;
	}
	.lang-switcher__menu {
		position: static;
		box-shadow: none;
		border: 0;
		padding: 0.2rem 0 0.4rem;
		min-width: 0;
	}
}
