:root {
	--color-green-deep: #142e24;
	--color-green: #506f3f;
	--color-green-soft: #e7eddf;
	--color-ivory: #fcfaf5;
	--color-sand: #f1eadc;
	--color-white: #ffffff;
	--color-gold: #d8b85e;
	--color-text: #1b241e;
	--color-muted: #687064;
	--color-border: #ded4c2;
	--shadow-soft: 0 20px 50px rgba(32, 44, 32, 0.1);
	--shadow-card: 0 14px 34px rgba(32, 44, 32, 0.09);
	--radius: 8px;
	--container-max-width: 1160px;
	--section-space: clamp(4.25rem, 7vw, 7rem);
	--site-header-height: 72px;
	--site-header-height-mobile: 64px;
	--room-modal-header-offset: var(--site-header-height);
	--room-modal-bottom-offset: 0px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	scroll-behavior: smooth;
	scroll-padding-top: var(--site-header-height);
}

body {
	margin: 0;
	padding-top: var(--site-header-height);
	padding-bottom: 0;
	overflow-x: hidden;
	background: var(--color-ivory);
	color: var(--color-text);
	font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

a {
	color: var(--color-green-deep);
	text-decoration-thickness: 0.08em;
	text-underline-offset: 0.22em;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

figure {
	margin: 0;
}

h1,
h2,
h3 {
	margin: 0;
	color: var(--color-green-deep);
	font-family: Georgia, "Times New Roman", serif;
	font-weight: 500;
	line-height: 1.08;
}

h1 {
	font-size: clamp(2.9rem, 5.2vw, 4.75rem);
}

h2 {
	font-size: clamp(2rem, 3.1vw, 2.85rem);
}

h3 {
	font-size: 1.22rem;
}

p {
	margin: 0 0 1rem;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	z-index: 100000;
	top: 1rem;
	left: 1rem;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	background: var(--color-white);
	clip: auto;
	color: var(--color-text);
}

.site-container {
	width: min(100% - 2rem, var(--container-max-width));
	margin-inline: auto;
}

.site-header__inner > *,
.home-hero__content,
.booking-strip__item,
.contact-page__layout > *,
.contact-card,
.contact-card strong,
.page-hero__inner,
.final-cta__details,
.site-footer__contact,
.contact-fluent-form,
.contact-fluent-form .ff-el-group,
.contact-fluent-form .ff-t-cell {
	min-width: 0;
}

.site-section {
	padding: var(--section-space) 0;
}

.lucide,
[data-lucide] {
	width: 1em;
	height: 1em;
	flex: 0 0 auto;
	stroke-width: 1.8;
}

.section-heading {
	max-width: 760px;
	margin-bottom: 2.25rem;
}

.section-heading--center {
	margin-inline: auto;
	text-align: center;
}

.section-heading--split {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	max-width: none;
}

.section-heading p:last-child,
.home-hero__lead,
.final-cta p {
	margin-bottom: 0;
}

.section-kicker {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin: 0 0 0.85rem;
	color: var(--color-green);
	font-size: 0.78rem;
	font-weight: 850;
	text-transform: uppercase;
}

.script-heading {
	margin: 0 0 1.15rem;
	color: var(--color-green-deep);
	font-family: "Segoe Script", "Brush Script MT", Georgia, serif;
	font-size: clamp(2rem, 3.6vw, 3rem);
	line-height: 1.1;
}

.script-heading::after {
	display: block;
	width: 52px;
	height: 2px;
	margin-top: 0.75rem;
	background: var(--color-green);
	content: "";
}

.button,
.room-card__button {
	display: inline-flex;
	gap: 0.5rem;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0.72rem 1.05rem;
	border: 1px solid var(--color-green);
	border-radius: var(--radius);
	background: var(--color-green);
	color: var(--color-white);
	font-size: 0.9rem;
	font-weight: 850;
	text-decoration: none;
	transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

button.button {
	cursor: pointer;
	font: inherit;
}

button.room-card__button {
	cursor: pointer;
	font: inherit;
}

.button:hover,
.button:focus,
.room-card__button:hover,
.room-card__button:focus {
	border-color: var(--color-green-deep);
	background: var(--color-green-deep);
	color: var(--color-white);
	box-shadow: 0 10px 24px rgba(20, 46, 36, 0.16);
	transform: translateY(-1px);
}

.button--secondary {
	border-color: rgba(20, 46, 36, 0.34);
	background: transparent;
	color: var(--color-green-deep);
}

.button--secondary:hover,
.button--secondary:focus {
	border-color: var(--color-green);
	background: var(--color-green-soft);
	color: var(--color-green-deep);
	box-shadow: none;
}

.button--light {
	border-color: var(--color-green);
	background: var(--color-green);
	color: var(--color-white);
}

.button--ghost-light {
	border-color: rgba(255, 255, 255, 0.72);
	background: rgba(255, 255, 255, 0.08);
	color: var(--color-white);
	backdrop-filter: blur(8px);
}

.button--ghost-light:hover,
.button--ghost-light:focus {
	border-color: var(--color-white);
	background: var(--color-white);
	color: var(--color-green-deep);
}

.empty-state {
	margin: 0;
	padding: 1.25rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-white);
}

.site-header {
	position: fixed;
	z-index: 10020;
	top: 0;
	right: 0;
	left: 0;
	background: rgba(252, 250, 245, 0.94);
	border-bottom: 1px solid rgba(20, 46, 36, 0.08);
	backdrop-filter: blur(16px);
	box-shadow: 0 8px 28px rgba(20, 46, 36, 0.04);
	transition: box-shadow 180ms ease, background 180ms ease;
}

body.admin-bar .site-header {
	top: 32px;
}

.site-header.is-scrolled,
body.is-scrolled .site-header {
	background: rgba(252, 250, 245, 0.98);
	box-shadow: 0 12px 34px rgba(20, 46, 36, 0.12);
}

.site-header__inner {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: 1.25rem;
	align-items: center;
	min-height: var(--site-header-height);
}

.site-logo,
.site-branding {
	display: inline-grid;
	gap: 0.12rem;
	align-content: center;
	justify-items: center;
	width: max-content;
	padding-block: 0.08rem;
	color: var(--color-green-deep);
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
}

.site-logo__name,
.site-branding__name {
	display: block;
	font-family: "Segoe Script", "Brush Script MT", Georgia, serif;
	font-size: clamp(1.62rem, 2.1vw, 2.02rem);
	font-weight: 500;
	letter-spacing: 0;
	line-height: 0.96;
}

.site-logo__tagline,
.site-branding__tagline {
	display: block;
	justify-self: center;
	width: 100%;
	color: var(--color-green);
	font-family: "Segoe UI", system-ui, sans-serif;
	font-size: 0.66rem;
	font-weight: 800;
	letter-spacing: 0.13em;
	line-height: 1;
	text-align: center;
	text-transform: uppercase;
}

.primary-nav,
.site-navigation {
	justify-self: center;
}

.primary-nav__menu,
.site-navigation__menu {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem 1.1rem;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-nav__menu a,
.site-navigation__menu a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 0.35rem 0 0.46rem;
	color: rgba(27, 36, 30, 0.86);
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
	transition: color 180ms ease;
}

.primary-nav__menu a::after,
.site-navigation__menu a::after {
	position: absolute;
	right: 0;
	bottom: 0.12rem;
	left: 0;
	width: 1.35rem;
	height: 2px;
	margin-inline: auto;
	border-radius: 999px;
	background: var(--color-gold);
	content: "";
	opacity: 0;
	transform: scaleX(0.42);
	transition: opacity 180ms ease, transform 180ms ease;
}

.primary-nav__menu a:hover,
.primary-nav__menu a:focus,
.primary-nav__menu a.is-active,
.site-navigation__menu a:hover,
.site-navigation__menu a:focus,
.site-navigation__menu a.is-active {
	color: var(--color-green-deep);
}

.primary-nav__menu a:hover::after,
.primary-nav__menu a:focus::after,
.primary-nav__menu a.is-active::after,
.site-navigation__menu a:hover::after,
.site-navigation__menu a:focus::after,
.site-navigation__menu a.is-active::after {
	opacity: 1;
	transform: scaleX(1);
}

.header-actions,
.site-header__actions {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	justify-content: end;
}

.site-header__phone,
.site-header__cta {
	display: inline-flex;
	gap: 0.45rem;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	border-radius: 999px;
	font-size: 0.86rem;
	font-weight: 850;
	text-decoration: none;
	white-space: nowrap;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.site-header__phone {
	padding: 0.52rem 0.78rem;
	border: 1px solid rgba(20, 46, 36, 0.16);
	background: rgba(255, 255, 255, 0.58);
	color: var(--color-green-deep);
}

.site-header__phone:hover,
.site-header__phone:focus {
	border-color: rgba(80, 111, 63, 0.36);
	background: var(--color-white);
	color: var(--color-green-deep);
	box-shadow: 0 8px 20px rgba(20, 46, 36, 0.08);
	transform: translateY(-1px);
}

.site-header__cta {
	padding: 0.58rem 0.95rem;
	border: 1px solid rgba(80, 111, 63, 0.9);
	background: var(--color-green);
	color: var(--color-white);
}

.site-header__cta:hover,
.site-header__cta:focus {
	border-color: var(--color-green-deep);
	background: var(--color-green-deep);
	color: var(--color-white);
	box-shadow: 0 10px 24px rgba(20, 46, 36, 0.15);
	transform: translateY(-1px);
}

.mobile-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 1px solid rgba(20, 46, 36, 0.14);
	border-radius: 999px;
	background: var(--color-white);
	color: var(--color-green-deep);
	cursor: pointer;
}

.mobile-menu-toggle__icon {
	width: 1.08rem;
	height: 1.08rem;
}

.mobile-menu-toggle__icon--close,
.mobile-menu-toggle.is-open .mobile-menu-toggle__icon--menu {
	display: none;
}

.mobile-menu-toggle.is-open .mobile-menu-toggle__icon--close {
	display: block;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
	border-color: rgba(80, 111, 63, 0.34);
	outline: 0;
}

.mobile-menu-toggle:focus-visible {
	box-shadow: 0 0 0 3px rgba(80, 111, 63, 0.18);
}

.mobile-menu {
	position: absolute;
	top: calc(100% + 0.55rem);
	right: 0;
	left: 0;
	display: grid;
	gap: 1rem;
	padding: 1rem;
	border: 1px solid rgba(20, 46, 36, 0.08);
	border-radius: 14px;
	background: var(--color-ivory);
	box-shadow: 0 20px 50px rgba(20, 46, 36, 0.16);
}

.mobile-menu[hidden] {
	display: none;
}

.mobile-menu__list {
	display: grid;
	gap: 0.15rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-menu__list a {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 42px;
	padding: 0.58rem 0.85rem 0.58rem 1rem;
	border-radius: var(--radius);
	color: var(--color-green-deep);
	font-weight: 760;
	line-height: 1.25;
	text-decoration: none;
	transition: background 160ms ease, color 160ms ease;
}

.mobile-menu__list a::before {
	position: absolute;
	top: 50%;
	left: 0.24rem;
	width: 2px;
	height: 1.15rem;
	border-radius: 999px;
	background: var(--color-gold);
	content: "";
	opacity: 0;
	transform: translateY(-50%) scaleY(0.6);
	transition: opacity 160ms ease, transform 160ms ease;
}

.mobile-menu__list a:hover,
.mobile-menu__list a:focus,
.mobile-menu__list a.is-active {
	background: rgba(231, 237, 223, 0.66);
	color: var(--color-green-deep);
}

.mobile-menu__list a.is-active::before {
	opacity: 1;
	transform: translateY(-50%) scaleY(1);
}

.mobile-menu__actions {
	display: grid;
	gap: 0.65rem;
}

.mobile-menu__cta,
.mobile-menu__phone {
	display: inline-flex;
	gap: 0.5rem;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	border-radius: 999px;
	font-weight: 850;
	text-decoration: none;
}

.mobile-menu__cta {
	border: 1px solid var(--color-green);
	background: var(--color-green);
	color: var(--color-white);
}

.mobile-menu__phone {
	border: 1px solid rgba(20, 46, 36, 0.12);
	background: var(--color-white);
	color: var(--color-green-deep);
}

.home-hero {
	--home-hero-content-lift: clamp(2.85rem, 5.4vw, 4.75rem);
	position: relative;
	display: grid;
	min-height: clamp(640px, 82vh, 760px);
	overflow: hidden;
	background: var(--color-green-deep);
	color: var(--color-white);
}

.home-hero__background,
.home-hero__background img,
.home-hero__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.home-hero__image {
	object-fit: cover;
}

.home-hero__image--fallback {
	display: grid;
	place-items: center;
	background: var(--color-green);
	color: var(--color-white);
	font-weight: 850;
	text-align: center;
}

.home-hero__overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(12, 22, 17, 0.82) 0%, rgba(12, 22, 17, 0.52) 43%, rgba(12, 22, 17, 0.12) 100%),
		linear-gradient(0deg, rgba(12, 22, 17, 0.26), rgba(12, 22, 17, 0.04));
}

.home-hero__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(0, 680px) minmax(180px, 220px);
	gap: clamp(2rem, 9vw, 7rem);
	align-items: end;
	padding-top: clamp(7rem, 13vh, 10rem);
	padding-bottom: clamp(4.5rem, 9vh, 6rem);
}

.home-hero h1 {
	max-width: 650px;
	color: var(--color-white);
	font-size: clamp(3.1rem, 5vw, 4.45rem);
	line-height: 1;
	text-wrap: balance;
}

.home-hero__lead {
	max-width: 510px;
	margin-top: 1.2rem;
	color: rgba(255, 255, 255, 0.92);
	font-size: clamp(1.12rem, 1.6vw, 1.3rem);
}

.home-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
	margin-top: 1.8rem;
}

.home-hero__rating {
	display: grid;
	justify-items: center;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.42);
	border-radius: var(--radius);
	background: rgba(12, 22, 17, 0.38);
	color: var(--color-white);
	text-align: center;
	backdrop-filter: blur(10px);
}

.home-hero__rating-score strong {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 2.8rem;
	font-weight: 500;
	line-height: 1;
}

.home-hero__rating-score span {
	font-size: 0.95rem;
}

.home-hero__rating a {
	color: var(--color-white);
	font-size: 0.82rem;
	font-weight: 800;
}

.rating-stars,
.review-card__stars {
	display: inline-flex;
	gap: 0.12rem;
	align-items: center;
	color: var(--color-gold);
}

.rating-stars .lucide,
.review-card__stars .lucide {
	width: 1rem;
	height: 1rem;
}

.rating-stars .is-filled,
.review-card__stars .is-filled {
	fill: currentColor;
}

.booking-strip {
	position: relative;
	z-index: 20;
	margin-top: -3rem;
}

.booking-strip__inner {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(220px, 0.9fr);
	gap: 0;
	align-items: stretch;
	overflow: visible;
	border: 1px solid rgba(222, 212, 194, 0.88);
	border-radius: 18px;
	background: rgba(252, 250, 245, 0.98);
	box-shadow: 0 18px 42px rgba(20, 46, 36, 0.12);
}

.booking-strip__item {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 0.65rem;
	align-items: center;
	min-height: 68px;
	padding: 0.78rem 1rem;
	border-right: 1px solid var(--color-border);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(252, 250, 245, 0.92));
	cursor: pointer;
	transition: background 180ms ease, box-shadow 180ms ease;
}

.booking-strip__item:first-child {
	border-radius: 18px 0 0 18px;
}

.booking-strip__item .lucide {
	align-self: center;
	color: var(--color-green);
	font-size: 1.12rem;
}

.booking-strip__field {
	display: grid;
	gap: 0.18rem;
	min-width: 0;
	position: relative;
}

.booking-strip__label {
	color: var(--color-muted);
	font-size: 0.76rem;
	font-weight: 850;
	line-height: 1;
	text-transform: uppercase;
}

.booking-strip__control,
.booking-strip__guest-trigger {
	min-width: 0;
	width: 100%;
	height: 1.55rem;
	padding: 0 1.55rem 0 0;
	border: 0;
	background: transparent;
	color: var(--color-green-deep);
	font-family: "Segoe UI", system-ui, sans-serif;
	font-size: 0.98rem;
	font-weight: 750;
	line-height: 1.2;
	cursor: pointer;
}

.booking-strip__control::placeholder {
	color: var(--color-muted);
	opacity: 1;
}

.booking-strip__control:focus {
	outline: 0;
}

.booking-strip__control.flatpickr-input[readonly],
.booking-strip__control.ncv-flatpickr-alt[readonly] {
	background: transparent;
}

.booking-strip__guest-trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	text-align: left;
	appearance: none;
}

