/*
Theme Name: Roubenka
Theme URI: https://roubenka2026.test-web.eu
Author: Roubenka v Krkonoších
Description: Vlastní šablona pro webové stránky roubené chalupy v Krkonoších.
Version: 0.3.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: roubenka
*/

:root {
	--rosewood: #4b2119;
	--rosewood-deep: #2d120e;
	--mahogany: #8f3f28;
	--mahogany-soft: #b75d3b;
	--cream: #fff8ed;
	--linen: #f4eadb;
	--white: #fff;
	--forest: #355b43;
	--mist: #dbe4df;
	--ink: #261914;
	--muted: #705d52;
	--line: rgba(75, 33, 25, .14);
	--shadow: 0 24px 70px rgba(45, 18, 14, .18);
	--radius: 10px;
	--font-heading: "Lora", Georgia, serif;
	--font-body: "Source Sans 3", Arial, sans-serif;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--cream);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.6;
}

a {
	color: inherit;
}

img {
	display: block;
	max-width: 100%;
}

h1,
h2,
h3,
.site-title,
p {
	margin-top: 0;
}

h1,
h2,
h3,
.site-title {
	font-family: var(--font-heading);
}

/* ─── HEADER ─────────────────────────────────────────────────────────── */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--cream);
	border-bottom: 1px solid var(--line);
	transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
	box-shadow: 0 2px 20px rgba(45, 18, 14, .12);
}

.header-inner,
.section-inner {
	width: min(1180px, calc(100% - 48px));
	margin: 0 auto;
}

.header-inner {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 26px;
	min-height: 78px;
}

.brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
}

.brand-logo {
	height: 52px;
	width: auto;
	display: block;
}

.nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	font-size: 14px;
	font-weight: 800;
	color: var(--rosewood);
}

.nav ul,
.nav-menu {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.nav li {
	margin: 0;
	padding: 0;
}

.nav a,
.lang-switch a,
.footer-links a,
.text-link {
	text-decoration: none;
}

.nav a {
	color: var(--rosewood);
	position: relative;
	padding-bottom: 2px;
}
.nav a::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0;
	width: 0; height: 1.5px;
	background: var(--rosewood);
	transition: width 0.2s ease;
}
.nav a:hover { color: var(--mahogany); }
.nav a:hover::after { width: 100%; }

.nav a:hover,
.nav .current-menu-item > a,
.nav .current_page_item > a,
.nav .current-menu-ancestor > a,
.footer-links a:hover,
.text-link:hover {
	color: var(--mahogany);
}

.nav .current-menu-item > a::after,
.nav .current_page_item > a::after,
.nav .current-menu-ancestor > a::after {
	width: 100%;
}

.header-actions {
	display: inline-flex;
	align-items: center;
	gap: 16px;
}

.lang-switch {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--muted);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .08em;
}

.lang-switch a {
	color: var(--muted);
}

.lang-switch a:hover {
	color: var(--rosewood);
}

.lang-switch .active {
	color: var(--rosewood);
}

.lang-switch span {
	color: var(--line);
	font-weight: 400;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 22px;
	border: 2px solid var(--rosewood);
	border-radius: 999px;
	background: var(--rosewood);
	color: var(--white);
	font-family: var(--font-body);
	font-weight: 900;
	font-size: 15px;
	text-decoration: none;
	box-shadow: 0 8px 24px rgba(75, 33, 25, .28);
	transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
	cursor: pointer;
}

.button:hover {
	transform: translateY(-2px);
	background: var(--mahogany);
	border-color: var(--mahogany);
	box-shadow: 0 12px 32px rgba(75, 33, 25, .36);
}

.button.small {
	min-height: 44px;
	padding: 10px 18px;
	font-size: 14px;
}

.button.secondary {
	border-color: rgba(255, 255, 255, .80);
	background: rgba(20, 8, 3, .30);
	color: var(--white);
	box-shadow: none;
	backdrop-filter: blur(6px);
}
.button.secondary:hover {
	background: rgba(255,255,255,.18);
	border-color: #fff;
}

.button.secondary-dark {
	background: transparent;
	border-color: var(--rosewood);
	color: var(--rosewood);
	box-shadow: none;
}
.button.secondary-dark:hover {
	background: var(--rosewood);
	color: #fff;
}

/* ─── HERO ────────────────────────────────────────────────────────────── */
.hero {
	position: relative;
	min-height: min(620px, calc(100vh - 84px));
	display: grid;
	align-items: center;
	padding: 0;
	overflow: hidden;
	background: var(--rosewood-deep);
	margin-bottom: 0;
}

.hero-media {
	position: absolute;
	inset: 0;
	background:
		url("assets/images/design-hero-cottage.png") center / cover no-repeat;
	transform: scale(1.01);
}

.hero-media::after {
	content: none;
}

.hero-inner {
	position: relative;
	z-index: 1;
	width: min(1180px, calc(100% - 48px));
	margin: 0 auto;
	padding: 48px 0;
	color: var(--white);
}

.hero-inner::before {
	content: "";
	position: absolute;
	inset: 18px auto 18px -28px;
	z-index: -1;
	width: min(760px, calc(100% + 56px));
	border-radius: 8px;
	background: none;
	backdrop-filter: none;
}

.eyebrow,
.section-kicker {
	margin-bottom: 14px;
	color: #f4cfab;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.section-kicker {
	color: var(--mahogany);
}

h1 {
	max-width: 660px;
	margin-bottom: 18px;
	font-family: var(--font-heading);
	font-size: clamp(44px, 5.2vw, 66px);
	line-height: .98;
	font-weight: 700;
	text-shadow: 0 2px 20px rgba(0,0,0,.25);
}

h2 {
	margin-bottom: 18px;
	color: var(--rosewood);
	font-family: var(--font-heading);
	font-size: clamp(30px, 4vw, 50px);
	line-height: 1.1;
}

h3 {
	color: var(--rosewood);
	font-family: var(--font-heading);
	font-size: 22px;
	line-height: 1.2;
}

.hero-copy {
	max-width: 590px;
	margin-bottom: 18px;
	color: rgba(255, 255, 255, .90);
	font-size: 20px;
	line-height: 1.6;
	font-weight: 700;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 24px;
}

/* Info badge cards (replacing the old hero-facts bar) */
.hero-badges {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	max-width: 760px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .35);
	border-radius: 8px;
	background: rgba(255, 248, 237, .28);
	backdrop-filter: blur(14px);
}

.hero-badge-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 20px;
	background: transparent;
	border-right: 1px solid rgba(255, 255, 255, .2);
	box-shadow: none;
}

.hero-badge-card:last-child {
	border-right: 0;
}

.hero-badge-icon {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	color: var(--white);
	stroke: var(--white);
	opacity: .88;
}

.hero-badge-text {
	font-size: 15px;
	font-weight: 900;
	color: var(--white);
	white-space: nowrap;
}

/* Keep old .hero-facts for JS fallback compatibility */
.hero-facts {
	display: none; /* replaced by .hero-badges */
}

section {
	padding: 20px 0;
}

/* ─── HERO WAVE ───────────────────────────────────────────────────────── */
.hero-wave {
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	z-index: 2;
	display: block;
	line-height: 0;
	pointer-events: none;
}

.hero-wave svg {
	display: block;
	width: 100%;
	height: 76px;
}

/* ─── INTRO / ABOUT ───────────────────────────────────────────────────── */
.intro {
	background: var(--cream);
	padding-top: 74px;
	padding-bottom: 100px;
}

.intro-grid {
	display: grid;
	grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
	gap: 58px;
	align-items: center;
}

/* Section label "— O ROUBENCE —" */
.section-label {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--mahogany);
	margin-bottom: 18px;
}
.section-label::before,
.section-label::after {
	content: '';
	display: block;
	width: 28px;
	height: 1px;
	background: var(--mahogany);
}

.intro-copy h2 {
	margin-bottom: 10px;
}

.intro-underline {
	width: 44px;
	height: 3px;
	background: var(--rosewood);
	border-radius: 2px;
	margin-bottom: 20px;
}

.lead,
.section-heading p,
.cta p {
	color: var(--muted);
	font-size: 18px;
	line-height: 1.75;
}

.notice {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-top: 30px;
	padding: 18px 20px;
	border-left: 4px solid var(--mahogany);
	background: var(--white);
	box-shadow: 0 8px 28px rgba(75, 33, 25, .07);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-size: 14px;
}

/* Intro feature list – inline ikonky jako v návrhu */
.intro-features {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	margin-top: 30px;
	margin-bottom: 30px;
}
.intro-feature {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	color: var(--ink);
	line-height: 1.3;
}
.intro-feature-icon {
	width: 22px;
	height: 22px;
	flex-shrink: 0;
	color: var(--forest);
	stroke: var(--forest);
}

/* Photos – dva landscapy vedle sebe */
.intro-photos {
	display: grid;
	grid-template-columns: .86fr 1fr;
	gap: 16px;
	align-items: end;
}

.intro-photos img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	border: 8px solid var(--white);
	border-radius: 8px;
	box-shadow: 0 16px 50px rgba(45, 18, 14, .20);
	transition: transform .35s ease;
}

.intro-photos img:first-child {
	height: 330px;
	margin-bottom: 46px;
}

.intro-photos img:hover { transform: scale(1.02); }

.features {
	background: var(--linen);
}

.section-heading {
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(260px, .55fr);
	gap: 40px;
	align-items: end;
	margin-bottom: 34px;
}

.section-heading h2,
.section-heading p {
	margin-bottom: 0;
}

.feature-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.feature {
	min-height: 250px;
	padding: 26px;
	border-radius: 8px;
	background: var(--white);
	box-shadow: 0 12px 36px rgba(75, 33, 25, .08);
}

.feature-icon-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 20px;
	border-radius: 12px;
	background: rgba(53, 91, 67, .1);
	color: var(--forest);
}

.feature-icon-wrap svg {
	width: 26px;
	height: 26px;
}

.feature span {
	display: inline-flex;
	margin-bottom: 12px;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(53, 91, 67, .12);
	color: var(--forest);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.feature p {
	margin-bottom: 0;
	color: var(--muted);
}

.photo-story {
	background: var(--rosewood);
	color: var(--white);
}

.photo-story h2 {
	color: var(--white);
}

.photo-story .lead {
	color: rgba(255, 255, 255, .78);
}

.story-grid {
	display: grid;
	grid-template-columns: minmax(280px, .45fr) minmax(0, .55fr);
	gap: 50px;
	align-items: center;
}

.text-link {
	display: inline-flex;
	margin-top: 10px;
	color: #f4cfab;
	font-weight: 900;
}

.photo-mosaic {
	display: grid;
	grid-template-columns: 1.2fr .8fr;
	gap: 16px;
}

.photo-mosaic img {
	width: 100%;
	height: 210px;
	object-fit: cover;
	border-radius: 8px;
}

.photo-mosaic .large {
	grid-row: span 2;
	height: 436px;
}

.cta {
	background:
		linear-gradient(90deg, rgba(255, 248, 237, .95), rgba(255, 248, 237, .84)),
		url("assets/images/design-photo-interior.png") center / cover no-repeat;
}

.cta-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 34px;
	align-items: center;
	padding: 42px;
	border-radius: 8px;
	background: rgba(255, 255, 255, .84);
	box-shadow: var(--shadow);
}

.cta h2,
.cta p {
	margin-bottom: 0;
}

.cta-actions {
	display: grid;
	gap: 12px;
	justify-items: stretch;
}

.site-footer {
	padding: 22px 0 20px;
	background: var(--cream);
	color: var(--rosewood);
	border-top: 1px solid var(--line);
}

.footer-inner {
	display: grid;
	grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
	align-items: center;
	gap: 24px;
	width: min(1180px, calc(100% - 48px));
	margin: 0 auto;
}

.footer-inner strong {
	color: var(--rosewood);
}

.footer-links {
	display: flex;
	gap: 18px;
	font-weight: 800;
}

.footer-links ul,
.footer-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 26px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links a {
	color: var(--rosewood);
	font-size: .9rem;
	font-weight: 700;
}

.footer-links li {
	margin: 0;
	padding: 0;
}

.footer-creator {
	justify-self: end;
}

.footer-credit {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
	color: var(--muted);
	font-size: .86rem;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}

.footer-credit img {
	display: block;
	height: auto;
}

.footer-credit-icon {
	width: 22px;
	border-radius: 5px;
}

.footer-credit:hover,
.footer-credit:focus-visible {
	color: var(--mahogany);
}

@media (max-width: 1120px) {
	.header-inner {
		grid-template-columns: auto 1fr;
	}
	.nav { display: none; }
	.header-actions { justify-content: end; }
	.feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
	.header-inner,
	.section-inner,
	.hero-inner,
	.footer-inner {
		width: min(100% - 32px, 1180px);
	}
	.header-inner { min-height: 78px; gap: 14px; }
	.brand-logo { height: 50px; width: auto; }
	.header-actions .button { display: none; }

	.footer-inner {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
		gap: 14px;
	}

	.footer-creator {
		justify-self: center;
	}

	.footer-credit {
		justify-content: center;
	}

	.hero { padding: 60px 0 48px; min-height: min(80vh, 620px); }

	.intro-grid,
	.section-heading,
	.story-grid,
	.cta-inner {
		grid-template-columns: 1fr;
	}

	.intro-photos { grid-template-columns: 1fr 1fr; }
	.intro-features { flex-wrap: wrap; }

	.photo-mosaic .large { height: 300px; }
}

@media (max-width: 640px) {
	body { font-size: 16px; }

	.header-inner {
		grid-template-columns: auto 1fr;
	}
	.header-actions { display: none; }

	h1 { font-size: 38px; }
	.hero-copy { font-size: 16px; }

	.hero-badge-card {
		justify-content: center;
		padding: 12px 8px;
	}

	.hero-badge-icon {
		display: none;
	}

	.hero-badge-text {
		font-size: 12px;
		white-space: normal;
		text-align: center;
		line-height: 1.25;
	}

	.hero-actions .button { flex: 1; justify-content: center; }

	section { padding: 60px 0; }

	.intro-photos,
	.feature-grid,
	.photo-mosaic {
		grid-template-columns: 1fr;
	}
	.intro-photos img { aspect-ratio: 4/3; }

	.intro-features { gap: 12px 20px; }

	.feature { min-height: auto; }
	.photo-mosaic img,
	.photo-mosaic .large { height: 240px; }
	.cta-inner { padding: 28px; }
	.hero-actions { flex-direction: column; align-items: stretch; }
}

/* ─── Full homepage design from approved mockup ─────────────────────── */
.brand-design {
	gap: 10px;
	min-width: 260px;
}

.brand-icon {
	width: 76px;
	height: 48px;
	object-fit: contain;
	object-position: center;
}

.brand-icon.tiny {
	width: 30px;
	height: 22px;
}

.brand-word {
	color: var(--rosewood);
	font-family: var(--font-heading);
	font-size: 33px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
}

.hero-design {
	min-height: 620px;
	padding: 0;
	background: #2d120e;
	isolation: isolate;
}

.hero-design .hero-media {
	z-index: 1;
	background: transparent;
	transform: none;
}

.hero-design::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(45, 18, 14, .94) 0%, rgba(45, 18, 14, .88) 22%, rgba(45, 18, 14, .62) 40%, rgba(45, 18, 14, .28) 58%, rgba(45, 18, 14, .08) 75%, rgba(45, 18, 14, 0) 100%);
}

.hero-cottage {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: cover;
	object-position: center right;
	transform: none;
	transform-origin: right center;
}

.hero-design .hero-inner {
	z-index: 3;
	padding: 58px 0 76px;
}

.hero-design .hero-inner::before {
	content: none;
}

.hero-design h1 {
	max-width: 560px;
	margin-bottom: 22px;
	font-size: clamp(44px, 5.3vw, 74px);
	line-height: .98;
}

.hero-design .hero-copy {
	max-width: 440px;
	margin-bottom: 26px;
	font-size: 18px;
	font-weight: 400;
}

.hero-design .hero-actions {
	margin-bottom: 28px;
}

.hero-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	max-width: 650px;
}

.hero-card {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 62px;
	padding: 13px 18px;
	border-radius: 8px;
	background: rgba(255, 248, 237, .95);
	color: var(--ink);
	box-shadow: 0 12px 32px rgba(45, 18, 14, .18);
}

.hero-card .icon {
	color: var(--forest);
	font-size: 24px;
	line-height: 1;
}

.hero-card strong {
	font-size: 15px;
	line-height: 1.25;
}

.hero-badges {
	display: none;
}

