/* =========================================================
   OMAR KHAYYAM HOTEL — editorial caravanserai
   Earthy palette · Fraunces + Plus Jakarta Sans + JetBrains Mono
   ========================================================= */

/* ---------- reset ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}
html,
body {
	margin: 0;
	padding: 0;
}
body {
	min-height: 100dvh;
}
img,
svg,
iframe {
	display: block;
	max-width: 100%;
}
img {
	height: auto;
}
a {
	color: inherit;
	text-decoration: none;
}
button {
	font: inherit;
	color: inherit;
	background: none;
	border: 0;
	padding: 0;
	cursor: pointer;
}
input,
select,
textarea {
	font: inherit;
	color: inherit;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
h1,
h2,
h3,
h4,
p,
figure {
	margin: 0;
}

/* ---------- variables ---------- */
:root {
	--paper: #fbf6e8;
	--paper_soft: #f5eed9;
	--paper_warm: #efe5c8;
	--paper_deep: #e2d2af;
	--ink: #3a2a1b;
	--ink_med: #6e5740;
	--ink_soft: #a08966;
	--rule: #e5d7b6;
	--rule_strong: #cab48a;
	--accent: #b8782a;
	--accent_dark: #946022;
	--accent_soft: rgba(184, 120, 42, 0.1);
	--tile: #3b5577;

	--font_display: "Fraunces", "Cormorant Garamond", "Georgia", serif;
	--font_body: "Plus Jakarta Sans", "Helvetica Neue", system-ui, sans-serif;
	--font_mono: "JetBrains Mono", "Courier New", monospace;

	--max_w: 1280px;
	--hairline: 1px solid var(--rule);
	--hairline_strong: 1px solid var(--rule_strong);
}

/* ---------- base ---------- */
html {
	-webkit-text-size-adjust: 100%;
}
body {
	background: var(--paper);
	color: var(--ink);
	font-family: var(--font_body);
	font-size: 16px;
	line-height: 1.6;
	font-weight: 400;
	letter-spacing: 0.005em;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	background-image:
		radial-gradient(circle at 18% 10%, rgba(180, 116, 34, 0.035), transparent 55%),
		radial-gradient(circle at 88% 82%, rgba(59, 85, 119, 0.025), transparent 55%);
}

::selection {
	background: var(--accent);
	color: var(--paper);
}

/* container */
[class$="_inner"] {
	position: relative;
	z-index: 2;
	max-width: var(--max_w);
	margin: 0 auto;
	padding: 0 32px;
}

/* ---------- typography primitives ---------- */
.room_category,
.contact_label,
.footer_col_title {
	font-family: var(--font_mono);
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink_soft);
}

h1,
h2,
h3,
.lead_heading,
.intro_title,
.features_heading,
.rooms_heading,
.contact_heading,
.room_name,
.feature_title {
	font-family: var(--font_display);
	font-weight: 400;
	letter-spacing: -0.018em;
	color: var(--ink);
	font-variation-settings:
		"opsz" 144,
		"SOFT" 50;
}

em {
	font-style: italic;
	font-variation-settings:
		"opsz" 144,
		"SOFT" 100;
	color: var(--accent_dark);
}

/* ---------- section_marker (the numbered rule under each heading) ---------- */
.section_marker {
	display: flex;
	align-items: center;
	padding-bottom: 12px;
	margin-bottom: 22px;
}
.section_marker > * + * {
	margin-left: 16px;
}
.marker_num {
	font-family: var(--font_display);
	font-style: italic;
	font-size: 22px;
	color: var(--accent);
	font-variation-settings:
		"opsz" 144,
		"SOFT" 100;
	line-height: 1;
}
.marker_rule {
	flex: 1;
	height: 1px;
	background: var(--rule);
	display: block;
}

/* =========================================================
   HEADER
   ========================================================= */
.site_header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(248, 241, 223, 0.82);
	backdrop-filter: blur(12px) saturate(115%);
	-webkit-backdrop-filter: blur(12px) saturate(115%);
	border-bottom: var(--hairline);
}
.site_header_inner {
	display: flex;
	align-items: center;
	min-height: 52px;
	padding-top: 6px;
	padding-bottom: 6px;
}
.site_header_inner > * + * {
	margin-left: 32px;
}

.site_logo {
	flex-shrink: 0;
}
.site_logo img {
	width: 60px;
	height: auto;
}

.main_nav {
	flex: 1;
}
.main_nav_list {
	display: flex;
	align-items: center;
	justify-content: center;
}
.main_nav_list > * + * {
	margin-left: 32px;
}
.main_nav_link {
	font-family: var(--font_body);
	font-size: 14px;
	font-weight: 500;
	color: var(--ink_med);
	position: relative;
	padding: 6px 2px;
	transition: color 0.25s ease;
}
.main_nav_link::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	height: 1px;
	width: 0;
	background: var(--accent);
	transition:
		width 0.3s ease,
		left 0.3s ease;
}
.main_nav_link:hover {
	color: var(--ink);
}
.main_nav_link:hover::after {
	width: 100%;
	left: 0;
}
.main_nav_link.is_active {
	color: var(--ink);
}
.main_nav_link.is_active::after {
	width: 14px;
	left: calc(50% - 7px);
}

.header_meta {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}
.header_meta > * + * {
	margin-left: 18px;
}
.lang_switch {
	position: relative;
	display: inline-flex;
}

.lang_switch_current {
	display: inline-flex;
	align-items: center;
	padding: 8px 4px;
	background: none;
	border: 0;
	font-family: var(--font_mono);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink_med);
	cursor: pointer;
	transition: color 0.25s ease;
}
.lang_switch_current > * + * {
	margin-left: 7px;
}
.lang_switch_current svg {
	transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.lang_switch:hover .lang_switch_current,
.lang_switch:focus-within .lang_switch_current {
	color: var(--ink);
}
.lang_switch:hover .lang_switch_current svg,
.lang_switch:focus-within .lang_switch_current svg {
	transform: rotate(180deg);
}

.lang_switch_list {
	position: absolute;
	top: calc(100% + 6px);
	left: 50%;
	min-width: 88px;
	margin: 0;
	padding: 6px;
	background: var(--paper);
	border: 1px solid var(--rule);
	border-radius: 12px;
	box-shadow: 0 14px 32px rgba(58, 42, 27, 0.14), 0 2px 6px rgba(58, 42, 27, 0.06);
	opacity: 0;
	visibility: hidden;
	transform: translate(-50%, -6px);
	transition: opacity 0.25s ease, transform 0.25s cubic-bezier(0.7, 0, 0.2, 1), visibility 0.25s ease;
	z-index: 30;
}
.lang_switch_list::before {
	content: "";
	position: absolute;
	top: -10px;
	left: 0;
	right: 0;
	height: 12px;
}
.lang_switch:hover .lang_switch_list,
.lang_switch:focus-within .lang_switch_list {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.lang_switch_list li + li {
	margin-top: 2px;
}

.lang_switch_list a {
	display: block;
	padding: 8px 16px;
	border-radius: 8px;
	font-family: var(--font_mono);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink_med);
	text-align: center;
	text-decoration: none;
	transition: color 0.2s ease, background-color 0.2s ease;
}
.lang_switch_list a:hover,
.lang_switch_list a:focus-visible {
	color: var(--accent_dark);
	background-color: var(--accent_soft);
	outline: 0;
}

.header_cta {
	display: inline-block;
	padding: 10px 20px;
	border: 1px solid var(--rule_strong);
	border-radius: 15px;
	font-family: var(--font_mono);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink_med);
	position: relative;
	overflow: hidden;
	transition:
		color 0.3s ease,
		border-color 0.3s ease;
	z-index: 0;
}
.header_cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--accent);
	transform: translateY(101%);
	transition: transform 0.35s cubic-bezier(0.7, 0, 0.2, 1);
	z-index: -1;
}
.header_cta:hover {
	color: var(--paper);
	border-color: var(--accent);
}
.header_cta:hover::before {
	transform: translateY(0);
}

.burger {
	display: none;
	width: 36px;
	height: 36px;
	padding: 8px;
	position: relative;
}
.burger span {
	display: block;
	height: 1.5px;
	width: 100%;
	background: var(--ink);
	transition:
		transform 0.3s ease,
		opacity 0.2s ease;
}
.burger span + span {
	margin-top: 5px;
}
.burger.is_open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}
.burger.is_open span:nth-child(2) {
	opacity: 0;
}
.burger.is_open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* =========================================================
   HERO
   ========================================================= */