.booking-strip__guest-trigger span {
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.booking-strip__guest-trigger .lucide {
	flex: 0 0 auto;
	width: 1rem;
	height: 1rem;
	color: var(--color-green-deep);
	transition: transform 180ms ease;
}

.booking-strip__item--guests.is-open .booking-strip__guest-trigger .lucide {
	transform: rotate(180deg);
}

.booking-strip__item--guests {
	z-index: 2;
	border-right: 0;
}

.booking-strip__item--guests.is-open {
	z-index: 9999;
}

.booking-guests-menu {
	position: absolute;
	z-index: 9999;
	top: calc(100% + 0.9rem);
	right: 0;
	left: -2.75rem;
	display: grid;
	gap: 0.08rem;
	max-height: min(18rem, 56vh);
	overflow: auto;
	padding: 0.45rem;
	scrollbar-width: none;
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-radius: 12px;
	background: var(--color-white);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.booking-guests-menu::-webkit-scrollbar {
	display: none;
}

.booking-guests-menu[hidden] {
	display: none;
}

.booking-guests-menu__option {
	width: 100%;
	padding: 12px 16px;
	border: 0;
	border-radius: calc(var(--radius) - 4px);
	background: transparent;
	color: var(--color-text);
	font: inherit;
	font-size: 0.96rem;
	font-weight: 700;
	text-align: left;
	cursor: pointer;
}

.booking-guests-menu__option:hover,
.booking-guests-menu__option:focus {
	outline: 0;
	background: rgba(0, 0, 0, 0.03);
	color: var(--color-green-deep);
}

.booking-guests-menu__option[aria-selected="true"] {
	background: rgba(34, 80, 60, 0.08);
	color: var(--color-green-deep);
}

.booking-strip__item:focus-within {
	background: var(--color-white);
	box-shadow: inset 0 0 0 2px rgba(80, 111, 63, 0.16);
}

.booking-strip__button {
	align-self: stretch;
	width: 100%;
	height: 100%;
	min-height: 68px;
	margin: 0;
	padding: 0 1.05rem;
	border: 0;
	border-radius: 0 18px 18px 0;
	background: var(--color-green-deep);
	color: var(--color-ivory);
	font-size: 0.98rem;
	font-weight: 800;
	letter-spacing: 0;
	box-shadow: none;
}

.booking-strip__button:hover,
.booking-strip__button:focus {
	border: 0;
	background: #0f241c;
	color: var(--color-white);
	box-shadow: none;
	transform: none;
}

.booking-strip__button:focus-visible {
	outline: 2px solid rgba(216, 184, 94, 0.82);
	outline-offset: -4px;
}

.flatpickr-calendar {
	z-index: 9999;
	overflow: hidden;
	border: 1px solid rgba(222, 212, 194, 0.95);
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: 0 26px 70px rgba(32, 44, 32, 0.22);
	color: var(--color-text);
	font-family: "Segoe UI", system-ui, sans-serif;
}

.flatpickr-calendar::before,
.flatpickr-calendar::after {
	display: none;
}

.flatpickr-months {
	padding: 0.5rem 0.6rem 0.2rem;
	background: var(--color-white);
}

.flatpickr-months .flatpickr-month {
	color: var(--color-green-deep);
}

.flatpickr-current-month {
	font-size: 1rem;
	font-weight: 850;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
	color: var(--color-green-deep);
	font-weight: 850;
}

.flatpickr-prev-month,
.flatpickr-next-month {
	top: 0.42rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.35rem;
	height: 2.35rem;
	padding: 0;
	border-radius: 999px;
	color: var(--color-green-deep);
	fill: var(--color-green-deep);
	font-size: 1.65rem;
	line-height: 1;
	opacity: 1;
	transition: background 160ms ease, color 160ms ease, fill 160ms ease;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
	background: var(--color-green-soft);
	color: var(--color-green-deep);
	fill: var(--color-green-deep);
}

.flatpickr-weekdays {
	background: var(--color-white);
}

span.flatpickr-weekday {
	color: var(--color-muted);
	font-size: 0.78rem;
	font-weight: 850;
	text-transform: uppercase;
}

.flatpickr-day {
	position: relative;
	border-radius: 999px;
	color: var(--color-text);
	font-weight: 650;
}

.flatpickr-day:hover,
.flatpickr-day:focus {
	border-color: var(--color-green-soft);
	background: var(--color-green-soft);
	color: var(--color-green-deep);
}

.flatpickr-day.today {
	border-color: rgba(80, 111, 63, 0.38);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
	border-color: var(--color-green);
	background: var(--color-green);
	color: var(--color-white);
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
	color: rgba(30, 39, 32, 0.3);
}

.flatpickr-calendar.ncv-calendar--departure .flatpickr-day.ncv-calendar-range-day:not(.ncv-calendar-arrival-marker):not(.ncv-calendar-departure-selected):not(.selected) {
	border-color: rgba(222, 212, 194, 0.62);
	background: rgba(241, 234, 220, 0.52);
	color: var(--color-green-deep);
}

.flatpickr-calendar.ncv-calendar--departure .flatpickr-day.ncv-calendar-range-day:not(.ncv-calendar-arrival-marker):not(.ncv-calendar-departure-selected):not(.selected):hover,
.flatpickr-calendar.ncv-calendar--departure .flatpickr-day.ncv-calendar-range-day:not(.ncv-calendar-arrival-marker):not(.ncv-calendar-departure-selected):not(.selected):focus {
	border-color: rgba(80, 111, 63, 0.22);
	background: rgba(231, 237, 223, 0.82);
	color: var(--color-green-deep);
}

.flatpickr-calendar.ncv-calendar--departure .flatpickr-day.ncv-calendar-arrival-marker {
	border-color: var(--color-green-deep);
	background: rgba(231, 237, 223, 0.86);
	color: var(--color-green-deep);
	box-shadow: inset 0 0 0 1px rgba(20, 46, 36, 0.58);
}

.flatpickr-calendar.ncv-calendar--departure .flatpickr-day.ncv-calendar-arrival-marker:hover,
.flatpickr-calendar.ncv-calendar--departure .flatpickr-day.ncv-calendar-arrival-marker:focus {
	border-color: var(--color-green-deep);
	background: rgba(231, 237, 223, 1);
	color: var(--color-green-deep);
}

.flatpickr-calendar.ncv-calendar--departure .flatpickr-day.ncv-calendar-departure-selected,
.flatpickr-calendar.ncv-calendar--departure .flatpickr-day.ncv-calendar-departure-selected:hover,
.flatpickr-calendar.ncv-calendar--departure .flatpickr-day.ncv-calendar-departure-selected:focus {
	border-color: var(--color-green-deep);
	background: var(--color-green-deep);
	color: var(--color-white);
	box-shadow: none;
}

.welcome-section {
	padding: clamp(3.5rem, 6vw, 5.25rem) 0;
	background: var(--color-white);
}

.welcome-section__inner {
	display: grid;
	grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
}

.welcome-section__content p:last-child {
	max-width: 560px;
	margin-bottom: 0;
	color: #39433b;
	font-size: 1.02rem;
}

.welcome-local-list {
	display: grid;
	gap: 0.58rem;
	max-width: 560px;
	margin: 1.15rem 0 0;
	padding: 0;
	list-style: none;
}

.welcome-local-list li {
	display: grid;
	grid-template-columns: minmax(96px, 0.34fr) minmax(0, 1fr);
	gap: 0.75rem;
	padding: 0.72rem 0;
	border-top: 1px solid rgba(222, 212, 194, 0.86);
	color: #39433b;
	font-size: 0.94rem;
	line-height: 1.45;
}

.welcome-local-list strong {
	color: var(--color-green-deep);
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.welcome-features {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.75rem;
}

.welcome-feature {
	display: grid;
	justify-items: center;
	align-content: center;
	min-height: 168px;
	padding: 1.15rem 0.85rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: linear-gradient(180deg, var(--color-white), rgba(252, 250, 245, 0.78));
	box-shadow: 0 12px 28px rgba(20, 46, 36, 0.06);
	text-align: center;
}

.welcome-feature > .lucide {
	width: 2.1rem;
	height: 2.1rem;
	margin-bottom: 0.8rem;
	color: var(--color-green);
}

.welcome-feature h3 {
	margin-bottom: 0.35rem;
	font-family: "Segoe UI", system-ui, sans-serif;
	font-size: 0.95rem;
	font-weight: 850;
}

.welcome-feature p {
	margin: 0;
	color: var(--color-muted);
	font-size: 0.9rem;
	line-height: 1.5;
}

.rooms-preview {
	background: linear-gradient(180deg, var(--color-ivory), var(--color-white));
}

.rooms-assurance {
	padding: 0.8rem 0;
	border-bottom: 1px solid rgba(222, 212, 194, 0.7);
	background: var(--color-white);
}

.rooms-assurance__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.7rem;
	width: min(100% - 2rem, 1050px);
}

.rooms-assurance__item {
	display: flex;
	gap: 0.55rem;
	align-items: center;
	min-height: 58px;
	padding: 0.72rem 0.85rem;
	border: 1px solid rgba(222, 212, 194, 0.78);
	border-radius: var(--radius);
	background: linear-gradient(180deg, var(--color-ivory), var(--color-white));
	color: var(--color-green-deep);
	font-size: 0.86rem;
	font-weight: 850;
	line-height: 1.35;
	box-shadow: 0 10px 24px rgba(32, 44, 32, 0.05);
}

.rooms-assurance__item .lucide {
	color: var(--color-green);
	font-size: 1.15rem;
}

.rooms-archive {
	background: linear-gradient(180deg, var(--color-white), var(--color-ivory));
}

.rooms-archive.site-section {
	padding-top: clamp(2rem, 4vw, 3rem);
	padding-bottom: clamp(3rem, 5vw, 4.5rem);
}

.rooms-archive__heading {
	align-items: end;
	max-width: 1050px;
	margin-right: auto;
	margin-bottom: 1.35rem;
	margin-left: auto;
}

.rooms-archive__heading > p {
	max-width: 360px;
	margin: 0;
	color: var(--color-muted);
	font-size: 0.92rem;
	line-height: 1.48;
}

.rooms-archive__intro {
	max-width: 1050px;
	margin: 0 auto 1.35rem;
	padding: 1rem 1.15rem;
	border: 1px solid rgba(222, 212, 194, 0.86);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.72);
	color: #39433b;
	box-shadow: 0 10px 24px rgba(32, 44, 32, 0.045);
}

.rooms-archive__intro p {
	max-width: 850px;
	margin: 0;
	font-size: 0.98rem;
	line-height: 1.62;
}

.rooms-archive__grid.room-grid,
.rooms-archive__grid.ncv-rooms-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	max-width: 1050px;
	margin-inline: auto;
}

.room-grid,
.ncv-rooms-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.25rem;
}

.room-card,
.ncv-room-card {
	display: flex;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(222, 212, 194, 0.9);
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: var(--shadow-card);
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.room-card:hover,
.ncv-room-card:hover {
	border-color: rgba(80, 111, 63, 0.34);
	box-shadow: 0 16px 34px rgba(32, 44, 32, 0.1);
	transform: translateY(-2px);
}

.room-card__media {
	display: block;
	overflow: hidden;
	background: var(--color-sand);
}

.room-card__media--placeholder {
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 3.15;
	max-height: 235px;
	color: var(--color-green);
}

.room-card__media--placeholder .lucide {
	width: 2rem;
	height: 2rem;
}

.room-card__image {
	width: 100%;
	aspect-ratio: 16 / 10;
	max-height: 235px;
	object-fit: cover;
	transition: transform 220ms ease;
}

.room-card:hover .room-card__image {
	transform: scale(1.025);
}

.room-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 0.54rem;
	padding: 0.82rem;
}

.room-card__title {
	font-size: 1.16rem;
}

.room-card__description {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: var(--color-muted);
	font-size: 0.88rem;
	line-height: 1.45;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.room-card__meta {
	display: grid;
	gap: 0.24rem;
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--color-text);
	font-size: 0.84rem;
}

.room-card__meta li,
.place-card__meta li,
.review-card__meta p {
	display: flex;
	gap: 0.42rem;
	align-items: center;
}

.room-card__meta .lucide,
.place-card__meta .lucide,
.review-card__meta .lucide {
	color: var(--color-green);
	font-size: 1rem;
}

.room-card__meta span,
.place-card__meta span {
	color: var(--color-muted);
	font-weight: 800;
}

.room-card__amenities {
	display: flex;
	flex-wrap: wrap;
	gap: 0.34rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.room-card__amenities li {
	display: inline-flex;
	gap: 0.34rem;
	align-items: center;
	min-height: 26px;
	padding: 0.24rem 0.5rem;
	border: 1px solid rgba(80, 111, 63, 0.16);
	border-radius: 999px;
	background: var(--color-green-soft);
	color: var(--color-green-deep);
	font-size: 0.72rem;
	font-weight: 800;
	line-height: 1.2;
}

.room-card__amenities .lucide {
	color: var(--color-green);
	font-size: 0.86rem;
}

.room-card__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
	margin-top: auto;
}

.room-card__button {
	width: fit-content;
	min-height: 36px;
	padding: 0.52rem 0.78rem;
	font-size: 0.73rem;
	text-transform: uppercase;
}

.room-card__availability {
	display: inline-flex;
	gap: 0.42rem;
	align-items: center;
	justify-content: center;
	min-height: 36px;
	padding: 0.5rem 0.68rem;
	border: 1px solid rgba(80, 111, 63, 0.2);
	border-radius: var(--radius);
	background: var(--color-ivory);
	color: var(--color-green-deep);
	font-size: 0.73rem;
	font-weight: 850;
	line-height: 1.2;
	text-decoration: none;
	transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.room-card__availability:hover,
.room-card__availability:focus {
	border-color: rgba(20, 46, 36, 0.32);
	background: var(--color-green-soft);
	color: var(--color-green-deep);
}

.section-actions {
	display: flex;
	justify-content: center;
	margin-top: 2rem;
}

.experience-section--light {
	background: var(--color-sand);
}

.experience-showcase {
	display: grid;
	grid-template-columns: minmax(220px, 0.52fr) minmax(0, 1.04fr) minmax(220px, 0.58fr);
	gap: 1.15rem;
	align-items: center;
}

.experience-showcase__content {
	padding-right: 1rem;
}

.experience-showcase__content p {
	color: #3a443c;
}

.experience-showcase__main,
.experience-showcase__tiles figure {
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: var(--shadow-card);
}

.experience-showcase__image {
	width: 100%;
	aspect-ratio: 4 / 3.25;
	object-fit: cover;
}

.experience-showcase__main figcaption,
.experience-showcase__tiles figcaption {
	display: flex;
	gap: 0.45rem;
	align-items: center;
	padding: 0.85rem 0.95rem;
	color: var(--color-green-deep);
	font-weight: 850;
}

.experience-showcase__main figcaption .lucide,
.experience-showcase__tiles figcaption .lucide {
	color: var(--color-green);
}

.experience-showcase__tiles {
	display: grid;
	gap: 1rem;
}

.experience-showcase__tile-image {
	width: 100%;
	aspect-ratio: 4 / 2.55;
	object-fit: cover;
}

.places-preview {
	background: var(--color-ivory);
}

.place-grid,
.ncv-places-grid {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.95rem;
}

.place-card,
.ncv-place-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: 0 10px 28px rgba(32, 44, 32, 0.07);
	transition:
		transform 180ms ease,
		border-color 180ms ease,
		box-shadow 180ms ease;
}

.place-card__media {
	display: block;
	overflow: hidden;
	background: var(--color-sand);
	line-height: 0;
}

.place-card__image {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	transition: transform 260ms ease;
}

.place-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 0.7rem;
	padding: 1rem;
}

.place-card__distance {
	display: inline-flex;
	gap: 0.35rem;
	align-items: center;
	width: fit-content;
	margin: 0;
	padding: 0.28rem 0.55rem;
	border-radius: 999px;
	background: var(--color-green-soft);
	color: var(--color-green-deep);
	font-size: 0.82rem;
	font-weight: 850;
}

.place-card__title {
	color: var(--color-green-deep);
	font-size: 1.08rem;
	line-height: 1.18;
}

.place-card__meta {
	display: grid;
	gap: 0.25rem;
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--color-muted);
	font-size: 0.88rem;
}

.place-card__meta li {
	display: grid;
	grid-template-columns: 1rem 4.85rem minmax(0, 1fr);
	gap: 0.35rem;
	align-items: center;
	min-width: 0;
}

.place-card__description {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: var(--color-muted);
	font-size: 0.92rem;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

.place-card__map-link {
	display: inline-flex;
	gap: 0.4rem;
	align-items: center;
	width: fit-content;
	margin-top: auto;
	font-weight: 850;
}

@media (hover: hover) and (pointer: fine) {
	.place-card:hover,
	.ncv-place-card:hover {
		transform: translateY(-3px);
		border-color: rgba(167, 132, 74, 0.34);
		box-shadow: 0 16px 34px rgba(20, 46, 36, 0.11);
	}

	.place-card:hover .place-card__image,
	.ncv-place-card:hover .place-card__image {
		transform: scale(1.035);
	}
}

.reviews-preview {
	background: var(--color-white);
}

.reviews-summary {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 2rem;
	margin-bottom: 2rem;
}

.reviews-summary__score {
	display: grid;
	gap: 0.2rem;
	min-width: 230px;
	padding: 1.1rem 1.25rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-ivory);
	box-shadow: 0 10px 26px rgba(32, 44, 32, 0.06);
}

.reviews-summary__score strong {
	color: var(--color-green-deep);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1;
}

.reviews-summary__score span {
	color: var(--color-muted);
	font-size: 0.88rem;
}

.review-grid,
.ncv-reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.review-card,
.ncv-review-card {
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: 0 9px 24px rgba(32, 44, 32, 0.06);
}

.review-card__content {
	display: grid;
	gap: 0.8rem;
	padding: 1.2rem;
}

.review-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
}

.review-card__rating {
	margin: 0;
	color: var(--color-muted);
	font-size: 0.88rem;
}

.review-card__rating span {
	color: var(--color-green-deep);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.45rem;
	font-weight: 500;
}

.review-card__text {
	margin: 0;
	color: var(--color-text);
}

.review-card__title {
	font-size: 1.1rem;
}

.review-card__meta {
	display: grid;
	gap: 0.16rem;
	color: var(--color-muted);
	font-size: 0.9rem;
}

.review-card__meta p {
	margin: 0;
}

.review-card__author {
	color: var(--color-green-deep);
	font-weight: 850;
}

.final-cta,
.page-cta {
	background: var(--color-green-deep);
	color: rgba(255, 255, 255, 0.88);
}

.final-cta .section-kicker,
.page-cta .section-kicker {
	color: var(--color-gold);
}

.final-cta h2,
.page-cta h2 {
	color: var(--color-white);
}

.final-cta__inner,
.page-cta__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
	padding: clamp(2rem, 4vw, 3rem);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: var(--radius);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
		rgba(255, 255, 255, 0.06);
	box-shadow: none;
}

.final-cta__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.35rem;
}

.final-cta__details {
	display: grid;
	gap: 0.75rem;
	padding: 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.12);
	color: rgba(255, 255, 255, 0.92);
}

.final-cta__details p,
.site-footer__contact p {
	display: grid;
	grid-template-columns: auto auto 1fr;
	gap: 0.35rem 0.5rem;
	align-items: center;
	margin: 0;
}

.final-cta__details .lucide,
.site-footer__contact .lucide {
	color: var(--color-gold);
	font-size: 1rem;
}

.final-cta__details a,
.final-cta__detail-value,
.site-footer a {
	color: var(--color-white);
}

.final-cta__details a,
.final-cta__detail-value {
	min-width: 0;
	overflow-wrap: anywhere;
}

.page-hero,
.archive-hero,
.room-hero {
	background:
		linear-gradient(180deg, rgba(241, 234, 220, 0.94), rgba(252, 250, 245, 1)),
		var(--color-sand);
}

.page-hero__inner,
.archive-hero__inner {
	max-width: 850px;
	padding: clamp(5rem, 9vw, 8rem) 0 clamp(3rem, 5vw, 5rem);
}

.page-hero h1,
.archive-hero h1 {
	margin-bottom: 1rem;
}

.page-hero p:last-child,
.archive-hero p:last-child {
	max-width: 720px;
	margin-bottom: 0;
	color: #3a443c;
	font-size: 1.12rem;
}

.page-hero--compact {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	height: auto;
	min-height: clamp(340px, 25vw, 400px);
	margin-bottom: 0;
	background: #f3ecdd;
}

.page-hero--compact::before,
.page-hero--compact::after {
	position: absolute;
	pointer-events: none;
	content: "";
}

.page-hero--compact::before {
	inset: 0;
	z-index: 2;
	background: linear-gradient(
		90deg,
		rgba(243, 236, 221, 0.99) 0%,
		rgba(243, 236, 221, 0.88) 28%,
		rgba(243, 236, 221, 0.34) 48%,
		rgba(243, 236, 221, 0.04) 76%,
		rgba(243, 236, 221, 0) 100%
	);
}

.page-hero--compact::after {
	z-index: 1;
	top: 0;
	right: -8vw;
	bottom: auto;
	width: min(88vw, 1320px);
	height: 100%;
	background-image: url("/wp-content/uploads/2026/05/la-maison-en-dessin-pour-le-hero.png");
	background-position: right top;
	background-repeat: no-repeat;
	background-size: auto 132%;
	filter: sepia(0.42) saturate(0.95) contrast(1.08);
	mix-blend-mode: multiply;
	opacity: 0.62;
}

.page-hero--compact .page-hero__inner,
.page-hero--compact .archive-hero__inner {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: var(--container-max-width);
	min-height: clamp(340px, 25vw, 400px);
	padding: 3rem 0 3.35rem;
}

.page-hero--compact .section-kicker {
	margin-bottom: 0.55rem;
	color: var(--color-green);
	font-size: 0.74rem;
	line-height: 1.2;
	letter-spacing: 0.02em;
}

.page-hero--compact h1 {
	max-width: 680px;
	margin-bottom: 0.55rem;
	color: var(--color-green-deep);
	font-size: clamp(2.25rem, 3.1vw, 3.05rem);
	line-height: 1.04;
}

.page-hero--compact p:last-child {
	max-width: 660px;
	color: #3a443c;
	font-size: 1.03rem;
	line-height: 1.52;
}

.page-hero--contact .page-hero__inner {
	padding: 3.05rem 0 2.75rem;
}

.page-hero--compact + .site-section {
	padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

.page-hero--contact + .contact-page {
	padding-top: 2rem;
}

.page-listing-section,
.reviews-page,
.contact-page {
	background: var(--color-white);
}

.surroundings-group__heading p,
.places-preview .section-heading p {
	margin-bottom: 0;
	color: var(--color-muted);
}

.surroundings-intro-section {
	padding-top: clamp(2rem, 4vw, 3rem);
	padding-bottom: clamp(1.8rem, 3.4vw, 2.8rem);
	background: var(--color-white);
}

.surroundings-intro {
	display: grid;
	grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.38fr);
	gap: clamp(1.5rem, 4vw, 3rem);
	align-items: center;
}

.surroundings-intro__content {
	max-width: 780px;
}

