/**
 * Nivanta Stays — rooms archive at /our-rooms/.
 *
 * Scope: `.nv-stays`. Composition extends Nivanta v3 Heritage Archive
 * language (Ken-Burns hero + lime hairline bottom-left copy + 7vw stat
 * ticker + image-bleed cards on navy + paper-bg feature blocks).
 *
 * Brand pack LOCKED 2026-05-08 per DESIGN-nivanta-creaze.md:
 *   navy   #022E3D · lime   #A6CE39 · teal   #6ACAD1
 *   cream  #FBFAF7 · paper  #FFFFFF · ink    #0E1316 · mute #5C6268
 *   Display: Bricolage Grotesque (800 + 500 italic accent)
 *   Body:    Open Sans (400 + 600)
 *   Buttons: pill 999px
 *   Motion:  600–800ms ease-out, prefers-reduced-motion respected
 */

.nv-stays {
	--nv-navy: #022E3D;
	--nv-lime: #A6CE39;
	--nv-teal: #6ACAD1;
	--nv-bg:   #FBFAF7;
	--nv-surface: #FFFFFF;
	--nv-ink:  #0E1316;
	--nv-mute: #5C6268;
	--nv-rule: rgba(2, 46, 61, 0.08);

	--nv-display: 'Bricolage Grotesque', system-ui, sans-serif;
	--nv-body:    'Open Sans', system-ui, sans-serif;

	--nv-container: min(1320px, 92vw);
	--nv-radius:    8px;
	--nv-shadow:    0 24px 60px rgba(2, 46, 61, 0.12);

	color: var(--nv-ink);
	font-family: var(--nv-body);
	background: var(--nv-bg);
	-webkit-font-smoothing: antialiased;
}

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

.nv-stays__container {
	width: var(--nv-container);
	margin: 0 auto;
}

/* ---------- shared elements ---------- */

.nv-stays__eyebrow,
.nv-stays__small-eyebrow {
	font-family: var(--nv-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--nv-lime);
	margin: 0 0 18px;
}

.nv-stays__small-eyebrow {
	font-size: 12px;
	color: var(--nv-navy);
	margin-bottom: 14px;
}

.nv-stays__small-eyebrow--on-dark { color: var(--nv-lime); }

.nv-stays__sec-head {
	max-width: 720px;
	margin: 0 0 56px;
}

.nv-stays__sec-head--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.nv-stays__sec-title {
	font-family: var(--nv-display);
	font-weight: 800;
	font-size: clamp(32px, 4.2vw, 56px);
	line-height: 1.02;
	letter-spacing: -0.01em;
	color: var(--nv-navy);
	margin: 0 0 18px;
}

.nv-stays__sec-title--on-dark { color: #fff; }
/* On category pages the whole main is .nv-suite-page, whose `h2 { color: navy }`
   (room.css, specificity 0,1,1) beats the on-dark class — re-assert white. */
.nv-suite-page .nv-stays__sec-title--on-dark { color: #fff; }

.nv-stays__sec-sub {
	font-family: var(--nv-body);
	font-size: 17px;
	line-height: 1.6;
	color: var(--nv-mute);
	max-width: 56ch;
	margin: 0;
}

/* On navy sections (e.g. suite grid head) the muted grey is unreadable — lift it. */
.nv-stays__suites .nv-stays__sec-sub,
.nv-stays__sec-title--on-dark + .nv-stays__sec-sub {
	color: rgba(255, 255, 255, 0.82);
}

.nv-stays__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 26px;
	border-radius: 999px;
	font-family: var(--nv-body);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 0.01em;
	text-decoration: none;
	border: 1.5px solid transparent;
	transition: transform 280ms ease-out, background 200ms ease-out, color 200ms ease-out, border-color 200ms ease-out;
	cursor: pointer;
	background: transparent;
}

.nv-stays__btn:hover { transform: translateY(-1px); }

.nv-stays__btn--primary {
	background: var(--nv-lime);
	color: var(--nv-navy);
}
.nv-stays__btn--primary:hover { background: #b8db4f; }

.nv-stays__btn--ghost {
	background: transparent;
	color: #fff;
	border-color: rgba(255, 255, 255, 0.6);
}
.nv-stays__btn--ghost:hover {
	background: rgba(255, 255, 255, 0.08);
	border-color: #fff;
}

.nv-stays__btn--block { width: 100%; }

/* ---------- 1. hero ---------- */

.nv-stays__hero {
	position: relative;
	min-height: 88vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	color: #fff;
	animation: nvStaysKenBurns 22s ease-in-out infinite alternate;
}

@keyframes nvStaysKenBurns {
	0%   { background-size: 105%; background-position: 50% 50%; }
	100% { background-size: 118%; background-position: 52% 48%; }
}

@media (prefers-reduced-motion: reduce) {
	.nv-stays__hero { animation: none; }
}

.nv-stays__hero-veil {
	position: absolute; inset: 0;
	background:
		linear-gradient(180deg, rgba(2, 46, 61, 0.08) 0%, rgba(2, 46, 61, 0) 22%),
		linear-gradient(0deg,   rgba(2, 46, 61, 0.72) 0%, rgba(2, 46, 61, 0) 60%),
		linear-gradient(95deg,  rgba(2, 46, 61, 0.40) 0%, rgba(2, 46, 61, 0) 55%);
	pointer-events: none;
}

.nv-stays__hero-inner {
	position: relative;
	z-index: 1;
	min-height: 88vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 120px 0 80px;
}

.nv-stays__hero .nv-stays__eyebrow {
	color: var(--nv-lime);
	margin-bottom: 24px;
}

.nv-stays__hero-title {
	font-family: var(--nv-display);
	font-weight: 800;
	font-size: clamp(48px, 7vw, 116px);
	line-height: 0.94;
	letter-spacing: -0.02em;
	color: #fff;
	margin: 0 0 28px;
	max-width: 14ch;
}

.nv-stays__hero-line { display: block; }

.nv-stays__hero-line--italic {
	font-weight: 500;
	font-style: italic;
	color: var(--nv-lime);
}

.nv-stays__hero-sub {
	font-family: var(--nv-body);
	font-size: clamp(15px, 1.2vw, 18px);
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.86);
	max-width: 50ch;
	margin: 0 0 28px;
}

.nv-stays__hero-rule {
	width: 96px;
	height: 2px;
	background: var(--nv-lime);
	margin: 0 0 28px;
}

.nv-stays__hero-ctas {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

/* ---------- 2. stat ticker ---------- */

.nv-stays__ticker {
	background: var(--nv-bg);
	padding: 72px 0;
	border-bottom: 1px solid var(--nv-rule);
}

.nv-stays__ticker-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 48px;
}

.nv-stays__ticker-stat strong {
	display: block;
	font-family: var(--nv-display);
	font-weight: 800;
	font-size: clamp(36px, 7vw, 116px);
	line-height: 1;
	letter-spacing: -0.03em;
	color: var(--nv-navy);
	border-bottom: 2px solid var(--nv-lime);
	padding-bottom: 14px;
	margin-bottom: 14px;
}

.nv-stays__ticker-stat span {
	font-family: var(--nv-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--nv-mute);
}

@media (max-width: 900px) {
	.nv-stays__ticker-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ---------- 3. context paper ---------- */

.nv-stays__context {
	background: var(--nv-surface);
	padding: 100px 0;
}

.nv-stays__context-inner {
	max-width: 680px;
}

.nv-stays__context-text {
	font-family: var(--nv-body);
	font-size: 18px;
	line-height: 1.7;
	color: var(--nv-ink);
	margin: 0 0 24px;
}

.nv-stays__context-text:last-child { margin-bottom: 0; }

/* ---------- 4. suite grid (navy) ---------- */

.nv-stays__suites {
	background: var(--nv-navy);
	padding: 120px 0;
	color: #fff;
}

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

.nv-stays__suite-card {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	border-radius: var(--nv-radius);
	background: #0a3a4d;
}

.nv-stays__suite-card--feature {
	/* transform scale removed 22/05/2026 — all 4 cards equal height */
}

.nv-stays__suite-media {
	position: absolute;
	inset: 0;
	display: block;
	background-size: cover;
	background-position: center;
	text-decoration: none;
	color: #fff;
	transition: background-size 800ms ease-out;
}

.nv-stays__suite-media:hover {
	background-size: 110%;
}

.nv-stays__suite-veil {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(2, 46, 61, 0) 35%, rgba(2, 46, 61, 0.86) 100%);
	pointer-events: none;
}

.nv-stays__suite-index {
	position: absolute;
	top: 22px;
	left: 22px;
	font-family: var(--nv-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--nv-lime);
	background: rgba(2, 46, 61, 0.55);
	padding: 6px 12px;
	border-radius: 999px;
	border: 1px solid var(--nv-lime);
	z-index: 2;
}

.nv-stays__suite-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 28px 26px;
	z-index: 1;
}

