:root {
	--surface: #f5f3ee;
	--surface-soft: #c8dbbc;
	--surface-card: #ffffff;
	--ink: #1b3a28;
	--muted: #4a6b52;
	--border: #d6ddd0;
	--accent: #2d5e3a;
	--accent-2: #4a8c5e;
	--earth: #a7652e;
	--font-heading: "Playfair Display", Georgia, serif;
	--font-body: Geist, Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-mono: "Geist Mono", "JetBrains Mono", Consolas, monospace;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--surface);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
}

img,
svg {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration-thickness: .08em;
	text-underline-offset: .18em;
}

h1,
h2,
h3 {
	margin: 0;
	color: inherit;
	font-family: var(--font-heading);
	font-weight: 650;
	line-height: 1.08;
}

h1 {
	font-size: clamp(3rem, 7vw, 5.2rem);
	letter-spacing: -.04em;
}

h2 {
	font-size: clamp(2.5rem, 5vw, 3.7rem);
	letter-spacing: -.035em;
}

h3 {
	font-size: clamp(1.7rem, 3vw, 2.2rem);
	letter-spacing: -.025em;
}

p {
	margin: 0;
}

.container {
	width: min(100% - 40px, 1200px);
	margin-inline: auto;
}

.container--narrow {
	width: min(100% - 40px, 860px);
}

.section {
	padding-block: clamp(72px, 9vw, 116px);
}

.section--dark {
	background: var(--ink);
	color: var(--surface);
}

.eyebrow {
	color: var(--accent-2);
	font-family: var(--font-mono);
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.btn,
.header-cta,
.search-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 24px;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: var(--font-mono);
	font-size: .92rem;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
	transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.btn:hover,
.header-cta:hover,
.search-form__submit:hover {
	transform: translateY(-2px);
}

.btn--primary,
.header-cta,
.search-form__submit {
	background: var(--accent);
	color: var(--surface);
}

.btn--secondary {
	background: var(--surface);
	border-color: var(--border);
	color: var(--ink);
}

.btn--light {
	background: var(--surface);
	color: var(--ink);
}

.site-header {
	position: sticky;
	z-index: 50;
	top: 0;
	background: color-mix(in srgb, var(--surface) 92%, transparent);
	border-bottom: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
	backdrop-filter: blur(18px);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 88px;
	gap: 24px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--accent);
	font-family: var(--font-mono);
	font-weight: 800;
	text-decoration: none;
}

.site-brand__text {
	color: var(--ink);
}

.primary-nav__list,
.footer-nav__list {
	display: flex;
	align-items: center;
	gap: 34px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav a,
.footer-nav a {
	color: var(--muted);
	font-size: .95rem;
	text-decoration: none;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: var(--surface);
	color: var(--ink);
}

.menu-toggle__line,
.menu-toggle__line::before,
.menu-toggle__line::after {
	display: block;
	width: 18px;
	height: 2px;
	margin: auto;
	background: currentColor;
	content: "";
}

.menu-toggle__line::before {
	transform: translateY(-6px);
}

.menu-toggle__line::after {
	transform: translateY(4px);
}

.hero {
	padding-top: clamp(56px, 7vw, 86px);
	text-align: center;
}

.hero__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
}

.hero__lead {
	max-width: 830px;
	color: var(--muted);
	font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}

.hero__visual {
	position: relative;
	width: 100%;
	min-height: clamp(440px, 45vw, 520px);
	margin-top: 18px;
	overflow: hidden;
	border-radius: 28px;
	background: var(--surface-soft);
	isolation: isolate;
}

.hero__photo,
.about__photo,
.stay-card__image {
	background-position: center;
	background-size: cover;
}

.rich-scene {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
	background: #0f2027; /* Fallback */
}

