/* Stayora — warm hospitality theme */

:root {
	--color-ink: #2a2420;
	--color-muted: #6b625c;
	--color-cream: #f7f2eb;
	--color-sand: #ebe3d6;
	--color-clay: #c4a882;
	--color-terracotta: #b85c38;
	--color-terracotta-dark: #9a4a2c;
	--color-paper: #ffffff;
	--color-border: #e5ddd2;
	--color-header-dark: #2a2420;
	--color-header-text: rgba(255, 255, 255, 0.9);
	--font-family: "Urbanist", system-ui, -apple-system, "Segoe UI", sans-serif;
	--font-heading: "Marcellus", Georgia, "Times New Roman", serif;
	--font-body: var(--font-family);
	--font-slide-title: "Marcellus", Georgia, "Times New Roman", serif;
	--layout-max: 1180px;
	--section-pad: clamp(3rem, 6vw, 5rem);
	--radius: 5px;
	--shadow: 0 12px 40px rgba(42, 36, 32, 0.08);
	--nav__panel-p: 1.25rem;
	--stayora-header-height: 112px;
	--stayora-hero-height: calc(100vh - var(--stayora-header-height));
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-family: var(--font-body);
}

body {
	margin: 0;
	background: var(--color-paper);
	color: var(--color-ink);
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.65;
}

h1, h2, h3, h4 {
	font-family: var(--font-heading);
	font-weight: 400;
	line-height: 1.2;
	color: var(--color-ink);
}

[class*="__title"] {
	font-family: var(--font-heading);
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: var(--color-terracotta);
	text-underline-offset: 0.15em;
}

a:hover {
	color: var(--color-terracotta-dark);
}

.layout-wrap {
	width: min(100% - 2rem, var(--layout-max));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	top: 1rem;
	left: 1rem;
	z-index: 100000;
	display: block;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	background: var(--color-paper);
	clip: auto;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	padding: 0.75rem 1.35rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--primary {
	background: var(--color-terracotta);
	color: #fff;
}

.btn--primary:hover {
	background: var(--color-terracotta-dark);
	color: #fff;
}

.btn--outline {
	background: transparent;
	border-color: var(--color-terracotta);
	color: var(--color-terracotta);
}

.btn--outline:hover {
	background: var(--color-terracotta);
	color: #fff;
}

.btn--block {
	width: 100%;
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--color-paper);
	box-shadow: 0 1px 0 var(--color-border);
	overflow: visible;
}

.site-header__top-bar {
	background: var(--color-header-dark);
	color: var(--color-header-text);
	font-size: 0.85rem;
}

.site-header__top-bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 40px;
	gap: 1rem;
}

.menu--inline {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.menu--inline a {
	color: inherit;
	text-decoration: none;
}

.site-header__top-bar-end {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-left: auto;
}

.lang-switcher {
	position: relative;
}

.lang-switcher ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.lang-switcher li:not(.current-lang) {
	display: none;
}

.lang-switcher:hover li:not(.current-lang) {
	display: block;
}

.lang-switcher:hover ul {
	position: absolute;
	top: 100%;
	left: 50%;
	translate: -50% 0;
	background: #fff;
	color: var(--color-ink);
	padding: 0.35rem 0;
	border-radius: 6px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.18);
	min-width: 100%;
	z-index: 100;
	white-space: nowrap;
}

.lang-switcher li {
	margin: 0;
}

.lang-switcher a {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	text-decoration: none;
	color: inherit;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	opacity: 0.85;
	transition: opacity 0.15s;
}

.lang-switcher a:hover,
.lang-switcher .current-lang a {
	opacity: 1;
}

.lang-switcher img {
	width: 18px;
	height: auto;
	border-radius: 2px;
}

.lang-switcher .current-lang a::after {
	display: inline-block;
	content: "▾";
	margin-left: 0.2rem;
	font-size: 0.55rem;
	line-height: 1;
	transition: transform 0.15s;
}

.lang-switcher:hover .current-lang a::after {
	transform: rotate(180deg);
}

.lang-switcher:hover a {
	padding: 0.3rem 0.75rem;
}

.site-header__top-bar .lang-switcher .current-lang a {
	text-decoration: none;
}

.site-mobile-nav__footer .lang-switcher {
	display: block;
	margin-bottom: 0.75rem;
}

.site-mobile-nav__footer .lang-switcher li:not(.current-lang) {
	display: block;
}

.site-mobile-nav__footer .lang-switcher ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
}

.site-mobile-nav__footer .lang-switcher .current-lang a::after {
	display: none;
}

.site-header__main {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: stretch;
	gap: 1rem;
	min-height: 72px;
	padding-block: 0;
	overflow: visible;
}

.site-header__brand {
	display: flex;
	align-items: center;
	justify-self: start;
	min-width: 0;
}

.site-header__brand .site-brand {
	display: flex;
	align-items: center;
}

.site-brand__link {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: var(--color-ink);
	font-family: var(--font-heading);
	font-size: 1.2rem;
	font-weight: 700;
}

.custom-logo-link {
	display: inline-flex;
	align-items: center;
	line-height: 0;
}

.custom-logo-link img {
	max-height: 44px;
	width: auto;
}

.site-header__nav {
	display: flex;
	align-items: stretch;
	justify-self: center;
	justify-content: center;
	min-width: 0;
	overflow: visible;
}

.site-navigation--primary {
	display: flex;
	align-items: stretch;
	height: 100%;
	overflow: visible;
}

.site-navigation--primary .menu {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
	height: 100%;
}

.site-navigation--primary .menu > li {
	display: flex;
	align-items: stretch;
	height: 100%;
	margin: 0;
}

.site-navigation--primary .menu > li > a {
	display: inline-flex;
	align-items: center;
	height: 100%;
	padding: 0 1.15rem;
	text-decoration: none;
	color: var(--color-ink);
	font-weight: 500;
	white-space: nowrap;
	transition: color 0.2s, background 0.2s;
}

.site-navigation--primary .menu > li > a:hover,
.site-navigation--primary .menu > li:hover > a {
	color: var(--color-terracotta);
	background: color-mix(in srgb, var(--color-cream) 65%, transparent);
}

.site-navigation--primary .menu-item-has-children {
	position: relative;
}

.site-navigation--primary .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 110;
	min-width: 220px;
	margin: 0;
	padding: 0;
	list-style: none;
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-top: 0;
	box-shadow: var(--shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(-6px);
	pointer-events: none;
	transition:
		opacity 0.18s ease-out,
		transform 0.18s ease-out,
		visibility 0.18s ease-out;
}

.site-navigation--primary .sub-menu li {
	margin: 0;
}

.site-navigation--primary .sub-menu a {
	display: block;
	padding: 0.6rem 1rem;
	text-decoration: none;
	color: var(--color-ink);
	font-weight: 500;
	line-height: 1.35;
	transition: color 0.15s, background 0.15s;
}

.site-navigation--primary .sub-menu a:hover {
	color: var(--color-terracotta);
	background: var(--color-cream);
}

.site-navigation--primary .menu-item-has-children:hover > .sub-menu,
.site-navigation--primary .menu-item-has-children:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
	animation: stayora-submenu-in 0.2s ease-out;
}

@keyframes stayora-submenu-in {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.site-nav__caret::after {
	content: "▾";
	margin-left: 0.2em;
	font-size: 0.75em;
}

.site-header__actions {
	display: flex;
	align-items: center;
	justify-self: end;
	gap: 1rem;
	flex-shrink: 0;
	padding-block: 0.65rem;
}

.site-header__top-bar-end .header-phone {
	flex-direction: row;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.8rem;
	color: inherit;
	text-decoration: none;
}

.site-header__top-bar-end .header-phone__label {
	display: none;
}

.site-header__top-bar-end .header-phone__number {
	font-size: inherit;
	color: inherit;
}

.header-phone {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: var(--color-ink);
	font-size: 0.8rem;
}

.header-phone__number {
	font-size: 0.95rem;
}

.site-header__account {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.site-header__account-link {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	text-decoration: none;
	color: var(--color-ink);
	font-size: 0.9rem;
	font-weight: 600;
	white-space: nowrap;
}

.site-header__account-link:hover {
	color: var(--color-terracotta);
}

.site-header__account-link .stayora-icon {
	font-size: 1.25rem;
}

.site-header__account-link--register {
	padding: 0.4rem 0.9rem;
	border: 1px solid var(--color-border);
	border-radius: 8px;
}

.site-header__account-link--register:hover {
	border-color: var(--color-terracotta);
}

.site-header__account-link--logout {
	color: var(--color-muted);
	font-weight: 500;
}

.site-header__account--mobile {
	flex-direction: column;
	align-items: stretch;
	gap: 0.65rem;
	margin-bottom: 0.85rem;
}

.site-menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	align-self: center;
	justify-self: end;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	background: var(--color-paper);
	cursor: pointer;
}

.site-menu-toggle__icon,
.site-menu-toggle__icon::before,
.site-menu-toggle__icon::after {
	display: block;
	width: 20px;
	height: 2px;
	margin: 0 auto;
	background: var(--color-ink);
}

.site-menu-toggle__icon {
	position: relative;
}

.site-menu-toggle__icon::before,
.site-menu-toggle__icon::after {
	content: "";
	position: absolute;
	left: 0;
}

.site-menu-toggle__icon::before { top: -6px; }
.site-menu-toggle__icon::after { top: 6px; }

.site-socials {
	display: flex;
	gap: 0.5rem;
}

.site-socials__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	color: inherit;
	text-decoration: none;
	font-size: 0.7rem;
	font-weight: 700;
}

/* Mobile nav */
.site-mobile-nav {
	position: fixed;
	inset: 0;
	z-index: 200;
	pointer-events: none;
	visibility: hidden;
}

.site-mobile-nav.is-open {
	pointer-events: auto;
	visibility: visible;
}

.site-mobile-nav__overlay {
	position: absolute;
	inset: 0;
	border: 0;
	background: rgba(42, 36, 32, 0.45);
	cursor: pointer;
}

.site-mobile-nav__panel {
	position: absolute;
	top: 0;
	right: 0;
	width: min(100%, 320px);
	height: 100%;
	padding: var(--nav__panel-p);
	background: var(--color-paper);
	transform: translateX(100%);
	transition: transform 0.25s ease;
	overflow-y: auto;
}

.site-mobile-nav.is-open .site-mobile-nav__panel {
	transform: translateX(0);
}

body.is-mobile-nav-open {
	overflow: hidden;
}

.site-mobile-nav__header {
    display: flex;
    padding: 0;
    min-height: 44px;
    margin-bottom: 1rem;
    flex-direction: row-reverse;
    gap: 2rem;
    align-items: center;
}

.site-mobile-nav__booking {
	margin-bottom: 1.25rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--color-border);
}

