/*
 * Hotel Elementor Theme — stylesheet.
 *
 * Every colour, size, space and duration comes from a custom property defined in
 * inc/tokens.php. If you find a literal hex value or a magic pixel number below,
 * it is a bug: put it in the token file instead.
 *
 * Order matters and is deliberate:
 *   1  Reset and base elements
 *   2  Layout primitives (container, section, grid)
 *   3  Typography
 *   4  Buttons, forms, links
 *   5  Header, navigation, off-canvas, mobile bar, promo
 *   6  Footer
 *   7  Page chrome: banner, breadcrumb, tabs
 *   8  Cards
 *   9  Sliders, gallery, lightbox, modal
 *  10  Sections
 *  11  Blog, comments, utilities
 */

/* ========================================================================== */
/* 1  Reset and base                                                          */
/* ========================================================================== */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	/* The sticky header would otherwise cover the target of an in-page link. */
	scroll-padding-top: calc(var(--hotel-header-height) + var(--hotel-space-md));
}

@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;
	}
}

body {
	margin: 0;
	background: var(--hotel-paper);
	color: var(--hotel-ink);
	font-family: var(--hotel-font-body);
	font-size: var(--hotel-text-base);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-wrap: break-word;
}

/* Locks the page behind the off-canvas panel and the modal. Scrollbar width is
   compensated so the layout does not jump sideways when it disappears. */
body.hotel-scroll-locked {
	overflow: hidden;
	padding-right: var(--hotel-scrollbar-width, 0);
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

img {
	height: auto;
}

input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
}

button {
	cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 var(--hotel-space-sm);
	font-family: var(--hotel-font-display);
	font-weight: 400;
	line-height: 1.15;
	color: var(--hotel-primary);
	text-wrap: balance;
}

p,
ul,
ol,
figure,
table,
blockquote {
	margin: 0 0 var(--hotel-space-md);
}

:where(p, li):last-child {
	margin-bottom: 0;
}

hr {
	height: 0;
	margin: var(--hotel-space-lg) 0;
	border: 0;
	border-top: 1px solid var(--hotel-line);
}

/* One focus style for the whole site. Two-tone so it is visible on both the
   white page and the navy footer. */
:focus-visible {
	outline: 2px solid var(--hotel-secondary-ink);
	outline-offset: 3px;
	border-radius: var(--hotel-radius-sm);
}

.hotel-footer :focus-visible,
.hotel-header--transparent :focus-visible,
.hotel-hero :focus-visible {
	outline-color: var(--hotel-secondary);
}

/*
 * Icons.
 *
 * A base size is mandatory, not cosmetic: an inline <svg> with no CSS size and
 * no width/height attributes falls back to the replaced-element default of
 * 300x150px. Every icon on the page rendered at that size before this rule
 * existed.
 *
 * Sized in em so an icon always matches the text it sits beside, and
 * flex:none so it never gets squeezed inside a flex row.
 */
.hotel-icon {
	width: 1em;
	height: 1em;
	flex: none;
	fill: none;
	vertical-align: -0.125em;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.skip-link {
	position: absolute;
	top: var(--hotel-space-2xs);
	left: var(--hotel-space-2xs);
	z-index: 1000;
	padding: var(--hotel-space-2xs) var(--hotel-space-sm);
	background: var(--hotel-primary);
	color: var(--hotel-white);
	text-decoration: none;
}

.skip-link:not(:focus) {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip-path: inset(50%);
}

/* ========================================================================== */
/* 2  Layout primitives                                                       */
/* ========================================================================== */

.hotel-container {
	width: 100%;
	max-width: var(--hotel-container-default);
	margin-inline: auto;
	padding-inline: var(--hotel-space-md);
}

.hotel-container--narrow {
	max-width: var(--hotel-container-narrow);
}

.hotel-container--wide {
	max-width: var(--hotel-container-wide);
}

.hotel-section {
	padding-block: var(--hotel-space-2xl);
}

.hotel-section--tight {
	padding-block: var(--hotel-space-xl);
}

.hotel-section--raised {
	background: var(--hotel-paper-raised);
}

.hotel-section__head {
	position: relative;
	margin-bottom: var(--hotel-space-xl);
	text-align: center;
}

.hotel-section__title {
	margin-bottom: var(--hotel-space-2xs);
	font-size: var(--hotel-text-2xl);
}

.hotel-section__lead {
	max-width: var(--hotel-container-prose);
	margin-inline: auto;
	color: var(--hotel-secondary-ink);
}

/* The "View all rooms" button sits beside the section title on desktop and
   drops below the grid on mobile — two elements, one shown at a time, because
   moving one element between two places with CSS alone requires a grid hack
   that breaks the tab order. */
.hotel-section__action {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.hotel-section__action--below {
	display: none;
	margin-top: var(--hotel-space-lg);
	text-align: center;
}

@media (max-width: 991px) {
	.hotel-section__action {
		display: none;
	}

	.hotel-section__action--below {
		display: block;
	}
}

.hotel-grid {
	display: grid;
	gap: var(--hotel-space-md);
}

.hotel-grid--2 {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
}

.hotel-grid--3 {
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}

/* ========================================================================== */
/* 3  Typography                                                              */
/* ========================================================================== */

.hotel-display {
	font-family: var(--hotel-font-display);
}

.hotel-eyebrow {
	display: block;
	margin-bottom: var(--hotel-space-2xs);
	color: var(--hotel-secondary-ink);
	font-size: var(--hotel-text-sm);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hotel-prose {
	max-width: var(--hotel-container-prose);
}

.hotel-prose a {
	color: var(--hotel-secondary-ink);
}

.hotel-prose h2 {
	margin-top: var(--hotel-space-xl);
	font-size: var(--hotel-text-xl);
}

.hotel-prose h3 {
	margin-top: var(--hotel-space-lg);
	font-size: var(--hotel-text-lg);
}

.hotel-prose ul,
.hotel-prose ol {
	padding-left: var(--hotel-space-md);
}

.hotel-prose li + li {
	margin-top: var(--hotel-space-3xs);
}

.hotel-prose blockquote {
	padding-left: var(--hotel-space-md);
	border-left: 2px solid var(--hotel-secondary);
	color: var(--hotel-ink-soft);
	font-family: var(--hotel-font-display);
	font-size: var(--hotel-text-md);
}

/* A short gold rule under a card title. Decorative, so hidden from the a11y
   tree by being a pseudo-element rather than an <hr>. */
.hotel-rule::after {
	content: "";
	display: block;
	width: 4rem;
	margin: var(--hotel-space-xs) auto 0;
	border-top: 1px solid var(--hotel-secondary);
}

/* ========================================================================== */
/* 4  Buttons, links, forms                                                   */
/* ========================================================================== */

a {
	color: var(--hotel-primary);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
	transition: color var(--hotel-motion-fast) var(--hotel-motion-ease);
}

a:hover {
	color: var(--hotel-secondary-ink);
}

.hotel-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--hotel-space-2xs);
	min-height: var(--hotel-control-height);
	padding: 0 var(--hotel-control-padding-x);
	border: 1px solid transparent;
	border-radius: var(--hotel-radius-sm);
	font-size: var(--hotel-text-sm);
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	transition:
		background-color var(--hotel-motion-base) var(--hotel-motion-ease),
		border-color var(--hotel-motion-base) var(--hotel-motion-ease),
		color var(--hotel-motion-base) var(--hotel-motion-ease);
}

.hotel-btn .hotel-icon {
	width: 1.1em;
	height: 1.1em;
	flex: none;
}

/*
 * Solid gold. The ground is `secondary-ink` (#8a6220), not the brand gold:
 * white on the brand gold measures 3.10:1 and fails AA, while white on this
 * measures 5.46:1. It still reads unmistakably gold.
 */
.hotel-btn--primary {
	background: var(--hotel-secondary-ink);
	border-color: var(--hotel-secondary-ink);
	color: var(--hotel-white);
}

.hotel-btn--primary:hover,
.hotel-btn--primary:focus-visible {
	background: var(--hotel-secondary-dark);
	border-color: var(--hotel-secondary-dark);
	color: var(--hotel-white);
}

.hotel-btn--outline {
	border-color: var(--hotel-primary);
	color: var(--hotel-primary);
}

.hotel-btn--outline:hover,
.hotel-btn--outline:focus-visible {
	background: var(--hotel-primary);
	color: var(--hotel-white);
}

/* For use over a photograph, where the only reliable ground is the overlay. */
.hotel-btn--light {
	border-color: var(--hotel-white);
	color: var(--hotel-white);
}

.hotel-btn--light:hover,
.hotel-btn--light:focus-visible {
	background: var(--hotel-white);
	color: var(--hotel-primary);
}

.hotel-btn--sm {
	min-height: var(--hotel-control-height-sm);
	padding-inline: var(--hotel-space-sm);
	font-size: var(--hotel-text-xs);
}

.hotel-btn--block {
	display: flex;
	width: 100%;
}

/* A text link that behaves like a button label. */
.hotel-link-more {
	display: inline-flex;
	align-items: center;
	gap: var(--hotel-space-3xs);
	color: var(--hotel-secondary-ink);
	font-size: var(--hotel-text-xs);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
}

.hotel-link-more .hotel-icon {
	width: 1em;
	height: 1em;
	transition: transform var(--hotel-motion-fast) var(--hotel-motion-ease);
}

.hotel-link-more:hover .hotel-icon {
	transform: translateX(2px);
}

/* -- Forms ---------------------------------------------------------------- */

/*
 * A field wrapper is markup, not prose.
 *
 * These are <p> elements, so without this reset they inherit the paragraph
 * bottom margin — and because `:last-child` zeroes it, the LAST cell in a row
 * ends up 24px taller in its margin box than its neighbours. Grid's `end`
 * alignment works on margin boxes, so the submit button in the booking bar sat
 * exactly one paragraph-margin below the date inputs it was supposed to line up
 * with. Spacing between fields comes from the container's gap instead.
 */
.hotel-field {
	display: flex;
	flex-direction: column;
	gap: var(--hotel-space-3xs);
	margin: 0;
}

/*
 * The booking form. Short fields pair up two-across, and the message, button
 * and status line run full width underneath.
 */
.hotel-booking-form {
	display: grid;
	gap: var(--hotel-space-sm);
}

.hotel-booking-form > p {
	margin: 0;
}

.hotel-booking-form__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 11rem), 1fr));
	gap: var(--hotel-space-sm);
}