.hero_section {
	position: relative;
	min-height: calc(100dvh - 73px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	overflow: hidden;
}
.hero_bg_video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.hero_section_inner {
	display: block;
	padding-top: 48px;
	padding-bottom: 48px;
}

/* masthead */
.hero_masthead > * + * {
	margin-top: 16px;
}

.hero_above_card {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

.hero_card {
	display: block;
}

/* color overrides for video background */
.hero_section .btn_ghost {
	color: #fff;
	border-color: rgba(255, 255, 255, 0.6);
}
.hero_section .btn_ghost:hover {
	background: #fff;
	color: var(--ink);
}
.hero_section .stat_num {
	color: #fff;
}
.hero_section .stat_num i {
	color: rgba(255, 255, 255, 0.6);
}
.hero_section .stat_label {
	color: rgba(255, 255, 255, 0.55);
}
.hero_section .hero_stats > * + * {
	border-left-color: rgba(255, 255, 255, 0.2);
}

.hero_cta_row {
	display: flex;
	align-items: center;
	animation: rise 0.9s 0.4s both cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero_cta_row > * + * {
	margin-left: 14px;
}

/* buttons */
.btn {
	display: inline-flex;
	align-items: center;
	font-family: var(--font_mono);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 16px 28px;
	border-radius: 15px;
	position: relative;
	overflow: hidden;
	transition:
		color 0.3s ease,
		border-color 0.3s ease;
	border: 1px solid transparent;
}
.btn > * + * {
	margin-left: 10px;
}
.btn_arrow {
	font-style: normal;
	transition: transform 0.3s ease;
}

.btn_primary {
	background: var(--ink);
	color: var(--paper);
}
.btn_primary::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--accent);
	transform: translateY(101%);
	transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
	z-index: 0;
}
.btn_primary > span,
.btn_primary > i {
	position: relative;
	z-index: 1;
}
.btn_primary:hover::before {
	transform: translateY(0);
}
.btn_primary:hover .btn_arrow {
	transform: translateX(4px);
}

.btn_ghost {
	color: var(--ink);
	border-color: var(--ink);
}
.btn_ghost:hover {
	background: var(--ink);
	color: var(--paper);
}

/* stats */
.hero_stats {
	display: flex;
	animation: rise 0.9s 0.55s both cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero_stats > * + * {
	margin-left: 40px;
	padding-left: 40px;
	border-left: var(--hairline);
}
.hero_stats li {
	display: flex;
	align-items: flex-end;
}
.hero_stats li > * + * {
	margin-left: 12px;
}
.stat_num {
	font-family: var(--font_display);
	font-size: 38px;
	line-height: 0.9;
	font-weight: 400;
	font-variation-settings:
		"opsz" 144,
		"SOFT" 50;
	color: var(--ink);
}
.stat_num i {
	font-style: italic;
	font-size: 18px;
	color: var(--ink_soft);
	margin-left: 2px;
	font-variation-settings:
		"opsz" 24,
		"SOFT" 100;
}
.stat_label {
	font-family: var(--font_mono);
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink_soft);
	line-height: 1.4;
}

/* =========================================================
   INTRO — headline strip below the hero
   ========================================================= */
.intro_section {
	position: relative;
	padding-top: 96px;
	padding-bottom: 96px;
}
.intro_section_inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.intro_section_inner > * + * {
	margin-left: 48px;
}

.intro_title {
	font-size: clamp(44px, 5.6vw, 88px);
	line-height: 0.98;
	letter-spacing: -0.025em;
	font-weight: 400;
	font-variation-settings:
		"opsz" 144,
		"SOFT" 40;
	animation: rise 0.9s 0.1s both cubic-bezier(0.2, 0.8, 0.2, 1);
}
.intro_title_row {
	display: block;
}
.intro_title em {
	position: relative;
}
.intro_title em::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 6%;
	height: 4px;
	background: rgba(180, 116, 34, 0.14);
	z-index: -1;
}

.intro_lead {
	font-size: 17px;
	line-height: 1.65;
	color: var(--ink_med);
	max-width: 540px;
	flex-shrink: 0;
	animation: rise 0.9s 0.25s both cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* =========================================================
   MAP — Yandex map below intro
   ========================================================= */
.map_section {
	position: relative;
	padding: 40px 0 110px;
	background: var(--paper);
}

.map_layout {
	display: grid;
	grid-template-columns: 4fr 8fr;
	column-gap: 64px;
	align-items: stretch;
	margin-top: 32px;
}

@media (max-width: 1024px) {
	.map_layout {
		grid-template-columns: 1fr;
		row-gap: 32px;
	}
}

.map_intro {
	padding-top: 8px;
}

.map_heading {
	font-size: clamp(30px, 3.2vw, 48px);
	line-height: 1.05;
	letter-spacing: -0.02em;
	margin-bottom: 20px;
}

.map_lead {
	font-size: 16px;
	line-height: 1.7;
	color: var(--ink_med);
	max-width: 380px;
	margin-bottom: 28px;
}

.map_facts {
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: var(--hairline);
}

.map_facts li {
	display: flex;
	flex-direction: column;
	padding: 16px 0;
	border-bottom: var(--hairline);
}

.map_fact_label {
	font-family: var(--font_mono);
	font-size: 10px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink_soft);
	margin-bottom: 6px;
}

.map_fact_value {
	font-family: var(--font_display);
	font-size: 18px;
	color: var(--ink);
	line-height: 1.35;
}

.map_embed_frame {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	background: var(--paper_warm);
	box-shadow:
		0 30px 60px -40px rgba(46, 31, 18, 0.35),
		0 0 0 1px var(--rule) inset;
	width: 100%;
	height: 100%;
	min-height: 460px;
}

@media (max-width: 1024px) {
	.map_embed_frame {
		min-height: 420px;
	}
}

@media (max-width: 850px) {
	.map_embed_frame {
		min-height: 380px;
	}
}

@media (max-width: 480px) {
	.map_embed_frame {
		min-height: 340px;
		border-radius: 12px;
	}
}

.map_embed_iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

.map_embed_credit {
	position: absolute;
	top: 6px;
	left: 10px;
	z-index: 2;
	color: #eee;
	font-family: var(--font_mono);
	font-size: 11px;
	letter-spacing: 0.04em;
	text-decoration: none;
	opacity: 0.75;
	transition: opacity 0.25s ease;
}

.map_embed_credit:hover {
	opacity: 1;
}

.map_embed_credit_second {
	top: 22px;
}

@media (max-width: 850px) {
	.map_section {
		padding: 24px 0 80px;
	}
	.map_layout {
		margin-top: 24px;
	}
	.map_heading {
		font-size: clamp(28px, 7.5vw, 38px);
	}
	.map_lead {
		max-width: none;
	}
	.map_fact_value {
		font-size: 17px;
	}
}

@media (max-width: 480px) {
	.map_section {
		padding: 16px 0 64px;
	}
	.map_fact_value {
		font-size: 16px;
	}
}

/* =========================================================
   BOOKING — featured card
   ========================================================= */
.booking_card {
	background:
		radial-gradient(900px 400px at 90% 110%, rgba(184, 120, 42, 0.18), transparent 60%),
		radial-gradient(700px 300px at 0% 0%, rgba(184, 120, 42, 0.08), transparent 60%), #2a1a0e;
	padding: 36px 40px 36px;
	display: flex;
	flex-direction: column;
	position: relative;
	border-radius: 15px;
	box-shadow:
		0 40px 80px -40px rgba(20, 12, 6, 0.55),
		0 0 0 1px #1a0f07 inset;
	color: var(--paper);
	overflow: hidden;
}
.booking_card > * + * {
	margin-top: 26px;
}
/* .booking_card::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 5px;
	background: var(--accent);
	border-radius: 3px 0 0 3px;
} */
.booking_header {
	display: flex;
	align-items: center;
	padding-bottom: 26px;
	border-bottom: 1px solid rgba(229, 215, 182, 0.16);
}
.booking_header > * + * {
	margin-left: 22px;
}

.booking_seal {
	flex-shrink: 0;
	color: var(--accent);
	display: inline-flex;
	width: 56px;
	height: 56px;
	align-items: center;
	justify-content: center;
	background: rgba(184, 120, 42, 0.16);
	border: 1px solid rgba(184, 120, 42, 0.45);
	border-radius: 50%;
}
.booking_seal img {
	display: block;
	width: 40px;
	height: 40px;
}

.booking_header_text {
	display: block;
}
.booking_title {
	font-family: var(--font_display);
	font-weight: 400;
	font-size: clamp(28px, 2.6vw, 38px);
	line-height: 1;
	color: var(--paper);
	letter-spacing: -0.018em;
	font-variation-settings:
		"opsz" 144,
		"SOFT" 50;
}
.booking_title em {
	font-style: italic;
	color: var(--accent);
	font-variation-settings:
		"opsz" 144,
		"SOFT" 100;
}

.booking_form {
	display: grid;
	grid-template-columns: 1fr 1px 1fr 1px 1fr auto;
	align-items: end;
	gap: 0 28px;
}
.booking_field {
	min-width: 0;
}
.booking_label {
	display: block;
	font-family: var(--font_mono);
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(229, 215, 182, 0.6);
	margin-bottom: 8px;
}
.booking_input {
	width: 100%;
	background: transparent;
	border: 0;
	padding: 6px 0 10px;
	font-family: var(--font_display);
	font-size: 20px;
	color: var(--paper);
	border-bottom: 1px solid rgba(229, 215, 182, 0.25);
	font-variation-settings:
		"opsz" 24,
		"SOFT" 50;
	outline: none;
	transition: border-color 0.25s ease;
}
.booking_input:focus {
	border-bottom-color: var(--accent);
}
.booking_input option {
	color: var(--ink);
	background: var(--paper);
}
.booking_input::-webkit-calendar-picker-indicator {
	filter: invert(0.9) sepia(0.3) hue-rotate(-10deg);
	opacity: 0.75;
	cursor: pointer;
}
.booking_divider {
	display: block;
	width: 1px;
	height: 44px;
	background: rgba(229, 215, 182, 0.18);
	align-self: end;
	margin-bottom: 4px;
}