.rich-belukha-svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.animated-stars {
	animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle {
	0% { opacity: 0.4; }
	100% { opacity: 1; filter: drop-shadow(0 0 5px #fff); }
}

.animated-moon {
	animation: moon-rise 20s ease-out forwards, moon-pulse 6s ease-in-out infinite alternate 20s;
}

@keyframes moon-rise {
	0% { transform: translateY(200px); opacity: 0; }
	100% { transform: translateY(0); opacity: 1; }
}

@keyframes moon-pulse {
	0% { filter: drop-shadow(0 0 20px rgba(253, 251, 251, 0.4)); }
	100% { filter: drop-shadow(0 0 40px rgba(253, 251, 251, 0.8)); }
}

.parallax-back {
	animation: pan-back 40s linear infinite alternate;
}

@keyframes pan-back {
	0% { transform: translateX(-2%); }
	100% { transform: translateX(2%); }
}

.parallax-front {
	animation: pan-front 25s linear infinite alternate;
}

@keyframes pan-front {
	0% { transform: translateX(-3%); }
	100% { transform: translateX(3%); }
}

.animated-river-rich {
	animation: flow-rich 15s linear infinite;
}

.animated-river-rich.flow-fast {
	animation: flow-rich 8s linear infinite reverse;
}

@keyframes flow-rich {
	to { stroke-dashoffset: -200; }
}

.animated-bird {
	animation: fly-bird 20s linear infinite;
}

.bird-1 {
	transform: translate(-100px, 200px) scale(1.5);
}

.bird-2 {
	transform: translate(-100px, 250px) scale(1.2);
	animation-delay: 4s;
	animation-duration: 25s;
}

@keyframes fly-bird {
	0% { transform: translate(-100px, 300px) scale(1.5); opacity: 0; }
	10% { opacity: 0.8; }
	90% { opacity: 0.8; }
	100% { transform: translate(1300px, 100px) scale(1); opacity: 0; }
}

.hero__badge {
	position: absolute;
	left: clamp(22px, 5vw, 64px);
	bottom: clamp(22px, 5vw, 58px);
	display: grid;
	gap: 5px;
	max-width: 310px;
	padding: 18px 22px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid rgba(255, 255, 255, 0.25);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	text-align: left;
	color: #fff;
}

.hero__badge strong {
	color: #fff;
}

.hero__badge span {
	color: #e4eede;
}

.hero__badge span,
.stay-card span,
.tour-card span,
.floating-card span {
	color: var(--accent-2);
	font-family: var(--font-mono);
	font-size: .78rem;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.route-map path {
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.stats {
	padding-top: 0;
}

.stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	border-block: 1px solid var(--border);
}

.stat {
	display: grid;
	gap: 8px;
	padding: 28px 30px;
	border-right: 1px solid var(--border);
}

.stat:last-child {
	border-right: 0;
}

.stat strong {
	font-family: var(--font-mono);
	font-size: 2.1rem;
	line-height: 1;
}

.stat span {
	color: var(--muted);
}

.split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
	align-items: center;
	gap: clamp(40px, 6vw, 72px);
}

.split__content {
	display: grid;
	gap: 24px;
}

.split__content p:not(.eyebrow) {
	color: var(--muted);
	font-size: 1.08rem;
}

.section--dark .split__content p:not(.eyebrow),
.section--dark .section-heading p {
	color: var(--surface-soft);
}

.check-list {
	display: grid;
	gap: 12px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.check-list li::before {
	margin-right: 8px;
	color: var(--accent);
	content: "•";
}

.about__photo {
	position: relative;
	min-height: 560px;
	overflow: hidden;
	border-radius: 28px;
	background-color: #E0F7FA;
}

.about-animation-container {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.rich-about-svg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.animated-sun-about {
	animation: pulse-sun-about 6s ease-in-out infinite alternate;
}

@keyframes pulse-sun-about {
	0% { transform: scale(0.95); opacity: 0.9; }
	100% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 25px #FFD700); }
}

.animated-clouds-about {
	animation: drift-clouds-about 40s linear infinite;
}

@keyframes drift-clouds-about {
	0% { transform: translateX(-200px); }
	100% { transform: translateX(800px); }
}

.parallax-mountains {
	animation: float-mountains 20s ease-in-out infinite alternate;
}

@keyframes float-mountains {
	0% { transform: translateY(0); }
	100% { transform: translateY(-10px); }
}

.animated-river-flow {
	animation: river-flow 10s linear infinite;
}

@keyframes river-flow {
	to { stroke-dashoffset: -60; }
}

.animated-window-about {
	animation: window-flicker 4s infinite alternate;
}

@keyframes window-flicker {
	0%, 100% { opacity: 0.8; }
	50% { opacity: 1; filter: drop-shadow(0 0 8px #FFF59D); }
}

.animated-smoke-about {
	stroke-dasharray: 15 15;
	animation: rise-smoke 3s linear infinite;
}

@keyframes rise-smoke {
	0% { stroke-dashoffset: 30; opacity: 0.8; transform: translateY(0); }
	100% { stroke-dashoffset: 0; opacity: 0; transform: translateY(-15px); }
}

.animated-tree-about {
	transform-origin: center bottom;
	animation: sway-tree-about 4s ease-in-out infinite alternate;
}

@keyframes sway-tree-about {
	0% { transform: rotate(-2deg); }
	100% { transform: rotate(2deg); }
}

.animated-tourist-group {
	animation: walk-tourist-group 25s linear infinite;
}

@keyframes walk-tourist-group {
	0% { transform: translate(-150px, 520px); }
	100% { transform: translate(950px, 520px); }
}

.leg-l {
	transform-origin: 0 40px;
	animation: walk-leg-l 1s infinite alternate;
}

.leg-r {
	transform-origin: 0 40px;
	animation: walk-leg-r 1s infinite alternate;
}

@keyframes walk-leg-l {
	0% { transform: rotate(-30deg); }
	100% { transform: rotate(30deg); }
}

@keyframes walk-leg-r {
	0% { transform: rotate(30deg); }
	100% { transform: rotate(-30deg); }
}

.stick-move {
	transform-origin: top center;
	animation: move-stick 1s infinite alternate;
}

@keyframes move-stick {
	0% { transform: rotate(-20deg) translateY(-5px); }
	100% { transform: rotate(20deg) translateY(5px); }
}

.arm-wave-about {
	transform-origin: 0 25px;
	animation: wave-arm-about 0.5s infinite alternate;
}

@keyframes wave-arm-about {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(-30deg); }
}

.floating-card {
	z-index: 10;
	position: absolute;
	right: 32px;
	bottom: 32px;
	display: grid;
	gap: 8px;
	max-width: 360px;
	padding: 22px 24px;
	border-radius: 18px;
	background: rgba(245, 243, 238, .92);
}

.section-heading {
	margin-bottom: 40px;
}

.section-heading--split {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 430px;
	align-items: end;
	gap: 60px;
}

.section-heading--center {
	display: grid;
	justify-items: center;
	gap: 14px;
	text-align: center;
}

.section-heading p {
	color: var(--muted);
	font-size: 1.05rem;
}

.cards--three {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.stay-card,
.service-card,
.tour-card,
.contact-card,
.route-map,
.post-card {
	border: 1px solid var(--border);
	border-radius: 24px;
	background: var(--surface-card);
	color: var(--ink);
}

.stay-card {
	overflow: hidden;
}

.stay-card__image {
	min-height: 190px;
	overflow: hidden;
	position: relative;
}

.stay-card__image--portal {
	background-image:
		linear-gradient(180deg, rgba(27, 58, 40, .08), rgba(27, 58, 40, .22)),
		url("https://static.tildacdn.com/tild3563-3162-4061-b037-393034303363/IMAGE_2023-02-01_184.jpg");
}

.stay-card__image--with-photo::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(27, 58, 40, .08), rgba(27, 58, 40, .22));
	pointer-events: none;
	z-index: 1;
}

.stay-card__image--with-photo img {
	position: relative;
	z-index: 0;
	width: 100%;
	min-height: 220px;
	object-fit: cover;
	display: block;
}

.stay-card__body {
	display: grid;
	gap: 12px;
	padding: 28px;
}

.stay-card p,
.service-card p,
.tour-card p,
.post-card p,
.post-card__excerpt {
	color: var(--muted);
}

.stay-card small {
	font-family: var(--font-mono);
	font-weight: 700;
}

.service-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
}

.service-card {
	display: grid;
	gap: 16px;
	padding: 32px;
}

.service-card .icon {
	color: var(--accent);
}

.tours {
	background: var(--surface-soft);
}

.tour-card {
	display: grid;
	align-content: space-between;
	min-height: 360px;
	gap: 20px;
	padding: 32px;
}

.tour-card a {
	justify-self: start;
	padding: 10px 18px;
	border-radius: 999px;
	background: var(--accent);
	color: var(--surface);
	font-family: var(--font-mono);
	font-size: .85rem;
	font-weight: 700;
	text-decoration: none;
}

.tour-card--featured {
	background: var(--ink);
	color: var(--surface);
}

.tour-card--featured p {
	color: var(--surface-soft);
}

.tour-card--featured a {
	background: var(--surface);
	color: var(--ink);
}

.route-map {
	position: relative;
	min-height: 560px;
	padding: 34px;
	overflow: hidden;
}

.route-map p {
	max-width: 340px;
	color: var(--muted);
}

.route-map svg {
	position: absolute;
	left: 0;
	bottom: 40px;
	width: 100%;
}

.route-map__line {
	stroke: var(--accent);
	stroke-width: 4;
	stroke-dasharray: 10 12;
	animation: route-dash 8s linear infinite;
}

.route-map circle {
	fill: var(--accent);
}

.timeline {
	display: grid;
	gap: 0;
	margin: 8px 0 0;
	padding: 0;
	border-top: 1px solid var(--border);
	list-style-position: inside;
}

.timeline li {
	padding: 20px 0;
	border-bottom: 1px solid var(--border);
	font-size: 1.05rem;
}

.booking-module {
	display: grid;
	gap: 18px;
	padding: 34px;
	border: 1px solid color-mix(in srgb, var(--surface-soft) 35%, transparent);
	border-radius: 28px;
	background: color-mix(in srgb, var(--surface) 96%, transparent);
	box-shadow: 0 28px 80px rgba(0, 0, 0, .18);
	color: var(--ink);
}

.booking-module__header {
	display: grid;
	gap: 8px;
}

.booking-module__header strong {
	font-family: var(--font-heading);
	font-size: clamp(2rem, 4vw, 2.8rem);
	line-height: 1.05;
}

.booking-module__header span {
	color: var(--muted);
}

.booking-module__frame {
	position: relative;
	overflow: hidden;
	min-height: 620px;
	padding-bottom: 30px;
	border: 1px solid var(--border);
	border-radius: 22px;
	background: var(--surface-card);
}

.booking-module__bnovo {
	min-height: 620px;
}

.booking-module__noscript {
	margin: 0;
	padding: 24px;
	font-size: 1rem;
	line-height: 1.5;
	color: var(--muted);
}

.booking-module__frame iframe {
	display: block;
	width: 100%;
	min-height: 620px;
	border: 0;
}

.booking-module__placeholder {
	display: grid;
	place-items: center;
	gap: 12px;
	min-height: 360px;
	padding: 32px;
	border: 1px dashed color-mix(in srgb, var(--accent) 45%, var(--border));
	border-radius: 22px;
	background:
		linear-gradient(135deg, rgba(45, 94, 58, .08), rgba(74, 140, 94, .13)),
		var(--surface-card);
	text-align: center;
}

.booking-module__placeholder strong {
	font-family: var(--font-heading);
	font-size: 1.8rem;
	line-height: 1.1;
}

.booking-module__placeholder p {
	max-width: 460px;
	color: var(--muted);
}

.booking-module__contacts {
	display: grid;
	gap: 8px;
	margin: 0;
	font-style: normal;
}

.booking-module__contacts span,
.booking-module__contacts a {
	color: var(--muted);
}

.site-footer {
	padding-block: 28px;
	border-top: 1px solid var(--border);
}

.site-footer__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.site-footer__brand {
	display: grid;
	gap: 4px;
}

.site-footer__brand span {
	color: var(--muted);
	font-size: .9rem;
}

.content-page {
	padding-block: 70px 110px;
}

.page-header,
.entry__header {
	margin-bottom: 34px;
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 24px;
	color: var(--muted);
	font-family: var(--font-mono);
	font-size: .85rem;
}

.post-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
}

.post-card {
	overflow: hidden;
}

.post-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	background: var(--surface-soft);
}

.post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.post-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #d6ddd0, #8ca979);
}

.post-card__body {
	display: grid;
	gap: 12px;
	padding: 24px;
}

.post-card__meta,
.entry__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	color: var(--muted);
	font-family: var(--font-mono);
	font-size: .82rem;
}