.site-mobile-nav__close {
	width: 40px;
    height: auto;
    border: 0;
    background: var(--color-terracotta);
    color: var(--color-cream);
    font-size: 1.75rem;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1/1;
}

.site-navigation--mobile .menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-navigation--mobile .menu > li > a {
	display: flex;
	align-items: center;
	min-height: 52px;
	padding: 0.85rem 0;
	text-decoration: none;
	color: var(--color-ink);
	font-weight: 600;
}

.site-navigation--mobile .menu-item-has-children {
	position: relative;
}

.site-navigation--mobile .menu-item-has-children > a {
	padding-right: 3.25rem;
}

.site-navigation--mobile .menu-item-has-children > a .site-nav__caret {
	display: none;
}

.site-mobile-nav__submenu-toggle {
	position: absolute;
	top: 0;
	right: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 52px;
	margin: 0;
	border: 0;
	background: transparent;
	color: var(--color-muted);
	cursor: pointer;
}

.site-mobile-nav__submenu-toggle-icon {
	font-size: 1.5rem;
	font-weight: 300;
	line-height: 1;
}

.site-mobile-nav__footer {
	margin-top: 1.5rem;
	display: grid;
	gap: 0.75rem;
}

.site-navigation--mobile .menu-item-has-children > .sub-menu {
	display: none;
	margin: 0;
	padding: 0;
	list-style: none;
	background: var(--color-cream);
	border-top: 1px solid var(--color-border);
}

.site-navigation--mobile .menu-item-has-children.is-expanded > .sub-menu {
	display: block;
	animation: mobile-sub-in 0.2s ease-out;
}

@keyframes mobile-sub-in {
	from {
		opacity: 0;
		transform: translateY(-6px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}


.site-navigation--mobile .sub-menu a {
	padding: 0.8rem;
	font-weight: 500;
	text-decoration: none;
	display: block;
}

.site-navigation--mobile .sub-menu a:hover {
	background: var(--color-sand);
}

/* Sections */
.home-section {
	padding-block: var(--section-pad);
}

.section--cream {
	background: var(--color-cream);
}

.section-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 2rem;
}

.section-header__eyebrow {
	margin: 0 0 0.35rem;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-terracotta);
}

.section-header__title {
	margin: 0;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.section-header__link {
	flex-shrink: 0;
	font-weight: 600;
	text-decoration: none;
}

/* About (homepage) */
.home-about {
	position: relative;
	overflow: hidden;
}

.home-about::before {
	content: "";
	position: absolute;
	top: -12%;
	right: -8%;
	width: min(42vw, 420px);
	height: min(42vw, 420px);
	border-radius: 50%;
	background: radial-gradient(circle, rgba(196, 168, 130, 0.22) 0%, transparent 70%);
	pointer-events: none;
}

.home-about__inner {
	position: relative;
	z-index: 1;
}

.home-about__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.home-about__media {
	position: relative;
	margin: 0;
}

.home-about__frame {
	position: relative;
	border-radius: calc(var(--radius) + 4px);
	overflow: hidden;
	box-shadow: var(--shadow);
	background: var(--color-sand);
	aspect-ratio: 4 / 3;
	will-change: transform;
}

.home-about__image,
.home-about__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home-about__placeholder {
	background:
		linear-gradient(145deg, var(--color-sand) 0%, var(--color-clay) 55%, var(--color-terracotta) 120%);
}

.home-about__accent {
	position: absolute;
	left: -1.25rem;
	bottom: 2.5rem;
	width: clamp(4.5rem, 12vw, 6.5rem);
	height: clamp(4.5rem, 12vw, 6.5rem);
	border-radius: var(--radius);
	background: var(--color-terracotta);
	opacity: 0.92;
	box-shadow: 0 18px 36px rgba(184, 92, 56, 0.28);
	z-index: -1;
}

.home-about__content {
	max-width: 34rem;
}

.home-about__eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-terracotta);
}

.home-about__title {
	margin: 0 0 1.25rem;
	font-size: clamp(2rem, 4.5vw, 3rem);
	line-height: 1.15;
}

.home-about__title::after {
	content: "";
	display: block;
	width: 3.5rem;
	height: 2px;
	margin-top: 1.25rem;
	background: linear-gradient(90deg, var(--color-terracotta), var(--color-clay));
	transform-origin: left center;
}

.home-about__text {
	color: var(--color-muted);
	font-size: 1.05rem;
}

.home-about__text p {
	margin: 0 0 1rem;
}

.home-about__text p:last-child {
	margin-bottom: 0;
}

.home-about__actions {
	margin: 2rem 0 0;
}