.hotel-field__label {
	font-size: var(--hotel-text-xs);
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--hotel-ink-soft);
}

.hotel-field__label .hotel-required {
	color: var(--hotel-secondary-ink);
}

.hotel-input,
.hotel-select,
.hotel-textarea {
	width: 100%;
	min-height: var(--hotel-control-height);
	padding: var(--hotel-space-2xs) var(--hotel-space-xs);
	background: var(--hotel-white);
	/* line-strong, not line: WCAG 2.2 requires 3:1 for control boundaries. */
	border: 1px solid var(--hotel-line-strong);
	border-radius: var(--hotel-radius-sm);
	font-size: var(--hotel-text-sm);
	transition: border-color var(--hotel-motion-fast) var(--hotel-motion-ease);
}

.hotel-textarea {
	min-height: 7rem;
	padding-block: var(--hotel-space-xs);
	resize: vertical;
}

.hotel-input:focus,
.hotel-select:focus,
.hotel-textarea:focus {
	border-color: var(--hotel-secondary-ink);
}

.hotel-input[aria-invalid="true"],
.hotel-textarea[aria-invalid="true"] {
	border-color: #b3261e;
}

.hotel-field__error {
	color: #b3261e;
	font-size: var(--hotel-text-xs);
}

.hotel-select {
	appearance: none;
	padding-right: var(--hotel-space-lg);
	/* Chevron drawn in CSS so the control needs no extra markup. */
	background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
		linear-gradient(135deg, currentColor 50%, transparent 50%);
	background-position: right 1.15rem center, right 0.85rem center;
	background-size: 0.32rem 0.32rem, 0.32rem 0.32rem;
	background-repeat: no-repeat;
}

/* The honeypot. Not display:none — some bots skip hidden fields, and some
   screen readers announce them. Off-screen with aria-hidden and tabindex -1 is
   the combination that fools scripts without reaching real users. */
.hotel-hp {
	position: absolute !important;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.hotel-form__status {
	margin-top: var(--hotel-space-sm);
	padding: var(--hotel-space-xs) var(--hotel-space-sm);
	border-left: 3px solid var(--hotel-secondary);
	background: var(--hotel-paper-raised);
	font-size: var(--hotel-text-sm);
}

.hotel-form__status--error {
	border-left-color: #b3261e;
}

.hotel-form__status:empty {
	display: none;
}

/* ========================================================================== */
/* 5  Header                                                                  */
/* ========================================================================== */

.hotel-site {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

.hotel-main {
	flex: 1 0 auto;
}

.hotel-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: var(--hotel-white);
	border-bottom: 1px solid var(--hotel-line);
	transition:
		background-color var(--hotel-motion-base) var(--hotel-motion-ease),
		border-color var(--hotel-motion-base) var(--hotel-motion-ease);
}

/*
 * Over-the-hero state. Applied server-side from a body class, not by JavaScript
 * on first paint: a JS-applied transparent header shows one frame of dark text
 * on a dark photograph, which is exactly the flash the design cannot afford.
 */
.hotel-header-over-hero .hotel-header {
	position: fixed;
	inset-inline: 0;
	background: transparent;
	border-bottom-color: transparent;
}

.hotel-header-over-hero .hotel-header.is-scrolled {
	position: sticky;
	background: var(--hotel-white);
	border-bottom-color: var(--hotel-line);
	box-shadow: var(--hotel-shadow-sm);
}

/* Utility bar: phone, email, social. Collapses away once the page scrolls. */
.hotel-header__top {
	border-bottom: 1px solid rgba(127, 127, 127, 0.2);
	overflow: hidden;
	transition:
		max-height var(--hotel-motion-base) var(--hotel-motion-ease),
		opacity var(--hotel-motion-fast) var(--hotel-motion-ease);
	max-height: 3rem;
}

.hotel-header.is-scrolled .hotel-header__top {
	max-height: 0;
	opacity: 0;
	border-bottom-color: transparent;
}

.hotel-header__top-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--hotel-space-md);
	min-height: 2.5rem;
}

.hotel-header__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	gap: var(--hotel-space-md);
	min-height: var(--hotel-header-row);
}

.hotel-header__side {
	display: flex;
	align-items: center;
	gap: var(--hotel-space-md);
	min-width: 0;
}

