/* =========================================================
   Mabell Guest House — main.css
   Palette derivata dal logo: viola #6B5285, verde #7AA930.
   Le quattro camere (Verde, Celeste, Bianca, Rossa) sono il
   sistema cromatico del sito, non una decorazione.
   ========================================================= */

/* ---------- Font autoospitati ---------- */
@font-face {
	font-family: 'Fraunces';
	src: url('../fonts/fraunces-soft-var.woff2') format('woff2-variations');
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212, U+FEFF, U+FFFD;
}
@font-face {
	font-family: 'Karla';
	src: url('../fonts/karla-400.woff2') format('woff2');
	font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
	font-family: 'Karla';
	src: url('../fonts/karla-500.woff2') format('woff2');
	font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
	font-family: 'Karla';
	src: url('../fonts/karla-700.woff2') format('woff2');
	font-weight: 700; font-style: normal; font-display: swap;
}

/* ---------- Token ---------- */
:root {
	/* Brand — campionati dal logo */
	--plum: #6b5285;
	--plum-deep: #533f68;
	--plum-ink: #3a2e4a;
	--leaf: #7aa930;
	--leaf-deep: #628a24;

	/* Materiali della casa: pietra, intonaco, sabbia */
	--shell: #fbf8f3;
	--stone: #ece5d9;
	--stone-deep: #d8cebc;
	--ink: #33293f;
	--muted: #6f6779;
	--line: rgba(58, 46, 74, .14);

	/* Le quattro camere */
	--verde: #7aa930;
	--celeste: #5fa8ce;
	--bianca: #cfc4b0;
	--rossa: #c0433c;

	--maxw: 1180px;
	--gut: clamp(22px, 5vw, 48px);
	--r: 4px;

	--display: 'Fraunces', Georgia, 'Times New Roman', serif;
	--body: 'Karla', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- Reset misurato ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
body {
	margin: 0;
	background: var(--shell);
	color: var(--ink);
	font-family: var(--body);
	font-size: 17px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--plum); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--leaf-deep); }
:focus-visible { outline: 2px solid var(--plum); outline-offset: 3px; }
button { font: inherit; }

h1, h2, h3, h4 {
	font-family: var(--display);
	font-variation-settings: 'SOFT' 60;
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -.015em;
	color: var(--plum-ink);
	margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); }
p { margin: 0 0 1.1em; }

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.wrap--narrow { max-width: 760px; }
.skip-link {
	position: absolute; left: -9999px; top: 0; z-index: 999;
	background: var(--plum); color: #fff; padding: 12px 18px;
}
.skip-link:focus { left: 12px; top: 12px; }
.screen-reader-text {
	position: absolute !important; width: 1px; height: 1px;
	overflow: hidden; clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}