.hero-wave {
	display: block;
}

.hero-design .hero-wave {
	z-index: 4;
}

.hero-wave svg {
	height: 74px;
}

.design-section {
	position: relative;
	overflow: hidden;
}

.design-section::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 20px;
	width: 210px;
	height: 280px;
	background: linear-gradient(180deg, rgba(53, 91, 67, .08), rgba(53, 91, 67, 0));
	clip-path: polygon(50% 0, 20% 40%, 37% 40%, 10% 78%, 43% 78%, 43% 100%, 57% 100%, 57% 78%, 90% 78%, 63% 40%, 80% 40%);
}

.intro {
	padding-top: 54px;
	padding-bottom: 54px;
}

.intro-grid {
	grid-template-columns: minmax(320px, .72fr) minmax(0, 1fr);
	gap: 58px;
}

.intro-copy {
	position: relative;
	z-index: 1;
}

.intro-copy h2 {
	max-width: 460px;
}

.intro-features {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: start;
	gap: 22px;
}

.intro-feature {
	align-items: center;
	font-size: 14px;
}

.intro-feature .icon {
	color: var(--forest);
	font-size: 28px;
	line-height: 1;
}

.intro-photos {
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.intro-photos img,
.intro-photos img:first-child {
	width: 100%;
	height: 158px;
	margin: 0;
	border: 0;
	border-radius: 8px;
	object-fit: cover;
	box-shadow: 0 14px 34px rgba(45, 18, 14, .12);
}

.section-divider {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 18px;
	align-items: center;
	margin: 20px 0 28px;
	color: var(--rosewood);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .18em;
	text-align: center;
	text-transform: uppercase;
}

.section-divider::before,
.section-divider::after {
	content: "";
	height: 1px;
	background: rgba(75, 33, 25, .18);
}

.ideal,
.rooms,
.amenities,
.activities,
.gallery-strip,
.bottom-cards {
	padding-top: 22px;
	padding-bottom: 22px;
}

.ideal-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0;
}

.ideal-grid article {
	padding: 18px 28px;
	border-right: 1px solid rgba(75, 33, 25, .18);
	text-align: center;
}

.ideal-grid article:last-child {
	border-right: 0;
}

.ideal-icon {
	display: block;
	margin-bottom: 10px;
	color: var(--forest);
	font-size: 34px;
}

.ideal-grid h3,
.room-card h3 {
	margin-bottom: 8px;
	font-size: 18px;
}

.ideal-grid p,
.room-card p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.55;
}

.room-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.room-card {
	position: relative;
	overflow: hidden;
	min-height: 132px;
	border: 1px solid rgba(75, 33, 25, .12);
	border-radius: 8px;
	background: var(--white);
	box-shadow: 0 10px 28px rgba(45, 18, 14, .08);
}

.room-card div {
	position: absolute;
	inset: 0 auto 0 0;
	z-index: 1;
	width: 52%;
	padding: 18px;
	background: linear-gradient(90deg, rgba(255, 248, 237, .96), rgba(255, 248, 237, .66));
}

.room-card img {
	width: 100%;
	height: 132px;
	object-fit: cover;
}

.mini-button,
.split-buttons a,
.contact-card a {
	display: table;
	margin: 14px auto 0;
	padding: 8px 22px;
	border-radius: 6px;
	background: var(--rosewood);
	color: var(--white);
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
}

.mini-button.left {
	margin-left: 0;
}

.amenity-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 12px;
}

.amenity-grid div,
.activity-tags > span {
	display: grid;
	place-items: center;
	min-height: 64px;
	padding: 12px;
	border: 1px solid rgba(75, 33, 25, .12);
	border-radius: 8px;
	background: rgba(255, 255, 255, .58);
	color: var(--forest);
	text-align: center;
	font-size: 21px;
}

.amenity-grid div {
	gap: 7px;
	min-height: 70px;
	padding: 10px 12px;
}

.amenity-grid span,
.activity-tags > span {
	color: var(--ink);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.25;
}

.amenity-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	color: #5d7058;
}

.amenity-icon svg {
	width: 25px;
	height: 25px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.7;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.activity-tags > span {
	gap: 6px;
	text-align: center;
}

.activity-tags .tag-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	color: var(--forest);
}

.activity-tags .tag-icon svg {
	width: 25px;
	height: 25px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.9;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.activity-grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr 1fr 1.15fr;
	gap: 22px;
	align-items: stretch;
}

.activity-grid img {
	width: 100%;
	height: 100%;
	min-height: 128px;
	border-radius: 8px;
	object-fit: cover;
}

.activity-text {
	padding: 20px 22px;
	border-radius: 8px;
	background: rgba(255, 255, 255, .58);
}

.activity-text h3 {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.activity-season-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
	font-family: "Source Sans 3", Arial, sans-serif;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	text-transform: none;
}

.activity-season-summer {
	color: #f59b21;
}

.activity-season-summer::before {
	content: "☼";
}

.activity-season-winter {
	color: #73c7ff;
}

.activity-season-winter::before {
	content: "✣";
	transform: rotate(45deg);
}

.activity-text ul {
	margin: 0;
	padding-left: 20px;
	color: var(--ink);
	font-size: 14px;
	line-height: 1.75;
}

.activity-tags {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 12px;
	margin-top: 18px;
}

.gallery-row {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 10px;
}

.gallery-row a {
	display: block;
	border-radius: 6px;
	overflow: hidden;
}

.gallery-row img {
	width: 100%;
	height: 58px;
	border-radius: 6px;
	object-fit: cover;
}

body.roubenka-lightbox-open {
	overflow: hidden;
}

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

.roubenka-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(22px, 4vw, 56px);
	background: rgba(48, 16, 11, .9);
	backdrop-filter: blur(6px);
}

.roubenka-lightbox__figure {
	width: min(1180px, 100%);
	margin: 0;
	text-align: center;
}

.roubenka-lightbox__image {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: calc(100vh - 140px);
	margin: 0 auto;
	border-radius: 8px;
	background: #fff7ec;
	box-shadow: 0 26px 80px rgba(0, 0, 0, .42);
}

.roubenka-lightbox__caption {
	margin-top: 14px;
	color: #fff7ec;
	font-weight: 700;
	text-shadow: 0 2px 14px rgba(0, 0, 0, .5);
}

.roubenka-lightbox__close,
.roubenka-lightbox__nav {
	position: absolute;
	z-index: 2;
	border: 1px solid rgba(255, 247, 236, .38);
	background: rgba(255, 247, 236, .96);
	color: var(--brown);
	box-shadow: 0 16px 38px rgba(0, 0, 0, .24);
	cursor: pointer;
}

.roubenka-lightbox__close {
	top: clamp(14px, 2vw, 28px);
	right: clamp(14px, 2vw, 28px);
	width: 44px;
	height: 44px;
	border-radius: 50%;
	font-size: 22px;
	font-weight: 900;
	line-height: 1;
}

.roubenka-lightbox__nav {
	top: 50%;
	width: 48px;
	height: 64px;
	transform: translateY(-50%);
	border-radius: 8px;
	font-size: 28px;
	font-weight: 900;
	line-height: 1;
}

.roubenka-lightbox__nav--prev {
	left: clamp(12px, 2vw, 32px);
}

.roubenka-lightbox__nav--next {
	right: clamp(12px, 2vw, 32px);
}

.roubenka-lightbox__close:hover,
.roubenka-lightbox__nav:hover {
	background: var(--brown);
	color: #fff7ec;
}

.bottom-cards {
	display: grid;
	grid-template-columns: 1fr .82fr 1.25fr;
	gap: 20px;
	padding-bottom: 42px;
}

.info-card {
	position: relative;
	overflow: hidden;
	min-height: 145px;
	padding: 24px;
	border-radius: 8px;
	background: rgba(255, 255, 255, .72);
	box-shadow: 0 10px 30px rgba(45, 18, 14, .08);
}

.info-card h3 {
	margin-bottom: 10px;
	font-size: 15px;
	letter-spacing: .16em;
	text-transform: uppercase;
}

.info-card p {
	color: var(--muted);
	font-size: 14px;
}

.map-card img {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 58%;
	height: 100%;
	object-fit: cover;
	opacity: .88;
}

.split-buttons {
	display: flex;
	gap: 12px;
}

.split-buttons a {
	margin: 0;
}

.contact-card {
	background:
		linear-gradient(90deg, rgba(75, 33, 25, .96), rgba(75, 33, 25, .78)),
		url("assets/images/mock-lantern.png") right center / contain no-repeat;
	color: var(--white);
}

.contact-card h3,
.contact-card p {
	color: var(--white);
}

.contact-card a {
	margin-left: 0;
	border: 1px solid rgba(255, 255, 255, .46);
	background: transparent;
}

.footer-brand {
	gap: 8px;
	text-decoration: none;
}

/* ─── ABOUT PAGE ─────────────────────────────────────────────────────── */
.nav a.is-active {
	color: var(--rosewood);
}

.nav a.is-active::after {
	width: 100%;
}

.about-main {
	background: var(--cream);
}

.about-hero img {
	object-position: center 52%;
}

.about-photo-strip {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 2.8fr) minmax(260px, 1fr);
	gap: 6px;
	height: clamp(230px, 24vw, 340px);
	overflow: hidden;
	background: var(--rosewood-deep);
}

.about-photo-strip::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	z-index: 2;
	height: clamp(54px, 5.6vw, 96px);
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 96' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40 C240 86 480 8 720 42 C960 76 1200 6 1440 40 L1440 96 L0 96 Z' fill='%23fff8ed'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center bottom;
	pointer-events: none;
}

.about-photo-strip img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-photo-wide {
	object-position: center 52%;
}

.about-intro {
	display: grid;
	grid-template-columns: minmax(0, 1.16fr) minmax(245px, .62fr) minmax(210px, .52fr);
	gap: 22px;
	align-items: stretch;
	padding: 28px 0 14px;
}

.about-intro-copy {
	text-align: center;
}

.about-intro-copy h2 {
	margin-bottom: 6px;
	color: var(--rosewood);
	font-family: var(--font-heading);
	font-size: clamp(40px, 4.2vw, 56px);
	line-height: .98;
}

.about-intro-copy .intro-underline,
.practical .intro-underline,
.gallery-intro .intro-underline {
	position: relative;
	width: 108px;
	height: 1px;
	margin: 8px auto 12px;
	overflow: visible;
	border-radius: 0;
	background:
		linear-gradient(var(--rosewood), var(--rosewood)) left center / 43px 1px no-repeat,
		linear-gradient(var(--rosewood), var(--rosewood)) right center / 43px 1px no-repeat;
}

.about-intro-copy .intro-underline::before,
.practical .intro-underline::before,
.gallery-intro .intro-underline::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 13px;
	height: 17px;
	background: transparent;
	background-color: var(--forest);
	clip-path: polygon(50% 0, 78% 34%, 66% 34%, 92% 68%, 68% 68%, 86% 100%, 14% 100%, 32% 68%, 8% 68%, 34% 34%, 22% 34%);
	transform: translate(-50%, -50%);
}

.about-intro-copy .intro-underline::after,
.practical .intro-underline::after,
.gallery-intro .intro-underline::after {
	content: "";
	position: absolute;
	left: 50%;
	top: calc(50% + 8px);
	width: 3px;
	height: 5px;
	border-radius: 1px;
	background: var(--rosewood);
	transform: translateX(-50%);
}

.about-lead {
	max-width: 520px;
	margin: 0 auto 10px;
	color: var(--forest);
	font-family: var(--font-heading);
	font-size: clamp(18px, 1.8vw, 24px);
	font-weight: 700;
	line-height: 1.22;
}

.about-intro-copy > p:last-child {
	max-width: 560px;
	margin: 0 auto;
	font-size: 14px;
	line-height: 1.5;
}

.about-facts,
.about-note,
.about-benefits article,
.season-panels article,
.practical-grid div,
.about-location {
	border: 1px solid rgba(75, 33, 25, .12);
	background: rgba(255, 252, 246, .72);
	box-shadow: 0 18px 46px rgba(75, 33, 25, .07);
}

.about-facts {
	display: grid;
	align-content: center;
	border-radius: 8px;
}

.about-facts div {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 12px;
	align-items: center;
	padding: 13px 18px;
	border-bottom: 1px solid rgba(75, 33, 25, .12);
}

.about-facts div:last-child {
	border-bottom: 0;
}

.about-fact-icon {
	position: relative;
	display: block;
	width: 25px;
	height: 25px;
	color: var(--forest);
}

.about-fact-icon::before,
.about-fact-icon::after {
	content: "";
	position: absolute;
	box-sizing: border-box;
}

.about-fact-icon-people::before {
	width: 8px;
	height: 8px;
	top: 4px;
	left: 9px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: -8px 4px 0 -1px currentColor, 8px 4px 0 -1px currentColor;
}

.about-fact-icon-people::after {
	left: 5px;
	bottom: 3px;
	width: 16px;
	height: 9px;
	border-radius: 10px 10px 3px 3px;
	background: currentColor;
	box-shadow: -7px 3px 0 -3px currentColor, 7px 3px 0 -3px currentColor;
}

.about-fact-icon-pin {
	color: var(--mahogany);
}

.about-fact-icon-pin::before {
	left: 7px;
	top: 2px;
	width: 11px;
	height: 11px;
	border-radius: 50% 50% 50% 0;
	background: currentColor;
	transform: rotate(-45deg);
}

.about-fact-icon-pin::after {
	left: 11px;
	bottom: 2px;
	width: 3px;
	height: 9px;
	background: currentColor;
	border-radius: 2px;
}

.about-fact-icon-mountain::before {
	left: 2px;
	bottom: 4px;
	width: 21px;
	height: 15px;
	background: currentColor;
	clip-path: polygon(0 100%, 42% 20%, 62% 58%, 78% 35%, 100% 100%);
}

.about-fact-icon-road::before {
	left: 4px;
	top: 7px;
	width: 18px;
	height: 12px;
	background: currentColor;
	transform: skewX(-12deg);
	clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
}

.about-facts p {
	margin: 0;
	color: var(--muted);
	font-size: 12px;
	line-height: 1.25;
}

.about-facts strong {
	display: block;
	margin-top: 2px;
	color: var(--rosewood);
	font-family: var(--font-heading);
	font-size: 20px;
	line-height: 1.1;
}

.about-note {
	display: grid;
	place-items: center;
	padding: 22px 24px;
	border-radius: 8px;
	text-align: center;
}

.about-note-icon {
	position: relative;
	display: block;
	width: 38px;
	height: 38px;
	color: var(--mahogany-soft);
}

.about-note-icon::before {
	content: "";
	position: absolute;
	left: 9px;
	top: 16px;
	width: 20px;
	height: 16px;
	border: 2.5px solid currentColor;
	border-top: 0;
	border-radius: 2px 2px 4px 4px;
	background:
		radial-gradient(circle at 42% 45%, currentColor 0 2.2px, transparent 2.5px),
		radial-gradient(circle at 58% 45%, currentColor 0 2.2px, transparent 2.5px),
		linear-gradient(45deg, transparent 46%, currentColor 47% 54%, transparent 55%),
		linear-gradient(-45deg, transparent 46%, currentColor 47% 54%, transparent 55%);
	background-size: 100% 100%;
}

.about-note-icon::after {
	content: "";
	position: absolute;
	left: 8px;
	top: 6px;
	width: 22px;
	height: 22px;
	border-left: 2.5px solid currentColor;
	border-top: 2.5px solid currentColor;
	transform: rotate(45deg);
	border-radius: 3px 0 0 0;
}

.about-note p {
	max-width: 190px;
	margin: 14px 0 8px;
	color: var(--rosewood);
	font-family: var(--font-heading);
	font-size: 18px;
	line-height: 1.22;
}

.about-benefits {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	padding: 10px 0 28px;
}

.about-benefits article {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 14px;
	align-items: start;
	padding: 18px 20px;
	border-radius: 8px;
}

.about-benefit-icon {
	position: relative;
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--forest);
	color: var(--cream);
}

.about-benefit-icon::before,
.about-benefit-icon::after {
	content: "";
	position: absolute;
	box-sizing: border-box;
}

.about-benefit-icon-chair::before {
	left: 13px;
	top: 14px;
	width: 22px;
	height: 18px;
	border: 2.8px solid currentColor;
	border-radius: 7px;
}

.about-benefit-icon-chair::after {
	left: 9px;
	top: 25px;
	width: 30px;
	height: 11px;
	border: 2.8px solid currentColor;
	border-top: 0;
	border-radius: 0 0 7px 7px;
	box-shadow:
		4px 8px 0 -2.3px currentColor,
		22px 8px 0 -2.3px currentColor;
}