.hotel-header__side--right {
	justify-content: flex-end;
}

.hotel-header__brand {
	margin: 0;
	font-size: inherit;
	line-height: 0;
}

.hotel-header__brand a {
	display: block;
}

.hotel-logo__image {
	width: auto;
	max-height: 3.5rem;
}

.hotel-logo__text {
	font-family: var(--hotel-font-display);
	font-size: var(--hotel-text-md);
	line-height: 1.2;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	white-space: nowrap;
}

/* Three logo variants, one visible at a time. The rules are written so the
   correct one is chosen with no JavaScript. */
.hotel-logo--light,
.hotel-logo--dark,
.hotel-logo--mobile {
	display: none;
}

.hotel-header-over-hero .hotel-header:not(.is-scrolled) .hotel-logo--light,
.hotel-header:not(.hotel-header--transparent) .hotel-logo--dark,
.hotel-header.is-scrolled .hotel-logo--dark {
	display: block;
}

@media (max-width: 991px) {
	.hotel-logo--light,
	.hotel-logo--dark {
		display: none !important;
	}

	.hotel-logo--mobile {
		display: block;
	}
}

/* -- Header contact strip -------------------------------------------------- */

.hotel-header__contact {
	display: flex;
	align-items: center;
	gap: var(--hotel-space-md);
	font-size: var(--hotel-text-xs);
}

.hotel-header__contact a {
	display: inline-flex;
	align-items: center;
	gap: var(--hotel-space-3xs);
	text-decoration: none;
	white-space: nowrap;
}

.hotel-header__contact .hotel-icon {
	width: 1rem;
	height: 1rem;
	color: var(--hotel-secondary);
}

/* -- Desktop navigation ---------------------------------------------------- */

.hotel-nav {
	min-width: 0;
}

.hotel-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--hotel-space-md);
	margin: 0;
	padding: 0;
	list-style: none;
}

/*
 * The header navigation must not wrap. It shares its grid column with the
 * contact strip, and once that strip is present a three-item menu breaks onto
 * three lines and the header grows to 150px tall.
 *
 * Two rules, in order of preference: never wrap, and below 1280px drop the
 * contact strip rather than the navigation — the phone number is repeated in
 * the footer and in the off-canvas panel, the navigation is not.
 */
.hotel-nav .hotel-menu {
	flex-wrap: nowrap;
	gap: var(--hotel-space-sm);
}

/* On a narrow desktop the email address is the first thing to go: it is long,
   and it is repeated in the footer and on the contact page. */
@media (max-width: 1199px) {
	.hotel-header__contact a:last-child span {
		display: none;
	}
}

.hotel-menu__item {
	position: relative;
}

.hotel-menu__link {
	display: inline-block;
	padding-block: var(--hotel-space-3xs);
	font-size: var(--hotel-text-xs);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
}

.hotel-menu__item.is-current > .hotel-menu__link {
	color: var(--hotel-secondary-ink);
}

.hotel-menu__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: var(--hotel-space-3xs);
	background: none;
	border: 0;
	color: inherit;
}

.hotel-menu__toggle .hotel-icon {
	width: 0.85rem;
	height: 0.85rem;
	transition: transform var(--hotel-motion-fast) var(--hotel-motion-ease);
}

.hotel-menu__toggle[aria-expanded="true"] .hotel-icon {
	transform: rotate(180deg);
}

.hotel-menu__sub {
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 20;
	min-width: 15rem;
	margin: 0;
	padding: var(--hotel-space-2xs) 0;
	background: var(--hotel-white);
	border: 1px solid var(--hotel-line);
	box-shadow: var(--hotel-shadow-md);
	list-style: none;
	opacity: 0;
	transform: translate(-50%, -0.4rem);
	visibility: hidden;
	transition:
		opacity var(--hotel-motion-fast) var(--hotel-motion-ease),
		transform var(--hotel-motion-fast) var(--hotel-motion-ease),
		visibility var(--hotel-motion-fast);
}

.hotel-menu__item--parent:hover > .hotel-menu__sub,
.hotel-menu__item--parent:focus-within > .hotel-menu__sub,
.hotel-menu__toggle[aria-expanded="true"] + .hotel-menu__sub,
.hotel-menu__item--parent.is-open > .hotel-menu__sub {
	opacity: 1;
	transform: translate(-50%, 0);
	visibility: visible;
}

.hotel-menu__sub .hotel-menu__link {
	display: block;
	padding: var(--hotel-space-3xs) var(--hotel-space-sm);
	color: var(--hotel-ink);
	letter-spacing: 0.04em;
	text-transform: none;
	white-space: normal;
}

.hotel-menu__sub .hotel-menu__link:hover {
	background: var(--hotel-paper-raised);
	color: var(--hotel-secondary-ink);
}

/* Header text inverts over the hero. Scoped to the transparent state only. */
.hotel-header-over-hero .hotel-header:not(.is-scrolled) {
	color: var(--hotel-white);
}