.booking_submit_wrap {
	display: flex;
}
.booking_submit {
	-webkit-appearance: none;
	appearance: none;
	border: 0;
	border-radius: 15px;
	background: var(--accent);
	color: #fff;
	font-family: var(--font_mono);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 20px 32px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition:
		background-color 0.35s ease,
		transform 0.25s ease,
		box-shadow 0.3s ease;
	box-shadow: 0 12px 24px -8px rgba(184, 120, 42, 0.6);
}
.booking_submit:hover {
	background: #d08a30;
	transform: translateY(-2px);
	box-shadow: 0 18px 32px -10px rgba(184, 120, 42, 0.75);
}
.booking_submit:active {
	transform: translateY(0);
}

/* =========================================================
   WELCOME / ABOUT
   ========================================================= */
.welcome_section {
	background: var(--paper_soft);
	padding: 96px 0 100px;
}

.welcome_layout {
	display: grid;
	grid-template-columns: 5fr 7fr;
	column-gap: 80px;
	align-items: start;
	margin-top: 56px;
}

.welcome_text {
	padding-top: 8px;
}
.lead_heading {
	font-size: clamp(34px, 3.6vw, 56px);
	line-height: 1.02;
	letter-spacing: -0.02em;
	margin-bottom: 28px;
}
.lead_paragraph {
	font-size: 16px;
	line-height: 1.7;
	color: var(--ink_med);
	max-width: 460px;
	margin-bottom: 36px;
}
.welcome_signature {
	padding-top: 18px;
	border-top: var(--hairline);
	max-width: 320px;
}
.welcome_signature > * + * {
	margin-top: 4px;
}
.signature_name {
	display: block;
	font-family: var(--font_display);
	font-style: italic;
	font-size: 22px;
	color: var(--ink);
	font-variation-settings:
		"opsz" 24,
		"SOFT" 100;
}
.signature_role {
	display: block;
	font-family: var(--font_mono);
	font-size: 10px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink_soft);
}

.welcome_collage {
	position: relative;
	height: 600px;
}
.collage_item {
	position: absolute;
	object-fit: cover;
	display: block;
	border-radius: 15px;
	box-shadow: 0 20px 40px -28px rgba(46, 31, 18, 0.22);
	transition: transform 0.8s ease;
}
.collage_item:hover {
	transform: scale(1.02);
}
.collage_item_a {
	top: 0;
	left: 18%;
	width: 64%;
	height: 64%;
}
.collage_item_b {
	bottom: 0;
	right: 0;
	width: 56%;
	height: 56%;
	outline: 6px solid var(--paper_soft);
}
.collage_item_c {
	bottom: 0;
	left: 4%;
	width: 42%;
	height: 46%;
	z-index: 2;
	outline: 6px solid var(--paper_soft);
}
/* =========================================================
   FEATURES — clean 3-column text grid
   ========================================================= */
.features_section {
	padding: 110px 0 110px;
}
.features_heading {
	font-size: clamp(32px, 3.6vw, 56px);
	line-height: 1.05;
	margin-bottom: 72px;
	max-width: 820px;
	letter-spacing: -0.02em;
}

.features_grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 56px 48px;
}

.feature_card {
	padding-top: 28px;
	border-top: 1px solid var(--rule);
}
.feature_card > * + * {
	margin-top: 14px;
}

/* Feature icon — svg variant */
.feature_card svg.feature_icon {
	display: block;
	width: 34px;
	height: 34px;
	color: var(--accent);
	flex-shrink: 0;
	transition:
		color 0.3s ease,
		transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.feature_card:hover svg.feature_icon {
	color: var(--accent_dark);
	transform: translateY(-2px);
}

/* Feature icon — img variant (same visual treatment) */
.feature_card img.feature_icon {
	display: block;
	width: 34px;
	height: 34px;
	object-fit: contain;
	flex-shrink: 0;
	transition:
		opacity 0.3s ease,
		transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.feature_card:hover img.feature_icon {
	opacity: 0.85;
	transform: translateY(-2px);
}

.feature_title {
	font-size: clamp(22px, 1.8vw, 26px);
	line-height: 1.18;
	letter-spacing: -0.012em;
	color: var(--ink);
}
.feature_body {
	font-size: 15px;
	line-height: 1.65;
	color: var(--ink_med);
}

/* =========================================================
   PHOTO MOSAIC (index — scrolling two-row grid, every 3rd column tall)
   ========================================================= */
.photo_mosaic_section {
	overflow: hidden;
	padding: 0 0 110px;
}
.photo_mosaic_track {
	display: grid;
	grid-template-rows: 196px 196px;
	grid-auto-flow: column;
	grid-auto-columns: 300px;
	gap: 10px;
	width: max-content;
	user-select: none;
	cursor: grab;
}
.photo_mosaic_track.is_grabbing {
	cursor: grabbing;
}
.photo_mosaic_item {
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	border-radius: 12px;
	display: block;
	filter: saturate(0.88);
	pointer-events: none;
}
.photo_mosaic_item:nth-child(3n) {
	grid-column: span 2;
	grid-row: span 2;
}

/* =========================================================
   STRIP / GALLERY (horizontal marquee)
   ========================================================= */
.strip_section {
	overflow: hidden;
	padding: 0;
	background: var(--paper);
}
.strip_track {
	display: flex;
	align-items: stretch;
	width: max-content;
	cursor: grab;
	user-select: none;
}
.strip_track.is_grabbing {
	cursor: grabbing;
}
.strip_item {
	flex-shrink: 0;
	width: 360px;
	height: 240px;
	object-fit: cover;
	display: block;
	filter: saturate(0.88);
	transition: filter 0.5s ease;
	pointer-events: none;
}
.strip_item:hover {
	filter: saturate(1.05);
}

/* =========================================================
   ROOMS
   ========================================================= */
.rooms_section {
	padding: 100px 0 100px;
	background: var(--paper_soft);
}
.rooms_heading {
	font-size: clamp(32px, 3.6vw, 56px);
	line-height: 1.05;
	margin-bottom: 64px;
	letter-spacing: -0.02em;
}
.rooms_grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
}
.rooms_section_more {
	margin-top: 56px;
	text-align: center;
}
.room_card {
	display: flex;
	flex-direction: column;
}
.room_card > * + * {
	margin-top: 28px;
}

.room_photo {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 24px 48px -28px rgba(58, 42, 27, 0.28);
}

.room_meta {
	padding: 0 4px;
}
.room_meta > * + * {
	margin-top: 12px;
}

.room_category {
	display: block;
}
.room_name {
	font-size: 38px;
	line-height: 1;
	letter-spacing: -0.02em;
}
.room_link {
	display: inline-flex;
	align-self: flex-start;
	font-family: var(--font_mono);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink_med);
	padding-bottom: 4px;
	border-bottom: 1px solid var(--rule_strong);
	transition:
		color 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease;
}
.room_link:hover {
	color: var(--accent_dark);
	border-color: var(--accent_dark);
	transform: translateX(4px);
}

/* =========================================================
   CONTACT (used inside the footer)
   ========================================================= */
.contact_map {
	position: relative;
	min-height: 560px;
	border: 1px solid var(--rule_strong);
	border-radius: 15px;
	overflow: hidden;
	background: var(--paper_warm);
}
.contact_map iframe {
	width: 100%;
	height: 100%;
	border: 0;
	filter: sepia(0.45) saturate(0.6) hue-rotate(-12deg) brightness(0.95);
	display: block;
	position: absolute;
	inset: 0;
}
.contact_card {
	background: var(--paper);
	border: 1px solid var(--rule_strong);
	border-radius: 15px;
	padding: 40px 36px;
	display: flex;
	flex-direction: column;
	position: relative;
}
.contact_card > * + * {
	margin-top: 26px;
}

.contact_heading {
	font-size: clamp(32px, 2.6vw, 44px);
	line-height: 1;
	letter-spacing: -0.02em;
}

.contact_list {
}
.contact_list > * + * {
	margin-top: 22px;
	padding-top: 22px;
	border-top: var(--hairline);
}
.contact_list li {
	display: block;
}
.contact_label {
	display: block;
	margin-bottom: 6px;
}
.contact_value {
	font-family: var(--font_display);
	font-size: 18px;
	line-height: 1.4;
	color: var(--ink);
	font-variation-settings:
		"opsz" 24,
		"SOFT" 50;
}
.contact_link {
	transition: color 0.25s ease;
}
.contact_link:hover {
	color: var(--accent_dark);
}

.contact_socials {
	display: flex;
	align-items: center;
	padding-top: 4px;
}
.contact_socials > * + * {
	margin-left: 14px;
}
.contact_socials a {
	display: inline-flex;
	width: 38px;
	height: 38px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--rule_strong);
	border-radius: 15px;
	transition:
		background-color 0.25s ease,
		border-color 0.25s ease;
}
.contact_socials a:hover {
	background: var(--ink);
	border-color: var(--ink);
}
.contact_socials img {
	width: 16px;
	height: 16px;
	filter: brightness(0) saturate(100%) invert(13%) sepia(15%) saturate(800%) hue-rotate(2deg) brightness(95%)
		contrast(90%);
	transition: filter 0.25s ease;
}
.contact_socials a:hover img {
	filter: brightness(0) invert(1);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site_footer {
	background:
		radial-gradient(900px 400px at 90% 110%, rgba(184, 120, 42, 0.16), transparent 60%),
		radial-gradient(700px 300px at 5% 0%, rgba(184, 120, 42, 0.08), transparent 60%), #2a1a0e;
	color: var(--paper);
	padding: 0 0 24px;
}

.footer_contact_block {
	background: var(--paper);
	color: var(--ink);
	padding: 110px 0 110px;
}
.footer_contact_eyebrow {
	display: block;
	font-family: var(--font_mono);
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink_soft);
	margin-bottom: 28px;
}
.footer_contact_layout {
	display: grid;
	grid-template-columns: 7fr 5fr;
	gap: 48px;
	align-items: stretch;
}

