/**
 * Roova theme styles.
 *
 * Brand colours arrive as CSS custom properties from the Customizer
 * (see roova_inline_brand_css()); the fallbacks below match the defaults.
 */

:root {
	--roova-deep: #0d3a52;
	--roova-ocean: #1d6f96;
	--roova-gold: #b4823c;
	--roova-gold-light: #d9a75a;
	--roova-sand: #f6f1e8;
	--roova-ink: #16302f;
	--roova-paper: #ffffff;
	--roova-line: #e6e2d6;
	--roova-muted: #6d838c;
	--roova-radius: 16px;
	--roova-shadow: 0 26px 60px -28px rgba(8, 38, 53, .42), 0 2px 6px rgba(8, 38, 53, .06);

	/* Page cream and the deepest navy the scrims are mixed from. */
	--roova-cream: #fbf8f3;
	--roova-abyss: #061e2a;

	/*
	 * What the page itself is painted with. Cream by default; the homepage and
	 * hotel pages override it to white on <body>. Kept separate from
	 * --roova-cream, which stays warm because it is also the text colour on
	 * every dark panel.
	 */
	--roova-page: var(--roova-cream);

	/* Secondary UI text, then the faint labels above form fields. */
	--roova-soft: #3d5a63;
	--roova-faint: #8b9aa1;

	--roova-hairline: rgba(13, 58, 82, .08);
	--roova-hairline-strong: rgba(13, 58, 82, .16);

	--roova-shadow-card: 0 1px 2px rgba(8, 38, 53, .04);
	--roova-shadow-lift: 0 22px 44px -22px rgba(8, 38, 53, .32);

	--roova-ease: cubic-bezier(.22, .8, .28, 1);
	--roova-pop: cubic-bezier(.34, 1.56, .5, 1);

	--roova-font-display: 'Newsreader', Georgia, serif;
	--roova-font-body: 'DM Sans', Helvetica, Arial, sans-serif;
	--roova-font-mono: ui-monospace, 'SF Mono', Menlo, monospace;
}

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

body {
	margin: 0;
	font-family: var(--roova-font-body);
	color: var(--roova-ink);
	background: var(--roova-page);
	-webkit-font-smoothing: antialiased;
	line-height: 1.6;
	overflow-x: hidden;
}

/* The homepage and the hotel pages sit on plain white. */
body.roova-page-white {
	--roova-page: #ffffff;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--roova-deep);
	text-decoration: none;
	transition: color .3s var(--roova-ease);
}

a:hover {
	color: var(--roova-gold);
	text-decoration: none;
}

::selection {
	background: var(--roova-deep);
	color: var(--roova-cream);
}

h1, h2, h3, h4 {
	font-family: var(--roova-font-display);
	font-weight: 400;
	margin: 0 0 .4em;
	letter-spacing: -.02em;
	line-height: 1.1;
}

p {
	margin: 0 0 1em;
}

.wrap {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px;
}

/* The hotel page runs wider so the room rows have room to breathe. */
.wrap--wide {
	max-width: 1400px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.skip-link:focus {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 999;
	width: auto;
	height: auto;
	clip: auto;
	background: #fff;
	padding: 10px 16px;
	border-radius: 8px;
}

.roova-eyebrow {
	display: block;
	font-size: 11.5px;
	font-weight: 400;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--roova-gold);
	margin-bottom: 12px;
}

/* The eyebrow with the 34px gold rule in front of it, used on dark bands. */
.roova-eyebrow--ruled {
	display: flex;
	align-items: center;
	gap: 12px;
	color: rgba(251, 248, 243, .72);
}

.roova-eyebrow--ruled::before {
	content: "";
	width: 34px;
	height: 1px;
	background: var(--roova-gold);
	flex: none;
}

.roova-unavailable {
	color: #b3261e;
	font-weight: 600;
	font-size: .86rem;
}

.roova-empty {
	padding: 40px 0;
	color: var(--roova-muted);
}

/* ---------------------------------------------------------------- Buttons */

.roova-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: var(--roova-deep);
	color: var(--roova-cream);
	border: 1px solid var(--roova-deep);
	padding: 12px 24px;
	border-radius: 12px;
	font: inherit;
	font-size: .94rem;
	font-weight: 500;
	letter-spacing: .01em;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
	transition: background .35s ease, border-color .35s ease, color .35s ease, letter-spacing .35s ease;
}

.roova-btn:hover {
	background: var(--roova-gold);
	border-color: var(--roova-gold);
	color: var(--roova-cream);
	letter-spacing: .06em;
}

.roova-btn--outline {
	background: #fff;
	color: var(--roova-deep);
	border-color: var(--roova-hairline-strong);
	width: 100%;
}

.roova-btn--outline:hover {
	background: var(--roova-deep);
	border-color: var(--roova-deep);
	color: var(--roova-cream);
}

.roova-btn--ghost {
	background: transparent;
	color: var(--roova-deep);
	border-color: var(--roova-hairline-strong);
}

/* The pill in the header: navy on cream, lifting on hover. */
.roova-btn--nav {
	padding: 11px 20px;
	border-radius: 999px;
	font-size: 13.5px;
	transition: background .3s ease, transform .3s var(--roova-ease), box-shadow .3s ease;
}

.roova-btn--nav:hover {
	background: var(--roova-ink);
	border-color: var(--roova-ink);
	letter-spacing: .01em;
	transform: translateY(-2px);
	box-shadow: 0 12px 24px -12px rgba(8, 38, 53, .6);
}

.roova-link-btn {
	background: none;
	border: 0;
	padding: 0;
	font: inherit;
	font-size: .86rem;
	font-weight: 500;
	color: var(--roova-soft);
	text-decoration: underline;
	text-underline-offset: 3px;
	cursor: pointer;
}

.roova-link-btn:hover {
	color: var(--roova-gold);
}

/* A quiet outlined pill: popular searches, map view switches. */
.roova-pill {
	display: inline-flex;
	align-items: center;
	font: inherit;
	font-size: 12.5px;
	padding: 7px 14px;
	border-radius: 999px;
	border: 1px solid rgba(13, 58, 82, .14);
	background: rgba(255, 255, 255, .7);
	color: var(--roova-soft);
	cursor: pointer;
	transition: border-color .3s ease, color .3s ease, background .3s ease, transform .3s var(--roova-ease);
}

.roova-pill:hover {
	border-color: var(--roova-gold);
	color: var(--roova-gold);
	transform: translateY(-2px);
}

.roova-pill.is-active {
	background: var(--roova-deep);
	border-color: var(--roova-deep);
	color: var(--roova-cream);
	transform: none;
}

/* -------------------------------------------------------------------- Nav */

.roova-nav {
	position: relative;
	z-index: 50;
	background: transparent;
	border-bottom: 1px solid var(--roova-hairline);
}

/*
 * On a page that opens with the hero the header is lifted out of the flow and
 * laid over the photograph, so the image runs to the very top of the window.
 * Everything in it turns cream to stay readable on the scrim.
 */
.roova-nav--over {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	border-bottom: 0;
}

.roova-nav--over .roova-nav__logo,
.roova-nav--over .roova-nav__logo:hover,
.roova-nav--over .custom-logo-link {
	color: var(--roova-cream);
}

.roova-nav--over .roova-menu a,
.roova-nav--over .roova-nav__support {
	color: rgba(251, 248, 243, .8);
}

.roova-nav--over .roova-menu a:hover,
.roova-nav--over .roova-nav__support:hover {
	color: var(--roova-cream);
}

.roova-nav--over .roova-btn--nav {
	background: rgba(251, 248, 243, .14);
	border-color: rgba(251, 248, 243, .4);
	color: var(--roova-cream);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.roova-nav--over .roova-btn--nav:hover {
	background: var(--roova-cream);
	border-color: var(--roova-cream);
	color: var(--roova-deep);
}

.roova-nav--over .roova-nav__toggle {
	border-color: rgba(251, 248, 243, .4);
}

.roova-nav--over .roova-nav__toggle span[aria-hidden] {
	background: var(--roova-cream);
	box-shadow: 0 -6px 0 var(--roova-cream), 0 6px 0 var(--roova-cream);
}

.roova-nav__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	max-width: none;
	padding: 18px 48px;
	position: relative;
}