.surroundings-intro__content p:last-child {
	margin-bottom: 0;
	color: var(--color-muted);
}

.surroundings-intro__points {
	display: grid;
	gap: 0.72rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.surroundings-intro__points li {
	padding: 0.88rem 1rem;
	border: 1px solid rgba(222, 212, 194, 0.82);
	border-radius: var(--radius);
	background: var(--color-ivory);
	color: var(--color-green-deep);
	font-weight: 800;
	box-shadow: 0 8px 22px rgba(32, 44, 32, 0.05);
}

.surroundings-groups-section {
	padding-top: clamp(2.5rem, 5vw, 4rem);
	background: var(--color-ivory);
}

.surroundings-groups {
	display: grid;
	gap: clamp(3rem, 6vw, 5rem);
}

.surroundings-group__heading {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 0.9rem;
	align-items: start;
	max-width: 860px;
	margin-bottom: 1.25rem;
}

.surroundings-group__heading > .lucide {
	margin-top: 0.2rem;
	color: var(--color-green);
	font-size: 1.55rem;
}

.surroundings-group .place-grid,
.surroundings-group .ncv-places-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.1rem;
	align-items: stretch;
}

.surroundings-group .place-card__media {
	aspect-ratio: 16 / 10;
}

.surroundings-group .place-card__image {
	height: 100%;
	aspect-ratio: auto;
}

.surroundings-group .place-card__content {
	padding: 1rem 1.05rem 1.1rem;
}

.surroundings-group .place-card__description {
	-webkit-line-clamp: 4;
}

.surroundings-city-groups {
	display: grid;
	gap: clamp(1.35rem, 3vw, 2.05rem);
}

.surroundings-city-group {
	display: grid;
	gap: 0.72rem;
}

.surroundings-city-title {
	margin: 0;
	color: var(--color-green-deep);
	font-size: 1rem;
	font-weight: 850;
	line-height: 1.2;
}

.surroundings-group--restaurants .place-card__media {
	aspect-ratio: 16 / 8.8;
}

.surroundings-group--restaurants .place-card__content {
	gap: 0.56rem;
}

.surroundings-group--restaurants .place-card__description {
	-webkit-line-clamp: 3;
}

.seo-section {
	background: var(--color-ivory);
}

.seo-section__inner {
	display: grid;
	grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 4rem);
}

.seo-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.seo-grid article,
.contact-card,
.access-card,
.contact-form-card {
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: 0 12px 30px rgba(32, 44, 32, 0.07);
}

.seo-grid article {
	padding: 1.25rem;
}

.seo-grid article:last-child {
	grid-column: 1 / -1;
}

.page-cta__inner {
	display: flex;
	justify-content: space-between;
}

.page-cta__inner p {
	max-width: 680px;
	margin-bottom: 0;
}

.reviews-page__layout {
	display: grid;
	grid-template-columns: minmax(240px, 0.32fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}

.reviews-score {
	position: sticky;
	top: 110px;
	padding: 1.5rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: linear-gradient(180deg, var(--color-ivory), var(--color-white));
	box-shadow: 0 10px 26px rgba(32, 44, 32, 0.06);
}

.reviews-score__value {
	margin: 0.25rem 0 0;
	color: var(--color-green-deep);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(3rem, 6vw, 5rem);
	font-weight: 500;
	line-height: 1;
}

.reviews-score__value span {
	color: var(--color-muted);
	font-size: 1.4rem;
}

.section-heading--ornament h2::after {
	display: block;
	width: 84px;
	height: 14px;
	margin: 0.7rem auto 0.72rem;
	background:
		linear-gradient(var(--color-gold), var(--color-gold)) left 50% / 32px 1px no-repeat,
		radial-gradient(circle at center, transparent 0 3px, var(--color-green) 3.5px 4.5px, transparent 5px),
		linear-gradient(var(--color-gold), var(--color-gold)) right 50% / 32px 1px no-repeat;
	content: "";
	opacity: 0.86;
}

.section-heading--center .section-kicker {
	margin-right: auto;
	margin-left: auto;
}

.reviews-page__inner,
.legacy-reviews .site-container {
	display: grid;
	gap: 2.15rem;
}

.reviews-page__inner .section-heading,
.legacy-reviews .section-heading {
	margin-bottom: 0;
}

.reviews-page__inner .section-heading p:last-child,
.legacy-reviews .section-heading p:last-child {
	max-width: 760px;
	margin-right: auto;
	margin-left: auto;
	color: var(--color-muted);
}

.review-platform-grid,
.legacy-reviews-grid {
	display: grid;
	gap: 1rem;
}

.review-platform-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.review-platform-card,
.legacy-review-card {
	border: 1px solid rgba(222, 212, 194, 0.88);
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: 0 16px 38px rgba(32, 44, 32, 0.075);
}

.review-platform-card {
	display: grid;
	grid-template-columns: minmax(108px, 0.32fr) minmax(0, 1fr);
	gap: 1.1rem;
	align-items: center;
	min-height: 270px;
	padding: 1.3rem;
}

.review-platform-card__logo {
	display: grid;
	place-items: center;
	width: min(100%, 132px);
	aspect-ratio: 1;
	border: 1px solid rgba(222, 212, 194, 0.68);
	border-radius: var(--radius);
	background: linear-gradient(180deg, #fff, #fbfaf6);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.review-platform-card__logo img {
	width: min(74%, 96px);
	height: auto;
}

.review-platform-card__content {
	display: grid;
	gap: 0.66rem;
	justify-items: start;
}

.review-platform-card h3 {
	font-size: 1.28rem;
}

.review-platform-card p {
	margin: 0;
	color: var(--color-muted);
	font-size: 0.92rem;
	line-height: 1.5;
}

.review-platform-card__rating,
.legacy-review-card__rating {
	display: flex;
	flex-wrap: wrap;
	gap: 0.44rem 0.68rem;
	align-items: center;
}

.review-platform-card__rating strong,
.legacy-review-card__rating strong {
	color: var(--color-green-deep);
	font-weight: 900;
	line-height: 1;
}

.review-platform-card__rating span {
	color: var(--color-muted);
	font-size: 0.78rem;
	font-weight: 750;
	line-height: 1.2;
}

.review-stars {
	display: inline-flex;
	gap: 0.12rem;
	align-items: center;
	color: rgba(216, 184, 94, 0.42);
	line-height: 1;
}

.review-stars .lucide {
	width: 0.98rem;
	height: 0.98rem;
}

.review-stars .is-filled {
	color: var(--color-gold);
	fill: currentColor;
}

.review-platform-card .button {
	align-self: start;
	margin-top: 0.2rem;
	padding-right: 0.8rem;
	padding-left: 0.8rem;
	font-size: 0.82rem;
	white-space: nowrap;
}

.review-platform-card .button .lucide,
.reviews-final-cta .button .lucide {
	width: 0.95rem;
	height: 0.95rem;
}

.legacy-reviews {
	background:
		linear-gradient(180deg, var(--color-ivory), #f8f4ec);
}

.legacy-reviews-grid {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.05rem;
	align-items: start;
}

.legacy-review-card {
	display: grid;
	align-content: start;
	gap: 0.92rem;
	min-height: 0;
	padding: 1.2rem;
}

.legacy-review-card__top {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 0.7rem;
	align-items: center;
	justify-content: space-between;
}

.legacy-review-card__rating {
	justify-content: flex-start;
}

.legacy-review-card__source {
	display: inline-flex;
	align-items: center;
	min-height: 1.55rem;
	padding: 0.24rem 0.56rem;
	border: 1px solid rgba(80, 111, 63, 0.14);
	border-radius: 999px;
	background: #fbfaf6;
	color: var(--color-muted);
	font-size: 0.72rem;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
}

.legacy-review-card__title {
	color: var(--color-green-deep);
	font-size: 1.08rem;
	line-height: 1.22;
}

.legacy-review-card__text {
	margin: 0;
	color: var(--color-text);
	font-size: 0.95rem;
	line-height: 1.58;
}

.legacy-review-card__text p {
	margin: 0;
}

.legacy-review-card__text p + p {
	margin-top: 0.72rem;
}

.legacy-review-card__meta {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 0.62rem;
	align-items: center;
	padding-top: 0.95rem;
	border-top: 1px solid rgba(20, 46, 36, 0.08);
	color: var(--color-muted);
	font-size: 0.86rem;
	line-height: 1.35;
}

.legacy-review-card__meta .lucide {
	width: 1.08rem;
	height: 1.08rem;
	color: var(--color-muted);
}

.legacy-review-card__meta span {
	display: grid;
	gap: 0.06rem;
	min-width: 0;
}

.legacy-review-card__meta strong {
	color: var(--color-green-deep);
	font-size: 0.92rem;
}

.legacy-review-card__meta small {
	color: var(--color-muted);
	font-size: 0.8rem;
}

.legacy-reviews__actions {
	display: none;
	justify-content: center;
	margin-top: 0.25rem;
}

.has-js .legacy-reviews__actions {
	display: flex;
}

.has-js .legacy-reviews-grid.is-collapsed .legacy-review-card:nth-child(n+13) {
	display: none;
}

.legacy-reviews__load-more {
	gap: 0.5rem;
}

.legacy-reviews__load-more span {
	color: currentColor;
	font-size: 0.76rem;
	font-weight: 750;
	opacity: 0.78;
}

.legacy-reviews__load-more .lucide {
	width: 0.95rem;
	height: 0.95rem;
}

.reviews-final-cta .page-cta__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr);
	gap: clamp(1.8rem, 5vw, 4rem);
	overflow: hidden;
}

.reviews-final-cta .page-cta__inner::after {
	position: absolute;
	top: 20%;
	bottom: 20%;
	left: 62%;
	width: 1px;
	background: rgba(255, 255, 255, 0.22);
	content: "";
}

.reviews-final-cta .button {
	justify-self: center;
	border-color: rgba(216, 184, 94, 0.96);
	background: var(--color-gold);
	color: var(--color-green-deep);
	box-shadow: 0 12px 28px rgba(12, 22, 17, 0.18);
}

.reviews-final-cta__actions {
	display: grid;
	gap: 0.75rem;
	justify-self: center;
	min-width: min(100%, 260px);
}

.reviews-final-cta__actions .button {
	justify-self: stretch;
}

.reviews-final-cta__actions .button--secondary {
	border-color: rgba(255, 255, 255, 0.52);
	background: transparent;
	color: var(--color-white);
	box-shadow: none;
}

.reviews-final-cta .button:hover,
.reviews-final-cta .button:focus {
	border-color: #e4c86f;
	background: #e4c86f;
	color: var(--color-green-deep);
}

.contact-page__layout {
	display: grid;
	grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}

.contact-card-list {
	display: grid;
	gap: 0.85rem;
	margin-bottom: 1rem;
}

.contact-card {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.1rem 0.65rem;
	align-items: center;
	padding: 1.1rem 1.2rem;
	color: inherit;
	text-decoration: none;
}

.contact-card > .lucide {
	grid-row: 1 / 3;
	color: var(--color-green);
	font-size: 1.25rem;
}

.contact-card span {
	color: var(--color-muted);
	font-size: 0.78rem;
	font-weight: 850;
	text-transform: uppercase;
}

.contact-card strong {
	color: var(--color-green-deep);
	font-size: 1rem;
	overflow-wrap: anywhere;
}

.contact-card strong,
.final-cta__details a,
.site-footer__contact a {
	overflow-wrap: anywhere;
}

.access-card,
.contact-form-card {
	padding: 1.4rem;
}

.access-card a {
	color: var(--color-green-deep);
	font-weight: 850;
	text-decoration-color: rgba(20, 46, 36, 0.35);
	text-underline-offset: 0.14em;
}

.access-card a:hover,
.access-card a:focus {
	text-decoration-color: currentColor;
}

.access-card h2,
.contact-form-card h2 {
	margin-bottom: 0.8rem;
	font-size: 1.55rem;
}

.access-card ul {
	display: grid;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.access-card li {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

.access-card li .lucide {
	color: var(--color-green);
}

.availability-prefill-notice {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.7rem;
	align-items: start;
	margin: 1rem 0;
	padding: 1rem;
	border: 1px solid rgba(80, 111, 63, 0.24);
	border-radius: var(--radius);
	background: var(--color-green-soft);
	color: var(--color-green-deep);
}

.availability-prefill-notice .lucide {
	margin-top: 0.18rem;
	color: var(--color-green);
	font-size: 1.15rem;
}

.availability-prefill-notice p {
	margin: 0;
}

.availability-prefill-notice__details {
	display: block;
	margin-top: 0.2rem;
}

.contact-fluent-form {
	--fluentform-primary: var(--color-green-deep);
	--fluentform-secondary: var(--color-text);
	--fluentform-border-color: var(--color-border);
	--fluentform-border-radius: var(--radius);
	margin-top: 1rem;
}

.contact-fluent-form .fluentform,
.contact-fluent-form .frm-fluent-form {
	width: 100%;
	max-width: none;
}

.contact-fluent-form .ff-el-input--content {
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.contact-fluent-form .ff-el-group {
	margin-bottom: 0.85rem;
}

.contact-fluent-form .ff-el-group:last-child,
.contact-fluent-form .ff_submit_btn_wrapper {
	margin-bottom: 0;
}

.contact-fluent-form .ff-el-input--label {
	display: block;
	margin-bottom: 0.28rem;
	color: var(--color-green-deep);
	font-weight: 800;
	line-height: 1.35;
}

.contact-fluent-form .ff-el-input--label label {
	display: inline-block;
	margin: 0;
	color: inherit;
	font: inherit;
}

.contact-fluent-form .ff-el-form-control {
	min-width: 0;
	width: 100%;
	max-width: 100%;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-ivory);
	color: var(--color-text);
	font: inherit;
	line-height: 1.35;
	box-shadow: none;
	padding: 0.78rem 0.9rem;
	transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-fluent-form input.ff-el-form-control,
.contact-fluent-form select.ff-el-form-control {
	min-height: 48px;
}

.contact-fluent-form textarea.ff-el-form-control {
	min-height: 138px;
	line-height: 1.45;
	resize: vertical;
}

.contact-fluent-form .ff-el-form-control:focus {
	border-color: rgba(80, 111, 63, 0.62);
	background: var(--color-white);
	box-shadow: 0 0 0 3px rgba(80, 111, 63, 0.14);
	outline: none;
}

.contact-fluent-form .ff-el-form-control::placeholder {
	color: rgba(104, 112, 100, 0.78);
}

.contact-fluent-form .ff-t-container {
	display: flex;
	gap: 0.85rem;
	width: 100%;
	margin-bottom: 0.85rem;
}

.contact-fluent-form .ff-t-cell {
	flex: 1 1 0;
	width: auto;
	padding: 0;
}

.contact-fluent-form .ff-t-cell .ff-el-group {
	margin-bottom: 0;
}

.contact-fluent-form .ff-btn-submit,
.contact-fluent-form .ff-btn-submit:not(.ff_btn_no_style) {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	margin-top: 0.05rem;
	border: 1px solid var(--color-green-deep);
	border-radius: var(--radius);
	background: var(--color-green-deep);
	color: var(--color-white);
	font: inherit;
	font-size: 0.9rem;
	font-weight: 850;
	line-height: 1.2;
	text-align: center;
	cursor: pointer;
	box-shadow: none;
	padding: 0.72rem 1.05rem;
	transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-fluent-form .ff-btn-submit:hover,
.contact-fluent-form .ff-btn-submit:focus {
	border-color: #0f241c;
	background: #0f241c;
	color: var(--color-white);
	box-shadow: 0 10px 24px rgba(20, 46, 36, 0.14);
	transform: translateY(-1px);
	outline: none;
}

.contact-fluent-form .ff-el-is-error .ff-el-form-control {
	border-color: var(--fluentform-danger);
}

.contact-fluent-form .text-danger,
.contact-fluent-form .ff-el-is-error .text-danger {
	color: var(--fluentform-danger);
	font-size: 0.82rem;
	line-height: 1.35;
}

.contact-fluent-form .ff-message-success {
	margin-top: 0.85rem;
	border: 1px solid rgba(80, 111, 63, 0.24);
	border-radius: var(--radius);
	background: var(--color-green-soft);
	color: var(--color-green-deep);
	box-shadow: none;
}

body.room-modal-open {
	overflow: hidden;
}

.room-modal[hidden] {
	display: none !important;
}

.room-modal {
	position: fixed;
	z-index: 10000;
	top: var(--room-modal-header-offset);
	right: 0;
	bottom: var(--room-modal-bottom-offset);
	left: 0;
	display: none;
	padding: 20px 24px;
}

.room-modal.is-open {
	display: flex;
	align-items: center;
	justify-content: center;
}

.room-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 25, 18, 0.65);
	backdrop-filter: blur(4px);
}

.room-modal__dialog {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 0.54fr) minmax(360px, 0.46fr);
	align-items: start;
	width: min(1140px, calc(100vw - 48px));
	max-height: calc(100dvh - var(--room-modal-header-offset) - var(--room-modal-bottom-offset) - 40px);
	overflow-y: auto;
	border: 1px solid rgba(222, 212, 194, 0.95);
	border-radius: 20px;
	background: #ffffff;
	box-shadow: 0 34px 92px rgba(10, 25, 18, 0.34), 0 10px 28px rgba(10, 25, 18, 0.18);
	outline: none;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

body.admin-bar .room-modal {
	--room-modal-header-offset: calc(var(--site-header-height) + 32px);
}

.room-modal__dialog::-webkit-scrollbar {
	display: none;
}

.room-modal__close {
	position: absolute;
	z-index: 6;
	top: 0.9rem;
	right: 0.9rem;
	display: inline-grid;
	place-items: center;
	width: 36px;
	height: 36px;
	margin: 0;
	border: 1px solid rgba(20, 46, 36, 0.12);
	border-radius: 999px;
	background: var(--color-white);
	color: var(--color-green-deep);
	cursor: pointer;
	box-shadow: 0 10px 24px rgba(20, 46, 36, 0.12);
}

.room-modal__close:hover,
.room-modal__close:focus {
	background: var(--color-white);
	outline: 2px solid rgba(80, 111, 63, 0.22);
	outline-offset: 2px;
}

.room-modal__gallery {
	display: grid;
	grid-template-rows: auto minmax(0, auto);
	gap: 0.62rem;
	align-content: start;
	padding: 1.05rem 0.95rem 1.05rem 1.05rem;
	overflow: hidden;
	background: #f8f8f6;
}

.room-modal__gallery--single {
	grid-template-rows: auto;
}

.room-modal__main-image {
	position: relative;
	overflow: hidden;
	border-radius: 14px;
	background: #f8f8f6;
}

.room-modal__main-image img {
	width: 100%;
	aspect-ratio: 4 / 3.05;
	height: clamp(300px, 46vh, 400px);
	max-height: 400px;
	object-fit: cover;
}

.room-modal__nav {
	position: absolute;
	top: 50%;
	display: inline-grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid rgba(20, 46, 36, 0.08);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.94);
	color: var(--color-green-deep);
	cursor: pointer;
	box-shadow: 0 12px 26px rgba(10, 25, 18, 0.16);
	transform: translateY(-50%);
	transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.room-modal__nav:hover,
.room-modal__nav:focus {
	background: var(--color-white);
	box-shadow: 0 16px 32px rgba(10, 25, 18, 0.2);
	transform: translateY(-50%) scale(1.03);
}

.room-modal__nav--prev {
	left: 0.78rem;
}

.room-modal__nav--next {
	right: 0.78rem;
}

.room-modal__thumbs {
	display: grid;
	grid-auto-columns: 78px;
	grid-auto-flow: column;
	gap: 0.55rem;
	max-height: 82px;
	overflow-x: auto;
	overflow-y: hidden;
	padding-bottom: 0.05rem;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.room-modal__thumbs::-webkit-scrollbar {
	display: none;
}

.room-modal__thumb {
	display: block;
	min-width: 0;
	padding: 0;
	overflow: hidden;
	border: 2px solid transparent;
	border-radius: 10px;
	background: var(--color-white);
	cursor: pointer;
}

.room-modal__thumb[aria-current="true"] {
	border-color: rgba(80, 111, 63, 0.74);
	box-shadow: 0 8px 18px rgba(80, 111, 63, 0.14);
}

.room-modal__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.room-modal__image-placeholder {
	display: grid;
	place-items: center;
	min-height: 360px;
	border-radius: 14px;
	background: #f8f8f6;
	color: var(--color-green);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.4rem;
}

.room-modal__content {
	padding: 1.55rem 1.55rem 1.2rem 1.05rem;
}

.room-modal__content .section-kicker {
	margin-bottom: 0.42rem;
	font-size: 0.72rem;
	line-height: 1.1;
}

.room-modal__content h2 {
	margin-bottom: 0.45rem;
	padding-right: 2.4rem;
	color: var(--color-green-deep);
	font-size: clamp(2.5rem, 3.7vw, 3.2rem);
	line-height: 0.98;
}

.room-modal__lead {
	display: -webkit-box;
	margin-bottom: 0.82rem;
	overflow: hidden;
	color: #3a443c;
	font-size: 0.96rem;
	line-height: 1.38;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.room-modal__facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0;
	margin: 0 0 0.82rem;
	border-top: 1px solid rgba(20, 46, 36, 0.12);
	border-bottom: 1px solid rgba(20, 46, 36, 0.12);
}

.room-modal__facts div {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.12rem 0.65rem;
	align-items: center;
	min-height: 60px;
	padding: 0.48rem 0.74rem 0.48rem 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.room-modal__facts div:nth-child(odd) {
	border-right: 1px solid rgba(20, 46, 36, 0.12);
}

.room-modal__facts div:nth-child(even) {
	padding-left: 0.78rem;
}

.room-modal__facts div:nth-child(n + 3) {
	border-top: 1px solid rgba(20, 46, 36, 0.12);
}

.room-modal__facts dt {
	grid-column: 2;
	grid-row: 1;
	display: flex;
	gap: 0;
	align-items: center;
	color: var(--color-muted);
	font-size: 0.68rem;
	font-weight: 650;
	line-height: 1.25;
	text-transform: uppercase;
}

.room-modal__facts dt .lucide {
	grid-column: 1;
	grid-row: 1 / 3;
	color: var(--color-green);
	font-size: 1.08rem;
}

.room-modal__facts dd {
	grid-column: 2;
	grid-row: 2;
	margin: 0;
	color: var(--color-green-deep);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 0.98rem;
	font-weight: 500;
	line-height: 1.28;
}

.room-modal__pricing {
	margin: 0 0 0.72rem;
	padding: 0.7rem;
	border: 1px solid rgba(222, 212, 194, 0.8);
	border-radius: 12px;
	background: #f7f5f0;
	color: var(--color-green-deep);
}

.room-modal__pricing-head {
	display: flex;
	gap: 0.8rem;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 0.54rem;
}

.room-modal__pricing-head h3 {
	margin: 0;
	color: var(--color-green-deep);
	font-size: 0.98rem;
	line-height: 1.15;
}

.room-modal__pricing-head p {
	margin: 0.12rem 0 0;
	color: var(--color-muted);
	font-size: 0.72rem;
	line-height: 1.2;
}

.room-modal__price {
	display: grid;
	flex: 0 0 auto;
	justify-items: end;
	min-width: 98px;
	margin: 0;
	color: var(--color-green-deep);
}

.room-modal__price span,
.room-modal__price strong::after {
	color: var(--color-muted);
	font-family: "Segoe UI", system-ui, sans-serif;
	font-size: 0.66rem;
	font-weight: 650;
	line-height: 1.15;
	text-transform: uppercase;
}

.room-modal__price strong {
	font-size: 1.32rem;
	line-height: 1;
}

.room-modal__price strong::after {
	margin-left: 0.25rem;
	font-weight: 500;
	text-transform: none;
	content: "/ nuit";
}

.room-modal__price-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.36rem;
}

.room-modal__price-item {
	display: flex;
	gap: 0.45rem;
	align-items: baseline;
	justify-content: space-between;
	min-width: 0;
	min-height: 34px;
	padding: 0.36rem 0.48rem;
	border: 1px solid rgba(20, 46, 36, 0.08);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.74);
	line-height: 1.15;
}

.room-modal__price-item span {
	color: var(--color-muted);
	font-size: 0.72rem;
	font-weight: 720;
	white-space: nowrap;
}

.room-modal__price-item strong {
	color: var(--color-green-deep);
	font-size: 0.92rem;
	font-weight: 820;
	white-space: nowrap;
}

.room-modal__pricing--simple .room-modal__pricing-head {
	margin-bottom: 0;
}

.room-modal__pricing--simple .room-modal__pricing-head > div {
	display: none;
}

.room-modal__amenities {
	margin: 0 0 0.82rem;
	padding-top: 0.72rem;
	border-top: 1px solid rgba(20, 46, 36, 0.1);
}

.room-modal__amenities h3 {
	margin-bottom: 0.5rem;
	font-size: 0.98rem;
}

.room-modal__amenities ul {
	display: flex;
	flex-wrap: wrap;
	gap: 0.34rem;
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--color-text);
	font-size: 0.78rem;
}

.room-modal__amenities li {
	display: inline-flex;
	align-items: center;
	min-height: 29px;
	padding: 0.28rem 0.56rem;
	border: 0;
	border-radius: 999px;
	background: #f4f4f1;
	color: var(--color-green-deep);
	font-weight: 780;
	line-height: 1.2;
}

.room-modal__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.62rem;
	margin-top: 0.05rem;
}

.room-modal__actions .button {
	min-height: 44px;
	padding: 0.58rem 0.86rem;
	border-radius: 8px;
	font-size: 0.88rem;
}

.room-modal__actions .button:first-child {
	flex: 1 1 auto;
	background: var(--color-green-deep);
}

.room-modal__actions .button--secondary {
	flex: 0 0 auto;
	min-width: 132px;
	background: var(--color-white);
}

@media (max-height: 820px) and (min-width: 901px) {
	.room-modal {
		padding: 16px 22px;
	}

	.room-modal__dialog {
		grid-template-columns: minmax(0, 0.53fr) minmax(350px, 0.47fr);
		width: min(1120px, calc(100vw - 44px));
		max-height: calc(100dvh - var(--room-modal-header-offset) - var(--room-modal-bottom-offset) - 32px);
	}

	.room-modal__close {
		top: 0.75rem;
		right: 0.75rem;
		width: 34px;
		height: 34px;
	}

	.room-modal__gallery {
		gap: 0.5rem;
		padding: 0.88rem 0.75rem 0.88rem 0.88rem;
	}

	.room-modal__main-image img {
		height: clamp(280px, 44vh, 350px);
		max-height: 350px;
	}

	.room-modal__nav {
		width: 38px;
		height: 38px;
	}

	.room-modal__thumbs {
		grid-auto-columns: 68px;
		max-height: 72px;
		gap: 0.45rem;
	}

	.room-modal__content {
		padding: 1.18rem 1.2rem 0.9rem 0.82rem;
	}

	.room-modal__content .section-kicker {
		margin-bottom: 0.3rem;
		font-size: 0.68rem;
	}

	.room-modal__content h2 {
		margin-bottom: 0.3rem;
		font-size: clamp(2.12rem, 3.15vw, 2.65rem);
	}

	.room-modal__lead {
		margin-bottom: 0.58rem;
		font-size: 0.88rem;
		line-height: 1.32;
	}

	.room-modal__facts {
		margin-bottom: 0.56rem;
	}

	.room-modal__facts div {
		min-height: 49px;
		padding-top: 0.32rem;
		padding-bottom: 0.32rem;
	}

	.room-modal__facts dt {
		font-size: 0.62rem;
	}

	.room-modal__facts dt .lucide {
		font-size: 0.98rem;
	}

	.room-modal__facts dd {
		font-size: 0.9rem;
	}

	.room-modal__pricing {
		margin-bottom: 0.5rem;
		padding: 0.52rem;
		border-radius: 10px;
	}

	.room-modal__pricing-head {
		gap: 0.62rem;
		margin-bottom: 0.4rem;
	}

	.room-modal__pricing-head h3 {
		font-size: 0.9rem;
	}

	.room-modal__pricing-head p,
	.room-modal__price span,
	.room-modal__price strong::after {
		font-size: 0.64rem;
	}

	.room-modal__price strong {
		font-size: 1.16rem;
	}

	.room-modal__price-grid {
		gap: 0.3rem;
	}

	.room-modal__price-item {
		min-height: 29px;
		padding: 0.25rem 0.4rem;
	}

	.room-modal__price-item span {
		font-size: 0.68rem;
	}

	.room-modal__price-item strong {
		font-size: 0.84rem;
	}

	.room-modal__amenities {
		margin-bottom: 0.54rem;
		padding-top: 0.48rem;
	}

	.room-modal__amenities h3 {
		margin-bottom: 0.32rem;
		font-size: 0.9rem;
	}

	.room-modal__amenities ul {
		gap: 0.26rem 0.32rem;
		font-size: 0.74rem;
	}

	.room-modal__amenities li {
		min-height: 25px;
		padding: 0.2rem 0.44rem;
	}

	.room-modal__actions {
		gap: 0.5rem;
	}

	.room-modal__actions .button {
		min-height: 40px;
		padding: 0.48rem 0.72rem;
		font-size: 0.82rem;
	}
}

.room-hero__inner {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: center;
	padding: clamp(4rem, 7vw, 6rem) 0;
}

.room-hero__description {
	margin-top: 1rem;
	color: var(--color-muted);
	font-size: 1.1rem;
}

.room-hero__price {
	display: grid;
	gap: 0.15rem;
	margin-top: 1.25rem;
	color: var(--color-green-deep);
	font-size: 1.35rem;
	font-weight: 850;
}

.room-hero__price span {
	color: var(--color-muted);
	font-size: 0.86rem;
	text-transform: uppercase;
}

.room-hero__media,
.room-gallery__item {
	overflow: hidden;
	border-radius: var(--radius);
	background: var(--color-white);
}

.room-hero__image,
.room-gallery__image {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.room-gallery-section {
	padding: clamp(2rem, 4vw, 3rem) 0 0;
	background: var(--color-ivory);
}

.room-gallery {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 0.75rem;
}

.room-details__layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
	gap: clamp(2rem, 5vw, 4rem);
	align-items: start;
}

.room-facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin: 0 0 2rem;
}