.site_footer_inner {
	display: grid;
	grid-template-columns: 2fr 1fr 1.4fr;
	gap: 56px;
	padding-top: 64px;
}

.footer_logo {
	width: 92px;
	height: auto;
	filter: brightness(0) invert(1) sepia(0.18) hue-rotate(-10deg);
}
.footer_tagline {
	margin-top: 22px;
	font-family: var(--font_display);
	font-style: italic;
	font-size: 18px;
	line-height: 1.5;
	color: rgba(241, 232, 213, 0.7);
	max-width: 360px;
	font-variation-settings:
		"opsz" 24,
		"SOFT" 100;
}

.footer_col_title {
	display: block;
	font-family: var(--font_mono);
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 22px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(241, 232, 213, 0.14);
}

.footer_nav ul > * + * {
	margin-top: 10px;
}
.footer_nav a {
	font-family: var(--font_body);
	font-size: 14px;
	color: var(--paper);
	transition: color 0.25s ease;
}
.footer_nav a:hover {
	color: var(--accent);
}

.footer_contact p {
	font-family: var(--font_body);
	font-size: 14px;
	line-height: 1.7;
	color: rgba(241, 232, 213, 0.75);
}
.footer_socials {
	display: flex;
	align-items: center;
	margin-top: 18px;
}
.footer_socials > * + * {
	margin-left: 12px;
}
.footer_socials a {
	display: inline-flex;
	width: 34px;
	height: 34px;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(241, 232, 213, 0.25);
	border-radius: 15px;
	transition:
		background-color 0.25s ease,
		border-color 0.25s ease;
}
.footer_socials a:hover {
	background: var(--accent);
	border-color: var(--accent);
}
.footer_socials img {
	width: 14px;
	height: 14px;
	filter: brightness(0) invert(0.92) sepia(0.1);
	transition: filter 0.25s ease;
}
.footer_socials a:hover img {
	filter: brightness(0) invert(1);
}

.footer_bottom {
	grid-column: 1 / -1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 64px;
	padding-top: 24px;
	border-top: 1px solid rgba(241, 232, 213, 0.12);
	font-family: var(--font_mono);
	font-size: 10px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(241, 232, 213, 0.5);
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes rise {
	from {
		opacity: 0;
		transform: translateY(14px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes rise_long {
	from {
		opacity: 0;
		transform: translateY(22px) scale(0.985);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}
@keyframes wobble {
	0% {
		transform: translateX(0) rotate(0);
	}
	15% {
		transform: translateX(-12px) rotate(-0.8deg);
	}
	30% {
		transform: translateX(10px) rotate(0.6deg);
	}
	45% {
		transform: translateX(-7px) rotate(-0.4deg);
	}
	60% {
		transform: translateX(5px) rotate(0.3deg);
	}
	75% {
		transform: translateX(-3px) rotate(-0.15deg);
	}
	100% {
		transform: translateX(0) rotate(0);
	}
}
.booking_card.is_shaking {
	animation: wobble 0.7s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

/* JS-driven scroll reveals (only active when .js_reveal is on <html>) */
.js_reveal .section_marker,
.js_reveal .lead_heading,
.js_reveal .features_heading,
.js_reveal .rooms_heading,
.js_reveal .contact_heading,
.js_reveal .feature_card,
.js_reveal .room_card,
.js_reveal .collage_item,
.js_reveal .booking_card {
	opacity: 0;
	transform: translateY(18px);
	transition:
		opacity 0.8s ease,
		transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
	will-change: opacity, transform;
}
.js_reveal .is_revealed {
	opacity: 1;
	transform: translateY(0);
}

/* =========================================================
   ABOUT — intro video
   ========================================================= */
.about_intro {
	position: relative;
	min-height: 520px;
	overflow: hidden;
}
.about_intro_video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

/* =========================================================
   PAGE HERO — header strip for sub-pages
   ========================================================= */
.page_hero {
	position: relative;
	background: var(--paper_soft);
	padding: 120px 0 84px;
	border-bottom: var(--hairline);
	overflow: hidden;
	isolation: isolate;
}
.page_hero_bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.page_hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		105deg,
		var(--paper_soft) 0%,
		rgba(245, 238, 217, 0.78) 38%,
		rgba(245, 238, 217, 0.3) 68%,
		rgba(245, 238, 217, 0.05) 100%
	);
	z-index: 1;
}
.main_about .page_hero {
	padding: 64px 0 48px;
}
.main_about .page_hero::after {
	display: none;
}
.page_hero_meta {
	display: flex;
	align-items: center;
	margin-bottom: 22px;
}
.page_hero_meta > * + * {
	margin-left: 16px;
}
.page_hero_num {
	font-family: var(--font_display);
	font-style: italic;
	font-size: 22px;
	color: var(--accent);
	font-variation-settings:
		"opsz" 144,
		"SOFT" 100;
	line-height: 1;
}
.page_hero_eyebrow {
	font-family: var(--font_mono);
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink_soft);
}
.page_hero_title {
	font-size: clamp(40px, 5vw, 72px);
	line-height: 1.02;
	letter-spacing: -0.022em;
	max-width: 900px;
}
.page_hero_lead {
	font-size: 17px;
	line-height: 1.65;
	color: var(--ink_med);
	max-width: 620px;
	margin-top: 24px;
}

/* =========================================================
   ABOUT — long-form
   ========================================================= */
.about_story {
	padding: 96px 0;
}
.about_story_layout {
	display: grid;
	grid-template-columns: 7fr 5fr;
	column-gap: 80px;
	align-items: start;
}
.about_paragraph {
	font-size: 16px;
	line-height: 1.7;
	color: var(--ink_med);
	max-width: 620px;
}
.about_story_text > * + * {
	margin-top: 22px;
}

.about_signature {
	padding-top: 22px;
	margin-top: 32px;
	border-top: var(--hairline);
	max-width: 320px;
}
.about_signature > * + * {
	margin-top: 4px;
}

.about_facts {
	border: 1px solid var(--rule_strong);
	border-radius: 15px;
	padding: 28px 28px;
	background: var(--paper);
}
.fact_list {
	display: block;
}
.fact_item {
	display: block;
	padding: 16px 0;
	border-bottom: var(--hairline);
}
.fact_item:first-child {
	padding-top: 0;
}
.fact_item:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}
.fact_label {
	display: block;
	font-family: var(--font_mono);
	font-size: 10px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink_soft);
	margin: 0 0 6px;
}
.fact_value {
	font-family: var(--font_display);
	font-size: 18px;
	line-height: 1.4;
	color: var(--ink);
	font-variation-settings:
		"opsz" 24,
		"SOFT" 50;
	margin: 0;
}

/* =========================================================
   ABOUT — photo gallery grid
   ========================================================= */
.about_gallery {
	padding: 0 0 96px;
}
.about_gallery_grid {
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-template-rows: 274px 274px;
	gap: 14px;
}
.about_gallery_img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
	display: block;
}

.about_chapters {
	padding: 96px 0;
	border-top: var(--hairline);
}
.about_chapters_inner > * + * {
	margin-top: 80px;
}

.about_chapter {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	align-items: center;
}
.about_chapter_reverse > .about_chapter_image {
	order: 2;
}
.about_chapter_image {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 15px;
	display: block;
	box-shadow: 0 24px 48px -28px rgba(58, 42, 27, 0.28);
}
.about_chapter_text > * + * {
	margin-top: 16px;
}
.about_chapter_title {
	font-size: clamp(28px, 3vw, 42px);
	line-height: 1.05;
	letter-spacing: -0.018em;
}
.about_chapter_paragraph {
	font-size: 16px;
	line-height: 1.7;
	color: var(--ink_med);
}

.about_values {
	padding: 96px 0;
	background: var(--paper_soft);
}

.about_photo {
	padding: 0 0 96px;
	background: var(--paper_soft);
}
.about_photo_strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(4, 262px);
	gap: 12px;
}
.about_photo_strip img,
.about_photo_strip video {
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	border-radius: 15px;
	display: block;
}
.about_photo_strip > :nth-child(1) {
	grid-column: 1 / span 2;
	grid-row: 1 / span 2;
}
.about_photo_strip > :nth-child(2) {
	grid-column: 3;
	grid-row: 1 / span 2;
}
.about_photo_strip > :nth-child(3) {
	grid-column: 4;
	grid-row: 1;
}
.about_photo_strip > :nth-child(4) {
	grid-column: 4;
	grid-row: 2;
}
.about_photo_strip > :nth-child(5) {
	grid-column: 1;
	grid-row: 3;
}
.about_photo_strip > :nth-child(6) {
	grid-column: 1;
	grid-row: 4;
}
.about_photo_strip > :nth-child(7) {
	grid-column: 2;
	grid-row: 3 / span 2;
}
.about_photo_strip > :nth-child(8) {
	grid-column: 3 / span 2;
	grid-row: 3 / span 2;
}
.about_photo_caption {
	margin-top: 18px;
	font-family: var(--font_display);
	font-style: italic;
	font-size: 16px;
	color: var(--ink_soft);
	font-variation-settings:
		"opsz" 24,
		"SOFT" 100;
}