.about-benefit-icon-family::before {
	width: 9px;
	height: 9px;
	top: 12px;
	left: 20px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: -9px 4px 0 -1px currentColor, 9px 4px 0 -1px currentColor;
}

.about-benefit-icon-family::after {
	left: 13px;
	bottom: 11px;
	width: 23px;
	height: 12px;
	border-radius: 12px 12px 4px 4px;
	background: currentColor;
	box-shadow: -8px 3px 0 -4px currentColor, 8px 3px 0 -4px currentColor;
}

.about-benefits article:nth-child(2) .about-benefit-icon {
	background: var(--mahogany);
}

.about-benefit-icon-snow::before {
	left: 22px;
	top: 10px;
	width: 3px;
	height: 28px;
	background: currentColor;
	border-radius: 3px;
	transform: rotate(0deg);
}

.about-benefit-icon-snow::after {
	left: 10px;
	top: 22px;
	width: 28px;
	height: 3px;
	background: currentColor;
	border-radius: 3px;
	box-shadow: 0 0 0 0 currentColor;
	transform: rotate(60deg);
}

.about-benefit-icon-snow {
	background-image:
		linear-gradient(currentColor, currentColor),
		linear-gradient(currentColor, currentColor),
		radial-gradient(circle at center, currentColor 0 3px, transparent 3.5px);
	background-size: 28px 3px, 28px 3px, 100% 100%;
	background-position: center, center;
	background-repeat: no-repeat;
}

.about-benefit-icon-snow::after {
	transform: rotate(-60deg);
}

.about-fact-icon::before,
.about-note-icon::before,
.about-benefit-icon::before {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	background: currentColor;
	-webkit-mask: var(--icon-mask) center / contain no-repeat;
	mask: var(--icon-mask) center / contain no-repeat;
}

.about-fact-icon::before {
	width: 24px;
	height: 24px;
}

.about-note-icon::before {
	width: 36px;
	height: 36px;
}

.about-benefit-icon::before {
	width: 30px;
	height: 30px;
}

.about-benefit-icon-snow::before {
	width: 32px;
	height: 32px;
}

.about-fact-icon::after,
.about-note-icon::after,
.about-benefit-icon::after {
	display: none;
}

.about-fact-icon-people {
	--icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 7.2a4.2 4.2 0 1 1 0 8.4 4.2 4.2 0 0 1 0-8.4Zm-9.2 3.1a3.4 3.4 0 1 1 0 6.8 3.4 3.4 0 0 1 0-6.8Zm18.4 0a3.4 3.4 0 1 1 0 6.8 3.4 3.4 0 0 1 0-6.8ZM16 17.4c5.1 0 8.4 2.5 8.4 6.2V25H7.6v-1.4c0-3.7 3.3-6.2 8.4-6.2Zm-9.2 1.1c1.3 0 2.5.3 3.5.8-1.8 1.2-2.9 2.9-2.9 5.1H1.7v-1.1c0-2.9 2-4.8 5.1-4.8Zm18.4 0c3.1 0 5.1 1.9 5.1 4.8v1.1h-5.7c0-2.2-1.1-3.9-2.9-5.1 1-.5 2.2-.8 3.5-.8Z'/%3E%3C/svg%3E");
}

.about-fact-icon-pin {
	--icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 2.8c-5.1 0-9.2 4.1-9.2 9.2 0 6.9 9.2 17.2 9.2 17.2S25.2 18.9 25.2 12c0-5.1-4.1-9.2-9.2-9.2Zm0 13.1a3.9 3.9 0 1 1 0-7.8 3.9 3.9 0 0 1 0 7.8Z'/%3E%3C/svg%3E");
}

.about-fact-icon-mountain {
	--icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.4 25.8 11.8 8.4l5.1 8.7 3.2-5.5 9.5 14.2H2.4Zm9.7-11.2-3.2 6h6.8l-3.6-6Zm8.2 2.5-2.1 3.5h5l-2.9-3.5Z'/%3E%3C/svg%3E");
}

.about-fact-icon-road {
	--icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.2 5.6h11.6L27.4 26H4.6L10.2 5.6Zm4.5 2.8-1 5.7h4.6l-1-5.7h-2.6Zm-1.5 8.5-1.1 6.3h7.8l-1.1-6.3h-5.6Z'/%3E%3C/svg%3E");
}

.about-note-icon {
	--icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 5.5 7.5 20.2l2.6 2.9L24 10.8l13.9 12.3 2.6-2.9L24 5.5Zm-11.6 17v17h23.2v-17L24 12.3 12.4 22.5Zm11.6 12.3-1.8-1.6c-4-3.5-6.2-5.4-6.2-8.1 0-2.2 1.7-3.9 3.9-3.9 1.3 0 2.4.6 3.1 1.5.7-.9 1.8-1.5 3.1-1.5 2.2 0 3.9 1.7 3.9 3.9 0 2.7-2.2 4.6-6.2 8.1L24 34.8Z'/%3E%3C/svg%3E");
}

.about-benefit-icon-chair {
	--icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 9h20c3.3 0 6 2.7 6 6v12.2c2.2.8 3.8 2.9 3.8 5.4V38H39v4h-4v-4H13v4H9v-4H4.2v-5.4c0-2.5 1.6-4.6 3.8-5.4V15c0-3.3 2.7-6 6-6Zm0 4c-1.1 0-2 .9-2 2v11h24V15c0-1.1-.9-2-2-2H14Zm-3.8 17.2c-1.1 0-2 .9-2 2V34h31.6v-1.8c0-1.1-.9-2-2-2H10.2Z'/%3E%3C/svg%3E");
}

.about-benefit-icon-family {
	--icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 8a6 6 0 1 1 0 12 6 6 0 0 1 0-12ZM11.5 12a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm25 0a5 5 0 1 1 0 10 5 5 0 0 1 0-10ZM24 23c7.2 0 12 3.4 12 8.7V36H12v-4.3C12 26.4 16.8 23 24 23Zm-12.5 2.5c1.7 0 3.2.4 4.5 1-2 1.6-3.1 3.7-3.1 6.3V36H3v-3.4c0-4.4 3.4-7.1 8.5-7.1Zm25 0c5.1 0 8.5 2.7 8.5 7.1V36h-9.9v-3.2c0-2.6-1.1-4.7-3.1-6.3 1.3-.6 2.8-1 4.5-1Z'/%3E%3C/svg%3E");
}

.about-benefit-icon-snow {
	--icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26 4v8.8l5.1-5.1 2.8 2.8L26 18.4V22h3.6l7.9-7.9 2.8 2.8-5.1 5.1H44v4h-8.8l5.1 5.1-2.8 2.8-7.9-7.9H26v3.6l7.9 7.9-2.8 2.8-5.1-5.1V44h-4v-8.8l-5.1 5.1-2.8-2.8 7.9-7.9V26h-3.6l-7.9 7.9-2.8-2.8 5.1-5.1H4v-4h8.8l-5.1-5.1 2.8-2.8 7.9 7.9H22v-3.6l-7.9-7.9 2.8-2.8 5.1 5.1V4h4Z'/%3E%3C/svg%3E");
	background-image: none;
}

.about-benefits h2,
.inside h2,
.season-panels h2,
.about-location h2,
.about-cta h2 {
	margin-bottom: 7px;
	color: var(--rosewood);
	font-family: var(--font-heading);
	font-size: 27px;
	line-height: 1.12;
}

.about-benefits p,
.season-panels p,
.season-panels li,
.practical-grid p,
.about-location p,
.about-cta p {
	margin-bottom: 0;
	font-size: 15px;
	line-height: 1.5;
}

.about-benefits h2 {
	margin-bottom: 5px;
	font-size: 22px;
}

.about-benefits p {
	font-size: 13px;
	line-height: 1.42;
}

.section-head-row {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 10px;
}

.inside-gallery {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
}

.inside-gallery img {
	width: 100%;
	height: clamp(150px, 12vw, 190px);
	border-radius: 8px;
	object-fit: cover;
	box-shadow: 0 12px 28px rgba(75, 33, 25, .09);
}

.inside .text-link {
	color: var(--forest);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1.2;
}

.inside .text-link:hover {
	color: var(--mahogany);
}

.season-panels {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	padding: 24px 0 24px;
}

.season-panels article {
	display: grid;
	grid-template-columns: minmax(180px, .9fr) minmax(0, 1fr);
	gap: 20px;
	align-items: center;
	padding: 18px 20px;
	border-radius: 8px;
}

.season-panels img {
	width: 100%;
	height: 210px;
	border-radius: 8px;
	object-fit: cover;
}

.season-panels h2 {
	display: flex;
	align-items: center;
	gap: 10px;
}

.season-icon {
	position: relative;
	display: inline-block;
	width: 28px;
	height: 28px;
	flex: 0 0 28px;
	color: currentColor;
}

.season-icon::before {
	content: "";
	position: absolute;
	inset: 0;
	background: currentColor;
	-webkit-mask: var(--season-icon-mask) center / contain no-repeat;
	mask: var(--season-icon-mask) center / contain no-repeat;
}

.season-icon-summer {
	color: #ef9d22;
	--season-icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 14a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm0-12 3 8h-6l3-8Zm0 36 3 8h-6l3-8ZM46 24l-8 3v-6l8 3ZM10 24l-8 3v-6l8 3Zm29.6-15.6-3.5 7.8-4.2-4.2 7.7-3.6ZM16.1 31.9l-7.7 3.7 3.6-7.8 4.1 4.1Zm23.5 7.7-7.7-3.6 4.2-4.2 3.5 7.8ZM12 16.2 8.4 8.4l7.7 3.6-4.1 4.2Z'/%3E%3C/svg%3E");
}

.season-icon-winter {
	color: #7fc6ef;
	--season-icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26 4v8.8l5.1-5.1 2.8 2.8L26 18.4V22h3.6l7.9-7.9 2.8 2.8-5.1 5.1H44v4h-8.8l5.1 5.1-2.8 2.8-7.9-7.9H26v3.6l7.9 7.9-2.8 2.8-5.1-5.1V44h-4v-8.8l-5.1 5.1-2.8-2.8 7.9-7.9V26h-3.6l-7.9 7.9-2.8-2.8 5.1-5.1H4v-4h8.8l-5.1-5.1 2.8-2.8 7.9 7.9H22v-3.6l-7.9-7.9 2.8-2.8 5.1 5.1V4h4Z'/%3E%3C/svg%3E");
}

.season-panels ul {
	margin: 15px 0 0;
	padding: 0;
	list-style: none;
}

.season-panels li {
	position: relative;
	padding-left: 24px;
	margin-top: 8px;
}

.season-panels li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--forest);
	font-weight: 900;
}

.practical {
	padding: 4px 0 30px;
}

.practical .section-divider {
	position: relative;
	margin: 0 0 8px;
}

.practical .section-divider span {
	position: relative;
	display: inline-block;
	padding: 0 18px;
}

.practical .intro-underline {
	margin: 0 auto 26px;
}

.practical-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
}

.practical-grid div {
	min-height: 144px;
	padding: 20px 14px;
	border-radius: 8px;
	text-align: center;
}

.practical-grid span {
	display: block;
	margin-bottom: 10px;
	color: var(--forest);
	font-size: 34px;
	line-height: 1;
}

.practical-grid .practical-icon {
	position: relative;
	display: block;
	width: 38px;
	height: 38px;
	margin: 0 auto 14px;
	color: var(--forest);
	font-size: 0;
	line-height: 0;
}

.practical-grid .practical-icon::before {
	content: "";
	position: absolute;
	inset: 0;
	background: currentColor;
	-webkit-mask: var(--practical-icon-mask) center / contain no-repeat;
	mask: var(--practical-icon-mask) center / contain no-repeat;
}

.practical-icon-car {
	--practical-icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 18 14 8h20l4 10h2a4 4 0 0 1 4 4v12h-4v5a3 3 0 0 1-6 0v-5H14v5a3 3 0 0 1-6 0v-5H4V22a4 4 0 0 1 4-4h2Zm7-6-2.4 6h18.8L31 12H17ZM12 28a4 4 0 1 0 0-8 4 4 0 0 0 0 8Zm24 0a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z'/%3E%3C/svg%3E");
}

.practical-icon-wifi {
	--practical-icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 37a5 5 0 1 1 0 10 5 5 0 0 1 0-10ZM8.7 26.4a22.5 22.5 0 0 1 30.6 0l-5.1 5.1a15.2 15.2 0 0 0-20.4 0l-5.1-5.1ZM0 17.7a35 35 0 0 1 48 0l-5.1 5.1a27.8 27.8 0 0 0-37.8 0L0 17.7ZM15.8 33.5a12 12 0 0 1 16.4 0L27 38.7a4.8 4.8 0 0 0-6 0l-5.2-5.2Z'/%3E%3C/svg%3E");
}

.practical-icon-fire {
	--practical-icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M25 46c-9.5 0-16-6.8-16-15.3 0-6 3.3-11 7.2-15.3 1.4 5.3 4.7 7.4 4.7 7.4C20 13.4 24.9 6.2 31.2 2c.8 8 6.6 12.4 8.2 19.5C42.2 34 35.4 46 25 46Zm.3-6.5c4.8 0 8-3.5 8-8.1 0-3.9-2.7-6.6-4.5-9.9-.7 3.6-2.7 6.3-5.6 8.2.3-3.4-.9-6-2.8-8.2-2.2 2.9-4.2 5.8-4.2 9.6 0 4.8 3.6 8.4 9.1 8.4Z'/%3E%3C/svg%3E");
}

.practical-icon-ski {
	--practical-icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 5h4v22.2l13.7 13.7a3 3 0 0 0 4.2 0l2.1-2.1 2.8 2.8-2.1 2.1a7 7 0 0 1-9.9 0L9 28.9V5Zm26 0h4v23.9L24.2 43.7a7 7 0 0 1-9.9 0l-2.1-2.1 2.8-2.8 2.1 2.1a3 3 0 0 0 4.2 0L35 27.2V5ZM6 10l4-4 4 4-4 4-4-4Zm28 0 4-4 4 4-4 4-4-4Z'/%3E%3C/svg%3E");
}

.practical-icon-family {
	--practical-icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 20a8 8 0 1 1 0-16 8 8 0 0 1 0 16Zm16 0a8 8 0 1 1 0-16 8 8 0 0 1 0 16ZM5 42c0-8.3 4.7-15 11-15s11 6.7 11 15H5Zm16.5-15.7A12 12 0 0 1 32 21c6.3 0 11 6.7 11 15H30.6a19.9 19.9 0 0 0-9.1-9.7Z'/%3E%3C/svg%3E");
}

.practical-icon-trees {
	--practical-icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17 3 29 19h-6l8 11h-7l7 10H3l7-10H3l8-11H5L17 3Zm18 8 10 14h-5l6 9h-6l5 8H30l-4-6h5l-7-10h5l-2.7-3.8L35 11Z'/%3E%3C/svg%3E");
}

.practical-grid strong {
	display: block;
	color: var(--rosewood);
	font-family: var(--font-heading);
	font-size: 20px;
	line-height: 1.12;
}

.practical-grid p {
	margin-top: 8px;
	font-size: 14px;
}

.about-location {
	display: grid;
	grid-template-columns: 38% 62%;
	align-items: stretch;
	padding: 0;
	min-height: 0;
	overflow: hidden;
	border-radius: 8px;
}

.location-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 18px 32px;
}

.location-copy .intro-underline {
	width: 42px;
	height: 2px;
	margin: 4px 0 14px;
	background: var(--rosewood);
	border-radius: 2px;
}

.location-map {
	position: relative;
	height: 100%;
	min-height: 0;
	background: #dfeadf;
}

.location-map iframe {
	display: block;
	width: 100%;
	height: 100% !important;
	min-height: 0 !important;
	border: 0;
}

.location-map-fallback {
	display: block;
	width: 100%;
	height: 100% !important;
	min-height: 0 !important;
	border: 0;
	background: url("assets/images/map-vichova.svg") center center / cover no-repeat;
}

.about-location h2 {
	margin-bottom: 0;
	font-size: 20px;
}

.about-location p {
	max-width: 360px;
	font-size: 11px;
	line-height: 1.35;
}

.about-location p + p {
	margin-top: 3px;
}

.about-location .mini-button {
	margin-top: 10px;
	align-self: flex-start;
	padding: 8px 15px;
	font-size: 11px;
}

