/**
 * LodgeStay design system — v1.1
 *
 * Warm neutral ground, generous negative space, one restrained metallic accent,
 * photography carrying the weight. Type is the primary luxury signal: a serif
 * display face at large optical sizes with tight tracking, against a small,
 * wide-tracked sans for labels.
 *
 * Colour comes from CSS custom properties written by the Customizer, so nothing
 * here needs recompiling when a client changes their palette.
 *
 * IMPORTANT — runtime markup contract:
 * The `.ls-*` block (section 18) styles HTML injected by LodgeStay Core's
 * booking.js at runtime. Those class names are produced by the plugin, not by
 * a theme template, so they must not be renamed here.
 */

/* ============================================================ 1. TOKENS */

:root {
	/* Customizer-driven */
	--ls-primary: #1b1a17;
	--ls-secondary: #5c5951;
	--ls-accent: #8a6b3f;
	--ls-text: #2b2925;
	--ls-bg: #faf8f5;

	/* Derived surfaces */
	--ls-surface: #ffffff;
	--ls-surface-alt: #f4f1ec;
	--ls-ink-05: rgba(27, 26, 23, 0.05);
	--ls-ink-08: rgba(27, 26, 23, 0.08);
	--ls-line: rgba(27, 26, 23, 0.11);
	--ls-line-soft: rgba(27, 26, 23, 0.06);
	--ls-muted: rgba(43, 41, 37, 0.6);
	--ls-muted-strong: rgba(43, 41, 37, 0.78);

	/* Type */
	--ls-font-heading: Georgia, "Iowan Old Style", "Times New Roman", serif;
	--ls-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

	--ls-display-1: clamp(2.65rem, 7.2vw, 5.25rem);
	--ls-display-2: clamp(1.95rem, 4.2vw, 3.15rem);
	--ls-display-3: clamp(1.35rem, 2.2vw, 1.7rem);

	--ls-track-display: -0.022em;
	--ls-track-label: 0.2em;

	/* Shape */
	--ls-radius: 2px;
	--ls-radius-md: 4px;
	--ls-radius-lg: 6px;

	/* Elevation — low and wide, never chunky */
	--ls-shadow-xs: 0 1px 2px rgba(20, 19, 16, 0.04);
	--ls-shadow-sm: 0 2px 4px rgba(20, 19, 16, 0.04), 0 8px 20px rgba(20, 19, 16, 0.05);
	--ls-shadow-md: 0 4px 10px rgba(20, 19, 16, 0.06), 0 20px 46px rgba(20, 19, 16, 0.09);
	--ls-shadow-lg: 0 10px 24px rgba(20, 19, 16, 0.1), 0 34px 80px rgba(20, 19, 16, 0.16);

	/* Motion */
	--ls-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
	--ls-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
	--ls-dur: 280ms;
	--ls-dur-slow: 640ms;

	/* Rhythm */
	--ls-container: 1280px;
	--ls-measure: 68ch;
	--ls-gutter: clamp(1.25rem, 5vw, 3.5rem);
	--ls-section: clamp(4.5rem, 10vw, 9rem);
	--ls-section-tight: clamp(3rem, 6vw, 5rem);

	--ls-header-h: 88px;
	--ls-header-h-stuck: 68px;
}

/* ============================================================ 2. BASE */

html { scroll-behavior: smooth; }

body {
	background: var(--ls-bg);
	color: var(--ls-text);
	font-family: var(--ls-font-body);
	font-size: clamp(0.97rem, 0.3vw + 0.9rem, 1.05rem);
	line-height: 1.72;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--ls-font-heading);
	color: var(--ls-primary);
	font-weight: 400;
	line-height: 1.14;
	margin: 0 0 0.55em;
	letter-spacing: var(--ls-track-display);
	text-wrap: balance;
}

h1 { font-size: var(--ls-display-1); }
h2 { font-size: var(--ls-display-2); }
h3 { font-size: var(--ls-display-3); }
h4 { font-size: 1.08rem; letter-spacing: -0.01em; }

p { margin: 0 0 1.2rem; }
p:last-child { margin-bottom: 0; }

a {
	color: var(--ls-accent);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
	transition: color var(--ls-dur) var(--ls-ease);
}

a:hover { color: var(--ls-primary); }

:focus-visible {
	outline: 2px solid var(--ls-accent);
	outline-offset: 3px;
	border-radius: 2px;
}

img { display: block; }
ul, ol { margin: 0 0 1.2rem; padding-left: 1.2rem; }

blockquote {
	margin: 1.75rem 0;
	padding-left: 1.5rem;
	border-left: 1px solid var(--ls-accent);
	font-family: var(--ls-font-heading);
	font-size: 1.2rem;
	line-height: 1.55;
	color: var(--ls-secondary);
}

hr { border: 0; border-top: 1px solid var(--ls-line); margin: 3rem 0; }

::selection { background: var(--ls-accent); color: #fff; }

/* ============================================================ 3. LAYOUT */

.container {
	width: 100%;
	max-width: var(--ls-container);
	margin-inline: auto;
	padding-inline: var(--ls-gutter);
}

.container--narrow { max-width: 820px; }

.section { padding-block: var(--ls-section); position: relative; }
.section--tight { padding-block: var(--ls-section-tight); }
.section--surface { background: var(--ls-surface); }
.section--alt { background: var(--ls-surface-alt); }

/* Section headers ------------------------------------------------------- */

.section__head {
	max-width: 62ch;
	margin-bottom: clamp(2.5rem, 5vw, 4.25rem);
}

.section__head--center {
	margin-inline: auto;
	text-align: center;
}

.section__title { margin-bottom: 0.65rem; }

.section__lead {
	color: var(--ls-muted-strong);
	font-size: 1.05rem;
	max-width: 52ch;
	margin: 0;
}

.section__head--center .section__lead { margin-inline: auto; }

.section__more {
	margin-top: clamp(2.5rem, 5vw, 3.75rem);
	text-align: center;
}

/* The eyebrow: index number, hairline, wide-tracked label. */

.eyebrow {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	font-size: 0.68rem;
	letter-spacing: var(--ls-track-label);
	text-transform: uppercase;
	color: var(--ls-accent);
	font-weight: 600;
	margin: 0 0 1.1rem;
}

.eyebrow::after {
	content: "";
	flex: 0 0 42px;
	height: 1px;
	background: currentColor;
	opacity: 0.45;
}

.section__head--center .eyebrow { justify-content: center; }
.section__head--center .eyebrow::before {
	content: "";
	flex: 0 0 42px;
	height: 1px;
	background: currentColor;
	opacity: 0.45;
}

.eyebrow__index {
	font-variant-numeric: tabular-nums;
	opacity: 0.55;
}

.layout-with-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(2.5rem, 6vw, 4.5rem);
}

@media (min-width: 992px) {
	.layout-with-sidebar { grid-template-columns: minmax(0, 1fr) 300px; }
}

/* ============================================================ 4. BUTTONS
 *
 * `.btn` is the theme's button. `.ls-btn` is the identical component under the
 * class name LodgeStay Core's booking.js emits at runtime — both are listed on
 * every rule so the injected booking UI is never left unstyled.
 */

.btn,
.ls-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.55rem;
	padding: 1rem 2rem;
	font-family: var(--ls-font-body);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	border: 1px solid transparent;
	border-radius: var(--ls-radius);
	cursor: pointer;
	position: relative;
	overflow: hidden;
	min-height: 52px;
	line-height: 1.2;
	text-align: center;
	white-space: nowrap;
	transition:
		background-color var(--ls-dur) var(--ls-ease),
		color var(--ls-dur) var(--ls-ease),
		border-color var(--ls-dur) var(--ls-ease),
		box-shadow var(--ls-dur) var(--ls-ease),
		transform var(--ls-dur) var(--ls-ease);
}

.btn:disabled,
.ls-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

.btn--primary,
.ls-btn--primary {
	background: var(--ls-accent);
	color: #fff;
	box-shadow: 0 1px 2px rgba(20, 19, 16, 0.1);
}

.btn--primary:hover,
.ls-btn--primary:hover {
	background: var(--ls-primary);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: var(--ls-shadow-md);
}