/* =========================================================
   ROOMS — catalog
   ========================================================= */
.rooms_catalog {
	padding: 96px 0;
}
.rooms_catalog_grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 48px 32px;
}
.catalog_card {
	display: flex;
	flex-direction: column;
}
.catalog_card > * + * {
	margin-top: 18px;
}

.catalog_gallery {
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	aspect-ratio: 4 / 3;
	background: var(--paper_warm);
	box-shadow: 0 24px 48px -28px rgba(58, 42, 27, 0.28);
}
.catalog_gallery_track {
	display: flex;
	width: 100%;
	height: 100%;
	transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
	will-change: transform;
}
.catalog_gallery_slide {
	flex: 0 0 100%;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	user-select: none;
	-webkit-user-drag: none;
	pointer-events: none;
}
.catalog_gallery_arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition:
		opacity 0.3s ease,
		transform 0.3s ease;
	opacity: 0.55;
	z-index: 2;
	filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.45));
}
.catalog_gallery_arrow svg path {
	stroke-width: 1.4;
}
.catalog_gallery:hover .catalog_gallery_arrow,
.catalog_gallery:focus-within .catalog_gallery_arrow {
	opacity: 0.92;
}
.catalog_gallery_prev {
	left: 8px;
}
.catalog_gallery_next {
	right: 8px;
}
.catalog_gallery_arrow:hover {
	transform: translateY(-50%) scale(1.12);
}
.catalog_gallery_arrow:active {
	transform: translateY(-50%) scale(0.94);
}
.catalog_gallery_arrow:active {
	transform: translateY(-50%) scale(0.96);
}
@media (hover: none) {
	.catalog_gallery_arrow {
		opacity: 0.75;
	}
}

.catalog_gallery_dots {
	position: absolute;
	bottom: 14px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	z-index: 2;
}
.catalog_gallery_dots > * + * {
	margin-left: 8px;
}
.catalog_gallery_dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.55);
	transition:
		background-color 0.25s ease,
		transform 0.25s ease;
	border: 0;
	padding: 0;
	cursor: pointer;
}
.catalog_gallery_dot:hover {
	background: rgba(255, 255, 255, 0.9);
}
.catalog_gallery_dot.is_active {
	background: #fff;
	transform: scale(1.3);
}

.catalog_body > * + * {
	margin-top: 10px;
}
.catalog_name {
	font-family: var(--font_display);
	font-size: 24px;
	line-height: 1.05;
	letter-spacing: -0.018em;
	color: var(--ink);
	font-variation-settings:
		"opsz" 144,
		"SOFT" 50;
}
.catalog_summary {
	font-size: 13px;
	line-height: 1.55;
	color: var(--ink_med);
}
.catalog_meta {
	display: flex;
	align-items: center;
	padding: 0;
	margin: 0;
	list-style: none;
}
.catalog_meta > * + * {
	margin-left: 18px;
}
.catalog_meta li {
	display: inline-flex;
	align-items: center;
	font-family: var(--font_mono);
	font-size: 12px;
	color: var(--ink_med);
}
.catalog_meta li > * + * {
	margin-left: 6px;
}
.catalog_meta_icon {
	width: 15px;
	height: 15px;
	color: var(--accent);
	flex-shrink: 0;
	display: block;
}

.catalog_cta {
	display: flex;
	align-items: center;
	margin-top: 14px;
	padding-top: 14px;
	border-top: var(--hairline);
}
.catalog_reserve {
	font-family: var(--font_mono);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 12px 20px;
	border: 1px solid var(--rule_strong);
	border-radius: 15px;
	color: var(--ink_med);
	transition:
		background-color 0.25s ease,
		color 0.25s ease,
		border-color 0.25s ease;
}
.catalog_reserve:hover {
	background: var(--ink);
	color: var(--paper);
	border-color: var(--ink);
}

/* =========================================================
   REVIEWS — Google CTA + Yandex widget on the rooms page
   ========================================================= */
.reviews_section {
	background: var(--paper_soft);
	padding: 96px 0 100px;
}

.reviews_header {
	max-width: 720px;
	margin-bottom: 48px;
}

.reviews_heading {
	font-family: var(--font_display);
	font-size: clamp(30px, 3.2vw, 48px);
	letter-spacing: -0.02em;
	line-height: 1.05;
	color: var(--ink);
	margin-bottom: 16px;
	font-variation-settings:
		"opsz" 144,
		"SOFT" 50;
}

.reviews_lead {
	font-size: 16px;
	line-height: 1.7;
	color: var(--ink_med);
	max-width: 520px;
}

.reviews_grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 32px;
	row-gap: 32px;
	align-items: stretch;
}

@media (max-width: 1024px) {
	.reviews_grid {
		grid-template-columns: 1fr;
	}
}

.reviews_card {
	background: var(--paper);
	border: 1px solid var(--rule);
	border-radius: 15px;
	box-shadow: 0 24px 48px -32px rgba(58, 42, 27, 0.22);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	min-height: 640px;
}

@media (max-width: 850px) {
	.reviews_card {
		min-height: 580px;
	}
}

.reviews_card_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 26px;
	border-bottom: var(--hairline);
	background: var(--paper);
}

.reviews_card_brand {
	display: inline-flex;
	align-items: center;
}

.reviews_card_brand > * + * {
	margin-left: 12px;
}

.reviews_card_brand_mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--ink);
	color: var(--paper);
	font-family: var(--font_display);
	font-style: italic;
	font-size: 17px;
	font-weight: 500;
	line-height: 1;
}

.reviews_card_brand_mark_yandex {
	background: #fc3f1d;
	color: #fff;
	font-style: normal;
	font-family: var(--font_body);
	font-weight: 600;
}

.reviews_card_brand_name {
	font-family: var(--font_display);
	font-size: 17px;
	color: var(--ink);
	letter-spacing: -0.01em;
}

.reviews_card_rating {
	display: inline-flex;
	flex-direction: column;
	align-items: flex-end;
	line-height: 1.2;
}

.reviews_card_stars {
	color: var(--accent);
	font-size: 14px;
	letter-spacing: 2px;
}

.reviews_card_rating_label {
	font-family: var(--font_mono);
	font-size: 10px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink_soft);
	margin-top: 4px;
}

.reviews_card_link {
	font-family: var(--font_mono);
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink_med);
	text-decoration: none;
	transition: color 0.25s ease;
}

.reviews_card_link i {
	margin-left: 6px;
	transition: transform 0.25s ease;
	display: inline-block;
}

.reviews_card_link:hover {
	color: var(--accent_dark);
}

.reviews_card_link:hover i {
	transform: translateX(4px);
}

/* Google CTA body */
.reviews_card_body {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 40px 36px;
	background: white;
}

.reviews_quote_mark {
	width: 40px;
	height: 32px;
	color: var(--accent);
	opacity: 0.85;
	margin-bottom: 22px;
}

.reviews_card_pitch {
	font-family: var(--font_display);
	font-size: clamp(20px, 1.8vw, 26px);
	line-height: 1.35;
	color: var(--ink);
	letter-spacing: -0.012em;
	margin-bottom: 32px;
	max-width: 460px;
	font-variation-settings:
		"opsz" 24,
		"SOFT" 50;
}

.reviews_card_cta {
	display: inline-flex;
	align-items: center;
	padding: 14px 24px;
	background: var(--ink);
	color: var(--paper);
	font-family: var(--font_mono);
	font-size: 12px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 15px;
	transition:
		background-color 0.3s ease,
		transform 0.3s ease;
}

.reviews_card_cta > * + * {
	margin-left: 10px;
}

.reviews_card_arrow {
	font-style: normal;
	font-size: 14px;
	transition: transform 0.3s ease;
	display: inline-block;
}

.reviews_card_cta:hover {
	background: var(--accent_dark);
}

.reviews_card_cta:hover .reviews_card_arrow {
	transform: translateX(4px);
}

/* Yandex widget body */
.reviews_widget_frame {
	position: relative;
	flex: 1;
	overflow: hidden;
	background: var(--paper);
}

.reviews_widget_iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
	background: #fff;
}

.reviews_widget_credit {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 8px;
	z-index: 2;
	padding: 0 16px;
	color: #b3b3b3;
	font-family: var(--font_mono);
	font-size: 10px;
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	pointer-events: none;
}

@media (max-width: 850px) {
	.reviews_section {
		padding: 72px 0 80px;
	}
	.reviews_header {
		margin-bottom: 36px;
	}
	.reviews_heading {
		font-size: clamp(28px, 7.5vw, 38px);
	}
	.reviews_card_head {
		padding: 18px 20px;
	}
	.reviews_card_body {
		padding: 32px 24px;
	}
	.reviews_card_pitch {
		font-size: 19px;
	}
}

@media (max-width: 480px) {
	.reviews_section {
		padding: 56px 0 64px;
	}
	.reviews_card {
		min-height: 520px;
		border-radius: 12px;
	}
	.reviews_card_head {
		padding: 16px 18px;
	}
	.reviews_card_brand_name {
		font-size: 15px;
	}
	.reviews_card_rating_label {
		display: none;
	}
	.reviews_card_body {
		padding: 28px 20px;
	}
	.reviews_card_cta {
		padding: 12px 18px;
		font-size: 11px;
		letter-spacing: 0.12em;
	}
}