.room-facts div,
.room-cta {
	padding: 1rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-white);
}

.room-facts dt {
	color: var(--color-muted);
	font-size: 0.78rem;
	font-weight: 850;
	text-transform: uppercase;
}

.room-facts dd {
	margin: 0.25rem 0 0;
	font-weight: 850;
}

.room-amenities {
	margin-bottom: 2rem;
}

.room-amenities ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.45rem 1rem;
	padding-left: 1.1rem;
}

.room-sidebar {
	position: sticky;
	top: 104px;
}

.room-cta {
	box-shadow: var(--shadow-card);
}

.room-cta h2 {
	margin-bottom: 0.7rem;
	font-size: 1.45rem;
}

.room-back-link {
	padding-bottom: var(--section-space);
}

.content-area {
	max-width: 820px;
}

.legal-page {
	background: linear-gradient(180deg, var(--color-white), var(--color-ivory));
}

.legal-page__container {
	width: min(100% - 2rem, 900px);
}

.legal-card {
	padding: clamp(1.35rem, 3vw, 2.55rem);
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	background: var(--color-white);
	box-shadow: var(--shadow-card);
}

.legal-card__header {
	margin-bottom: clamp(1.35rem, 3vw, 2rem);
	padding-bottom: 1.1rem;
	border-bottom: 1px solid var(--color-border);
}

.legal-card__header h2 {
	margin-bottom: 0.45rem;
	font-size: clamp(1.55rem, 2.4vw, 2.05rem);
	line-height: 1.16;
}

.legal-page__updated {
	margin: 0;
	color: var(--color-muted);
	font-size: 0.92rem;
}

.legal-section + .legal-section {
	margin-top: clamp(1.35rem, 3vw, 2rem);
	padding-top: clamp(1.2rem, 2.6vw, 1.75rem);
	border-top: 1px solid rgba(222, 212, 194, 0.76);
}

.legal-section h2 {
	margin-bottom: 0.72rem;
	color: var(--color-green-deep);
	font-size: clamp(1.18rem, 2vw, 1.42rem);
	line-height: 1.24;
}

.legal-section p,
.legal-list {
	color: #354038;
	line-height: 1.76;
}

.legal-section p:last-child,
.legal-list:last-child {
	margin-bottom: 0;
}

.legal-section a {
	color: var(--color-green-deep);
	font-weight: 800;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.18em;
}

.legal-section a:hover,
.legal-section a:focus-visible {
	color: var(--color-green);
	outline: 0;
}

.legal-definition-list {
	display: grid;
	gap: 0;
	margin: 1.1rem 0 0;
}

.legal-definition-list > div {
	display: grid;
	grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
	gap: 0.85rem;
	padding: 0.78rem 0;
	border-bottom: 1px solid rgba(222, 212, 194, 0.72);
}

.legal-definition-list > div:last-child {
	border-bottom: 0;
}

.legal-definition-list dt {
	color: var(--color-muted);
	font-size: 0.85rem;
	font-weight: 850;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.legal-definition-list dd {
	margin: 0;
	min-width: 0;
	overflow-wrap: anywhere;
	color: var(--color-text);
}

.legal-list {
	display: grid;
	gap: 0.42rem;
	margin: 0.75rem 0 1rem;
	padding-left: 1.2rem;
}

.legal-placeholder {
	display: inline;
	padding: 0.08rem 0.35rem;
	border-radius: 4px;
	background: var(--color-green-soft);
	color: var(--color-green-deep);
	font-weight: 750;
}

.entry + .entry,
.archive-list .entry + .entry {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid var(--color-border);
}

.entry__title a {
	color: inherit;
	text-decoration: none;
}

.footer-cta {
	padding: clamp(3rem, 5vw, 4.5rem) 0;
	background:
		linear-gradient(180deg, rgba(252, 250, 245, 0), rgba(241, 234, 220, 0.76)),
		var(--color-ivory);
}

.footer-cta__card {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	gap: clamp(1rem, 3vw, 2rem);
	align-items: center;
	max-width: 1040px;
	margin-inline: auto;
	padding: clamp(1.25rem, 3vw, 2rem);
	overflow: hidden;
	border: 1px solid rgba(216, 184, 94, 0.26);
	border-radius: var(--radius);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.015)),
		linear-gradient(145deg, #0f3328, #142e24 64%, #183c30);
	box-shadow: 0 20px 46px rgba(20, 46, 36, 0.16);
	color: rgba(252, 250, 245, 0.84);
}

.footer-cta__card::after {
	position: absolute;
	inset: 0 0 auto auto;
	width: min(280px, 46vw);
	height: 100%;
	background:
		repeating-linear-gradient(118deg, rgba(216, 184, 94, 0.12) 0 1px, transparent 1px 22px),
		repeating-linear-gradient(62deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 28px);
	content: "";
	opacity: 0.36;
	pointer-events: none;
}

.footer-cta__icon {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border: 1px solid rgba(216, 184, 94, 0.38);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
	color: var(--color-gold);
	font-size: 1.25rem;
}

.footer-cta__content,
.footer-cta__button {
	position: relative;
	z-index: 1;
}

.footer-cta__title {
	margin: 0 0 0.35rem;
	color: var(--color-white);
	font-family: Georgia, "Times New Roman", serif;
	font-size: clamp(1.35rem, 2.4vw, 2rem);
	line-height: 1.12;
}

.footer-cta__content p:last-child {
	max-width: 40rem;
	margin: 0;
}

.footer-cta__button {
	display: inline-flex;
	gap: 0.55rem;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.82rem 1.15rem;
	border: 1px solid rgba(216, 184, 94, 0.62);
	border-radius: var(--radius);
	background: #efe4c8;
	color: var(--color-green-deep);
	font-size: 0.9rem;
	font-weight: 850;
	line-height: 1.1;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.footer-cta__button:hover,
.footer-cta__button:focus-visible {
	border-color: rgba(216, 184, 94, 0.9);
	background: #f6edda;
	color: var(--color-green-deep);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
	transform: translateY(-1px);
	outline: 0;
}

.site-footer.site-footer--premium {
	position: relative;
	isolation: isolate;
	padding: clamp(3.7rem, 6vw, 5.25rem) 0 1.35rem;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(9, 25, 19, 0.46), rgba(9, 25, 19, 0)),
		linear-gradient(145deg, #0f3328, #123528 54%, #0b261f);
	color: rgba(252, 250, 245, 0.78);
}

.site-footer.site-footer--premium::before {
	position: absolute;
	z-index: -1;
	top: -2rem;
	bottom: -2rem;
	left: -7rem;
	width: min(32rem, 48vw);
	background:
		repeating-linear-gradient(122deg, transparent 0 18px, rgba(255, 255, 255, 0.08) 18px 19px, transparent 19px 34px),
		repeating-linear-gradient(56deg, transparent 0 28px, rgba(216, 184, 94, 0.08) 28px 29px, transparent 29px 48px);
	content: "";
	opacity: 0.42;
	pointer-events: none;
	transform: rotate(-4deg);
}

.site-footer__content {
	position: relative;
	display: grid;
	grid-template-columns: minmax(240px, 1.12fr) minmax(130px, 0.58fr) minmax(170px, 0.72fr) minmax(300px, 1.22fr);
	gap: clamp(1.4rem, 3.2vw, 3.7rem);
	align-items: start;
}

.site-footer__brand-name {
	margin: 0 0 0.38rem;
	color: var(--color-white);
	font-family: "Segoe Script", "Brush Script MT", Georgia, serif;
	font-size: clamp(1.85rem, 3vw, 2.6rem);
	font-weight: 500;
	line-height: 1.04;
}

.site-footer__subtitle,
.site-footer__heading {
	margin: 0;
	color: #dac478;
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.14em;
	line-height: 1.3;
	text-transform: uppercase;
}

.site-footer__separator {
	display: block;
	width: 48px;
	height: 1px;
	margin: 1.15rem 0;
	background: linear-gradient(90deg, rgba(216, 184, 94, 0.9), rgba(216, 184, 94, 0));
}

.site-footer__intro {
	max-width: 19rem;
	margin: 0;
	font-size: 0.93rem;
	line-height: 1.72;
}

.site-footer__section {
	display: grid;
	gap: 1.05rem;
	min-width: 0;
}

.site-footer__list,
.site-footer__contact-list {
	display: grid;
	gap: 0.7rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-footer__list a,
.site-footer__contact-list a,
.site-footer__legal a {
	color: rgba(252, 250, 245, 0.84);
	text-decoration: none;
	transition: color 160ms ease, opacity 160ms ease;
}

.site-footer__list a:hover,
.site-footer__list a:focus-visible,
.site-footer__contact-list a:hover,
.site-footer__contact-list a:focus-visible,
.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
	color: #ead28a;
	outline: 0;
}

.site-footer__contact-list li {
	display: grid;
	grid-template-columns: 1.05rem minmax(0, 1fr);
	gap: 0.7rem;
	align-items: start;
}

.site-footer__contact-list .lucide,
.site-footer__note .lucide {
	margin-top: 0.18rem;
	color: #dac478;
}

.site-footer__contact-list address {
	margin: 0;
	font-style: normal;
	overflow-wrap: anywhere;
}

.site-footer__contact-list a {
	overflow-wrap: anywhere;
}

.site-footer__note {
	display: grid;
	grid-template-columns: 1rem minmax(0, 1fr);
	gap: 0.65rem;
	margin-top: 0.35rem;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.06);
	color: rgba(252, 250, 245, 0.84);
	font-size: 0.84rem;
	line-height: 1.58;
}

.site-footer__note p {
	margin: 0;
}