.about-cta {
	display: grid;
	grid-template-columns: 270px minmax(0, 1fr) auto auto;
	gap: 26px;
	align-items: center;
	margin-top: 28px;
	margin-bottom: 34px;
	padding: 18px 28px 18px 18px;
	border-radius: 8px;
	background:
		linear-gradient(90deg, rgba(45, 18, 14, .78), rgba(75, 33, 25, .95)),
		var(--rosewood);
	color: var(--white);
	box-shadow: var(--shadow);
}

.about-cta img {
	width: 100%;
	height: 126px;
	border-radius: 8px;
	object-fit: cover;
	opacity: .86;
}

.about-cta h2 {
	color: var(--white);
}

.about-cta-contact {
	white-space: nowrap;
}

.about-cta .button {
	background: var(--mahogany);
	border-color: var(--mahogany);
	box-shadow: none;
}

/* ─── PRICE PAGE ─────────────────────────────────────────────────────── */
.price-main {
	background: var(--cream);
}

.price-hero {
	position: relative;
	min-height: clamp(330px, 31vw, 430px);
	display: grid;
	align-items: center;
	overflow: hidden;
	background: var(--rosewood-deep);
	color: var(--white);
}

.price-hero img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 58%;
	opacity: 1;
	filter: none;
}

.price-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(45, 18, 14, .48) 0%, rgba(45, 18, 14, .30) 28%, rgba(45, 18, 14, .10) 52%, rgba(45, 18, 14, 0) 76%);
	pointer-events: none;
}

.price-hero::before,
.trips-hero::before,
.single-trip-hero::before,
.error-hero::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -1px;
	z-index: 2;
	height: clamp(54px, 5.6vw, 96px);
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 96' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40 C240 86 480 8 720 42 C960 76 1200 6 1440 40 L1440 96 L0 96 Z' fill='%23fff8ed'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center bottom;
	pointer-events: none;
}

.price-hero .section-inner {
	position: relative;
	z-index: 3;
}

.error-hero::before {
	height: clamp(38px, 4vw, 64px);
}

.price-hero h1 {
	max-width: 540px;
	margin-bottom: 10px;
	font-family: var(--font-heading);
	font-size: clamp(48px, 6vw, 76px);
	line-height: .98;
	text-shadow: 0 3px 18px rgba(45, 18, 14, .62);
}

.price-hero p {
	max-width: 520px;
	margin-bottom: 18px;
	font-size: 22px;
	font-weight: 800;
	text-shadow: 0 2px 12px rgba(45, 18, 14, .62);
}

.price-hero .intro-underline {
	margin-left: 0;
}

.price-highlights {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
	padding: 32px 0 24px;
}

.price-highlights article,
.price-table-card,
.price-info-note,
.price-checks {
	border: 1px solid rgba(75, 33, 25, .14);
	border-radius: 8px;
	background: rgba(255, 252, 246, .78);
	box-shadow: 0 18px 48px rgba(75, 33, 25, .08);
}

.price-highlights article {
	display: grid;
	grid-template-columns: 78px 1fr;
	gap: 20px;
	align-items: center;
	min-height: 118px;
	padding: 20px 24px;
}

.price-highlight-icon {
	position: relative;
	display: grid;
	place-items: center;
	width: 66px;
	height: 66px;
	border-radius: 50%;
	background: var(--forest);
	color: var(--cream);
}

.price-highlight-icon::before,
.price-highlight-icon::after {
	content: "";
	position: absolute;
	box-sizing: border-box;
}

.price-highlight-icon-people::before {
	width: 13px;
	height: 13px;
	top: 19px;
	left: 26px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: -15px 5px 0 -2px currentColor, 15px 5px 0 -2px currentColor;
}

.price-highlight-icon-people::after {
	left: 19px;
	bottom: 16px;
	width: 28px;
	height: 15px;
	border-radius: 15px 15px 5px 5px;
	background: currentColor;
	box-shadow: -14px 4px 0 -4px currentColor, 14px 4px 0 -4px currentColor;
}

.price-highlight-icon-home::before {
	left: 18px;
	top: 25px;
	width: 30px;
	height: 24px;
	border: 3px solid currentColor;
	border-top: 0;
	border-radius: 2px 2px 5px 5px;
}

.price-highlight-icon-home::after {
	left: 17px;
	top: 16px;
	width: 32px;
	height: 32px;
	border-left: 3px solid currentColor;
	border-top: 3px solid currentColor;
	transform: rotate(45deg);
	border-radius: 3px 0 0 0;
}

.price-highlight-icon-home {
	--heart-size: 10px;
}

.price-highlight-icon-home i {
	display: none;
}

.price-highlight-icon-home::marker {
	content: "";
}

.price-highlight-icon-home {
	background-image:
		radial-gradient(circle at 49% 55%, currentColor 0 3px, transparent 3.5px);
}

.price-highlight-icon-calendar::before {
	left: 18px;
	top: 18px;
	width: 30px;
	height: 31px;
	border: 3px solid currentColor;
	border-radius: 4px;
}

.price-highlight-icon-calendar::after {
	left: 22px;
	top: 26px;
	width: 22px;
	height: 3px;
	background: currentColor;
	box-shadow:
		0 8px 0 -1px currentColor,
		0 16px 0 -1px currentColor,
		8px -13px 0 -1px currentColor,
		-8px -13px 0 -1px currentColor;
}

.price-highlights h2,
.price-table-card h2,
.price-checks h2,
.price-cta h2 {
	margin-bottom: 8px;
	color: var(--rosewood);
	font-family: var(--font-heading);
	font-size: 28px;
	line-height: 1.12;
}

.price-highlights p {
	margin-bottom: 0;
	font-size: 16px;
	line-height: 1.5;
}

.price-tables {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
	align-items: start;
	padding: 20px 0;
}

.price-table-card {
	overflow: hidden;
}

.price-table-card h2 {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 0 24px;
	padding: 28px 0 22px;
	border-bottom: 1px solid rgba(75, 33, 25, .18);
	font-size: clamp(30px, 3vw, 42px);
}

.price-table-card table {
	width: 100%;
	border-collapse: collapse;
	font-family: var(--font-heading);
}

.price-table-card th,
.price-table-card td {
	padding: 18px 26px;
	border-bottom: 1px solid rgba(75, 33, 25, .11);
	text-align: left;
	font-size: 20px;
}

.price-table-card th {
	color: var(--rosewood);
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 900;
}

.price-table-card td:last-child,
.price-table-card th:last-child {
	text-align: right;
}

.price-table-card tr:nth-child(even) {
	background: rgba(244, 234, 219, .45);
}

.price-table-card tr.price-summer {
	background: rgba(226, 230, 206, .55);
}

.price-table-card tr.price-winter {
	background: rgba(245, 222, 184, .55);
}

.price-date {
	display: grid;
	grid-template-columns: 24px auto;
	align-items: center;
}

.price-date-icon {
	display: inline-flex;
	justify-content: center;
	width: 20px;
	font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
	font-size: 17px;
	line-height: 1;
}

.price-notes {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, .96fr);
	gap: 28px;
	padding: 24px 0 24px;
}

.price-info-note {
	display: grid;
	grid-template-columns: 78px 1fr;
	gap: 24px;
	align-items: center;
	padding: 28px;
	background: rgba(246, 247, 235, .78);
}

.price-info-note span {
	display: grid;
	place-items: center;
	width: 66px;
	height: 66px;
	border-radius: 50%;
	background: var(--forest);
	color: var(--cream);
	font-family: var(--font-heading);
	font-size: 42px;
	font-weight: 700;
	font-style: italic;
	line-height: 1;
}

.price-info-note p {
	margin-bottom: 0;
	font-size: 17px;
	line-height: 1.65;
}

.price-checks {
	display: grid;
	align-content: center;
	justify-items: center;
	min-height: 100%;
	padding: 28px 34px;
	text-align: center;
}

.price-checks h2 {
	margin-bottom: 4px;
	font-size: 25px;
	line-height: 1.15;
}

.price-checks .intro-underline {
	width: 86px;
	height: 1px;
	margin: 0 auto 14px;
	position: relative;
	background: var(--rosewood);
	overflow: visible;
}

.price-checks .intro-underline::before {
	content: "🌲";
	position: absolute;
	left: 50%;
	top: 50%;
	display: grid;
	place-items: center;
	width: 26px;
	height: 18px;
	background: rgba(255, 252, 246, .96);
	color: var(--forest);
	font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
	font-size: 13px;
	line-height: 1;
	transform: translate(-50%, -50%);
}

.price-checks ul {
	display: inline-grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: left;
}

.price-checks li {
	position: relative;
	padding-left: 28px;
	font-size: 16px;
	line-height: 1.35;
}

.price-checks li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--forest);
	font-weight: 900;
}

.price-cta {
	display: grid;
	grid-template-columns: minmax(270px, .74fr) minmax(0, 1fr);
	gap: 36px;
	align-items: center;
	margin-bottom: 44px;
	padding: 0;
	overflow: hidden;
	border-radius: 8px;
	background: var(--rosewood-deep);
	color: var(--white);
	box-shadow: var(--shadow);
}

.price-cta img {
	display: block;
	width: 100%;
	height: 310px;
	object-fit: cover;
	opacity: .82;
}

.price-cta > div {
	padding: 34px 36px 34px 0;
}

.price-cta h2 {
	color: var(--white);
	font-size: clamp(30px, 3vw, 42px);
}

.price-cta p {
	max-width: 520px;
	margin-bottom: 22px;
	font-size: 18px;
}

.price-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-bottom: 28px;
}

.price-contact {
	padding-top: 18px;
	border-top: 1px solid rgba(255, 248, 237, .25);
	color: rgba(255, 248, 237, .92);
	font-size: 15px !important;
}

.price-page-cta {
	grid-template-columns: minmax(360px, .42fr) minmax(0, 1fr);
	gap: 0;
	align-items: stretch;
	margin-top: 0;
	margin-bottom: 26px;
	background: #2d120e;
	min-height: 230px;
}

.price-page-cta img {
	height: 100%;
	min-height: 230px;
	opacity: 1;
	object-position: center;
	transform: scale(1.045);
	transform-origin: center;
}

.price-page-cta > div {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 36px 38px 34px;
}

.price-page-cta h2 {
	margin-bottom: 8px;
	font-size: clamp(32px, 3.2vw, 46px);
}

.price-page-cta p {
	margin-bottom: 14px;
	font-size: 16px;
	line-height: 1.4;
}

.price-page-cta .price-cta-actions {
	gap: 14px;
	margin-bottom: 26px;
}

.price-page-cta .button {
	gap: 9px;
	min-height: 50px;
	padding: 11px 22px;
	font-size: 14px;
}

.price-page-cta .button-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 16px;
	height: 16px;
	border: 1.7px solid currentColor;
	border-radius: 3px;
	font-size: 0;
	line-height: 1;
	position: relative;
	flex: 0 0 auto;
}

.price-page-cta .button-icon::before,
.price-page-cta .button-icon::after {
	content: "";
	position: absolute;
	background: currentColor;
}

.price-page-cta .button-icon::before {
	top: 4px;
	left: 2px;
	right: 2px;
	height: 1.7px;
}

.price-page-cta .button-icon::after {
	top: -4px;
	left: 4px;
	width: 2px;
	height: 6px;
	box-shadow: 6px 0 0 currentColor;
	border-radius: 2px;
}

.price-page-cta .price-contact {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 16px;
	align-items: center;
	margin-bottom: 0;
	padding-top: 18px;
	font-size: 13px !important;
	line-height: 1.35;
}

.price-page-cta .price-contact span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	white-space: nowrap;
}

.contact-mini-icon {
	position: relative;
	display: inline-block;
	width: 15px;
	height: 15px;
	flex: 0 0 15px;
	color: #e4b06f;
}

.contact-mini-icon::before,
.contact-mini-icon::after {
	content: "";
	position: absolute;
	box-sizing: border-box;
}

.contact-mini-icon-person::before {
	top: 1px;
	left: 5px;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: currentColor;
}

.contact-mini-icon-person::after {
	left: 2px;
	bottom: 1px;
	width: 11px;
	height: 7px;
	border-radius: 8px 8px 3px 3px;
	background: currentColor;
}

.contact-mini-icon-phone::before {
	inset: 2px 3px 2px 4px;
	border: 2px solid currentColor;
	border-top-color: transparent;
	border-left-color: transparent;
	border-radius: 0 0 9px 0;
	transform: rotate(38deg);
}

.contact-mini-icon-mail::before {
	inset: 2px 1px 3px;
	border: 1.8px solid currentColor;
	border-radius: 2px;
}

.contact-mini-icon-mail::after {
	left: 3px;
	top: 5px;
	width: 9px;
	height: 7px;
	border-left: 1.8px solid currentColor;
	border-bottom: 1.8px solid currentColor;
	transform: rotate(-45deg);
}

.contact-mini-icon-pin::before {
	left: 3px;
	top: 1px;
	width: 9px;
	height: 9px;
	border-radius: 50% 50% 50% 0;
	background: currentColor;
	transform: rotate(-45deg);
}

.contact-mini-icon-pin::after {
	left: 6px;
	top: 4px;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #2d120e;
}

/* ─── AVAILABILITY PAGE ──────────────────────────────────────────────── */
.availability-main {
	background: var(--cream);
}

.availability-hero img {
	object-position: center 58%;
}

.availability-highlights article:nth-child(3) span {
	background: var(--mahogany);
}

.availability-highlights {
	padding-top: 32px;
	padding-bottom: 24px;
}

.availability-highlights article {
	min-height: 112px;
}

.availability-highlights h2 {
	font-size: 22px;
}

.availability-content {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 250px;
	gap: 22px;
	align-items: start;
	padding-bottom: 34px;
}

.availability-legend {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
	align-items: center;
	margin-bottom: 22px;
	font-size: 14px;
	font-weight: 800;
}

.availability-legend span {
	display: inline-flex;
	align-items: center;
	gap: 9px;
}

.availability-legend i {
	width: 30px;
	height: 24px;
	border: 1px solid rgba(75, 33, 25, .15);
	border-radius: 4px;
}

.legend-free {
	background: rgba(255, 252, 246, .88);
}

.legend-occupied {
	background: #e79988;
}