.roova-nav__logo,
.roova-nav .custom-logo-link {
	font-family: var(--roova-font-display);
	font-weight: 500;
	font-size: 25px;
	line-height: 1.2;
	color: var(--roova-deep);
	letter-spacing: -.02em;
}

.roova-nav__logo:hover {
	color: var(--roova-deep);
}

/* The ".my" half of the wordmark. */
.roova-nav__logo em {
	font-style: normal;
	color: var(--roova-gold);
}

.roova-nav .roova-menu {
	display: flex;
	align-items: center;
	gap: 34px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 14px;
	letter-spacing: .01em;
}

.roova-nav .roova-menu a {
	display: inline-block;
	color: var(--roova-soft);
	padding-bottom: 3px;
	border-bottom: 1px solid transparent;
	transition: color .3s ease, border-color .3s ease;
}

.roova-nav .roova-menu a:hover {
	color: var(--roova-deep);
	border-color: var(--roova-gold);
}

.roova-nav__actions {
	display: flex;
	align-items: center;
	gap: 14px;
}

.roova-nav__support {
	color: var(--roova-soft);
	font-size: 14px;
}

.roova-nav__support:hover {
	color: var(--roova-gold);
}

/*
 * The account control is .roova-btn--nav in both states — "Sign in" for a
 * visitor, "Manage account" for a member — so the top right of the header keeps
 * its shape when someone signs in. It needs no rules of its own.
 */

.roova-nav__toggle {
	display: none;
	width: 38px;
	height: 38px;
	border-radius: 10px;
	border: 1px solid var(--roova-hairline-strong);
	background: transparent;
	cursor: pointer;
	position: relative;
}

.roova-nav__toggle span[aria-hidden] {
	position: absolute;
	inset: 50% 10px auto 10px;
	height: 1.5px;
	background: var(--roova-deep);
	box-shadow: 0 -6px 0 var(--roova-deep), 0 6px 0 var(--roova-deep);
}

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

.roova-hero {
	position: relative;
}

/*
 * Full bleed, square-cornered and tall enough to carry the overlaid header:
 * the panel starts at the top of the window rather than below a header bar.
 */
.roova-hero__panel {
	position: relative;
	overflow: hidden;
	background: linear-gradient(120deg, var(--roova-deep), var(--roova-ocean));
	min-height: 700px;
	display: flex;
	align-items: flex-end;
}

/*
 * The photo lives on its own layer so the slow drift never moves the copy,
 * and so the scrim above it stays perfectly still.
 */
.roova-hero__media,
.roova-band__media {
	position: absolute;
	inset: 0;
	animation: roova-drift 30s ease-in-out infinite alternate;
}

.roova-hero__media img,
.roova-band__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.roova-hero__scrim {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background:
		linear-gradient(to top, rgba(6, 30, 42, .88) 0%, rgba(6, 30, 42, .55) 45%, rgba(6, 30, 42, .34) 100%),
		radial-gradient(120% 90% at 78% 6%, rgba(29, 111, 150, .42) 0%, rgba(8, 38, 53, .55) 60%, rgba(6, 26, 36, .7) 100%);
}

/* A slow diagonal highlight travelling across the panel. */
.roova-hero__sheen {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
}

.roova-hero__sheen::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	width: 22%;
	background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .06), transparent);
	animation: roova-sheen 11s ease-in-out infinite;
}

.roova-hero__content {
	position: relative;
	width: 100%;
	padding: 96px clamp(24px, 4.4vw, 64px) 56px;
	pointer-events: none;
	text-shadow: 0 1px 24px rgba(4, 20, 28, .35);
}

.roova-hero__eyebrow {
	font-size: 11.5px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: rgba(251, 248, 243, .72);
	margin-bottom: 26px;
	animation: roova-rise .8s var(--roova-ease) both;
}

.roova-hero h1 {
	margin: 0;
	max-width: 15ch;
	font-size: clamp(2.6rem, 6vw, 76px);
	line-height: 1.02;
	letter-spacing: -.025em;
	color: var(--roova-cream);
	text-wrap: balance;
	animation: roova-rise .9s var(--roova-ease) .1s both;
}

.roova-hero__content p {
	margin: 26px 0 0;
	max-width: 46ch;
	font-size: 17px;
	line-height: 1.65;
	color: rgba(251, 248, 243, .76);
	animation: roova-rise .9s var(--roova-ease) .22s both;
}

/* The search card straddles the bottom edge of the hero panel. */
.roova-hero__search {
	position: relative;
	z-index: 10;
	max-width: 1180px;
	margin: -46px auto 0;
	padding: 0 24px;
	animation: roova-rise 1s var(--roova-ease) .34s both;
}

.roova-popular {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin: 18px 2px 0;
}

.roova-popular__label {
	font-size: 12.5px;
	color: var(--roova-faint);
	padding: 7px 0;
}

@keyframes roova-rise {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: none; }
}

@keyframes roova-drift {
	0% { transform: scale(1.04) translate3d(0, 0, 0); }
	100% { transform: scale(1.12) translate3d(-1.5%, -1.5%, 0); }
}

@keyframes roova-sheen {
	0% { transform: translateX(-120%); }
	100% { transform: translateX(320%); }
}

/* ----------------------------------------------------------- Search card */

.roova-search {
	position: relative;
	z-index: 6;
	background: #fff;
	border-radius: 18px;
	box-shadow: var(--roova-shadow);
	display: grid;
	grid-template-columns: 1.35fr 1px 1.35fr 1px 1fr auto;
	align-items: stretch;
	gap: 0;
	margin: 0;
	max-width: none;
}

.roova-search__field {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 7px;
	padding: 20px 24px;
	cursor: pointer;
	transition: background .3s ease;
}

.roova-search__field:first-child {
	border-radius: 18px 0 0 18px;
}

.roova-search__field:hover {
	background: rgba(246, 241, 232, .5);
}

.roova-search__label {
	display: block;
	font-size: 10.5px;
	font-weight: 400;
	color: var(--roova-faint);
	text-transform: uppercase;
	letter-spacing: .16em;
	margin: 0;
}

.roova-search__value {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 16px;
	font-weight: 500;
	color: var(--roova-ink);
}

.roova-search__value .roova-icon {
	flex-shrink: 0;
	color: var(--roova-gold);
}

.roova-search__value input {
	border: 0;
	outline: none;
	font: inherit;
	font-weight: 500;
	color: var(--roova-ink);
	width: 100%;
	background: transparent;
	cursor: pointer;
}

.roova-search__value input::placeholder {
	color: var(--roova-faint);
	font-weight: 400;
}

/* Fields are separated by hairlines rather than gaps. */
.roova-search__divider {
	width: 1px;
	background: rgba(13, 58, 82, .09);
}

.roova-search__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin: 10px;
	min-width: 148px;
	background: var(--roova-deep);
	color: var(--roova-cream);
	border: 0;
	border-radius: 12px;
	font: inherit;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: .01em;
	cursor: pointer;
	white-space: nowrap;
	transition: background .35s ease, letter-spacing .35s ease;
}

.roova-search__submit:hover {
	background: var(--roova-gold);
	letter-spacing: .06em;
}

/* Compact variant used in the hotel sidebar. */
.roova-search--compact {
	display: flex;
	flex-direction: column;
	box-shadow: none;
	border-radius: 0;
	padding: 0;
	margin: 0;
	gap: 0;
	max-width: none;
}

.roova-search--compact .roova-search__field {
	padding: 12px 0;
	border-bottom: 1px solid var(--roova-hairline);
	border-radius: 0;
	width: 100%;
}

.roova-search--compact .roova-search__field:hover {
	background: transparent;
}

.roova-search--compact .roova-search__divider {
	display: none;
}

.roova-search--compact .roova-search__submit {
	width: 100%;
	justify-content: center;
	padding: 13px;
	margin: 14px 0 0;
}

/* ---------------------------------------------------------------- Panels */

.roova-panel {
	position: absolute;
	top: calc(100% + 10px);
	left: 0;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 18px 40px rgba(12, 59, 87, .18);
	border: 1px solid var(--roova-line);
	padding: 16px;
	z-index: 30;
	cursor: default;
}