/* ---------- Eyebrow ---------- */
.eyebrow {
	font-family: var(--body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: var(--plum);
	margin: 0 0 14px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.eyebrow::before {
	content: "";
	width: 26px; height: 2px;
	background: var(--leaf);
	flex: none;
}
.eyebrow--center { justify-content: center; }

/* ---------- FIRMA: la fascia delle quattro camere ---------- */
.chroma {
	display: flex;
	height: 4px;
	width: 100%;
}
.chroma span { flex: 1; }
.chroma span:nth-child(1) { background: var(--verde); }
.chroma span:nth-child(2) { background: var(--celeste); }
.chroma span:nth-child(3) { background: var(--bianca); }
.chroma span:nth-child(4) { background: var(--rossa); }
.chroma--thin { height: 3px; }
.chroma--rule { max-width: 180px; margin: 0 auto; }

/* ---------- Bottoni ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 14px 26px;
	background: var(--plum);
	color: #fff !important;
	border: 1px solid var(--plum);
	border-radius: 999px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .02em;
	text-decoration: none !important;
	cursor: pointer;
	transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.btn:hover { background: var(--plum-deep); border-color: var(--plum-deep); transform: translateY(-1px); }
.btn--leaf { background: var(--leaf); border-color: var(--leaf); }
.btn--leaf:hover { background: var(--leaf-deep); border-color: var(--leaf-deep); }
.btn--ghost {
	background: transparent;
	color: var(--plum) !important;
	border-color: rgba(107, 82, 133, .35);
}
.btn--ghost:hover { background: rgba(107, 82, 133, .07); color: var(--plum) !important; }
.btn--light {
	background: rgba(255, 255, 255, .12);
	border-color: rgba(255, 255, 255, .5);
	color: #fff !important;
	backdrop-filter: blur(6px);
}
.btn--light:hover { background: rgba(255, 255, 255, .22); border-color: #fff; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
	position: sticky;
	top: 0;
	z-index: 60;
	background: rgba(251, 248, 243, .92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
}
.site-header__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 76px;
}
.site-brand { display: flex; align-items: center; text-decoration: none; }
.site-brand img { max-height: 46px; width: auto; }
.site-brand__text {
	font-family: var(--display);
	font-variation-settings: 'SOFT' 100;
	font-size: 26px;
	color: var(--plum);
	line-height: 1;
}
.site-brand__text small {
	display: block;
	font-family: var(--body);
	font-size: 10px;
	letter-spacing: .22em;
	text-transform: uppercase;
	color: var(--leaf);
	margin-top: 4px;
}

.nav-main ul { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-main a {
	font-size: 15px;
	font-weight: 500;
	color: var(--ink);
	text-decoration: none;
	padding: 6px 0;
	position: relative;
}
.nav-main a::after {
	content: "";
	position: absolute; left: 0; right: 100%; bottom: 0;
	height: 2px; background: var(--leaf);
	transition: right .25s ease;
}
.nav-main a:hover::after,
.nav-main .current-menu-item > a::after { right: 0; }
.nav-main .current-menu-item > a { color: var(--plum); }

.site-header__cta { display: flex; align-items: center; gap: 14px; }
.site-header__cta .btn { padding: 10px 20px; font-size: 14px; }

.nav-toggle {
	display: none;
	background: none;
	border: 1px solid var(--line);
	border-radius: 999px;
	padding: 9px 16px;
	color: var(--plum-ink);
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}
@media (max-width: 900px) {
	.nav-toggle { display: block; }
	.nav-main {
		display: none;
		position: absolute;
		left: 0; right: 0; top: 100%;
		background: var(--shell);
		border-bottom: 1px solid var(--line);
		padding: 18px var(--gut) 26px;
	}
	.nav-main.is-open { display: block; }
	.nav-main ul { flex-direction: column; gap: 4px; }
	.nav-main a { display: block; padding: 11px 0; border-bottom: 1px solid var(--line); }
	.site-header__cta .btn { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; background: var(--plum-ink); overflow: hidden; }
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.hero__media::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(58, 46, 74, .5) 0%, rgba(58, 46, 74, .2) 35%, rgba(58, 46, 74, .72) 100%);
}
.hero__inner {
	position: relative;
	z-index: 2;
	padding-block: clamp(90px, 16vh, 160px) clamp(40px, 8vh, 70px);
	min-height: 78vh;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.hero__eyebrow {
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	display: flex; align-items: center; gap: 12px;
	margin-bottom: 18px;
	text-shadow: 0 1px 12px rgba(0, 0, 0, .4);
}
.hero__eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--leaf); }
.hero h1 {
	color: #fff;
	max-width: 15ch;
	font-weight: 400;
	font-variation-settings: 'SOFT' 100;
	text-shadow: 0 2px 30px rgba(0, 0, 0, .35);
	margin-bottom: .35em;
}
.hero h1 em {
	font-style: normal;
	color: #fff;
	border-bottom: 3px solid var(--leaf);
	padding-bottom: 2px;
}
.hero__sub {
	color: rgba(255, 255, 255, .92);
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	max-width: 46ch;
	text-shadow: 0 1px 16px rgba(0, 0, 0, .45);
	margin-bottom: 30px;
}

/* Barra ricerca sopra al fondo dell'hero */
.hero__search {
	position: relative;
	z-index: 3;
	margin-top: -34px;
	margin-bottom: 0;
}
.hero__search-inner {
	background: #fff;
	border-radius: 6px;
	box-shadow: 0 18px 50px -18px rgba(58, 46, 74, .45);
	padding: 8px;
}
/* Adatta il form del plugin Hotel Booking Lite */
.hero__search .hbl-search {
	margin: 0;
	background: transparent;
	border: 0;
	padding: 12px 14px;
}
.hero__search .hbl-btn {
	background: var(--leaf);
	border-radius: 999px;
	padding: 12px 24px;
}
.hero__search .hbl-btn:hover { background: var(--leaf-deep); filter: none; }
.hero__search .hbl-field label { color: var(--muted); }

/* =========================================================
   SEZIONI
   ========================================================= */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section--stone { background: var(--stone); }
.section--plum { background: var(--plum-ink); color: rgba(255, 255, 255, .85); }
.section--plum h2, .section--plum h3 { color: #fff; }
.section--plum .eyebrow { color: #fff; }
.section__head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }
.section__head p { color: var(--muted); font-size: 1.05rem; margin-bottom: 0; }
.section--plum .section__head p { color: rgba(255, 255, 255, .78); }

/* Intro: testo + foto */
.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}
.split--reverse .split__media { order: -1; }
.split__media { position: relative; }
.split__media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--r);
}
.split__media .chroma {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	border-radius: 0 0 var(--r) var(--r);
	overflow: hidden;
}
.split__body p { color: var(--muted); }
.split__body p:last-of-type { margin-bottom: 0; }
@media (max-width: 860px) {
	.split { grid-template-columns: 1fr; }
	.split--reverse .split__media { order: 0; }
}

/* Numeri chiave */
.facts {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 40px;
	margin-top: 30px;
	padding-top: 26px;
	border-top: 1px solid var(--line);
}
.facts div { min-width: 90px; }
.facts strong {
	display: block;
	font-family: var(--display);
	font-variation-settings: 'SOFT' 100;
	font-size: 1.9rem;
	font-weight: 500;
	color: var(--plum);
	line-height: 1;
}
.facts span { font-size: 13px; color: var(--muted); }

/* =========================================================
   LE QUATTRO CAMERE — signature
   ========================================================= */
.rooms {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 22px;
}
@media (max-width: 960px) { .rooms { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .rooms { grid-template-columns: 1fr; } }

.room {
	--c: var(--plum);
	position: relative;
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r);
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease;
}
.room:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -22px rgba(58, 46, 74, .4); }
.room[data-room="verde"] { --c: var(--verde); }
.room[data-room="celeste"] { --c: var(--celeste); }
.room[data-room="bianca"] { --c: var(--bianca); }
.room[data-room="rossa"] { --c: var(--rossa); }