.hotel-header-over-hero .hotel-header:not(.is-scrolled) .hotel-menu__link,
.hotel-header-over-hero .hotel-header:not(.is-scrolled) .hotel-header__contact a,
.hotel-header-over-hero .hotel-header:not(.is-scrolled) .hotel-header__social a {
	color: var(--hotel-white);
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

/* The submenu panel keeps its own light ground even over the hero. */
.hotel-header-over-hero .hotel-header:not(.is-scrolled) .hotel-menu__sub .hotel-menu__link {
	color: var(--hotel-ink);
	text-shadow: none;
}

/* -- Social row ------------------------------------------------------------ */

.hotel-header__social,
.hotel-footer__social {
	display: flex;
	align-items: center;
	gap: var(--hotel-space-2xs);
	margin: 0;
	padding: 0;
	list-style: none;
}

.hotel-header__social a,
.hotel-footer__social a {
	display: grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	border: 1px solid currentColor;
	border-radius: var(--hotel-radius-pill);
	text-decoration: none;
	transition: background-color var(--hotel-motion-fast) var(--hotel-motion-ease);
}

.hotel-header__social .hotel-icon,
.hotel-footer__social .hotel-icon {
	width: 0.9rem;
	height: 0.9rem;
}

.hotel-footer__social a:hover {
	background: var(--hotel-secondary);
	border-color: var(--hotel-secondary);
	color: var(--hotel-primary);
}

/* -- Mobile header --------------------------------------------------------- */

.hotel-header__burger,
.hotel-header__call {
	display: none;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	background: none;
	border: 0;
	color: inherit;
	text-decoration: none;
}

.hotel-header__burger .hotel-icon,
.hotel-header__call .hotel-icon {
	width: 1.6rem;
	height: 1.6rem;
}

@media (max-width: 991px) {
	.hotel-header__inner {
		min-height: var(--hotel-header-height-mobile);
	}

	.hotel-header__top,
	.hotel-nav {
		display: none;
	}

	.hotel-header__burger,
	.hotel-header__call {
		display: inline-flex;
	}

	.hotel-logo__image {
		max-height: 2.75rem;
	}
}

/* ========================================================================== */
/* 5b  Off-canvas panel                                                       */
/* ========================================================================== */

.hotel-offcanvas {
	position: fixed;
	inset: 0;
	z-index: 200;
	visibility: hidden;
}

.hotel-offcanvas[data-open="true"] {
	visibility: visible;
}

.hotel-offcanvas__backdrop {
	position: absolute;
	inset: 0;
	background: var(--hotel-overlay-medium);
	opacity: 0;
	transition: opacity var(--hotel-motion-base) var(--hotel-motion-ease);
}

.hotel-offcanvas[data-open="true"] .hotel-offcanvas__backdrop {
	opacity: 1;
}

.hotel-offcanvas__panel {
	position: absolute;
	inset-block: 0;
	left: 0;
	display: flex;
	width: min(85vw, 24rem);
	flex-direction: column;
	background: var(--hotel-white);
	box-shadow: var(--hotel-shadow-lg);
	overflow-y: auto;
	overscroll-behavior: contain;
	transform: translateX(-100%);
	transition: transform var(--hotel-motion-base) var(--hotel-motion-ease);
}

.hotel-offcanvas[data-open="true"] .hotel-offcanvas__panel {
	transform: translateX(0);
}

.hotel-offcanvas__close {
	align-self: flex-end;
	padding: var(--hotel-space-sm);
	background: none;
	border: 0;
	color: var(--hotel-ink-soft);
}

.hotel-offcanvas__close .hotel-icon {
	width: 1.5rem;
	height: 1.5rem;
}

.hotel-offcanvas__body {
	padding: 0 var(--hotel-space-md) var(--hotel-space-xl);
}

/* The off-canvas reuses .hotel-menu, restacked. */
.hotel-offcanvas .hotel-menu {
	display: block;
}

.hotel-offcanvas .hotel-menu__item {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	border-bottom: 1px dotted var(--hotel-line);
}

.hotel-offcanvas .hotel-menu__link {
	padding-block: var(--hotel-space-sm);
	font-size: var(--hotel-text-sm);
}

.hotel-offcanvas .hotel-menu__toggle {
	width: 2.75rem;
	height: 2.75rem;
}

.hotel-offcanvas .hotel-menu__toggle .hotel-icon {
	width: 1.1rem;
	height: 1.1rem;
}

/* Accordion: collapsed by default, opened by the toggle. grid-template-rows
   animates to auto in browsers that support it and snaps in the rest — no
   max-height guessing, which is what makes long submenus clip. */
.hotel-offcanvas .hotel-menu__sub {
	position: static;
	display: grid;
	grid-column: 1 / -1;
	grid-template-rows: 0fr;
	min-width: 0;
	padding: 0;
	border: 0;
	box-shadow: none;
	opacity: 1;
	transform: none;
	visibility: visible;
	transition: grid-template-rows var(--hotel-motion-base) var(--hotel-motion-ease);
}

.hotel-offcanvas .hotel-menu__sub > * {
	overflow: hidden;
}

.hotel-offcanvas .hotel-menu__item--parent.is-open > .hotel-menu__sub {
	grid-template-rows: 1fr;
}

.hotel-offcanvas .hotel-menu__sub .hotel-menu__item {
	border: 0;
}

.hotel-offcanvas .hotel-menu__sub .hotel-menu__link {
	padding-left: var(--hotel-space-sm);
	color: var(--hotel-ink-soft);
}

.hotel-offcanvas__group-title {
	margin: var(--hotel-space-lg) 0 var(--hotel-space-2xs);
	color: var(--hotel-secondary-ink);
	font-family: var(--hotel-font-body);
	font-size: var(--hotel-text-xs);
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.hotel-offcanvas__contact {
	margin-top: var(--hotel-space-lg);
	padding-top: var(--hotel-space-md);
	border-top: 1px solid var(--hotel-line);
	font-size: var(--hotel-text-sm);
}

.hotel-offcanvas__contact a {
	display: inline-flex;
	align-items: center;
	gap: var(--hotel-space-3xs);
	text-decoration: none;
}

/* ========================================================================== */
/* 5c  Mobile bottom bar and promo                                            */
/* ========================================================================== */

.hotel-mobilebar {
	position: fixed;
	inset-inline: 0;
	bottom: 0;
	z-index: 90;
	display: none;
	align-items: center;
	gap: var(--hotel-space-2xs);
	padding: var(--hotel-space-2xs) var(--hotel-space-sm)
		calc(var(--hotel-space-2xs) + env(safe-area-inset-bottom));
	background: var(--hotel-primary);
}

@media (max-width: 991px) {
	.hotel-mobilebar {
		display: flex;
	}

	/* Room for the bar, so the footer's last line is never covered. */
	.hotel-site {
		padding-bottom: var(--hotel-mobilebar-height);
	}
}

.hotel-mobilebar__book {
	flex: 1;
	min-height: 2.75rem;
	border-color: var(--hotel-secondary);
	color: var(--hotel-secondary);
	border-radius: var(--hotel-radius-pill);
}

.hotel-mobilebar__book:hover,
.hotel-mobilebar__book:focus-visible {
	background: var(--hotel-secondary);
	color: var(--hotel-primary);
}

.hotel-mobilebar__gift {
	display: grid;
	place-items: center;
	width: 2.75rem;
	height: 2.75rem;
	flex: none;
	background: none;
	border: 1px solid var(--hotel-secondary);
	border-radius: var(--hotel-radius-pill);
	color: var(--hotel-secondary);
}

.hotel-mobilebar__gift .hotel-icon {
	width: 1.25rem;
	height: 1.25rem;
}

/* The promo card. One component, positioned differently at each breakpoint:
   a floating card top-right on desktop, a sheet above the bottom bar on
   mobile. */
.hotel-promo {
	position: fixed;
	z-index: 95;
	width: min(20rem, calc(100vw - var(--hotel-space-lg)));
	padding: var(--hotel-space-md);
	background: var(--hotel-primary);
	color: var(--hotel-white);
	box-shadow: var(--hotel-shadow-lg);
	text-align: center;
	top: calc(var(--hotel-header-height) + var(--hotel-space-sm));
	right: var(--hotel-space-md);
	transition:
		opacity var(--hotel-motion-base) var(--hotel-motion-ease),
		transform var(--hotel-motion-base) var(--hotel-motion-ease),
		visibility var(--hotel-motion-base);
}

.hotel-promo[hidden] {
	display: block;
	opacity: 0;
	transform: translateY(-0.5rem);
	visibility: hidden;
	pointer-events: none;
}

.hotel-promo__title {
	margin-bottom: var(--hotel-space-2xs);
	color: var(--hotel-secondary);
	font-family: var(--hotel-font-body);
	font-size: var(--hotel-text-xs);
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.hotel-promo__text {
	margin-bottom: var(--hotel-space-sm);
	font-size: var(--hotel-text-xs);
	line-height: 1.6;
}

.hotel-promo__code {
	font-weight: 600;
	color: var(--hotel-secondary);
}

.hotel-promo__close {
	position: absolute;
	top: var(--hotel-space-3xs);
	right: var(--hotel-space-3xs);
	display: grid;
	place-items: center;
	width: 2rem;
	height: 2rem;
	background: none;
	border: 0;
	color: inherit;
	opacity: 0.7;
}

.hotel-promo__close .hotel-icon {
	width: 0.9rem;
	height: 0.9rem;
}

@media (max-width: 991px) {
	.hotel-promo {
		top: auto;
		right: var(--hotel-space-sm);
		left: var(--hotel-space-sm);
		bottom: calc(var(--hotel-mobilebar-height) + var(--hotel-space-2xs));
		width: auto;
	}

	.hotel-promo[hidden] {
		transform: translateY(0.5rem);
	}
}

/* ========================================================================== */
/* 6  Footer                                                                  */
/* ========================================================================== */

.hotel-footer {
	background: var(--hotel-primary);
	color: var(--hotel-white);
	padding-block: var(--hotel-space-2xl) var(--hotel-space-lg);
	font-size: var(--hotel-text-sm);
}

.hotel-footer a {
	color: inherit;
	text-decoration: none;
}

.hotel-footer a:hover {
	color: var(--hotel-secondary);
	text-decoration: underline;
}

.hotel-footer__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
	gap: var(--hotel-space-xl);
}

.hotel-footer__columns {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
	gap: var(--hotel-space-lg);
}

.hotel-footer__logo {
	display: inline-block;
	margin-bottom: var(--hotel-space-md);
}

.hotel-footer__logo img {
	max-height: 4rem;
	width: auto;
}

.hotel-footer__details p {
	margin-bottom: var(--hotel-space-3xs);
}

.hotel-footer__label {
	font-weight: 600;
}

.hotel-footer__meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--hotel-space-xl);
	margin-top: var(--hotel-space-lg);
	padding-top: var(--hotel-space-md);
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hotel-footer__meta-title {
	margin-bottom: var(--hotel-space-2xs);
	color: var(--hotel-secondary);
	font-family: var(--hotel-font-body);
	font-size: var(--hotel-text-xs);
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.hotel-footer__member img {
	max-height: 2.5rem;
	width: auto;
}

/*
 * Column heading. On desktop it is a plain heading; on mobile the same element
 * becomes the accordion trigger. The <button> is always present in the markup
 * and simply loses its affordance at wide sizes, because moving between a
 * heading and a button at a breakpoint would mean two copies in the DOM.
 */
.hotel-footer__col-title {
	margin: 0 0 var(--hotel-space-sm);
	color: var(--hotel-secondary);
	font-family: var(--hotel-font-body);
	font-size: var(--hotel-text-xs);
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.hotel-footer__col-toggle {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	gap: var(--hotel-space-2xs);
	padding: 0;
	background: none;
	border: 0;
	color: inherit;
	font: inherit;
	letter-spacing: inherit;
	text-align: left;
	text-transform: inherit;
	cursor: default;
}

.hotel-footer__col-toggle .hotel-icon {
	display: none;
	width: 1rem;
	height: 1rem;
	transition: transform var(--hotel-motion-fast) var(--hotel-motion-ease);
}

.hotel-footer .hotel-menu {
	display: block;
}

.hotel-footer .hotel-menu__item {
	display: block;
	border: 0;
}

.hotel-footer .hotel-menu__link {
	display: block;
	padding-block: var(--hotel-space-3xs);
	font-size: var(--hotel-text-sm);
	font-weight: 400;
	letter-spacing: normal;
	text-transform: none;
	white-space: normal;
}

.hotel-footer .hotel-menu__sub {
	position: static;
	display: block;
	min-width: 0;
	margin-bottom: var(--hotel-space-2xs);
	padding: 0 0 0 var(--hotel-space-xs);
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 1;
	transform: none;
	visibility: visible;
}

.hotel-footer .hotel-menu__toggle {
	display: none;
}

.hotel-footer__properties .hotel-footer__city {
	margin: var(--hotel-space-2xs) 0 var(--hotel-space-3xs);
	color: var(--hotel-secondary);
	font-family: var(--hotel-font-body);
	font-size: var(--hotel-text-xs);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hotel-footer__properties ul {
	margin: 0 0 var(--hotel-space-2xs);
	padding: 0;
	list-style: none;
}

.hotel-footer__properties li {
	padding-block: 2px;
}

.hotel-footer__bottom {
	margin-top: var(--hotel-space-xl);
	padding-top: var(--hotel-space-md);
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	text-align: center;
	font-size: var(--hotel-text-xs);
}

.hotel-footer__cards {
	display: flex;
	justify-content: center;
	gap: var(--hotel-space-2xs);
	margin-bottom: var(--hotel-space-sm);
}

.hotel-footer__cards img {
	max-height: 1.75rem;
	width: auto;
}

@media (max-width: 991px) {
	.hotel-footer__grid {
		grid-template-columns: 1fr;
		gap: var(--hotel-space-lg);
	}

	.hotel-footer__columns {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.hotel-footer__col {
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	}

	.hotel-footer__col-title {
		margin: 0;
	}

	.hotel-footer__col-toggle {
		padding-block: var(--hotel-space-sm);
		cursor: pointer;
	}

	.hotel-footer__col-toggle .hotel-icon {
		display: block;
	}

	.hotel-footer__col-toggle[aria-expanded="true"] .hotel-icon {
		transform: rotate(180deg);
	}

	.hotel-footer__panel {
		display: grid;
		grid-template-rows: 0fr;
		transition: grid-template-rows var(--hotel-motion-base) var(--hotel-motion-ease);
	}

	.hotel-footer__panel > * {
		overflow: hidden;
	}

	.hotel-footer__col.is-open .hotel-footer__panel {
		grid-template-rows: 1fr;
	}

	/* Give the opened panel a little breathing room without animating padding. */
	.hotel-footer__col.is-open .hotel-footer__panel > * {
		padding-bottom: var(--hotel-space-sm);
	}
}

/* ========================================================================== */
/* 7  Page chrome: banner, breadcrumb, tabs                                   */
/* ========================================================================== */

.hotel-banner {
	position: relative;
	height: clamp(14rem, 38vw, 26rem);
	background: var(--hotel-paper-deep);
	overflow: hidden;
}

.hotel-banner__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* On a page whose header floats over the hero, the banner must start under the
   fixed header rather than behind it. */
.hotel-header-over-hero .hotel-banner {
	height: clamp(18rem, 52vw, 34rem);
}

.hotel-breadcrumb {
	padding-block: var(--hotel-space-sm);
	border-bottom: 1px solid var(--hotel-line);
	font-size: var(--hotel-text-xs);
}

.hotel-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--hotel-space-2xs);
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--hotel-ink-soft);
}

.hotel-breadcrumb__item + .hotel-breadcrumb__item::before {
	content: "›";
	margin-right: var(--hotel-space-2xs);
	color: var(--hotel-line-strong);
}

.hotel-breadcrumb a {
	text-decoration: none;
}

/* Sibling-page tabs, used by the standard content template. */
.hotel-tabs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--hotel-space-md);
	margin: 0 0 var(--hotel-space-xl);
	padding: 0;
	list-style: none;
}