.roova-panel[hidden] {
	display: none;
}

.roova-panel--destination {
	width: 300px;
}

.roova-panel__search {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--roova-line);
	border-radius: 8px;
	font: inherit;
	font-size: .9rem;
	margin-bottom: 10px;
	outline: none;
}

.roova-panel__search:focus {
	border-color: var(--roova-ocean);
}

.roova-panel__list {
	max-height: 280px;
	overflow-y: auto;
}

.roova-suggestion {
	display: flex;
	flex-direction: column;
	gap: 2px;
	width: 100%;
	text-align: left;
	padding: 10px 8px;
	font: inherit;
	font-size: .9rem;
	font-weight: 600;
	background: none;
	border: 0;
	border-radius: 6px;
	cursor: pointer;
	color: var(--roova-ink);
}

.roova-suggestion:hover,
.roova-suggestion:focus {
	background: var(--roova-sand);
}

.roova-suggestion small {
	font-weight: 500;
	color: var(--roova-muted);
	font-size: .76rem;
}

/* -------------------------------------------------------------- Calendar */

.roova-panel--calendar {
	width: 310px;
	padding: 0;
	overflow: hidden;
}

.roova-cal__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--roova-ocean);
	color: #fff;
	padding: 14px 16px;
}

.roova-cal__head button {
	background: none;
	border: 0;
	color: #fff;
	cursor: pointer;
	padding: 4px;
	display: flex;
}

.roova-cal__title {
	font-family: var(--roova-font-display);
	font-weight: 600;
	font-size: 1.02rem;
}

.roova-cal__grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 2px;
	text-align: center;
	padding: 12px 16px 16px;
}

.roova-cal__dow {
	font-size: .68rem;
	font-weight: 700;
	color: var(--roova-muted);
	padding: 4px 0;
	text-transform: uppercase;
}

.roova-cal__day {
	font-size: .84rem;
	padding: 8px 0;
	border: 0;
	background: none;
	font-family: inherit;
	border-radius: 6px;
	cursor: pointer;
	color: var(--roova-ink);
	font-weight: 500;
}

.roova-cal__day:hover {
	background: var(--roova-sand);
}

.roova-cal__day[disabled] {
	color: #cfd3d6;
	cursor: default;
	text-decoration: line-through;
}

.roova-cal__day.is-in-range {
	background: var(--roova-sand);
	border-radius: 0;
}

.roova-cal__day.is-start {
	background: var(--roova-ocean);
	color: #fff;
	border-radius: 6px 0 0 6px;
}

.roova-cal__day.is-end {
	background: var(--roova-ocean);
	color: #fff;
	border-radius: 0 6px 6px 0;
}

.roova-cal__day.is-start.is-end {
	border-radius: 6px;
}

.roova-cal__footer {
	padding: 0 16px 14px;
	font-size: .78rem;
	color: var(--roova-muted);
}

/* -------------------------------------------------------------- Steppers */

.roova-panel--guests {
	width: 260px;
}

.roova-stepper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0;
}

.roova-stepper + .roova-stepper {
	border-top: 1px solid var(--roova-line);
}

.roova-stepper__label {
	font-size: .9rem;
	font-weight: 600;
}

.roova-stepper__controls {
	display: flex;
	align-items: center;
	gap: 12px;
}

.roova-stepper__btn {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1px solid var(--roova-line);
	background: #fff;
	color: var(--roova-deep);
	font-size: 1rem;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-weight: 700;
}

.roova-stepper__btn:hover {
	border-color: var(--roova-ocean);
	background: var(--roova-sand);
}

.roova-stepper__count {
	min-width: 18px;
	text-align: center;
	font-weight: 700;
	font-size: .92rem;
}

/* -------------------------------------------------------------- Sections */

.roova-section {
	padding: 76px 0;
}

.roova-section--sand {
	background: var(--roova-sand);
	margin-top: -1px;
}

/* Homepage rhythm: 68–88px, tighter at the bottom where a band follows. */
.roova-section--hotels {
	padding: 68px 0 20px;
}

.roova-section--destinations {
	padding: 76px 0 20px;
}

.roova-section--guarantees {
	padding: 78px 0 8px;
}

.roova-section--map {
	padding: 88px 0 96px;
}

.roova-section__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 34px;
}

.roova-section__head h1,
.roova-section__head h2 {
	font-size: clamp(2rem, 4vw, 46px);
	line-height: 1.06;
	color: var(--roova-deep);
	margin: 0;
}

/* "View all 11 →" */
.roova-section__more {
	flex: none;
	font-size: 14px;
	color: var(--roova-soft);
	border-bottom: 1px solid rgba(13, 58, 82, .25);
	padding-bottom: 3px;
	transition: color .3s ease, border-color .3s ease;
}

.roova-section__more:hover {
	color: var(--roova-gold);
	border-color: var(--roova-gold);
}

/* --------------------------------------------------------- Guarantees row */

.roova-guarantees {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.roova-guarantee {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: 14px;
}

.roova-guarantee__icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 1px solid rgba(180, 130, 60, .5);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--roova-gold);
	transition: transform .45s var(--roova-pop), background .35s ease, border-color .35s ease;
}

.roova-guarantee:hover .roova-guarantee__icon {
	transform: scale(1.1) rotate(8deg);
	background: rgba(180, 130, 60, .1);
	border-color: var(--roova-gold);
}

.roova-guarantee h3 {
	margin: 0;
	font-family: var(--roova-font-body);
	font-size: 15.5px;
	font-weight: 700;
	letter-spacing: .01em;
	color: var(--roova-deep);
}

.roova-guarantee p {
	margin: 0;
	max-width: 26ch;
	font-size: 13.5px;
	line-height: 1.65;
	color: var(--roova-muted);
}

/* ---------------------------------------------------------- Image bands */

.roova-band {
	position: relative;
	width: 100%;
	height: 420px;
	overflow: hidden;
	background: linear-gradient(120deg, var(--roova-deep), var(--roova-ocean));
	margin-top: 74px;
}

.roova-band--tall {
	height: 480px;
	margin-top: 80px;
}

.roova-band .roova-band__media {
	animation-duration: 34s;
}

.roova-band__scrim {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(to right, rgba(6, 30, 42, .82) 0%, rgba(6, 30, 42, .5) 52%, rgba(6, 30, 42, .28) 100%);
}

.roova-band__content {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	pointer-events: none;
}

.roova-band__content .roova-eyebrow {
	margin-bottom: 20px;
}

.roova-band__statement {
	margin: 0;
	max-width: 20ch;
	font-family: var(--roova-font-display);
	font-weight: 300;
	font-size: clamp(2rem, 4.4vw, 52px);
	line-height: 1.1;
	letter-spacing: -.02em;
	color: var(--roova-cream);
	text-wrap: balance;
}

/* ----------------------------------------------------------- Hotel cards */

.roova-hotels-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}

.roova-hotel-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--roova-hairline);
	border-radius: var(--roova-radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: var(--roova-shadow-card);
	transition: transform .25s ease, box-shadow .25s ease;
}

.roova-hotel-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--roova-shadow-lift);
}

.roova-hotel-card__media {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3.2;
	overflow: hidden;
	background: var(--roova-sand);
}

.roova-hotel-card__media img,
.roova-hotel-card__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* WooCommerce's loop styles put a margin under product images. */
	margin: 0;
	transition: transform .6s var(--roova-ease);
}

.roova-hotel-card:hover .roova-hotel-card__media img,
.roova-hotel-card:hover .roova-hotel-card__placeholder {
	transform: scale(1.04);
}

.roova-hotel-card__placeholder {
	display: block;
	background: repeating-linear-gradient(135deg, #e6e0d6 0 3px, #f1ece3 3px 12px);
}

/* The location pill sits over the top-left corner of the photo. */
.roova-hotel-card__loc {
	position: absolute;
	left: 12px;
	top: 12px;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 5px 11px;
	border-radius: 999px;
	background: rgba(8, 38, 53, .72);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	color: var(--roova-cream);
	font-size: 11px;
	letter-spacing: .04em;
}

/*
 * The saved-stays heart, wherever it appears: over a card's photograph, or
 * beside a hotel's name. It is a sibling of the media link rather than a child
 * — a browser drops interactive markup nested inside an <a> — so it is laid
 * over the corner here instead. See roova_like_button().
 */
.roova-like {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, .9);
	color: var(--roova-faint);
	cursor: pointer;
	transition: background .25s ease, color .25s ease, transform .25s var(--roova-pop);
}