.site-footer__legal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	margin-top: clamp(2.2rem, 4vw, 3.6rem);
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.13);
	color: rgba(252, 250, 245, 0.66);
	font-size: 0.85rem;
}

.site-footer__legal p {
	margin: 0;
}

.site-footer__legal-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.42rem 0.9rem;
	min-width: 0;
}

.site-footer__legal a {
	color: #dac478;
}

@media (max-width: 1024px) {
	.footer-cta__card {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.footer-cta__button {
		grid-column: 2;
		justify-self: start;
	}

	.site-footer__content {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 760px) {
	.footer-cta {
		padding: 2rem 0;
	}

	.footer-cta__card {
		grid-template-columns: 1fr;
		gap: 1rem;
		padding: 1.2rem;
	}

	.footer-cta__icon {
		width: 2.75rem;
		height: 2.75rem;
	}

	.footer-cta__button {
		grid-column: auto;
		justify-self: stretch;
		width: 100%;
		white-space: normal;
	}

	.site-footer.site-footer--premium {
		padding-top: 3rem;
	}

	.site-footer.site-footer--premium::before {
		width: 80vw;
		opacity: 0.28;
	}

	.site-footer__content {
		grid-template-columns: 1fr;
		gap: 1.8rem;
	}

	.site-footer__intro {
		max-width: none;
	}

	.site-footer__section {
		gap: 0.8rem;
	}

	.site-footer__list,
	.site-footer__contact-list {
		gap: 0.58rem;
	}

	.site-footer__legal {
		flex-direction: column;
		align-items: center;
		gap: 0.35rem;
		text-align: center;
	}

	.site-footer__legal-links {
		gap: 0.35rem 0.78rem;
	}

	.legal-page__container {
		width: min(100% - 1.25rem, 900px);
	}

	.legal-card {
		padding: 1.15rem;
	}

	.legal-definition-list > div {
		grid-template-columns: 1fr;
		gap: 0.22rem;
	}
}

.mobile-sticky-bar {
	display: none;
}

body.ncv-legal-page .mobile-sticky-bar {
	display: none !important;
}

@media (min-width: 901px) {
	.mobile-menu,
	.mobile-menu-toggle {
		display: none !important;
	}

	.home-hero__content,
	.home-hero__rating {
		transform: translateY(calc(-1 * var(--home-hero-content-lift)));
	}
}

@media (max-width: 1180px) {
	.site-header__inner {
		gap: 1rem;
	}

	.room-grid,
	.ncv-rooms-grid,
	.place-grid,
	.ncv-places-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rooms-assurance__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-hero__inner,
	.experience-showcase,
		.welcome-section__inner,
		.seo-section__inner,
		.reviews-page__layout,
		.contact-page__layout,
	.room-hero__inner,
	.room-details__layout,
	.final-cta__inner {
		grid-template-columns: 1fr;
	}

	.experience-showcase__tiles {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.surroundings-group .place-grid,
	.surroundings-group .ncv-places-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.reviews-score,
	.room-sidebar {
		position: static;
	}
}

@media (min-width: 901px) and (max-width: 1180px) {
	.home-hero {
		--home-hero-content-lift: clamp(1.85rem, 3.3vw, 2.65rem);
	}

	.contact-page__layout {
		grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
		gap: 1.5rem;
	}
}

@media (max-width: 900px) {
	html {
		scroll-padding-top: var(--site-header-height-mobile);
	}

	body {
		padding-top: var(--site-header-height-mobile);
		padding-bottom: calc(86px + env(safe-area-inset-bottom));
	}

	body.ncv-legal-page {
		padding-bottom: 0;
	}

	.site-header {
		position: fixed;
		background: rgba(252, 250, 245, 0.98);
		border-bottom: 1px solid rgba(20, 46, 36, 0.08);
	}

	.site-header__inner {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 0.75rem;
		min-height: var(--site-header-height-mobile);
	}

	.site-logo,
	.site-branding {
		gap: 0.06rem;
		justify-self: start;
		padding-block: 0;
	}

	.site-logo__name,
	.site-branding__name {
		font-size: 1.5rem;
		line-height: 0.98;
	}

	.site-logo__tagline,
	.site-branding__tagline {
		font-size: 0.52rem;
		letter-spacing: 0.12em;
	}

	.primary-nav,
	.site-navigation,
	.site-header__phone,
	.site-header__cta {
		display: none;
	}

	.header-actions,
	.site-header__actions {
		justify-content: end;
	}

	.mobile-menu-toggle {
		display: inline-flex;
	}

	.mobile-menu {
		grid-column: 1 / -1;
	}

	.home-hero {
		min-height: auto;
	}

	.home-hero__inner {
		min-height: 0;
		padding: 4.25rem 0 5.25rem;
	}

	.page-hero--compact {
		min-height: 0;
	}

	.page-hero--compact::before {
		background: linear-gradient(90deg, rgba(243, 236, 221, 0.99) 0%, rgba(243, 236, 221, 0.97) 64%, rgba(243, 236, 221, 0.82) 100%);
	}

	.page-hero--compact::after {
		right: -32vw;
		width: 96vw;
		opacity: 0.12;
	}

	.page-hero--compact .page-hero__inner,
	.page-hero--compact .archive-hero__inner,
	.page-hero--contact .page-hero__inner {
		min-height: 0;
		padding: 2.35rem 0 2.15rem;
	}

	.page-hero--compact h1 {
		max-width: 100%;
		font-size: clamp(1.9rem, 7vw, 2.25rem);
		line-height: 1.06;
	}

	.page-hero--compact p:last-child {
		max-width: 100%;
		font-size: 0.96rem;
	}

	.page-hero--compact + .site-section,
	.page-hero--contact + .contact-page {
		padding-top: 1.6rem;
	}

	.rooms-assurance {
		padding: 0.85rem 0;
	}

	.rooms-archive__heading {
		gap: 0.9rem;
	}

	.rooms-archive__heading > p {
		max-width: 100%;
	}

	.room-modal {
		--room-modal-header-offset: var(--site-header-height-mobile);
		--room-modal-bottom-offset: calc(86px + env(safe-area-inset-bottom));
		padding: 10px;
	}

	.room-modal__dialog {
		grid-template-columns: 1fr;
		width: calc(100vw - 20px);
		max-height: calc(100dvh - var(--room-modal-header-offset) - var(--room-modal-bottom-offset) - 20px);
		overflow-y: auto;
		border-radius: 18px;
	}

	.room-modal__close {
		position: sticky;
		top: 0.65rem;
		right: auto;
		grid-column: 1;
		justify-self: end;
		margin: 0.55rem 0.55rem -36px 0;
	}

	.room-modal__gallery,
	.room-modal__content {
		max-height: none;
		overflow: visible;
	}

	.room-modal__gallery {
		gap: 0.42rem;
		padding: 0.58rem;
	}

	.room-modal__main-image img {
		height: auto;
		max-height: 220px;
	}

	.room-modal__thumbs {
		grid-auto-columns: 58px;
		max-height: 62px;
		gap: 0.36rem;
	}

	.room-modal__nav {
		width: 36px;
		height: 36px;
	}

	.contact-form-card {
		order: -1;
	}

	.home-hero__overlay {
		background: linear-gradient(0deg, rgba(12, 22, 17, 0.72), rgba(12, 22, 17, 0.42));
	}

	.home-hero h1 {
		font-size: clamp(2.45rem, 9vw, 3.35rem);
	}

	.seo-grid,
	.experience-showcase__tiles,
	.room-gallery,
	.room-facts,
	.room-amenities ul,
	.site-footer__inner {
		grid-template-columns: 1fr;
	}

	.welcome-features {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.75rem;
	}

	.welcome-feature {
		min-height: 148px;
		padding: 1rem 0.75rem;
	}

	.booking-strip {
		margin-top: -2rem;
	}

	.booking-strip__inner {
		grid-template-columns: 1fr;
		border-radius: 16px;
	}

	.booking-strip__item {
		border-radius: 0;
		border-right: 0;
		border-bottom: 1px solid var(--color-border);
	}

	.booking-strip__item:first-child {
		border-radius: 16px 16px 0 0;
	}

	.booking-guests-menu {
		right: 0;
		left: 0;
	}

	.booking-strip__button {
		width: 100%;
		min-height: 54px;
		border-radius: 0 0 16px 16px;
	}

	.flatpickr-calendar {
		max-width: calc(100vw - 1rem);
	}

	.section-heading--split,
	.reviews-summary,
	.page-cta__inner,
	.site-footer__bottom {
		align-items: flex-start;
		flex-direction: column;
	}

	.reviews-summary__score {
		width: 100%;
	}

	.mobile-sticky-bar {
		position: fixed;
		z-index: 10010;
		right: 0;
		bottom: 0;
		left: 0;
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 0.65rem;
		padding: 0.75rem max(0.9rem, env(safe-area-inset-left)) calc(0.75rem + env(safe-area-inset-bottom)) max(0.9rem, env(safe-area-inset-right));
		border-top: 1px solid rgba(20, 46, 36, 0.08);
		background: rgba(252, 250, 245, 0.94);
		box-shadow: 0 -14px 36px rgba(20, 46, 36, 0.14);
		backdrop-filter: blur(16px);
	}

	.mobile-sticky-bar a {
		display: inline-flex;
		gap: 0.5rem;
		align-items: center;
		justify-content: center;
		min-width: 0;
		min-height: 50px;
		padding: 0 0.85rem;
		border-radius: 999px;
		font-size: 0.94rem;
		font-weight: 820;
		line-height: 1;
		text-decoration: none;
		transition: background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
	}

	.mobile-sticky-bar__phone {
		border: 1px solid rgba(20, 46, 36, 0.14);
		background: var(--color-white);
		color: var(--color-green-deep);
	}

	.mobile-sticky-bar__booking {
		border: 1px solid var(--color-green-deep);
		background: var(--color-green-deep);
		color: var(--color-white);
	}

	.mobile-sticky-bar a:hover,
	.mobile-sticky-bar a:focus-visible {
		box-shadow: 0 8px 20px rgba(20, 46, 36, 0.14);
		outline: 0;
	}
}

@media (max-width: 782px) {
    body.admin-bar .site-header {
        top: 0;
    }

	body.admin-bar .room-modal {
		--room-modal-header-offset: var(--site-header-height-mobile);
	}
}

@media (max-width: 620px) {
	.site-container {
		width: min(100% - 1.25rem, var(--container-max-width));
	}

	.site-section {
		padding: clamp(3.4rem, 14vw, 4.5rem) 0;
	}

	h1,
	.home-hero h1 {
		max-width: 330px;
		font-size: clamp(1.95rem, 7.5vw, 2.18rem);
		overflow-wrap: anywhere;
		text-wrap: auto;
	}

	.home-hero__content {
		max-width: 330px;
	}

	h2 {
		font-size: clamp(1.85rem, 9vw, 2.35rem);
	}

	.home-hero__lead {
		font-size: 1rem;
		overflow-wrap: break-word;
	}

	.home-hero__actions,
	.final-cta__actions {
		flex-direction: column;
	}

	.home-hero__actions .button,
	.final-cta__actions .button,
	.room-card__button {
		width: 100%;
	}

	.room-card__actions,
	.room-modal__actions {
		align-items: stretch;
		flex-direction: column;
	}

	.room-card__availability,
	.room-modal__actions .button {
		width: 100%;
	}

	.home-hero__rating {
		justify-items: start;
		max-width: 220px;
		text-align: left;
	}

	.script-heading {
		font-size: 2.15rem;
	}

	.room-grid,
	.ncv-rooms-grid,
	.place-grid,
	.ncv-places-grid,
	.surroundings-group .place-grid,
	.surroundings-group .ncv-places-grid,
	.review-grid,
	.ncv-reviews-grid {
		grid-template-columns: 1fr;
	}

	.rooms-assurance__grid,
	.rooms-archive__grid.room-grid,
	.rooms-archive__grid.ncv-rooms-grid,
	.room-modal__facts,
	.room-modal__amenities ul {
		grid-template-columns: 1fr;
	}

	.rooms-assurance__item {
		min-height: 58px;
	}

	.room-modal {
		padding: 10px;
	}

	.room-modal__dialog {
		width: calc(100vw - 20px);
		max-height: calc(100dvh - var(--room-modal-header-offset) - var(--room-modal-bottom-offset) - 20px);
		border-radius: 18px;
	}

	.room-modal__close {
		top: 0.65rem;
		margin: 0.55rem 0.55rem -36px 0;
	}

	.room-modal__gallery {
		gap: 0.48rem;
		padding: 0.55rem;
	}

	.room-modal__main-image img {
		aspect-ratio: 4 / 3;
		max-height: 220px;
	}

	.room-modal__thumbs {
		grid-auto-columns: 56px;
		max-height: 60px;
	}

	.room-modal__content {
		padding: 0.95rem;
	}

	.room-modal__content h2 {
		font-size: clamp(2rem, 10vw, 2.45rem);
	}

	.room-modal__lead {
		font-size: 0.94rem;
	}

	.room-modal__pricing {
		padding: 0.58rem;
	}

	.room-modal__pricing-head {
		gap: 0.55rem;
		margin-bottom: 0.44rem;
	}

	.room-modal__pricing-head h3 {
		font-size: 0.92rem;
	}

	.room-modal__price {
		min-width: 88px;
	}

	.room-modal__price strong {
		font-size: 1.16rem;
	}

	.room-modal__price-grid {
		gap: 0.32rem;
	}

	.room-modal__price-item {
		min-height: 32px;
		padding: 0.3rem 0.4rem;
	}

	.room-modal__price-item span {
		font-size: 0.68rem;
	}

	.room-modal__price-item strong {
		font-size: 0.84rem;
	}

	.room-modal__facts div:nth-child(odd) {
		border-right: 0;
	}

	.room-modal__facts div:nth-child(even) {
		padding-left: 0;
	}

	.room-modal__facts div + div {
		border-top: 1px solid rgba(20, 46, 36, 0.12);
	}

	.room-modal__actions {
		gap: 0.55rem;
	}

	.final-cta__inner,
	.page-cta__inner {
		padding: 1.25rem;
	}

	.final-cta__details p,
	.site-footer__contact p {
		grid-template-columns: auto 1fr;
	}

	.final-cta__details p a,
	.site-footer__contact p a,
	.final-cta__detail-value,
	.final-cta__details p strong,
	.site-footer__contact p strong {
		grid-column: 2;
		justify-self: start;
	}
}

@media (max-width: 768px) {
	:root {
		--ncv-mobile-page-gutter: 16px;
		--ncv-mobile-booking-width: min(calc(100% - (var(--ncv-mobile-page-gutter) * 2)), 540px);
		--ncv-mobile-calendar-width: min(340px, calc(100vw - (var(--ncv-mobile-page-gutter) * 2)));
	}

	html,
	body {
		overflow-x: hidden;
	}

	body.home {
		padding-bottom: 0;
	}

	body.home .mobile-sticky-bar {
		display: none;
	}

	.site-section {
		padding: clamp(2.75rem, 9vw, 3.75rem) 0;
	}

	.home-hero {
		min-height: auto;
	}

	.home-hero__overlay {
		background:
			linear-gradient(0deg, rgba(12, 22, 17, 0.7), rgba(12, 22, 17, 0.4)),
			linear-gradient(90deg, rgba(12, 22, 17, 0.3), rgba(12, 22, 17, 0.08));
	}

	.home-hero__inner {
		justify-items: center;
		gap: 1rem;
		padding-top: clamp(3rem, 10vw, 4.15rem);
		padding-bottom: clamp(4.2rem, 12vw, 5.2rem);
		text-align: center;
	}

	.home-hero__content,
	.home-hero h1,
	.home-hero__lead {
		width: 100%;
		max-width: 390px;
		margin-inline: auto;
	}

	.home-hero h1 {
		font-size: clamp(2rem, 7vw, 2.7rem);
		line-height: 1.04;
		overflow-wrap: normal;
		text-wrap: balance;
	}

	.home-hero__lead {
		margin-top: 0.85rem;
		font-size: 1rem;
		line-height: 1.52;
	}

	.home-hero__actions,
	.final-cta__actions {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0.65rem;
		width: min(100%, 390px);
		margin-inline: auto;
	}

	.home-hero__actions .button,
	.final-cta__actions .button,
	.section-actions .button,
	.experience-showcase__content > .button,
	.places-preview .section-heading--split > .button {
		width: 100%;
		min-height: 46px;
	}

	.home-hero__rating {
		justify-self: center;
		display: grid;
		grid-template-columns: auto minmax(0, 1fr);
		justify-items: start;
		align-items: center;
		gap: 0.16rem 0.72rem;
		width: min(100%, 360px);
		max-width: none;
		margin-top: 0.25rem;
		padding: 0.72rem 0.9rem;
		text-align: left;
	}

	.home-hero__rating-score {
		grid-row: span 2;
	}

	.home-hero__rating-score strong {
		font-size: 2rem;
	}

	.home-hero__rating .rating-stars,
	.home-hero__rating a {
		grid-column: 2;
	}

	.booking-strip {
		z-index: 40;
		margin-top: -2.15rem;
	}

	.booking-strip .site-container {
		width: var(--ncv-mobile-booking-width);
	}

	.booking-strip__inner {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0.58rem;
		overflow: visible;
		padding: 0.65rem;
		border-color: rgba(222, 212, 194, 0.72);
		border-radius: 20px;
		background: rgba(252, 250, 245, 0.98);
		box-shadow: 0 18px 42px rgba(20, 46, 36, 0.14);
	}

	.booking-strip__item,
	.booking-strip__item:first-child {
		grid-template-columns: 1.1rem minmax(0, 1fr);
		gap: 0.62rem;
		min-height: 58px;
		padding: 0.68rem 0.82rem;
		border: 1px solid rgba(222, 212, 194, 0.78);
		border-radius: 14px;
		background: var(--color-white);
	}

	.booking-strip__item:focus-within {
		box-shadow: inset 0 0 0 2px rgba(80, 111, 63, 0.14);
	}

	.booking-strip__item .lucide {
		width: 1rem;
		height: 1rem;
	}

	.booking-strip__field {
		gap: 0.2rem;
	}

	.booking-strip__label {
		font-size: 0.7rem;
		letter-spacing: 0.04em;
	}

	.booking-strip__control,
	.booking-strip__guest-trigger {
		height: auto;
		min-height: 1.45rem;
		padding: 0;
		font-size: 0.96rem;
		line-height: 1.25;
	}

	.booking-strip__guest-trigger .lucide {
		width: 0.95rem;
		height: 0.95rem;
	}

	.booking-strip__item--guests {
		z-index: 45;
	}

	.booking-strip__item--guests.is-open {
		z-index: 10040;
	}

	.booking-strip__item--guests .booking-strip__field {
		position: static;
	}

	.booking-guests-menu {
		z-index: 10040;
		top: auto;
		right: 0;
		bottom: calc(100% + 0.46rem);
		left: 0;
		gap: 0.05rem;
		max-height: min(15rem, 42vh);
		padding: 0.35rem;
		border-color: rgba(222, 212, 194, 0.9);
		border-radius: 14px;
		box-shadow: 0 18px 46px rgba(20, 46, 36, 0.16);
	}

	.booking-guests-menu__option {
		min-height: 40px;
		padding: 0.58rem 0.8rem;
		border-radius: 10px;
		font-size: 0.92rem;
		line-height: 1.25;
	}

	.booking-strip__button {
		min-height: 52px;
		padding: 0.7rem 1rem;
		border: 0;
		border-radius: 14px;
		background: var(--color-green-deep);
		box-shadow: none;
	}

	.flatpickr-calendar.open {
		z-index: 10030;
		left: 50% !important;
		right: auto !important;
		width: var(--ncv-mobile-calendar-width);
		max-width: calc(100vw - (var(--ncv-mobile-page-gutter) * 2));
		overflow: hidden;
		border-radius: 16px;
		box-shadow: 0 22px 54px rgba(20, 46, 36, 0.22);
		transform: translateX(-50%) !important;
	}

	.flatpickr-calendar.open .flatpickr-innerContainer,
	.flatpickr-calendar.open .flatpickr-rContainer,
	.flatpickr-calendar.open .flatpickr-days,
	.flatpickr-calendar.open .dayContainer {
		width: var(--ncv-mobile-calendar-width);
		min-width: var(--ncv-mobile-calendar-width);
		max-width: var(--ncv-mobile-calendar-width);
	}

	.flatpickr-calendar.open .flatpickr-months {
		padding: 0.45rem 0.5rem 0.15rem;
	}

	.flatpickr-calendar.open .flatpickr-current-month {
		left: 0;
		width: 100%;
		padding: 0.38rem 2.65rem 0;
		font-size: 0.98rem;
	}

	.flatpickr-calendar.open .flatpickr-prev-month,
	.flatpickr-calendar.open .flatpickr-next-month {
		top: 0.38rem;
		width: 2.2rem;
		height: 2.2rem;
	}

	.flatpickr-calendar.open span.flatpickr-weekday {
		font-size: 0.7rem;
	}

	.flatpickr-calendar.open .flatpickr-day {
		flex-basis: calc(var(--ncv-mobile-calendar-width) / 7);
		width: calc(var(--ncv-mobile-calendar-width) / 7);
		max-width: calc(var(--ncv-mobile-calendar-width) / 7);
		height: 38px;
		line-height: 38px;
	}

	.section-heading {
		margin-bottom: 1.5rem;
	}

	.section-heading--split,
	.reviews-summary {
		align-items: center;
		gap: 1rem;
		text-align: center;
	}

	.section-heading--split .section-kicker,
	.experience-showcase__content .section-kicker,
	.reviews-summary .section-kicker {
		margin-inline: auto;
	}

	.section-actions {
		width: min(100%, 420px);
		margin-top: 1.35rem;
		margin-inline: auto;
	}

	.welcome-section__inner,
	.experience-showcase,
	.final-cta__inner {
		gap: 1.2rem;
	}

	.welcome-section__content,
	.experience-showcase__content {
		padding-right: 0;
		text-align: center;
	}

	.welcome-section__content p:last-child {
		margin-inline: auto;
	}

	.experience-showcase__content > .button {
		margin-top: 0.2rem;
	}

	.room-card__image {
		aspect-ratio: 16 / 9.6;
		max-height: none;
	}

	.room-card__content {
		gap: 0.48rem;
		padding: 0.88rem;
	}

	.room-card__title {
		font-size: 1.08rem;
	}

	.room-card__meta {
		font-size: 0.82rem;
	}

	.room-card__actions {
		align-items: stretch;
		width: 100%;
	}

	.room-card__button,
	.room-card__availability {
		width: 100%;
		min-height: 42px;
	}

	.review-card__content,
	.place-card__content {
		padding: 0.95rem;
	}

	.reviews-summary__score {
		min-width: 0;
		width: min(100%, 340px);
		text-align: center;
	}

	.final-cta__inner {
		padding: 1.25rem;
		text-align: center;
	}

	.final-cta__details {
		padding: 1rem;
		text-align: left;
	}
}

@media (max-width: 430px) {
	.home-hero__content,
	.home-hero h1,
	.home-hero__lead {
		max-width: 350px;
	}

	.booking-strip__inner {
		padding: 0.55rem;
	}

	.welcome-features {
		gap: 0.6rem;
	}

	.welcome-feature {
		min-height: 138px;
		padding: 0.85rem 0.55rem;
	}

	.welcome-feature > .lucide {
		width: 1.85rem;
		height: 1.85rem;
		margin-bottom: 0.6rem;
	}

	.welcome-feature h3 {
		font-size: 0.86rem;
	}

	.welcome-feature p {
		font-size: 0.8rem;
		line-height: 1.42;
	}

	.welcome-local-list li {
		grid-template-columns: 1fr;
		gap: 0.25rem;
	}

}

/* Mobile surroundings page refinement. */
@media (max-width: 768px) {
	body.ncv-surroundings-page {
		padding-bottom: calc(82px + env(safe-area-inset-bottom));
	}

	body.ncv-surroundings-page .surroundings-hero {
		min-height: 0;
	}

	body.ncv-surroundings-page .surroundings-hero::after {
		right: 0;
		width: 100%;
		background-size: auto 112%;
		opacity: 0.1;
	}

	body.ncv-surroundings-page .surroundings-hero .page-hero__inner {
		min-height: 0;
		padding: 1.65rem 0 1.4rem;
	}

	body.ncv-surroundings-page .surroundings-hero .section-kicker {
		margin-bottom: 0.35rem;
		font-size: 0.68rem;
		line-height: 1.15;
		letter-spacing: 0.04em;
	}

	body.ncv-surroundings-page .surroundings-hero h1 {
		max-width: 38rem;
		margin-bottom: 0.45rem;
		font-size: clamp(1.86rem, 6vw, 2.18rem);
		line-height: 1.06;
		text-wrap: balance;
	}

	body.ncv-surroundings-page .surroundings-hero p:last-child {
		max-width: 39rem;
		font-size: 0.93rem;
		line-height: 1.45;
	}

	body.ncv-surroundings-page .surroundings-hero + .surroundings-intro-section {
		padding-top: 1.15rem;
	}

	body.ncv-surroundings-page .surroundings-intro-section {
		padding-bottom: 1.35rem;
	}

	body.ncv-surroundings-page .surroundings-intro {
		grid-template-columns: 1fr;
		gap: 0.9rem;
	}

	body.ncv-surroundings-page .surroundings-intro__content h2 {
		margin-bottom: 0.42rem;
		font-size: clamp(1.42rem, 4.7vw, 1.72rem);
		line-height: 1.1;
	}

	body.ncv-surroundings-page .surroundings-intro__content p:last-child {
		font-size: 0.9rem;
		line-height: 1.45;
	}

	body.ncv-surroundings-page .surroundings-intro__points {
		gap: 0.48rem;
	}

	body.ncv-surroundings-page .surroundings-intro__points li {
		padding: 0.68rem 0.78rem;
		font-size: 0.86rem;
		line-height: 1.25;
	}

	body.ncv-surroundings-page .surroundings-intro-section + .surroundings-groups-section {
		padding-top: 1.25rem;
	}

	body.ncv-surroundings-page .surroundings-groups-section {
		padding-bottom: 2.15rem;
	}

	body.ncv-surroundings-page .surroundings-groups {
		gap: 1.85rem;
	}

	body.ncv-surroundings-page .surroundings-group__heading {
		grid-template-columns: 1.12rem minmax(0, 1fr);
		gap: 0.58rem;
		max-width: 40rem;
		margin-bottom: 0.78rem;
	}

	body.ncv-surroundings-page .surroundings-group__heading > .lucide {
		width: 1.08rem;
		height: 1.08rem;
		margin-top: 0.18rem;
		font-size: 1.08rem;
	}

	body.ncv-surroundings-page .surroundings-group__heading h2 {
		margin-bottom: 0.28rem;
		font-size: clamp(1.48rem, 4.7vw, 1.76rem);
		line-height: 1.1;
	}

	body.ncv-surroundings-page .surroundings-group__heading p {
		max-width: 34rem;
		font-size: 0.9rem;
		line-height: 1.42;
	}

	body.ncv-surroundings-page .surroundings-group .place-grid,
	body.ncv-surroundings-page .surroundings-group .ncv-places-grid {
		grid-template-columns: 1fr;
		gap: 0.78rem;
		align-items: stretch;
	}

	body.ncv-surroundings-page .surroundings-city-groups {
		gap: 1.05rem;
	}

	body.ncv-surroundings-page .surroundings-city-group {
		gap: 0.58rem;
	}

	body.ncv-surroundings-page .surroundings-city-title {
		font-size: 0.94rem;
		line-height: 1.18;
	}

	body.ncv-surroundings-page .surroundings-group .place-card,
	body.ncv-surroundings-page .surroundings-group .ncv-place-card {
		border-color: rgba(222, 212, 194, 0.88);
		border-radius: var(--radius);
		box-shadow: 0 10px 26px rgba(20, 46, 36, 0.07);
	}

	body.ncv-surroundings-page .surroundings-group .place-card__media {
		aspect-ratio: 16 / 10;
		line-height: 0;
	}

	body.ncv-surroundings-page .surroundings-group .place-card__image {
		width: 100%;
		height: 100%;
		aspect-ratio: auto;
		object-fit: cover;
	}

	body.ncv-surroundings-page .surroundings-group .place-card__content {
		gap: 0.5rem;
		padding: 0.82rem 0.86rem 0.9rem;
	}

	body.ncv-surroundings-page .surroundings-group .place-card__distance {
		min-height: 26px;
		padding: 0.24rem 0.52rem;
		font-size: 0.76rem;
		line-height: 1.15;
	}

	body.ncv-surroundings-page .surroundings-group .place-card__distance .lucide {
		width: 0.82rem;
		height: 0.82rem;
	}

	body.ncv-surroundings-page .surroundings-group .place-card__title {
		font-size: 1.13rem;
		line-height: 1.14;
	}

	body.ncv-surroundings-page .surroundings-group .place-card__meta {
		gap: 0.28rem;
		padding: 0.46rem 0;
		border-top: 1px solid rgba(20, 46, 36, 0.08);
		border-bottom: 1px solid rgba(20, 46, 36, 0.08);
		font-size: 0.82rem;
		line-height: 1.25;
	}

	body.ncv-surroundings-page .surroundings-group .place-card__meta li {
		display: grid;
		grid-template-columns: 0.95rem 4.8rem minmax(0, 1fr);
		gap: 0.32rem;
		align-items: center;
		min-width: 0;
	}

	body.ncv-surroundings-page .surroundings-group .place-card__meta .lucide {
		width: 0.9rem;
		height: 0.9rem;
		font-size: 0.9rem;
	}

	body.ncv-surroundings-page .surroundings-group .place-card__meta span {
		min-width: 0;
		font-size: 0.68rem;
		line-height: 1.1;
		text-transform: uppercase;
	}

	body.ncv-surroundings-page .surroundings-group .place-card__description {
		font-size: 0.86rem;
		line-height: 1.4;
		-webkit-line-clamp: 3;
	}

	body.ncv-surroundings-page .surroundings-group .place-card__map-link {
		gap: 0.34rem;
		width: fit-content;
		margin-top: 0.02rem;
		font-size: 0.84rem;
		line-height: 1.2;
	}

	body.ncv-surroundings-page .surroundings-cta {
		padding: 1.75rem 0;
	}

	body.ncv-surroundings-page .surroundings-cta .page-cta__inner {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0.9rem;
		padding: 1.12rem;
		text-align: center;
	}

	body.ncv-surroundings-page .surroundings-cta .section-kicker {
		margin: 0 auto 0.35rem;
		font-size: 0.68rem;
		line-height: 1.15;
		letter-spacing: 0.04em;
	}

	body.ncv-surroundings-page .surroundings-cta h2 {
		margin-bottom: 0.42rem;
		font-size: 1.62rem;
		line-height: 1.08;
	}

	body.ncv-surroundings-page .surroundings-cta p {
		max-width: 32rem;
		margin-inline: auto;
		font-size: 0.9rem;
		line-height: 1.45;
	}

	body.ncv-surroundings-page .surroundings-cta .button {
		justify-self: center;
		width: min(100%, 280px);
		min-height: 44px;
		padding: 0.68rem 1rem;
		border-color: rgba(255, 255, 255, 0.82);
		background: var(--color-white);
		color: var(--color-green-deep);
		box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
	}

	body.ncv-surroundings-page .site-footer {
		padding-top: 2rem;
		padding-bottom: calc(1.1rem + 84px + env(safe-area-inset-bottom));
	}

	body.ncv-surroundings-page .site-footer__inner {
		gap: 1rem;
	}

	body.ncv-surroundings-page .site-footer__logo {
		margin-bottom: 0.32rem;
		font-size: 1.52rem;
		line-height: 1.05;
	}

	body.ncv-surroundings-page .site-footer__brand p:last-child {
		max-width: 32rem;
		margin-bottom: 0;
		font-size: 0.88rem;
		line-height: 1.46;
	}

	body.ncv-surroundings-page .site-footer__nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.22rem 0.65rem;
	}

	body.ncv-surroundings-page .site-footer__nav a {
		display: flex;
		align-items: center;
		min-height: 34px;
	}

	body.ncv-surroundings-page .site-footer__contact {
		gap: 0.52rem;
	}

	body.ncv-surroundings-page .site-footer__contact p {
		grid-template-columns: 1rem minmax(0, 1fr);
		gap: 0.08rem 0.52rem;
		align-items: start;
		font-size: 0.88rem;
		line-height: 1.38;
	}

	body.ncv-surroundings-page .site-footer__contact .lucide {
		width: 1rem;
		height: 1rem;
		margin-top: 0.16rem;
	}

	body.ncv-surroundings-page .site-footer__contact p strong,
	body.ncv-surroundings-page .site-footer__contact p a,
	body.ncv-surroundings-page .site-footer__contact p .site-footer__contact-value {
		grid-column: 2;
	}

	body.ncv-surroundings-page .site-footer__contact p strong {
		font-size: 0.72rem;
		line-height: 1.1;
		text-transform: uppercase;
	}

	body.ncv-surroundings-page .site-footer__contact p a {
		overflow-wrap: anywhere;
	}

	body.ncv-surroundings-page .site-footer__contact p .site-footer__contact-value {
		min-width: 0;
		overflow-wrap: anywhere;
	}

	body.ncv-surroundings-page .site-footer__bottom {
		gap: 0.28rem;
		margin-top: 1.15rem;
		padding-top: 0.85rem;
		font-size: 0.82rem;
		line-height: 1.35;
	}

	body.ncv-surroundings-page .mobile-sticky-bar {
		gap: 0.55rem;
		padding: 0.62rem max(0.75rem, env(safe-area-inset-left)) calc(0.62rem + env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-right));
		border-top-color: rgba(20, 46, 36, 0.09);
		background: rgba(255, 255, 255, 0.97);
		box-shadow: 0 -12px 30px rgba(20, 46, 36, 0.12);
	}

	body.ncv-surroundings-page .mobile-sticky-bar a {
		gap: 0.42rem;
		min-height: 48px;
		padding: 0 0.72rem;
		border-radius: var(--radius);
		font-size: 0.9rem;
		line-height: 1;
	}

	body.ncv-surroundings-page .mobile-sticky-bar a .lucide {
		width: 0.95rem;
		height: 0.95rem;
	}

	body.ncv-surroundings-page .mobile-sticky-bar__phone {
		border-color: rgba(20, 46, 36, 0.14);
		background: var(--color-white);
		color: var(--color-green-deep);
	}

	body.ncv-surroundings-page .mobile-sticky-bar__booking {
		border-color: var(--color-green-deep);
		background: var(--color-green-deep);
		color: var(--color-white);
	}

	body.ncv-surroundings-page .mobile-sticky-bar__booking:only-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 620px) {
	body.ncv-surroundings-page .surroundings-group .place-grid,
	body.ncv-surroundings-page .surroundings-group .ncv-places-grid {
		grid-template-columns: 1fr;
		gap: 0.82rem;
	}
}

@media (max-width: 430px) {
	body.ncv-surroundings-page .surroundings-hero .page-hero__inner {
		padding: 1.48rem 0 1.28rem;
	}

	body.ncv-surroundings-page .surroundings-hero h1 {
		font-size: 1.92rem;
	}

	body.ncv-surroundings-page .surroundings-hero p:last-child,
	body.ncv-surroundings-page .surroundings-group__heading p {
		font-size: 0.88rem;
	}

	body.ncv-surroundings-page .surroundings-group__heading h2 {
		font-size: 1.46rem;
	}

	body.ncv-surroundings-page .surroundings-group .place-card__meta li {
		grid-template-columns: 0.95rem 4.45rem minmax(0, 1fr);
		gap: 0.28rem;
	}

	body.ncv-surroundings-page .surroundings-cta {
		padding: 1.55rem 0;
	}

	body.ncv-surroundings-page .surroundings-cta .page-cta__inner {
		padding: 1rem;
	}

	body.ncv-surroundings-page .site-footer__nav {
		gap: 0.16rem 0.52rem;
	}

	body.ncv-surroundings-page .mobile-sticky-bar {
		gap: 0.45rem;
		padding-inline: max(0.62rem, env(safe-area-inset-left));
	}

	body.ncv-surroundings-page .mobile-sticky-bar a {
		min-height: 46px;
		padding-inline: 0.58rem;
		font-size: 0.86rem;
	}
}

/* Mobile rooms archive refinement. */
@media (max-width: 768px) {
	body.post-type-archive-ncv_room {
		padding-bottom: calc(84px + env(safe-area-inset-bottom));
	}

	body.post-type-archive-ncv_room .rooms-archive-hero {
		min-height: 0;
	}

	body.post-type-archive-ncv_room .rooms-archive-hero .archive-hero__inner {
		min-height: 0;
		padding: 1.65rem 0 1.45rem;
	}

	body.post-type-archive-ncv_room .rooms-archive-hero .section-kicker {
		margin-bottom: 0.35rem;
		font-size: 0.72rem;
		line-height: 1.15;
	}

	body.post-type-archive-ncv_room .rooms-archive-hero h1 {
		margin-bottom: 0.45rem;
		font-size: 2.16rem;
		line-height: 1.05;
		overflow-wrap: normal;
		text-wrap: balance;
	}

	body.post-type-archive-ncv_room .rooms-archive-hero p:last-child {
		max-width: 38rem;
		margin: 0;
		font-size: 0.96rem;
		line-height: 1.48;
	}

	body.post-type-archive-ncv_room .rooms-assurance {
		padding: 0.6rem 0 0.7rem;
		border-bottom-color: rgba(222, 212, 194, 0.58);
		background: var(--color-ivory);
	}

	body.post-type-archive-ncv_room .rooms-assurance__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.5rem;
		width: min(100% - 1.25rem, var(--container-max-width));
	}

	body.post-type-archive-ncv_room .rooms-assurance__item {
		gap: 0.46rem;
		min-height: 46px;
		padding: 0.52rem 0.66rem;
		border-color: rgba(222, 212, 194, 0.82);
		border-radius: var(--radius);
		background: var(--color-white);
		font-size: 0.8rem;
		line-height: 1.22;
		box-shadow: 0 8px 20px rgba(20, 46, 36, 0.045);
	}

	body.post-type-archive-ncv_room .rooms-assurance__item .lucide {
		width: 1rem;
		height: 1rem;
		font-size: 1rem;
	}

	body.post-type-archive-ncv_room .rooms-assurance__item span {
		min-width: 0;
		overflow: hidden;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	body.post-type-archive-ncv_room .rooms-archive.site-section {
		padding-top: 1.25rem;
		padding-bottom: 2.1rem;
	}

	body.post-type-archive-ncv_room .rooms-archive__heading {
		display: grid;
		gap: 0.48rem;
		align-items: start;
		margin-bottom: 0.95rem;
		text-align: left;
	}

	body.post-type-archive-ncv_room .rooms-archive__heading .section-kicker {
		margin-bottom: 0.35rem;
		font-size: 0.72rem;
		line-height: 1.15;
	}

	body.post-type-archive-ncv_room .rooms-archive__heading h2 {
		max-width: 34rem;
		font-size: 1.82rem;
		line-height: 1.12;
	}

	body.post-type-archive-ncv_room .rooms-archive__heading > p {
		max-width: 38rem;
		font-size: 0.93rem;
		line-height: 1.52;
	}

	body.post-type-archive-ncv_room .rooms-archive__intro {
		margin-bottom: 1rem;
		padding: 0.88rem;
		border-radius: 10px;
	}

	body.post-type-archive-ncv_room .rooms-archive__intro p {
		font-size: 0.91rem;
		line-height: 1.5;
	}

	body.post-type-archive-ncv_room .rooms-archive__grid.room-grid,
	body.post-type-archive-ncv_room .rooms-archive__grid.ncv-rooms-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.85rem;
	}

	body.post-type-archive-ncv_room .room-card,
	body.post-type-archive-ncv_room .ncv-room-card {
		border-color: rgba(222, 212, 194, 0.86);
		border-radius: var(--radius);
		box-shadow: 0 12px 30px rgba(20, 46, 36, 0.075);
	}

	body.post-type-archive-ncv_room .room-card:hover,
	body.post-type-archive-ncv_room .ncv-room-card:hover {
		transform: none;
	}

	body.post-type-archive-ncv_room .room-card__media,
	body.post-type-archive-ncv_room .room-card__media--placeholder {
		aspect-ratio: 16 / 10;
		max-height: none;
		border-radius: var(--radius) var(--radius) 0 0;
		line-height: 0;
	}

	body.post-type-archive-ncv_room .room-card__image {
		width: 100%;
		height: 100%;
		aspect-ratio: 16 / 10;
		max-height: none;
		object-fit: cover;
	}

	body.post-type-archive-ncv_room .room-card__content {
		gap: 0.46rem;
		padding: 0.84rem 0.88rem 0.92rem;
	}

	body.post-type-archive-ncv_room .room-card__title {
		margin-bottom: 0.04rem;
		font-size: 1.15rem;
		line-height: 1.14;
	}

	body.post-type-archive-ncv_room .room-card__description {
		font-size: 0.88rem;
		line-height: 1.42;
		-webkit-line-clamp: 2;
	}

	body.post-type-archive-ncv_room .room-card__meta {
		gap: 0.3rem;
		margin: 0.08rem 0;
		padding: 0.52rem 0;
		border-top: 1px solid rgba(20, 46, 36, 0.08);
		border-bottom: 1px solid rgba(20, 46, 36, 0.08);
		font-size: 0.82rem;
		line-height: 1.25;
	}

	body.post-type-archive-ncv_room .room-card__meta li {
		display: grid;
		grid-template-columns: 1rem 5.35rem minmax(0, 1fr);
		gap: 0.34rem;
		align-items: center;
		min-width: 0;
	}

	body.post-type-archive-ncv_room .room-card__meta .lucide {
		width: 0.95rem;
		height: 0.95rem;
		font-size: 0.95rem;
	}

	body.post-type-archive-ncv_room .room-card__meta span {
		min-width: 0;
		font-size: 0.7rem;
		line-height: 1.15;
		text-transform: uppercase;
	}

	body.post-type-archive-ncv_room .room-card__amenities {
		gap: 0.32rem;
	}

	body.post-type-archive-ncv_room .room-card__amenities li {
		gap: 0.28rem;
		min-height: 25px;
		padding: 0.23rem 0.5rem;
		border-color: rgba(80, 111, 63, 0.14);
		background: rgba(231, 237, 223, 0.76);
		font-size: 0.72rem;
		line-height: 1.15;
	}

	body.post-type-archive-ncv_room .room-card__amenities .lucide {
		width: 0.78rem;
		height: 0.78rem;
		font-size: 0.78rem;
	}

	body.post-type-archive-ncv_room .room-card__actions {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0.48rem;
		align-items: stretch;
		width: 100%;
		margin-top: 0.18rem;
	}

	body.post-type-archive-ncv_room .room-card__button,
	body.post-type-archive-ncv_room .room-card__availability {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		min-height: 44px;
		padding: 0.65rem 0.85rem;
		border-radius: var(--radius);
		line-height: 1.1;
		text-align: center;
		box-shadow: none;
		transform: none;
	}

	body.post-type-archive-ncv_room .room-card__button {
		border-color: var(--color-green-deep);
		background: var(--color-green-deep);
		color: var(--color-white);
		font-size: 0.74rem;
		letter-spacing: 0.04em;
		text-transform: uppercase;
	}

	body.post-type-archive-ncv_room .room-card__availability {
		border-color: rgba(20, 46, 36, 0.16);
		background: #fbfaf6;
		color: var(--color-green-deep);
		font-size: 0.82rem;
	}

	body.post-type-archive-ncv_room .room-card__button .lucide,
	body.post-type-archive-ncv_room .room-card__availability .lucide {
		width: 0.95rem;
		height: 0.95rem;
	}

	body.post-type-archive-ncv_room .site-footer {
		padding-top: 2rem;
		padding-bottom: calc(1.1rem + 84px + env(safe-area-inset-bottom));
	}

	body.post-type-archive-ncv_room .site-footer__inner {
		gap: 1rem;
	}

	body.post-type-archive-ncv_room .site-footer__logo {
		margin-bottom: 0.32rem;
		font-size: 1.52rem;
		line-height: 1.05;
	}

	body.post-type-archive-ncv_room .site-footer__brand p:last-child {
		max-width: 32rem;
		margin-bottom: 0;
		font-size: 0.88rem;
		line-height: 1.46;
	}

	body.post-type-archive-ncv_room .site-footer__nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.22rem 0.65rem;
	}

	body.post-type-archive-ncv_room .site-footer__nav a {
		display: flex;
		align-items: center;
		min-height: 34px;
	}

	body.post-type-archive-ncv_room .site-footer__contact {
		gap: 0.52rem;
	}

	body.post-type-archive-ncv_room .site-footer__contact p {
		grid-template-columns: 1rem minmax(0, 1fr);
		gap: 0.08rem 0.52rem;
		align-items: start;
		font-size: 0.88rem;
		line-height: 1.38;
	}

	body.post-type-archive-ncv_room .site-footer__contact .lucide {
		width: 1rem;
		height: 1rem;
		margin-top: 0.16rem;
	}

	body.post-type-archive-ncv_room .site-footer__contact p strong,
	body.post-type-archive-ncv_room .site-footer__contact p a {
		grid-column: 2;
	}

	body.post-type-archive-ncv_room .site-footer__contact p strong {
		font-size: 0.72rem;
		line-height: 1.1;
		text-transform: uppercase;
	}

	body.post-type-archive-ncv_room .site-footer__contact p a {
		overflow-wrap: anywhere;
	}

	body.post-type-archive-ncv_room .site-footer__bottom {
		gap: 0.28rem;
		margin-top: 1.15rem;
		padding-top: 0.85rem;
		font-size: 0.82rem;
		line-height: 1.35;
	}

	body.post-type-archive-ncv_room .mobile-sticky-bar {
		gap: 0.55rem;
		padding: 0.62rem max(0.75rem, env(safe-area-inset-left)) calc(0.62rem + env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-right));
		border-top-color: rgba(20, 46, 36, 0.09);
		background: rgba(255, 255, 255, 0.97);
		box-shadow: 0 -12px 30px rgba(20, 46, 36, 0.12);
	}

	body.post-type-archive-ncv_room .mobile-sticky-bar a {
		gap: 0.42rem;
		min-height: 48px;
		padding: 0 0.72rem;
		border-radius: var(--radius);
		font-size: 0.9rem;
		line-height: 1;
	}

	body.post-type-archive-ncv_room .mobile-sticky-bar a .lucide {
		width: 0.95rem;
		height: 0.95rem;
	}

	body.post-type-archive-ncv_room .mobile-sticky-bar__phone {
		border-color: rgba(20, 46, 36, 0.14);
		background: var(--color-white);
		color: var(--color-green-deep);
	}

	body.post-type-archive-ncv_room .mobile-sticky-bar__booking {
		border-color: var(--color-green-deep);
		background: var(--color-green-deep);
		color: var(--color-white);
	}

	body.post-type-archive-ncv_room .mobile-sticky-bar__booking:only-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 620px) {
	body.post-type-archive-ncv_room .rooms-assurance__grid,
	body.post-type-archive-ncv_room .rooms-archive__grid.room-grid,
	body.post-type-archive-ncv_room .rooms-archive__grid.ncv-rooms-grid {
		grid-template-columns: 1fr;
	}

	body.post-type-archive-ncv_room .rooms-archive__grid.room-grid,
	body.post-type-archive-ncv_room .rooms-archive__grid.ncv-rooms-grid {
		gap: 0.9rem;
	}

	body.post-type-archive-ncv_room .rooms-assurance__grid {
		gap: 0.42rem;
	}

	body.post-type-archive-ncv_room .rooms-archive__heading {
		margin-bottom: 0.85rem;
	}

	body.post-type-archive-ncv_room .room-card__content {
		padding: 0.82rem 0.86rem 0.9rem;
	}

	body.post-type-archive-ncv_room .room-card__meta li {
		grid-template-columns: 1rem 5.15rem minmax(0, 1fr);
	}
}