.home-about__cta {
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-about__cta:hover {
	transform: translateY(-2px);
}

/* Scroll reveal */
[data-stayora-reveal] {
	opacity: 0;
	transition:
		opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-stayora-reveal="fade-up"] {
	transform: translate3d(0, 36px, 0);
}

[data-stayora-reveal="scale"] {
	transform: scale(0.94) translate3d(0, 28px, 0);
}

[data-stayora-reveal="pop"] {
	transform: scale(0.55) rotate(-6deg);
}

[data-stayora-reveal].is-visible {
	opacity: 1;
	transform: none;
}

.home-about__title.is-visible::after {
	animation: stayora-about-line-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

@keyframes stayora-about-line-in {
	from {
		transform: scaleX(0);
		opacity: 0;
	}

	to {
		transform: scaleX(1);
		opacity: 1;
	}
}

@media (max-width: 900px) {
	.home-about__grid {
		grid-template-columns: 1fr;
	}

	.home-about__media {
		max-width: 28rem;
		margin-inline: auto;
		width: 100%;
	}

	.home-about__content {
		max-width: none;
		text-align: center;
	}

	.home-about__title::after {
		margin-inline: auto;
	}

	.home-about__actions {
		display: flex;
		justify-content: center;
	}
}

@media (prefers-reduced-motion: reduce) {
	[data-stayora-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.home-about__frame[data-stayora-parallax] {
		transform: none !important;
	}

	.home-about__title::after {
		animation: none;
		transform: none;
	}
}

/* Hero */
.home-hero {
	position: relative;
	padding-block: 0;
	margin-block: 0;
	color: #fff;
	--stayora-hero-height: calc(100dvh - var(--stayora-header-height));
	--vayor-hero-height: var(--stayora-hero-height);
	--vayor-accent-2: var(--color-terracotta);
	--vayor-ink: #fff;
	overflow: visible;
}

.home-hero__media {
	position: relative;
	height: var(--stayora-hero-height);
	min-height: var(--stayora-hero-height);
	overflow: hidden;
}

.home-hero__slideshow,
.home-hero .vsm-slideshow {
	display: block;
	width: 100%;
	height: 100%;
	min-height: var(--stayora-hero-height);
	--vsm-height: var(--stayora-hero-height) !important;
	--vsm-height-mobile: var(--stayora-hero-height) !important;
}

.home-hero .vsm-slideshow__viewport,
.home-hero .vsm-slide,
.home-hero .vsm-slide__shell {
	min-height: var(--stayora-hero-height);
	height: var(--stayora-hero-height);
}

.home-hero .vsm-slide__media {
	transform-origin: center center;
}

.home-hero .vsm-slide--zoom-in.is-active .vsm-slide__media {
	animation-name: vsm-ken-burns-zoom-in !important;
	animation-duration: var(--vsm-slide-duration, 6500ms) !important;
	animation-timing-function: linear !important;
	animation-fill-mode: forwards !important;
}

.home-hero .vsm-slide--zoom-out.is-active .vsm-slide__media {
	animation-name: vsm-ken-burns-zoom-out !important;
	animation-duration: var(--vsm-slide-duration, 6500ms) !important;
	animation-timing-function: linear !important;
	animation-fill-mode: forwards !important;
}

.home-hero .vsm-slide__shell.container {
	width: min(100% - 2rem, var(--layout-max));
	max-width: 100%;
	margin-inline: auto;
	padding-inline: 0;
}

@keyframes stayora-hero-content-fade-in {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.home-hero .vsm-slide__content {
	opacity: 0;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.home-hero .vsm-slide.is-active .vsm-slide__content {
	animation: stayora-hero-content-fade-in 0.9s ease-out 0.2s forwards;
}

.home-hero .vsm-slide:not(.is-active) .vsm-slide__content {
	animation: none;
	opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
	.home-hero .vsm-slide__content {
		opacity: 1;
		animation: none !important;
	}
}

.home-hero .vsm-slide__eyebrow {
	font-family: var(--font-body);
	font-size: clamp(1.1rem, 2vw, 1.5rem);
	font-weight: 600;
	color: #FFFFFF;
	text-shadow: none;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.home-hero .vsm-slide__title {
	font-family: var(--font-slide-title);
	font-weight: 400;
	line-height: 1.1;
	color: #fff;
	margin: 0;
	font-size: clamp(2.5rem, 5vw, 7.5rem);
	text-wrap: balance;
	  font-weight: normal;
	  line-height: 1;
}

.home-hero .vsm-slide__title span {
	color: inherit;
}

.home-hero .vsm-slide__buttons .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.35rem;
	border-radius: 999px;
	font-family: var(--font-body);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	border: 1px solid transparent;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.home-hero .vsm-slide__buttons .button {
	background: var(--color-terracotta);
	color: #fff;
}

.home-hero .vsm-slide__buttons .button:hover {
	background: var(--color-terracotta-dark);
	color: #fff;
}

.home-hero__search {
	position: relative;
	z-index: 6;
	margin-top: clamp(-3rem, -5vw, -4rem);
	padding-inline: clamp(1rem, 3vw, 1.5rem);
	pointer-events: none;
}

.home-hero__search > * {
	pointer-events: auto;
}

.home-hero + .home-section,
.home-hero + .home-about {
	padding-top: clamp(2rem, 4vw, 3rem);
}

.room-archive-hero {
	position: relative;
	margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.room-archive-hero__search {
	position: relative;
	z-index: 4;
	margin-top: clamp(-3rem, -5vw, -4rem);
	padding-inline: clamp(1rem, 3vw, 1.5rem);
	pointer-events: none;
}

.room-archive-hero__search > * {
	pointer-events: auto;
}

.room-archive__search-summary {
	margin-bottom: 1.5rem;
	padding: 0.9rem 1.1rem;
	border-radius: var(--radius);
	background: var(--color-cream);
	color: var(--color-ink);
	font-size: 0.95rem;
	font-weight: 600;
}

.room-archive__empty {
	padding: clamp(2rem, 5vw, 3rem);
	text-align: center;
	color: var(--color-muted);
}

/* Featured rooms (homepage) */
.home-rooms--featured {
	background: var(--color-paper);
}

.home-rooms__header {
	text-align: center;
	max-width: 40rem;
	margin: 0 auto 2.75rem;
}

.home-rooms__eyebrow {
	margin: 0 0 0.65rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-muted);
}

.home-rooms__title {
	margin: 0;
	font-size: clamp(2rem, 4.5vw, 2.85rem);
	line-height: 1.15;
}

.home-rooms--featured .layout-wrap {
	overflow: visible;
}

.featured-rooms-carousel {
	--carousel-gap: clamp(1.25rem, 2.5vw, 2rem);
	--carousel-per-view: 3;
	--carousel-shadow-pad: 1.25rem;
	position: relative;
	padding-inline: clamp(2.5rem, 4vw, 3.25rem);
}

.featured-rooms-carousel__viewport {
	container-type: inline-size;
	overflow-x: auto;
	overflow-y: clip;
	overflow-clip-margin-block: var(--carousel-shadow-pad);
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.featured-rooms-carousel__viewport::-webkit-scrollbar {
	display: none;
}

.featured-rooms-carousel__track {
	display: flex;
	align-items: stretch;
	gap: var(--carousel-gap);
	width: max-content;
	/* Shadow room lives on the track (inside scroll content), not viewport padding — keeps 3-across math exact. */
	padding-block: calc(var(--carousel-shadow-pad) + 0.35rem) calc(var(--carousel-shadow-pad) + 0.75rem);
	padding-inline: 2px;
}

.featured-rooms-carousel .featured-room-card {
	flex: 0 0 calc((100cqi - (var(--carousel-per-view) - 1) * var(--carousel-gap)) / var(--carousel-per-view));
	scroll-snap-align: start;
	scroll-snap-stop: always;
	min-width: 0;
}

.featured-rooms-carousel__arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	width: 2.75rem;
	height: 2.75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border-radius: 50%;
	border: none;
	background: var(--color-terracotta);
	color: var(--color-cream);
	cursor: pointer;
	transform: translateY(-50%);
	transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.featured-rooms-carousel__arrow:hover {
	transform: translateY(calc(-50% - 2px));
}

.featured-rooms-carousel__arrow--prev {
	left: -0.25rem;
}

.featured-rooms-carousel__arrow--next {
	right: -0.25rem;
}

.featured-rooms-carousel__dots {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: calc(2rem - var(--carousel-shadow-pad, 1.25rem));
}

.featured-rooms-carousel__dot {
	width: 0.55rem;
	height: 0.55rem;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: var(--color-border);
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease;
}

.featured-rooms-carousel__dot.is-active {
	background: var(--color-terracotta);
	transform: scale(1.25);
}

.featured-room-card {
	background: var(--color-paper);
	border-radius: calc(var(--radius));
	overflow: hidden;
	border: 1px solid var(--color-border);
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.featured-room-card__media {
	position: relative;
}

.featured-room-card__media-link {
	display: block;
	text-decoration: none;
}

.featured-room-card__image {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.featured-room-card__image--placeholder {
	background: linear-gradient(135deg, var(--color-sand), var(--color-clay));
}

.featured-room-card__badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	padding: 0.35rem 0.7rem;
	background: #302b63;
	color: #fff;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	border-radius: 4px;
	line-height: 1;
	z-index: 2;
}

.featured-room-card__wishlist {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 2.5rem;
	height: 2.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	color: var(--color-ink);
	box-shadow: 0 6px 18px rgba(42, 36, 32, 0.12);
	cursor: pointer;
	z-index: 2;
	transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.featured-room-card__wishlist:hover {
	transform: scale(1.06);
	color: var(--color-terracotta);
}

.featured-room-card__wishlist.is-active {
	background: var(--color-terracotta);
	color: #fff;
	box-shadow: 0 6px 18px rgba(184, 92, 56, 0.32);
}

.featured-room-card__wishlist.is-active:hover {
	color: #fff;
	background: var(--color-terracotta);
	filter: brightness(0.94);
}

.featured-room-card__wishlist .stayora-icon {
	font-size: 1.125rem;
}

.featured-room-card__media-tools {
	position: absolute;
	right: 1rem;
	bottom: 1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.4rem 0.55rem;
	background: rgba(255, 255, 255, 0.96);
	border-radius: 8px;
	box-shadow: 0 8px 20px rgba(42, 36, 32, 0.12);
	z-index: 2;
}

.featured-room-card__tool {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	color: var(--color-ink);
}

.featured-room-card__tool-count {
	position: absolute;
	top: -0.2rem;
	right: -0.25rem;
	min-width: 1rem;
	height: 1rem;
	padding: 0 0.2rem;
	border-radius: 999px;
	background: #e74c3c;
	color: #fff;
	font-size: 0.62rem;
	font-weight: 700;
	line-height: 1rem;
	text-align: center;
}

.featured-room-card__body {
	padding: 1.35rem;
}

.featured-room-card__rating-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0.85rem;
}

.featured-room-card__stars {
	position: relative;
	display: inline-block;
	font-size: 0.95rem;
	line-height: 1;
	letter-spacing: 0.08em;
}

.featured-room-card__stars-track {
	color: #e5ddd2;
}

.featured-room-card__stars-fill {
	position: absolute;
	top: 0;
	left: 0;
	overflow: hidden;
	white-space: nowrap;
	color: #f5a623;
}

.featured-room-card__rating-value {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-muted);
}

.featured-room-card__title {
	margin: 0 0 0.65rem;
	font-size: clamp(1.35rem, 2.2vw, 1.65rem);
	line-height: 1.2;
}

.featured-room-card__title a {
	color: inherit;
	text-decoration: none;
}

.featured-room-card__title a:hover {
	color: var(--color-terracotta);
}

.featured-room-card__price {
	margin: 0 0 1.15rem;
	line-height: 1.2;
}

.featured-room-card__price-amount {
	font-size: clamp(1.35rem, 2vw, 1.55rem);
	font-weight: 700;
	color: #ff7052;
}

.featured-room-card__price-unit {
	margin-left: 0.2rem;
	font-size: 0.9rem;
	font-weight: 500;
	color: var(--color-muted);
}

.featured-room-card__meta-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin: 0;
	padding: 0.95rem 1.35rem;
	background: #f9f5f0;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--color-ink);
}

@media (max-width: 1024px) {
	.featured-rooms-carousel {
		--carousel-per-view: 2;
	}

	.featured-rooms-carousel__arrow--prev {
		left: 0;
	}

	.featured-rooms-carousel__arrow--next {
		right: 0;
	}
}

@media (max-width: 680px) {
	.featured-rooms-carousel {
		--carousel-per-view: 1;
	}

	.featured-rooms-carousel__arrow {
		width: 2.35rem;
		height: 2.35rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	.featured-rooms-carousel__viewport {
		scroll-behavior: auto;
	}

	.featured-room-card {
		transition: none;
	}

	.featured-room-card:hover {
		transform: none;
	}
}

/* Grids & cards */
.grid {
	display: grid;
	gap: 1.5rem;
}

.grid--rooms {
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.grid--rooms .featured-room-card {
	height: 100%;
}

.grid--experiences,
.grid--offers {
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.card {
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow);
}

.card__media img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
}

.card__body {
	padding: 1.25rem;
}

.card__title {
	margin: 0 0 0.5rem;
	font-size: 1.35rem;
}

.card__title a {
	color: inherit;
	text-decoration: none;
}

.card__meta,
.card__meta-list {
	color: var(--color-muted);
	font-size: 0.9rem;
}

.card__meta-list {
	list-style: none;
	margin: 0 0 0.75rem;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1rem;
}

.card__excerpt {
	color: var(--color-muted);
	font-size: 0.95rem;
}

.card__price {
	margin: 1rem 0;
}

.card__price strong {
	font-size: 1.25rem;
	color: var(--color-terracotta);
}

.card__badge {
	display: inline-block;
	margin: 0 0 0.5rem;
	padding: 0.25rem 0.65rem;
	background: var(--color-cream);
	color: var(--color-terracotta);
	border-radius: 999px;
	font-size: 0.8rem;
	font-weight: 700;
}

.card--testimonial {
	padding: 1.5rem;
}

.card__cite {
	font-style: normal;
	font-weight: 600;
}

.rating-stars {
	color: var(--color-clay);
	margin-bottom: 0.75rem;
}

.rating-stars__star.is-filled {
	color: var(--color-terracotta);
}

/* Material Symbols (thin) — use .stayora-icon only; avoid Google's .material-symbols-outlined CDN class */
.stayora-icon {
	font-family: "Material Symbols Outlined", sans-serif;
	font-weight: normal;
	font-style: normal;
	font-size: inherit;
	line-height: 1;
	letter-spacing: normal;
	text-transform: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	white-space: nowrap;
	word-wrap: normal;
	direction: ltr;
	font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


/* Homepage amenities & benefits */
.home-amenities {
	position: relative;
	overflow: hidden;
	background-color: var(--color-cream);
	background-image:
		radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.55) 0%, transparent 45%),
		radial-gradient(circle at 80% 90%, rgba(196, 168, 130, 0.12) 0%, transparent 40%);
}

.home-amenities::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: min(58%, 640px);
	height: 42%;
	background: var(--color-paper);
	clip-path: polygon(0 100%, 0 28%, 100% 100%);
	pointer-events: none;
	z-index: 0;
}

.home-amenities__inner {
	position: relative;
	z-index: 1;
}

.home-amenities__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
	gap: clamp(2rem, 4vw, 3.5rem);
	align-items: center;
}

.home-amenities__intro {
	position: relative;
	max-width: 26rem;
}

.home-amenities__mark {
	margin-bottom: 1rem;
	color: var(--color-terracotta);
}

.home-amenities__mark-icon {
	font-size: 2.75rem;
}

.home-amenities__eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-muted);
}

.home-amenities__title {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 4vw, 2.85rem);
	line-height: 1.12;
	color: #1e2a36;
}

.home-amenities__text {
	margin: 0 0 2rem;
	color: var(--color-muted);
	font-size: 0.98rem;
	line-height: 1.7;
}

.home-amenities__video {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	padding: 0;
	border: none;
	background: none;
	text-decoration: none;
	text-align: left;
	color: #1e2a36;
	max-width: 100%;
	cursor: pointer;
	font: inherit;
}

.home-amenities__video--static {
	cursor: default;
}

.home-amenities__video-play {
	flex-shrink: 0;
	width: 4.75rem;
	height: 4.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 4px solid var(--color-paper);
	background: var(--color-terracotta);
	box-shadow: 0 12px 28px rgba(42, 36, 32, 0.12);
}

.home-amenities__video-play-icon {
	font-size: 2.35rem;
	width: 2.35rem;
	height: 2.35rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: none;
	color: #fff;
	line-height: 1;
	/* Optical center for play triangle glyph */
	margin-left: 0.15rem;
}

.home-amenities__video-copy {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
	min-width: 0;
}

.home-amenities__video-title {
	font-family: var(--font-heading);
	font-size: 1.35rem;
	font-weight: 600;
	line-height: 1.2;
}

.home-amenities__video-duration {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--color-muted);
}