.btn--outline {
	border-color: rgba(27, 26, 23, 0.28);
	color: var(--ls-primary);
	background: transparent;
}

.btn--outline:hover {
	background: var(--ls-primary);
	border-color: var(--ls-primary);
	color: #fff;
	transform: translateY(-2px);
}

/* Outline over photography */
.btn--outline-light {
	border-color: rgba(255, 255, 255, 0.55);
	color: #fff;
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.btn--outline-light:hover {
	background: #fff;
	border-color: #fff;
	color: var(--ls-primary);
	transform: translateY(-2px);
}

.btn--ghost,
.ls-btn--ghost {
	background: var(--ls-ink-05);
	color: var(--ls-primary);
	border-color: transparent;
}

.btn--ghost:hover,
.ls-btn--ghost:hover {
	background: var(--ls-ink-08);
	color: var(--ls-primary);
	transform: translateY(-2px);
}

.btn--ghost-light {
	border-color: rgba(255, 255, 255, 0.4);
	color: #fff;
	background: transparent;
}

.btn--ghost-light:hover { background: #fff; color: var(--ls-primary); }

.btn--text {
	padding: 0.4rem 0;
	min-height: 0;
	background: none;
	color: var(--ls-primary);
	border: 0;
	border-radius: 0;
	letter-spacing: 0.12em;
}

.btn--text::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: currentColor;
	transform: scaleX(1);
	transform-origin: right;
	transition: transform var(--ls-dur) var(--ls-ease);
}

.btn--text:hover { color: var(--ls-accent); transform: none; }
.btn--text:hover::after { transform: scaleX(0); }

.btn--sm,
.ls-btn--sm { padding: 0.7rem 1.25rem; font-size: 0.68rem; min-height: 42px; }
.btn--lg { padding: 1.15rem 2.6rem; font-size: 0.78rem; min-height: 58px; }
.btn--block,
.ls-btn--block { width: 100%; }

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	font-size: 0.74rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--ls-primary);
	padding-bottom: 0.35rem;
	border-bottom: 1px solid var(--ls-line);
	transition: color var(--ls-dur) var(--ls-ease), border-color var(--ls-dur) var(--ls-ease);
}

.link-arrow .icon { transition: transform var(--ls-dur) var(--ls-ease); }
.link-arrow:hover { color: var(--ls-accent); border-color: var(--ls-accent); }
.link-arrow:hover .icon { transform: translateX(5px); }

/* ============================================================ 5. HEADER */

.header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: var(--ls-surface);
	border-bottom: 1px solid var(--ls-line-soft);
	transition:
		background-color var(--ls-dur) var(--ls-ease),
		box-shadow var(--ls-dur) var(--ls-ease),
		border-color var(--ls-dur) var(--ls-ease),
		backdrop-filter var(--ls-dur) var(--ls-ease);
}

.header__inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: clamp(1rem, 3vw, 2.5rem);
	min-height: var(--ls-header-h);
	transition: min-height var(--ls-dur) var(--ls-ease);
}

/* Transparent overlay mode, used over the hero */

.has-transparent-header .header {
	position: fixed;
	inset-inline: 0;
	background: transparent;
	border-color: transparent;
}

.has-transparent-header .header::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(16, 15, 13, 0.42), rgba(16, 15, 13, 0));
	opacity: 1;
	transition: opacity var(--ls-dur) var(--ls-ease);
	pointer-events: none;
}

.has-transparent-header .header.is-stuck::before { opacity: 0; }

.has-transparent-header .header:not(.is-stuck) .nav__list a,
.has-transparent-header .header:not(.is-stuck) .brand__name,
.has-transparent-header .header:not(.is-stuck) .brand__tagline,
.has-transparent-header .header:not(.is-stuck) .header__phone {
	color: #fff;
}

.has-transparent-header .header:not(.is-stuck) .brand__tagline { color: rgba(255, 255, 255, 0.72); }
.has-transparent-header .header:not(.is-stuck) .nav-toggle__bar { background: #fff; }

/* Stuck: frosted, compact, hairline */

.header.is-stuck {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(18px) saturate(1.4);
	-webkit-backdrop-filter: blur(18px) saturate(1.4);
	box-shadow: 0 1px 0 var(--ls-line-soft), 0 8px 28px rgba(20, 19, 16, 0.06);
	border-color: transparent;
}

.header.is-stuck .header__inner { min-height: var(--ls-header-h-stuck); }

.header__brand { min-width: 0; }

.brand { text-decoration: none; display: block; }

.brand__name {
	display: block;
	font-family: var(--ls-font-heading);
	font-size: clamp(1.15rem, 1.6vw, 1.45rem);
	color: var(--ls-primary);
	line-height: 1.1;
	letter-spacing: 0.01em;
	transition: color var(--ls-dur) var(--ls-ease);
}

.brand__tagline {
	display: none;
	font-size: 0.6rem;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--ls-muted);
	margin-top: 5px;
}

@media (min-width: 560px) { .brand__tagline { display: block; } }

.custom-logo {
	max-height: 54px;
	width: auto;
	transition: max-height var(--ls-dur) var(--ls-ease);
}

.header.is-stuck .custom-logo { max-height: 42px; }

/* Navigation, centred in the middle column */

.nav { display: none; justify-self: center; }

@media (min-width: 1080px) { .nav { display: block; } }

.nav__list {
	display: flex;
	align-items: center;
	gap: clamp(1.1rem, 2.1vw, 2.15rem);
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav__list a {
	position: relative;
	display: block;
	font-size: 0.72rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	font-weight: 500;
	color: var(--ls-primary);
	text-decoration: none;
	padding-block: 0.5rem;
	transition: color var(--ls-dur) var(--ls-ease);
}

.nav__list a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: currentColor;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform var(--ls-dur) var(--ls-ease);
}

.nav__list a:hover::after,
.nav__list .current-menu-item > a::after,
.nav__list .current_page_item > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.nav__list li { position: relative; }

.nav__list .sub-menu {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translate(-50%, 8px);
	min-width: 210px;
	background: var(--ls-surface);
	box-shadow: var(--ls-shadow-md);
	list-style: none;
	margin: 0;
	padding: 0.6rem 0;
	opacity: 0;
	visibility: hidden;
	transition: opacity var(--ls-dur) var(--ls-ease), transform var(--ls-dur) var(--ls-ease), visibility var(--ls-dur);
	border-radius: var(--ls-radius-md);
}

.nav__list li:hover > .sub-menu,
.nav__list li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, 0);
}

.nav__list .sub-menu a {
	padding: 0.6rem 1.25rem;
	color: var(--ls-primary) !important;
	letter-spacing: 0.1em;
}

.nav__list .sub-menu a::after { display: none; }
.nav__list .sub-menu a:hover { background: var(--ls-ink-05); }

.header__actions {
	display: flex;
	align-items: center;
	gap: clamp(0.6rem, 1.4vw, 1.35rem);
	justify-self: end;
}

.header__phone {
	display: none;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.78rem;
	letter-spacing: 0.04em;
	color: var(--ls-primary);
	text-decoration: none;
	transition: color var(--ls-dur) var(--ls-ease);
}

.header__phone:hover { color: var(--ls-accent); }

@media (min-width: 1280px) { .header__phone { display: inline-flex; } }

/* The BOOK NOW button stays solid accent in every header state, so it never
   loses contrast against a bright hero photograph. */

.header__book {
	display: none;
	padding-inline: 1.6rem;
	min-height: 46px;
	font-size: 0.7rem;
	letter-spacing: 0.18em;
}

@media (min-width: 620px) { .header__book { display: inline-flex; } }