@media (max-width: 430px) {
	body.post-type-archive-ncv_room .rooms-archive-hero .archive-hero__inner {
		padding: 1.48rem 0 1.28rem;
	}

	body.post-type-archive-ncv_room .rooms-archive-hero h1 {
		font-size: 2rem;
	}

	body.post-type-archive-ncv_room .rooms-archive-hero p:last-child,
	body.post-type-archive-ncv_room .rooms-archive__heading > p {
		font-size: 0.92rem;
	}

	body.post-type-archive-ncv_room .rooms-assurance__item {
		min-height: 44px;
		padding: 0.5rem 0.62rem;
		font-size: 0.78rem;
	}

	body.post-type-archive-ncv_room .rooms-archive.site-section {
		padding-top: 1.05rem;
	}

	body.post-type-archive-ncv_room .rooms-archive__heading h2 {
		font-size: 1.64rem;
	}

	body.post-type-archive-ncv_room .room-card__title {
		font-size: 1.12rem;
	}

	body.post-type-archive-ncv_room .room-card__meta li {
		grid-template-columns: 1rem 4.8rem minmax(0, 1fr);
		gap: 0.3rem;
	}

	body.post-type-archive-ncv_room .site-footer__nav {
		gap: 0.16rem 0.52rem;
	}

	body.post-type-archive-ncv_room .mobile-sticky-bar {
		gap: 0.45rem;
		padding-inline: max(0.62rem, env(safe-area-inset-left));
	}

	body.post-type-archive-ncv_room .mobile-sticky-bar a {
		min-height: 46px;
		padding-inline: 0.58rem;
		font-size: 0.86rem;
	}
}