.nv-stays__suite-title {
	font-family: var(--nv-display);
	font-weight: 800;
	font-size: clamp(22px, 1.8vw, 28px);
	line-height: 1.1;
	letter-spacing: -0.01em;
	color: #fff;
	margin: 0 0 8px;
}

.nv-stays__suite-meta {
	font-family: var(--nv-body);
	font-size: 13px;
	color: rgba(255, 255, 255, 0.82);
	margin: 0 0 14px;
	letter-spacing: 0.01em;
}

.nv-stays__suite-amen {
	list-style: none;
	margin: 0 0 16px;
	padding: 0;
	display: grid;
	gap: 6px;
}

.nv-stays__suite-amen li {
	font-family: var(--nv-body);
	font-size: 13px;
	color: rgba(255, 255, 255, 0.78);
	display: flex;
	align-items: center;
	gap: 8px;
}

.nv-stays__tick {
	display: inline-flex;
	width: 18px;
	height: 18px;
	align-items: center;
	justify-content: center;
	background: var(--nv-lime);
	color: var(--nv-navy);
	border-radius: 999px;
	flex-shrink: 0;
}

.nv-stays__suite-cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 16px;
	border: 1.5px solid var(--nv-lime);
	border-radius: 999px;
	color: var(--nv-lime);
	font-family: var(--nv-body);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.01em;
	transition: background 200ms ease-out, color 200ms ease-out;
}

.nv-stays__suite-media:hover .nv-stays__suite-cta {
	background: var(--nv-lime);
	color: var(--nv-navy);
}

@media (max-width: 1100px) {
	.nv-stays__suite-grid { grid-template-columns: repeat(2, 1fr); }
	.nv-stays__suite-card--feature { transform: none; }
}

@media (max-width: 720px) {
	.nv-stays__suite-grid { grid-template-columns: 1fr; }
	.nv-stays__suites { padding: 80px 0; }
}

.nv-stays__empty {
	color: rgba(255, 255, 255, 0.7);
	font-family: var(--nv-body);
	font-size: 16px;
}

/* ---------- 5. why-stay 3-card (cream) ---------- */

.nv-stays__why {
	background: var(--nv-bg);
	padding: 120px 0;
}

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

.nv-stays__why-card {
	background: var(--nv-surface);
	padding: 40px 32px;
	border-radius: var(--nv-radius);
	border: 1px solid var(--nv-rule);
	transition: transform 600ms ease-out, box-shadow 600ms ease-out;
}

.nv-stays__why-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--nv-shadow);
}

.nv-stays__why-icon {
	display: inline-flex;
	width: 56px;
	height: 56px;
	align-items: center;
	justify-content: center;
	background: var(--nv-lime);
	color: var(--nv-navy);
	border-radius: 12px;
	margin: 0 0 24px;
}

.nv-stays__why-card h3 {
	font-family: var(--nv-display);
	font-weight: 800;
	font-size: 22px;
	line-height: 1.2;
	color: var(--nv-navy);
	margin: 0 0 12px;
}