.home-amenities__video:hover .home-amenities__video-play {
	transform: scale(1.04);
	transition: transform 0.25s ease;
}

.amenity-cards {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1rem, 2vw, 1.35rem);
}

.amenity-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 15.5rem;
	padding: 1.75rem 1.6rem 1.5rem;
	border-radius: calc(var(--radius) + 2px);
	background: var(--color-paper);
	box-shadow: 0 14px 36px rgba(42, 36, 32, 0.08);
	overflow: hidden;
}

.amenity-card--dark {
	background: #1e2a36;
	color: rgba(255, 255, 255, 0.92);
}

.amenity-card__icon-wrap {
	margin-bottom: 1.15rem;
	color: var(--color-terracotta);
}

.amenity-card__icon {
	font-size: 4rem;
}

.amenity-card__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.2rem, 2vw, 1.45rem);
	line-height: 1.2;
}

.amenity-card--dark .amenity-card__title {
	color: #fff;
}

.amenity-card__text {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.65;
	color: var(--color-muted);
}

.amenity-card--dark .amenity-card__text {
	color: rgba(255, 255, 255, 0.72);
}

.amenity-card__skyline {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 3.5rem;
	opacity: 0.08;
	background:
		linear-gradient(to top, currentColor, transparent),
		repeating-linear-gradient(
			90deg,
			currentColor 0,
			currentColor 2px,
			transparent 2px,
			transparent 18px
		);
	mask-image: linear-gradient(to top, #000 30%, transparent 100%);
	pointer-events: none;
}

.amenity-card--dark .amenity-card__skyline {
	opacity: 0.14;
	color: #fff;
}

@media (max-width: 960px) {
	.home-amenities__grid {
		grid-template-columns: 1fr;
	}

	.home-amenities__intro {
		max-width: none;
		text-align: center;
	}

	.home-amenities__video {
		justify-content: center;
	}

}

@media (max-width: 560px) {
	.amenity-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Homepage promo — fixed background parallax */
.home-promo {
	--home-promo-coral: #f26b53;
	--home-promo-navy: #2c2e3e;
	position: relative;
	z-index: 1;
	min-height: clamp(32rem, 88vh, 52rem);
	display: flex;
	align-items: center;
	padding-block: clamp(4rem, 10vh, 6rem);
	background-image: var(--home-promo-bg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	color: #fff;
}

.home-promo__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(105deg, rgba(30, 42, 54, 0.82) 0%, rgba(30, 42, 54, 0.45) 48%, rgba(30, 42, 54, 0.35) 100%);
	pointer-events: none;
}

.home-promo__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 0 10rem;
}

.home-promo__grid {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.home-promo__copy {
	max-width: 36rem;
}

.home-promo__eyebrow-row {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.home-promo__eyebrow {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.88);
	white-space: nowrap;
}

.home-promo__eyebrow-line {
	flex: 1;
	max-width: 7rem;
	height: 1px;
	background: rgba(255, 255, 255, 0.55);
	position: relative;
}

.home-promo__eyebrow-line::after {
	content: "";
	position: absolute;
	right: -0.35rem;
	top: 50%;
	width: 0.45rem;
	height: 0.45rem;
	border-top: 1px solid rgba(255, 255, 255, 0.55);
	border-right: 1px solid rgba(255, 255, 255, 0.55);
	transform: translateY(-50%) rotate(45deg);
}

.home-promo__title {
	margin: 0 0 2rem;
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	line-height: 1.1;
	color: #fff;
}

.home-promo__discover {
	background: var(--home-promo-coral);
	border-color: var(--home-promo-coral);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	border-radius: 4px;
	padding: 0.9rem 1.5rem;
}

.home-promo__discover:hover {
	background: #e05a44;
	border-color: #e05a44;
	color: #fff;
}

.home-promo__card {
	position: relative;
	align-self: start;

}

.home-promo__card-frame {
	position: relative;
	padding: 2rem 1.75rem 1.75rem;
	background: var(--home-promo-coral);
	color: #fff;
	box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}



.home-promo__card-frame::before {
	top: 0.65rem;
	left: 0.65rem;
	border-width: 1px 0 0 1px;
}

.home-promo__card-frame::after {
	top: 0.65rem;
	right: 0.65rem;
	border-width: 1px 1px 0 0;
}

.home-promo__card-title {
	margin: 0 0 1.5rem;
	padding-inline: 0.25rem;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	line-height: 1.2;
	color: #fff;
	text-align: center;
}

.home-promo__features {
	list-style: none;
	margin: 0 0 1.75rem;
	padding: 0;
	display: grid;
	gap: 1.1rem;
}

.home-promo__feature {
	display: flex;
	align-items: center;
	gap: 0.85rem;
}

.home-promo__feature-icon {
	flex-shrink: 0;
	width: 2.25rem;
	height: 2.25rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(255, 255, 255, 0.75);
	border-radius: 50%;
}

.home-promo__feature-icon .stayora-icon {
	font-size: 1.35rem;
	color: #fff;
}

.home-promo__feature-label {
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.35;
}

.home-promo__book {
	display: flex;
	width: 100%;
	justify-content: center;
	background: var(--home-promo-navy);
	border-color: var(--home-promo-navy);
	color: #fff;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	border-radius: 4px;
	padding: 0.95rem 1.25rem;
}

.home-promo__book:hover {
	background: #1f212f;
	border-color: #1f212f;
	color: #fff;
}

.home-promo__card-chevron {
	display: block;
	width: 10rem;
	height: 2.25rem;
	margin: 0 auto;
	background: var(--home-promo-coral);
	clip-path: polygon(50% 100%, 0 0, 100% 0);
	filter: drop-shadow(0 10px 12px rgba(0, 0, 0, 0.12));
}

@media (max-width: 900px) {
	.home-promo__grid {
		grid-template-columns: 1fr;
	}

	.home-promo__card {
		width: 100%;
		margin-inline: auto;
	}

	.home-promo__copy {
		max-width: none;
		text-align: center;
	}

	.home-promo__eyebrow-row {
		justify-content: center;
	}

	.home-promo__actions {
		display: flex;
		justify-content: center;
	}
}

@media (max-width: 680px) {
	.home-promo {
		background-attachment: scroll;
		min-height: auto;
	}

	.home-promo__inner {
		width: 100%;
		max-width: none;
		padding-inline: 1.25rem;
		box-sizing: border-box;
	}

	.home-promo__eyebrow-line {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.home-promo {
		background-attachment: scroll;
	}
}

/* Room template amenities list */
.amenities-list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.amenities-list__item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	background: var(--color-paper);
	border-radius: var(--radius);
}

.amenities-list__icon:not(.stayora-icon)::before {
	content: "✓";
	color: var(--color-terracotta);
	font-weight: 700;
}

.amenities-list--compact .amenities-list__item {
	background: transparent;
	border: 0;
	padding: 0.35rem 0;
}

/* Gallery */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 0.75rem;
}

.gallery-grid__item {
	margin: 0;
	border-radius: var(--radius);
	overflow: hidden;
	cursor: zoom-in;
}

.gallery-grid__item img {
	width: 100%;
	aspect-ratio: 4/3;
	object-fit: cover;
}

.gallery-lightbox {
	position: fixed;
	inset: 0;
	z-index: 300;
	display: none;
	align-items: center;
	justify-content: center;
	background: rgba(42, 36, 32, 0.92);
	padding: 2rem;
}

.gallery-lightbox.is-open {
	display: flex;
}

.gallery-lightbox img {
	max-width: 100%;
	max-height: 90vh;
	border-radius: var(--radius);
}

.gallery-lightbox__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	border: 0;
	background: #fff;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 1.5rem;
	cursor: pointer;
}

/* Amenities video modal */
.stayora-video-modal {
	position: fixed;
	inset: 0;
	z-index: 310;
	display: none;
	align-items: center;
	justify-content: center;
	padding: clamp(1rem, 3vw, 2rem);
}

.stayora-video-modal.is-open {
	display: flex;
}

.stayora-video-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(30, 42, 54, 0.88);
}

.stayora-video-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 960px);
}

.stayora-video-modal__close {
	position: absolute;
	top: -0.25rem;
	right: 0;
	z-index: 2;
	transform: translateY(-100%);
	border: 0;
	background: #fff;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	font-size: 1.65rem;
	line-height: 1;
	cursor: pointer;
	box-shadow: var(--shadow);
}

.stayora-video-modal__player {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #000;
	border-radius: calc(var(--radius) + 2px);
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.stayora-video-modal__player iframe,
.stayora-video-modal__player video {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

body.is-video-modal-open {
	overflow: hidden;
}

/* Customer reviews carousel */
.home-reviews {
	background: var(--color-cream);
}

.home-reviews__header {
	text-align: center;
	max-width: 40rem;
	margin: 0 auto 2.5rem;
}

.home-reviews__eyebrow {
	margin: 0 0 0.65rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-muted);
}

.home-reviews__title {
	margin: 0;
	font-size: clamp(2rem, 4.5vw, 2.85rem);
	line-height: 1.15;
}

.reviews-carousel {
	--carousel-gap: clamp(1.25rem, 2.5vw, 1.75rem);
	--carousel-per-view: 2;
	--carousel-shadow-pad: 1rem;
	position: relative;
	padding-inline: clamp(2.5rem, 4vw, 3.25rem);
}

.reviews-carousel__viewport {
	container-type: inline-size;
	overflow-x: auto;
	overflow-y: clip;
	overflow-clip-margin-block: var(--carousel-shadow-pad);
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.reviews-carousel__viewport::-webkit-scrollbar {
	display: none;
}

.reviews-carousel__track {
	display: flex;
	gap: var(--carousel-gap);
	width: max-content;
	padding-block: calc(var(--carousel-shadow-pad) + 0.25rem) var(--carousel-shadow-pad);
}

.reviews-carousel .review-card {
	flex: 0 0 calc((100cqi - (var(--carousel-per-view) - 1) * var(--carousel-gap)) / var(--carousel-per-view));
	scroll-snap-align: start;
	scroll-snap-stop: always;
	min-width: 0;
	margin: 0;
}

.review-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 1.75rem 1.6rem 1.5rem;
	background: var(--color-paper);
	border-radius: calc(var(--radius) + 2px);
	border: 1px solid var(--color-border);
}

.review-card__quote {
	display: block;
	margin-bottom: 0.75rem;
	color: var(--color-terracotta);
	opacity: 0.85;
}

.review-card__quote-icon {
	font-size: 2.25rem;
}

.review-card .featured-room-card__stars {
	margin-bottom: 0.85rem;
}

.review-card__text {
	margin: 0 0 1.35rem;
	flex: 1;
	font-size: 0.98rem;
	line-height: 1.7;
	color: var(--color-muted);
}

.review-card__footer {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin-top: auto;
}

.review-card__avatar {
	flex-shrink: 0;
	width: 2.75rem;
	height: 2.75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--color-sand);
	color: var(--color-ink);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.review-card__author {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}

.review-card__name {
	font-style: normal;
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-ink);
}