/* Mobile contact page refinement. */
@media (max-width: 768px) {
	body.page-template-page-contact {
		padding-bottom: 0;
		background: var(--color-ivory);
	}

	body.page-template-page-contact .page-hero--contact .site-container,
	body.page-template-page-contact .contact-page .site-container,
	body.page-template-page-contact .page-cta .site-container,
	body.page-template-page-contact .site-footer .site-container {
		width: min(100% - 2rem, var(--container-max-width));
	}

	body.page-template-page-contact .page-hero--contact .page-hero__inner {
		padding: 1.55rem 0 1.35rem;
	}

	body.page-template-page-contact .page-hero--contact .section-kicker {
		margin-bottom: 0.42rem;
		color: rgba(80, 111, 63, 0.9);
		font-size: 0.7rem;
		line-height: 1.16;
	}

	body.page-template-page-contact .page-hero--contact h1 {
		max-width: 22rem;
		margin-bottom: 0.48rem;
		font-size: clamp(1.78rem, 8.2vw, 2.18rem);
		line-height: 1.04;
		overflow-wrap: normal;
		text-wrap: balance;
	}

	body.page-template-page-contact .page-hero--contact p:last-child {
		max-width: 34rem;
		margin: 0;
		font-size: 0.93rem;
		line-height: 1.46;
	}

	body.page-template-page-contact .page-hero--contact + .contact-page {
		padding-top: 1rem;
	}

	body.page-template-page-contact .contact-page.site-section {
		padding-bottom: 1.65rem;
	}

	body.page-template-page-contact .contact-page__layout {
		width: min(100%, 640px);
		gap: 1rem;
		margin-inline: auto;
	}

	body.page-template-page-contact .contact-form-card {
		order: -1;
		width: 100%;
		max-width: 100%;
		padding: 1rem;
		overflow: hidden;
		border-color: rgba(222, 212, 194, 0.86);
		border-radius: 10px;
		box-shadow: 0 10px 26px rgba(32, 44, 32, 0.07);
	}

	body.page-template-page-contact .contact-form-card h2 {
		margin-bottom: 0.42rem;
		font-size: 1.42rem;
		line-height: 1.12;
	}

	body.page-template-page-contact .contact-form-card > p {
		margin-bottom: 0.8rem;
		color: var(--color-muted);
		font-size: 0.88rem;
		line-height: 1.38;
		overflow-wrap: break-word;
	}

	body.page-template-page-contact .availability-prefill-notice {
		gap: 0.55rem;
		margin: 0.72rem 0;
		padding: 0.72rem 0.78rem;
		border-radius: 10px;
		font-size: 0.88rem;
		line-height: 1.38;
	}

	body.page-template-page-contact .availability-prefill-notice .lucide {
		width: 1rem;
		height: 1rem;
		margin-top: 0.16rem;
		font-size: 1rem;
	}

	body.page-template-page-contact .availability-prefill-notice__details {
		margin-top: 0.16rem;
	}

	body.page-template-page-contact .contact-fluent-form {
		margin-top: 0.8rem;
	}

	body.page-template-page-contact .contact-fluent-form .ff-el-group {
		margin-bottom: 0.62rem;
	}

	body.page-template-page-contact .contact-fluent-form .ff-el-input--label {
		margin-bottom: 0.18rem;
		font-size: 0.86rem;
		line-height: 1.24;
	}

	body.page-template-page-contact .contact-fluent-form .ff-el-input--label label {
		line-height: 1.2;
	}

	body.page-template-page-contact .contact-fluent-form .ff-el-form-control {
		min-width: 0;
		width: 100%;
		border-color: rgba(222, 212, 194, 0.9);
		border-radius: 8px;
		background: var(--color-ivory);
		font-size: 0.95rem;
		line-height: 1.25;
	}

	body.page-template-page-contact .contact-fluent-form input.ff-el-form-control,
	body.page-template-page-contact .contact-fluent-form select.ff-el-form-control {
		min-height: 46px;
		padding: 0.58rem 0.76rem;
	}

	body.page-template-page-contact .contact-fluent-form textarea.ff-el-form-control {
		min-height: 132px;
		padding: 0.68rem 0.76rem;
		line-height: 1.4;
		resize: vertical;
	}

	body.page-template-page-contact .contact-fluent-form .flatpickr-input[readonly] {
		cursor: pointer;
	}

	body.page-template-page-contact .contact-fluent-form .ff-t-container {
		display: grid;
		grid-template-columns: 1fr;
		gap: 0.62rem;
		width: 100%;
		max-width: 100%;
		margin-bottom: 0.62rem;
	}

	body.page-template-page-contact .contact-fluent-form .ff-t-cell {
		width: 100%;
		padding: 0;
	}

	body.page-template-page-contact .contact-fluent-form .ff-t-cell .ff-el-group {
		margin-bottom: 0;
	}

	body.page-template-page-contact .contact-fluent-form .ff-btn-submit,
	body.page-template-page-contact .contact-fluent-form .ff-btn-submit:not(.ff_btn_no_style) {
		width: 100%;
		min-height: 48px;
		margin-top: 0.08rem;
		padding: 0.7rem 1rem;
		border-color: var(--color-green-deep);
		background: var(--color-green-deep);
		color: var(--color-white);
		box-shadow: none;
	}

	body.page-template-page-contact .flatpickr-calendar.open {
		--ncv-contact-calendar-width: min(340px, calc(100vw - 32px));
		z-index: 10060;
		width: var(--ncv-contact-calendar-width);
		max-width: calc(100vw - 32px);
		overflow: hidden;
		border: 1px solid rgba(222, 212, 194, 0.95);
		border-radius: 16px;
		background: var(--color-white);
		box-shadow: 0 22px 54px rgba(20, 46, 36, 0.22);
	}

	body.page-template-page-contact .flatpickr-calendar.open .flatpickr-innerContainer,
	body.page-template-page-contact .flatpickr-calendar.open .flatpickr-rContainer,
	body.page-template-page-contact .flatpickr-calendar.open .flatpickr-days,
	body.page-template-page-contact .flatpickr-calendar.open .dayContainer {
		width: var(--ncv-contact-calendar-width);
		min-width: var(--ncv-contact-calendar-width);
		max-width: var(--ncv-contact-calendar-width);
	}

	body.page-template-page-contact .flatpickr-calendar.open .flatpickr-day {
		flex-basis: calc(var(--ncv-contact-calendar-width) / 7);
		width: calc(var(--ncv-contact-calendar-width) / 7);
		max-width: calc(var(--ncv-contact-calendar-width) / 7);
		height: 36px;
		line-height: 36px;
	}

	body.page-template-page-contact .contact-details {
		display: grid;
		gap: 0.85rem;
	}

	body.page-template-page-contact .contact-details .section-heading {
		margin: 0.1rem 0 0.78rem;
	}

	body.page-template-page-contact .contact-details .section-kicker {
		margin-bottom: 0.32rem;
		font-size: 0.69rem;
		line-height: 1.16;
	}

	body.page-template-page-contact .contact-details .section-heading h2 {
		font-size: 1.55rem;
		line-height: 1.08;
	}

	body.page-template-page-contact .contact-card-list {
		gap: 0.58rem;
		margin-bottom: 0;
	}

	body.page-template-page-contact .contact-card {
		grid-template-columns: 1.15rem minmax(0, 1fr);
		gap: 0.08rem 0.62rem;
		align-items: start;
		min-height: 72px;
		padding: 0.8rem 0.86rem;
		border-color: rgba(222, 212, 194, 0.88);
		border-radius: 10px;
		box-shadow: 0 8px 22px rgba(32, 44, 32, 0.055);
	}

	body.page-template-page-contact .contact-card > .lucide {
		grid-column: 1;
		grid-row: 1 / 3;
		width: 1.05rem;
		height: 1.05rem;
		margin-top: 0.18rem;
		font-size: 1.05rem;
	}

	body.page-template-page-contact .contact-card span,
	body.page-template-page-contact .contact-card strong {
		grid-column: 2;
	}

	body.page-template-page-contact .contact-card span {
		font-size: 0.69rem;
		line-height: 1.15;
		letter-spacing: 0.04em;
	}

	body.page-template-page-contact .contact-card strong {
		font-size: 0.94rem;
		line-height: 1.32;
	}

	body.page-template-page-contact .access-card {
		padding: 0.95rem;
		border-color: rgba(222, 212, 194, 0.88);
		border-radius: 10px;
		background: linear-gradient(180deg, var(--color-white), var(--color-ivory));
		box-shadow: 0 8px 22px rgba(32, 44, 32, 0.055);
	}

	body.page-template-page-contact .access-card h2 {
		margin-bottom: 0.65rem;
		font-size: 1.28rem;
		line-height: 1.12;
	}

	body.page-template-page-contact .access-card ul {
		gap: 0.4rem;
	}

	body.page-template-page-contact .access-card li {
		display: grid;
		grid-template-columns: 1rem minmax(0, 1fr);
		gap: 0.5rem;
		align-items: start;
		font-size: 0.91rem;
		line-height: 1.35;
	}

	body.page-template-page-contact .access-card li .lucide {
		width: 1rem;
		height: 1rem;
		margin-top: 0.16rem;
	}

	body.page-template-page-contact .page-cta.site-section {
		padding: 1.15rem 0 1.45rem;
	}

	body.page-template-page-contact .page-cta__inner {
		grid-template-columns: 1fr;
		width: min(100%, 640px);
		gap: 0.8rem;
		margin-inline: auto;
		padding: 1.05rem;
		border-radius: 10px;
		text-align: left;
	}

	body.page-template-page-contact .page-cta .section-kicker {
		margin-bottom: 0.38rem;
		font-size: 0.69rem;
		line-height: 1.16;
	}

	body.page-template-page-contact .page-cta h2 {
		margin-bottom: 0.42rem;
		font-size: 1.46rem;
		line-height: 1.08;
	}

	body.page-template-page-contact .page-cta p {
		max-width: none;
		font-size: 0.92rem;
		line-height: 1.42;
	}

	body.page-template-page-contact .page-cta .button {
		justify-self: stretch;
		width: 100%;
		min-height: 46px;
		padding: 0.68rem 0.9rem;
		border-color: rgba(255, 255, 255, 0.78);
		background: var(--color-white);
		color: var(--color-green-deep);
		box-shadow: none;
	}

	body.page-template-page-contact .site-footer {
		padding-top: 1.85rem;
		padding-bottom: calc(5.8rem + env(safe-area-inset-bottom));
	}

	body.page-template-page-contact .site-footer__inner {
		gap: 1.15rem;
	}

	body.page-template-page-contact .site-footer__logo {
		margin-bottom: 0.35rem;
		font-size: 1.55rem;
		line-height: 1.05;
	}

	body.page-template-page-contact .site-footer__brand p:last-child {
		margin-bottom: 0;
		font-size: 0.9rem;
		line-height: 1.45;
	}

	body.page-template-page-contact .site-footer__nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.25rem 0.8rem;
		font-size: 0.92rem;
	}

	body.page-template-page-contact .site-footer__nav a {
		display: inline-flex;
		align-items: center;
		min-height: 32px;
	}

	body.page-template-page-contact .site-footer__contact {
		gap: 0.42rem;
		padding-top: 0.2rem;
	}

	body.page-template-page-contact .site-footer__contact p {
		grid-template-columns: 1rem minmax(0, 1fr);
		gap: 0.08rem 0.5rem;
		align-items: start;
		font-size: 0.9rem;
		line-height: 1.35;
	}

	body.page-template-page-contact .site-footer__contact p .lucide {
		grid-column: 1;
		grid-row: 1 / 3;
		width: 1rem;
		height: 1rem;
		margin-top: 0.18rem;
	}

	body.page-template-page-contact .site-footer__contact p strong,
	body.page-template-page-contact .site-footer__contact p a {
		grid-column: 2;
	}

	body.page-template-page-contact .site-footer__contact p strong {
		color: rgba(255, 255, 255, 0.72);
		font-size: 0.7rem;
		line-height: 1.15;
		text-transform: uppercase;
	}

	body.page-template-page-contact .site-footer__contact p a {
		min-height: 24px;
	}

	body.page-template-page-contact .site-footer__bottom {
		gap: 0.35rem;
		margin-top: 1.2rem;
		padding-top: 0.8rem;
		font-size: 0.82rem;
		line-height: 1.35;
	}

	body.page-template-page-contact .mobile-sticky-bar {
		gap: 0.5rem;
		padding: 0.62rem max(0.8rem, env(safe-area-inset-left)) calc(0.62rem + env(safe-area-inset-bottom)) max(0.8rem, env(safe-area-inset-right));
	}

	body.page-template-page-contact .mobile-sticky-bar a {
		min-height: 48px;
		padding-inline: 0.7rem;
		border-radius: 999px;
		font-size: 0.9rem;
		line-height: 1;
	}

	body.page-template-page-contact .mobile-sticky-bar a .lucide {
		width: 1rem;
		height: 1rem;
	}

	body.page-template-page-contact .mobile-sticky-bar__booking {
		box-shadow: 0 8px 20px rgba(20, 46, 36, 0.16);
	}

	body.page-template-page-contact .mobile-sticky-bar__booking:only-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 430px) {
	body.page-template-page-contact .page-hero--contact .page-hero__inner {
		padding: 1.35rem 0 1.15rem;
	}

	body.page-template-page-contact .contact-form-card {
		padding: 0.9rem;
	}

	body.page-template-page-contact .contact-card {
		min-height: 68px;
		padding: 0.74rem 0.8rem;
	}

	body.page-template-page-contact .page-cta__inner {
		padding: 0.95rem;
	}

	body.page-template-page-contact .mobile-sticky-bar {
		gap: 0.42rem;
		padding-inline: max(0.62rem, env(safe-area-inset-left));
	}

	body.page-template-page-contact .mobile-sticky-bar a {
		min-height: 46px;
		padding-inline: 0.58rem;
		font-size: 0.86rem;
	}
}