.roova-like:hover {
	color: var(--roova-deep);
	transform: scale(1.08);
}

/* Saved: the heart fills, and the button inverts to the deep navy. */
.roova-like.is-liked {
	background: var(--roova-deep);
	color: #d9a75a;
}

.roova-like.is-liked .roova-icon {
	fill: currentColor;
}

.roova-like:focus-visible {
	outline: 2px solid var(--roova-deep);
	outline-offset: 2px;
}

/* On a hotel page the heart is in the flow of the header, not over a photo. */
.roova-like--head {
	position: absolute;
	top: 30px;
	right: 0;
	width: 42px;
	height: 42px;
	background: var(--roova-sand);
}

.roova-hotel-card__body {
	padding: 18px 18px 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

.roova-hotel-card__stars,
.roova-stars {
	display: inline-flex;
	gap: 2px;
	color: var(--roova-gold);
}

.roova-hotel-card__name {
	margin: 0;
	font-family: var(--roova-font-display);
	font-weight: 500;
	font-size: 20px;
	line-height: 1.22;
	letter-spacing: -.01em;
}

.roova-hotel-card__name a {
	color: var(--roova-ink);
}

.roova-hotel-card__name a:hover {
	color: var(--roova-deep);
}

.roova-hotel-card__price {
	margin-top: auto;
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 6px;
	padding-top: 8px;
	border-top: 1px solid var(--roova-hairline);
	font-size: 11.5px;
	color: var(--roova-faint);
}

.roova-hotel-card__price strong,
.roova-hotel-card__price .woocommerce-Price-amount {
	color: var(--roova-deep);
	font-size: 22px;
	font-family: var(--roova-font-display);
	font-weight: 400;
	line-height: 1.1;
}

.roova-hotel-card__price .roova-hotel-card__check {
	font-size: 13.5px;
	color: var(--roova-muted);
}

/* ---------------------------------------------------------- Destinations */

.roova-destinations {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 186px;
	gap: 16px;
}

.roova-destination {
	position: relative;
	border-radius: var(--roova-radius);
	overflow: hidden;
	display: flex;
	align-items: flex-end;
	color: var(--roova-cream);
	transition: box-shadow .35s ease, transform .35s var(--roova-ease);
}

.roova-destination:hover {
	color: var(--roova-cream);
	transform: translateY(-3px);
	box-shadow: 0 22px 40px -22px rgba(8, 38, 53, .4);
}

/*
 * The photo is its own layer: only it zooms, so the label underneath stays
 * pin-sharp while the tile is hovered.
 */
.roova-destination__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	transform: scale(1);
	transition: transform .7s var(--roova-ease);
}

.roova-destination:hover .roova-destination__bg {
	transform: scale(1.09);
}

.roova-destination::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(8, 38, 53, .82) 0%, rgba(8, 38, 53, .18) 46%, rgba(8, 38, 53, 0) 72%);
}

.roova-destination__content {
	position: relative;
	z-index: 1;
	padding: 20px 20px 18px;
	transition: transform .4s var(--roova-ease);
}

.roova-destination:hover .roova-destination__content {
	transform: translateY(-4px);
}

.roova-destination__name {
	display: block;
	font-family: var(--roova-font-display);
	font-size: 24px;
	font-weight: 500;
	letter-spacing: -.01em;
	line-height: 1.2;
}

.roova-destination__rule {
	display: block;
	width: 22px;
	height: 1px;
	background: var(--roova-gold);
	margin: 9px 0;
}

.roova-destination__count {
	font-size: 12px;
	color: rgba(251, 248, 243, .78);
}

/*
 * The mosaic rhythm from the design: a 2x2 anchor, four single tiles, then
 * wide tiles. roova_destination_span() hands out these classes in order.
 */
.roova-destination--wide {
	grid-column: span 2;
}

.roova-destination--tall {
	grid-row: span 2;
}

/* ------------------------------------------------------------ Coverage map */

.roova-coverage {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 32px;
	min-height: 560px;
}

.roova-coverage__map {
	position: relative;
	min-height: 360px;
}

.roova-coverage__map svg {
	width: 100%;
	height: 100%;
	display: block;
}

.roova-coverage__panel {
	align-self: center;
}

.roova-coverage__title {
	font-size: 30px;
	line-height: 1.1;
	color: var(--roova-deep);
	margin: 0 0 18px;
}

.roova-coverage__views {
	display: flex;
	gap: 8px;
	margin-bottom: 14px;
}

.roova-coverage__row {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	padding: 11px 12px;
	border-radius: 10px;
	transition: background .2s ease, transform .2s ease;
}

.roova-coverage__row:hover,
.roova-coverage__row.is-active {
	background: rgba(180, 130, 60, .12);
	transform: translateX(2px);
}

.roova-coverage__row b {
	font-family: var(--roova-font-display);
	font-weight: 500;
	font-size: 17px;
	color: var(--roova-deep);
}

.roova-coverage__row span {
	font-size: 12px;
	color: var(--roova-faint);
}

/* Pins and land are drawn by theme.js; these are their resting styles. */
.roova-atlas__other {
	fill: #eae4da;
	stroke: var(--roova-page);
	stroke-width: 1;
}

.roova-atlas__home {
	fill: var(--roova-deep);
	stroke: var(--roova-deep);
	stroke-width: .6;
}

.roova-pin {
	cursor: pointer;
}

.roova-pin circle.roova-pin__dot {
	fill: var(--roova-gold);
	stroke: var(--roova-page);
	stroke-width: 1.4;
	transition: r .25s ease;
}

.roova-pin circle.roova-pin__halo {
	fill: var(--roova-gold);
	opacity: .22;
	transform-box: fill-box;
	transform-origin: center;
	animation: roova-pulse 3.2s ease-out infinite;
}

.roova-pin__label {
	font-size: 11px;
	font-weight: 500;
	fill: var(--roova-deep);
	paint-order: stroke;
	stroke: var(--roova-page);
	stroke-width: 3px;
	stroke-linejoin: round;
	pointer-events: none;
}

@keyframes roova-pulse {
	0% { transform: scale(.7); opacity: .32; }
	70% { transform: scale(2.1); opacity: 0; }
	100% { opacity: 0; }
}

/* ------------------------------------------------------------- Scroll reveal */

[data-roova-reveal] {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity .75s var(--roova-ease), transform .75s var(--roova-ease);
	will-change: opacity, transform;
}

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

/* A staggered container reveals its children one by one instead. */
[data-roova-reveal][data-roova-stagger] {
	opacity: 1;
	transform: none;
}

[data-roova-reveal][data-roova-stagger] > * {
	opacity: 0;
	transform: translateY(26px);
}

[data-roova-reveal][data-roova-stagger].is-revealed > * {
	opacity: 1;
	transform: none;
}

/* ------------------------------------------------------- Hotel details */

.roova-breadcrumb {
	background: var(--roova-deep);
	color: rgba(255, 255, 255, .7);
	font-size: .82rem;
	padding: 12px 0;
}

.roova-breadcrumb a {
	color: #fff;
	font-weight: 600;
}

.roova-hotel-head {
	/* The saved-stays heart is laid into the top right corner of this block. */
	position: relative;
	padding: 30px 0 18px;
	border-bottom: 1px solid var(--roova-line);
}

.roova-hotel-head h1 {
	font-size: clamp(1.5rem, 2.6vw, 2rem);
	margin-bottom: 8px;
	/* Room for the heart, so a long hotel name never runs under it. */
	padding-right: 56px;
}

.roova-hotel-head__loc {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--roova-muted);
	font-size: .92rem;
	flex-wrap: wrap;
}

.roova-hotel-head__loc .roova-icon {
	color: var(--roova-ocean);
}

.roova-hotel-head__loc a {
	font-weight: 600;
	text-decoration: underline;
}