.review-card__role {
	font-size: 0.82rem;
	color: var(--color-muted);
}

.reviews-carousel__arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	width: 2.75rem;
	height: 2.75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 1px solid var(--color-border);
	border-radius: 50%;
	background: var(--color-paper);
	color: var(--color-ink);
	box-shadow: var(--shadow);
	cursor: pointer;
	transform: translateY(-50%);
	transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.reviews-carousel__arrow:hover {
	transform: translateY(calc(-50% - 2px));
	border-color: var(--color-clay);
	color: var(--color-terracotta);
}

.reviews-carousel__arrow--prev {
	left: 0;
}

.reviews-carousel__arrow--next {
	right: 0;
}

.reviews-carousel__dots {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: calc(1.75rem - var(--carousel-shadow-pad, 1rem));
}

.reviews-carousel__dot {
	width: 0.55rem;
	height: 0.55rem;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: var(--color-border);
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease;
}

.reviews-carousel__dot.is-active {
	background: var(--color-terracotta);
	transform: scale(1.25);
}

@media (max-width: 899px) {
	.reviews-carousel {
		--carousel-per-view: 1;
	}
}

@media (prefers-reduced-motion: reduce) {
	.reviews-carousel__viewport {
		scroll-behavior: auto;
	}
}

/* Hotel highlights */
.home-highlights {
	position: relative;
	overflow: hidden;
	background: var(--color-cream);
	color: var(--color-ink);
}

.home-highlights__pattern {
	position: absolute;
	inset: 0;
	opacity: 0.55;
	background:
		linear-gradient(125deg, transparent 42%, rgba(255, 255, 255, 0.65) 42%, rgba(255, 255, 255, 0.65) 48%, transparent 48%),
		linear-gradient(125deg, transparent 52%, rgba(255, 255, 255, 0.45) 52%, rgba(255, 255, 255, 0.45) 58%, transparent 58%),
		linear-gradient(55deg, transparent 38%, rgba(255, 255, 255, 0.35) 38%, rgba(255, 255, 255, 0.35) 44%, transparent 44%);
	background-size: 120px 120px, 160px 160px, 200px 200px;
	pointer-events: none;
}

.home-highlights__inner {
	position: relative;
	z-index: 1;
}

.home-highlights__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.home-highlights__mark {
	margin-bottom: 1rem;
	color: var(--color-terracotta);
}

.home-highlights__mark-icon {
	font-size: 2.5rem;
}

.home-highlights__eyebrow {
	margin: 0 0 0.65rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-muted);
}

.home-highlights__title {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 4.2vw, 2.85rem);
	line-height: 1.12;
}

.home-highlights__intro {
	margin: 0 0 1.75rem;
	max-width: 34rem;
	color: var(--color-muted);
	line-height: 1.7;
}

.home-highlights__list {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
}

.home-highlights__item {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(42, 36, 32, 0.1);
	transition: transform 0.25s ease, padding-inline-start 0.25s ease;
}

.home-highlights__item:first-child {
	border-top: 1px solid rgba(42, 36, 32, 0.1);
}

.home-highlights__item:hover {
	padding-inline-start: 0.35rem;
	transform: translateX(4px);
}

.home-highlights__item-icon {
	flex-shrink: 0;
	width: 2.25rem;
	height: 2.25rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.7);
	color: var(--color-terracotta);
}

.home-highlights__item-icon .stayora-icon {
	font-size: 1.2rem;
}

.home-highlights__item-label {
	font-size: 1.02rem;
	font-weight: 500;
}

.home-highlights__stat {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding-top: 0.5rem;
}

.home-highlights__stat-icon {
	flex-shrink: 0;
	width: 4.5rem;
	height: 4.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--color-terracotta);
	color: #fff;
	box-shadow: 0 14px 30px rgba(184, 92, 56, 0.28);
}

.home-highlights__stat-icon-glyph {
	font-size: 2rem;
}

.home-highlights__stat-value {
	margin: 0;
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 700;
	line-height: 1;
	color: var(--color-ink);
	letter-spacing: -0.02em;
}

.home-highlights__counter {
	display: inline-block;
	font-variant-numeric: tabular-nums;
}

.home-highlights__counter.is-decoding {
	animation: stayora-counter-pulse 0.12s ease-in-out infinite alternate;
}

@keyframes stayora-counter-pulse {
	from {
		opacity: 0.72;
	}
	to {
		opacity: 1;
	}
}

.home-highlights__stat-label {
	margin: 0.35rem 0 0;
	font-size: 0.92rem;
	color: var(--color-muted);
	line-height: 1.45;
	max-width: 14rem;
}

.highlights-showcase {
	position: relative;
}

.highlights-showcase__slides {
	display: grid;
	grid-template-areas: 'stack';
}

.highlights-showcase__slide {
	grid-area: stack;
	display: block;
	background: var(--color-paper);
	border-radius: calc(var(--radius) + 4px);
	box-shadow: 0 22px 50px rgba(42, 36, 32, 0.12);
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
	transform: translateY(18px) scale(0.98);
	transition:
		opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.highlights-showcase__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	transform: none;
}

.highlights-showcase__slide[hidden] {
	display: block;
}

.highlights-showcase__media {
	aspect-ratio: 4 / 3.2;
	overflow: hidden;
}

.highlights-showcase__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 6s ease;
}

.highlights-showcase__slide.is-active .highlights-showcase__media img {
	transform: scale(1.06);
}

.highlights-showcase__body {
	padding: 1.5rem 1.5rem 1.35rem;
	text-align: center;
}

.highlights-showcase__icon {
	display: inline-flex;
	margin-bottom: 0.85rem;
	color: var(--color-terracotta);
}

.highlights-showcase__icon .stayora-icon {
	font-size: 2.5rem;
}

.highlights-showcase__text {
	margin: 0 0 1.15rem;
	color: var(--color-muted);
	font-size: 0.95rem;
	line-height: 1.65;
}

.highlights-showcase__more {
	display: inline-flex;
	min-width: 8rem;
	justify-content: center;
	padding: 0.7rem 1.5rem;
	background: var(--color-sand);
	color: var(--color-ink);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.highlights-showcase__more:hover {
	background: var(--color-terracotta);
	color: #fff;
	transform: translateY(-2px);
}

.highlights-showcase__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1.25rem;
}

.highlights-showcase__dots {
	display: flex;
	gap: 0.45rem;
}

.highlights-showcase__dot {
	width: 0.5rem;
	height: 0.5rem;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: var(--color-border);
	cursor: pointer;
	transition: transform 0.2s ease, background 0.2s ease;
}

.highlights-showcase__dot.is-active {
	background: var(--color-terracotta);
	transform: scale(1.2);
}

.highlights-showcase__arrows {
	display: flex;
	gap: 0.5rem;
}

.highlights-showcase__arrow {
	width: 2.75rem;
	height: 2.75rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	color: #fff;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.highlights-showcase__arrow--prev {
	background: var(--color-terracotta);
}

.highlights-showcase__arrow--next {
	background: #2c2e3e;
}

.highlights-showcase__arrow:hover {
	transform: translateY(-2px);
}

@media (max-width: 960px) {
	.home-highlights__grid {
		grid-template-columns: 1fr;
	}

	.home-highlights__intro {
		max-width: none;
	}
}

@media (max-width: 680px) {
	.home-highlights__stat {
		flex-direction: column;
		align-items: flex-start;
		text-align: left;
	}
}

@media (prefers-reduced-motion: reduce) {
	.highlights-showcase__slide {
		transition: none;
		transform: none;
	}

	.highlights-showcase__slide.is-active .highlights-showcase__media img {
		transform: none;
	}

	.home-highlights__counter.is-decoding {
		animation: none;
	}
}

/* Booking slot (room page, booking template) */
.booking-slot {
	background: var(--color-paper);
	color: var(--color-ink);
	padding: 1.5rem;
	border-radius: var(--radius);
}

.booking-slot__title {
	margin-top: 0;
}

.booking-slot__contact {
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
}

/* Contact */
.home-contact {
	position: relative;
	overflow: hidden;
}

.home-contact::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: min(42%, 520px);
	height: 100%;
	background:
		radial-gradient(circle at 80% 18%, rgba(184, 92, 56, 0.08), transparent 55%),
		radial-gradient(circle at 100% 100%, rgba(196, 168, 130, 0.12), transparent 50%);
	pointer-events: none;
}

.home-contact__inner {
	position: relative;
	z-index: 1;
	display: grid;
	gap: clamp(2rem, 4vw, 3rem);
}

.home-contact__header {
	max-width: 42rem;
}

.home-contact__eyebrow {
	margin: 0 0 0.65rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-muted);
}

.home-contact__title {
	margin: 0 0 0.85rem;
	font-family: var(--font-heading);
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.12;
	color: var(--color-ink);
}

.home-contact__intro {
	margin: 0;
	max-width: 36rem;
	color: var(--color-muted);
	font-size: 1rem;
	line-height: 1.65;
}

.home-contact__layout {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: clamp(1.5rem, 3vw, 2.5rem);
	align-items: start;
}

.home-contact__cards {
	display: grid;
	gap: 0.85rem;
}

.home-contact__card {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 1rem;
	align-items: start;
	padding: 1rem 1.1rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-paper);
	box-shadow: 0 10px 28px rgba(42, 36, 32, 0.05);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.home-contact__card:hover {
	border-color: var(--color-clay);
	box-shadow: 0 14px 34px rgba(42, 36, 32, 0.08);
	transform: translateY(-2px);
}

.home-contact__card-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	background: var(--color-cream);
	color: var(--color-terracotta);
}

.home-contact__card-icon .stayora-icon {
	font-size: 1.35rem;
}

.home-contact__card-label {
	margin: 0 0 0.25rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-muted);
}

.home-contact__card-value {
	margin: 0;
	color: var(--color-ink);
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.5;
	text-decoration: none;
}

a.home-contact__card-value:hover {
	color: var(--color-terracotta);
}

.home-contact__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem;
	margin-top: 1.35rem;
}

.home-contact__action {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
}

.home-contact__action .stayora-icon {
	font-size: 1.05rem;
}

.home-contact__action--whatsapp:hover {
	border-color: #25d366;
	color: #128c7e;
}

.home-contact__social {
	display: grid;
	gap: 0.65rem;
	margin-top: 1.35rem;
	padding-top: 1.35rem;
	border-top: 1px solid var(--color-border);
}