.has-transparent-header .header:not(.is-stuck) .header__book {
	background: var(--ls-accent);
	border-color: var(--ls-accent);
	color: #fff;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

.has-transparent-header .header:not(.is-stuck) .header__book:hover {
	background: #fff;
	border-color: #fff;
	color: var(--ls-primary);
}

.nav-toggle {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 46px;
	height: 46px;
	padding: 0 11px;
	border: 0;
	background: none;
	cursor: pointer;
}

@media (min-width: 1080px) { .nav-toggle { display: none; } }

.nav-toggle__bar {
	display: block;
	height: 1.5px;
	background: var(--ls-primary);
	transition: transform var(--ls-dur) var(--ls-ease), opacity var(--ls-dur) var(--ls-ease);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile drawer */

.mobile-nav {
	position: fixed;
	inset: 0;
	z-index: 70;
	background: var(--ls-bg);
	overflow-y: auto;
	padding: calc(var(--ls-header-h) + 2rem) var(--ls-gutter) 3rem;
	animation: ls-fade-in 320ms var(--ls-ease-out) both;
}

.mobile-nav[hidden] { display: none; }

@keyframes ls-fade-in {
	from { opacity: 0; }
	to { opacity: 1; }
}

.mobile-nav__inner {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	max-width: 520px;
	margin-inline: auto;
}

.mobile-nav__list,
.mobile-nav .nav__list {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0;
}

.mobile-nav__list a,
.mobile-nav .nav__list a {
	display: block;
	padding: 1.05rem 0;
	border-bottom: 1px solid var(--ls-line-soft);
	font-family: var(--ls-font-heading);
	font-size: 1.5rem;
	letter-spacing: -0.015em;
	text-transform: none;
	color: var(--ls-primary);
	text-decoration: none;
	animation: ls-slide-up 460ms var(--ls-ease-out) both;
}

.mobile-nav__list a::after { display: none; }

.mobile-nav__list li:nth-child(1) a { animation-delay: 40ms; }
.mobile-nav__list li:nth-child(2) a { animation-delay: 80ms; }
.mobile-nav__list li:nth-child(3) a { animation-delay: 120ms; }
.mobile-nav__list li:nth-child(4) a { animation-delay: 160ms; }
.mobile-nav__list li:nth-child(5) a { animation-delay: 200ms; }
.mobile-nav__list li:nth-child(6) a { animation-delay: 240ms; }

@keyframes ls-slide-up {
	from { opacity: 0; transform: translateY(14px); }
	to { opacity: 1; transform: none; }
}

.mobile-nav .sub-menu { padding-left: 1.1rem; list-style: none; }
.mobile-nav .sub-menu a { font-size: 1.02rem; font-family: var(--ls-font-body); }

/* ============================================================ 6. HERO */

.hero {
	position: relative;
	min-height: min(86svh, 880px);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding-top: calc(var(--ls-header-h) + 3rem);
	padding-bottom: 0;
	color: #fff;
	isolation: isolate;
}

.hero--no-image {
	overflow: hidden;
	background:
		radial-gradient(120% 90% at 15% 10%, rgba(255, 255, 255, 0.09), transparent 60%),
		linear-gradient(145deg, #24221d 0%, #3f3a30 48%, #63563f 100%);
	min-height: min(84svh, 720px);
}

.hero__media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }

.hero__image,
.hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero__image { animation: ls-hero-in 1900ms var(--ls-ease-out) both; }

@keyframes ls-hero-in {
	from { transform: scale(1.08); opacity: 0; }
	to { transform: scale(1); opacity: 1; }
}

/* Three-stop scrim: dark at the top for the header, dark at the base for the
   search bar, and clear through the middle so the photograph reads. */

.hero__scrim {
	position: absolute;
	inset: 0;
	z-index: -1;
	background:
		linear-gradient(
			180deg,
			rgba(16, 15, 13, 0.5) 0%,
			rgba(16, 15, 13, 0.16) 26%,
			rgba(16, 15, 13, 0.28) 58%,
			rgba(16, 15, 13, 0.76) 100%
		);
}

.hero__inner {
	position: relative;
	z-index: 1;
	max-width: 860px;
	padding-bottom: clamp(1.75rem, 4vw, 3rem);
}

.hero__kicker {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	font-size: 0.7rem;
	letter-spacing: 0.32em;
	text-transform: uppercase;
	margin: 0 0 1.35rem;
	color: rgba(255, 255, 255, 0.9);
	font-weight: 500;
	animation: ls-slide-up 900ms var(--ls-ease-out) 200ms both;
}

.hero__kicker::after {
	content: "";
	flex: 0 0 56px;
	height: 1px;
	background: rgba(255, 255, 255, 0.55);
}

.hero__title {
	color: #fff;
	font-size: var(--ls-display-1);
	line-height: 1.02;
	margin: 0 0 1.35rem;
	letter-spacing: -0.028em;
	text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
	animation: ls-slide-up 1000ms var(--ls-ease-out) 320ms both;
}

.hero__subtitle {
	font-size: clamp(1.02rem, 1.5vw, 1.3rem);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.88);
	max-width: 44ch;
	margin: 0 0 2.5rem;
	animation: ls-slide-up 1000ms var(--ls-ease-out) 440ms both;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	animation: ls-slide-up 1000ms var(--ls-ease-out) 560ms both;
}

@media (max-width: 560px) {
	.hero__actions { flex-direction: column; align-items: stretch; }
	.hero__actions .btn { width: 100%; }
	.hero__actions .btn--lg { min-height: 52px; padding-block: 1rem; }
}

/*
 * On phones the availability bar is taller than any sensible overlap, so it
 * stops overlapping and simply becomes the closing card of the hero. The
 * booking fields stay identical — only their placement changes.
 */
@media (max-width: 767px) {
	.hero {
		min-height: auto;
		padding-top: calc(var(--ls-header-h) + 1.75rem);
		padding-bottom: 2.25rem;
	}

	.hero__inner { padding-bottom: 1.5rem; }
	.hero__subtitle { margin-bottom: 1.75rem; }
	.hero__kicker { margin-bottom: 1rem; }
	.hero__title { margin-bottom: 1rem; }

	.hero__search { margin-bottom: 0; }
	.hero + * { padding-top: var(--ls-section); }

	.search-bar__field { padding-block: 0.9rem; }
	.search-bar__submit { padding: 0.85rem; }
}

/* The booking bar sits over the base of the hero and overlaps the section
   beneath it, which is what stops it reading as a form dropped onto a page. */

.hero__search {
	position: relative;
	z-index: 2;
	margin-bottom: clamp(-3.5rem, -4.5vw, -2.25rem);
	animation: ls-slide-up 1000ms var(--ls-ease-out) 680ms both;
}

.hero + * { padding-top: clamp(6rem, 11vw, 9rem); }

.hero__scroll {
	position: absolute;
	left: 50%;
	bottom: clamp(7rem, 12vw, 9rem);
	transform: translateX(-50%);
	z-index: 1;
	display: none;
	flex-direction: column;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.6rem;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
}

@media (min-width: 1080px) { .hero__scroll { display: flex; } }

.hero__scroll-line {
	width: 1px;
	height: 46px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), transparent);
	animation: ls-scroll-cue 2.4s var(--ls-ease) infinite;
	transform-origin: top;
}

@keyframes ls-scroll-cue {
	0%, 100% { transform: scaleY(0.35); opacity: 0.45; }
	50% { transform: scaleY(1); opacity: 1; }
}

/* ============================================================ 7. SEARCH BAR
 *
 * Segmented, borderless fields divided by hairlines — the single change that
 * moves this furthest from "a WordPress form".
 */

.search-bar {
	display: grid;
	grid-template-columns: 1fr;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(20px) saturate(1.3);
	-webkit-backdrop-filter: blur(20px) saturate(1.3);
	border-radius: var(--ls-radius-lg);
	box-shadow: var(--ls-shadow-lg);
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.6);
}

@media (min-width: 860px) {
	.search-bar {
		grid-template-columns: 1.15fr 1.15fr 0.72fr 0.72fr minmax(190px, auto);
		align-items: stretch;
	}
}

.search-bar__field {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.3rem;
	min-width: 0;
	padding: 1.15rem clamp(1.1rem, 2vw, 1.65rem);
	border-bottom: 1px solid var(--ls-line-soft);
	position: relative;
	transition: background-color var(--ls-dur) var(--ls-ease);
}

.search-bar__field:hover,
.search-bar__field:focus-within { background: rgba(138, 107, 63, 0.045); }

@media (min-width: 860px) {
	.search-bar__field {
		border-bottom: 0;
		border-right: 1px solid var(--ls-line-soft);
	}
}

.search-bar__field label {
	font-size: 0.62rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ls-muted);
	font-weight: 600;
	pointer-events: none;
}