.hotel-tabs__link {
	display: inline-block;
	padding-bottom: var(--hotel-space-3xs);
	border-bottom: 2px solid transparent;
	font-family: var(--hotel-font-display);
	font-size: var(--hotel-text-md);
	text-decoration: none;
}

.hotel-tabs__link[aria-current="page"] {
	border-bottom-color: var(--hotel-secondary);
	color: var(--hotel-secondary-ink);
}

/* ========================================================================== */
/* 8  Cards                                                                   */
/* ========================================================================== */

/*
 * Room and offer card. The photograph is a slider in its own right — each card
 * carries the full gallery for that room, which is what makes the listing page
 * browsable without opening anything.
 */
.hotel-card {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.hotel-card__media {
	position: relative;
	margin-bottom: var(--hotel-space-sm);
	background: var(--hotel-paper-deep);
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.hotel-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hotel-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	text-align: center;
}

.hotel-card__title {
	margin-bottom: var(--hotel-space-3xs);
	font-family: var(--hotel-font-body);
	font-size: var(--hotel-text-sm);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hotel-card__title a {
	text-decoration: none;
}

.hotel-card__price {
	margin-bottom: var(--hotel-space-2xs);
	font-size: var(--hotel-text-sm);
}

.hotel-card__price strong {
	font-size: var(--hotel-text-md);
	font-weight: 600;
}

.hotel-card__excerpt {
	margin-bottom: var(--hotel-space-sm);
	color: var(--hotel-ink-soft);
	font-size: var(--hotel-text-sm);
}

.hotel-card__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--hotel-space-2xs);
	margin-top: auto;
	padding-top: var(--hotel-space-sm);
}