/* =========================================================
   404 — page not found
   ========================================================= */
.error_section {
	position: relative;
	padding: 120px 0 140px;
	background:
		radial-gradient(700px 320px at 18% 12%, rgba(184, 120, 42, 0.07), transparent 60%),
		radial-gradient(600px 280px at 88% 88%, rgba(59, 85, 119, 0.05), transparent 60%),
		var(--paper);
}

.error_card {
	max-width: 720px;
	margin: 0 auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.error_card > * + * {
	margin-top: 24px;
}

.error_ornament {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 88px;
	height: 88px;
	border-radius: 50%;
	background: var(--paper_warm);
	box-shadow:
		0 0 0 1px var(--rule_strong) inset,
		0 20px 40px -28px rgba(46, 31, 18, 0.25);
}

.error_ornament img {
	width: 48px;
	height: 48px;
	display: block;
}

.error_eyebrow {
	font-family: var(--font_mono);
	font-size: 11px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ink_soft);
}

.error_title {
	font-family: var(--font_display);
	font-size: clamp(40px, 5vw, 72px);
	line-height: 1.02;
	letter-spacing: -0.022em;
	color: var(--ink);
	font-variation-settings:
		"opsz" 144,
		"SOFT" 50;
}

.error_lead {
	font-size: 17px;
	line-height: 1.65;
	color: var(--ink_med);
	max-width: 560px;
}

.error_cta_row {
	margin-top: 12px;
}

@media (max-width: 850px) {
	.error_section {
		padding: 80px 0 96px;
	}
	.error_ornament {
		width: 72px;
		height: 72px;
	}
	.error_ornament img {
		width: 40px;
		height: 40px;
	}
	.error_title {
		font-size: clamp(32px, 8.5vw, 48px);
	}
	.error_lead {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.error_section {
		padding: 64px 0 80px;
	}
	.error_card > * + * {
		margin-top: 20px;
	}
}

.faq_section {
	padding: 96px 0;
}
.faq_layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 56px;
	align-items: start;
}
.faq_aside {
	position: sticky;
	top: 100px;
}
.faq_image {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 15px;
	display: block;
	box-shadow: 0 24px 48px -28px rgba(58, 42, 27, 0.28);
}
.faq_heading {
	font-family: var(--font_display);
	font-size: clamp(28px, 2.8vw, 40px);
	letter-spacing: -0.02em;
	line-height: 1.05;
	margin-bottom: 32px;
	color: var(--ink);
	font-variation-settings:
		"opsz" 144,
		"SOFT" 50;
}
.faq_list {
	display: block;
	border-top: var(--hairline);
}
.faq_item {
	border-bottom: var(--hairline);
}

.faq_item details > summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 0;
	font-family: var(--font_display);
	font-size: 19px;
	letter-spacing: -0.008em;
	color: var(--ink);
	font-variation-settings:
		"opsz" 24,
		"SOFT" 50;
	transition: color 0.25s ease;
}
.faq_item details > summary::-webkit-details-marker {
	display: none;
}
.faq_item details > summary:hover {
	color: var(--accent_dark);
}
.faq_item details > summary > span {
	padding-right: 16px;
}

.faq_toggle {
	flex-shrink: 0;
	display: inline-block;
	width: 14px;
	height: 14px;
	position: relative;
	color: var(--ink);
	transition:
		transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
		color 0.25s ease;
}

.faq_toggle::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 8px;
	height: 8px;
	border-right: 1.6px solid currentColor;
	border-bottom: 1.6px solid currentColor;
	transform: rotate(45deg);
}

.faq_item details > summary:hover .faq_toggle {
	color: var(--accent_dark);
}

.faq_item details[open] .faq_toggle {
	transform: rotate(180deg);
}

.faq_answer {
	padding: 0 0 24px;
	max-width: 760px;
	animation: faq_fade 0.35s ease both;
}
.faq_answer p {
	font-size: 15px;
	line-height: 1.65;
	color: var(--ink_med);
}
.faq_inner_list {
	margin-top: 12px;
	display: block;
}
.faq_inner_list li {
	font-size: 15px;
	line-height: 1.65;
	color: var(--ink_med);
	padding: 4px 0 4px 22px;
	position: relative;
}
.faq_inner_list li::before {
	content: "—";
	position: absolute;
	left: 0;
	color: var(--accent);
}
@keyframes faq_fade {
	from {
		opacity: 0;
		transform: translateY(-4px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* =========================================================
   OFFERS
   ========================================================= */
.offers_section {
	padding: 96px 0;
}
.offers_grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px;
}
.offer_card {
	background: var(--paper);
	border: 1px solid var(--rule_strong);
	border-radius: 15px;
	padding: 36px 32px;
	display: flex;
	flex-direction: column;
	transition:
		transform 0.4s ease,
		box-shadow 0.4s ease;
}
.offer_card > * + * {
	margin-top: 18px;
}
.offer_card:hover {
	transform: translateY(-4px);
	box-shadow: 0 28px 56px -36px rgba(58, 42, 27, 0.32);
}
.offer_card_feature {
	background: radial-gradient(800px 360px at 100% 100%, rgba(184, 120, 42, 0.16), transparent 60%), var(--paper_warm);
}
.offer_head {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.offer_tag {
	font-family: var(--font_mono);
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--accent);
}
.offer_amount {
	font-family: var(--font_display);
	font-style: italic;
	font-size: 28px;
	color: var(--accent_dark);
	font-variation-settings:
		"opsz" 144,
		"SOFT" 100;
	line-height: 1;
}
.offer_title {
	font-family: var(--font_display);
	font-size: clamp(24px, 2.4vw, 32px);
	line-height: 1.1;
	letter-spacing: -0.018em;
	color: var(--ink);
	font-variation-settings:
		"opsz" 144,
		"SOFT" 50;
}
.offer_body {
	font-size: 15px;
	line-height: 1.65;
	color: var(--ink_med);
}
.offer_terms {
	display: block;
	padding-top: 18px;
	border-top: var(--hairline);
}
.offer_terms li {
	font-family: var(--font_mono);
	font-size: 11px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ink_soft);
	padding: 8px 0;
}
.offer_terms li + li {
	border-top: 1px dashed var(--rule);
}

.offer_cta {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	font-family: var(--font_mono);
	font-size: 11px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink);
	padding-bottom: 4px;
	border-bottom: 1px solid var(--ink);
	transition:
		color 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease;
}
.offer_cta > * + * {
	margin-left: 8px;
}
.offer_cta:hover {
	color: var(--accent_dark);
	border-color: var(--accent_dark);
	transform: translateX(4px);
}

.offers_note {
	margin-top: 64px;
	padding-top: 32px;
	border-top: var(--hairline);
	font-size: 14px;
	line-height: 1.7;
	color: var(--ink_med);
	max-width: 720px;
}
.offers_note a {
	color: var(--accent_dark);
	border-bottom: 1px dotted currentColor;
}

/* =========================================================
   PARTNER
   ========================================================= */
.partner_tiers {
	padding: 96px 0 64px;
}
.partner_form_section {
	padding: 32px 0 110px;
}
.partner_layout {
	display: grid;
	grid-template-columns: 5fr 7fr;
	column-gap: 80px;
	align-items: start;
}

.partner_intro > * + * {
	margin-top: 22px;
}
.partner_heading {
	font-family: var(--font_display);
	font-size: clamp(32px, 3.4vw, 48px);
	line-height: 1.05;
	letter-spacing: -0.02em;
	color: var(--ink);
	font-variation-settings:
		"opsz" 144,
		"SOFT" 50;
}
.partner_paragraph {
	font-size: 16px;
	line-height: 1.7;
	color: var(--ink_med);
	max-width: 460px;
}
.partner_contacts {
	display: block;
	padding-top: 18px;
	border-top: var(--hairline);
}
.partner_contacts li {
	display: block;
	padding: 16px 0;
	border-bottom: var(--hairline);
}
.partner_contacts li:last-child {
	border-bottom: 0;
}

.partner_form {
	background: var(--paper);
	border: 1px solid var(--rule_strong);
	border-radius: 15px;
	padding: 36px 36px;
	display: flex;
	flex-direction: column;
}
.partner_form > * + * {
	margin-top: 22px;
}
.partner_field {
	display: block;
}
.partner_field_row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px;
}
.partner_label {
	display: block;
	font-family: var(--font_mono);
	font-size: 10px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ink_soft);
	/* margin-bottom: 8px; */
}
.partner_input {
	width: 100%;
	background: transparent;
	border: 0;
	padding: 8px 0 12px;
	font-family: var(--font_display);
	font-size: 18px;
	color: var(--ink);
	border-bottom: 1px solid var(--rule_strong);
	font-variation-settings:
		"opsz" 24,
		"SOFT" 50;
	outline: none;
	transition: border-color 0.25s ease;
}
.partner_input:focus {
	border-bottom-color: var(--accent);
}
.partner_input option {
	color: var(--ink);
	background: var(--paper);
}
.partner_textarea {
	resize: vertical;
	height: 110px;
	min-height: 110px;
	font-family: var(--font_body);
	font-size: 15px;
	line-height: 1.5;
	padding: 10px 0 12px;
}