.entry-content > * + * {
	margin-top: 1.2em;
}

.entry__thumbnail img {
	width: 100%;
	height: auto;
	border-radius: 24px;
}

.search-form {
	display: flex;
	gap: 10px;
	margin-top: 24px;
}

.search-form__field {
	min-height: 48px;
	width: 100%;
	border: 1px solid var(--border);
	border-radius: 999px;
	padding: 0 18px;
	background: var(--surface-card);
	color: var(--ink);
	font: inherit;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	z-index: 100000;
	top: 10px;
	left: 10px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	border-radius: 8px;
	background: var(--ink);
	color: var(--surface);
}

:focus-visible {
	outline: 3px solid var(--earth);
	outline-offset: 4px;
}

@keyframes route-dash {
	to {
		stroke-dashoffset: -120;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
}

.tour-anim-container {
	width: 120px;
	height: 120px;
	margin-bottom: 24px;
	align-self: flex-start;
}

.lottie-like-svg {
	width: 100%;
	height: 100%;
	overflow: visible;
}

/* Tour 1: Campfire */
.anim-stars-tour {
	animation: twinkle-tour 3s ease-in-out infinite alternate;
}
@keyframes twinkle-tour {
	0% { opacity: 0.2; }
	100% { opacity: 1; filter: drop-shadow(0 0 3px #fff); }
}
.anim-moon-tour {
	animation: float-moon 6s ease-in-out infinite alternate;
}
@keyframes float-moon {
	0% { transform: translateY(0); filter: drop-shadow(0 0 5px #fde047); }
	100% { transform: translateY(-4px); filter: drop-shadow(0 0 10px #fde047); }
}
.anim-tent-glow {
	animation: pulse-tent 2s ease-in-out infinite alternate;
}
@keyframes pulse-tent {
	0% { opacity: 0.5; }
	100% { opacity: 1; filter: drop-shadow(0 0 8px #fbbf24); }
}
.anim-flame-tour {
	transform-origin: center bottom;
	animation: flicker-flame 1.5s ease-in-out infinite alternate;
}
.anim-flame-inner-tour {
	transform-origin: center bottom;
	animation: flicker-flame 1s ease-in-out infinite alternate-reverse;
}
@keyframes flicker-flame {
	0% { transform: scale(1, 1) skewX(0); filter: drop-shadow(0 0 4px #f97316); }
	50% { transform: scale(0.9, 1.2) skewX(5deg); filter: drop-shadow(0 0 10px #f97316); }
	100% { transform: scale(1.1, 0.9) skewX(-5deg); filter: drop-shadow(0 0 6px #f97316); }
}

/* Tour 2: Uimon Valley */
.anim-valley-sun {
	animation: valley-sun-glow 5s ease-in-out infinite alternate;
	transform-origin: 88px 30px;
}

@keyframes valley-sun-glow {
	0% { transform: scale(.95); filter: drop-shadow(0 0 4px rgba(250, 204, 21, .35)); }
	100% { transform: scale(1.08); filter: drop-shadow(0 0 12px rgba(250, 204, 21, .8)); }
}

.anim-valley-clouds {
	animation: valley-cloud-drift 18s linear infinite alternate;
}

@keyframes valley-cloud-drift {
	0% { transform: translateX(-7px); }
	100% { transform: translateX(7px); }
}

.anim-valley-mountains {
	animation: valley-mountain-breathe 8s ease-in-out infinite alternate;
	transform-origin: center bottom;
}

@keyframes valley-mountain-breathe {
	0% { transform: translateY(0); }
	100% { transform: translateY(-3px); }
}

.anim-valley-river {
	animation: valley-river-pulse 4s ease-in-out infinite alternate;
}

@keyframes valley-river-pulse {
	0% { stroke-width: 8; opacity: .78; }
	100% { stroke-width: 10; opacity: 1; }
}

.anim-valley-river-glint,
.anim-valley-trail {
	animation: valley-dash-flow 5s linear infinite;
}

@keyframes valley-dash-flow {
	to { stroke-dashoffset: -80; }
}

.anim-valley-hiker {
	animation: valley-hiker-walk 7s ease-in-out infinite;
	offset-path: path("M21 83 C35 75 45 82 55 75 C67 67 77 60 97 62");
	offset-rotate: 0deg;
}

@keyframes valley-hiker-walk {
	0% { offset-distance: 0%; transform: scale(.78); }
	50% { offset-distance: 100%; transform: scale(.88); }
	100% { offset-distance: 0%; transform: scale(.78); }
}

.anim-valley-arm,
.anim-valley-leg-left,
.anim-valley-leg-right {
	transform-origin: 0 0;
	animation: valley-limb-swing .7s ease-in-out infinite alternate;
}

.anim-valley-leg-right {
	animation-direction: alternate-reverse;
}

@keyframes valley-limb-swing {
	0% { transform: rotate(-12deg); }
	100% { transform: rotate(12deg); }
}

/* Tour 3: Zen Lotus */
.anim-petal-1, .anim-petal-2 {
	transform-origin: bottom center;
	animation: breathe-petal-back 6s ease-in-out infinite;
}
@keyframes breathe-petal-back {
	0%, 100% { transform: rotate(0); }
	50% { transform: rotate(15deg); }
}
.anim-petal-2 {
	animation: breathe-petal-back-2 6s ease-in-out infinite;
}
@keyframes breathe-petal-back-2 {
	0%, 100% { transform: rotate(0); }
	50% { transform: rotate(-15deg); }
}
.anim-petal-3 {
	transform-origin: bottom center;
	animation: breathe-petal-mid 6s ease-in-out infinite;
}
@keyframes breathe-petal-mid {
	0%, 100% { transform: scaleY(1); }
	50% { transform: scaleY(1.15); filter: drop-shadow(0 0 10px #d946ef); }
}
.anim-petal-4, .anim-petal-5 {
	transform-origin: bottom center;
	animation: breathe-petal-front 6s ease-in-out infinite;
}
@keyframes breathe-petal-front {
	0%, 100% { transform: rotate(0); }
	50% { transform: rotate(10deg); }
}
.anim-petal-5 {
	animation: breathe-petal-front-2 6s ease-in-out infinite;
}
@keyframes breathe-petal-front-2 {
	0%, 100% { transform: rotate(0); }
	50% { transform: rotate(-10deg); }
}
.anim-zen-dot {
	animation: pulse-tent 3s ease-in-out infinite alternate;
}
.anim-ripple-tour {
	transform-origin: center;
	animation: ripple-zen 6s ease-out infinite;
}
.r2 {
	animation-delay: 3s;
}
@keyframes ripple-zen {
	0% { transform: scale(0.5); opacity: 0; }
	20% { opacity: 0.8; }
	100% { transform: scale(2); opacity: 0; }
}

@media (max-width: 980px) {
	.site-header__inner {
		min-height: 74px;
	}

	.menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.primary-nav {
		position: absolute;
		top: 74px;
		left: 20px;
		right: 20px;
		display: none;
		padding: 18px;
		border: 1px solid var(--border);
		border-radius: 20px;
		background: var(--surface);
		box-shadow: 0 20px 50px rgba(27, 58, 40, .12);
	}

	.primary-nav.is-open {
		display: block;
	}

	.primary-nav__list {
		align-items: stretch;
		flex-direction: column;
		gap: 12px;
	}

	.header-cta {
		display: none;
	}

	.stats__grid,
	.cards--three,
	.service-grid,
	.split,
	.section-heading--split {
		grid-template-columns: 1fr;
	}

	.stat {
		border-right: 0;
		border-bottom: 1px solid var(--border);
	}

	.hero__badge {
		top: 24px;
		bottom: auto;
	}
}

@media (max-width: 640px) {
	.container {
		width: min(100% - 28px, 1200px);
	}

	.section {
		padding-block: 58px;
	}

	.hero__visual,
	.about__photo,
	.route-map {
		min-height: 460px;
	}

	.hero__actions,
	.search-form,
	.site-footer__inner {
		align-items: stretch;
		flex-direction: column;
	}

}