/* A destination in the header links straight to that destination's hotels. */
.roova-dest-link {
	color: var(--roova-deep);
	font-weight: 700;
	text-decoration: none;
	border-bottom: 1px dashed var(--roova-ocean);
}

.roova-dest-link:hover {
	color: var(--roova-ocean);
	text-decoration: none;
}

.roova-hotel-head__loc .roova-sep {
	color: var(--roova-line);
}

.roova-gallery {
	margin: 22px 0;
}

/* One full-width stage, with the picture shown whole inside it. */
.roova-gallery__main {
	position: relative;
	height: clamp(320px, 46vw, 560px);
	border-radius: var(--roova-radius);
	overflow: hidden;
	background: var(--roova-sand);
}

.roova-gallery__slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	transition: opacity .25s ease;
}

.roova-gallery__slide.is-active {
	opacity: 1;
}

/*
 * Photos are never cropped: whatever the shape of the upload, the whole frame
 * stays visible and the letterbox is filled with a blurred copy of the image.
 */
.roova-gallery__slide img {
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
	z-index: 1;
}

.roova-gallery__blur {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	filter: blur(26px) saturate(1.15);
	transform: scale(1.15);
	opacity: .55;
	z-index: 0;
}

/* The strip of small photos under the stage. */
.roova-gallery__thumbs {
	display: flex;
	gap: 10px;
	margin-top: 10px;
	overflow-x: auto;
	padding-bottom: 4px;
	scrollbar-width: thin;
}

.roova-gallery__thumb {
	flex: 0 0 auto;
	width: 132px;
	height: 88px;
	padding: 0;
	border: 2px solid transparent;
	border-radius: 10px;
	overflow: hidden;
	background: var(--roova-sand);
	cursor: pointer;
	opacity: .68;
	transition: opacity .15s ease, border-color .15s ease;
}

.roova-gallery__thumb:hover,
.roova-gallery__thumb:focus-visible {
	opacity: 1;
}

.roova-gallery__thumb.is-active {
	opacity: 1;
	border-color: var(--roova-ocean);
}

/* Thumbnails are navigation, not the viewing surface, so they fill their box. */
.roova-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.roova-gallery__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .92);
	border: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--roova-deep);
	z-index: 2;
}

.roova-gallery__arrow--prev {
	left: 14px;
}

.roova-gallery__arrow--next {
	right: 14px;
}

.roova-gallery__count {
	position: absolute;
	bottom: 14px;
	right: 14px;
	background: rgba(12, 59, 87, .75);
	color: #fff;
	font-size: .78rem;
	font-weight: 600;
	padding: 5px 12px;
	border-radius: 20px;
	z-index: 2;
}

.roova-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 296px;
	gap: 26px;
	padding: 30px 0 70px;
	align-items: start;
}

.roova-layout__main > .roova-card {
	margin-bottom: 26px;
}

.roova-layout__side {
	display: flex;
	flex-direction: column;
	gap: 18px;
	position: sticky;
	top: 20px;
}

.roova-card {
	background: #fff;
	border: 1px solid var(--roova-line);
	border-radius: var(--roova-radius);
	padding: 22px;
}

.roova-card__title {
	font-size: 1.3rem;
	margin-bottom: 18px;
}

.roova-clamp {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.roova-clamp.is-open {
	display: block;
}

.roova-prose {
	font-size: .95rem;
	line-height: 1.75;
}

/* Editor content still wants underlined links; the rest of the theme does not. */
.roova-prose a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

.roova-stay-summary {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: .88rem;
	color: var(--roova-muted);
	background: var(--roova-sand);
	padding: 10px 14px;
	border-radius: 10px;
}

/* ------------------------------------------------------------- Room rows */

.roova-room {
	display: grid;
	grid-template-columns: 260px minmax(0, 1fr) 250px;
	gap: 24px;
	border: 1px solid var(--roova-line);
	border-radius: var(--roova-radius);
	overflow: hidden;
	margin-bottom: 18px;
	align-items: stretch;
	transition: box-shadow .18s ease, border-color .18s ease;
}

.roova-room:hover {
	border-color: #d7d2c2;
	box-shadow: 0 10px 26px rgba(12, 59, 87, .07);
}

.roova-room__media {
	position: relative;
	background: var(--roova-sand);
}

.roova-room__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 170px;
}

.roova-room__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 170px;
	background: linear-gradient(150deg, #123a52, var(--roova-ocean));
}

.roova-room__info {
	padding: 20px 0;
	min-width: 0;
}

.roova-room__name {
	font-size: 1.2rem;
	margin-bottom: 12px;
}

/*
 * Room facts sit on a single bold line; amenities run underneath. The line only
 * wraps when the facts genuinely cannot fit — never clipped.
 */
.roova-room__meta {
	display: flex;
	align-items: center;
	gap: 6px 22px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}

.roova-room__meta span {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: .9rem;
	font-weight: 700;
	color: var(--roova-ink);
	white-space: nowrap;
}

.roova-room__amenities {
	display: flex;
	gap: 10px 18px;
	margin-bottom: 12px;
	flex-wrap: wrap;
}

.roova-room__amenities span {
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: .85rem;
	color: var(--roova-muted);
}

.roova-room__meta .roova-icon,
.roova-room__amenities .roova-icon {
	color: var(--roova-ocean);
	flex-shrink: 0;
}

.roova-room__book {
	border-left: 1px solid var(--roova-line);
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	gap: 10px;
	text-align: right;
}

/*
 * The rate is the thing a guest scans for, so it is the loudest text in the row:
 * big, bold and in the body font, with "/ night" on the same baseline.
 */
.roova-room__price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	justify-content: flex-end;
	gap: 0 8px;
}

/*
 * Direct children only — wc_price() wraps the amount in its own spans, and a
 * bare `span` rule here would shrink and grey out the price itself.
 */
.roova-room__price > span {
	font-size: .78rem;
	color: var(--roova-muted);
}

.roova-room__price > span:first-child {
	flex: 0 0 100%;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
}

.roova-room__price > span:last-child {
	font-size: 1rem;
	font-weight: 500;
}

.roova-room__price strong {
	font-family: var(--roova-font-body);
	font-size: 1.9rem;
	font-weight: 700;
	line-height: 1.15;
	color: var(--roova-ink);
}

/* Let WooCommerce's amount / currency wrappers inherit the size above. */
.roova-room__price strong span {
	font: inherit;
	color: inherit;
}

.roova-room__total {
	font-size: .78rem;
	color: var(--roova-muted);
}

.roova-room__note {
	font-size: .82rem;
	color: var(--roova-muted);
	margin: 0;
}

.roova-room__scarcity {
	font-size: .78rem;
	font-weight: 700;
	color: #b3261e;
	margin: 0;
}

.roova-room__form {
	width: 100%;
	margin: 0;
}

/* ------------------------------------------------------------ Amenities */

.roova-amenities {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px 28px;
}

.roova-amenity {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: .92rem;
}

.roova-amenity .roova-icon {
	color: var(--roova-ocean);
	flex-shrink: 0;
}

/* ----------------------------------------------------------- Facilities */

.roova-facilities {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px 26px;
}

.roova-facility {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: .92rem;
	line-height: 1.45;
}

.roova-facility .roova-icon {
	color: var(--roova-ocean);
	flex-shrink: 0;
	margin-top: 2px;
}

.roova-icon--image {
	object-fit: contain;
}

/* ------------------------------------------------------------ Landmarks */

.roova-landmarks {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 40px;
}

.roova-landmarks__col h4 {
	font-family: var(--roova-font-body);
	font-size: .98rem;
	font-weight: 700;
	margin-bottom: 12px;
}

.roova-landmark {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 10px 0;
	border-top: 1px solid var(--roova-line);
	font-size: .9rem;
}

.roova-landmark .roova-icon {
	color: var(--roova-muted);
	flex-shrink: 0;
	margin-top: 3px;
}

.roova-landmark small {
	display: block;
	color: var(--roova-muted);
	font-size: .8rem;
}

/* -------------------------------------------------------------- Reviews */

.roova-reviews__head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
}