/* Borderless inputs inside the bar */

.search-bar input {
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--ls-primary);
	font-family: var(--ls-font-heading);
	font-size: 1.02rem;
	letter-spacing: -0.005em;
	min-height: 30px;
	appearance: none;
	-webkit-appearance: none;
}

.search-bar input:focus { outline: none; box-shadow: none; }

.search-bar__field:focus-within::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 2px;
	background: var(--ls-accent);
}

.search-bar input::-webkit-calendar-picker-indicator {
	opacity: 0.4;
	cursor: pointer;
	transition: opacity var(--ls-dur) var(--ls-ease);
}

.search-bar input:hover::-webkit-calendar-picker-indicator { opacity: 0.8; }

.search-bar__submit { display: flex; padding: 0; }

.search-bar__submit .btn {
	width: 100%;
	height: 100%;
	min-height: 62px;
	border-radius: 0;
	letter-spacing: 0.18em;
}

@media (max-width: 859px) {
	.search-bar__submit { padding: 1rem; }
	.search-bar__submit .btn { border-radius: var(--ls-radius); }
	.search-bar__field:nth-last-child(2) { border-bottom: 0; }
}

/* Below the desktop breakpoint the bar becomes a compact card: dates full
   width, guest counts paired, submit spanning the base. */
@media (max-width: 859px) {
	.search-bar { grid-template-columns: 1fr 1fr; }

	/* Check-in and check-out each take the full row */
	.search-bar__field:nth-child(1),
	.search-bar__field:nth-child(2) { grid-column: 1 / -1; }

	/* Adults | Children sit side by side */
	.search-bar__field--sm { padding-block: 1rem; }
	.search-bar__field:nth-child(3) { border-right: 1px solid var(--ls-line-soft); }

	.search-bar__submit { grid-column: 1 / -1; }
}

@media (min-width: 520px) and (max-width: 859px) {
	.search-bar__field:nth-child(1),
	.search-bar__field:nth-child(2) { grid-column: auto; }
	.search-bar__field:nth-child(1) { border-right: 1px solid var(--ls-line-soft); }
}

/* Standalone form fields elsewhere on the site */

.room-widget input,
.ls-field input,
.ls-field textarea,
.search-form__field,
.entry-content input[type="text"],
.entry-content input[type="email"],
.entry-content input[type="tel"],
.entry-content input[type="url"],
.entry-content input[type="number"],
.entry-content textarea,
.entry-content select {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid var(--ls-line);
	border-radius: var(--ls-radius);
	background: var(--ls-surface);
	color: var(--ls-text);
	font: inherit;
	font-size: 0.95rem;
	min-height: 50px;
	transition: border-color var(--ls-dur) var(--ls-ease), box-shadow var(--ls-dur) var(--ls-ease);
}

.room-widget input:focus,
.ls-field input:focus,
.ls-field textarea:focus,
.entry-content input:focus,
.entry-content textarea:focus {
	border-color: var(--ls-accent);
	box-shadow: 0 0 0 3px rgba(138, 107, 63, 0.13);
	outline: none;
}

/* ============================================================ 8. ROOM CARDS */

.room-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: clamp(1.5rem, 3vw, 2.5rem);
}

.room-card {
	background: var(--ls-surface);
	border-radius: var(--ls-radius-md);
	overflow: hidden;
	box-shadow: var(--ls-shadow-xs);
	display: flex;
	flex-direction: column;
	transition: box-shadow var(--ls-dur-slow) var(--ls-ease), transform var(--ls-dur-slow) var(--ls-ease);
}

.room-card:hover { box-shadow: var(--ls-shadow-md); transform: translateY(-6px); }

.room-card__media {
	display: block;
	position: relative;
	aspect-ratio: 5 / 4;
	overflow: hidden;
	background: var(--ls-surface-alt);
}

.room-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1000ms var(--ls-ease-out);
}

.room-card:hover .room-card__media img { transform: scale(1.07); }

.room-card__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(16, 15, 13, 0.32));
	opacity: 0;
	transition: opacity var(--ls-dur-slow) var(--ls-ease);
}

.room-card:hover .room-card__media::after { opacity: 1; }

/* Rate badge floats on the photograph rather than competing in the body */

.room-card__badge {
	position: absolute;
	left: 0;
	bottom: 1rem;
	z-index: 2;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 0.5rem 1rem 0.5rem 1.15rem;
	border-radius: 0 var(--ls-radius) var(--ls-radius) 0;
	font-family: var(--ls-font-heading);
	font-size: 1rem;
	color: var(--ls-primary);
	box-shadow: var(--ls-shadow-xs);
	line-height: 1.25;
}

.room-card__badge small {
	display: block;
	font-family: var(--ls-font-body);
	font-size: 0.56rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ls-muted);
	margin-top: 1px;
}

.room-card__body {
	padding: clamp(1.35rem, 2.2vw, 1.75rem);
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	flex: 1;
}

.room-card__title { margin: 0; font-size: 1.4rem; line-height: 1.2; }
.room-card__title a { color: var(--ls-primary); text-decoration: none; transition: color var(--ls-dur) var(--ls-ease); }
.room-card__title a:hover { color: var(--ls-accent); }

.room-card__excerpt { margin: 0; color: var(--ls-muted-strong); font-size: 0.92rem; line-height: 1.65; }

.room-card__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem 1.1rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.room-card__facts li {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.76rem;
	letter-spacing: 0.03em;
	color: var(--ls-secondary);
}

.room-card__facts .icon { color: var(--ls-accent); opacity: 0.85; }

.room-card__foot {
	margin-top: auto;
	padding-top: 1.1rem;
	border-top: 1px solid var(--ls-line-soft);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.85rem;
}

.room-card__actions { display: flex; align-items: center; gap: 1rem; }

.room-rate__amount { font-family: var(--ls-font-heading); font-size: 1.3rem; color: var(--ls-primary); }

.room-rate__unit {
	display: block;
	font-size: 0.6rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ls-muted);
	margin-top: 2px;
}

.placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 200px;
	background:
		radial-gradient(80% 60% at 30% 20%, rgba(255, 255, 255, 0.6), transparent),
		linear-gradient(135deg, #efe9e1, #d9cfc0);
}

/* ============================================================ 9. SINGLE ROOM */

.single-room__top { padding-top: clamp(2rem, 4vw, 3rem); }
.has-transparent-header .single-room__top { padding-top: calc(var(--ls-header-h) + 2.5rem); }

.single-room__title { margin-bottom: 1rem; }

.single-room__facts {
	display: flex;
	flex-wrap: wrap;
	gap: 0.65rem 2rem;
	list-style: none;
	margin: 0 0 2.25rem;
	padding: 0;
}

.single-room__facts li {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.86rem;
	letter-spacing: 0.02em;
	color: var(--ls-secondary);
}

.single-room__facts .icon { color: var(--ls-accent); }

.room-gallery { display: grid; gap: 0.65rem; }

.room-gallery__main {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: none;
	cursor: zoom-in;
	border-radius: var(--ls-radius-md);
	overflow: hidden;
}

.room-gallery__main img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

.room-gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
	gap: 0.65rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.room-gallery__thumb {
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: none;
	cursor: zoom-in;
	border-radius: var(--ls-radius);
	overflow: hidden;
	opacity: 0.82;
	transition: opacity var(--ls-dur) var(--ls-ease);
}

.room-gallery__thumb:hover { opacity: 1; }
.room-gallery__thumb img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.single-room__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(2.5rem, 5vw, 4.5rem);
	padding-block: clamp(3rem, 6vw, 5rem);
}

@media (min-width: 992px) {
	.single-room__grid { grid-template-columns: minmax(0, 1fr) 360px; align-items: start; }
	.single-room__aside { position: sticky; top: calc(var(--ls-header-h-stuck) + 1.5rem); }
}

.room-section { margin-bottom: clamp(2.5rem, 4vw, 3.5rem); }

.room-section__title {
	font-size: 1.3rem;
	padding-bottom: 0.85rem;
	border-bottom: 1px solid var(--ls-line-soft);
	margin-bottom: 1.35rem;
}