/* Room specification list. Two columns on the card, one on the detail page's
   narrow info box. */
.hotel-specs {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: var(--hotel-space-2xs) var(--hotel-space-sm);
	margin: 0 0 var(--hotel-space-sm);
	padding: 0;
	list-style: none;
	text-align: left;
	font-size: var(--hotel-text-xs);
	color: var(--hotel-ink-soft);
}

.hotel-specs--stacked {
	grid-template-columns: 1fr;
}

.hotel-specs li {
	display: grid;
	grid-template-columns: 1.1rem 1fr;
	gap: var(--hotel-space-2xs);
	align-items: start;
}

.hotel-specs .hotel-icon {
	width: 1.1rem;
	height: 1.1rem;
	margin-top: 0.15em;
	color: var(--hotel-secondary);
}

/*
 * Photo-over card, used by the properties/services tab grids and the rooms
 * carousel. The overlay is what makes white text legible over an arbitrary
 * photograph — without it this component is a coin toss.
 */
.hotel-tile {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 20rem;
	padding: var(--hotel-space-xl) var(--hotel-space-md);
	color: var(--hotel-white);
	text-align: center;
	overflow: hidden;
	isolation: isolate;
}

.hotel-tile__image {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--hotel-motion-slide) var(--hotel-motion-ease);
}

.hotel-tile::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: var(--hotel-overlay-medium);
	transition: background-color var(--hotel-motion-base) var(--hotel-motion-ease);
}

.hotel-tile:hover .hotel-tile__image,
.hotel-tile:focus-within .hotel-tile__image {
	transform: scale(1.05);
}

.hotel-tile:hover::before,
.hotel-tile:focus-within::before {
	background: var(--hotel-overlay-strong);
}

.hotel-tile__title {
	margin-bottom: var(--hotel-space-2xs);
	color: inherit;
	font-size: var(--hotel-text-lg);
}

.hotel-tile__text {
	max-width: 32ch;
	margin-inline: auto;
	margin-bottom: var(--hotel-space-md);
	font-size: var(--hotel-text-sm);
}

/* Stretches a link over the whole tile without nesting interactive elements. */
.hotel-tile__link::after {
	content: "";
	position: absolute;
	inset: 0;
}

/* ========================================================================== */
/* 9  Sliders, gallery, lightbox, modal                                       */
/* ========================================================================== */

/*
 * One slider implementation for the whole site: a scroll-snap track. It is
 * a real scroll container, so it works before JavaScript loads, it is
 * keyboard-scrollable by default, and a touch drag is the browser's own
 * momentum rather than a library re-implementing it.
 *
 * JavaScript only adds the arrows, the dots and the announcements.
 */
.hotel-slider {
	position: relative;
}

/*
 * Flex, not grid.
 *
 * `grid-auto-columns: minmax(0, 31%)` looks like it should give three-up with a
 * peek, and it does not: when the tracks total more than 100% the grid shrinks
 * them back to fit instead of overflowing, so five slides came out at 211px
 * each rather than 357px. `flex: 0 0 31%` cannot be shrunk, which is exactly
 * the behaviour a horizontal carousel needs.
 */
.hotel-slider__track {
	display: flex;
	gap: var(--hotel-space-md);
	margin: 0;
	padding: 0;
	list-style: none;
	overflow-x: auto;
	overscroll-behavior-x: contain;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.hotel-slider__track::-webkit-scrollbar {
	display: none;
}

.hotel-slider__slide {
	flex: 0 0 100%;
	min-width: 0;
	scroll-snap-align: start;
}

.hotel-slider--peek .hotel-slider__slide {
	flex-basis: 86%;
}

@media (min-width: 768px) {
	.hotel-slider--peek .hotel-slider__slide {
		flex-basis: calc((100% - var(--hotel-space-md)) / 2);
	}
}

@media (min-width: 992px) {
	.hotel-slider--peek .hotel-slider__slide {
		flex-basis: calc((100% - var(--hotel-space-md) * 2) / 3);
	}
}

.hotel-slider__arrow {
	position: absolute;
	top: 50%;
	z-index: 3;
	display: grid;
	place-items: center;
	width: 2.75rem;
	height: 2.75rem;
	background: rgba(255, 255, 255, 0.9);
	border: 0;
	border-radius: var(--hotel-radius-pill);
	color: var(--hotel-primary);
	transform: translateY(-50%);
	transition: opacity var(--hotel-motion-fast) var(--hotel-motion-ease);
}

.hotel-slider__arrow--prev {
	left: var(--hotel-space-2xs);
}

.hotel-slider__arrow--next {
	right: var(--hotel-space-2xs);
}

.hotel-slider__arrow[disabled] {
	opacity: 0;
	pointer-events: none;
}

.hotel-slider__arrow .hotel-icon {
	width: 1.1rem;
	height: 1.1rem;
}

.hotel-slider__dots {
	display: flex;
	justify-content: center;
	gap: var(--hotel-space-3xs);
	margin: var(--hotel-space-sm) 0 0;
	padding: 0;
	list-style: none;
}

.hotel-slider__dot {
	width: 0.5rem;
	height: 0.5rem;
	padding: 0;
	background: var(--hotel-line-strong);
	border: 0;
	border-radius: var(--hotel-radius-pill);
	transition: background-color var(--hotel-motion-fast) var(--hotel-motion-ease);
}

.hotel-slider__dot[aria-current="true"] {
	background: var(--hotel-secondary);
}

/* Dots that sit on top of a photograph need their own ground. */
.hotel-slider--overlay .hotel-slider__dots {
	position: absolute;
	inset-inline: 0;
	bottom: var(--hotel-space-sm);
	margin: 0;
}

.hotel-slider--overlay .hotel-slider__dot {
	background: rgba(255, 255, 255, 0.55);
}

.hotel-slider--overlay .hotel-slider__dot[aria-current="true"] {
	background: var(--hotel-secondary);
}

/* -- Hero ------------------------------------------------------------------ */

.hotel-hero {
	position: relative;
	color: var(--hotel-white);
}

.hotel-hero__slide {
	position: relative;
	display: grid;
	place-items: center;
	min-height: min(88vh, 46rem);
	padding: var(--hotel-header-height) var(--hotel-space-md) var(--hotel-space-2xl);
	text-align: center;
	overflow: hidden;
	isolation: isolate;
}

.hotel-hero__media {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hotel-hero__slide::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: var(--hotel-overlay-medium);
}

.hotel-hero__inner {
	max-width: 46rem;
}

.hotel-hero__title {
	color: inherit;
	font-size: var(--hotel-text-2xl);
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hotel-hero__text {
	margin-bottom: var(--hotel-space-lg);
	font-size: var(--hotel-text-md);
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

/* Optional award badge, one per slide. */
.hotel-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: var(--hotel-space-2xs);
	margin-bottom: var(--hotel-space-md);
	padding: var(--hotel-space-3xs) var(--hotel-space-sm);
	background: rgba(255, 255, 255, 0.12);
	border: 1px solid rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(4px);
	font-size: var(--hotel-text-xs);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.hotel-hero__badge img {
	max-height: 2rem;
	width: auto;
}

.hotel-hero__gallery-link {
	position: absolute;
	right: var(--hotel-space-md);
	/*
	 * Clears the booking bar, which is pulled up over the bottom of the hero by
	 * one --hotel-space-2xl. At the plain `md` offset this link landed inside
	 * the navy bar and read as part of it.
	 */
	bottom: calc(var(--hotel-space-2xl) + var(--hotel-space-md));
	z-index: 3;
	display: inline-flex;
	align-items: center;
	gap: var(--hotel-space-3xs);
	color: var(--hotel-white);
	font-size: var(--hotel-text-xs);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

/* -- Booking bar ----------------------------------------------------------- */

/*
 * Overlaps the bottom of the hero on desktop. On mobile it is not shown at all:
 * three date-and-select controls in a 390px column is a worse experience than
 * the single "Request booking" button in the bottom bar, which opens the same
 * form in a full-height modal.
 */
.hotel-bookingbar {
	position: relative;
	z-index: 5;
	margin-top: calc(var(--hotel-space-2xl) * -1);
}

.hotel-bookingbar__inner {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
	gap: var(--hotel-space-sm);
	align-items: end;
	padding: var(--hotel-space-md);
	background: var(--hotel-primary);
	box-shadow: var(--hotel-shadow-lg);
}

.hotel-bookingbar .hotel-field__label {
	color: rgba(255, 255, 255, 0.8);
}

.hotel-bookingbar .hotel-btn {
	min-height: var(--hotel-control-height);
}

@media (max-width: 991px) {
	.hotel-bookingbar {
		display: none;
	}
}

/* -- Gallery --------------------------------------------------------------- */

.hotel-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 16rem), 1fr));
	gap: var(--hotel-space-2xs);
	margin: 0;
	padding: 0;
	list-style: none;
}