.roova-reviews__score {
	background: var(--roova-deep);
	color: #fff;
	font-family: var(--roova-font-display);
	font-weight: 700;
	font-size: 1.3rem;
	padding: 10px 14px;
	border-radius: 8px;
}

.roova-reviews__text strong {
	display: block;
	font-size: .95rem;
}

.roova-reviews__text span {
	font-size: .8rem;
	color: var(--roova-muted);
}

.roova-reviews__row {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: .82rem;
	color: var(--roova-muted);
	margin-bottom: 8px;
}

.roova-reviews__row span:first-child {
	width: 80px;
	flex-shrink: 0;
}

.roova-reviews__row span:last-child {
	width: 26px;
	text-align: right;
	color: var(--roova-ink);
	font-weight: 600;
}

.roova-reviews__bar {
	flex: 1;
	height: 6px;
	background: var(--roova-sand);
	border-radius: 4px;
	overflow: hidden;
}

.roova-reviews__bar i {
	display: block;
	height: 100%;
	background: var(--roova-ocean);
	border-radius: 4px;
}

/* ------------------------------------------------- Guest reviews section */

.roova-greviews__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	flex-wrap: wrap;
}

.roova-greviews__heading .roova-card__title {
	margin-bottom: 6px;
}

.roova-greviews__sub {
	margin: 0;
	font-size: .86rem;
	color: var(--roova-muted);
}

.roova-greviews__summary {
	display: flex;
	align-items: center;
	gap: 26px;
	flex-wrap: wrap;
}

.roova-greviews__avg {
	display: flex;
	align-items: baseline;
	gap: 7px;
	margin: 0;
}

.roova-greviews__avg span {
	font-family: var(--roova-font-display);
	font-size: 2.4rem;
	line-height: 1;
	color: var(--roova-deep);
}

.roova-greviews__avg small {
	font-size: .78rem;
	color: var(--roova-faint);
}

.roova-greviews__breakdown {
	display: flex;
	gap: 22px;
	flex-wrap: wrap;
	margin: 0;
}

.roova-greviews__breakdown dt {
	font-size: .68rem;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: var(--roova-faint);
}

.roova-greviews__breakdown dd {
	margin: 4px 0 0;
	font-size: 1.05rem;
	color: var(--roova-soft);
}

/* The confirmation the redirect carries back after a review is posted. */
.roova-greviews__flash {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 20px 0 0;
	padding: 13px 16px;
	border-radius: 10px;
	background: var(--roova-deep);
	color: var(--roova-cream);
	font-size: .88rem;
}

.roova-greviews__flash .roova-icon {
	color: var(--roova-gold-light);
	flex-shrink: 0;
}

/* Why there is no form: signed out, no completed stay, or already reviewed. */
.roova-greviews__note {
	display: flex;
	align-items: center;
	gap: 9px;
	flex-wrap: wrap;
	margin: 20px 0 0;
	padding: 14px 16px;
	border: 1px solid var(--roova-line);
	border-radius: 10px;
	background: var(--roova-sand);
	font-size: .88rem;
	color: var(--roova-soft);
}

.roova-greviews__note .roova-icon {
	color: var(--roova-gold);
	flex-shrink: 0;
}

.roova-greviews__note a {
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.roova-greviews__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 30px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--roova-line);
}

.roova-greviews__listing {
	margin: 0;
	font-size: 1.15rem;
}

.roova-greviews__sort {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	font-size: .8rem;
	color: var(--roova-faint);
}

.roova-greviews__sort-link {
	color: var(--roova-muted);
	padding-bottom: 2px;
	border-bottom: 1px solid transparent;
	transition: color .25s ease, border-color .25s ease;
}

.roova-greviews__sort-link:hover {
	color: var(--roova-deep);
}

.roova-greviews__sort-link.is-active {
	color: var(--roova-deep);
	font-weight: 600;
	border-bottom-color: var(--roova-gold);
}

.roova-greviews__more {
	margin-top: 22px;
}

/* ------------------------------------------------------- A single review */

.roova-greview {
	padding: 24px 0;
	border-bottom: 1px solid var(--roova-hairline);
}

.roova-greview:last-child {
	border-bottom: 0;
	padding-bottom: 4px;
}

.roova-greview__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
}

.roova-greview__who {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

.roova-greview__avatar {
	width: 40px;
	height: 40px;
	flex-shrink: 0;
	border-radius: 50%;
	background: var(--roova-sand);
	color: var(--roova-gold);
	font-family: var(--roova-font-display);
	font-size: 1.05rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.roova-greview__name {
	margin: 0;
	font-size: .95rem;
	font-weight: 500;
}

.roova-greview__meta {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin: 3px 0 0;
	font-size: .78rem;
	color: var(--roova-faint);
}

.roova-greview__verified {
	display: flex;
	align-items: center;
	gap: 4px;
	color: var(--roova-muted);
	white-space: nowrap;
}

.roova-greview__verified .roova-icon {
	color: var(--roova-gold);
}

.roova-greview__score {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

/*
 * roova_review_stars() splits the row into a filled run and an unfilled one.
 * account.css paints them for the Reviews tab; the hotel page needs its own
 * copy, or every rating shows five identical stars.
 */
.roova-greview__score .roova-review__stars {
	font-size: 1rem;
	letter-spacing: 2px;
	line-height: 1;
}

.roova-greview__score .roova-review__stars-on {
	color: var(--roova-gold-light);
}

.roova-greview__score .roova-review__stars-off {
	color: #dfe4e6;
}

.roova-greview__overall {
	padding: 4px 11px;
	border-radius: 999px;
	background: var(--roova-deep);
	color: var(--roova-cream);
	font-size: .82rem;
}

.roova-greview__scores {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-top: 15px;
}

.roova-greview__pill {
	display: flex;
	align-items: center;
	gap: 7px;
	padding: 5px 12px;
	border: 1px solid var(--roova-hairline);
	border-radius: 999px;
	background: var(--roova-cream);
	font-size: .76rem;
	color: var(--roova-faint);
}

.roova-greview__pill strong {
	font-weight: 500;
	color: var(--roova-ink);
}

.roova-greview__body {
	max-width: 68ch;
	margin: 14px 0 0;
	font-size: .93rem;
	line-height: 1.7;
	color: var(--roova-soft);
	white-space: pre-line;
}

/* -------------------------------------------------- Write a review form */

.roova-rform {
	margin-top: 22px;
	border: 1px solid var(--roova-line);
	border-radius: 12px;
	padding: 20px 22px 22px;
}

.roova-rform__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--roova-hairline);
}

.roova-rform__title {
	margin: 0;
	font-size: 1.15rem;
}

.roova-rform__overall {
	display: flex;
	align-items: baseline;
	gap: 7px;
	margin: 0;
}

.roova-rform__overall span {
	font-family: var(--roova-font-display);
	font-size: 1.6rem;
	line-height: 1;
	color: var(--roova-deep);
}

.roova-rform__overall small {
	font-size: .76rem;
	color: var(--roova-faint);
}

.roova-rform__error {
	margin: 14px 0 0;
	color: #b3261e;
	font-size: .84rem;
	font-weight: 600;
}

.roova-rform__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px 20px;
	flex-wrap: wrap;
	margin: 0;
	padding: 15px 0;
	border: 0;
	border-bottom: 1px solid var(--roova-hairline);
}

.roova-rform__label {
	display: flex;
	align-items: center;
	gap: 11px;
	flex: 1 1 200px;
	min-width: 0;
}

.roova-rform__label .roova-icon {
	color: var(--roova-gold);
	flex-shrink: 0;
}

.roova-rform__label strong {
	display: block;
	font-size: .95rem;
	font-weight: 500;
}

.roova-rform__label small {
	display: block;
	margin-top: 2px;
	font-size: .78rem;
	color: var(--roova-faint);
}

.roova-rform__field {
	display: block;
	margin-top: 18px;
}

.roova-rform__caption {
	display: block;
	margin-bottom: 6px;
	font-size: .74rem;
	letter-spacing: .02em;
	color: var(--roova-muted);
}

.roova-rform__field textarea {
	display: block;
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--roova-hairline-strong);
	border-radius: 8px;
	background: #fff;
	font: inherit;
	font-size: .93rem;
	line-height: 1.65;
	color: var(--roova-ink);
	resize: vertical;
	transition: border-color .25s ease, box-shadow .25s ease;
}