.room-amenities__list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
	gap: 0.7rem 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.room-amenities__list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.93rem; }
.room-amenities__list .icon { color: var(--ls-accent); flex-shrink: 0; }

.room-policies__list { display: grid; gap: 0.6rem 2rem; margin: 0; }

@media (min-width: 620px) { .room-policies__list { grid-template-columns: 170px minmax(0, 1fr); } }

.room-policies__list dt {
	font-weight: 600;
	font-size: 0.68rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--ls-muted);
	padding-top: 4px;
}

.room-policies__list dd { margin: 0 0 0.6rem; }

.room-extra { color: var(--ls-muted-strong); font-size: 0.93rem; }

.room-widget {
	background: var(--ls-surface);
	border: 1px solid var(--ls-line-soft);
	border-radius: var(--ls-radius-md);
	box-shadow: var(--ls-shadow-sm);
	padding: clamp(1.5rem, 2.5vw, 2rem);
}

.room-widget__rate { margin: 0 0 1.35rem; padding-bottom: 1.15rem; border-bottom: 1px solid var(--ls-line-soft); }
.room-widget__amount { font-family: var(--ls-font-heading); font-size: 2rem; color: var(--ls-primary); line-height: 1.1; }

.room-widget__unit {
	display: block;
	font-size: 0.62rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ls-muted);
	margin-top: 4px;
}

.room-widget__field { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.95rem; }

.room-widget__field label {
	font-size: 0.62rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ls-muted);
	font-weight: 600;
}

.room-widget__offline {
	background: rgba(160, 60, 40, 0.06);
	border-left: 2px solid #a03c28;
	border-radius: var(--ls-radius);
	padding: 1rem 1.1rem;
	font-size: 0.9rem;
	color: #7d2f1f;
	margin: 0;
}

.room-widget__contact { margin: 1.15rem 0 0; font-size: 0.84rem; color: var(--ls-muted); text-align: center; }

/* ============================================================ 10. AMENITIES */

/*
 * Discrete tiles rather than a seamless 1px-gap grid: with a seamless grid any
 * partly-filled last row leaves empty tracks showing the divider colour, which
 * reads as a broken grey block. Tiles are immune to the item count.
 */
.amenity-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(152px, 1fr));
	gap: clamp(0.65rem, 1.2vw, 1rem);
	list-style: none;
	margin: 0;
	padding: 0;
}

.amenity {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.85rem;
	text-align: center;
	padding: clamp(1.5rem, 3vw, 2.15rem) 0.85rem;
	background: var(--ls-surface);
	border: 1px solid var(--ls-line-soft);
	border-radius: var(--ls-radius-md);
	transition: background-color var(--ls-dur) var(--ls-ease),
		border-color var(--ls-dur) var(--ls-ease),
		transform var(--ls-dur) var(--ls-ease);
}

.amenity:hover {
	background: var(--ls-surface);
	border-color: rgba(138, 107, 63, 0.35);
	transform: translateY(-3px);
}

.amenity__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	color: var(--ls-accent);
	border: 1px solid rgba(138, 107, 63, 0.25);
	border-radius: 50%;
	transition: background-color var(--ls-dur) var(--ls-ease), color var(--ls-dur) var(--ls-ease);
}

.amenity:hover .amenity__icon { background: var(--ls-accent); color: #fff; border-color: var(--ls-accent); }

.amenity__label {
	font-size: 0.76rem;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: var(--ls-secondary);
	font-weight: 500;
}

/* ============================================================ 11. ABOUT */

.about__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(2.5rem, 6vw, 5rem);
	align-items: center;
}

@media (min-width: 920px) { .about__grid { grid-template-columns: 1fr 1fr; } }

.about__media { position: relative; border-radius: var(--ls-radius-md); overflow: hidden; }

.about__image { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }

@media (max-width: 919px) { .about__image { aspect-ratio: 4 / 3; } }

/* A thin accent frame offset behind the image — quiet, but it reads as considered. */
.about__media::after {
	content: "";
	position: absolute;
	inset: 12px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	pointer-events: none;
}

.about__text { color: var(--ls-muted-strong); margin-bottom: 2rem; font-size: 1.02rem; }
.about__text p:first-of-type::first-letter { font-size: 1.05em; }

/* ============================================================ 12. EXPERIENCES */

.experience-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: clamp(1.25rem, 2.5vw, 2rem);
}

.experience-card {
	background: var(--ls-surface);
	border-radius: var(--ls-radius-md);
	overflow: hidden;
	box-shadow: var(--ls-shadow-xs);
	transition: box-shadow var(--ls-dur-slow) var(--ls-ease), transform var(--ls-dur-slow) var(--ls-ease);
}

.experience-card:hover { box-shadow: var(--ls-shadow-md); transform: translateY(-5px); }

.experience-card__link { display: block; text-decoration: none; color: inherit; }
.experience-card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--ls-surface-alt); }

.experience-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1000ms var(--ls-ease-out);
}

.experience-card:hover .experience-card__media img { transform: scale(1.07); }

.experience-card__body { padding: 1.35rem 1.45rem 1.6rem; }
.experience-card__title { font-size: 1.15rem; margin: 0 0 0.4rem; }

.experience-card__meta {
	font-size: 0.62rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ls-accent);
	margin: 0 0 0.6rem;
	font-weight: 600;
}

.experience-card__excerpt { font-size: 0.89rem; color: var(--ls-muted); margin: 0; line-height: 1.65; }

/* ============================================================ 13. GALLERY */

.gallery-strip {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: minmax(230px, 1fr);
	gap: 0.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-inline: var(--ls-gutter);
	padding-bottom: 0.5rem;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: thin;
}

.gallery-strip::-webkit-scrollbar { height: 4px; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--ls-line); border-radius: 2px; }

.gallery-strip__item,
.masonry__button {
	display: block;
	padding: 0;
	border: 0;
	background: none;
	cursor: zoom-in;
	overflow: hidden;
	border-radius: var(--ls-radius);
	scroll-snap-align: start;
	position: relative;
}

.gallery-strip__item img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; transition: transform 1000ms var(--ls-ease-out); }
.gallery-strip__item:hover img { transform: scale(1.07); }

.gallery-strip__item::after,
.masonry__button::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(16, 15, 13, 0.18);
	opacity: 0;
	transition: opacity var(--ls-dur) var(--ls-ease);
}

.gallery-strip__item:hover::after,
.masonry__button:hover::after { opacity: 1; }

.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }

.chip {
	padding: 0.6rem 1.25rem;
	border: 1px solid var(--ls-line);
	border-radius: 999px;
	background: transparent;
	font-size: 0.68rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 600;
	cursor: pointer;
	color: var(--ls-secondary);
	transition: all var(--ls-dur) var(--ls-ease);
}

.chip:hover { border-color: var(--ls-accent); color: var(--ls-accent); }
.chip.is-active { background: var(--ls-primary); border-color: var(--ls-primary); color: #fff; }

.masonry { columns: 1; column-gap: 0.85rem; }

@media (min-width: 600px) { .masonry { columns: 2; } }
@media (min-width: 960px) { .masonry { columns: 3; } }

.masonry__item { break-inside: avoid; margin: 0 0 0.85rem; }
.masonry__button img { width: 100%; height: auto; transition: transform 900ms var(--ls-ease-out); }
.masonry__button:hover img { transform: scale(1.04); }
.masonry__item.is-hidden { display: none; }

/* Lightbox */

.lightbox {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: rgba(12, 11, 9, 0.96);
	display: grid;
	place-items: center;
	padding: clamp(1rem, 5vw, 4rem);
	animation: ls-fade-in 240ms var(--ls-ease) both;
}

.lightbox[hidden] { display: none; }
.lightbox__img { max-width: 100%; max-height: 86vh; object-fit: contain; border-radius: var(--ls-radius); }

.lightbox__btn {
	position: absolute;
	width: 50px;
	height: 50px;
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	display: grid;
	place-items: center;
	cursor: pointer;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	transition: background-color var(--ls-dur) var(--ls-ease);
}

.lightbox__btn:hover { background: rgba(255, 255, 255, 0.24); }
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ============================================================ 14. REVIEWS */

.review-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: clamp(1.25rem, 2.5vw, 2rem);
}