.legend-half {
	background: linear-gradient(135deg, rgba(255, 252, 246, .88) 0 50%, #e79988 50% 100%);
}

.legend-muted {
	background: #eadfcc;
}

.availability-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.availability-month,
.availability-note {
	border: 1px solid rgba(75, 33, 25, .13);
	border-radius: 8px;
	background: rgba(255, 252, 246, .80);
	box-shadow: 0 16px 38px rgba(75, 33, 25, .07);
}

.availability-month {
	padding: 16px 14px 14px;
}

.availability-month h2,
.availability-note h2 {
	margin-bottom: 14px;
	color: var(--rosewood);
	font-family: var(--font-heading);
	font-size: 24px;
	line-height: 1.15;
	text-align: center;
}

.availability-weekdays,
.availability-days {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 2px;
}

.availability-weekdays {
	margin-bottom: 5px;
	color: var(--muted);
	font-size: 11px;
	font-weight: 900;
	text-align: center;
}

.availability-day {
	display: grid;
	place-items: center;
	aspect-ratio: 1;
	border-radius: 2px;
	background: rgba(255, 252, 246, .92);
	color: var(--ink);
	font-size: 14px;
	font-weight: 800;
	line-height: 1;
	position: relative;
	overflow: hidden;
}

.availability-day.is-muted {
	background: #eadfcc;
	color: rgba(112, 93, 82, .55);
}

.availability-day.is-occupied {
	background: #e79988;
	color: var(--rosewood-deep);
}

.availability-day.is-departure {
	background: linear-gradient(135deg, #e79988 0 50%, rgba(255, 252, 246, .92) 50% 100%);
	color: var(--rosewood-deep);
}

.availability-day.is-arrival {
	background: linear-gradient(135deg, rgba(255, 252, 246, .92) 0 50%, #e79988 50% 100%);
	color: var(--rosewood-deep);
}

.availability-day.is-muted.is-departure {
	background: linear-gradient(135deg, #e79988 0 50%, #eadfcc 50% 100%);
}

.availability-day.is-muted.is-arrival {
	background: linear-gradient(135deg, #eadfcc 0 50%, #e79988 50% 100%);
}

.availability-note {
	position: sticky;
	top: 102px;
	padding: 24px 26px;
	background: rgba(246, 247, 235, .86);
}

.availability-note .intro-underline {
	margin-bottom: 18px;
}

.availability-note ul {
	display: grid;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.availability-note li {
	position: relative;
	padding-left: 28px;
	font-size: 15px;
	line-height: 1.55;
}

.availability-note li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: var(--forest);
	font-size: 20px;
	font-weight: 900;
	line-height: 1;
}

.availability-note a {
	color: var(--rosewood);
	font-weight: 900;
}

/* ─── GALLERY PAGE ───────────────────────────────────────────────────── */
.gallery-main {
	background: var(--cream);
}

.gallery-hero img {
	object-position: center 58%;
}

.gallery-intro {
	padding: 34px 0 22px;
	text-align: center;
}

.gallery-intro h2 {
	margin-bottom: 12px;
	color: var(--forest);
	font-family: var(--font-heading);
	font-size: clamp(30px, 3vw, 40px);
	line-height: 1.15;
}

.gallery-intro p {
	max-width: 790px;
	margin: 0 auto 8px;
	font-size: 16px;
	line-height: 1.55;
}

.gallery-tabs {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px;
	max-width: 740px;
	margin: 20px auto 0;
}

.gallery-tabs a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 16px;
	border-radius: 8px;
	background: rgba(244, 234, 219, .66);
	color: var(--rosewood);
	font-family: var(--font-heading);
	font-size: 17px;
	font-weight: 700;
	text-decoration: none;
}

.gallery-tabs a.active,
.gallery-tabs a:hover {
	background: var(--forest);
	color: var(--white);
}

.gallery-masonry {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	grid-auto-rows: clamp(132px, 13vw, 190px);
	gap: 10px;
}

.gallery-tile {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	background: var(--linen);
	box-shadow: 0 14px 34px rgba(75, 33, 25, .10);
}

.gallery-tile.is-large {
	grid-column: span 2;
	grid-row: span 2;
}

.gallery-tile img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .25s ease, filter .25s ease;
}

.gallery-tile:hover img {
	transform: scale(1.04);
	filter: brightness(.88);
}

.gallery-tile span {
	position: absolute;
	left: 16px;
	bottom: 16px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 38px;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(45, 18, 14, .78);
	color: var(--white);
	font-weight: 900;
}

.favorite-views {
	padding: 36px 0 30px;
	text-align: center;
}

.favorite-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	margin-bottom: 24px;
	text-align: center;
}

.favorite-grid article {
	overflow: hidden;
	border: 1px solid rgba(75, 33, 25, .14);
	border-radius: 8px;
	background: rgba(255, 252, 246, .78);
	box-shadow: 0 16px 38px rgba(75, 33, 25, .08);
}

.favorite-grid img {
	width: 100%;
	height: 160px;
	object-fit: cover;
}

.favorite-grid h2 {
	margin: 16px 18px 4px;
	color: var(--rosewood);
	font-family: var(--font-heading);
	font-size: 22px;
	line-height: 1.15;
}

.favorite-grid p {
	margin: 0 18px 18px;
	font-size: 14px;
	line-height: 1.45;
}

/* ─── CONTACT PAGE ───────────────────────────────────────────────────── */
.contact-main {
	background: var(--cream);
}

.contact-hero img {
	object-position: center 58%;
}

.contact-layout {
	display: grid;
	grid-template-columns: minmax(300px, .92fr) minmax(360px, 1fr);
	gap: 32px;
	padding: 34px 0 28px;
	align-items: stretch;
}

.contact-left {
	display: grid;
	grid-template-rows: minmax(0, 1fr) minmax(0, .86fr) auto;
	gap: 24px;
	align-content: stretch;
}

.contact-card,
.contact-form-card,
.contact-mini-facts,
.contact-help article {
	border: 1px solid rgba(75, 33, 25, .14);
	border-radius: 8px;
	background: rgba(255, 252, 246, .78);
	color: var(--ink);
	box-shadow: 0 16px 42px rgba(75, 33, 25, .08);
}

.contact-card,
.contact-form-card {
	padding: 26px 30px;
}

.contact-main .contact-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: rgba(255, 252, 246, .78);
	color: var(--ink);
}

.contact-main .contact-card h2,
.contact-main .contact-card p,
.contact-main .contact-card strong,
.contact-main .contact-card a {
	color: var(--ink);
}

.contact-main .contact-card a {
	margin-top: 0;
}

.contact-card h2,
.contact-form-card h2,
.contact-map h2,
.contact-help h2 {
	margin-bottom: 18px;
	color: var(--rosewood);
	font-family: var(--font-heading);
	font-size: 28px;
	line-height: 1.1;
}

.contact-line,
.contact-address {
	display: grid;
	grid-template-columns: 48px 70px minmax(0, 1fr);
	column-gap: 12px;
	row-gap: 2px;
	align-items: center;
	margin-top: 18px;
	font-size: 15px;
}

.contact-line:first-of-type {
	grid-template-columns: 48px 70px minmax(0, 1fr);
}

.contact-line:first-of-type strong {
	grid-column: 2 / -1;
}

.contact-round-icon {
	--contact-icon-mask: none;
	position: relative;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--forest);
	color: var(--white);
}

.contact-round-icon::before {
	content: "";
	width: 21px;
	height: 21px;
	background: currentColor;
	-webkit-mask: var(--contact-icon-mask) center / contain no-repeat;
	mask: var(--contact-icon-mask) center / contain no-repeat;
}

.contact-round-icon-person {
	--contact-icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 24a10 10 0 1 0 0-20 10 10 0 0 0 0 20Zm0 5c-9.5 0-17 5.3-17 12v3h34v-3c0-6.7-7.5-12-17-12Z'/%3E%3C/svg%3E");
}

.contact-round-icon-phone {
	--contact-icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M35.5 44C18.1 40.7 7.3 29.9 4 12.5 3.5 9.8 5 7.2 7.5 6.1l5.1-2.2c2.2-.9 4.7-.1 5.9 2l3.2 5.5c1 1.7.8 3.8-.5 5.3l-2.4 2.8c2.2 4.3 5.4 7.5 9.7 9.7l2.8-2.4c1.5-1.3 3.6-1.5 5.3-.5l5.5 3.2c2.1 1.2 2.9 3.7 2 5.9l-2.2 5.1c-1.1 2.5-3.7 4-6.4 3.5Z'/%3E%3C/svg%3E");
}

.contact-round-icon-mail {
	--contact-icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 10h36a4 4 0 0 1 4 4v20a4 4 0 0 1-4 4H6a4 4 0 0 1-4-4V14a4 4 0 0 1 4-4Zm18 17L6.8 15H41.2L24 27Zm0 5L6 19.4V34h36V19.4L24 32Z'/%3E%3C/svg%3E");
}

.contact-round-icon-pin {
	--contact-icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 2C14.6 2 7 9.6 7 19c0 12.5 17 27 17 27s17-14.5 17-27C41 9.6 33.4 2 24 2Zm0 23a6 6 0 1 1 0-12 6 6 0 0 1 0 12Z'/%3E%3C/svg%3E");
}

.contact-line a {
	color: var(--ink);
	font-weight: 900;
	text-decoration: none;
	justify-self: start;
}

.contact-address {
	grid-template-columns: 48px 1fr;
	align-items: start;
}

.contact-address p,
.contact-card > p {
	margin-bottom: 0;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.35;
}

.contact-mini-facts {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	padding: 16px;
}

.contact-mini-facts div {
	display: flex;
	gap: 12px;
	align-items: center;
	justify-content: center;
	min-height: 60px;
	border-right: 1px solid rgba(75, 33, 25, .18);
	font-size: 14px;
}

.contact-mini-facts div:last-child {
	border-right: 0;
}

.contact-fact-icon {
	--contact-fact-mask: none;
	display: block;
	width: 30px;
	height: 30px;
	color: var(--forest);
	background: currentColor;
	-webkit-mask: var(--contact-fact-mask) center / contain no-repeat;
	mask: var(--contact-fact-mask) center / contain no-repeat;
}

.contact-fact-icon-people {
	--contact-fact-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 8a6 6 0 1 1 0 12 6 6 0 0 1 0-12ZM11.5 12a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm25 0a5 5 0 1 1 0 10 5 5 0 0 1 0-10ZM24 23c7.2 0 12 3.4 12 8.7V36H12v-4.3C12 26.4 16.8 23 24 23Zm-12.5 2.5c1.7 0 3.2.4 4.5 1-2 1.6-3.1 3.7-3.1 6.3V36H3v-3.4c0-4.4 3.4-7.1 8.5-7.1Zm25 0c5.1 0 8.5 2.7 8.5 7.1V36h-9.9v-3.2c0-2.6-1.1-4.7-3.1-6.3 1.3-.6 2.8-1 4.5-1Z'/%3E%3C/svg%3E");
}

.contact-fact-icon-mountain {
	--contact-fact-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 41 18 12l9 17 5-9 13 21H3Zm16-18-6 12h16L19 23Z'/%3E%3C/svg%3E");
}

.contact-fact-icon-snow {
	--contact-fact-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M26 4v8.8l5.1-5.1 2.8 2.8L26 18.4V22h3.6l7.9-7.9 2.8 2.8-5.1 5.1H44v4h-8.8l5.1 5.1-2.8 2.8-7.9-7.9H26v3.6l7.9 7.9-2.8 2.8-5.1-5.1V44h-4v-8.8l-5.1 5.1-2.8-2.8 7.9-7.9V26h-3.6l-7.9 7.9-2.8-2.8 5.1-5.1H4v-4h8.8l-5.1-5.1 2.8-2.8 7.9 7.9H22v-3.6l-7.9-7.9 2.8-2.8 5.1 5.1V4h4Z'/%3E%3C/svg%3E");
}

.contact-form-card .intro-underline {
	margin-left: 0;
	margin-bottom: 18px;
}

.contact-form-card form {
	display: grid;
	gap: 16px;
}

.contact-form-card label {
	display: grid;
	gap: 7px;
	font-size: 15px;
	font-weight: 900;
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
	width: 100%;
	min-height: 46px;
	padding: 12px 14px;
	border: 1px solid rgba(75, 33, 25, .22);
	border-radius: 6px;
	background: rgba(255, 248, 237, .86);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 15px;
}

.contact-form-card textarea {
	min-height: 108px;
	resize: vertical;
}

.form-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.contact-form-card .consent {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 700;
}

.contact-form-card .consent input {
	width: 16px;
	min-height: 16px;
}

.contact-form-card button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	border-radius: 6px;
}

.contact-form-card [data-roubenka-datepicker] {
	cursor: pointer;
	background-image: linear-gradient(transparent, transparent);
}

.roubenka-datepicker {
	position: absolute;
	z-index: 9999;
	width: 318px;
	padding: 16px;
	border: 1px solid rgba(75, 33, 25, .18);
	border-radius: 10px;
	background: var(--cream);
	box-shadow: 0 18px 48px rgba(45, 18, 14, .2);
	color: var(--ink);
	font-family: var(--font-body);
}

.rdp-header {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr) 78px 38px;
	gap: 8px;
	align-items: center;
	margin-bottom: 13px;
}

.rdp-nav,
.rdp-actions button,
.rdp-month,
.rdp-year {
	border: 1px solid rgba(75, 33, 25, .22);
	border-radius: 6px;
	background: rgba(255, 255, 255, .72);
	color: var(--rosewood);
	font: 800 14px/1 var(--font-body);
}

.rdp-nav {
	height: 38px;
	font-size: 25px;
	line-height: 1;
	cursor: pointer;
}

.rdp-nav:hover,
.rdp-actions button:hover {
	background: var(--rosewood);
	border-color: var(--rosewood);
	color: var(--white);
}

.rdp-month,
.rdp-year {
	height: 38px;
	padding: 0 9px;
	text-transform: capitalize;
}

.rdp-weekdays,
.rdp-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 4px;
	text-align: center;
}

.rdp-weekdays {
	margin-bottom: 6px;
	color: var(--mahogany);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.rdp-day {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border: 1px solid transparent;
	border-radius: 8px;
	background: transparent;
	color: var(--ink);
	font: 700 14px/1 var(--font-body);
	cursor: pointer;
}

.rdp-day:hover {
	background: rgba(53, 91, 67, .12);
	border-color: rgba(53, 91, 67, .25);
	color: var(--forest);
}

.rdp-day.is-muted {
	color: rgba(112, 93, 82, .55);
}

.rdp-day.is-today {
	border-color: var(--mahogany);
	color: var(--mahogany);
	box-shadow: inset 0 0 0 1px rgba(143, 63, 40, .22);
}

.rdp-day.is-selected,
.rdp-day.is-selected:hover {
	background: var(--forest);
	border-color: var(--forest);
	color: var(--white);
}

.rdp-actions {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid rgba(75, 33, 25, .12);
}

.rdp-actions button {
	min-height: 34px;
	padding: 0 13px;
	cursor: pointer;
}

.contact-form-card {
	min-height: 100%;
}

.submit-icon {
	width: 16px;
	height: 16px;
	background: currentColor;
	-webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M44 4 4 21l17 6 6 17L44 4ZM23 25 14 22l19-8-10 11Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M44 4 4 21l17 6 6 17L44 4ZM23 25 14 22l19-8-10 11Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.form-hp {
	position: absolute;
	left: -9999px;
	width: 1px !important;
	height: 1px !important;
	min-height: 1px !important;
	opacity: 0;
}

.form-message {
	margin: 0 0 16px;
	padding: 12px 14px;
	border-radius: 6px;
	font-weight: 800;
}

.form-message.success {
	border: 1px solid rgba(47, 91, 65, .25);
	background: rgba(47, 91, 65, .09);
	color: var(--forest);
}

.form-message.error {
	border: 1px solid rgba(106, 40, 29, .25);
	background: rgba(106, 40, 29, .08);
	color: var(--rosewood);
}

.contact-map {
	padding-bottom: 22px;
}

.contact-map h2 {
	margin-bottom: 4px;
	font-size: 25px;
}

.contact-map .intro-underline {
	margin: 0 0 12px 0;
	width: 44px;
	height: 1px;
	overflow: hidden;
	background: var(--rosewood);
}

.contact-map .intro-underline::before {
	content: none;
}

.contact-map-box {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 18px 48px rgba(75, 33, 25, .09);
}

.contact-map-box img,
.contact-map-box iframe {
	display: block;
	width: 100%;
	height: clamp(250px, 24vw, 330px);
	border: 0;
	object-fit: cover;
}

.map-badge {
	position: absolute;
	left: 50%;
	bottom: 18px;
	display: flex;
	gap: 14px;
	align-items: center;
	width: min(520px, calc(100% - 40px));
	padding: 12px 16px;
	border-radius: 8px;
	background: rgba(255, 252, 246, .92);
	box-shadow: 0 16px 36px rgba(45, 18, 14, .18);
	font-size: 13px;
	font-weight: 700;
	transform: translateX(-50%);
}

.map-pin-icon {
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	background: var(--rosewood);
	-webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 2C14.6 2 7 9.6 7 19c0 12.5 17 27 17 27s17-14.5 17-27C41 9.6 33.4 2 24 2Zm0 23a6 6 0 1 1 0-12 6 6 0 0 1 0 12Z'/%3E%3C/svg%3E") center / contain no-repeat;
	mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 2C14.6 2 7 9.6 7 19c0 12.5 17 27 17 27s17-14.5 17-27C41 9.6 33.4 2 24 2Zm0 23a6 6 0 1 1 0-12 6 6 0 0 1 0 12Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.map-badge a {
	margin-left: auto;
	padding: 9px 16px;
	border-radius: 6px;
	background: var(--rosewood);
	color: var(--white);
	font-weight: 900;
	text-decoration: none;
}

.contact-help {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	padding: 0 0 30px;
}

.contact-help article {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 16px;
	padding: 22px 20px;
}

.contact-help-icon {
	--contact-help-mask: none;
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--forest);
	color: var(--white);
}

.contact-help-icon::before {
	content: "";
	width: 24px;
	height: 24px;
	background: currentColor;
	-webkit-mask: var(--contact-help-mask) center / contain no-repeat;
	mask: var(--contact-help-mask) center / contain no-repeat;
}

.contact-help-icon-calendar {
	--contact-help-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 4h4v6h12V4h4v6h6a4 4 0 0 1 4 4v26a4 4 0 0 1-4 4H8a4 4 0 0 1-4-4V14a4 4 0 0 1 4-4h6V4Zm26 18H8v18h32V22ZM8 18h32v-4H8v4Zm9 9h6v6h-6v-6Zm8 0h6v6h-6v-6Z'/%3E%3C/svg%3E");
}

.contact-help-icon-phone-mail {
	--contact-help-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 11h23a4 4 0 0 1 4 4v12a4 4 0 0 1-4 4H10l-6 6V11Zm4 6 7.5 5.5L23 17H8Zm26-2h6a4 4 0 0 1 4 4v18l-5-5H25a4 4 0 0 1-4-4v-1h6a8 8 0 0 0 8-8v-4Z'/%3E%3C/svg%3E");
}

.contact-help-icon-family {
	--contact-help-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 20a7 7 0 1 0 0-14 7 7 0 0 0 0 14Zm-12 4a6 6 0 1 0 0-12 6 6 0 0 0 0 12Zm24 0a6 6 0 1 0 0-12 6 6 0 0 0 0 12ZM24 25c-6.5 0-11 4-11 9.4V40h22v-5.6C35 29 30.5 25 24 25ZM5 38h6v-3.6c0-2.6.8-4.9 2.3-6.8A11.2 11.2 0 0 0 12 27c-4.4 0-7 3.2-7 7v4Zm32 0h6v-4c0-3.8-2.6-7-7-7-.4 0-.9 0-1.3.1 1.5 2 2.3 4.3 2.3 7.3V38Z'/%3E%3C/svg%3E");
}

.contact-help h2 {
	margin-bottom: 6px;
	font-size: 17px;
}

.contact-help p {
	margin-bottom: 0;
	font-size: 13px;
	line-height: 1.5;
}

/* ─── TRIPS PAGE ─────────────────────────────────────────────────────── */
.trips-main {
	background: var(--cream);
}

.trips-hero {
	position: relative;
	min-height: clamp(360px, 34vw, 480px);
	display: grid;
	align-items: center;
	overflow: hidden;
	background: var(--rosewood-deep);
	color: var(--white);
}

.trips-hero img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 46%;
	filter: none;
}

.trips-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(45, 18, 14, .48) 0%, rgba(45, 18, 14, .30) 28%, rgba(45, 18, 14, .10) 52%, rgba(45, 18, 14, 0) 76%);
	pointer-events: none;
}