.room__media { aspect-ratio: 3 / 4; overflow: hidden; background: var(--stone); }
.room__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.room:hover .room__media img { transform: scale(1.05); }
.room__media--empty {
	display: flex; align-items: center; justify-content: center;
	background: color-mix(in srgb, var(--c) 14%, var(--stone));
}
.room__media--empty span {
	font-family: var(--display);
	font-size: 3rem;
	color: var(--c);
	opacity: .5;
}
.room__bar { height: 5px; background: var(--c); }
.room__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.room__name { margin: 0 0 6px; font-size: 1.45rem; font-variation-settings: 'SOFT' 100; }
.room__name a { color: inherit; text-decoration: none; }
.room__name a:hover { color: var(--c); }
.room__meta { font-size: 13.5px; color: var(--muted); margin: 0 0 14px; }
.room__price {
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid var(--line);
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 8px;
}
.room__price b { font-family: var(--display); font-size: 1.3rem; color: var(--plum-ink); font-weight: 500; }
.room__price span { font-size: 12px; color: var(--muted); }
.room__link {
	font-size: 13px;
	font-weight: 700;
	color: var(--c);
	text-decoration: none;
	letter-spacing: .02em;
}
.room__link:hover { color: var(--c); text-decoration: underline; }

/* =========================================================
   DOTAZIONI — celle autonome: l'ultima riga non lascia buchi
   ========================================================= */
.amenities {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.amenities li {
	flex: 1 1 230px;
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 62px;
	padding: 14px 18px;
	background: var(--shell);
	border: 1px solid var(--line);
	border-radius: var(--r);
	font-size: 14.5px;
	line-height: 1.35;
	transition: border-color .2s ease, transform .2s ease;
}
.amenities li:hover { border-color: var(--leaf); transform: translateY(-2px); }
.amenities .icon { color: var(--leaf); flex: none; }
.section--stone .amenities li { background: rgba(255, 255, 255, .55); }

/* =========================================================
   SERVIZI — la navetta è un banner, gli altri una griglia regolare
   ========================================================= */
.shuttle {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	flex-wrap: wrap;
	background: var(--plum);
	border-radius: var(--r);
	padding: 28px 32px;
	margin-bottom: 22px;
	color: #fff;
}
.shuttle__body { display: flex; align-items: flex-start; gap: 18px; }
.shuttle__mark {
	flex: none;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .14);
	display: grid;
	place-items: center;
	color: #fff;
}
.shuttle h3 { color: #fff; font-size: 1.35rem; margin: 0 0 6px; }
.shuttle p { color: rgba(255, 255, 255, .84); margin: 0; max-width: 62ch; font-size: 14.5px; }
@media (max-width: 700px) {
	.shuttle { padding: 22px; }
	.shuttle .btn { width: 100%; justify-content: center; }
}

.services {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}
.service {
	flex: 1 1 270px;
	background: var(--shell);
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 24px 26px;
	transition: border-color .2s ease, transform .2s ease;
}
.section--stone .service { background: var(--shell); }
.service:hover { border-color: var(--leaf); transform: translateY(-2px); }
.service h3 {
	font-size: 1.15rem;
	margin: 0 0 6px;
	padding-left: 14px;
	border-left: 3px solid var(--leaf);
	line-height: 1.25;
}
.service p { font-size: 14.5px; color: var(--muted); margin: 0; padding-left: 17px; }

/* =========================================================
   SPAZI COMUNI — mosaico a incastro: le foto riempiono ogni cella
   ========================================================= */
.mosaic {
	display: grid;
	grid-template-columns: 1fr 1fr 0.82fr;
	grid-template-rows: 260px 200px;
	grid-template-areas:
		"main main tall"
		"one  two  tall";
	gap: 12px;
}
.mosaic > a {
	display: block;
	overflow: hidden;
	border-radius: var(--r);
	position: relative;
}
.mosaic__main { grid-area: main; }
.mosaic__tall { grid-area: tall; }
.mosaic > a:nth-of-type(3) { grid-area: one; }
.mosaic > a:nth-of-type(4) { grid-area: two; }
.mosaic img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .6s ease;
}
.mosaic > a::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(58, 46, 74, 0);
	transition: background .3s ease;
}
.mosaic > a:hover img { transform: scale(1.05); }
.mosaic > a:hover::after { background: rgba(58, 46, 74, .12); }

@media (max-width: 900px) {
	.mosaic {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 220px 200px 200px;
		grid-template-areas:
			"main main"
			"tall one"
			"tall two";
	}
}
@media (max-width: 560px) {
	.mosaic {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 190px 240px 150px;
		grid-template-areas:
			"main main"
			"tall tall"
			"one  two";
	}
}

/* =========================================================
   POSIZIONE
   ========================================================= */
.distances { list-style: none; margin: 0; padding: 0; }
.distances li {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding: 15px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .16);
	font-size: 15px;
}
.distances li:last-child { border-bottom: 0; }
.distances b {
	font-family: var(--display);
	font-variation-settings: 'SOFT' 100;
	font-size: 1.35rem;
	font-weight: 500;
	color: #fff;
	white-space: nowrap;
}
.distances span { color: rgba(255, 255, 255, .8); }