.hotel-gallery__item {
	position: relative;
	margin: 0;
	background: var(--hotel-paper-deep);
	aspect-ratio: 1;
	overflow: hidden;
}

.hotel-gallery__button {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0;
	background: none;
	border: 0;
}

.hotel-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--hotel-motion-slide) var(--hotel-motion-ease);
}

.hotel-gallery__button:hover img,
.hotel-gallery__button:focus-visible img {
	transform: scale(1.06);
}

.hotel-gallery-filter {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--hotel-space-sm);
	margin-bottom: var(--hotel-space-lg);
	padding: 0;
	list-style: none;
}

.hotel-gallery-filter a {
	display: inline-block;
	padding-bottom: 2px;
	border-bottom: 2px solid transparent;
	font-size: var(--hotel-text-xs);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
}

.hotel-gallery-filter a[aria-current="page"] {
	border-bottom-color: var(--hotel-secondary);
	color: var(--hotel-secondary-ink);
}

/* Pagination. Real links to /page/2/, not a Load More button: the client asked
   for pagination, and a paginated URL is the one a search engine can index. */
.hotel-pagination {
	display: flex;
	justify-content: center;
	margin-top: var(--hotel-space-xl);
}

/*
 * paginate_links( 'type' => 'list' ) puts class="page-numbers" on the <ul>
 * AS WELL AS on every link inside it. Styling `.page-numbers` alone therefore
 * draws a bordered 40px box around the whole list with the numbers spilling
 * out of it — which is what this looked like until the wrapper got its own
 * reset. Item styling below is scoped to direct children of an <li>.
 */
.hotel-pagination ul.page-numbers {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--hotel-space-3xs);
	margin: 0;
	padding: 0;
	border: 0;
	list-style: none;
}

.hotel-pagination li {
	margin: 0;
}

.hotel-pagination li > .page-numbers {
	display: inline-grid;
	place-items: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding-inline: var(--hotel-space-2xs);
	border: 1px solid var(--hotel-line);
	font-size: var(--hotel-text-sm);
	text-decoration: none;
}

.hotel-pagination li > .page-numbers.current {
	background: var(--hotel-primary);
	border-color: var(--hotel-primary);
	color: var(--hotel-white);
}

.hotel-pagination li > .page-numbers.dots {
	border-color: transparent;
}

/* -- Lightbox and modal ---------------------------------------------------- */

/*
 * Both are <dialog>. That gets the top layer, the backdrop, Escape-to-close,
 * inert-behind and initial focus from the platform — all the parts a hand-rolled
 * modal gets wrong.
 */
.hotel-dialog {
	width: min(100%, 46rem);
	max-width: none;
	max-height: 100dvh;
	padding: 0;
	border: 0;
	background: var(--hotel-white);
	color: var(--hotel-ink);
}

.hotel-dialog::backdrop {
	background: var(--hotel-overlay-strong);
}

.hotel-dialog__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: var(--hotel-space-sm);
	padding: var(--hotel-space-md) var(--hotel-space-md) 0;
}

.hotel-dialog__title {
	margin: 0;
	font-size: var(--hotel-text-lg);
}

.hotel-dialog__close {
	display: grid;
	place-items: center;
	width: 2.5rem;
	height: 2.5rem;
	flex: none;
	background: none;
	border: 0;
	color: var(--hotel-ink-soft);
}

.hotel-dialog__body {
	padding: var(--hotel-space-md);
}

.hotel-lightbox {
	width: 100vw;
	max-width: 100vw;
	height: 100dvh;
	max-height: 100dvh;
	background: transparent;
}

.hotel-lightbox__figure {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: var(--hotel-space-xl) var(--hotel-space-md);
}

.hotel-lightbox__figure img {
	max-width: 100%;
	max-height: 80dvh;
	width: auto;
	object-fit: contain;
}

.hotel-lightbox__caption {
	margin-top: var(--hotel-space-sm);
	color: var(--hotel-white);
	font-size: var(--hotel-text-sm);
	text-align: center;
}

.hotel-lightbox__close,
.hotel-lightbox__nav {
	position: absolute;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 3rem;
	height: 3rem;
	background: rgba(255, 255, 255, 0.15);
	border: 0;
	border-radius: var(--hotel-radius-pill);
	color: var(--hotel-white);
}

.hotel-lightbox__close {
	top: var(--hotel-space-sm);
	right: var(--hotel-space-sm);
}

.hotel-lightbox__nav--prev {
	top: 50%;
	left: var(--hotel-space-sm);
	transform: translateY(-50%);
}

.hotel-lightbox__nav--next {
	top: 50%;
	right: var(--hotel-space-sm);
	transform: translateY(-50%);
}

/* ========================================================================== */
/* 10  Sections                                                               */
/* ========================================================================== */

/* USP strip: three icon-and-label pairs on a hairline band. */
.hotel-usp {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
	gap: var(--hotel-space-md);
	margin: 0;
	padding: var(--hotel-space-md) 0;
	border-block: 1px solid var(--hotel-line);
	list-style: none;
}

.hotel-usp li {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--hotel-space-2xs);
	font-size: var(--hotel-text-sm);
	text-align: center;
}