.nv-stays__why-card p {
	font-family: var(--nv-body);
	font-size: 15px;
	line-height: 1.6;
	color: var(--nv-mute);
	margin: 0;
}

@media (max-width: 900px) {
	.nv-stays__why-grid { grid-template-columns: 1fr; }
}

/* ---------- 6. inclusions strip (navy 8-icon) ---------- */

.nv-stays__inclusions {
	background: var(--nv-navy);
	color: #fff;
	padding: 100px 0;
}

.nv-stays__inclusion-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(8, 1fr);
	gap: 24px;
}

.nv-stays__inclusion-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	text-align: center;
}

.nv-stays__inclusion-icon {
	display: inline-flex;
	width: 56px;
	height: 56px;
	align-items: center;
	justify-content: center;
	color: var(--nv-lime);
	border: 1.5px solid var(--nv-lime);
	border-radius: 999px;
}

.nv-stays__inclusion-label {
	font-family: var(--nv-body);
	font-size: 13px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 1100px) {
	.nv-stays__inclusion-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 640px) {
	.nv-stays__inclusion-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- 7. stay + event combo (paper) ---------- */

.nv-stays__combo {
	background: var(--nv-surface);
	padding: 100px 0;
	border-top: 1px solid var(--nv-rule);
	border-bottom: 1px solid var(--nv-rule);
}

.nv-stays__combo-inner {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 56px;
	align-items: center;
}

.nv-stays__combo-text {
	font-family: var(--nv-body);
	font-size: 17px;
	line-height: 1.65;
	color: var(--nv-mute);
	margin: 0;
	max-width: 50ch;
}

.nv-stays__combo-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.nv-stays__combo-actions .nv-stays__btn { justify-content: center; }
.nv-stays__combo-actions .nv-stays__btn--ghost {
	color: var(--nv-navy);
	border-color: var(--nv-navy);
}
.nv-stays__combo-actions .nv-stays__btn--ghost:hover {
	background: var(--nv-navy);
	color: #fff;
}

@media (max-width: 900px) {
	.nv-stays__combo-inner { grid-template-columns: 1fr; }
}

/* ---------- 8. location + drive (cream) ---------- */

.nv-stays__location {
	background: var(--nv-bg);
	padding: 120px 0;
}

.nv-stays__location-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 32px;
}

.nv-stays__location-map {
	aspect-ratio: 16 / 11;
	border-radius: var(--nv-radius);
	overflow: hidden;
	background: var(--nv-surface);
	border: 1px solid var(--nv-rule);
}

.nv-stays__drive-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 18px;
}

.nv-stays__drive-list li {
	background: var(--nv-surface);
	border: 1px solid var(--nv-rule);
	border-left: 3px solid var(--nv-lime);
	padding: 22px 24px;
	border-radius: var(--nv-radius);
}

.nv-stays__drive-list strong {
	display: block;
	font-family: var(--nv-display);
	font-weight: 800;
	font-size: 22px;
	color: var(--nv-navy);
	margin: 0 0 6px;
}

.nv-stays__drive-list span {
	font-family: var(--nv-body);
	font-size: 14px;
	color: var(--nv-mute);
}

@media (max-width: 900px) {
	.nv-stays__location-grid { grid-template-columns: 1fr; }
}

/* ---------- 9. FAQ ---------- */

.nv-stays__faq {
	background: var(--nv-surface);
	padding: 100px 0;
}

.nv-stays__faq-list {
	display: grid;
	gap: 12px;
	max-width: 880px;
}

.nv-stays__faq-item {
	background: var(--nv-bg);
	border: 1px solid var(--nv-rule);
	border-radius: var(--nv-radius);
	padding: 0;
	overflow: hidden;
	transition: border-color 200ms ease-out;
}

.nv-stays__faq-item[open] {
	border-color: var(--nv-lime);
}

.nv-stays__faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 22px 28px;
	font-family: var(--nv-display);
	font-weight: 500;
	font-size: 18px;
	color: var(--nv-navy);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.nv-stays__faq-item summary::-webkit-details-marker { display: none; }

.nv-stays__faq-chev {
	display: inline-flex;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
	background: var(--nv-lime);
	color: var(--nv-navy);
	border-radius: 999px;
	font-size: 18px;
	font-weight: 800;
	flex-shrink: 0;
	transition: transform 300ms ease-out;
}

.nv-stays__faq-item[open] .nv-stays__faq-chev {
	transform: rotate(45deg);
}

.nv-stays__faq-item p {
	margin: 0;
	padding: 0 28px 24px;
	font-family: var(--nv-body);
	font-size: 15px;
	line-height: 1.65;
	color: var(--nv-mute);
}

/* ---------- 10. enquire (navy) ---------- */

.nv-stays__enquire {
	background: var(--nv-navy);
	color: #fff;
	padding: 120px 0;
}

.nv-stays__enquire-inner {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: 64px;
	align-items: start;
}

.nv-stays__enquire-text {
	font-family: var(--nv-body);
	font-size: 16px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.82);
	max-width: 38ch;
	margin: 0 0 24px;
}

.nv-stays__enquire-direct {
	font-family: var(--nv-body);
	font-size: 15px;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}

.nv-stays__enquire-direct a {
	color: var(--nv-lime);
	text-decoration: none;
	font-weight: 600;
}

.nv-stays__form {
	background: var(--nv-surface);
	border-radius: var(--nv-radius);
	padding: 36px;
	display: grid;
	gap: 18px;
	position: relative;
}