.roova-rform__field textarea:focus {
	outline: none;
	border-color: var(--roova-deep);
	box-shadow: 0 0 0 3px rgba(13, 58, 82, .08);
}

.roova-rform__foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 18px;
}

.roova-rform__legal {
	flex: 1 1 200px;
	margin: 0;
	font-size: .78rem;
	line-height: 1.6;
	color: var(--roova-faint);
}

/* ------------------------------------------------------ The star pickers */

.roova-rate__stars {
	display: flex;
	gap: 4px;
	flex-shrink: 0;
}

.roova-rate__star {
	cursor: pointer;
	font-size: 1.5rem;
	line-height: 1;
	color: #dfe4e6;
	transition: color .2s ease, transform .2s var(--roova-pop);
}

.roova-rate__star input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.roova-rate__star:hover {
	transform: scale(1.1);
}

/*
 * A star lights up with everything before it. CSS can only look forwards from a
 * sibling, so the rule is written the other way round: light a star that has a
 * *later* sibling which is checked (or hovered). The radios are what the form
 * posts, so a browser without :has still records the rating — it just does not
 * paint the run.
 */
.roova-rate__star:has(input:checked),
.roova-rate__star:has(~ .roova-rate__star input:checked) {
	color: var(--roova-gold-light);
}

/* Hovering previews a rating, and overrides whatever is currently chosen. */
.roova-rate__stars:hover .roova-rate__star:hover,
.roova-rate__stars:hover .roova-rate__star:has(~ .roova-rate__star:hover) {
	color: var(--roova-gold-light);
}

.roova-rate__stars:hover .roova-rate__star:not(:hover):not(:has(~ .roova-rate__star:hover)) {
	color: #dfe4e6;
}

.roova-rate__star:has(input:focus-visible) {
	outline: 2px solid var(--roova-deep);
	outline-offset: 2px;
}

@media (max-width: 560px) {
	.roova-greviews__summary,
	.roova-greview__head,
	.roova-rform__row {
		align-items: flex-start;
	}

	.roova-rform__row {
		flex-direction: column;
	}

	/*
	 * flex-basis is a *height* once the row stacks, so the 200px that keeps the
	 * label beside its stars on a wide screen would otherwise make it a 200px
	 * tall box with the stars stranded at the bottom of it.
	 */
	.roova-rform__label {
		flex: 0 0 auto;
	}
}

/* --------------------------------------------------------- Booking box */

.roova-booking-box__from {
	padding-bottom: 14px;
	border-bottom: 1px solid var(--roova-line);
	margin-bottom: 6px;
}

/* Direct children only, for the same reason as the room row above. */
.roova-booking-box__from > span {
	font-size: .8rem;
	color: var(--roova-muted);
}

.roova-booking-box__from strong {
	font-family: var(--roova-font-body);
	font-size: 1.45rem;
	font-weight: 700;
	color: var(--roova-ink);
	margin: 0 6px;
}

.roova-booking-box__from strong span {
	font: inherit;
	color: inherit;
}

.roova-booking-box__times {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: .78rem;
	color: var(--roova-muted);
	margin: 14px 0 0;
}

.roova-booking-box .roova-btn--ghost {
	width: 100%;
	margin-top: 12px;
}

/* ---------------------------------------------------------------- Map */

.roova-map__address {
	font-size: .86rem;
	color: var(--roova-muted);
}

.roova-map__canvas {
	height: 190px;
	border-radius: 10px;
	overflow: hidden;
	background: var(--roova-sand);
}