/* =========================================================
   BANDA NOTTURNA + CTA
   ========================================================= */
.band {
	position: relative;
	min-height: 62vh;
	display: flex;
	align-items: center;
	text-align: center;
	overflow: hidden;
}
.band__media { position: absolute; inset: 0; }
.band__media img { width: 100%; height: 100%; object-fit: cover; }
.band__media::after {
	content: "";
	position: absolute; inset: 0;
	background: rgba(28, 20, 38, .55);
}
.band__inner { position: relative; z-index: 2; width: 100%; }
.band h2 { color: #fff; font-variation-settings: 'SOFT' 100; font-weight: 400; max-width: 18ch; margin-inline: auto; }
.band p { color: rgba(255, 255, 255, .85); max-width: 48ch; margin: 0 auto 28px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--plum-ink); color: rgba(255, 255, 255, .74); }
.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 40px;
	padding-block: clamp(50px, 7vw, 78px) 40px;
}
@media (max-width: 780px) { .site-footer__grid { grid-template-columns: 1fr; gap: 30px; } }
.site-footer h4 {
	color: #fff;
	font-family: var(--body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	margin: 0 0 16px;
}
.site-footer a { color: rgba(255, 255, 255, .74); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; font-size: 15px; }
.site-footer__brand img { max-height: 44px; width: auto; filter: brightness(0) invert(1); opacity: .95; }
.site-footer__brand p { font-size: 14.5px; margin: 18px 0 0; max-width: 34ch; }
.site-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, .14);
	padding: 20px 0 26px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 24px;
	justify-content: space-between;
	font-size: 13px;
	color: rgba(255, 255, 255, .5);
}
.site-footer__bottom a { color: rgba(255, 255, 255, .5); }

/* =========================================================
   PAGINE INTERNE / ARTICOLI
   ========================================================= */
.page-head {
	background: var(--stone);
	padding: clamp(50px, 7vw, 84px) 0 clamp(40px, 5vw, 60px);
	border-bottom: 1px solid var(--line);
}
.page-head h1 { margin-bottom: 0; font-variation-settings: 'SOFT' 100; font-weight: 400; }
.page-head p { color: var(--muted); margin: 14px 0 0; max-width: 60ch; }

.entry { padding: clamp(50px, 7vw, 84px) 0; }
.entry-content > * + * { margin-top: 1.1em; }
.entry-content h2 { margin-top: 1.8em; }
.entry-content h3 { margin-top: 1.5em; }
.entry-content img, .entry-content .wp-block-image img { border-radius: var(--r); }
.entry-content blockquote {
	margin: 1.6em 0;
	padding: 4px 0 4px 24px;
	border-left: 3px solid var(--leaf);
	font-family: var(--display);
	font-size: 1.25rem;
	color: var(--plum-ink);
}
.entry-content ul, .entry-content ol { padding-left: 1.3em; }
.entry-content li { margin-bottom: .4em; }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content th, .entry-content td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; }
.alignwide { max-width: calc(var(--maxw) - 2 * var(--gut)); }
.alignfull { max-width: none; }
.aligncenter { margin-inline: auto; }