.review {
	margin: 0;
	padding: clamp(1.75rem, 3vw, 2.35rem);
	background: var(--ls-bg);
	border: 1px solid var(--ls-line-soft);
	border-radius: var(--ls-radius-md);
	display: flex;
	flex-direction: column;
	gap: 1.15rem;
	position: relative;
}

.section--surface .review { background: var(--ls-bg); }

.stars { display: inline-flex; gap: 3px; color: rgba(27, 26, 23, 0.17); }
.stars .star.is-on { color: var(--ls-accent); }
.stars .star svg { fill: currentColor; stroke: none; }

.review__quote {
	margin: 0;
	padding: 0;
	border: 0;
	font-family: var(--ls-font-heading);
	font-size: 1.06rem;
	line-height: 1.65;
	color: var(--ls-primary);
	letter-spacing: -0.005em;
}

.review__by { display: flex; align-items: center; gap: 0.9rem; margin-top: auto; padding-top: 0.5rem; }
.review__avatar img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.review__meta { display: flex; flex-direction: column; font-size: 0.76rem; color: var(--ls-muted); }
.review__meta strong { color: var(--ls-primary); font-size: 0.9rem; font-weight: 600; letter-spacing: 0.01em; }

/* ============================================================ 15. LOCATION */

.location__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(2.5rem, 5vw, 4rem);
	align-items: center;
}

@media (min-width: 920px) { .location__grid { grid-template-columns: 0.8fr 1.2fr; } }

.location__list { list-style: none; margin: 0 0 2rem; padding: 0; display: grid; gap: 1rem; }
.location__list li { display: flex; align-items: flex-start; gap: 0.8rem; }
.location__list .icon { color: var(--ls-accent); flex-shrink: 0; margin-top: 4px; }
.location__list a { color: var(--ls-primary); text-decoration: none; }
.location__list a:hover { color: var(--ls-accent); }

.location__map,
.contact-map { border-radius: var(--ls-radius-md); overflow: hidden; box-shadow: var(--ls-shadow-sm); }

.location__map iframe,
.contact-map iframe { display: block; width: 100%; min-height: 440px; border: 0; filter: grayscale(0.25) contrast(1.05); }

.contact-map { border-radius: 0; margin-top: 2.5rem; }
.contact-map iframe { min-height: 460px; }

/* ============================================================ 16. CTA */

.cta {
	position: relative;
	background: var(--ls-primary);
	color: #fff;
	padding-block: clamp(4.5rem, 9vw, 7.5rem);
	text-align: center;
	overflow: hidden;
}

.cta::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(70% 120% at 50% 0%, rgba(138, 107, 63, 0.3), transparent 65%);
	pointer-events: none;
}

.cta__inner { position: relative; max-width: 660px; }
.cta__title { color: #fff; margin-bottom: 1rem; }
.cta__text { color: rgba(255, 255, 255, 0.75); margin-bottom: 2.5rem; font-size: 1.05rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* ============================================================ 17. PAGE HERO */

.page-hero { position: relative; padding-block: clamp(3rem, 7vw, 5.5rem); background: var(--ls-surface); }

.has-transparent-header .page-hero { padding-top: calc(var(--ls-header-h) + 3rem); }

.page-hero--image {
	color: #fff;
	min-height: 400px;
	display: flex;
	align-items: flex-end;
	padding-top: calc(var(--ls-header-h) + 5rem);
	background: var(--ls-primary);
}

.page-hero__media { position: absolute; inset: 0; }
.page-hero__image { width: 100%; height: 100%; object-fit: cover; }
.page-hero__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,15,13,.42), rgba(16,15,13,.74)); }
.page-hero__inner { position: relative; }
.page-hero--image .page-hero__title { color: #fff; }
.page-hero--image .breadcrumbs a,
.page-hero--image .breadcrumbs [aria-current] { color: rgba(255,255,255,.86); }
.page-hero__title { margin: 0; }
.page-hero__subtitle { color: var(--ls-muted-strong); margin: 1rem 0 0; max-width: 58ch; font-size: 1.03rem; }
.page-hero--image .page-hero__subtitle { color: rgba(255,255,255,.85); }

.breadcrumbs { margin-bottom: 1rem; }

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.68rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.breadcrumbs li:not(:last-child)::after { content: "—"; margin-left: 0.55rem; color: var(--ls-muted); opacity: 0.5; }
.breadcrumbs a { color: var(--ls-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--ls-accent); }
.breadcrumbs [aria-current] { color: var(--ls-primary); }

/* ============================================================ 18. BOOKING FLOW
 *
 * Everything below is the runtime contract with LodgeStay Core's booking.js.
 * Class names are produced by the plugin — do not rename.
 */

.booking-flow { display: grid; gap: clamp(1.75rem, 3.5vw, 2.75rem); }

.booking-steps {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.6rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

@media (min-width: 760px) { .booking-steps { grid-template-columns: repeat(4, 1fr); } }

.booking-steps__item {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	padding: 1rem 1.15rem;
	background: var(--ls-surface);
	border-radius: var(--ls-radius);
	border: 1px solid var(--ls-line-soft);
}

.booking-steps__num {
	display: grid;
	place-items: center;
	width: 27px;
	height: 27px;
	border-radius: 50%;
	background: rgba(138, 107, 63, 0.12);
	color: var(--ls-accent);
	font-size: 0.72rem;
	font-weight: 700;
	flex-shrink: 0;
}

.booking-steps__label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ls-secondary); font-weight: 500; }

.ls-message {
	padding: 1.1rem 1.35rem;
	border-radius: var(--ls-radius);
	font-size: 0.94rem;
	background: rgba(138, 107, 63, 0.08);
	border-left: 2px solid var(--ls-accent);
	color: var(--ls-secondary);
}

.ls-message--error { background: rgba(160, 60, 40, 0.07); border-left-color: #a03c28; color: #7d2f1f; }

.ls-results { display: grid; gap: 1.25rem; }

.ls-result {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	background: var(--ls-surface);
	border-radius: var(--ls-radius-md);
	overflow: hidden;
	box-shadow: var(--ls-shadow-xs);
	transition: box-shadow var(--ls-dur) var(--ls-ease);
}

.ls-result:hover { box-shadow: var(--ls-shadow-sm); }

@media (min-width: 840px) { .ls-result { grid-template-columns: 280px minmax(0, 1fr) 240px; } }

.ls-result__media { background: var(--ls-surface-alt); overflow: hidden; }
.ls-result__media img { width: 100%; height: 100%; min-height: 200px; object-fit: cover; }
.ls-result__placeholder { display: block; width: 100%; height: 100%; min-height: 200px; background: linear-gradient(135deg, #efe9e1, #d9cfc0); }

.ls-result__body { padding: clamp(1.35rem, 2.4vw, 1.85rem); display: flex; flex-direction: column; gap: 0.7rem; }
.ls-result__title { margin: 0; font-size: 1.32rem; }
.ls-result__title a { color: var(--ls-primary); text-decoration: none; }
.ls-result__title a:hover { color: var(--ls-accent); }
.ls-result__excerpt { margin: 0; font-size: 0.9rem; color: var(--ls-muted); line-height: 1.65; }

.ls-result__facts,
.ls-result__amenities { display: flex; flex-wrap: wrap; gap: 0.4rem 0.9rem; list-style: none; margin: 0; padding: 0; }

.ls-result__facts li { font-size: 0.78rem; letter-spacing: 0.02em; color: var(--ls-secondary); }

.ls-result__amenities li {
	font-size: 0.66rem;
	letter-spacing: 0.06em;
	padding: 0.25rem 0.7rem;
	background: var(--ls-ink-05);
	border-radius: 999px;
	color: var(--ls-secondary);
}

.ls-result__aside {
	padding: clamp(1.35rem, 2.4vw, 1.85rem);
	border-top: 1px solid var(--ls-line-soft);
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0.6rem;
	background: var(--ls-bg);
}

@media (min-width: 840px) {
	.ls-result__aside { border-top: 0; border-left: 1px solid var(--ls-line-soft); text-align: right; }
}

.ls-result__rate { margin: 0; font-family: var(--ls-font-heading); font-size: 1.5rem; color: var(--ls-primary); line-height: 1.15; }

.ls-result__rate span {
	display: block;
	font-family: var(--ls-font-body);
	font-size: 0.6rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ls-muted);
	margin-top: 3px;
}

.ls-result__total { margin: 0 0 0.6rem; font-size: 0.82rem; color: var(--ls-muted); }
.ls-result__total strong { color: var(--ls-primary); font-size: 0.95rem; }

.ls-guest-form {
	background: var(--ls-surface);
	border-radius: var(--ls-radius-md);
	padding: clamp(1.75rem, 3.5vw, 2.75rem);
	box-shadow: var(--ls-shadow-sm);
}

.ls-step-title { margin-bottom: 0.3rem; font-size: 1.65rem; }
.ls-step-sub { color: var(--ls-muted); font-size: 0.88rem; letter-spacing: 0.04em; margin-bottom: 2rem; }

.ls-field-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 1rem; }

@media (min-width: 660px) { .ls-field-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.ls-field { display: flex; flex-direction: column; gap: 0.4rem; margin: 0 0 1.1rem; }

.ls-field label {
	font-size: 0.62rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ls-muted);
	font-weight: 600;
}

.ls-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.ls-summary { background: var(--ls-bg); border-radius: var(--ls-radius); padding: 1.5rem 1.65rem; margin: 1.75rem 0; border: 1px solid var(--ls-line-soft); }

.ls-summary h4 {
	margin: 0 0 1rem;
	font-size: 0.62rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--ls-muted);
	font-family: var(--ls-font-body);
	font-weight: 600;
}