.roova-map__placeholder {
	height: 150px;
	border-radius: 10px;
	background: linear-gradient(135deg, #e9edea 0%, #dfe6e0 100%);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	color: var(--roova-deep);
	font-size: .82rem;
	font-weight: 700;
}

.roova-map__link {
	display: inline-block;
	margin-top: 12px;
	font-size: .85rem;
	font-weight: 600;
}


/* ----------------------------------------------------------- Contact */

.roova-contact__label {
	font-size: .86rem;
	color: var(--roova-muted);
	margin: 0 0 6px;
}

.roova-contact__phone {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0;
	font-family: var(--roova-font-body);
	font-size: 1.45rem;
	font-weight: bold;
	color: var(--roova-gold);
	text-decoration: none;
	word-break: break-word;
}

.roova-contact__phone svg {
	flex: none;
}

a.roova-contact__phone:hover,
a.roova-contact__phone:focus-visible {
	color: var(--roova-deep);
}

.roova-contact__note {
	font-size: .78rem;
	color: var(--roova-muted);
	margin: 10px 0 0;
}

/* --------------------------------------------------------------- Modal */

.roova-modal {
	position: fixed;
	inset: 0;
	background: rgba(12, 20, 26, .6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 100;
	padding: 24px;
}

.roova-modal[hidden] {
	display: none;
}

.roova-modal__box {
	position: relative;
	background: #fff;
	border-radius: var(--roova-radius);
	max-width: 1080px;
	width: 100%;
	max-height: 92vh;
	overflow-y: auto;
}

.roova-modal__close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: rgba(12, 59, 87, .85);
	color: #fff;
	border: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 2;
}

/* The photo is the point of this dialog, so give it most of the height. */
.roova-modal__gallery {
	position: relative;
	height: clamp(300px, 58vh, 640px);
	background: var(--roova-sand);
	overflow: hidden;
}

/* Same rule as the hotel gallery: show the whole photo, never crop it. */
.roova-modal__gallery img {
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: contain;
	z-index: 1;
}

.roova-modal__gallery .roova-gallery__blur {
	filter: blur(30px) saturate(1.15);
}

.roova-modal__body {
	padding: 24px;
}

.roova-modal__meta {
	display: flex;
	gap: 18px;
	color: var(--roova-muted);
	font-size: .88rem;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.roova-modal__amenities {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 16px;
}

.roova-modal__amenities span {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: .9rem;
}

.roova-modal__amenities .roova-icon {
	color: var(--roova-ocean);
}

/* ------------------------------------------------------- Search results */

.roova-search-header {
	background: var(--roova-deep);
	padding: 26px 0 40px;
}

.roova-search-results {
	padding: 34px 0 70px;
}

.roova-search-header .roova-search {
	margin-top: 0;
}

.roova-results {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.roova-result {
	display: grid;
	grid-template-columns: 260px 1fr 220px;
	gap: 22px;
	border: 1px solid var(--roova-line);
	border-radius: var(--roova-radius);
	overflow: hidden;
	background: #fff;
}

.roova-result--unavailable {
	opacity: .75;
}

.roova-result__media {
	display: block;
	min-height: 200px;
	position: relative;
	overflow: hidden;
}

.roova-result__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.roova-result__body {
	padding: 20px 0;
}

.roova-result__body h2 {
	font-size: 1.2rem;
	margin-bottom: 6px;
}

.roova-result__body h2 a {
	color: var(--roova-ink);
}

.roova-result__loc {
	display: flex;
	align-items: center;
	gap: 7px;
	color: var(--roova-muted);
	font-size: .88rem;
}

.roova-result__amenities {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 12px;
}

.roova-result__amenities span {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: .82rem;
	color: var(--roova-muted);
}

.roova-result__aside {
	border-left: 1px solid var(--roova-line);
	padding: 20px;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
	gap: 10px;
	text-align: right;
}

.roova-result__price span {
	font-size: .8rem;
	color: var(--roova-muted);
}

.roova-result__price strong {
	display: block;
	font-family: var(--roova-font-display);
	font-size: 1.4rem;
}

.roova-search-results__count {
	color: var(--roova-muted);
	font-size: .9rem;
}

/* ------------------------------------------------------------ Post lists */

.roova-archive,
.roova-page {
	padding: 40px 0 70px;
}

.roova-posts {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.roova-post-card {
	border: 1px solid var(--roova-line);
	border-radius: var(--roova-radius);
	overflow: hidden;
}

.roova-post-card__body {
	padding: 18px;
}

.roova-page__head h1 {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.roova-page__media {
	margin: 0 0 24px;
	border-radius: var(--roova-radius);
	overflow: hidden;
}

.roova-404 {
	text-align: center;
}

/* ---------------------------------------------------------- WooCommerce */

/*
 * Cart, checkout, account and the catalogue all render through
 * woocommerce.php. WooCommerce's own wrapper hooks do not fire for every one
 * of them, so the column lives here rather than on .roova-wc-page.
 */
.roova-woocommerce {
	max-width: 1180px;
	margin: 0 auto;
	padding: 40px 24px 70px;
}

/* Nested inside the column above when WooCommerce fires its wrapper hooks. */
.roova-wc-page .wrap {
	max-width: none;
	padding: 0;
}

.roova-notices {
	margin: 18px 0 0;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-top-color: var(--roova-ocean);
	border-radius: 10px;
}

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
	background: var(--roova-deep);
	color: #fff;
	border-radius: 9px;
	font-weight: 700;
	padding: 12px 24px;
}

.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
	background: var(--roova-ocean);
	color: #fff;
}

.roova-cart-hotel {
	display: block;
	font-size: .8rem;
	color: var(--roova-muted);
	font-weight: 500;
}

.roova-per-night,
.roova-from {
	font-size: .82rem;
	color: var(--roova-muted);
	font-family: var(--roova-font-body);
	font-weight: 500;
}

/* -------------------------------------------------------------- Footer */

.roova-footer {
	background: var(--roova-sand);
	border-top: 1px solid rgba(13, 58, 82, .1);
	color: var(--roova-muted);
	font-size: 13.5px;
}

.roova-footer a {
	color: var(--roova-soft);
}

.roova-footer__top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
	padding: 56px 0 28px;
}

.roova-footer__brand strong {
	display: block;
	color: var(--roova-deep);
	font-family: var(--roova-font-display);
	font-weight: 400;
	font-size: 24px;
	line-height: 1.2;
}

.roova-footer__brand em {
	font-style: normal;
	color: var(--roova-gold);
}

.roova-footer__brand p {
	margin: 12px 0 0;
	max-width: 30ch;
	line-height: 1.65;
	color: var(--roova-muted);
}

.roova-footer__col {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.roova-footer__heading {
	font-size: 11px;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #9aa8ad;
	margin-bottom: 4px;
}

.roova-footer .roova-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.roova-footer .roova-menu a,
.roova-footer__col a {
	display: inline-block;
	transition: color .25s ease, transform .25s ease;
}

.roova-footer .roova-menu a:hover,
.roova-footer__col a:hover {
	color: var(--roova-gold);
	transform: translateX(3px);
}

.roova-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.roova-footer__contact span {
	display: flex;
	align-items: center;
	gap: 8px;
}

.roova-footer__widgets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
	padding: 0 0 24px;
}

.roova-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 0 40px;
	border-top: 1px solid var(--roova-hairline);
	font-size: 12.5px;
	color: var(--roova-faint);
}

/* ---------------------------------------------------------- Responsive */

@media (max-width: 1180px) {
	.roova-room {
		grid-template-columns: 200px minmax(0, 1fr) 215px;
		gap: 18px;
	}

	/* Keep the rate and "/ night" on one line as the column narrows. */
	.roova-room__price strong {
		font-size: 1.55rem;
	}

	.roova-room__price > span:last-child {
		font-size: .92rem;
	}

	.roova-room__meta {
		gap: 8px 18px;
	}

	.roova-facilities {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 1080px) {
	.roova-nav__inner {
		padding: 16px 24px;
	}

	.roova-hero__panel {
		min-height: 600px;
	}

	.roova-hotels-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 1000px) {
	.roova-layout {
		grid-template-columns: 1fr;
	}

	.roova-layout__side {
		position: static;
		order: -1;
	}

	.roova-result {
		grid-template-columns: 200px 1fr;
	}

	.roova-result__aside {
		grid-column: 1 / -1;
		border-left: 0;
		border-top: 1px solid var(--roova-line);
		align-items: flex-start;
		text-align: left;
	}

	.roova-posts {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 900px) {
	/* The search bar stacks; its hairlines turn into horizontal rules. */
	.roova-search {
		grid-template-columns: 1fr;
	}

	.roova-search__field {
		border-radius: 0;
		padding: 16px 20px;
	}

	.roova-search__field:first-child {
		border-radius: 18px 18px 0 0;
	}

	.roova-search__divider {
		width: auto;
		height: 1px;
	}

	.roova-search__submit {
		min-height: 52px;
	}

	.roova-guarantees {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px;
	}

	.roova-footer__top {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}
}

@media (max-width: 860px) {
	.roova-coverage {
		grid-template-columns: 1fr;
		min-height: 0;
		gap: 16px;
	}

	.roova-coverage__map {
		height: 340px;
	}

	.roova-coverage__list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 2px 10px;
	}

	.roova-coverage__row {
		padding: 8px;
	}
}

@media (max-width: 820px) {
	.wrap {
		padding: 0 16px;
	}

	.roova-nav .roova-menu {
		display: none;
	}

	.roova-nav__inner.is-open .roova-menu {
		display: flex;
		position: absolute;
		top: 100%;
		left: 20px;
		right: 20px;
		flex-direction: column;
		background: #fff;
		border-radius: 12px;
		padding: 16px;
		box-shadow: var(--roova-shadow);
		z-index: 30;
	}

	.roova-nav__inner.is-open .roova-menu a {
		color: var(--roova-ink);
	}

	.roova-nav__toggle {
		display: block;
	}

	.roova-hero__panel {
		min-height: 520px;
	}

	.roova-hero__content {
		padding: 90px 24px 44px;
	}

	.roova-search__submit {
		width: auto;
		justify-content: center;
		padding: 14px;
	}

	.roova-band {
		height: 340px;
		margin-top: 56px;
	}

	.roova-band--tall {
		height: 320px;
		margin-top: 56px;
	}

	.roova-panel {
		left: 0;
		right: 0;
		width: auto;
	}

	.roova-gallery__main {
		height: 260px;
	}

	.roova-gallery__thumb {
		width: 96px;
		height: 64px;
	}

	.roova-room {
		grid-template-columns: 1fr;
	}

	.roova-room__info,
	.roova-room__book {
		padding: 18px;
	}

	.roova-room__book {
		border-left: 0;
		border-top: 1px solid var(--roova-line);
		align-items: flex-start;
		text-align: left;
	}

	.roova-amenities,
	.roova-facilities,
	.roova-landmarks,
	.roova-destinations,
	.roova-hotels-grid,
	.roova-posts {
		grid-template-columns: 1fr 1fr;
	}

	/* Two columns leaves no room for the mosaic's 2x2 anchor. */
	.roova-destination--wide,
	.roova-destination--tall {
		grid-column: span 2;
		grid-row: auto;
	}

	.roova-landmarks {
		gap: 20px;
	}

	.roova-result,
	.roova-result__media {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.roova-result__media {
		height: 200px;
	}

	.roova-result__body {
		padding: 0 18px;
	}

	.roova-section {
		padding: 54px 0;
	}

	.roova-section--hotels,
	.roova-section--destinations,
	.roova-section--guarantees {
		padding: 54px 0 12px;
	}

	.roova-section--map {
		padding: 54px 0 60px;
	}

	.roova-footer__top {
		padding-top: 40px;
	}
}

@media (max-width: 560px) {
	.roova-nav__inner {
		padding: 14px 16px;
		gap: 12px;
	}

	.roova-btn--nav {
		padding: 9px 14px;
		font-size: 12.5px;
	}

	.roova-amenities,
	.roova-facilities,
	.roova-destinations,
	.roova-guarantees,
	.roova-hotels-grid,
	.roova-posts,
	.roova-footer__top,
	.roova-modal__amenities {
		grid-template-columns: 1fr;
	}

	.roova-destination--wide,
	.roova-destination--tall {
		grid-column: auto;
	}

	.roova-coverage__list {
		grid-template-columns: 1fr;
	}

	.roova-footer__bottom {
		flex-direction: column;
		gap: 6px;
	}
}

/* ------------------------------------------------------- Reduced motion */

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}

	[data-roova-reveal],
	[data-roova-reveal][data-roova-stagger] > * {
		opacity: 1 !important;
		transform: none !important;
	}
}