.card-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 860px) { .card-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .card-list { grid-template-columns: 1fr; } }
.card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r);
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.card__media { aspect-ratio: 3 / 2; overflow: hidden; background: var(--stone); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body { padding: 20px 22px 24px; }
.card__body h3 { font-size: 1.2rem; margin-bottom: 8px; }
.card__body h3 a { color: inherit; text-decoration: none; }
.card__body h3 a:hover { color: var(--plum); }
.card__date { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.card__body p { font-size: 14.5px; color: var(--muted); margin: 10px 0 0; }

.pagination { margin-top: 50px; display: flex; gap: 8px; justify-content: center; }
.pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 40px; height: 40px; padding: 0 12px;
	border: 1px solid var(--line); border-radius: 999px;
	text-decoration: none; font-size: 14px; font-weight: 500;
}
.pagination .current { background: var(--plum); color: #fff; border-color: var(--plum); }

/* Scheda camera (single hbl_room) */
.room-hero { display: grid; grid-template-columns: 1.25fr 1fr; gap: 0; }
@media (max-width: 860px) { .room-hero { grid-template-columns: 1fr; } }
.room-hero__media img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.room-hero__body {
	padding: clamp(36px, 5vw, 64px) var(--gut);
	background: var(--stone);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.room-hero__body h1 { font-variation-settings: 'SOFT' 100; font-weight: 400; }
.room-tag {
	display: inline-flex; align-items: center; gap: 9px;
	font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
	color: var(--plum); margin-bottom: 16px;
}
.room-tag::before { content: ""; width: 12px; height: 12px; border-radius: 50%; background: var(--c, var(--plum)); }

.searchform { display: flex; gap: 8px; max-width: 420px; }
.searchform input[type="search"] {
	flex: 1; padding: 12px 16px; font: inherit; font-size: 15px;
	border: 1px solid var(--line); border-radius: 999px; background: #fff;
}

/* Il plugin dentro il tema */
.hbl-btn { background: var(--leaf) !important; border-radius: 999px !important; font-family: var(--body) !important; }
.hbl-btn:hover { background: var(--leaf-deep) !important; }
.hbl-card__title, .hbl-checkout h3, .hbl-thankyou h2 { font-family: var(--display); font-variation-settings: 'SOFT' 100; }
.hbl-eyebrow { color: var(--plum) !important; }
.hbl-price strong { font-family: var(--display); }

/* =========================================================
   PULSANTI FLOTTANTI — WhatsApp e ritorno in cima
   ========================================================= */
.floaters {
	position: fixed;
	right: 16px;
	bottom: 16px;
	z-index: 60;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: flex-end;
}
.floater {
	width: 52px;
	height: 52px;
	border: 0;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: #fff;
	cursor: pointer;
	box-shadow: 0 8px 22px -6px rgba(28, 20, 38, .45);
	transition: transform .2s ease, background .2s ease, opacity .25s ease, visibility .25s ease;
	-webkit-tap-highlight-color: transparent;
}
.floater:hover { transform: translateY(-2px); color: #fff; }
.floater:focus-visible { outline: 3px solid var(--plum); outline-offset: 3px; }

.floater--wa { background: #25d366; }
.floater--wa:hover { background: #1da851; }

.floater--top {
	background: var(--plum);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}
.floater--top:hover { background: var(--plum-ink); }
.floater--top.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

@media (max-width: 560px) {
	.floaters { right: 12px; bottom: 12px; gap: 8px; }
	.floater { width: 48px; height: 48px; }
}

/* =========================================================
   SELETTORE DI LINGUA
   ========================================================= */
.langs {
	display: flex;
	align-items: center;
	gap: 2px;
	padding: 3px;
	background: rgba(107, 82, 133, .07);
	border-radius: 999px;
}
.langs__item {
	display: inline-block;
	padding: 5px 10px;
	border-radius: 999px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .06em;
	color: var(--muted);
	text-decoration: none;
	line-height: 1;
	transition: background .2s ease, color .2s ease;
}
.langs__item:hover { color: var(--plum); background: rgba(255, 255, 255, .7); }
.langs__item.is-active { background: var(--plum); color: #fff; }
@media (max-width: 560px) {
	.langs { padding: 2px; }
	.langs__item { padding: 5px 8px; font-size: 11px; }
}


/* =========================================================
   RECENSIONI — il markup è del plugin: qui solo lo spazio attorno
   ========================================================= */
.reviews-widget { margin-top: 6px; }
.reviews-widget > *:last-child { margin-bottom: 0; }

/* =========================================================
   FOOTER — quattro colonne, contatti con icone, riga finale
   ========================================================= */
.site-footer__grid { grid-template-columns: 1.5fr 1.2fr .9fr 1.2fr; align-items: start; }
@media (max-width: 1000px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .site-footer__grid { grid-template-columns: 1fr; } }

.site-footer__col--contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 14px;
	line-height: 1.5;
}
.site-footer__col--contact .icon { color: var(--leaf); flex: none; margin-top: 3px; }
.site-footer__col--contact a { color: #fff; }
.site-footer__col--contact a:hover { text-decoration: underline; text-underline-offset: 3px; }

.site-footer__col li a {
	position: relative;
	padding-left: 14px;
	display: inline-block;
}
.site-footer__col--contact li a { padding-left: 0; }
.site-footer__col li a::before {
	content: "";
	position: absolute;
	left: 0;
	top: .62em;
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--leaf);
	opacity: .55;
	transition: opacity .2s ease;
}
.site-footer__col--contact li a::before { display: none; }
.site-footer__col li a:hover::before { opacity: 1; }

.site-footer__cta {
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: var(--r);
	padding: 24px 22px;
}
.site-footer__cta h4 { color: #fff; margin-bottom: 8px; }
.site-footer__cta p { font-size: 14px; margin: 0 0 18px; color: rgba(255, 255, 255, .72); line-height: 1.55; }

.site-footer__bottom { align-items: center; }
.site-footer__by { margin-left: auto; }
.site-footer__by a { color: rgba(255, 255, 255, .8); text-decoration: none; border-bottom: 1px solid var(--leaf); padding-bottom: 1px; }
.site-footer__by a:hover { color: #fff; }
@media (max-width: 640px) {
	.site-footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
	.site-footer__by { margin-left: 0; }
}


/* Esito della ricerca in home */
.found,
.section__head .found,
.section__head p.found {
	display: inline-block;
	margin: 4px 0 0;
	padding: 9px 18px;
	background: var(--plum);
	color: #fff;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
}
.found__wrap { margin: 10px 0 0; }
.found__reset {
	font-size: 13px;
	color: var(--muted);
	text-decoration: none;
	border-bottom: 1px solid var(--line);
}
.found__reset:hover { color: var(--plum); border-color: var(--plum); }
.room__link--book {
	background: var(--leaf);
	color: #fff;
	padding: 7px 14px;
	border-radius: 999px;
	font-size: 12px;
	letter-spacing: .06em;
	text-transform: uppercase;
}
.room__link--book:hover { background: var(--leaf-deep); color: #fff; text-decoration: none; }

/* =========================================================
   MODULO DI RICERCA — è del tema, quindi le etichette si traducono
   ========================================================= */
.searchbar {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 14px;
	padding: 16px 18px;
}
.searchbar__field { display: flex; flex-direction: column; flex: 1 1 190px; }
.searchbar__field--sm { flex: 0 1 110px; }
.searchbar label {
	font-family: var(--body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 6px;
}
.searchbar input {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: #fff;
	font: inherit;
	font-size: 15px;
	color: var(--ink);
	box-sizing: border-box;
}
.searchbar input:focus { outline: 2px solid var(--plum); outline-offset: 1px; border-color: transparent; }
.searchbar .btn { border-radius: 999px; padding: 13px 26px; flex: 0 0 auto; }
@media (max-width: 700px) {
	.searchbar { padding: 14px; }
	.searchbar__field, .searchbar__field--sm { flex: 1 1 100%; }
	.searchbar .btn { width: 100%; justify-content: center; }
}

/* =========================================================
   RISULTATI IN LISTA — la card si sviluppa in orizzontale
   ========================================================= */
.rooms--list { display: flex; flex-direction: column; gap: 16px; }
.rooms--list .room {
	flex-direction: row;
	align-items: stretch;
}
.rooms--list .room__bar {
	height: auto;
	width: 5px;
	flex: none;
}
.rooms--list .room__media {
	flex: 0 0 260px;
	aspect-ratio: auto;
	min-height: 200px;
}
.rooms--list .room__body {
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	padding: 24px 28px;
}
.rooms--list .room__name { margin: 0 0 4px; }
.rooms--list .room__meta { margin: 0; }
.rooms--list .room__price {
	margin: 0;
	padding: 0;
	border: 0;
	flex: 0 0 auto;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
	text-align: right;
}
.rooms--list .room__price b { font-size: 1.7rem; }
.rooms--list .room__link--book { margin-top: 8px; padding: 11px 22px; font-size: 13px; }
@media (max-width: 780px) {
	.rooms--list .room { flex-direction: column; }
	.rooms--list .room__bar { width: 100%; height: 5px; }
	.rooms--list .room__media { flex: none; aspect-ratio: 16 / 9; min-height: 0; }
	.rooms--list .room__body { flex-direction: column; align-items: flex-start; gap: 16px; }
	.rooms--list .room__price { align-items: flex-start; text-align: left; width: 100%; }
}

/* =========================================================
   LIGHTBOX — solo immagini, nessuna didascalia
   ========================================================= */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: rgba(26, 18, 36, .94);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity .25s ease, visibility .25s ease;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__img {
	max-width: 92vw;
	max-height: 86vh;
	object-fit: contain;
	border-radius: var(--r);
	box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .6);
}
.lightbox__btn {
	position: absolute;
	background: rgba(255, 255, 255, .12);
	border: 0;
	color: #fff;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	display: grid;
	place-items: center;
	transition: background .2s ease;
}
.lightbox__btn:hover { background: rgba(255, 255, 255, .28); }
.lightbox__btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.lightbox__close { top: 18px; right: 18px; }
.lightbox__prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 18px; top: 50%; transform: translateY(-50%); }
.lightbox__count {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, .7);
	font-size: 13px;
	letter-spacing: .1em;
}
@media (max-width: 600px) {
	.lightbox__btn { width: 42px; height: 42px; }
	.lightbox__prev { left: 8px; }
	.lightbox__next { right: 8px; }
}

/* =========================================================
   BARRA DI RICERCA nella pagina risultati
   ========================================================= */
.searchbar-wrap {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r);
	box-shadow: 0 14px 40px -26px rgba(58, 46, 74, .5);
	margin-bottom: 32px;
}

/* =========================================================
   CHECKOUT del plugin, vestito dal tema
   ========================================================= */
.hbl-checkout {
	grid-template-columns: minmax(0, 1fr) 380px;
	gap: 40px;
}
@media (max-width: 900px) { .hbl-checkout { grid-template-columns: 1fr; } }

.hbl-checkout__summary {
	background: var(--stone);
	border-color: var(--line);
	padding: 26px 24px;
}
.hbl-checkout__form {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 30px 32px;
}
@media (max-width: 600px) { .hbl-checkout__form { padding: 22px 18px; } }

.hbl-checkout h3 {
	font-family: var(--display);
	font-variation-settings: 'SOFT' 100;
	font-size: 1.35rem;
	font-weight: 400;
	color: var(--plum-ink);
	margin-bottom: 18px;
}
.hbl-checkout__form h3 { margin-top: 34px; }
.hbl-checkout__form h3:first-of-type { margin-top: 0; }

.hbl-checkout .hbl-field label {
	font-family: var(--body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--muted);
}
.hbl-checkout .hbl-field input,
.hbl-checkout .hbl-field textarea {
	padding: 12px 14px;
	border-radius: var(--r);
	border-color: var(--line);
	font-size: 15px;
}
.hbl-checkout .hbl-row { gap: 18px; }
.hbl-checkout__form .hbl-field { margin-bottom: 18px; }

.hbl-summary-room strong { font-family: var(--display); font-size: 1.15rem; }
.hbl-summary-list li { padding: 11px 0; }
.hbl-summary-total { font-family: var(--display); font-size: 1.15rem !important; padding-top: 16px !important; }

.hbl-payment { border-radius: var(--r); padding: 16px; }
.hbl-payment:has(input:checked) { border-color: var(--plum); background: var(--plum-wash, #f4f0f8); }
.hbl-payment strong { font-size: 15px; color: var(--plum-ink); }
.hbl-payment small { line-height: 1.5; }
.hbl-check { font-size: 14px; }
.hbl-btn--block { border-radius: 999px !important; padding: 15px !important; margin-top: 24px; }

/* =========================================================
   PAGINA SERVIZI
   ========================================================= */
.srv-shuttle {
	background: var(--plum);
	color: #fff;
	border-radius: var(--r);
	padding: clamp(28px, 4vw, 44px);
}
.srv-shuttle__head { display: flex; gap: 22px; align-items: flex-start; }
.srv-shuttle__icon {
	flex: none;
	width: 62px;
	height: 62px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .14);
	display: grid;
	place-items: center;
	color: #fff;
}
.srv-shuttle .eyebrow { color: var(--leaf); }
.srv-shuttle h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 12px; }
.srv-shuttle p { color: rgba(255, 255, 255, .85); max-width: 68ch; margin: 0; }
@media (max-width: 620px) {
	.srv-shuttle__head { flex-direction: column; gap: 16px; }
	.srv-shuttle__icon { width: 52px; height: 52px; }
}

.srv-dest {
	list-style: none;
	margin: 34px 0 0;
	padding: 30px 0 0;
	border-top: 1px solid rgba(255, 255, 255, .18);
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 22px 30px;
}
.srv-dest li { display: flex; gap: 13px; align-items: flex-start; }
.srv-dest span { display: block; }
.srv-dest .icon { color: var(--leaf); flex: none; margin-top: 2px; }
.srv-dest strong { display: block; color: #fff; font-size: 15px; margin-bottom: 3px; }
.srv-dest span { color: rgba(255, 255, 255, .72); font-size: 14px; line-height: 1.5; }

.srv-shuttle p.srv-note {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	width: 100%;
	max-width: none;
	margin: 34px 0 0;
	padding: 18px 22px;
	background: rgba(255, 255, 255, .1);
	border-left: 3px solid var(--leaf);
	border-radius: 0 var(--r) var(--r) 0;
	font-size: 14.5px;
	color: rgba(255, 255, 255, .88);
	line-height: 1.6;
	box-sizing: border-box;
}
.srv-note .icon { color: var(--leaf); flex: none; margin-top: 2px; }

.srv-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
}
.srv-card {
	flex: 1 1 280px;
	background: var(--shell);
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 26px 24px;
	transition: border-color .2s ease, transform .2s ease;
}
.srv-card:hover { border-color: var(--leaf); transform: translateY(-3px); }
.srv-card__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: rgba(122, 169, 48, .13);
	color: var(--leaf-deep);
	margin-bottom: 16px;
}
.srv-card h3 { font-size: 1.15rem; margin-bottom: 7px; }
.srv-card p { font-size: 14.5px; color: var(--muted); margin: 0; line-height: 1.6; }

.srv-info { display: grid; grid-template-columns: 300px minmax(0, 1fr); gap: clamp(28px, 4vw, 56px); align-items: start; }
@media (max-width: 780px) { .srv-info { grid-template-columns: 1fr; } }
.srv-info__head .chroma { max-width: 120px; margin-top: 16px; }
.srv-info__list { margin: 0; }
.srv-info__list > div {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding: 16px 0;
	border-bottom: 1px solid var(--line);
}
.srv-info__list > div:first-child { padding-top: 0; }
.srv-info__list > div:last-child { border-bottom: 0; }
.srv-info__list dt { font-weight: 700; color: var(--plum-ink); font-size: 15px; flex: none; }
.srv-info__list dd { margin: 0; color: var(--muted); font-size: 15px; text-align: right; }
@media (max-width: 520px) {
	.srv-info__list > div { flex-direction: column; gap: 4px; }
	.srv-info__list dd { text-align: left; }
}

.srv-cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	flex-wrap: wrap;
}
.srv-cta h2 { margin-bottom: 8px; }
.srv-cta p { margin: 0; max-width: 60ch; }

/* =========================================================
   CONTATTI
   ========================================================= */
.contact { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(30px, 4vw, 56px); align-items: start; }
@media (max-width: 880px) { .contact { grid-template-columns: 1fr; } }
.contact__main h2 { margin-bottom: 24px; }
.contact__side {
	background: var(--stone);
	border-radius: var(--r);
	padding: 28px 26px;
	position: sticky;
	top: 100px;
}
@media (max-width: 880px) { .contact__side { position: static; } }
.contact__side h3 { font-size: 1.2rem; margin-bottom: 20px; }
.contact__list { list-style: none; margin: 0 0 24px; padding: 0; }
.contact__list li { display: flex; gap: 13px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact__list li:first-child { padding-top: 0; }
.contact__list .icon { color: var(--leaf-deep); flex: none; margin-top: 3px; }
.contact__list a { color: var(--plum-ink); text-decoration: none; font-weight: 600; display: block; }
.contact__list a:hover { color: var(--plum); }
.contact__list span { font-size: 13.5px; color: var(--muted); line-height: 1.55; }
.contact__side .chroma { margin-top: 22px; border-radius: 2px; overflow: hidden; }

.contact-form .field { margin-bottom: 18px; display: flex; flex-direction: column; }
.contact-form__row { display: flex; gap: 18px; }
.contact-form__row .field { flex: 1; }
@media (max-width: 560px) { .contact-form__row { flex-direction: column; gap: 0; } }
.contact-form label {
	font-family: var(--body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	color: var(--muted);
	margin-bottom: 7px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
	width: 100%;
	padding: 13px 15px;
	border: 1px solid var(--line);
	border-radius: var(--r);
	background: #fff;
	font: inherit;
	font-size: 15px;
	color: var(--ink);
	box-sizing: border-box;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--plum); outline-offset: 1px; border-color: transparent; }
.contact-form .check { display: flex; gap: 11px; align-items: flex-start; font-size: 14px; text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--ink); margin-bottom: 20px; }
.contact-form .check input { margin-top: 3px; }
.contact-form .hp { position: absolute; left: -9999px; }
.contact-form .cf-turnstile { margin-bottom: 20px; }
.btn--wide { width: 100%; justify-content: center; }

.notice-msg {
	padding: 14px 18px;
	border-radius: var(--r);
	font-size: 14.5px;
	margin: 0 0 24px;
	border: 1px solid var(--line);
}
.notice-msg--ok { background: #eef7ef; border-color: #bcdfc2; color: #1e6b2c; }
.notice-msg--error { background: #fdf0ef; border-color: #f0c7c3; color: #96262a; }

/* =========================================================
   MAPPA — si carica al clic: prima Google non vede nessuno
   ========================================================= */
.map {
	position: relative;
	aspect-ratio: 16 / 8;
	border-radius: var(--r);
	overflow: hidden;
	background: var(--stone);
	border: 1px solid var(--line);
}
@media (max-width: 700px) { .map { aspect-ratio: 4 / 5; } }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }
.map__cover {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 14px;
	text-align: center;
	padding: 30px;
	background:
		repeating-linear-gradient(45deg, rgba(107, 82, 133, .04) 0 12px, transparent 12px 24px),
		var(--stone);
}
.map__cover .icon { color: var(--plum); }
.map__cover p { max-width: 46ch; font-size: 14px; color: var(--muted); margin: 0; }
.map__link { margin-top: 16px; text-align: center; }
.map__link a { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--plum); text-decoration: none; }
.map__link a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* =========================================================
   SCHEDA CAMERA — galleria in colonna, non un collage
   ========================================================= */
.room-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 18px;
	max-width: 880px;
}
.room-gallery a {
	display: block;
	overflow: hidden;
	border-radius: var(--r);
	aspect-ratio: 4 / 3;
	position: relative;
	cursor: zoom-in;
	border: 1px solid var(--line);
}
.room-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.room-gallery a::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(58, 46, 74, 0);
	transition: background .3s ease;
}
.room-gallery a:hover img { transform: scale(1.04); }
.room-gallery a:hover::after { background: rgba(58, 46, 74, .1); }
@media (max-width: 640px) { .room-gallery { grid-template-columns: 1fr; gap: 14px; } }

/* =========================================================
   PAGINA NAVETTA
   ========================================================= */
.page-head--shuttle { background: var(--plum); border-bottom: 0; position: relative; }
.page-head--shuttle h1, .page-head--shuttle p { color: #fff; }
.page-head--shuttle p { color: rgba(255, 255, 255, .8); }
.page-head--shuttle .eyebrow { color: var(--leaf); }
.page-head--shuttle .chroma { position: absolute; bottom: 0; left: 0; }
.shuttle-mark {
	display: grid;
	place-items: center;
	width: 66px;
	height: 66px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .14);
	color: #fff;
	margin-bottom: 22px;
}

/* I passi sono una sequenza: la numerazione dice qualcosa di vero */
.steps {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 20px;
	counter-reset: step;
}
.steps li {
	position: relative;
	background: var(--shell);
	border: 1px solid var(--line);
	border-radius: var(--r);
	padding: 30px 26px 26px;
}
.steps__n {
	position: absolute;
	top: -14px;
	left: 24px;
	background: var(--leaf);
	color: #fff;
	font-family: var(--body);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .1em;
	padding: 5px 11px;
	border-radius: 999px;
}
.steps h3 { font-size: 1.2rem; margin-bottom: 7px; }
.steps p { font-size: 14.5px; color: var(--muted); margin: 0; line-height: 1.6; }

.conditions { list-style: none; margin: 0; padding: 0; }
.conditions li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
	font-size: 15px;
	line-height: 1.55;
}
.conditions li:last-child { border-bottom: 0; }
.conditions .icon { color: var(--leaf); flex: none; margin-top: 3px; }

/* Casella navetta nel checkout */
.hbl-check--shuttle {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	background: var(--plum-wash, #f4f0f8);
	border: 1px solid var(--line);
	border-left: 3px solid var(--plum);
	border-radius: var(--r);
	padding: 16px 18px;
	margin-top: 18px;
}
.hbl-check--shuttle input { margin-top: 4px; }
.hbl-check--shuttle strong { display: block; font-size: 15px; color: var(--plum-ink); margin-bottom: 3px; }
.hbl-check--shuttle small { color: var(--muted); font-size: 13.5px; line-height: 1.5; display: block; }

/* Turnstile nel checkout */
.hbl-checkout__form .cf-turnstile { margin-top: 20px; }