.partner_submit_wrap {
	display: flex;
	margin-top: 8px;
}
.partner_submit {
	-webkit-appearance: none;
	appearance: none;
	border: 0;
	border-radius: 15px;
	background: var(--ink);
	color: var(--paper);
	font-family: var(--font_mono);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	padding: 18px 30px;
	cursor: pointer;
	transition:
		background-color 0.35s ease,
		transform 0.25s ease,
		box-shadow 0.3s ease;
	box-shadow: 0 12px 24px -8px rgba(58, 42, 27, 0.35);
}
.partner_submit:hover {
	background: var(--accent_dark);
	transform: translateY(-2px);
	box-shadow: 0 18px 32px -10px rgba(184, 120, 42, 0.55);
}
.partner_submit:active {
	transform: translateY(0);
}
.partner_submit:disabled {
	cursor: default;
}

.partner_form_section .wpcf7-form {
	background: var(--paper);
	border: 1px solid var(--rule_strong);
	border-radius: 15px;
	padding: 36px 36px;
	display: flex;
	flex-direction: column;
}

.partner_form_section .wpcf7-form > * + * {
	margin-top: 22px;
}

.partner_form_section .wpcf7-form fieldset {
	display: none;
}

.partner_field p {
	margin: 0;
}

.partner_field p br {
	display: none;
}

.wpcf7-form-control-wrap {
	display: block;
	position: relative;
	padding-bottom: 18px;
}

.wpcf7-not-valid-tip {
	position: absolute;
	bottom: 2px;
	left: 0;
	font-family: var(--font_mono);
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #b5432a;
	white-space: nowrap;
}

.partner_input.wpcf7-not-valid {
	border-bottom-color: #b5432a;
}

.partner_submit_wrap p {
	margin: 0;
	display: flex;
	align-items: center;
}

.wpcf7-spinner {
	/* display: none !important; */
	margin: 0 0 0 24px!important;
	flex: 0 0 24px;
}

.wpcf7-response-output {
	margin: 0 !important;
	padding: 12px 18px;
	border-radius: 8px;
	font-family: var(--font_mono);
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border: 1px solid transparent !important;
}

.wpcf7-form.invalid .wpcf7-response-output,
.wpcf7-form.unaccepted .wpcf7-response-output,
.wpcf7-form.spam .wpcf7-response-output {
	margin-top: 10px!important;
	/* color: #b5432a; */
	/* background: rgba(181, 67, 42, 0.07); */
	/* border-color: rgba(181, 67, 42, 0.25) !important; */
}

.wpcf7-form.sent .wpcf7-response-output {
	/* color: #2e7d5e; */
	/* background: rgba(46, 125, 94, 0.07); */
	/* border-color: rgba(46, 125, 94, 0.25) !important; */
}

/* =========================================================
   RESPONSIVE — mobile breakpoint < 850px
   ========================================================= */
@media (max-width: 1100px) {
	.hero_stats > * + * {
		margin-left: 24px;
		padding-left: 24px;
	}
	.stat_num {
		font-size: 36px;
	}
	.welcome_layout {
		column-gap: 48px;
	}
	.rooms_catalog_grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 40px 28px;
	}
}

@media (max-width: 850px) {
	[class$="_inner"] {
		padding: 0 20px;
	}

	/* HEADER — fixed-height row, predictable for the overlay offset */
	.site_header_inner {
		height: 86px;
		min-height: 0;
		padding-top: 0;
		padding-bottom: 0;
	}
	.site_header_inner > * + * {
		margin-left: 0;
	}

	.site_logo img {
		display: block;
		width: 70px;
		height: 70px;
		object-fit: contain;
	}

	.main_nav {
		display: none;
	}

	/* header_meta: оставляем только переключатель языков, CTA-кнопку скрываем */
	.header_meta {
		display: flex;
		margin-left: auto;
	}
	.header_meta > * + * {
		margin-left: 0;
	}
	.header_cta {
		display: none;
	}

	/* выпадающее меню языка прижимаем к правому краю кнопки, иначе уезжает за экран */
	.lang_switch_list {
		left: auto;
		right: 0;
		transform: translate(0, -6px);
	}
	.lang_switch:hover .lang_switch_list,
	.lang_switch:focus-within .lang_switch_list {
		transform: translate(0, 0);
	}

	/* burger as a properly centered flex container */
	.burger {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		margin-left: 14px;
		width: 40px;
		height: 40px;
		padding: 0;
	}
	.burger span {
		width: 22px;
		height: 1.5px;
		margin: 0;
	}
	.burger span + span {
		margin-top: 5px;
	}
	.burger.is_open span:nth-child(1) {
		transform: translateY(6.5px) rotate(45deg);
	}
	.burger.is_open span:nth-child(2) {
		opacity: 0;
	}
	.burger.is_open span:nth-child(3) {
		transform: translateY(-6.5px) rotate(-45deg);
	}

	/* when menu is open, header becomes solid (no blur / no transparency) */
	.site_header.menu_open {
		background: var(--paper);
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	/* full-screen menu overlay, sits exactly under the 86px header */
	.site_header.menu_open .main_nav {
		display: block;
		position: fixed;
		top: 86px;
		left: 0;
		right: 0;
		bottom: 0;
		background: var(--paper);
		border-top: var(--hairline);
		padding: 32px 20px 40px;
		overflow-y: auto;
		z-index: 49;
		animation: rise 0.32s cubic-bezier(0.2, 0.8, 0.2, 1) both;
	}
	.site_header.menu_open .main_nav_list {
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
	}
	.site_header.menu_open .main_nav_list > * {
		width: 100%;
	}
	.site_header.menu_open .main_nav_list > * + * {
		margin-left: 0;
		margin-top: 20px;
		padding-top: 20px;
		border-top: 1px solid var(--rule);
	}
	.site_header.menu_open .main_nav_link {
		display: block;
		font-family: var(--font_display);
		font-size: 28px;
		line-height: 1;
		color: var(--ink);
		padding: 0;
		font-variation-settings:
			"opsz" 144,
			"SOFT" 100;
		letter-spacing: -0.015em;
	}
	.site_header.menu_open .main_nav_link::after {
		display: none;
	}
	.site_header.menu_open .main_nav_link.is_active {
		color: var(--accent);
	}

	/* hero */
	.hero_section {
		min-height: calc(100dvh - 86px);
	}
	.about_intro {
		min-height: 380px;
	}
	.hero_section_inner {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.hero_above_card {
		flex-direction: column;
		align-items: flex-start;
	}
	.hero_above_card > * + * {
		margin-top: 16px;
	}
	.hero_stats {
		flex-wrap: nowrap;
		width: 100%;
		justify-content: space-around;
	}
	.hero_stats li {
		display: flex;
		align-items: center;
	}
	.hero_cta_row .btn {
		padding: 10px 15px;
	}
	.hero_stats > * + * {
		margin-left: 20px;
		padding-left: 20px;
		border-left: 1px solid rgba(255, 255, 255, 0.2);
	}
	.stat_num {
		font-size: 28px;
	}

	/* intro */
	.intro_section {
		padding: 64px 0;
	}
	.intro_section_inner {
		flex-direction: column;
		align-items: flex-start;
	}
	.intro_section_inner > * + * {
		margin-left: 0;
		margin-top: 20px;
	}
	.intro_title {
		font-size: clamp(38px, 9.6vw, 56px);
	}
	.intro_lead {
		max-width: none;
	}

	/* booking card */
	.booking_card {
		padding: 28px 24px 28px 28px;
		box-shadow:
			0 1px 0 0 var(--rule_strong) inset,
			0 0 0 1px var(--rule_strong) inset,
			0 24px 60px -40px rgba(58, 42, 27, 0.3);
	}
	.booking_card > * + * {
		margin-top: 22px;
	}
	.booking_header {
		padding-bottom: 22px;
	}
	.booking_header > * + * {
		margin-left: 16px;
	}
	.booking_seal {
		width: 48px;
		height: 48px;
	}
	.booking_form {
		grid-template-columns: 1fr;
		gap: 18px;
	}
	.booking_divider {
		display: none;
	}
	.booking_submit_wrap {
		width: 100%;
	}
	.booking_submit {
		width: 100%;
		padding: 18px;
	}

	/* welcome */
	.welcome_section {
		padding: 80px 0;
	}
	.welcome_layout {
		grid-template-columns: 1fr;
		row-gap: 48px;
	}
	.welcome_collage {
		height: 460px;
	}

	/* features */
	.features_section {
		padding: 80px 0;
	}
	.features_grid {
		grid-template-columns: 1fr 1fr;
		gap: 40px 32px;
	}

	/* strip */
	.strip_item {
		width: 260px;
		height: 180px;
	}

	/* rooms */
	.rooms_section {
		padding: 80px 0;
	}
	.rooms_grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}

	/* contact (in footer) */
	.footer_contact_block {
		padding: 72px 0 56px;
	}
	.footer_contact_layout {
		grid-template-columns: 1fr;
	}
	.contact_map {
		min-height: 360px;
	}
	.contact_card {
		padding: 32px 24px;
	}

	/* footer */
	.site_footer {
		padding: 0 0 24px;
	}
	.site_footer_inner {
		grid-template-columns: 1fr;
		gap: 36px;
		padding-top: 48px;
	}
	.footer_brand {
		text-align: center;
	}
	.footer_brand .footer_logo {
		margin-left: auto;
		margin-right: auto;
	}
	.footer_brand .footer_tagline {
		margin: 0 auto;
	}
	.footer_bottom {
		flex-direction: column;
		align-items: flex-start;
		margin-top: 40px;
	}
	.footer_bottom > * + * {
		margin-top: 8px;
	}

	/* page hero */
	.page_hero {
		padding: 88px 0 56px;
	}
	.main_about .page_hero {
		padding: 48px 0 32px;
	}
	.page_hero::after {
		background: linear-gradient(
			180deg,
			rgba(245, 238, 217, 0.55) 0%,
			rgba(245, 238, 217, 0.85) 55%,
			rgba(245, 238, 217, 0.95) 100%
		);
	}

	/* photo mosaic */
	.photo_mosaic_section {
		padding: 0 0 80px;
	}
	.photo_mosaic_track {
		grid-template-rows: 148px 148px;
		grid-auto-columns: 220px;
	}

	/* about gallery */
	.about_gallery {
		padding: 0 0 64px;
	}
	.about_gallery_grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 220px 220px;
	}

	/* about photo strip */
	.about_photo_strip {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: none;
	}
	.about_photo_strip img,
	.about_photo_strip video {
		aspect-ratio: 4 / 3;
		height: auto;
	}
	.about_photo_strip > :nth-child(n) {
		grid-column: auto;
		grid-row: auto;
	}
	.about_photo_strip > :nth-child(1),
	.about_photo_strip > :nth-child(8) {
		grid-column: 1 / span 2;
		aspect-ratio: 16 / 9;
	}

	/* about */
	.about_story {
		padding: 72px 0;
	}
	.about_story_layout {
		grid-template-columns: 1fr;
		row-gap: 40px;
	}
	.about_chapters {
		padding: 64px 0;
	}
	.about_chapters_inner > * + * {
		margin-top: 56px;
	}
	.about_chapter {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.about_chapter_reverse > .about_chapter_image {
		order: initial;
	}
	.about_values {
		padding: 72px 0;
	}
	.about_photo {
		padding: 0 0 72px;
	}

	/* rooms catalog */
	.rooms_catalog {
		padding: 72px 0;
	}
	.rooms_catalog_grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px 24px;
	}
	.catalog_name {
		font-size: 26px;
	}

	.catalog_gallery_arrow {
		opacity: 0.85;
	}

	.faq_section {
		padding: 72px 0;
	}
	.faq_layout {
		grid-template-columns: 1fr;
	}
	.faq_aside {
		display: none;
	}
	.faq_item details > summary {
		padding: 18px 0;
		font-size: 17px;
	}
	.faq_answer {
		padding: 0 0 20px;
	}

	/* offers */
	.offers_section {
		padding: 72px 0;
	}
	.offers_grid {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.offer_card {
		padding: 28px 24px;
	}
	.offers_note {
		margin-top: 48px;
		padding-top: 24px;
	}

	/* partner */
	.partner_tiers {
		padding: 72px 0 48px;
	}
	.partner_form_section {
		padding: 16px 0 80px;
	}
	.partner_layout {
		grid-template-columns: 1fr;
		row-gap: 40px;
	}
	.partner_form,
	.partner_form_section .wpcf7-form {
		padding: 28px 22px;
	}
	.partner_field_row {
		grid-template-columns: 1fr;
		gap: 22px;
	}
	.partner_submit {
		width: 100%;
		padding: 18px;
	}
	.partner_submit_wrap {
		width: 100%;
	}
}

@media (max-width: 480px) {
	[class$="_inner"] {
		padding: 0 16px;
	}
	.hero_section_inner {
		padding-top: 32px;
		padding-bottom: 32px;
	}
	.intro_section {
		padding: 56px 0;
	}
	.intro_title {
		font-size: clamp(34px, 10vw, 48px);
	}
	.hero_stats > * + * {
		margin-left: 12px;
		padding-left: 12px;
	}
	.stat_num {
		font-size: 24px;
	}
	.hero_stats li > * + * {
		margin-left: 8px;
	}
	.lead_heading {
		font-size: clamp(28px, 7.5vw, 38px);
	}
	.features_heading,
	.rooms_heading {
		font-size: clamp(28px, 7.5vw, 38px);
	}
	.features_grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}
	.feature_card {
		padding-top: 24px;
	}
	.room_name {
		font-size: 30px;
	}
	.rooms_catalog_grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	/* photo mosaic */
	.photo_mosaic_track {
		grid-template-rows: 108px 108px;
		grid-auto-columns: 158px;
	}

	/* about gallery */
	.about_gallery_grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}
	.about_gallery_img {
		aspect-ratio: 4 / 3;
		height: auto;
	}

	/* about photo strip */
	/* .about_photo_strip { grid-template-columns: 1fr; } */
}