.home-contact__social-label {
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-muted);
}

.home-contact__social-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
}

.home-contact__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	border: 1px solid var(--color-border);
	border-radius: 50%;
	background: var(--color-paper);
	color: var(--color-ink);
	text-decoration: none;
	transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.home-contact__social-link:hover {
	border-color: var(--color-terracotta);
	color: var(--color-terracotta);
	transform: translateY(-2px);
}

.home-contact__social-link span {
	display: block;
	width: 1.125rem;
	height: 1.125rem;
	background: currentColor;
	mask: center / contain no-repeat;
	-webkit-mask: center / contain no-repeat;
}

.home-contact__social-link--facebook span {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8.7V6.9c0-.9.3-1.4 1.5-1.4H17V2.3C16.2 2.2 15.5 2 14.5 2 11.9 2 10 3.6 10 6.5v2.2H7v3.6h3V22h4v-9.7h2.8l.5-3.6H14Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8.7V6.9c0-.9.3-1.4 1.5-1.4H17V2.3C16.2 2.2 15.5 2 14.5 2 11.9 2 10 3.6 10 6.5v2.2H7v3.6h3V22h4v-9.7h2.8l.5-3.6H14Z'/%3E%3C/svg%3E");
}

.home-contact__social-link--twitter span {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.7 6.2c-.7.3-1.4.5-2.2.6.8-.5 1.4-1.2 1.7-2.1-.7.4-1.6.8-2.4.9A3.8 3.8 0 0 0 12.2 9c0 .3 0 .6.1.9A10.8 10.8 0 0 1 4.5 5.9a3.8 3.8 0 0 0 1.2 5.1c-.6 0-1.2-.2-1.7-.5v.1c0 1.8 1.3 3.4 3 3.7-.3.1-.7.1-1 .1-.3 0-.5 0-.7-.1.5 1.5 1.9 2.6 3.6 2.7A7.7 7.7 0 0 1 3 18.6a10.8 10.8 0 0 0 5.9 1.7c7.1 0 11-5.9 11-11v-.5c.7-.5 1.3-1.1 1.8-1.8Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.7 6.2c-.7.3-1.4.5-2.2.6.8-.5 1.4-1.2 1.7-2.1-.7.4-1.6.8-2.4.9A3.8 3.8 0 0 0 12.2 9c0 .3 0 .6.1.9A10.8 10.8 0 0 1 4.5 5.9a3.8 3.8 0 0 0 1.2 5.1c-.6 0-1.2-.2-1.7-.5v.1c0 1.8 1.3 3.4 3 3.7-.3.1-.7.1-1 .1-.3 0-.5 0-.7-.1.5 1.5 1.9 2.6 3.6 2.7A7.7 7.7 0 0 1 3 18.6a10.8 10.8 0 0 0 5.9 1.7c7.1 0 11-5.9 11-11v-.5c.7-.5 1.3-1.1 1.8-1.8Z'/%3E%3C/svg%3E");
}

.home-contact__social-link--instagram span {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2Zm-.2 2A3.6 3.6 0 0 0 4 7.6v8.8A3.6 3.6 0 0 0 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6A3.6 3.6 0 0 0 16.4 4H7.6Zm9.1 1.8a1.4 1.4 0 1 1 0 2.8 1.4 1.4 0 0 1 0-2.8ZM12 7.2a4.8 4.8 0 1 1 0 9.6 4.8 4.8 0 0 1 0-9.6Zm0 2a2.8 2.8 0 1 0 0 5.6 2.8 2.8 0 0 0 0-5.6Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2Zm-.2 2A3.6 3.6 0 0 0 4 7.6v8.8A3.6 3.6 0 0 0 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6A3.6 3.6 0 0 0 16.4 4H7.6Zm9.1 1.8a1.4 1.4 0 1 1 0 2.8 1.4 1.4 0 0 1 0-2.8ZM12 7.2a4.8 4.8 0 1 1 0 9.6 4.8 4.8 0 0 1 0-9.6Zm0 2a2.8 2.8 0 1 0 0 5.6 2.8 2.8 0 0 0 0-5.6Z'/%3E%3C/svg%3E");
}

.home-contact__social-link--pinterest span {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 0a12 12 0 0 0-4.2 23.2c0-1.1-.2-2.6 0-3.8.2-1 1.2-6.5 1.2-6.5s-.3-.7-.3-1.8c0-1.7 1-3 2.3-3 1.1 0 1.6.8 1.6 1.8 0 1.1-.7 2.9-1.1 4.5-.3 1.3.7 2.3 1.9 2.3 2.3 0 4.1-2.4 4.1-5.8 0-3-2.1-5.2-5.1-5.2-3.5 0-5.6 2.6-5.6 5.9 0 1.2.5 2.5 1.1 3.2l-.5 2c-.2.6-.4.7-.8.5-3-1.2-4.9-4.5-4.9-8.2C1.8 5.9 6.4 1.2 12 1.2S22.2 5.9 22.2 12 17.6 22.8 12 22.8 1.8 18.1 1.8 12 6.4 1.2 12 1.2Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 0a12 12 0 0 0-4.2 23.2c0-1.1-.2-2.6 0-3.8.2-1 1.2-6.5 1.2-6.5s-.3-.7-.3-1.8c0-1.7 1-3 2.3-3 1.1 0 1.6.8 1.6 1.8 0 1.1-.7 2.9-1.1 4.5-.3 1.3.7 2.3 1.9 2.3 2.3 0 4.1-2.4 4.1-5.8 0-3-2.1-5.2-5.1-5.2-3.5 0-5.6 2.6-5.6 5.9 0 1.2.5 2.5 1.1 3.2l-.5 2c-.2.6-.4.7-.8.5-3-1.2-4.9-4.5-4.9-8.2C1.8 5.9 6.4 1.2 12 1.2S22.2 5.9 22.2 12 17.6 22.8 12 22.8 1.8 18.1 1.8 12 6.4 1.2 12 1.2Z'/%3E%3C/svg%3E");
}

.home-contact__social-link--youtube span {
	width: 1.25rem;
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.6 7.1a2.7 2.7 0 0 0-1.9-1.9C18 4.8 12 4.8 12 4.8s-6 0-7.7.4a2.7 2.7 0 0 0-1.9 1.9C2 8.8 2 12 2 12s0 3.2.4 4.9a2.7 2.7 0 0 0 1.9 1.9c1.7.4 7.7.4 7.7.4s6 0 7.7-.4a2.7 2.7 0 0 0 1.9-1.9c.4-1.7.4-4.9.4-4.9s0-3.2-.4-4.9ZM10 15.2V8.8l5.2 3.2L10 15.2Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.6 7.1a2.7 2.7 0 0 0-1.9-1.9C18 4.8 12 4.8 12 4.8s-6 0-7.7.4a2.7 2.7 0 0 0-1.9 1.9C2 8.8 2 12 2 12s0 3.2.4 4.9a2.7 2.7 0 0 0 1.9 1.9c1.7.4 7.7.4 7.7.4s6 0 7.7-.4a2.7 2.7 0 0 0 1.9-1.9c.4-1.7.4-4.9.4-4.9s0-3.2-.4-4.9ZM10 15.2V8.8l5.2 3.2L10 15.2Z'/%3E%3C/svg%3E");
}

.home-contact__map-wrap {
	display: grid;
	gap: 0.85rem;
}

.home-contact__map {
	position: relative;
	overflow: hidden;
	min-height: clamp(320px, 42vw, 520px);
	border-radius: calc(var(--radius) + 4px);
	background: var(--color-cream);
	box-shadow: 0 18px 48px rgba(42, 36, 32, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.8);
}

.home-contact__map iframe {
	display: block;
	width: 100%;
	height: 100%;
	min-height: clamp(320px, 42vw, 520px);
	border: 0;
}

.home-contact__directions {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	width: fit-content;
}

.home-contact__directions .stayora-icon {
	font-size: 1.1rem;
}

.home-contact__map-caption {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin: 0;
	padding: 0.85rem 1rem;
	border-radius: var(--radius);
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	color: var(--color-muted);
	font-size: 0.92rem;
	line-height: 1.55;
}

.home-contact__map-caption .stayora-icon {
	flex: 0 0 auto;
	margin-top: 0.1rem;
	color: var(--color-terracotta);
	font-size: 1.15rem;
}

.contact-list {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
}

.contact-list li {
	margin-bottom: 1rem;
}

.contact-list strong {
	display: block;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--color-muted);
}

/* Room single */
.room-single__media,
#room-photos {
	--room-media-gap: 0.5rem;
	--room-media-height: clamp(220px, 28vw, 360px);
	--room-media-slide: calc((100vw - (3 * var(--room-media-gap))) / 4);
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 100vw;
	margin-inline: calc(50% - 50vw);
	padding: 0;
	background: var(--color-cream);
	overflow: hidden;
}

.room-single__media-inner {
	position: relative;
	width: 100%;
}

.room-single__media-grid {
	display: flex;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: var(--room-media-gap);
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.room-single__media-grid::-webkit-scrollbar {
	display: none;
}

.room-single__media-item {
	flex: 0 0 var(--room-media-slide);
	width: var(--room-media-slide);
	min-width: var(--room-media-slide);
	height: var(--room-media-height);
	margin: 0;
	overflow: hidden;
	border-radius: 0;
	background: var(--color-border);
	scroll-snap-align: start;
	scroll-snap-stop: always;
}

.room-single__media-item img,
.room-single__media-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.room-single__media-actions {
	position: absolute;
	inset: 0;
	z-index: 3;
	pointer-events: none;
}

.room-single__wishlist,
.room-single__photos-pill,
.room-single__video-pill {
	pointer-events: auto;
}

.room-single__wishlist {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 2.5rem;
	height: 2.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.95);
	color: var(--color-ink);
	box-shadow: 0 6px 18px rgba(42, 36, 32, 0.12);
	cursor: pointer;
	transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.room-single__wishlist:hover {
	transform: scale(1.06);
	color: var(--color-terracotta);
}

.room-single__wishlist.is-active {
	background: var(--color-terracotta);
	color: #fff;
	box-shadow: 0 6px 18px rgba(184, 92, 56, 0.32);
}

.room-single__wishlist.is-active:hover {
	color: #fff;
	background: var(--color-terracotta);
	filter: brightness(0.94);
}

.room-single__toolbar-wishlist.is-active {
	color: var(--color-terracotta);
}

.room-single__wishlist .stayora-icon {
	font-size: 1.125rem;
}

.room-single__photos-pill,
.room-single__video-pill {
	position: absolute;
	bottom: 1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.45rem 0.75rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.95);
	color: var(--color-ink);
	font-size: 0.82rem;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 6px 18px rgba(42, 36, 32, 0.12);
}

.room-single__photos-pill {
	right: 1rem;
	pointer-events: none;
}