@media (max-width: 374px) {
	body.page-template-page-contact .page-hero--contact h1 {
		font-size: 1.7rem;
	}

	body.page-template-page-contact .contact-fluent-form input.ff-el-form-control,
	body.page-template-page-contact .contact-fluent-form select.ff-el-form-control {
		min-height: 44px;
	}

	body.page-template-page-contact .contact-fluent-form textarea.ff-el-form-control {
		min-height: 124px;
	}

	body.page-template-page-contact .page-cta h2 {
		font-size: 1.34rem;
	}
}

/* Mobile reviews page refinement. */
@media (max-width: 768px) {
	body.page-template-page-avis {
		padding-bottom: calc(96px + env(safe-area-inset-bottom));
	}

	body.page-template-page-avis .site-container {
		width: min(100% - 1.25rem, var(--container-max-width));
	}

	body.page-template-page-avis .page-hero--compact .page-hero__inner {
		padding: 1.65rem 0 1.55rem;
	}

	body.page-template-page-avis .page-hero--compact .section-kicker {
		margin-bottom: 0.38rem;
		font-size: 0.68rem;
		letter-spacing: 0.035em;
	}

	body.page-template-page-avis .page-hero--compact h1 {
		max-width: 34rem;
		margin-bottom: 0.45rem;
		font-size: clamp(1.88rem, 6.2vw, 2.14rem);
		line-height: 1.07;
		overflow-wrap: normal;
		text-wrap: balance;
	}

	body.page-template-page-avis .page-hero--compact p:last-child {
		max-width: 31rem;
		font-size: 0.92rem;
		line-height: 1.46;
	}

	body.page-template-page-avis .page-hero--compact + .reviews-page {
		padding-top: 1rem;
		padding-bottom: 2rem;
	}

	body.page-template-page-avis .reviews-page__layout {
		gap: 1.1rem;
	}

	body.page-template-page-avis .reviews-page__inner,
	body.page-template-page-avis .legacy-reviews .site-container {
		gap: 1.1rem;
	}

	body.page-template-page-avis .reviews-page__inner .section-heading,
	body.page-template-page-avis .legacy-reviews .section-heading {
		margin-bottom: 0;
	}

	body.page-template-page-avis .reviews-page__inner .section-heading h2,
	body.page-template-page-avis .legacy-reviews .section-heading h2 {
		font-size: clamp(1.72rem, 5.6vw, 2rem);
		line-height: 1.08;
		text-wrap: balance;
	}

	body.page-template-page-avis .reviews-page__inner .section-heading p:last-child,
	body.page-template-page-avis .legacy-reviews .section-heading p:last-child {
		font-size: 0.9rem;
		line-height: 1.48;
	}

	body.page-template-page-avis .review-platform-grid {
		grid-template-columns: 1fr;
		gap: 0.72rem;
	}

	body.page-template-page-avis .review-platform-card {
		grid-template-columns: 1fr;
		justify-items: center;
		min-height: 0;
		padding: 1rem;
		border-color: rgba(222, 212, 194, 0.88);
		box-shadow: 0 10px 24px rgba(20, 46, 36, 0.065);
		text-align: center;
	}

	body.page-template-page-avis .review-platform-card__logo {
		width: 5.6rem;
	}

	body.page-template-page-avis .review-platform-card__content {
		justify-items: center;
	}

	body.page-template-page-avis .review-platform-card h3 {
		font-size: 1.16rem;
		line-height: 1.16;
	}

	body.page-template-page-avis .review-platform-card p,
	body.page-template-page-avis .legacy-review-card__text {
		font-size: 0.9rem;
		line-height: 1.5;
	}

	body.page-template-page-avis .review-platform-card .button {
		align-self: center;
		min-height: 44px;
	}

	body.page-template-page-avis .legacy-reviews {
		padding-top: 1.8rem;
		padding-bottom: 2rem;
	}

	body.page-template-page-avis .legacy-reviews-grid {
		grid-template-columns: 1fr;
		gap: 0.72rem;
	}

	body.page-template-page-avis .legacy-review-card {
		min-height: 0;
		padding: 0.95rem;
		border-color: rgba(222, 212, 194, 0.88);
		box-shadow: 0 10px 24px rgba(20, 46, 36, 0.065);
	}

	body.page-template-page-avis .legacy-review-card__top {
		align-items: flex-start;
	}

	body.page-template-page-avis .legacy-review-card__title {
		font-size: 1rem;
		line-height: 1.22;
	}

	body.page-template-page-avis .legacy-review-card__source {
		font-size: 0.68rem;
	}

	body.page-template-page-avis .legacy-review-card__meta {
		font-size: 0.78rem;
	}

	body.page-template-page-avis .legacy-review-card__meta strong {
		font-size: 0.86rem;
	}

	body.page-template-page-avis .reviews-score {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr);
		gap: 0.16rem 0.82rem;
		align-items: center;
		width: min(100%, 30rem);
		padding: 0.9rem 0.95rem;
		border-color: rgba(222, 212, 194, 0.86);
		border-radius: var(--radius);
		background: linear-gradient(180deg, var(--color-white), #fbfaf6);
		box-shadow: 0 10px 26px rgba(20, 46, 36, 0.07);
	}

	body.page-template-page-avis .reviews-score .section-kicker {
		grid-column: 1 / -1;
		margin-bottom: 0.08rem;
		font-size: 0.68rem;
		letter-spacing: 0.035em;
	}

	body.page-template-page-avis .reviews-score__value {
		grid-row: 2 / 4;
		margin: 0;
		font-size: clamp(2.55rem, 12vw, 3rem);
		line-height: 0.95;
	}

	body.page-template-page-avis .reviews-score__value span {
		font-size: 0.95rem;
	}

	body.page-template-page-avis .reviews-score .rating-stars {
		align-self: end;
		gap: 0.08rem;
	}

	body.page-template-page-avis .reviews-score .rating-stars .lucide {
		width: 0.9rem;
		height: 0.9rem;
	}

	body.page-template-page-avis .reviews-score > p:last-child {
		align-self: start;
		margin: 0;
		color: var(--color-muted);
		font-size: 0.8rem;
		font-weight: 700;
		line-height: 1.25;
	}

	body.page-template-page-avis .reviews-page .section-heading {
		margin-bottom: 0.82rem;
	}

	body.page-template-page-avis .reviews-page .section-heading h2 {
		font-size: clamp(1.72rem, 5.6vw, 2rem);
		line-height: 1.08;
		text-wrap: balance;
	}

	body.page-template-page-avis .review-grid,
	body.page-template-page-avis .ncv-reviews-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.72rem;
	}

	body.page-template-page-avis .review-card,
	body.page-template-page-avis .ncv-review-card {
		overflow: hidden;
		border-color: rgba(222, 212, 194, 0.88);
		border-radius: var(--radius);
		box-shadow: 0 10px 24px rgba(20, 46, 36, 0.065);
	}

	body.page-template-page-avis .review-card__content {
		gap: 0.58rem;
		padding: 0.9rem;
	}

	body.page-template-page-avis .review-card__header {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 0.5rem;
		align-items: start;
	}

	body.page-template-page-avis .review-card__stars {
		min-width: 0;
		gap: 0.06rem;
		padding-top: 0.12rem;
	}

	body.page-template-page-avis .review-card__stars .lucide {
		width: 0.86rem;
		height: 0.86rem;
	}

	body.page-template-page-avis .review-card__stars .lucide:not(.is-filled) {
		color: rgba(216, 184, 94, 0.72);
		fill: none;
	}

	body.page-template-page-avis .review-card__rating {
		display: inline-flex;
		align-items: baseline;
		justify-content: center;
		min-height: 1.8rem;
		margin: 0;
		padding: 0.12rem 0.45rem 0.16rem;
		border: 1px solid rgba(80, 111, 63, 0.16);
		border-radius: 999px;
		background: #fbfaf6;
		color: var(--color-muted);
		font-size: 0.7rem;
		font-weight: 850;
		line-height: 1;
		white-space: nowrap;
	}

	body.page-template-page-avis .review-card__rating span {
		margin-right: 0.08rem;
		font-size: 1rem;
		line-height: 0.9;
	}

	body.page-template-page-avis .review-card__text {
		font-size: 0.9rem;
		line-height: 1.5;
		overflow-wrap: anywhere;
	}

	body.page-template-page-avis .review-card__title {
		font-size: 1rem;
		line-height: 1.25;
	}

	body.page-template-page-avis .review-card__meta {
		gap: 0.14rem;
		font-size: 0.76rem;
		line-height: 1.32;
	}

	body.page-template-page-avis .review-card__meta p {
		min-width: 0;
		gap: 0.28rem;
		align-items: flex-start;
		overflow-wrap: anywhere;
	}

	body.page-template-page-avis .review-card__meta .lucide {
		width: 0.82rem;
		height: 0.82rem;
		margin-top: 0.12rem;
	}

	body.page-template-page-avis .review-card__author {
		font-size: 0.82rem;
		line-height: 1.25;
	}

	body.page-template-page-avis .page-cta {
		padding: 1.65rem 0 1.9rem;
	}

	body.page-template-page-avis .page-cta__inner {
		gap: 0.95rem;
		align-items: stretch;
		padding: 1rem;
		border-color: rgba(255, 255, 255, 0.2);
		background:
			linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035)),
			rgba(255, 255, 255, 0.055);
		text-align: left;
	}

	body.page-template-page-avis .page-cta .section-kicker {
		margin-bottom: 0.36rem;
		font-size: 0.68rem;
		letter-spacing: 0.035em;
	}

	body.page-template-page-avis .page-cta h2 {
		max-width: 24rem;
		font-size: clamp(1.65rem, 6vw, 1.95rem);
		line-height: 1.06;
		text-wrap: balance;
	}

	body.page-template-page-avis .page-cta__inner > div > p:not(.section-kicker) {
		max-width: 31rem;
		margin-top: 0.45rem;
		font-size: 0.9rem;
		line-height: 1.48;
	}

	body.page-template-page-avis .page-cta .button {
		align-self: start;
		width: min(100%, 18.5rem);
		min-height: 44px;
		border-color: rgba(252, 250, 245, 0.92);
		background: var(--color-ivory);
		color: var(--color-green-deep);
		box-shadow: 0 10px 24px rgba(12, 22, 17, 0.16);
	}

	body.page-template-page-avis .reviews-final-cta .page-cta__inner {
		grid-template-columns: 1fr;
		text-align: left;
	}

	body.page-template-page-avis .reviews-final-cta .page-cta__inner::after {
		display: none;
	}

	body.page-template-page-avis .reviews-final-cta .button {
		justify-self: start;
		border-color: rgba(216, 184, 94, 0.96);
		background: var(--color-gold);
		color: var(--color-green-deep);
	}

	body.page-template-page-avis .legacy-reviews__load-more {
		width: min(100%, 18.5rem);
		min-height: 44px;
	}

	body.page-template-page-avis .site-footer {
		padding-top: 2.1rem;
		padding-bottom: calc(1.25rem + 96px + env(safe-area-inset-bottom));
	}

	body.page-template-page-avis .site-footer__inner {
		gap: 1.1rem;
	}

	body.page-template-page-avis .site-footer__logo {
		margin-bottom: 0.35rem;
		font-size: 1.55rem;
		line-height: 1.05;
	}

	body.page-template-page-avis .site-footer__brand p:last-child {
		max-width: 34rem;
		margin-bottom: 0;
		font-size: 0.88rem;
		line-height: 1.46;
	}

	body.page-template-page-avis .site-footer__nav {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.14rem 0.7rem;
	}

	body.page-template-page-avis .site-footer__nav a {
		display: flex;
		align-items: center;
		min-height: 34px;
	}

	body.page-template-page-avis .site-footer__contact {
		gap: 0.48rem;
	}

	body.page-template-page-avis .site-footer__contact p {
		grid-template-columns: 1rem minmax(0, 1fr);
		gap: 0.08rem 0.5rem;
		align-items: start;
		font-size: 0.86rem;
		line-height: 1.38;
	}

	body.page-template-page-avis .site-footer__contact .lucide {
		grid-row: 1 / 3;
		width: 0.95rem;
		height: 0.95rem;
		margin-top: 0.16rem;
	}

	body.page-template-page-avis .site-footer__contact p strong,
	body.page-template-page-avis .site-footer__contact p a,
	body.page-template-page-avis .site-footer__contact-value {
		grid-column: 2;
	}

	body.page-template-page-avis .site-footer__contact p strong {
		font-size: 0.72rem;
		line-height: 1.1;
		text-transform: uppercase;
	}

	body.page-template-page-avis .site-footer__contact p a,
	body.page-template-page-avis .site-footer__contact-value {
		min-width: 0;
		overflow-wrap: anywhere;
	}

	body.page-template-page-avis .site-footer__bottom {
		gap: 0.25rem;
		margin-top: 1.15rem;
		padding-top: 0.85rem;
		font-size: 0.8rem;
		line-height: 1.35;
	}

	body.page-template-page-avis .mobile-sticky-bar {
		z-index: 10030;
		gap: 0.55rem;
		align-items: stretch;
		padding: 0.62rem max(0.75rem, env(safe-area-inset-left)) calc(0.62rem + env(safe-area-inset-bottom)) max(0.75rem, env(safe-area-inset-right));
		border-top-color: rgba(20, 46, 36, 0.09);
		background: rgba(252, 250, 245, 0.97);
		box-shadow: 0 -12px 30px rgba(20, 46, 36, 0.13);
	}

	body.page-template-page-avis .mobile-sticky-bar a {
		min-height: 48px;
		padding: 0 0.7rem;
		border-radius: 999px;
		font-size: 0.88rem;
		line-height: 1;
	}

	body.page-template-page-avis .mobile-sticky-bar a .lucide {
		width: 0.94rem;
		height: 0.94rem;
	}

	body.page-template-page-avis .mobile-sticky-bar__booking:only-child {
		grid-column: 1 / -1;
	}
}

@media (max-width: 620px) {
	body.page-template-page-avis .legacy-reviews-grid {
		grid-template-columns: 1fr;
	}

	body.page-template-page-avis .review-grid,
	body.page-template-page-avis .ncv-reviews-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 430px) {
	body.page-template-page-avis .page-hero--compact .page-hero__inner {
		padding: 1.45rem 0 1.35rem;
	}

	body.page-template-page-avis .page-hero--compact h1 {
		max-width: 20rem;
		font-size: clamp(1.78rem, 7.8vw, 2rem);
	}

	body.page-template-page-avis .page-hero--compact p:last-child {
		font-size: 0.9rem;
	}

	body.page-template-page-avis .reviews-score {
		padding: 0.82rem 0.86rem;
	}

	body.page-template-page-avis .reviews-score__value {
		font-size: clamp(2.35rem, 13vw, 2.72rem);
	}

	body.page-template-page-avis .review-card__content {
		padding: 0.84rem;
	}

	body.page-template-page-avis .review-platform-card,
	body.page-template-page-avis .legacy-review-card {
		padding: 0.9rem;
	}

	body.page-template-page-avis .review-platform-card .button {
		width: 100%;
	}

	body.page-template-page-avis .page-cta__inner {
		padding: 0.92rem;
	}

	body.page-template-page-avis .page-cta .button {
		width: 100%;
	}

	body.page-template-page-avis .mobile-sticky-bar {
		gap: 0.45rem;
		padding-inline: max(0.62rem, env(safe-area-inset-left));
	}

	body.page-template-page-avis .mobile-sticky-bar a {
		min-height: 46px;
		padding-inline: 0.58rem;
		font-size: 0.85rem;
	}
}

@media (max-width: 900px) {
	body .site-footer.site-footer--premium {
		padding-bottom: calc(2rem + 92px + env(safe-area-inset-bottom));
	}
}

@media (max-width: 760px) {
	body .site-footer.site-footer--premium {
		padding: 3rem 0 calc(2rem + 92px + env(safe-area-inset-bottom));
	}

	body.home .site-footer.site-footer--premium {
		padding-bottom: 2rem;
	}
}