/* =========================================================
   FLOATING CONTACT (fixed bottom-right phone widget)
   ========================================================= */
.floating_contact {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 60;
}

.floating_contact_trigger {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: var(--accent);
	color: var(--paper);
	box-shadow:
		0 10px 30px rgba(58, 42, 27, 0.28),
		0 2px 6px rgba(58, 42, 27, 0.18);
	transition:
		background-color 0.25s ease,
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.floating_contact_trigger:hover {
	background: var(--accent_dark);
	transform: translateY(-2px);
	box-shadow:
		0 14px 36px rgba(58, 42, 27, 0.32),
		0 3px 8px rgba(58, 42, 27, 0.2);
}

.floating_contact_trigger::after {
	content: "";
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	border: 1px solid var(--accent);
	opacity: 0.35;
	animation: floating_contact_pulse 2.4s ease-out infinite;
	pointer-events: none;
}

.floating_contact.is_open .floating_contact_trigger::after {
	animation: none;
	opacity: 0;
}

@keyframes floating_contact_pulse {
	0%   { transform: scale(0.92); opacity: 0.5; }
	70%  { transform: scale(1.25); opacity: 0;   }
	100% { transform: scale(1.25); opacity: 0;   }
}

.floating_contact_icon {
	display: block;
	transition:
		opacity 0.2s ease,
		transform 0.25s ease;
}

.floating_contact_icon_close {
	position: absolute;
	opacity: 0;
	transform: rotate(-45deg) scale(0.7);
}

.floating_contact.is_open .floating_contact_icon_phone {
	opacity: 0;
	transform: rotate(45deg) scale(0.7);
}

.floating_contact.is_open .floating_contact_icon_close {
	opacity: 1;
	transform: rotate(0) scale(1);
}

.floating_contact_panel {
	position: absolute;
	right: 0;
	bottom: 70px;
	min-width: 260px;
	padding: 18px 20px 16px;
	background: var(--paper);
	border: var(--hairline_strong);
	border-radius: 18px;
	box-shadow:
		0 18px 48px rgba(58, 42, 27, 0.22),
		0 4px 12px rgba(58, 42, 27, 0.12);
	opacity: 0;
	transform: translateY(12px) scale(0.96);
	transform-origin: bottom right;
	pointer-events: none;
	transition:
		opacity 0.25s ease,
		transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.floating_contact_panel::after {
	content: "";
	position: absolute;
	right: 22px;
	bottom: -7px;
	width: 14px;
	height: 14px;
	background: var(--paper);
	border-right: var(--hairline_strong);
	border-bottom: var(--hairline_strong);
	transform: rotate(45deg);
}

.floating_contact.is_open .floating_contact_panel {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

.floating_contact_label {
	display: block;
	font-family: var(--font_mono);
	font-size: 11px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ink_soft);
	margin-bottom: 12px;
}

.floating_contact_phone {
	display: flex;
	align-items: center;
	padding: 10px 12px;
	border: 1px solid var(--rule);
	border-radius: 12px;
	color: var(--ink);
	font-family: var(--font_body);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.01em;
	transition:
		background-color 0.25s ease,
		border-color 0.25s ease,
		color 0.25s ease;
}

.floating_contact_phone > * + * {
	margin-left: 10px;
}

.floating_contact_phone:hover {
	background: var(--accent_soft);
	border-color: var(--accent);
	color: var(--accent_dark);
}

.floating_contact_phone_icon {
	flex: 0 0 auto;
	color: var(--accent);
	transition: color 0.25s ease;
}

.floating_contact_phone:hover .floating_contact_phone_icon {
	color: var(--accent_dark);
}

.floating_contact_socials {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px dashed var(--rule);
}

.floating_contact_socials > * + * {
	margin-left: 12px;
}

.floating_contact_socials a {
	display: inline-flex;
	width: 38px;
	height: 38px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--rule_strong);
	border-radius: 12px;
	transition:
		background-color 0.25s ease,
		border-color 0.25s ease;
}

.floating_contact_socials a:hover {
	background: var(--ink);
	border-color: var(--ink);
}

.floating_contact_socials img {
	width: 16px;
	height: 16px;
	filter: brightness(0) saturate(100%) invert(13%) sepia(15%) saturate(800%) hue-rotate(2deg) brightness(95%) contrast(90%);
	transition: filter 0.25s ease;
}

.floating_contact_socials a:hover img {
	filter: brightness(0) invert(1);
}

@media (max-width: 850px) {
	.floating_contact {
		right: 16px;
		bottom: 16px;
	}

	.floating_contact_trigger {
		width: 52px;
		height: 52px;
	}

	.floating_contact_panel {
		min-width: 240px;
		bottom: 66px;
		padding: 16px 18px 14px;
	}
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