.room-single__photos-pill .stayora-icon,
.room-single__video-pill .stayora-icon {
	font-size: 1rem;
}

.room-single__video-pill {
	right: 5.5rem;
}

.room-single__intro {
	padding-top: clamp(1.5rem, 3vw, 2.25rem);
	padding-bottom: 0;
}

.room-single__intro-head {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
	align-items: start;
	gap: 1rem 2rem;
}

.room-single__intro-copy {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 0;
}

.room-single__rating {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.room-single__rating .featured-room-card__stars {
	font-size: 0.9rem;
	line-height: 1;
}

.room-single__rating-value {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-muted);
}

.room-single__title {
	margin: 0;
	font-size: clamp(1.6rem, 3.5vw, 2.5rem);
	line-height: 1.15;
}

.room-single__price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35rem 0.5rem;
	margin: 0.25rem 0 0;
}

.room-single__price-amount {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--color-terracotta);
	line-height: 1.2;
}

.room-single__price-label {
	font-size: 0.9rem;
	color: var(--color-muted);
}

.room-single__highlights {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-content: flex-start;
	gap: 2rem;
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: min(100%, 28rem);
	justify-self: end;
}

.room-single__highlight {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	background: var(--color-paper);
	font-size: 0.88rem;
	color: var(--color-ink);
}

.room-single__highlight-body {
	display: grid;
	gap: 0.1rem;
	min-width: 0;
}

.room-single__highlight-title {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-muted);
	line-height: 1.2;
}

.room-single__highlight-value {
	font-size: 0.92rem;
	font-weight: 600;
	line-height: 1.25;
	color: var(--color-ink);
}

.room-single__highlight-icon {
    font-size: 1.1rem;
    color: var(--color-terracotta);
    background: var(--color-border);
    padding: 0.5rem;
    border-radius: 99px;
}

.room-single__toolbar {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.25rem;
	margin-top: 1.25rem;
	padding: 0.75rem 0;
	border-top: 1px solid var(--color-border);
}

.room-single__toolbar-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--color-ink);
	font-size: 0.9rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: color 0.2s ease;
}

.room-single__toolbar-link:hover {
	color: var(--color-terracotta);
}

.room-single__toolbar-link .stayora-icon {
	font-size: 1.15rem;
	color: var(--color-terracotta);
}

.room-single__toolbar-wishlist.is-active .stayora-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 50%;
	background: var(--color-terracotta);
	color: #fff;
}

.room-single__section-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 0;
	margin-bottom: 1rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--color-border);
	font-size: clamp(1.1rem, 2vw, 1.3rem);
	font-weight: 700;
}

.room-single__section-icon {
	font-size: 1.35rem;
	color: var(--color-terracotta);
}

.room-single__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(1.5rem, 3vw, 2.5rem);
	align-items: start;
	padding-block: clamp(2.5rem, 5vw, 4.5rem);
	padding-bottom: calc(clamp(2.5rem, 5vw, 4.5rem) + 5.5rem);
	position: relative;
	z-index: 0;
	isolation: isolate;
}

.room-single__book-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 90;
	padding: 0.85rem 0 calc(0.85rem + env(safe-area-inset-bottom, 0px));
	background: rgba(255, 255, 255, 0.96);
	border-top: 1px solid var(--color-border);
	box-shadow: 0 -10px 30px rgba(42, 36, 32, 0.08);
	backdrop-filter: blur(10px);
}

.room-single__book-bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.room-single__book-bar-copy {
	min-width: 0;
}

.room-single__book-bar-price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	gap: 0.35rem 0.5rem;
	margin: 0;
}

.room-single__book-bar-price strong {
	font-size: 1.2rem;
	color: var(--color-terracotta);
}

.room-single__book-bar-price span,
.room-single__book-bar-note {
	margin: 0;
	color: var(--color-muted);
	font-size: 0.82rem;
}

.room-single__book-bar-note {
	margin-top: 0.15rem;
}

.room-single__book-bar-cta {
	flex-shrink: 0;
	min-width: 10.5rem;
	padding-inline: 1.5rem;
	white-space: nowrap;
}

.booking-page__form,
.booking-confirmation-page {
	max-width: 820px;
	margin-inline: auto;
}

.booking-page__intro {
	margin-bottom: 1.5rem;
	color: var(--color-muted);
	text-align: center;
}

.room-single__main {
	display: grid;
	gap: clamp(1.25rem, 2.5vw, 1.75rem);
	min-width: 0;
}



.room-single__overview-body {
	display: grid;
	grid-template-columns: minmax(160px, 260px) minmax(0, 1fr);
	gap: clamp(1.25rem, 3vw, 2rem);
	align-items: start;
}

.room-single__overview-media {
	margin: 0;
	border-radius: var(--radius);
	overflow: hidden;
	border: 1px solid var(--color-border);
	box-shadow: 0 8px 20px rgba(42, 36, 32, 0.06);
}

.room-single__overview-image {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.room-single__overview-content {
	font-size: 1.05rem;
	text-align: justify;
	line-height: 1.75;
	min-width: 0;
	color: var(--color-muted);
}

.room-single__overview-content > :first-child {
	margin-top: 0;
}

.room-single__overview-body:not(:has(.room-single__overview-content)) .room-single__overview-media {
	grid-column: 1 / -1;
	max-width: 320px;
}

.room-single__details h2,
.room-single__amenities h2 {
	margin-top: 0;
}

.room-single__details-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	margin: 0;
}

.room-single__detail {
	padding: 0.85rem 1rem;
	background: var(--color-paper);
	border: 1px solid var(--color-border);
	border-radius: 8px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.room-single__detail:hover {
	border-color: var(--color-clay);
	box-shadow: 0 2px 8px rgba(42, 36, 32, 0.05);
}

.room-single__detail dt {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	margin: 0 0 0.25rem;
	color: var(--color-muted);
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.room-single__detail-icon {
	font-size: 1rem;
	color: var(--color-terracotta);
	font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 20;
}

.room-single__amenities .amenities-list__item {
	gap: 0.65rem;
}

.room-single__amenities .amenities-list__icon {
    flex-shrink: 0;
    font-size: 2rem;
    background: var(--color-terracotta);
    color: var(--color-cream);
    padding: 0.25rem;
    aspect-ratio: 1/1;
    border-radius: 99px;
}

.room-single__detail dd {
	margin: 0;
	color: var(--color-ink);
	font-size: 1rem;
	font-weight: 700;
}

.room-single__related {
	padding-top: clamp(1.5rem, 3vw, 2.5rem);
	padding-bottom: var(--section-pad);
}

.room-single__related .section-header {
	margin-bottom: 1.75rem;
}

/* Footer */
.site-footer {
	background: #59453e;
	color: #fff;
}

.site-footer__main {
	padding-block: clamp(4rem, 7vw, 7rem) clamp(3rem, 5vw, 4.5rem);
}

.site-footer__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: start;
	gap: clamp(2rem, 6vw, 6rem);
}

.site-footer__panel {
	color: #fff;
	font-size: clamp(1.05rem, 1.3vw, 1.35rem);
	font-weight: 600;
	line-height: 1.55;
}

.site-footer__panel--address {
	text-align: left;
}

.site-footer__panel--contact {
	text-align: right;
}

.site-footer__heading {
	margin: 0 0 1rem;
	color: #fff;
	font-family: var(--font-body);
	font-size: clamp(1.2rem, 1.5vw, 1.45rem);
	font-weight: 700;
	line-height: 1.2;
}

.site-footer__text {
	margin: 0;
}

.site-footer__text + .site-footer__text {
	margin-top: 0.35rem;
}

.site-footer__text a {
	color: inherit;
	text-decoration: none;
}

.site-footer__text a:hover {
	color: #d4ad5d;
}

.site-footer__brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: 2.25rem;
	text-align: center;
}

.site-footer__brand .site-brand,
.site-footer__brand .custom-logo-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.site-footer__brand .site-brand__link {
	color: #fff;
	font-family: var(--font-body);
	font-size: clamp(2.35rem, 3.2vw, 3.15rem);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
}

.site-footer__brand .custom-logo-link img {
	max-height: clamp(44px, 5vw, 66px);
	width: auto;
}

.site-footer__socials {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.75rem;
	min-height: 24px;
}

.site-footer__social-link,
.site-footer__social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: rgba(255, 255, 255, 0.56);
	text-decoration: none;
	transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__social-link:hover {
	color: #d4ad5d;
	transform: translateY(-1px);
}

.site-footer__social-link span,
.site-footer__social-icon span {
	display: block;
	width: 18px;
	height: 18px;
	background: currentColor;
	mask: center / contain no-repeat;
	-webkit-mask: center / contain no-repeat;
}

.site-footer__social-link--facebook span {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8.7V6.9c0-.9.3-1.4 1.5-1.4H17V2.3C16.2 2.2 15.5 2 14.5 2 11.9 2 10 3.6 10 6.5v2.2H7v3.6h3V22h4v-9.7h2.8l.5-3.6H14Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 8.7V6.9c0-.9.3-1.4 1.5-1.4H17V2.3C16.2 2.2 15.5 2 14.5 2 11.9 2 10 3.6 10 6.5v2.2H7v3.6h3V22h4v-9.7h2.8l.5-3.6H14Z'/%3E%3C/svg%3E");
}

.site-footer__social-link--twitter span {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.7 6.2c-.7.3-1.4.5-2.2.6.8-.5 1.4-1.2 1.7-2.1-.7.4-1.6.8-2.4.9A3.8 3.8 0 0 0 12.2 9c0 .3 0 .6.1.9A10.8 10.8 0 0 1 4.5 5.9a3.8 3.8 0 0 0 1.2 5.1c-.6 0-1.2-.2-1.7-.5v.1c0 1.8 1.3 3.4 3 3.7-.3.1-.7.1-1 .1-.3 0-.5 0-.7-.1.5 1.5 1.9 2.6 3.6 2.7A7.7 7.7 0 0 1 3 18.6a10.8 10.8 0 0 0 5.9 1.7c7.1 0 11-5.9 11-11v-.5c.7-.5 1.3-1.1 1.8-1.8Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.7 6.2c-.7.3-1.4.5-2.2.6.8-.5 1.4-1.2 1.7-2.1-.7.4-1.6.8-2.4.9A3.8 3.8 0 0 0 12.2 9c0 .3 0 .6.1.9A10.8 10.8 0 0 1 4.5 5.9a3.8 3.8 0 0 0 1.2 5.1c-.6 0-1.2-.2-1.7-.5v.1c0 1.8 1.3 3.4 3 3.7-.3.1-.7.1-1 .1-.3 0-.5 0-.7-.1.5 1.5 1.9 2.6 3.6 2.7A7.7 7.7 0 0 1 3 18.6a10.8 10.8 0 0 0 5.9 1.7c7.1 0 11-5.9 11-11v-.5c.7-.5 1.3-1.1 1.8-1.8Z'/%3E%3C/svg%3E");
}