.trips-hero .section-inner {
	position: relative;
	z-index: 3;
}

.trips-hero h1 {
	margin-bottom: 12px;
	font-family: var(--font-heading);
	font-size: clamp(54px, 6vw, 78px);
	line-height: .96;
	text-shadow: 0 3px 18px rgba(45, 18, 14, .70);
}

.trips-hero p {
	max-width: 590px;
	margin-bottom: 16px;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.35;
	text-shadow: 0 2px 12px rgba(45, 18, 14, .70);
}

.trips-hero .trips-hero-text {
	max-width: 560px;
	font-size: 17px;
	font-weight: 700;
}

.trips-hero .intro-underline {
	margin-left: 0;
}

.trips-highlights,
.trip-type-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 22px;
	padding: 34px 0 28px;
}

.trips-highlights article,
.trip-type-grid article,
.trip-type-card,
.trip-card {
	border: 1px solid rgba(75, 33, 25, .14);
	border-radius: 8px;
	background: rgba(255, 252, 246, .80);
	box-shadow: 0 16px 38px rgba(75, 33, 25, .08);
}

.trips-highlights article {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 16px;
	align-items: center;
	min-height: 112px;
	padding: 20px 22px;
}

.trips-page .trips-highlights article {
	min-width: 0;
}

.trips-page .trips-highlights h2 {
	font-size: 24px;
}

.trip-type-grid span {
	display: grid;
	place-items: center;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: var(--forest);
	color: var(--white);
	font-size: 28px;
}

.trip-highlight-icon {
	position: relative;
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: var(--forest);
	color: var(--cream);
}

.trip-highlight-icon::before,
.trip-highlight-icon::after {
	content: "";
	position: absolute;
	box-sizing: border-box;
}

.trip-highlight-icon-mountain::before {
	left: 13px;
	bottom: 15px;
	width: 28px;
	height: 22px;
	background: currentColor;
	clip-path: polygon(0 100%, 42% 24%, 57% 56%, 73% 36%, 100% 100%);
}

.trip-highlight-icon-family::before {
	width: 10px;
	height: 10px;
	top: 14px;
	left: 22px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: -10px 4px 0 -1px currentColor, 10px 4px 0 -1px currentColor;
}

.trip-highlight-icon-family::after {
	left: 15px;
	bottom: 14px;
	width: 24px;
	height: 13px;
	border-radius: 13px 13px 4px 4px;
	background: currentColor;
	box-shadow: -9px 4px 0 -4px currentColor, 9px 4px 0 -4px currentColor;
}

.trip-highlight-icon-pin::before {
	left: 16px;
	top: 10px;
	width: 22px;
	height: 22px;
	border-radius: 50% 50% 50% 0;
	background: currentColor;
	transform: rotate(-45deg);
}

.trip-highlight-icon-pin::after {
	left: 24px;
	top: 18px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--forest);
}

.trips-highlights h2,
.trips-map-section h2,
.trip-section h2,
.trip-types h2 {
	margin-bottom: 8px;
	color: var(--rosewood);
	font-family: var(--font-heading);
	font-size: 31px;
	line-height: 1.1;
}

.trips-highlights p {
	margin-bottom: 0;
	font-size: 15px;
	line-height: 1.45;
}

.trip-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 16px 0 18px;
}

.trip-tabs button {
	min-width: 105px;
	padding: 10px 16px;
	border: 1px solid rgba(75, 33, 25, .18);
	border-radius: 6px;
	background: rgba(255, 252, 246, .78);
	color: var(--rosewood);
	cursor: pointer;
	font: inherit;
	font-weight: 900;
	text-align: center;
	text-decoration: none;
}

.trip-tabs button.active,
.trip-tabs button:hover,
.trip-tabs button:focus-visible {
	background: var(--forest);
	color: var(--white);
}

.trip-tabs button:focus-visible {
	outline: 2px solid rgba(75, 33, 25, .32);
	outline-offset: 2px;
}

.trip-filter-empty {
	margin: 16px 0 0;
	padding: 14px 18px;
	border: 1px solid rgba(75, 33, 25, .14);
	border-radius: 8px;
	background: rgba(255, 252, 246, .72);
	color: var(--muted);
	font-weight: 700;
}

[data-trip-card][hidden],
[data-trip-section][hidden],
.trip-filter-empty[hidden] {
	display: none !important;
}

.trips-map {
	position: relative;
	overflow: hidden;
	min-height: clamp(260px, 28vw, 390px);
	border: 1px solid rgba(75, 33, 25, .14);
	border-radius: 8px;
	background: #dfe9d8;
	box-shadow: 0 18px 48px rgba(75, 33, 25, .08);
}

.trips-map > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .9;
}

.trips-map-canvas {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
}

.trips-map .leaflet-control-attribution {
	font-size: 10px;
}

.trips-map .leaflet-control-zoom a {
	color: var(--rosewood);
	font-weight: 900;
}

.trip-map-marker {
	border: 0;
	background: transparent;
}

.trip-map-marker span {
	display: grid;
	place-items: center;
	width: 31px;
	height: 31px;
	border: 3px solid var(--white);
	border-radius: 50% 50% 50% 4px;
	background: var(--forest);
	box-shadow: 0 8px 18px rgba(45, 18, 14, .28);
	transform: rotate(-45deg);
}

.trip-map-marker span::before {
	content: "";
	display: block;
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: var(--white);
}

.trip-map-marker-home span {
	background: var(--mahogany);
	color: var(--white);
	font-size: 11px;
	font-weight: 900;
}

.trip-map-marker-home span::before {
	content: attr(data-empty);
	display: none;
}

.trip-map-marker-home span {
	transform: rotate(-45deg);
}

.trip-map-marker-home span {
	font-family: var(--font-body);
}

.map-start {
	position: absolute;
	top: 60px;
	left: 28px;
	z-index: 3;
	display: grid;
	gap: 12px;
	width: 205px;
	padding: 18px;
	border-radius: 8px;
	background: rgba(255, 252, 246, .90);
	box-shadow: 0 14px 34px rgba(45, 18, 14, .15);
}

.map-start strong {
	color: var(--rosewood);
	font-family: var(--font-heading);
	font-size: 18px;
}

.map-start small {
	color: var(--muted);
	line-height: 1.7;
}

.map-radius {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 1;
	border: 2px dashed rgba(75, 33, 25, .36);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.radius-one { width: 210px; height: 150px; }
.radius-two { width: 430px; height: 290px; }
.radius-three { width: 660px; height: 430px; }

.trip-section {
	padding-top: 26px;
}

.trip-grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trip-grid-six {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trip-grid-four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trip-card {
	position: relative;
	overflow: hidden;
	text-align: center;
}

.trip-card a {
	display: block;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.trip-card img {
	width: 100%;
	height: 150px;
	object-fit: cover;
}

.trip-card span {
	position: absolute;
	top: 9px;
	right: 9px;
	padding: 4px 8px;
	border-radius: 5px;
	background: var(--forest);
	color: var(--white);
	font-size: 12px;
	font-weight: 900;
}

.trip-card h3 {
	margin: 14px 12px 4px;
	color: var(--rosewood);
	font-family: var(--font-heading);
	font-size: 19px;
	line-height: 1.12;
}

.trip-card p {
	margin: 0 12px 15px;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.35;
}

.trip-types {
	padding: 34px 0 20px;
}

.trip-type-grid {
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	padding: 8px 0 0;
}

.trip-type-grid article,
.trip-type-card {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 16px;
	padding: 22px 20px;
	cursor: pointer;
	width: 100%;
	border: 1px solid rgba(75, 33, 25, .14);
	color: inherit;
	font: inherit;
	text-align: left;
	transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.trip-type-grid article:hover,
.trip-type-grid article:focus-visible,
.trip-type-grid article.active,
.trip-type-card:hover,
.trip-type-card:focus-visible,
.trip-type-card.active {
	border-color: rgba(48, 95, 68, .44);
	box-shadow: 0 18px 42px rgba(48, 95, 68, .14);
	transform: translateY(-1px);
	outline: none;
}

.trip-type-grid h3 {
	margin-bottom: 6px;
	font-family: var(--font-heading);
	font-size: 21px;
}

.trip-type-grid p {
	margin-bottom: 8px;
	color: var(--muted);
	font-size: 13px;
	line-height: 1.4;
}

.trip-type-grid a,
.trip-type-grid strong {
	color: var(--rosewood);
	font-weight: 900;
	text-decoration: none;
}

/* ─── SINGLE TRIP ────────────────────────────────────────────────────── */
.single-trip-main {
	background: var(--cream);
}

.single-trip-hero {
	position: relative;
	min-height: clamp(360px, 34vw, 480px);
	display: grid;
	align-items: center;
	overflow: hidden;
	background: var(--rosewood-deep);
	color: var(--white);
}

.single-trip-hero img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: none;
}

.single-trip-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(45, 18, 14, .48) 0%, rgba(45, 18, 14, .30) 28%, rgba(45, 18, 14, .10) 52%, rgba(45, 18, 14, 0) 76%);
	pointer-events: none;
}

.single-trip-hero .section-inner {
	position: relative;
	z-index: 3;
}

.breadcrumb-link {
	display: inline-flex;
	margin-bottom: 18px;
	color: rgba(255, 248, 237, .86);
	font-weight: 900;
	text-decoration: none;
}

.single-trip-hero h1 {
	max-width: 760px;
	margin-bottom: 14px;
	font-family: var(--font-heading);
	font-size: clamp(48px, 6vw, 78px);
	line-height: .98;
}

.single-trip-hero p {
	max-width: 650px;
	margin-bottom: 18px;
	font-size: 21px;
	font-weight: 800;
	line-height: 1.4;
}

.single-trip-hero .intro-underline {
	margin-left: 0;
}

.single-trip-content {
	display: grid;
	grid-template-columns: 300px minmax(0, 1fr);
	gap: 34px;
	padding: 42px 0 34px;
}

.single-trip-facts,
.single-trip-article {
	border: 1px solid rgba(75, 33, 25, .14);
	border-radius: 8px;
	background: rgba(255, 252, 246, .80);
	box-shadow: 0 16px 38px rgba(75, 33, 25, .08);
}

.single-trip-facts {
	align-self: start;
	display: grid;
	gap: 18px;
	padding: 26px;
}

.single-trip-facts h2 {
	margin-bottom: 2px;
	color: var(--rosewood);
	font-family: var(--font-heading);
	font-size: 30px;
}

.single-trip-facts div {
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 8px 12px;
	align-items: center;
}

.single-trip-facts span {
	grid-row: span 2;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--forest);
	color: var(--white);
}

.single-trip-facts strong {
	color: var(--rosewood);
}

.single-trip-facts p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 15px;
}

.single-trip-article {
	padding: 34px 38px;
	font-size: 18px;
}

.single-trip-article .lead {
	color: var(--forest);
	font-family: var(--font-heading);
	font-size: 25px;
	font-weight: 700;
	line-height: 1.35;
}

.single-trip-article h2,
.single-trip-article h3 {
	margin-top: 28px;
	color: var(--rosewood);
	font-family: var(--font-heading);
}

.single-trip-article a {
	color: var(--rosewood);
	font-weight: 900;
}

.single-trip-hero-rich {
	min-height: clamp(390px, 35vw, 520px);
}

.trip-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 34px;
	color: rgba(255, 248, 237, .88);
	font-size: 14px;
	font-weight: 900;
}

.trip-breadcrumb a {
	color: inherit;
	text-decoration: none;
}

.trip-quick-facts {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 20px;
	padding: 20px 0 22px;
}

.trip-quick-facts div,
.trip-first-look,
.trip-expect-grid article,
.trip-route-tips,
.trip-practical-grid article {
	border: 1px solid rgba(75, 33, 25, .14);
	border-radius: 8px;
	background: rgba(255, 252, 246, .80);
	box-shadow: 0 16px 38px rgba(75, 33, 25, .08);
}

.trip-quick-facts div {
	position: relative;
	display: grid;
	grid-template-columns: 44px 1fr;
	gap: 10px 13px;
	align-items: center;
	min-height: 64px;
	padding: 13px 18px;
}

.trip-quick-facts span,
.trip-expect-grid span,
.trip-practical-grid span {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: var(--forest);
	color: var(--white);
	font-family: "Segoe UI Symbol", "Apple Color Emoji", sans-serif;
	font-size: 21px;
	line-height: 1;
}

.trip-icon::before {
	content: "";
	display: block;
	width: 21px;
	height: 21px;
	background: currentColor;
	mask: var(--trip-icon) center / contain no-repeat;
	-webkit-mask: var(--trip-icon) center / contain no-repeat;
}