.nv-stays__form label {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.nv-stays__form label > span {
	font-family: var(--nv-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--nv-mute);
}

.nv-stays__form input,
.nv-stays__form select,
.nv-stays__form textarea {
	font-family: var(--nv-body);
	font-size: 15px;
	color: var(--nv-ink);
	background: transparent;
	border: none;
	border-bottom: 1.5px solid var(--nv-rule);
	padding: 8px 0 10px;
	width: 100%;
	transition: border-color 180ms ease-out;
}

.nv-stays__form input:focus,
.nv-stays__form select:focus,
.nv-stays__form textarea:focus {
	outline: none;
	border-bottom-color: var(--nv-lime);
}

.nv-stays__form textarea {
	resize: vertical;
	min-height: 80px;
}

.nv-stays__form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.nv-stays__form-foot {
	font-family: var(--nv-body);
	font-size: 12px;
	color: var(--nv-mute);
	margin: 0;
	text-align: center;
}

@media (max-width: 900px) {
	.nv-stays__enquire-inner { grid-template-columns: 1fr; gap: 36px; }
	.nv-stays__form { padding: 28px; }
}

/* ---------- 11. crosslink (paper) ---------- */

.nv-stays__crosslink {
	background: var(--nv-surface);
	padding: 100px 0;
	border-top: 1px solid var(--nv-rule);
}

.nv-stays__crosslink-inner {
	display: grid;
	grid-template-columns: 1.4fr auto;
	gap: 56px;
	align-items: center;
}

.nv-stays__crosslink-title {
	font-family: var(--nv-display);
	font-weight: 800;
	font-size: clamp(28px, 3vw, 40px);
	line-height: 1.06;
	color: var(--nv-navy);
	margin: 0 0 14px;
}

.nv-stays__crosslink-text {
	font-family: var(--nv-body);
	font-size: 16px;
	line-height: 1.65;
	color: var(--nv-mute);
	margin: 0;
	max-width: 56ch;
}

@media (max-width: 900px) {
	.nv-stays__crosslink-inner { grid-template-columns: 1fr; }
}

/* ---------- responsive overrides ---------- */

@media (max-width: 720px) {
	/* Ken Burns animates background-size to a width % (height auto), which on a
	   tall mobile hero leaves the landscape photo too short to cover → white gap.
	   Drop the animation on mobile so background-size stays `cover` (full height). */
	.nv-stays__hero { animation: none; background-size: cover; }
	.nv-stays__hero-inner { padding: 100px 0 60px; }
	.nv-stays__context,
	.nv-stays__why,
	.nv-stays__inclusions,
	.nv-stays__combo,
	.nv-stays__location,
	.nv-stays__faq,
	.nv-stays__enquire,
	.nv-stays__crosslink { padding: 70px 0; }
}


/* =========================================================================
   COMPACT v2 — modern OYO/booking.com style overrides (22/05/2026)
   Scope: .nv-stays--compact wrapper only.
   ========================================================================= */

/* Hero — tighter band, smaller title */
.nv-stays--compact .nv-stays__hero { min-height: 62vh; padding: 0; }
.nv-stays--compact .nv-stays__hero-veil { background: linear-gradient(180deg, rgba(2,46,61,0.15) 0%, rgba(2,46,61,0.55) 65%, rgba(2,46,61,0.78) 100%); }
.nv-stays--compact .nv-stays__hero-title { font-size: clamp(34px, 5.2vw, 64px); line-height: 1.02; }
.nv-stays--compact .nv-stays__hero-line--italic { font-style: italic; color: #A6CE39; }
.nv-stays--compact .nv-stays__hero-sub { font-size: 14px; max-width: 56ch; opacity: 0.88; }
.nv-stays--compact .nv-stays__hero-rule { width: 56px; height: 2px; background: #A6CE39; margin: 18px 0 22px; }
.nv-stays--compact .nv-stays__hero-ctas .nv-stays__btn { padding: 11px 22px; font-size: 12px; }

/* Ticker — compact card-strip */
.nv-stays--compact .nv-stays__ticker { padding: 22px 0; background: #fff; border-bottom: 1px solid rgba(2,46,61,0.08); }
.nv-stays--compact .nv-stays__ticker-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.nv-stays--compact .nv-stays__ticker-stat { padding: 8px 18px; border-right: 1px solid rgba(2,46,61,0.08); text-align: left; }
.nv-stays--compact .nv-stays__ticker-stat:last-child { border-right: 0; }
.nv-stays--compact .nv-stays__ticker-stat strong { font: 900 26px "Bricolage Grotesque", sans-serif; color: #022E3D; letter-spacing: -0.01em; display: block; line-height: 1; }
.nv-stays--compact .nv-stays__ticker-stat span { display: block; font: 500 10px "Open Sans", sans-serif; color: rgba(2,46,61,0.55); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px; }
@media (max-width: 640px) {
	.nv-stays--compact .nv-stays__ticker-grid { grid-template-columns: 1fr 1fr; }
	.nv-stays--compact .nv-stays__ticker-stat:nth-child(2) { border-right: 0; }
	.nv-stays--compact .nv-stays__ticker-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(2,46,61,0.08); padding-bottom: 14px; margin-bottom: 14px; }
}

/* Context — smaller text */
.nv-stays--compact .nv-stays__context { padding: 56px 0; }
.nv-stays--compact .nv-stays__context-text { font-size: 14px; line-height: 1.7; }

/* Suites grid — OYO booking cards */
.nv-stays--compact .nv-stays__suites { padding: 56px 0; }
.nv-stays--compact .nv-stays__sec-head { margin-bottom: 28px; }
.nv-stays--compact .nv-stays__sec-title { font-size: clamp(24px, 3vw, 36px); line-height: 1.1; }
.nv-stays--compact .nv-stays__sec-sub { font-size: 14px; margin-top: 8px; }
.nv-stays--compact .nv-stays__suite-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.nv-stays--compact .nv-stays__suite-card { aspect-ratio: auto; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(2,46,61,0.08); background: #0a3a4d; border: 1px solid rgba(2,46,61,0.08); transition: box-shadow 200ms, transform 200ms; }
.nv-stays--compact .nv-stays__suite-card:hover { box-shadow: 0 12px 28px rgba(2,46,61,0.16); transform: translateY(-2px); }
.nv-stays--compact .nv-stays__suite-card--feature { grid-column: auto; }
.nv-stays--compact .nv-stays__suite-media { display: block; height: 360px; position: relative; overflow: hidden; background-color: #0a3a4d; background-size: cover; background-position: center; }
.nv-stays--compact .nv-stays__suite-index { position: absolute; top: 12px; left: 12px; padding: 4px 10px; background: rgba(255,255,255,0.92); color: #022E3D; font: 800 10px "Open Sans", sans-serif; letter-spacing: 0.18em; text-transform: uppercase; border-radius: 6px; z-index: 2; }
.nv-stays--compact .nv-stays__suite-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(2,46,61,0) 30%, rgba(2,46,61,0.92) 100%); }
.nv-stays--compact .nv-stays__suite-overlay { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 18px 16px; color: #fff; z-index: 2; }
.nv-stays--compact .nv-stays__suite-title { font: 800 20px "Bricolage Grotesque", sans-serif; color: #fff; margin: 0 0 6px; letter-spacing: -0.01em; }
.nv-stays--compact .nv-stays__suite-meta { font: 600 12px "Open Sans", sans-serif; color: rgba(255,255,255,0.86); margin: 0 0 10px; }
.nv-stays--compact .nv-stays__suite-amen { display: none; }
.nv-stays--compact .nv-stays__suite-cta { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; background: #A6CE39; color: #022E3D; border-radius: 999px; font: 800 11px "Open Sans", sans-serif; letter-spacing: 0.06em; text-transform: uppercase; }
.nv-stays--compact .nv-stays__suite-cta svg { stroke: #022E3D; }

/* Why — icon-row */
.nv-stays--compact .nv-stays__why { padding: 56px 0; background: #fff; }
.nv-stays--compact .nv-stays__why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid rgba(2,46,61,0.08); border-radius: 12px; overflow: hidden; }
.nv-stays--compact .nv-stays__why-card { background: #fff; padding: 22px; border: 0; border-right: 1px solid rgba(2,46,61,0.08); text-align: left; }
.nv-stays--compact .nv-stays__why-card:last-child { border-right: 0; }
.nv-stays--compact .nv-stays__why-icon { display: inline-flex; width: 40px; height: 40px; border-radius: 10px; background: #A6CE39; color: #022E3D; align-items: center; justify-content: center; margin-bottom: 12px; }
.nv-stays--compact .nv-stays__why-card h3 { font: 800 15px "Bricolage Grotesque", sans-serif; color: #022E3D; margin: 0 0 6px; }
.nv-stays--compact .nv-stays__why-card p { font: 400 13px/1.55 "Open Sans", sans-serif; color: rgba(2,46,61,0.62); margin: 0; }
@media (max-width: 800px) {
	.nv-stays--compact .nv-stays__why-grid { grid-template-columns: 1fr; }
	.nv-stays--compact .nv-stays__why-card { border-right: 0; border-bottom: 1px solid rgba(2,46,61,0.08); }
	.nv-stays--compact .nv-stays__why-card:last-child { border-bottom: 0; }
}

/* Inclusions — navy band chip strip */
.nv-stays--compact .nv-stays__inclusions { padding: 36px 0; background: #022E3D; }
.nv-stays--compact .nv-stays__inclusions .nv-stays__sec-head { margin-bottom: 22px; }
.nv-stays--compact .nv-stays__inclusion-grid { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
@media (max-width: 900px) { .nv-stays--compact .nv-stays__inclusion-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .nv-stays--compact .nv-stays__inclusion-grid { grid-template-columns: repeat(2, 1fr); } }
.nv-stays--compact .nv-stays__inclusion-item { background: rgba(255,255,255,0.06); border: 1px solid rgba(166,206,57,0.24); border-radius: 8px; padding: 12px; display: flex; align-items: center; gap: 10px; transition: background 160ms; }
.nv-stays--compact .nv-stays__inclusion-item:hover { background: rgba(166,206,57,0.12); }
.nv-stays--compact .nv-stays__inclusion-icon { width: 28px; height: 28px; background: #A6CE39; color: #022E3D; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.nv-stays--compact .nv-stays__inclusion-icon svg { width: 14px; height: 14px; }
.nv-stays--compact .nv-stays__inclusion-label { font: 600 12px "Open Sans", sans-serif; color: #fff; }

/* Combo — slim CTA band */
.nv-stays--compact .nv-stays__combo { padding: 44px 0; background: #FBFAF7; }
.nv-stays--compact .nv-stays__combo-inner { display: grid; grid-template-columns: 1.5fr auto; gap: 28px; align-items: center; }
.nv-stays--compact .nv-stays__combo-text { font-size: 14px; margin-top: 8px; }
@media (max-width: 720px) { .nv-stays--compact .nv-stays__combo-inner { grid-template-columns: 1fr; } }

/* Location — map + drive list */
.nv-stays--compact .nv-stays__location { padding: 56px 0; }
.nv-stays--compact .nv-stays__location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.nv-stays--compact .nv-stays__location-map { border-radius: 10px; overflow: hidden; height: 320px; border: 1px solid rgba(2,46,61,0.08); }
.nv-stays--compact .nv-stays__drive-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1px; background: rgba(2,46,61,0.08); border: 1px solid rgba(2,46,61,0.08); border-radius: 10px; overflow: hidden; }
.nv-stays--compact .nv-stays__drive-list li { background: #fff; padding: 14px 18px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 12px; align-items: center; }
.nv-stays--compact .nv-stays__drive-list strong { font: 700 13px "Open Sans", sans-serif; color: #022E3D; }
.nv-stays--compact .nv-stays__drive-list span { font: 400 12px "Open Sans", sans-serif; color: rgba(2,46,61,0.62); }
@media (max-width: 720px) { .nv-stays--compact .nv-stays__location-grid { grid-template-columns: 1fr; } }

/* FAQ accordion */
/* FAQ — mirror Nivanta home `.nv-faq` style (border-only list, lime +/− toggle) */
.nv-stays--compact .nv-stays__faq { padding: 80px 0; background: #FBFAF7; }
.nv-stays--compact .nv-stays__faq .nv-stays__container { width: 90vw; max-width: 1440px; }
.nv-stays--compact .nv-stays__faq-list { max-width: none; }
.nv-stays--compact .nv-stays__faq-list { display: block; margin-top: 36px; border-top: 1px solid rgba(2,46,61,0.08); }
.nv-stays--compact details.nv-stays__faq-item { background: transparent; border: 0; border-bottom: 1px solid rgba(2,46,61,0.08); border-radius: 0; padding: 22px 0; }
.nv-stays--compact details.nv-stays__faq-item summary { padding: 0; background: transparent; font: 700 17px "Bricolage Grotesque", sans-serif; color: #022E3D; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; list-style: none; }
.nv-stays--compact details.nv-stays__faq-item summary::-webkit-details-marker { display: none; }
/* Hide chev span, use ::after for +/− glyph */
.nv-stays--compact .nv-stays__faq-chev { display: none; }
.nv-stays--compact details.nv-stays__faq-item summary::after { content: '+'; font: 500 24px/1 "Bricolage Grotesque", sans-serif; color: #A6CE39; }
.nv-stays--compact details.nv-stays__faq-item[open] summary::after { content: '\2212'; }
.nv-stays--compact details.nv-stays__faq-item p { padding: 0; margin: 14px 0 0; color: rgba(2,46,61,0.62); font: 400 15px/1.65 "Open Sans", sans-serif; max-width: 72ch; }

/* Enquire — compact form on navy band */
.nv-stays--compact .nv-stays__enquire { padding: 56px 0; }
.nv-stays--compact .nv-stays__enquire-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 32px; align-items: start; }
.nv-stays--compact .nv-stays__enquire-text { font-size: 14px; }
.nv-stays--compact .nv-stays__form { background: #fff; padding: 22px; border-radius: 12px; box-shadow: 0 8px 22px rgba(2,46,61,0.08); display: grid; gap: 10px; }
.nv-stays--compact .nv-stays__form label { display: flex; flex-direction: column; gap: 4px; }
.nv-stays--compact .nv-stays__form label > span { font: 700 9px "Open Sans", sans-serif; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(2,46,61,0.55); }
.nv-stays--compact .nv-stays__form input,
.nv-stays--compact .nv-stays__form select,
.nv-stays--compact .nv-stays__form textarea { padding: 9px 11px; border: 1px solid rgba(2,46,61,0.18); border-radius: 7px; font: 500 13px "Open Sans", sans-serif; color: #022E3D; background: #FBFAF7; width: 100%; }
.nv-stays--compact .nv-stays__form input:focus,
.nv-stays--compact .nv-stays__form select:focus,
.nv-stays--compact .nv-stays__form textarea:focus { outline: none; border-color: #A6CE39; box-shadow: 0 0 0 3px rgba(166,206,57,0.18); }
.nv-stays--compact .nv-stays__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.nv-stays--compact .nv-stays__btn--block { width: 100%; }
.nv-stays--compact .nv-stays__form-foot { font: 400 11px "Open Sans", sans-serif; color: rgba(2,46,61,0.55); margin: 0; text-align: center; }
@media (max-width: 860px) { .nv-stays--compact .nv-stays__enquire-inner { grid-template-columns: 1fr; } }

/* Crosslink */
.nv-stays--compact .nv-stays__crosslink { padding: 44px 0; }
.nv-stays--compact .nv-stays__crosslink-inner { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; }
.nv-stays--compact .nv-stays__crosslink-title { font-size: clamp(22px, 2.4vw, 32px); margin: 8px 0; }
.nv-stays--compact .nv-stays__crosslink-text { font-size: 13px; max-width: 56ch; }
@media (max-width: 720px) { .nv-stays--compact .nv-stays__crosslink-inner { grid-template-columns: 1fr; } }


/* Mobile overflow guard (29/05/2026): map iframe constrained to its box. */
.nv-stays__location-map iframe { width: 100%; height: 100%; border: 0; display: block; max-width: 100%; }
.nv-stays iframe, .nv-stays img, .nv-stays svg { max-width: 100%; }

/* Mobile map overflow hard-fix (29/05/2026): grid child + iframe bounded to col. */
.nv-stays__location-grid { min-width: 0; }
.nv-stays__location-grid > * { min-width: 0; }
.nv-stays__location-map { width: 100%; max-width: 100%; }
@media (max-width: 720px) {
	.nv-stays__location-grid { grid-template-columns: 1fr; }
	.nv-stays__location-map { aspect-ratio: 16 / 12; height: auto; }
}

/* Room category groups — added 2026-06-15 (15-room categorized catalog rebuild) */
.nv-stays__cat-group { margin-bottom: 56px; }
.nv-stays__cat-group:last-child { margin-bottom: 0; }
.nv-stays__cat-head {
	display: flex; align-items: baseline; gap: 16px;
	margin: 0 0 22px; padding-bottom: 14px;
	border-bottom: 1px solid rgba(255,255,255,0.16);
}
.nv-stays__cat-name {
	font-family: var(--nv-display); font-weight: 800;
	font-size: clamp(1.5rem, 3vw, 2.1rem); color: #fff;
	margin: 0; letter-spacing: -0.01em; line-height: 1.1;
}
.nv-stays__cat-count {
	font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em;
	color: var(--nv-lime); font-weight: 700; white-space: nowrap;
}
@media (max-width: 600px) { .nv-stays__cat-head { gap: 10px; } }


/* ====== Multi-room booking cart + per-card stepper (29/06/2026) ====== */
.nv-stays__suite-book { display:flex; align-items:center; justify-content:space-between; gap:12px; padding:12px 14px; background:#fff; border:1px solid #e7ebea; border-top:0; border-radius:0 0 14px 14px; }
.nv-stays__suite-card { display:flex; flex-direction:column; }
.nv-stays__suite-rate { font:700 14px/1.2 inherit; color:#022E3D; }
.nv-stays__suite-rate small { display:block; font-weight:500; font-size:11px; color:#7a8784; }
.nv-stays__qty { display:inline-flex; align-items:center; border:1px solid #d7dedb; border-radius:999px; overflow:hidden; }
.nv-stays__qty-btn { width:34px; height:34px; border:0; background:#f4f7f5; color:#022E3D; font-size:18px; line-height:1; cursor:pointer; transition:background .15s; }
.nv-stays__qty-btn:hover { background:#A6CE39; }
.nv-stays__qty-val { min-width:30px; text-align:center; font-weight:700; color:#022E3D; }
.nv-stays__suite-book.is-active { box-shadow:inset 0 0 0 2px #A6CE39; }
.nv-stays__book-form .nv-stays__cart { background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.15); border-radius:14px; padding:16px; margin-bottom:8px; }
.nv-stays__cart-empty { margin:0; color:rgba(255,255,255,0.7); font-size:14px; }
.nv-stays__cart-list { list-style:none; margin:0 0 12px; padding:0; display:flex; flex-direction:column; gap:8px; }
.nv-stays__cart-item { display:flex; align-items:baseline; gap:8px; color:#fff; font-size:14px; }
.nv-stays__cart-qty { font-weight:800; color:#A6CE39; }
.nv-stays__cart-name { flex:1 1 auto; min-width:0; }
.nv-stays__cart-sub { color:rgba(255,255,255,0.75); white-space:nowrap; }
.nv-stays__cart-totals { border-top:1px solid rgba(255,255,255,0.15); padding-top:12px; display:flex; flex-direction:column; gap:6px; }
.nv-stays__cart-line { display:flex; justify-content:space-between; color:rgba(255,255,255,0.85); font-size:14px; }
.nv-stays__cart-grand { font-weight:800; color:#fff; font-size:16px; }
.nv-stays__cart-adv { color:#A6CE39; font-weight:700; }
.nv-stays__form-foot--ok  { color:#A6CE39 !important; }
.nv-stays__form-foot--err { color:#ffb4a8 !important; }

@media (max-width:560px){
  .nv-stays__suite-book { flex-wrap:wrap; gap:8px; }
  .nv-stays__suite-rate { flex:1 1 100%; }
  .nv-stays__qty { width:100%; justify-content:space-between; }
}

/* ===== Sticky "Book" bar on the rooms archive (30 Jun) ===== */
.nv-stays__cartbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 18px; background: #022E3D; color: #fff; box-shadow: 0 -4px 20px rgba(0,0,0,.28); }
.nv-stays__cartbar-info { font-size: 15px; }
.nv-stays__cartbar-info strong { color: #A6CE39; }
.nv-stays__cartbar-btn { background: #A6CE39; color: #022E3D; border: 0; border-radius: 999px; padding: 11px 26px; font-weight: 700; font-size: 15px; cursor: pointer; transition: background .15s; white-space: nowrap; }
.nv-stays__cartbar-btn:hover { background: #93b833; }
@media (max-width: 560px){ .nv-stays__cartbar { padding: 10px 13px; gap: 10px; } .nv-stays__cartbar-info { font-size: 13px; } .nv-stays__cartbar-btn { padding: 10px 18px; font-size: 14px; } }

/* ===== ixigo-style room rows (30 Jun) ===== */
.nv-stays__room-list { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.nv-stays__room-row { position: relative; display: grid; grid-template-columns: 240px 1fr 220px; background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 14px rgba(0,0,0,.14); }
.nv-stays__room-photo { position: relative; background: #d8ded9 center/cover no-repeat; min-height: 185px; text-decoration: none; display: block; }
.nv-stays__room-cat { position: absolute; left: 12px; top: 12px; background: rgba(2,46,61,.85); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.nv-stays__room-info { padding: 18px 20px; display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.nv-stays__room-name { margin: 0; font-size: 20px; color: #022E3D; }
.nv-stays__room-name a { color: inherit; text-decoration: none; transition: color .15s ease; }
.nv-stays__room-name a:hover, .nv-stays__room-name a:focus-visible { color: #6ACAD1; }
/* Whole card (image + content box) clickable -> stretch the title link over the row.
   Interactive controls (Reserve, View details) raised above the hitbox. */
.nv-stays__room-name a::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.nv-stays__room-details,
.nv-stays__room-rate,
.nv-stays__suite-book,
.nv-stays__room-reserve { position: relative; z-index: 2; }
.nv-stays__room-specs { display: flex; flex-wrap: wrap; gap: 14px; margin: 0; font-size: 13px; color: #5a6b62; }
.nv-stays__room-specs span { display: inline-flex; align-items: center; gap: 5px; }
.nv-stays__room-specs svg { color: #6ACAD1; }
.nv-stays__room-amen { list-style: none; margin: 4px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 16px; }
.nv-stays__room-amen li { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: #42504f; }
.nv-stays__room-amen .nv-stays__tick { display: inline-flex; color: #A6CE39; }
.nv-stays__room-details { margin-top: auto; display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 700; color: #6ACAD1; text-decoration: none; }
.nv-stays__room-details:hover { text-decoration: underline; }
.nv-stays__room-rate { padding: 18px 20px; display: flex; flex-direction: column; align-items: flex-end; justify-content: center; gap: 4px; border-left: 1px solid #eef1f0; text-align: right; }
.nv-stays__room-price { font-size: 24px; font-weight: 800; color: #022E3D; line-height: 1; }
.nv-stays__room-price small { font-size: 13px; font-weight: 500; color: #7a8784; }
.nv-stays__room-tax { margin: 2px 0 10px; font-size: 11px; color: #7a8784; }
.nv-stays__room-rate .nv-stays__suite-book { padding: 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; justify-content: flex-end; display: flex; align-items: center; }
.nv-stays__room-reserve { display: inline-block; background: #A6CE39; color: #022E3D; border: 2px solid #A6CE39; border-radius: 999px; padding: 9px 28px; font-weight: 700; font-size: 15px; cursor: pointer; text-decoration: none; transition: background .15s, color .15s, border-color .15s; }
.nv-stays__room-reserve:hover { background: #93b833; border-color: #93b833; }
.nv-stays__room-reserve.is-reserved { background: transparent; color: #4CADE2; border-color: #4CADE2; }
.nv-stays__room-reserve.is-reserved:hover { background: rgba(76, 173, 226, 0.08); border-color: #4CADE2; }
.nv-stays__suite-book:not(.is-active) .nv-stays__qty { display: none; }
@media (max-width: 760px) {
	.nv-stays__room-row { grid-template-columns: 1fr; }
	.nv-stays__room-photo { min-height: 165px; }
	.nv-stays__room-rate { flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: space-between; text-align: left; border-left: 0; border-top: 1px solid #eef1f0; }
	.nv-stays__room-tax { width: 100%; order: 3; margin: 0; }
}

/* Booking summary readable on light form card — 2026-06-30 (match Check-in label navy) */
.nv-stays--compact .nv-stays__book-form .nv-stays__cart { background: rgba(2,46,61,0.04); border-color: rgba(2,46,61,0.12); }
.nv-stays--compact .nv-stays__book-form .nv-stays__cart-empty { color: rgba(2,46,61,0.55); }
.nv-stays--compact .nv-stays__book-form .nv-stays__cart-item { color: #022E3D; }
.nv-stays--compact .nv-stays__book-form .nv-stays__cart-sub { color: rgba(2,46,61,0.6); }
.nv-stays--compact .nv-stays__book-form .nv-stays__cart-totals { border-top-color: rgba(2,46,61,0.12); }
.nv-stays--compact .nv-stays__book-form .nv-stays__cart-line { color: rgba(2,46,61,0.7); }
.nv-stays--compact .nv-stays__book-form .nv-stays__cart-grand { color: #022E3D; }

/* Booking form — field hint + inline validation errors (2026-07-01) */
.nv-stays__field-hint { display: block; margin-top: 6px; font-size: 12px; line-height: 1.35; color: rgba(2, 46, 61, 0.55); }
.nv-stays__field-err { display: block; margin-top: 5px; font-size: 12.5px; font-weight: 600; line-height: 1.35; color: #C8202F; }
.nv-stays__book-form input.nv-stays__input--error,
.nv-stays__book-form textarea.nv-stays__input--error { border-color: #C8202F; box-shadow: 0 0 0 2px rgba(200, 32, 47, 0.12); }

/* ============================================================
   Level-1 category cards + category page (taxonomy) — 2026-06-30
   ============================================================ */
.nv-stays__cat-cards { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.nv-stays__cat-card { display:flex; flex-direction:column; background:#fff; border-radius:16px; overflow:hidden; text-decoration:none; color:var(--nv-ink,#022E3D); box-shadow:0 10px 30px rgba(2,46,61,0.18); transition:transform .18s ease, box-shadow .18s ease; }
.nv-stays__cat-card:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(2,46,61,0.28); }
.nv-stays__cat-card-media { position:relative; display:block; aspect-ratio:16/10; background:#0b3a4a center/cover no-repeat; }
.nv-stays__cat-card-count { position:absolute; top:12px; left:12px; background:rgba(2,46,61,0.82); color:#fff; font:700 11px "Open Sans",sans-serif; letter-spacing:.06em; text-transform:uppercase; padding:5px 10px; border-radius:999px; }
.nv-stays__cat-card-body { display:flex; flex-direction:column; gap:12px; padding:20px 22px 22px; flex:1 1 auto; }
.nv-stays__cat-card-name { font-family:var(--nv-display,'Bricolage Grotesque',sans-serif); font-weight:800; font-size:clamp(1.4rem,2.4vw,1.9rem); line-height:1.05; color:var(--nv-navy,#022E3D); }
.nv-stays__cat-card-amen { display:flex; flex-direction:column; gap:6px; }
.nv-stays__cat-card-amen > span { display:flex; align-items:center; gap:8px; font-size:14px; color:rgba(2,46,61,0.78); }
.nv-stays__cat-card-amen .nv-stays__tick { color:var(--nv-lime,#A6CE39); display:inline-flex; }
.nv-stays__cat-card-foot { margin-top:auto; display:flex; align-items:center; justify-content:space-between; gap:12px; padding-top:14px; border-top:1px solid rgba(2,46,61,0.10); }
.nv-stays__cat-card-price { font-family:var(--nv-display,sans-serif); font-weight:800; font-size:1.15rem; color:var(--nv-navy,#022E3D); white-space:nowrap; }
.nv-stays__cat-card-price small { font-weight:600; font-size:.7em; color:rgba(2,46,61,0.6); }
.nv-stays__cat-card-cta { display:inline-flex; align-items:center; gap:6px; font-weight:700; font-size:14px; color:#6ACAD1; white-space:nowrap; }
@media (max-width:760px){ .nv-stays__cat-cards{ grid-template-columns:1fr; gap:18px; } }

/* category page section spacing */
.nv-catpage__rooms { padding:44px 0; }
.nv-catpage__rooms .nv-stays__sec-head { margin-bottom:22px; }
.nv-catpage__facilities { padding:8px 0 36px; }

/* Category page — sticky booking sidebar beside room list (01/07/2026) */
.nv-catpage__select-grid { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: 28px; align-items: start; }
.nv-catpage__book { position: sticky; top: 100px; align-self: start; }
.nv-catpage__book > .nv-stays__small-eyebrow { margin: 0 0 4px; }
.nv-catpage__book-title { font-size: 20px; line-height: 1.15; margin: 0 0 14px; }
.nv-catpage__book-note { font: 400 12px/1.5 "Open Sans", sans-serif; color: rgba(2,46,61,0.6); margin: 12px 2px 0; }
@media (max-width: 1100px) {
	.nv-catpage__select-grid { grid-template-columns: 1fr; gap: 32px; }
	.nv-catpage__book { position: static; }
}

/* Category sticky sidebar — stack paired fields on phones (02/07/2026) */
@media (max-width: 480px) { .nv-stays--compact .nv-stays__book-form .nv-stays__form-row { grid-template-columns: 1fr; } }