.site-footer__social-link--instagram span {
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2Zm-.2 2A3.6 3.6 0 0 0 4 7.6v8.8A3.6 3.6 0 0 0 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6A3.6 3.6 0 0 0 16.4 4H7.6Zm9.1 1.8a1.4 1.4 0 1 1 0 2.8 1.4 1.4 0 0 1 0-2.8ZM12 7.2a4.8 4.8 0 1 1 0 9.6 4.8 4.8 0 0 1 0-9.6Zm0 2a2.8 2.8 0 1 0 0 5.6 2.8 2.8 0 0 0 0-5.6Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.8 2h8.4A5.8 5.8 0 0 1 22 7.8v8.4a5.8 5.8 0 0 1-5.8 5.8H7.8A5.8 5.8 0 0 1 2 16.2V7.8A5.8 5.8 0 0 1 7.8 2Zm-.2 2A3.6 3.6 0 0 0 4 7.6v8.8A3.6 3.6 0 0 0 7.6 20h8.8a3.6 3.6 0 0 0 3.6-3.6V7.6A3.6 3.6 0 0 0 16.4 4H7.6Zm9.1 1.8a1.4 1.4 0 1 1 0 2.8 1.4 1.4 0 0 1 0-2.8ZM12 7.2a4.8 4.8 0 1 1 0 9.6 4.8 4.8 0 0 1 0-9.6Zm0 2a2.8 2.8 0 1 0 0 5.6 2.8 2.8 0 0 0 0-5.6Z'/%3E%3C/svg%3E");
}

.site-footer__social-link--youtube span {
	width: 20px;
	mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.6 7.1a2.7 2.7 0 0 0-1.9-1.9C18 4.8 12 4.8 12 4.8s-6 0-7.7.4a2.7 2.7 0 0 0-1.9 1.9C2 8.8 2 12 2 12s0 3.2.4 4.9a2.7 2.7 0 0 0 1.9 1.9c1.7.4 7.7.4 7.7.4s6 0 7.7-.4a2.7 2.7 0 0 0 1.9-1.9c.4-1.7.4-4.9.4-4.9s0-3.2-.4-4.9ZM10 15.2V8.8l5.2 3.2L10 15.2Z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.6 7.1a2.7 2.7 0 0 0-1.9-1.9C18 4.8 12 4.8 12 4.8s-6 0-7.7.4a2.7 2.7 0 0 0-1.9 1.9C2 8.8 2 12 2 12s0 3.2.4 4.9a2.7 2.7 0 0 0 1.9 1.9c1.7.4 7.7.4 7.7.4s6 0 7.7-.4a2.7 2.7 0 0 0 1.9-1.9c.4-1.7.4-4.9.4-4.9s0-3.2-.4-4.9ZM10 15.2V8.8l5.2 3.2L10 15.2Z'/%3E%3C/svg%3E");
}

.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.11);
	padding-block: 1.65rem;
	text-align: center;
}

.site-footer__credit {
	margin: 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: clamp(1rem, 1.25vw, 1.2rem);
	font-weight: 600;
	line-height: 1.4;
}

/* WhatsApp float */
.whatsapp-float {
	position: fixed;
	right: 1.25rem;
	bottom: 1.25rem;
	z-index: 90;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: #25d366;
	box-shadow: var(--shadow);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.whatsapp-float__icon::before {
	content: "";
	display: block;
	width: 28px;
	height: 28px;
	background: center/contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.435 9.884-9.881 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
}

/* 404 */
.error-404 {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: calc(100vh - var(--stayora-header-height, 5rem) - 12rem);
	text-align: center;
}

.error-404__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 28rem;
	margin-inline: auto;
}

.error-404__media {
	margin: 0 0 1.5rem;
}

.error-404__image {
	display: block;
	width: min(100%, 20rem);
	height: auto;
	margin-inline: auto;
}

.error-404__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	line-height: 1.15;
}

.error-404__message {
	margin: 0 0 1.75rem;
	color: var(--color-muted);
	font-size: 1.05rem;
	line-height: 1.55;
}

.error-404__cta {
	min-width: 11rem;
}

/* Content */
.content-section {
	padding-block: var(--section-pad);
}

.page-header-banner + .content-section,
.page-header-banner + article .content-section {
	padding-top: clamp(2rem, 4vw, 3rem);
}

.page-header-banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: var(--page-header-height, 320px);
	margin-bottom: 0;
	background-color: var(--color-header-dark);
	background-image: var(--page-header-bg-image, none);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	isolation: isolate;
}

.page-header-banner--parallax {
	background-attachment: fixed;
}

.page-header-banner--no-image {
	background-image:
		radial-gradient(circle at 18% 22%, rgba(184, 92, 56, 0.35), transparent 42%),
		radial-gradient(circle at 82% 12%, rgba(196, 168, 130, 0.28), transparent 36%),
		linear-gradient(135deg, #2a2420 0%, #3d342e 52%, #2a2420 100%);
}

.page-header-banner__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(42, 36, 32, var(--page-header-overlay, 0.55)) 0%,
		rgba(42, 36, 32, calc(var(--page-header-overlay, 0.55) * 0.82)) 48%,
		rgba(184, 92, 56, calc(var(--page-header-overlay, 0.55) * 0.42)) 100%
	);
}

.page-header-banner__pattern {
	position: absolute;
	inset: 0;
	opacity: 0.18;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
	background-size: 28px 28px;
	mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 92%);
}

.page-header-banner__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	padding: clamp(3rem, 8vw, 5rem) 1.5rem;
	text-align: center;
}

.page-header-banner__eyebrow {
	margin: 0 0 0.85rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.82);
}

.page-header-banner__title,
.page-header-banner .page-header__title {
	margin: 0;
	margin-inline: auto;
	font-family: var(--font-heading);
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	font-weight: 400;
	line-height: 1.08;
	color: #fff;
	text-wrap: balance;
	text-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.page-header-banner__description,
.page-header-banner__meta,
.page-header-banner .page-header__description,
.page-header-banner .page-header__meta {
	margin: 1rem auto 0;
	max-width: 42rem;
	color: rgba(255, 255, 255, 0.88);
	font-size: clamp(1rem, 2vw, 1.12rem);
	line-height: 1.6;
}

.page-header-banner__meta time,
.page-header-banner .page-header__meta time {
	color: inherit;
}

.page-header__title {
	margin: 0 0 0.5rem;
	font-size: clamp(2rem, 4vw, 2.75rem);
}

.page-header__description,
.page-header__meta {
	color: var(--color-muted);
}

.post-grid {
	display: grid;
	gap: 1.5rem;
}

.post-card {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 1.25rem;
	padding: 1.25rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
}

.post-card__title {
	margin: 0 0 0.35rem;
	font-size: 1.25rem;
}

.post-card__title a {
	color: inherit;
	text-decoration: none;
}

.entry-content > *:first-child {
	margin-top: 0;
}

/* Responsive */
@media (max-width: 960px) {
	.site-header__main {
		grid-template-columns: 1fr auto;
	}

	.site-header__nav {
		display: none;
	}

	.site-header__actions {
		display: none;
	}

	.site-menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.page-header-banner--parallax {
		background-attachment: scroll;
	}

	.page-header-banner__title,
	.page-header-banner .page-header__title {
		max-width: none;
	}

	.home-contact__layout,
	.room-single__layout {
		grid-template-columns: 1fr;
		padding-bottom: calc(clamp(2rem, 4vw, 3rem) + 6rem);
	}

	.home-contact__map {
		min-height: 280px;
	}

	.home-contact__map iframe {
		min-height: 280px;
	}

	.home-contact__actions {
		flex-direction: column;
	}

	.home-contact__action {
		width: 100%;
		justify-content: center;
	}

	.room-single__book-bar-inner {
		flex-direction: column;
		align-items: stretch;
	}

	.room-single__book-bar-cta {
		width: 100%;
		min-width: 0;
	}

	.site-footer__inner {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}

	.site-footer__panel--address,
	.site-footer__panel--contact {
		text-align: center;
	}

	.site-footer__brand {
		order: -1;
	}
}

@media (max-width: 640px) {
	.post-card {
		grid-template-columns: 1fr;
	}

	.section-header {
		flex-direction: column;
		align-items: flex-start;
	}

	.site-footer__main {
		padding-block: 3rem 2.5rem;
	}

	.site-footer__inner {
		gap: 2rem;
	}

	.site-footer__socials {
		gap: 1.25rem;
	}

	.room-single__media,
	#room-photos {
		--room-media-slide: calc(100vw - (2 * var(--room-media-gap)));
		--room-media-height: clamp(200px, 52vw, 280px);
	}

	.room-single__wishlist {
		top: 0.5rem;
		right: 0.5rem;
		width: 2.15rem;
		height: 2.15rem;
	}

	.room-single__photos-pill {
		bottom: 0.5rem;
		right: 0.5rem;
		padding: 0.3rem 0.55rem;
		font-size: 0.72rem;
	}

	.room-single__video-pill {
		bottom: 3rem;
		right: 0.5rem;
		font-size: 0.72rem;
		padding: 0.3rem 0.55rem;
	}

	.room-single__intro-head {
		grid-template-columns: 1fr;
	}

	.room-single__highlights {
		justify-content: flex-start;
		justify-self: stretch;
		max-width: none;
	}

	.room-single__details-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.65rem;
	}

	.room-single__detail {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		min-height: 5.5rem;
		padding: 0.8rem 0.75rem;
	}

	.room-single__detail dt {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.35rem;
		margin-bottom: 0.45rem;
	}

	.room-single__detail-icon {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 2rem;
		height: 2rem;
		font-size: 1.1rem;
		background: var(--color-cream);
		border-radius: 999px;
	}

	.room-single__detail dd {
		font-size: 0.92rem;
		line-height: 1.35;
	}

	.room-single__amenities .amenities-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.65rem;
	}

	.room-single__amenities .amenities-list__item {
		flex-direction: column;
		align-items: center;
		justify-content: center;
		min-height: 6.5rem;
		padding: 0.85rem 0.65rem;
		text-align: center;
		border: 1px solid var(--color-border);
		box-shadow: 0 4px 14px rgba(42, 36, 32, 0.04);
		gap: 0.55rem;
	}

	.room-single__amenities .amenities-list__item span {
		font-weight: 600;
		line-height: 1.35;
	}

	.room-single__amenities .amenities-list__icon {
		font-size: 1.25rem;
		padding: 0.35rem;
	}

	.room-single__overview-body {
		grid-template-columns: 1fr;
	}

	.room-single__overview-body:not(:has(.room-single__overview-content)) .room-single__overview-media {
		max-width: none;
	}
}