.trip-icon-pin { --trip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7Zm0 9.8A2.8 2.8 0 1 1 12 6.2a2.8 2.8 0 0 1 0 5.6Z'/%3E%3C/svg%3E"); }
.trip-icon-clock { --trip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm1 10.2 3.2 1.9-1 1.7-4.2-2.5V6h2v6.2Z'/%3E%3C/svg%3E"); }
.trip-icon-mountain { --trip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='m2 20 7.6-14 4.3 7.2L16.5 9 22 20H2Zm8-3h4.9L9.8 8.4 5.1 17H10Zm7.4 0h1.3l-2.3-4.2-.9 1.5 1.9 2.7Z'/%3E%3C/svg%3E"); }
.trip-icon-family { --trip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M8 11a4 4 0 1 1 0-8 4 4 0 0 1 0 8Zm8.5 1a3.2 3.2 0 1 1 0-6.4 3.2 3.2 0 0 1 0 6.4ZM2 21v-2.2C2 15.6 4.7 13 8 13s6 2.6 6 5.8V21H2Zm12.5 0v-2.2c0-1.8-.6-3.4-1.6-4.7 1-.7 2.2-1.1 3.6-1.1 3 0 5.5 2.4 5.5 5.4V21h-7.5Z'/%3E%3C/svg%3E"); }
.trip-icon-parking { --trip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6 3h7.2c3.2 0 5.4 2.1 5.4 5.2s-2.2 5.3-5.4 5.3H9.5V21H6V3Zm3.5 7.4H13c1.3 0 2.1-.9 2.1-2.2S14.3 6 13 6H9.5v4.4Z'/%3E%3C/svg%3E"); }
.trip-icon-route { --trip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6 6a3 3 0 1 1 2.2 2.9L8 9h8a4 4 0 0 1 0 8h-1.2A3 3 0 1 1 14 15h2a2 2 0 0 0 0-4H8a4 4 0 0 1-2-7.5V6Z'/%3E%3C/svg%3E"); }
.trip-icon-camera { --trip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M8.8 5 10 3h4l1.2 2H20a2 2 0 0 1 2 2v11a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h4.8ZM12 17a4.5 4.5 0 1 0 0-9 4.5 4.5 0 0 0 0 9Zm0-2.1a2.4 2.4 0 1 1 0-4.8 2.4 2.4 0 0 1 0 4.8Z'/%3E%3C/svg%3E"); }
.trip-icon-walk { --trip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M13.5 5.5a2.3 2.3 0 1 1 0-4.6 2.3 2.3 0 0 1 0 4.6Zm-2 2.1 2.5 1.6 3.2.6-.4 2-3.8-.7-1.2-.7-.8 3.2 3.1 2.2V22h-2.2v-5l-3.2-2.2-1.3 3.7-3.1-.8.6-2 1.5.4L8 10.2l-2 .9-1.4 2.7-1.8-.9 1.7-3.4 4.2-2h2.8Z'/%3E%3C/svg%3E"); }
.trip-icon-calendar { --trip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 2h2v3h6V2h2v3h3a2 2 0 0 1 2 2v13a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h3V2Zm13 8H4v10h16V10Z'/%3E%3C/svg%3E"); }
.trip-icon-binoculars { --trip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M7 6h3l1 5h2l1-5h3l4 12a3 3 0 0 1-5.7 1.2L14 15h-4l-1.3 4.2A3 3 0 0 1 3 18L7 6Zm.8 5.5L5 18a1 1 0 0 0 1.9.4l2.1-6.9H7.8Zm7.2 0 2.1 6.9A1 1 0 0 0 19 18l-2.8-6.5H15Z'/%3E%3C/svg%3E"); }
.trip-icon-bag { --trip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M8 6a4 4 0 0 1 8 0h2a2 2 0 0 1 2 2v12H4V8a2 2 0 0 1 2-2h2Zm2 0h4a2 2 0 0 0-4 0Zm-1 5H7v7h2v-7Zm8 0h-2v7h2v-7Z'/%3E%3C/svg%3E"); }
.trip-icon-boot { --trip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M5 3h7v8l2.8 2H20a3 3 0 0 1 3 3v3H9.8L5 15.8V3Zm2 2v9.7l3.4 2.3H21v-1a1 1 0 0 0-1-1h-5.8L10 12V5H7Z'/%3E%3C/svg%3E"); }
.trip-icon-car { --trip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M5 11 7 5h10l2 6 2 2v6h-3v-2H6v2H3v-6l2-2Zm2.2 0h9.6l-1.3-4h-7l-1.3 4ZM7 15a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm10 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z'/%3E%3C/svg%3E"); }
.trip-icon-coffee { --trip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M3 7h12v7a5 5 0 0 1-5 5H8a5 5 0 0 1-5-5V7Zm14 2h1a3 3 0 0 1 0 6h-1V9Zm0 2v2h1a1 1 0 0 0 0-2h-1ZM2 21h17v2H2v-2ZM6 2h2v3H6V2Zm4 0h2v3h-2V2Z'/%3E%3C/svg%3E"); }
.trip-icon-sun { --trip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M11 1h2v4h-2V1Zm0 18h2v4h-2v-4ZM1 11h4v2H1v-2Zm18 0h4v2h-4v-2ZM4.2 2.8 7 5.6 5.6 7 2.8 4.2l1.4-1.4Zm14.2 14.2 2.8 2.8-1.4 1.4-2.8-2.8 1.4-1.4ZM19.8 2.8l1.4 1.4L18.4 7 17 5.6l2.8-2.8ZM5.6 17 7 18.4l-2.8 2.8-1.4-1.4L5.6 17ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Z'/%3E%3C/svg%3E"); }
.trip-icon-info { --trip-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M11 10h2v8h-2v-8Zm0-4h2v2h-2V6Zm1-4a10 10 0 1 0 0 20 10 10 0 0 0 0-20Z'/%3E%3C/svg%3E"); }

.trip-quick-facts strong {
	color: var(--rosewood);
	font-weight: 900;
	line-height: 1.2;
	font-size: 15px;
}

.trip-fact-tooltip {
	position: absolute;
	left: 50%;
	top: calc(100% + 8px);
	z-index: 20;
	width: min(260px, 90vw);
	margin: 0;
	padding: 10px 12px;
	border-radius: 8px;
	background: var(--rosewood-deep);
	color: var(--white);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.35;
	box-shadow: 0 16px 34px rgba(45, 18, 14, .22);
	opacity: 0;
	pointer-events: none;
	transform: translate(-50%, -6px);
	transition: opacity .16s ease, transform .16s ease;
}

.trip-fact-tooltip::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 100%;
	border: 6px solid transparent;
	border-bottom-color: var(--rosewood-deep);
	transform: translateX(-50%);
}

.trip-quick-facts .has-tooltip:hover .trip-fact-tooltip,
.trip-quick-facts .has-tooltip:focus .trip-fact-tooltip,
.trip-quick-facts .has-tooltip:focus-within .trip-fact-tooltip {
	opacity: 1;
	transform: translate(-50%, 0);
}

.single-trip-overview {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(330px, .78fr);
	gap: 42px;
	padding: 0 0 24px;
}

.single-trip-copy h2,
.trip-expect h2,
.trip-route h2,
.trip-practical h2,
.trip-related h2 {
	margin-bottom: 18px;
	color: var(--rosewood);
	font-family: var(--font-heading);
	font-size: 34px;
	line-height: 1.1;
}

.single-trip-copy {
	font-size: 18px;
	line-height: 1.7;
}

.single-trip-copy p {
	margin-bottom: 18px;
}

.trip-first-look {
	align-self: start;
	padding: 26px 30px;
}

.trip-first-look h2 {
	margin-bottom: 14px;
	color: var(--rosewood);
	font-family: var(--font-heading);
	font-size: 27px;
}

.trip-first-look dl {
	margin: 0;
}

.trip-first-look div {
	display: grid;
	grid-template-columns: minmax(130px, .8fr) minmax(0, 1fr);
	gap: 18px;
	padding: 11px 0;
	border-bottom: 1px solid rgba(75, 33, 25, .13);
}

.trip-first-look div:last-child {
	border-bottom: 0;
}

.trip-first-look dt {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: var(--forest);
	font-weight: 900;
}

.trip-first-look dt .trip-icon {
	width: 20px;
	height: 20px;
	background: transparent;
	color: var(--forest);
	font-size: 0;
}

.trip-first-look dt .trip-icon::before {
	width: 18px;
	height: 18px;
}

.trip-first-look dd {
	margin: 0;
}

.trip-detail-gallery {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	padding-bottom: 28px;
}

.trip-detail-gallery img {
	width: 100%;
	height: clamp(170px, 15vw, 230px);
	border-radius: 8px;
	object-fit: cover;
	box-shadow: 0 16px 36px rgba(75, 33, 25, .10);
}

.trip-expect-grid,
.trip-practical-grid {
	display: grid;
	gap: 18px;
}

.trip-expect-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trip-practical-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.trip-expect-grid article,
.trip-practical-grid article {
	padding: 28px 30px 30px;
}

.trip-expect-grid article {
	min-height: 112px;
	display: grid;
	grid-template-columns: 46px minmax(0, 1fr);
	gap: 2px 14px;
	align-items: flex-start;
	padding: 22px 20px;
}

.trip-expect-grid span {
	grid-row: 1 / span 2;
	width: 40px;
	height: 40px;
	margin-bottom: 0;
	font-size: 0;
}

.trip-expect-grid span::before {
	width: 22px;
	height: 22px;
}

.trip-expect-grid h3,
.trip-practical-grid h3 {
	margin: 0 0 6px;
	color: var(--rosewood);
	font-family: var(--font-heading);
	font-size: 20px;
	line-height: 1.15;
}

.trip-expect-grid h3 {
	margin-bottom: 3px;
	font-size: 18px;
	line-height: 1.12;
}

.trip-expect-grid p,
.trip-practical-grid p {
	margin-bottom: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.45;
}

.trip-expect-grid p {
	font-size: 13px;
	line-height: 1.38;
}

.trip-practical-grid h3 {
	margin: 0 0 3px;
	font-size: 15px;
	line-height: 1.15;
}

.trip-practical-grid p {
	font-size: 12px;
	line-height: 1.3;
}

.trip-practical-grid article {
	min-height: 90px;
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr);
	gap: 2px 12px;
	align-items: flex-start;
	padding: 18px 16px;
}

.trip-practical-grid span {
	grid-row: 1 / span 2;
	width: 32px;
	height: 32px;
	font-size: 0;
}

.trip-practical-grid span::before {
	width: 19px;
	height: 19px;
}

.trip-route-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, .46fr);
	gap: 26px;
	align-items: stretch;
}

.trip-route-map {
	position: relative;
	overflow: hidden;
	min-height: 420px;
	border: 1px solid rgba(75, 33, 25, .14);
	border-radius: 8px;
	background: #dfeadf;
	box-shadow: 0 16px 38px rgba(75, 33, 25, .08);
}

.trip-route-map > img,
.trip-route-map > iframe {
	width: 100%;
	height: 100%;
	min-height: 420px;
	border: 0;
	object-fit: cover;
}

.route-map-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.route-map-overlay span,
.route-map-overlay a {
	position: absolute;
	z-index: 1;
	border-radius: 8px;
	background: rgba(255, 252, 246, .92);
	box-shadow: 0 14px 30px rgba(45, 18, 14, .15);
}

.route-map-overlay a {
	pointer-events: auto;
}

.trip-route-map a {
	left: 26px;
	bottom: 24px;
	padding: 10px 16px;
	color: var(--forest);
	font-weight: 900;
	text-decoration: none;
}

.trip-route-tips {
	display: grid;
	align-content: stretch;
	padding: 20px 26px;
}

.trip-route-tips div {
	display: grid;
	grid-template-columns: 42px 1fr;
	gap: 4px 14px;
	padding: 18px 0;
	border-bottom: 1px solid rgba(75, 33, 25, .13);
}

.trip-route-tips div:last-child {
	border-bottom: 0;
}

.trip-route-tips span {
	grid-row: span 2;
	color: var(--forest);
	font-size: 0;
}

.trip-route-tips span::before {
	width: 24px;
	height: 24px;
}

.trip-route-tips strong {
	color: var(--rosewood);
	font-family: var(--font-heading);
	font-size: 19px;
}

.trip-route-tips p {
	margin: 0;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.45;
}

.trip-grid-three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ─── 404 PAGE ───────────────────────────────────────────────────────── */
.error-main {
	background: var(--cream);
}

.error-hero {
	position: relative;
	height: clamp(420px, 42vw, 620px);
	overflow: hidden;
	background: #2d120e;
}

.error-hero img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 42%;
}

.error-intro {
	display: grid;
	grid-template-columns: minmax(280px, .42fr) minmax(0, .58fr);
	gap: 58px;
	align-items: center;
	width: min(1180px, calc(100% - 48px));
	padding: 28px 0 18px;
}

.error-code {
	position: relative;
	color: var(--rosewood);
	font-family: var(--font-heading);
	font-size: clamp(130px, 14vw, 210px);
	line-height: .8;
	text-align: center;
}

.error-code::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -35px;
	width: 1px;
	height: 90%;
	background:
		linear-gradient(
			to bottom,
			rgba(75, 33, 25, .18) 0,
			rgba(75, 33, 25, .18) calc(50% - 18px),
			transparent calc(50% - 18px),
			transparent calc(50% + 18px),
			rgba(75, 33, 25, .18) calc(50% + 18px),
			rgba(75, 33, 25, .18) 100%
		);
	transform: translateY(-50%);
}

.error-code::before {
	content: "";
	position: absolute;
	top: 50%;
	right: -42px;
	z-index: 1;
	width: 15px;
	height: 19px;
	background: var(--forest);
	clip-path: polygon(50% 0, 78% 34%, 66% 34%, 92% 68%, 68% 68%, 86% 100%, 14% 100%, 32% 68%, 8% 68%, 34% 34%, 22% 34%);
	transform: translateY(-50%);
}

.error-copy h1 {
	margin-bottom: 12px;
	color: var(--rosewood);
	font-family: var(--font-heading);
	font-size: clamp(34px, 3.25vw, 50px);
	line-height: 1.08;
}

.error-copy {
	padding-left: 34px;
}

.error-copy p {
	max-width: 650px;
	font-size: 15px;
	line-height: 1.62;
}

.error-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 18px;
}

.error-actions .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 13px 24px;
	border-radius: 5px;
	font-size: 13px;
}

.error-button-icon,
.error-card-icon {
	--error-icon-mask: none;
	display: inline-block;
	flex: 0 0 auto;
	background: currentColor;
	-webkit-mask: var(--error-icon-mask) center / contain no-repeat;
	mask: var(--error-icon-mask) center / contain no-repeat;
}

.error-button-icon {
	width: 14px;
	height: 14px;
}

.error-card-icon {
	grid-row: 1 / 4;
	width: 31px;
	height: 31px;
	margin: 2px 0 0;
	background: var(--error-icon-image) center / contain no-repeat;
	color: var(--forest);
	-webkit-mask: none;
	mask: none;
}

.error-icon-home {
	--error-icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 5 5 22h5v20h11V30h6v12h11V22h5L24 5Zm0 7.4 10 9V37h-3V26H17v11h-3V21.4l10-9Z'/%3E%3C/svg%3E");
	--error-icon-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23355f43' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 23 24 8l17 15'/%3E%3Cpath d='M12 21v20h24V21'/%3E%3Cpath d='M20 41V29h8v12'/%3E%3C/svg%3E");
}

.error-icon-gallery {
	--error-icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36 8a5 5 0 1 1 0 10 5 5 0 0 1 0-10ZM3 41 17 16l9 14 5-7 14 18H3Zm12-7h12L17 22 9 37l6-3Zm16 3h7l-7-9-3 5 3 4Z'/%3E%3C/svg%3E");
	--error-icon-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23355f43' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 40h38L31 21l-7 10-8-14L5 40Z'/%3E%3Cpath d='M34 8a4 4 0 1 1 0 8 4 4 0 0 1 0-8Z' fill='%23355f43' stroke='none'/%3E%3C/svg%3E");
}

.error-icon-mail {
	--error-icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 11h38v26H5V11Zm19 16 17-12H7l17 12Zm0 5L9 21v12h30V21L24 32Z'/%3E%3C/svg%3E");
	--error-icon-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23355f43' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='6' y='12' width='36' height='25' rx='2'/%3E%3Cpath d='m8 15 16 13 16-13'/%3E%3C/svg%3E");
}

.error-icon-calendar {
	--error-icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 4h5v6h14V4h5v6h7v34H5V10h7V4Zm-2 17v18h28V21H10Zm0-6v2h28v-2H10Zm6 11h5v5h-5v-5Zm11 0h5v5h-5v-5Zm-11 8h5v5h-5v-5Zm11 0h5v5h-5v-5Z'/%3E%3C/svg%3E");
	--error-icon-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23355f43' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='10' width='34' height='32' rx='2'/%3E%3Cpath d='M15 6v8M33 6v8M7 20h34'/%3E%3Cpath d='M17 27h3M28 27h3M17 35h3M28 35h3'/%3E%3C/svg%3E");
}

.error-icon-calendar-check {
	--error-icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 4h5v6h14V4h5v6h7v34H5V10h7V4Zm-2 17v18h28V21H10Zm0-6v2h28v-2H10Zm13 19 10-11 4 4-14 15-8-8 4-4 4 4Z'/%3E%3C/svg%3E");
	--error-icon-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23355f43' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='7' y='10' width='34' height='32' rx='2'/%3E%3Cpath d='M15 6v8M33 6v8M7 20h34'/%3E%3Cpath d='m17 32 5 5 11-13'/%3E%3C/svg%3E");
}

.error-icon-trip {
	--error-icon-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M27 6a5 5 0 1 1-1 9.9A5 5 0 0 1 27 6Zm-6 12h7l5 8 8 3-2 5-9-3-2-3-3 7 8 7-4 4-10-9-4 9-5-2 6-15-6 4-3 7-5-2 4-10 9-6Z'/%3E%3C/svg%3E");
	--error-icon-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 48 48' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%23355f43' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='28' cy='8' r='4' fill='%23355f43' stroke='none'/%3E%3Cpath d='m23 18 8 6 6 1'/%3E%3Cpath d='m22 19-5 9-7 3'/%3E%3Cpath d='m25 25-3 9-7 8'/%3E%3Cpath d='m26 30 8 5 4 7'/%3E%3C/svg%3E");
}

.error-actions .secondary-dark {
	background: rgba(255, 252, 246, .72);
	color: var(--rosewood);
	border-radius: 5px;
	box-shadow: none;
}

.error-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	width: min(1180px, calc(100% - 48px));
	padding: 10px 0 24px;
}

.error-cards article {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	column-gap: 16px;
	align-content: start;
	min-height: 126px;
	padding: 22px 26px;
	border: 1px solid rgba(75, 33, 25, .14);
	border-radius: 8px;
	background: rgba(255, 252, 246, .62);
	box-shadow: 0 12px 30px rgba(75, 33, 25, .055);
}

.error-cards h2 {
	grid-column: 2;
	margin-bottom: 6px;
	color: var(--rosewood);
	font-family: var(--font-heading);
	font-size: 15px;
	line-height: 1.15;
}

.error-cards h3 {
	grid-column: 2;
	margin-bottom: 6px;
	color: var(--rosewood);
	font-family: var(--font-heading);
	font-size: 15px;
	line-height: 1.15;
}

.error-cards p {
	grid-column: 2;
	max-width: 260px;
	margin-bottom: 14px;
	font-size: 11px;
	line-height: 1.45;
}

.error-cards a {
	grid-column: 2;
	color: var(--rosewood);
	font-size: 11px;
	font-weight: 900;
	text-decoration: none;
}

.error-search {
	padding-top: 16px;
}

.section-rule-title {
	display: grid;
	grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
	gap: 18px;
	align-items: center;
	margin: 0 auto 18px;
	color: var(--rosewood);
	text-align: center;
}

.section-rule-title span {
	height: 1px;
	background: rgba(75, 33, 25, .16);
}

.section-rule-title h2 {
	position: relative;
	margin: 0;
	padding-bottom: 20px;
	font-family: var(--font-heading);
	font-size: 22px;
	line-height: 1;
}

.section-rule-title h2::before,
.section-rule-title h2::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}

.section-rule-title h2::before {
	bottom: 7px;
	width: 108px;
	height: 1px;
	background:
		linear-gradient(var(--rosewood), var(--rosewood)) left center / 43px 1px no-repeat,
		linear-gradient(var(--rosewood), var(--rosewood)) right center / 43px 1px no-repeat;
}

.section-rule-title h2::after {
	bottom: -2px;
	width: 14px;
	height: 18px;
	background: var(--forest);
	clip-path: polygon(50% 0, 78% 34%, 66% 34%, 92% 68%, 68% 68%, 86% 100%, 14% 100%, 32% 68%, 8% 68%, 34% 34%, 22% 34%);
}

.error-search .error-cards-secondary {
	width: 100%;
	padding: 0;
}

.error-cards-secondary article {
	min-height: 120px;
	padding: 20px 24px;
}

.error-cards-secondary .error-card-icon {
	width: 31px;
	height: 31px;
}

.error404-page .shared-bottom-cta {
	width: min(1180px, calc(100% - 48px));
	min-height: 190px;
	margin-top: 20px;
	margin-bottom: 22px;
	grid-template-columns: minmax(320px, .38fr) minmax(0, 1fr);
}

.error404-page .shared-bottom-cta img {
	min-height: 190px;
	object-position: center;
}

.error404-page .shared-bottom-cta > div {
	padding: 30px 38px;
}

.error404-page .shared-bottom-cta h2 {
	font-size: clamp(26px, 2.4vw, 34px);
}

.error404-page .shared-bottom-cta p {
	max-width: 620px;
	font-size: 15px;
}

.error404-page .shared-bottom-cta .price-contact {
	display: grid;
	grid-template-columns: repeat(2, max-content);
	gap: 12px 34px;
	padding-top: 8px;
}

.error404-page .shared-bottom-cta .price-contact span:last-child {
	grid-column: 1 / -1;
	align-items: flex-start;
	white-space: normal;
}

.error-bottom-links {
	display: grid;
	grid-template-columns: minmax(0, .98fr) minmax(0, .78fr) minmax(0, 1.14fr);
	gap: 16px;
	width: min(1180px, calc(100% - 48px));
	padding: 0 0 30px;
}

.error-bottom-card {
	position: relative;
	height: 156px;
	min-height: 0;
	overflow: hidden;
	border: 1px solid rgba(75, 33, 25, .12);
	border-radius: 8px;
	background: rgba(255, 252, 246, .74);
	box-shadow: 0 12px 30px rgba(75, 33, 25, .055);
}

.error-bottom-card h2 {
	margin-bottom: 10px;
	color: var(--rosewood);
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: .08em;
	line-height: 1.2;
	text-transform: uppercase;
}

.error-bottom-card p {
	margin-bottom: 11px;
	font-size: 11px;
	line-height: 1.6;
}

.error-bottom-card-map {
	display: grid;
	grid-template-columns: minmax(150px, .48fr) minmax(190px, .52fr);
	background: #f8f0e5;
}

.error-bottom-card-map > div {
	position: relative;
	z-index: 1;
	padding: 22px 22px;
	background: linear-gradient(90deg, rgba(255, 252, 246, .98), rgba(255, 252, 246, .82));
}

.error-bottom-card-map img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 54% center;
}

.error-bottom-card-price {
	position: relative;
	padding: 24px 26px;
	background:
		linear-gradient(180deg, rgba(255, 252, 246, .97), rgba(255, 252, 246, .72)),
		url("assets/images/error-mountains.svg") center bottom / cover no-repeat;
}

.error-bottom-card-price > * {
	position: relative;
	z-index: 1;
}

.error-bottom-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(74px, max-content));
	gap: 8px;
	margin-top: 12px;
	align-items: center;
}

.error-bottom-card .mini-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
	padding: 8px 16px;
	border-radius: 5px;
	font-size: 11px;
	line-height: 1.2;
	white-space: nowrap;
}

.error-bottom-actions .mini-button {
	margin-top: 0;
	min-width: 74px;
}

.error-bottom-card-contact {
	display: block;
	background:
		linear-gradient(90deg, #4b1d14 0%, #3a160f 70%, rgba(58, 22, 15, .9) 100%),
		#3a160f;
	color: var(--white);
}

.error-bottom-card-contact > div {
	position: relative;
	z-index: 2;
	width: calc(100% - 112px);
	padding: 21px 24px;
}

.error-bottom-card-contact h2,
.error-bottom-card-contact p {
	color: var(--white);
}

.error-bottom-card-contact h2 {
	margin-bottom: 8px;
	font-size: 12px;
}

.error-bottom-card-contact p {
	margin-bottom: 7px;
	font-size: 10.5px;
	line-height: 1.42;
}

.error-bottom-card-contact img {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	width: 126px;
	height: 100%;
	object-fit: cover;
	object-position: right center;
	opacity: .92;
}

.error-bottom-card-contact::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	width: 132px;
	height: 58px;
	background: linear-gradient(180deg, rgba(58, 22, 15, .98), rgba(58, 22, 15, .7) 62%, rgba(58, 22, 15, 0));
	pointer-events: none;
}

.error-bottom-contact {
	display: grid;
	gap: 4px;
	margin-top: 5px;
	color: rgba(255, 252, 246, .86) !important;
}

.error-bottom-contact span {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	font-size: 10.5px;
	line-height: 1.35;
}

.error-bottom-contact .contact-mini-icon {
	color: #e4b06f;
}

.error-contact {
	display: grid;
	grid-template-columns: minmax(300px, .75fr) minmax(0, 1fr);
	gap: 42px;
	align-items: center;
	margin-top: 4px;
	margin-bottom: 38px;
	overflow: hidden;
	border-radius: 8px;
	background:
		linear-gradient(90deg, rgba(45, 18, 14, .58), rgba(45, 18, 14, .95)),
		var(--rosewood);
	color: var(--white);
	box-shadow: var(--shadow);
}

.error-contact img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	opacity: .86;
}

.error-contact div {
	padding: 34px 42px 34px 0;
}

.error-contact h2 {
	margin-bottom: 12px;
	color: var(--white);
	font-family: var(--font-heading);
	font-size: clamp(30px, 3vw, 44px);
}

.error-contact p {
	max-width: 620px;
	font-size: 18px;
	line-height: 1.55;
}

/* Compact spacing shared across content pages. */
.intro,
.about-intro,
.price-highlights,
.availability-highlights,
.gallery-intro,
.trips-highlights,
.trip-detail-layout,
.error-intro,
.contact-layout {
	padding-top: 26px;
	padding-bottom: 22px;
}

.ideal,
.rooms,
.amenities,
.activities,
.gallery-strip,
.bottom-cards,
.about-benefits,
.inside,
.season-panels,
.practical,
.about-location,
.price-tables,
.price-notes,
.availability-content,
.gallery-masonry-section,
.favorite-views,
.trips-map-section,
.trip-section,
.contact-map,
.contact-help,
.error-search {
	padding-top: 16px;
	padding-bottom: 18px;
}

.shared-bottom-cta {
	margin-top: 8px;
	margin-bottom: 20px;
}

@media (max-width: 1120px) {
	.brand-design {
		min-width: auto;
	}

	.brand-word {
		font-size: 28px;
	}

	.amenity-grid,
	.activity-tags {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.room-grid,
	.ideal-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.activity-grid,
	.bottom-cards {
		grid-template-columns: 1fr 1fr;
	}

	.about-intro,
	.about-benefits,
	.practical-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-intro-copy {
		grid-column: 1 / -1;
	}

	.season-panels article {
		grid-template-columns: 1fr;
	}

	.about-cta {
		grid-template-columns: 210px minmax(0, 1fr);
	}

	.price-highlights,
	.price-tables,
	.price-notes {
		grid-template-columns: 1fr;
	}

	.availability-content {
		grid-template-columns: 1fr;
	}

	.availability-note {
		position: static;
	}

	.gallery-masonry {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.gallery-tabs {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.contact-layout,
	.contact-help {
		grid-template-columns: 1fr;
	}

	.contact-left {
		grid-template-rows: auto;
	}

	.trip-type-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.trip-grid-six {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.trip-grid-four {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.single-trip-content {
		grid-template-columns: 1fr;
	}

	.trip-quick-facts,
	.trip-practical-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.single-trip-overview,
	.trip-route-grid {
		grid-template-columns: 1fr;
	}

	.trip-expect-grid,
	.trip-detail-gallery,
	.trip-grid-three {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.error-intro,
	.error-contact {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.error-code::after {
		display: none;
	}

	.error-contact div {
		padding: 0 28px 30px;
	}
}

@media (max-width: 860px) {
	.hero-design {
		min-height: 680px;
		padding: 0;
	}

	.hero-design .hero-media {
		background: transparent;
	}

	.hero-design::after {
		background: linear-gradient(180deg, rgba(45, 18, 14, .58) 0%, rgba(45, 18, 14, .42) 42%, rgba(45, 18, 14, .14) 72%, rgba(45, 18, 14, 0) 100%);
	}

	.hero-cottage {
		top: 0;
		right: 0;
		bottom: auto;
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
		transform: none;
		transform-origin: center top;
	}

	.hero-design .hero-inner {
		align-self: end;
		padding-bottom: 92px;
	}

	.hero-cards,
	.intro-grid,
	.bottom-cards,
	.activity-grid {
		grid-template-columns: 1fr;
	}

	.hero-card {
		min-height: 54px;
	}

	.intro-photos {
		grid-template-columns: 1fr;
	}

	.intro-photos img,
	.intro-photos img:first-child {
		height: 220px;
	}

	.gallery-row {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.about-photo-strip {
		grid-template-columns: 1fr;
		height: 360px;
	}

	.about-photo-strip img:not(.about-photo-wide) {
		display: none;
	}

	.about-intro,
	.about-benefits,
	.inside-gallery,
	.season-panels,
	.practical-grid,
	.about-location,
	.about-cta {
		grid-template-columns: 1fr;
	}

	.about-location {
		height: auto;
	}

	.about-intro {
		padding-top: 32px;
	}

	.about-benefits article {
		grid-template-columns: 58px 1fr;
	}

	.section-head-row {
		align-items: start;
		flex-direction: column;
	}

	.season-panels article {
		gap: 16px;
	}

	.location-map,
	.location-map-fallback,
	.location-map iframe {
		height: 240px !important;
		min-height: 240px !important;
	}

	.about-cta {
		padding: 18px;
	}

	.about-cta-contact {
		white-space: normal;
	}

	.price-highlights,
	.price-tables,
	.price-notes,
	.price-cta {
		grid-template-columns: 1fr;
	}

	.price-highlights article,
	.price-info-note {
		grid-template-columns: 64px 1fr;
	}

	.price-table-card {
		overflow-x: auto;
	}

	.price-table-card table {
		min-width: 560px;
	}

	.price-cta > div {
		padding: 0 24px 28px;
	}

	.price-cta img {
		height: 220px;
	}

	.price-page-cta img {
		height: 190px;
	}

	.availability-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gallery-masonry,
	.favorite-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gallery-tile.is-large {
		grid-column: span 2;
	}

	.form-grid,
	.contact-mini-facts {
		grid-template-columns: 1fr;
	}

	.contact-mini-facts div {
		justify-content: flex-start;
		border-right: 0;
		border-bottom: 1px solid rgba(75, 33, 25, .18);
	}

	.contact-mini-facts div:last-child {
		border-bottom: 0;
	}

	.map-badge {
		position: static;
		display: grid;
		width: auto;
		border-radius: 0;
		transform: none;
	}

	.map-badge a {
		margin-left: 0;
		text-align: center;
	}

	.trips-highlights,
	.trip-grid-six,
	.trip-grid-four,
	.trip-type-grid {
		grid-template-columns: 1fr;
	}

	.trip-quick-facts,
	.trip-expect-grid,
	.trip-practical-grid,
	.trip-detail-gallery,
	.trip-grid-three,
	.error-cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.error-bottom-links,
	.error404-page .shared-bottom-cta .price-contact {
		grid-template-columns: 1fr;
	}

	.error-bottom-card-map,
	.error-bottom-card-contact {
		grid-template-columns: 1fr;
	}

	.error-bottom-card-map img,
	.error-bottom-card-contact img {
		min-height: 150px;
	}

	.radius-three {
		width: 520px;
		height: 340px;
	}
}

@media (max-width: 640px) {
	.brand-icon {
		width: 58px;
		height: 38px;
	}

	.brand-word {
		font-size: 24px;
	}

	.hero-design h1 {
		font-size: 40px;
	}

	.hero-cards,
	.ideal-grid,
	.room-grid,
	.amenity-grid,
	.activity-tags {
		grid-template-columns: 1fr;
	}

	.ideal-grid article {
		border-right: 0;
		border-bottom: 1px solid rgba(75, 33, 25, .12);
	}

	.room-card div {
		width: 58%;
	}

	.availability-grid {
		grid-template-columns: 1fr;
	}

	.availability-legend {
		gap: 14px;
	}

	.gallery-tabs,
	.gallery-masonry,
	.favorite-grid {
		grid-template-columns: 1fr;
	}

	.gallery-tile.is-large {
		grid-column: span 1;
		grid-row: span 2;
	}

	.roubenka-lightbox {
		padding: 62px 14px 28px;
	}

	.roubenka-lightbox__image {
		max-height: calc(100vh - 150px);
	}

	.roubenka-lightbox__nav {
		top: auto;
		bottom: 18px;
		width: 46px;
		height: 46px;
		transform: none;
	}

	.contact-card,
	.contact-form-card {
		padding: 24px 20px;
	}

	.contact-line {
		grid-template-columns: 50px 1fr;
	}

	.contact-line strong:not(:first-child) {
		display: none;
	}

	.trips-highlights,
	.trip-grid-six,
	.trip-grid-four,
	.trip-type-grid,
	.trip-quick-facts,
	.trip-expect-grid,
	.trip-practical-grid,
	.trip-detail-gallery,
	.trip-grid-three,
	.error-cards {
		grid-template-columns: 1fr;
	}

	.error-intro {
		padding-top: 38px;
	}

	.error-actions {
		display: grid;
	}

	.trip-first-look div {
		grid-template-columns: 1fr;
		gap: 4px;
	}

	.trip-route-map a {
		position: static;
		display: block;
		margin: 10px 16px;
		transform: none;
	}

	.route-map-overlay {
		position: relative;
		inset: auto;
		padding: 6px 0 12px;
		background: rgba(255, 252, 246, .86);
	}

	.map-start {
		position: relative;
		top: auto;
		left: auto;
		margin: 18px;
	}

	.map-radius {
		display: none;
	}
}