.ls-summary dl { display: grid; grid-template-columns: auto 1fr; gap: 0.5rem 1.5rem; margin: 0; font-size: 0.9rem; }
.ls-summary dt { color: var(--ls-muted); }
.ls-summary dd { margin: 0; text-align: right; }
.ls-summary__total { font-family: var(--ls-font-heading); font-size: 1.3rem; color: var(--ls-primary); }

.ls-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: flex-end; }

.ls-confirmation {
	background: var(--ls-surface);
	border-radius: var(--ls-radius-md);
	padding: clamp(2rem, 4.5vw, 3.25rem);
	box-shadow: var(--ls-shadow-sm);
	text-align: center;
	border-top: 2px solid var(--ls-accent);
}

.ls-confirmation h3 { font-size: 1.55rem; margin-bottom: 0.75rem; }

.ls-confirmation__ref {
	font-family: var(--ls-font-heading);
	font-size: 1.75rem;
	color: var(--ls-accent);
	letter-spacing: 0.08em;
	margin-bottom: 2rem;
}

.ls-confirmation dl { display: grid; grid-template-columns: auto 1fr; gap: 0.55rem 1.5rem; text-align: left; max-width: 440px; margin: 0 auto 2rem; font-size: 0.93rem; }
.ls-confirmation dt { color: var(--ls-muted); }
.ls-confirmation dd { margin: 0; text-align: right; }
.ls-confirmation__pay { text-align: left; background: var(--ls-bg); border-radius: var(--ls-radius); padding: 1.5rem 1.65rem; margin-bottom: 1.75rem; border: 1px solid var(--ls-line-soft); }

.ls-pay-details { display: grid; grid-template-columns: auto 1fr; gap: 0.45rem 1.35rem; margin: 0; font-size: 0.91rem; }
.ls-pay-details dt { color: var(--ls-muted); }
.ls-pay-details dd { margin: 0; font-weight: 600; }
.ls-pay-note { font-size: 0.87rem; color: var(--ls-muted); margin: 0.95rem 0 0; line-height: 1.6; }

.booking-flow__pay { background: var(--ls-surface); border-radius: var(--ls-radius-md); padding: clamp(1.5rem, 2.5vw, 2rem); box-shadow: var(--ls-shadow-xs); }
.booking-flow__pay-title { font-size: 1.1rem; margin-bottom: 1rem; }
.booking-flow__pay-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.9rem; }

.booking-flow__pay-list li {
	display: flex;
	flex-direction: column;
	font-size: 0.9rem;
	padding-left: 0.9rem;
	border-left: 2px solid var(--ls-line);
}

.booking-flow__pay-list strong { color: var(--ls-primary); }
.booking-flow__pay-list span { color: var(--ls-muted); font-size: 0.84rem; }

.booking-flow__help { text-align: center; color: var(--ls-muted); font-size: 0.92rem; }

.ls-empty-state,
.ls-search { }

.ls-empty-state {
	text-align: center;
	padding: clamp(2.5rem, 5vw, 3.75rem) 1.5rem;
	background: var(--ls-surface);
	border-radius: var(--ls-radius-md);
	border: 1px dashed var(--ls-line);
}

.ls-empty-state p { color: var(--ls-muted); margin-bottom: 1.5rem; font-size: 1rem; }

/* ============================================================ 19. CONTENT */

.entry-content { font-size: 1.02rem; max-width: var(--ls-measure); }
.entry-content > * + * { margin-top: 1.2rem; }
.entry-content h2 { margin-top: 2.5rem; }
.entry-content h3 { margin-top: 2rem; }
.entry-content img { border-radius: var(--ls-radius); }
.entry-content--intro { max-width: 740px; margin-bottom: 3rem; color: var(--ls-muted-strong); font-size: 1.06rem; }
.entry-content .alignwide { width: min(100vw - 2 * var(--ls-gutter), 1100px); margin-inline: auto; max-width: none; }
.entry-content .alignfull { width: 100vw; margin-inline: calc(50% - 50vw); max-width: none; }

.post-card { display: grid; gap: 1.5rem; padding-bottom: 2.5rem; margin-bottom: 2.5rem; border-bottom: 1px solid var(--ls-line-soft); }

@media (min-width: 720px) { .post-card { grid-template-columns: 300px minmax(0, 1fr); } }

.post-card__media { display: block; border-radius: var(--ls-radius); overflow: hidden; }
.post-card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.post-card__title { font-size: 1.55rem; margin: 0 0 0.5rem; }
.post-card__title a { color: var(--ls-primary); text-decoration: none; }
.post-card__title a:hover { color: var(--ls-accent); }
.post-card__meta { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ls-muted); margin: 0 0 0.7rem; }
.post-card__excerpt { color: var(--ls-muted-strong); }

.single-post__meta { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ls-muted); margin-bottom: 2rem; }

.post-nav { display: flex; justify-content: space-between; gap: 1.5rem; margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--ls-line-soft); font-size: 0.9rem; }

.widget-area { display: grid; gap: 2.25rem; align-content: start; }

.widget-title,
.footer__heading {
	font-size: 0.66rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	font-family: var(--ls-font-body);
	font-weight: 600;
	color: var(--ls-muted);
	margin-bottom: 1.1rem;
}

.widget ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.widget a { color: var(--ls-primary); text-decoration: none; font-size: 0.93rem; }
.widget a:hover { color: var(--ls-accent); }

.search-form { display: flex; gap: 0.5rem; }

.comments-area { margin-top: 4rem; padding-top: 2.75rem; border-top: 1px solid var(--ls-line-soft); }
.comment-list { list-style: none; padding: 0; margin: 0 0 2.75rem; display: grid; gap: 1.75rem; }
.comment-list .children { list-style: none; padding-left: 1.75rem; margin-top: 1.5rem; display: grid; gap: 1.5rem; }

.pagination { margin-top: 3rem; }
.pagination .nav-links { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.pagination .page-numbers {
	display: grid;
	place-items: center;
	min-width: 46px;
	height: 46px;
	padding: 0 0.7rem;
	border: 1px solid var(--ls-line);
	border-radius: var(--ls-radius);
	text-decoration: none;
	color: var(--ls-primary);
	font-size: 0.85rem;
	transition: all var(--ls-dur) var(--ls-ease);
}

.pagination .page-numbers.current,
.pagination .page-numbers:hover { background: var(--ls-primary); border-color: var(--ls-primary); color: #fff; }

/* ============================================================ 20. EMPTY STATES */

.empty-state { text-align: center; padding: clamp(3rem, 7vw, 5.5rem) 1.5rem; background: var(--ls-surface); border-radius: var(--ls-radius-md); }
.empty-state--lg { padding-block: clamp(4.5rem, 11vw, 8rem); }
.empty-state__title { margin-bottom: 1rem; }
.empty-state__text { color: var(--ls-muted-strong); max-width: 46ch; margin-inline: auto; margin-bottom: 2.5rem; }
.empty-state__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }
.empty-state__search { max-width: 440px; margin: 3rem auto 0; }
.empty-state h2 { margin-bottom: 0.75rem; }
.empty-state p { color: var(--ls-muted); margin-bottom: 1.75rem; }

/* ============================================================ 21. CONTACT */

.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(2.5rem, 5vw, 4rem); }