.hotel-usp .hotel-icon,
.hotel-usp img {
	width: 2rem;
	height: 2rem;
	flex: none;
	color: var(--hotel-secondary);
	object-fit: contain;
}

.hotel-usp a {
	text-decoration: none;
}

/* Review score block. */
.hotel-rating {
	text-align: center;
}

.hotel-rating__stars {
	display: inline-flex;
	gap: 2px;
	color: var(--hotel-secondary);
}

.hotel-rating__stars .hotel-icon {
	width: 1rem;
	height: 1rem;
}

.hotel-rating__stars .hotel-icon[data-empty] {
	color: var(--hotel-line);
}

.hotel-rating__count {
	color: var(--hotel-ink-soft);
	font-size: var(--hotel-text-xs);
}

.hotel-rating__logo img {
	max-height: 1.75rem;
	width: auto;
	margin-inline: auto;
}

/*
 * Discover mosaic. Tiles are half-and-half image/text on wide screens and
 * stacked on narrow ones. A tile may span two columns, which is the "feature"
 * variant.
 */
.hotel-mosaic {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
	gap: var(--hotel-space-2xs);
}

.hotel-mosaic__item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	min-height: 13rem;
	background: var(--hotel-paper-raised);
	overflow: hidden;
}

.hotel-mosaic__item--feature {
	grid-column: span 2;
}

.hotel-mosaic__media {
	position: relative;
	overflow: hidden;
}

.hotel-mosaic__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--hotel-motion-slide) var(--hotel-motion-ease);
}

.hotel-mosaic__item:hover .hotel-mosaic__media img {
	transform: scale(1.05);
}

.hotel-mosaic__body {
	display: grid;
	align-content: center;
	gap: var(--hotel-space-2xs);
	padding: var(--hotel-space-md);
	text-align: center;
}

.hotel-mosaic__title {
	margin: 0;
	font-family: var(--hotel-font-body);
	font-size: var(--hotel-text-sm);
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.hotel-mosaic__text {
	color: var(--hotel-ink-soft);
	font-size: var(--hotel-text-sm);
}

@media (max-width: 767px) {
	.hotel-mosaic__item,
	.hotel-mosaic__item--feature {
		grid-column: span 1;
		grid-template-columns: 1fr;
	}

	.hotel-mosaic__media {
		aspect-ratio: 16 / 9;
	}
}

/* Brands: a logo rail that controls a panel below it. */
.hotel-brands__rail {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--hotel-space-md);
	margin-bottom: var(--hotel-space-lg);
	padding: 0;
	list-style: none;
}

.hotel-brands__tab {
	padding: var(--hotel-space-2xs);
	background: none;
	border: 0;
	filter: grayscale(1);
	opacity: 0.55;
	transition: opacity var(--hotel-motion-base), filter var(--hotel-motion-base);
}

.hotel-brands__tab img {
	max-height: 2.75rem;
	width: auto;
}

.hotel-brands__tab:hover,
.hotel-brands__tab[aria-selected="true"] {
	filter: grayscale(0);
	opacity: 1;
}

.hotel-brands__panel[hidden] {
	display: none;
}

.hotel-brands__figure {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 24rem;
	padding: var(--hotel-space-xl) var(--hotel-space-md);
	color: var(--hotel-white);
	text-align: center;
	overflow: hidden;
	isolation: isolate;
}

.hotel-brands__figure img.hotel-brands__bg {
	position: absolute;
	inset: 0;
	z-index: -2;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hotel-brands__figure::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: var(--hotel-overlay-strong);
}

.hotel-brands__body {
	max-width: 42rem;
}

.hotel-brands__title {
	color: inherit;
	font-size: var(--hotel-text-xl);
}

/* Instagram grid — images entered by hand, not pulled from an API. */
.hotel-instagram {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(50%, 10rem), 1fr));
	gap: var(--hotel-space-3xs);
	margin: 0;
	padding: 0;
	list-style: none;
}

.hotel-instagram li {
	aspect-ratio: 1;
	overflow: hidden;
}

.hotel-instagram img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--hotel-motion-slide) var(--hotel-motion-ease);
}

.hotel-instagram a:hover img {
	transform: scale(1.06);
}

/* Notice / alert block. */
.hotel-notice {
	padding: var(--hotel-space-md);
	border: 1px solid var(--hotel-secondary);
	background: var(--hotel-paper-raised);
}

.hotel-notice__title {
	margin-bottom: var(--hotel-space-2xs);
	font-size: var(--hotel-text-md);
}

/* Detail-page info box: the floating panel beside a room or offer gallery. */
.hotel-infobox {
	padding: var(--hotel-space-md);
	background: var(--hotel-paper-raised);
	font-size: var(--hotel-text-sm);
}

.hotel-infobox__price {
	margin-bottom: var(--hotel-space-2xs);
	padding-bottom: var(--hotel-space-2xs);
	border-bottom: 1px solid var(--hotel-line);
	text-align: center;
}

.hotel-infobox__price strong {
	display: block;
	font-size: var(--hotel-text-md);
	font-weight: 600;
}

.hotel-infobox__actions {
	display: grid;
	gap: var(--hotel-space-2xs);
	margin-top: var(--hotel-space-sm);
}

.hotel-detail {
	display: grid;
	grid-template-columns: minmax(0, 18rem) minmax(0, 1fr);
	gap: var(--hotel-space-lg);
	align-items: start;
}

/* One column, centred, when the second column would be empty. */
.hotel-detail--single {
	grid-template-columns: minmax(0, 26rem);
	justify-content: center;
}

@media (max-width: 991px) {
	.hotel-detail {
		grid-template-columns: 1fr;
	}
}

/* ========================================================================== */
/* 11  Blog, comments, utilities                                              */
/* ========================================================================== */

.hotel-postlist {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 18rem), 1fr));
	gap: var(--hotel-space-lg);
}

.hotel-post-card__media {
	margin-bottom: var(--hotel-space-sm);
	aspect-ratio: 3 / 2;
	background: var(--hotel-paper-deep);
	overflow: hidden;
}

.hotel-post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hotel-post-card__title {
	font-size: var(--hotel-text-md);
}

.hotel-post-card__title a {
	text-decoration: none;
}

.hotel-post-card__meta {
	color: var(--hotel-ink-soft);
	font-size: var(--hotel-text-xs);
}

.hotel-comments {
	margin-top: var(--hotel-space-2xl);
}

.hotel-comments ol {
	padding: 0;
	list-style: none;
}

.hotel-comments .children {
	padding-left: var(--hotel-space-md);
}

.hotel-comment {
	padding-block: var(--hotel-space-sm);
	border-top: 1px solid var(--hotel-line);
}

/* Utilities. Deliberately few: a utility class per token would recreate a CSS
   framework, which is exactly what this theme replaced. */
.hotel-text-center { text-align: center; }
.hotel-mt-lg { margin-top: var(--hotel-space-lg); }
.hotel-mb-lg { margin-bottom: var(--hotel-space-lg); }
.hotel-is-hidden { display: none !important; }

/* Applied by JavaScript once it has taken over a progressive-enhancement
   component, so the no-JS fallback can be hidden without a flash. */
.hotel-js-only { display: none; }
.hotel-has-js .hotel-js-only { display: revert; }
.hotel-has-js .hotel-no-js-only { display: none; }