@media (min-width: 920px) { .contact-grid { grid-template-columns: minmax(0, 1fr) 360px; align-items: start; } }

.contact-grid__details { background: var(--ls-surface); border-radius: var(--ls-radius-md); padding: clamp(1.75rem, 3vw, 2.25rem); box-shadow: var(--ls-shadow-sm); }
.contact-details__title { font-size: 1.2rem; margin-bottom: 1.35rem; }
.contact-details__list { list-style: none; margin: 0 0 2rem; padding: 0; display: grid; gap: 1rem; }
.contact-details__list li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.93rem; }
.contact-details__list .icon { color: var(--ls-accent); flex-shrink: 0; margin-top: 4px; }
.contact-details__list a { color: var(--ls-primary); text-decoration: none; }
.contact-details__list a:hover { color: var(--ls-accent); }

/* ============================================================ 22. FOOTER */

.footer { background: var(--ls-primary); color: rgba(255, 255, 255, 0.72); margin-top: auto; }

.footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: clamp(2.5rem, 5vw, 4rem);
	padding-block: clamp(3.75rem, 8vw, 6rem);
}

@media (min-width: 660px) { .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1040px) { .footer__grid { grid-template-columns: 1.6fr 1fr 1.15fr 1fr; } }

.footer__heading { color: rgba(255, 255, 255, 0.45); }

.footer__col--brand .footer__heading {
	font-family: var(--ls-font-heading);
	font-size: 1.65rem;
	letter-spacing: -0.015em;
	text-transform: none;
	color: #fff;
	margin-bottom: 1.15rem;
	font-weight: 400;
}

.footer__about { font-size: 0.92rem; line-height: 1.75; max-width: 38ch; }
.footer__rating { display: flex; align-items: center; gap: 0.7rem; font-size: 0.82rem; margin-top: 1.5rem; }
.footer__rating .stars { color: rgba(255, 255, 255, 0.22); }

.footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }

.footer__list a {
	color: rgba(255, 255, 255, 0.75);
	text-decoration: none;
	font-size: 0.88rem;
	letter-spacing: 0.04em;
	transition: color var(--ls-dur) var(--ls-ease), padding-left var(--ls-dur) var(--ls-ease);
}

.footer__list a:hover { color: #fff; padding-left: 4px; }
.footer__list--contact li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.88rem; }
.footer__list--contact .icon { color: var(--ls-accent); flex-shrink: 0; margin-top: 3px; }
.footer__list--contact a:hover { padding-left: 0; }

.footer__social { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.footer__social a { color: rgba(255, 255, 255, 0.75); text-decoration: none; font-size: 0.88rem; letter-spacing: 0.04em; }
.footer__social a:hover { color: #fff; }

.footer__widgets { margin-top: 2rem; }
.footer__widgets a { color: rgba(255, 255, 255, 0.75); }
.footer__widgets .footer__heading { color: rgba(255, 255, 255, 0.45); }

.footer__bar { border-top: 1px solid rgba(255, 255, 255, 0.1); }

.footer__bar-inner {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.75rem;
	align-items: center;
	justify-content: space-between;
	padding-block: 1.75rem;
	font-size: 0.76rem;
	letter-spacing: 0.06em;
}

.footer__copy { margin: 0; color: rgba(255, 255, 255, 0.55); }

.footer__legal,
.footer__legal-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1.35rem; list-style: none; margin: 0; padding: 0; }
.footer__legal a,
.footer__legal-links a { color: rgba(255, 255, 255, 0.55); text-decoration: none; }
.footer__legal a:hover,
.footer__legal-links a:hover { color: #fff; }

/* ============================================================ 23. FLOATING UI */

.wa-float {
	position: fixed;
	right: 1.35rem;
	bottom: 1.35rem;
	z-index: 90;
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	background: #25d366;
	color: #fff;
	box-shadow: 0 6px 24px rgba(37, 211, 102, 0.36);
	transition: transform var(--ls-dur) var(--ls-ease), box-shadow var(--ls-dur) var(--ls-ease);
}

.wa-float:hover { transform: scale(1.08); color: #fff; box-shadow: 0 10px 32px rgba(37, 211, 102, 0.48); }

.sticky-cta { display: none; }

@media (max-width: 767px) {
	.sticky-cta {
		position: fixed;
		inset-inline: 0;
		bottom: 0;
		z-index: 80;
		display: flex;
		align-items: center;
		gap: 0.75rem;
		padding: 0.75rem var(--ls-gutter);
		padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
		background: rgba(255, 255, 255, 0.96);
		backdrop-filter: blur(16px);
		-webkit-backdrop-filter: blur(16px);
		border-top: 1px solid var(--ls-line-soft);
		box-shadow: 0 -4px 24px rgba(20, 19, 16, 0.1);
		transform: translateY(120%);
		transition: transform 360ms var(--ls-ease-out);
	}

	.sticky-cta.is-visible { transform: translateY(0); }
	.sticky-cta .btn { flex: 1; min-height: 46px; }
	.sticky-cta__price { font-size: 0.82rem; white-space: nowrap; }
	.sticky-cta__price .room-rate__unit { display: none; }
	.sticky-cta__price .room-rate__amount { font-size: 1.05rem; }

	.sticky-cta__wa {
		display: grid;
		place-items: center;
		width: 46px;
		height: 46px;
		border-radius: 50%;
		background: #25d366;
		color: #fff;
		flex-shrink: 0;
	}

	/* The sticky bar already carries a WhatsApp action — showing the floating
	   bubble as well puts two identical controls on top of each other. */
	.wa-float { display: none; }
}

/* ============================================================ 24. MOTION */

[data-reveal] {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 800ms var(--ls-ease-out), transform 800ms var(--ls-ease-out);
}

[data-reveal].is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	[data-reveal] { opacity: 1; transform: none; }
	.hero__image { animation: none; }
	.hero__scroll-line { animation: none; }
	.btn:hover,
	.ls-btn:hover,
	.room-card:hover,
	.experience-card:hover { transform: none; }
}

/* ============================================================ 25. PRINT */

@media print {
	.header,
	.footer,
	.wa-float,
	.sticky-cta,
	.mobile-nav,
	.hero,
	.booking-flow__search,
	.booking-steps,
	.lightbox { display: none !important; }

	body { background: #fff; color: #000; }
	.ls-confirmation { box-shadow: none; padding: 0; border: 0; }
	a[href]::after { content: ""; }
}

/* Light eyebrow, used on dark panels such as the closing CTA. */
.eyebrow--light { color: rgba(255, 255, 255, 0.7); justify-content: center; }
.eyebrow--light::before {
	content: "";
	flex: 0 0 42px;
	height: 1px;
	background: currentColor;
	opacity: 0.45;
}

/*
 * Safety net: if any navigation markup ends up inside the dark footer with a
 * header-oriented class (a child theme, a plugin, a menu walker), force it to
 * inherit footer colours rather than rendering near-black on near-black.
 */
.footer .nav__list,
.footer .mobile-nav__list {
	display: grid;
	gap: 0.7rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer .nav__list a,
.footer .mobile-nav__list a {
	display: block;
	padding: 0;
	border: 0;
	font-family: var(--ls-font-body);
	font-size: 0.88rem;
	letter-spacing: 0.04em;
	text-transform: none;
	color: rgba(255, 255, 255, 0.75);
}

.footer .nav__list a::after,
.footer .mobile-nav__list a::after { display: none; }
.footer .nav__list a:hover,
.footer .mobile-nav__list a:hover { color: #fff; }
