/* =========================================================
   Sunnyhouse Colosseo — design system
   Palette ispirata a Roma: terracotta, crema, oro antico.
   Font: Playfair Display (titoli) + Jost (testo).
   ========================================================= */

:root {
	--sh-color-bg: #fbf7f0;
	--sh-color-cream: #f4ead9;
	--sh-color-cream-dark: #ecddc2;
	--sh-color-primary: #7a3b2e;
	--sh-color-primary-dark: #5c2b21;
	--sh-color-gold: #b6893f;
	--sh-color-gold-light: #d9b876;
	--sh-color-text: #2c2620;
	--sh-color-muted: #79705f;
	--sh-color-border: #e4d8c4;
	--sh-font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
	--sh-font-body: 'Jost', 'Segoe UI', Arial, sans-serif;
	--sh-container: 1180px;
	--sh-radius: 14px;
	--sh-shadow: 0 20px 45px -25px rgba(44, 38, 32, 0.35);
}

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

html { scroll-behavior: smooth; }

body {
	margin: 0;
	background: var( --sh-color-bg );
	color: var( --sh-color-text );
	font-family: var( --sh-font-body );
	font-size: 16px;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
	font-family: var( --sh-font-heading );
	font-weight: 600;
	line-height: 1.2;
	color: var( --sh-color-primary-dark );
	margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1.1em; }

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

.sh-container {
	max-width: var( --sh-container );
	margin: 0 auto;
	padding: 0 1.5rem;
}

.sh-section { padding: 4.5rem 0; }
.sh-section__title { text-align: center; margin-bottom: 0.4em; }
.sh-section__subtitle { text-align: center; color: var( --sh-color-muted ); max-width: 640px; margin: 0 auto 2.5rem; }

.sh-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.18em;
	font-size: 0.78rem;
	color: var( --sh-color-gold );
	font-weight: 600;
	margin-bottom: 0.8em;
}

/* ---------- Topbar & header ---------- */
.sh-topbar {
	background: var( --sh-color-primary-dark );
	color: #f3e6d3;
	font-size: 0.8rem;
}
.sh-topbar__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 1.5rem;
	gap: 1rem;
	flex-wrap: wrap;
}
.sh-topbar__cin { opacity: 0.85; letter-spacing: 0.03em; }

.sh-header {
	background: rgba(251, 247, 240, 0.94);
	backdrop-filter: blur(6px);
	position: sticky;
	top: 0;
	z-index: 50;
	border-bottom: 1px solid var( --sh-color-border );
}
.sh-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1rem 1.5rem;
}
.sh-logo {
	display: flex;
	flex-direction: column;
	line-height: 1;
	font-family: var( --sh-font-heading );
}
.sh-logo__mark { font-size: 1.5rem; font-weight: 700; color: var( --sh-color-primary ); }
.sh-logo__sub { font-size: 0.85rem; letter-spacing: 0.35em; text-transform: uppercase; color: var( --sh-color-gold ); }

.sh-nav { flex: 1; display: flex; justify-content: center; }
.sh-nav__list {
	list-style: none;
	display: flex;
	gap: 2.2rem;
	margin: 0;
	padding: 0;
}
.sh-nav__list a {
	color: var( --sh-color-text );
	font-size: 0.95rem;
	font-weight: 500;
	position: relative;
}
.sh-nav__list a::after {
	content: '';
	position: absolute;
	left: 0; right: 0; bottom: -6px;
	height: 2px;
	background: var( --sh-color-gold );
	transform: scaleX(0);
	transition: transform .2s ease;
}
.sh-nav__list a:hover::after,
.sh-nav__list .current_page_item > a::after { transform: scaleX(1); }

.sh-header__cta { display: inline-flex; }
.sh-nav-toggle { display: none; }

.sh-lang-switcher ul {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.sh-lang-switcher a {
	display: inline-block;
	padding: 0.3rem 0.6rem;
	border-radius: 999px;
	border: 1px solid var( --sh-color-border );
	color: var( --sh-color-muted );
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.sh-lang-switcher a:hover {
	border-color: var( --sh-color-gold, #b6893f );
	color: var( --sh-color-primary );
}
.sh-lang-switcher li.lang-item-current a {
	background: var( --sh-color-primary );
	border-color: var( --sh-color-primary );
	color: #fff;
}

.sh-nav-mobile {
	display: none;
	flex-direction: column;
	gap: 1rem;
	padding: 1rem 1.5rem 1.5rem;
	background: var( --sh-color-bg );
	border-top: 1px solid var( --sh-color-border );
}
.sh-nav-mobile__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.9rem; }
.sh-nav-mobile__list a { font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.sh-button {
	display: inline-block;
	background: var( --sh-color-primary );
	color: #fff;
	padding: 0.85rem 2rem;
	border-radius: 999px;
	font-family: var( --sh-font-heading );
	font-size: 1rem;
	letter-spacing: 0.03em;
	border: 1px solid var( --sh-color-primary );
	transition: all .2s ease;
}
.sh-button:hover { background: var( --sh-color-gold ); border-color: var( --sh-color-gold ); color: #fff; transform: translateY(-1px); }
.sh-button--small { padding: 0.5rem 1.3rem; font-size: 0.85rem; }
.sh-button--ghost { background: transparent; color: var( --sh-color-primary ); }
.sh-button--ghost:hover { background: var( --sh-color-primary ); color: #fff; }

/* ---------- Hero (home) ---------- */
.sh-hero {
	position: relative;
	padding: 170px 0 130px;
	min-height: 640px;
	display: flex;
	align-items: flex-end;
	color: #fff;
	overflow: hidden;
}
.sh-hero__media {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(44,26,20,0.35) 0%, rgba(44,26,20,0.75) 100%),
		radial-gradient(circle at 30% 20%, #a8562f 0%, transparent 55%),
		linear-gradient(135deg, #7a3b2e 0%, #4a231c 60%, #2c1712 100%);
	background-image:
		linear-gradient(180deg, rgba(20,12,8,0.6) 0%, rgba(20,12,8,0.08) 24%, rgba(28,16,11,0.35) 60%, rgba(20,12,8,0.85) 100%),
		var( --sh-hero-image, none );
	background-size: cover;
	background-position: center 30%;
}
.sh-hero__content { position: relative; z-index: 2; max-width: 720px; }
.sh-hero .sh-eyebrow { color: var( --sh-color-gold-light ); }
.sh-hero h1 { color: #fff; }
.sh-hero__subtitle { font-size: 1.15rem; color: #f1e6d6; max-width: 560px; }
.sh-hero__actions { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.sh-hero .sh-button--ghost { border-color: #fff; color: #fff; }
.sh-hero .sh-button--ghost:hover { background: #fff; color: var( --sh-color-primary ); }

/* ---------- Header trasparente sovrapposto all'hero (solo home) ---------- */
body.sh-has-photo-hero .sh-topbar { display: none; }
body.sh-has-photo-hero .sh-header {
	position: absolute;
	top: 0; left: 0; right: 0;
	background: transparent;
	backdrop-filter: none;
	border-bottom: none;
	box-shadow: none;
	transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
}
body.sh-has-photo-hero .sh-header .sh-logo__mark,
body.sh-has-photo-hero .sh-header .sh-logo__sub,
body.sh-has-photo-hero .sh-header .sh-nav__list a { color: #fff; }
body.sh-has-photo-hero .sh-header .sh-nav__list a::after { background: var( --sh-color-gold-light ); }
body.sh-has-photo-hero .sh-header .sh-lang-switcher a { color: #fff; border-color: rgba(255,255,255,0.45); }
body.sh-has-photo-hero .sh-header .sh-lang-switcher li.lang-item-current a { background: #fff; color: var( --sh-color-primary-dark ); border-color: #fff; }
body.sh-has-photo-hero .sh-header.is-stuck {
	position: fixed;
	background: rgba(251, 247, 240, 0.94);
	backdrop-filter: blur(6px);
	border-bottom: 1px solid var( --sh-color-border );
	box-shadow: var( --sh-shadow );
}
body.sh-has-photo-hero .sh-header.is-stuck .sh-logo__mark { color: var( --sh-color-primary ); }
body.sh-has-photo-hero .sh-header.is-stuck .sh-logo__sub { color: var( --sh-color-gold ); }
body.sh-has-photo-hero .sh-header.is-stuck .sh-nav__list a { color: var( --sh-color-text ); }
body.sh-has-photo-hero .sh-header.is-stuck .sh-nav__list a::after { background: var( --sh-color-gold ); }
body.sh-has-photo-hero .sh-header.is-stuck .sh-lang-switcher a { color: var( --sh-color-muted ); border-color: var( --sh-color-border ); }
body.sh-has-photo-hero .sh-header.is-stuck .sh-lang-switcher li.lang-item-current a { background: var( --sh-color-primary ); color: #fff; border-color: var( --sh-color-primary ); }

/* ---------- Barra di ricerca rapida — sconfina sul bordo dell'hero ---------- */
.sh-search-wrap { position: relative; margin-top: -38px; z-index: 10; }
.sh-search-bar {
	background: #fff;
	border: 1px solid var( --sh-color-border );
	border-radius: 999px;
	box-shadow: var( --sh-shadow );
	padding: 8px 10px 8px 30px;
	display: flex;
	align-items: stretch;
}
.sh-search-field { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 3px; padding: 8px 22px; border-right: 1px solid var( --sh-color-border ); }
.sh-search-field:last-of-type { border-right: none; }
.sh-search-field label {
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var( --sh-color-muted );
}
.sh-search-field input, .sh-search-field select {
	font-family: var( --sh-font-body );
	font-size: 0.95rem;
	color: var( --sh-color-text );
	background: transparent;
	border: none;
	padding: 0;
	width: 100%;
}
.sh-search-field input:focus, .sh-search-field select:focus { outline: none; }
.sh-search-bar .sh-button { flex: none; align-self: center; border: none; white-space: nowrap; }

/* ---------- Caratteristiche chiave sotto la barra di ricerca ---------- */
.sh-key-features {
	margin-top: 46px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}
.sh-key-feature { text-align: center; }
.sh-key-feature .sh-key-feature__icon {
	width: 54px; height: 54px;
	margin: 0 auto 14px;
	border-radius: 50%;
	background: var( --sh-color-cream );
	color: var( --sh-color-gold );
	display: flex; align-items: center; justify-content: center;
}
.sh-key-feature__icon svg { width: 26px; height: 26px; }
.sh-key-feature h3 { font-size: 1.02rem; margin-bottom: 5px; }
.sh-key-feature p { color: var( --sh-color-muted ); font-size: 0.85rem; margin: 0; }

@media (max-width: 900px) {
	.sh-search-bar { flex-wrap: wrap; border-radius: 22px; padding: 18px 22px; gap: 14px; }
	.sh-search-field { border-right: none; padding: 6px 0; flex: 1 1 42%; }
	.sh-search-bar .sh-button { width: 100%; }
	.sh-key-features { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
}
@media (max-width: 560px) {
	.sh-search-field { flex: 1 1 100%; }
}

/* ---------- Page hero (interior pages) ---------- */
.sh-page-hero {
	padding: 5rem 0 3rem;
	background: linear-gradient(160deg, var(--sh-color-cream) 0%, var(--sh-color-bg) 70%);
	border-bottom: 1px solid var( --sh-color-border );
	text-align: center;
}
.sh-page-hero .sh-hero__subtitle { color: var( --sh-color-muted ); max-width: 640px; margin: 0 auto; }

/* ---------- Intro ---------- */
.sh-intro__lead {
	font-family: var( --sh-font-heading );
	font-size: 1.35rem;
	font-style: italic;
	text-align: center;
	max-width: 820px;
	margin: 0 auto;
	color: var( --sh-color-primary-dark );
	line-height: 1.6;
}

/* ---------- Feature cards ---------- */
.sh-features__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.75rem;
	margin-top: 2rem;
}
.sh-feature-card {
	background: #fff;
	border: 1px solid var( --sh-color-border );
	border-radius: var( --sh-radius );
	padding: 2rem 1.6rem;
	text-align: center;
}
.sh-feature-card .icon {
	width: 2rem;
	height: 2rem;
	color: var( --sh-color-gold );
	margin: 0 auto 0.8rem;
}
.sh-feature-card h3 { font-size: 1.1rem; }
.sh-feature-card p { color: var( --sh-color-muted ); font-size: 0.92rem; margin-bottom: 0; }

/* ---------- Location ---------- */
.sh-location { background: var( --sh-color-cream ); }
.sh-location__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 2.5rem;
	align-items: center;
}
.sh-location__badges { display: grid; gap: 1rem; }
.sh-badge {
	background: #fff;
	border-radius: var( --sh-radius );
	padding: 1.2rem 1.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	box-shadow: var( --sh-shadow );
}
.sh-badge__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: var( --sh-color-cream, #f4ead9 );
	color: var( --sh-color-gold, #b6893f );
}
.sh-badge__icon svg { width: 24px; height: 24px; fill: currentColor; }
.sh-badge__icon img { width: auto; height: auto; max-width: 34px; max-height: 28px; }
.sh-badge__text { display: flex; flex-direction: column; }
.sh-badge__text strong { font-family: var(--sh-font-heading); font-size: 1.6rem; color: var(--sh-color-primary); }
.sh-badge__text span { color: var( --sh-color-muted ); font-size: 0.85rem; }

/* ---------- Guide teaser cards ---------- */
.sh-guide-teaser__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
	gap: 1.75rem;
}
.sh-guide-card {
	display: block;
	background: #fff;
	border: 1px solid var( --sh-color-border );
	border-radius: var( --sh-radius );
	padding: 2rem 1.6rem;
	color: var( --sh-color-text );
	transition: transform .2s ease, box-shadow .2s ease;
}
.sh-guide-card:hover { transform: translateY(-4px); box-shadow: var( --sh-shadow ); color: var( --sh-color-text ); }
.sh-guide-card .icon { color: var( --sh-color-gold ); width: 1.8rem; height: 1.8rem; margin-bottom: 0.6rem; }
.sh-guide-card h3 { margin-bottom: 0.3em; }
.sh-guide-card p { color: var( --sh-color-muted ); font-size: 0.92rem; margin-bottom: 0; }

/* ---------- Trust / CIN box ---------- */
.sh-trust__box {
	background: var( --sh-color-primary-dark );
	color: #f3e6d3;
	border-radius: var( --sh-radius );
	padding: 2.5rem;
	text-align: center;
}
.sh-trust__box h2 { color: #fff; }
.sh-trust__box a { color: var( --sh-color-gold-light ); font-weight: 600; }

/* ---------- CTA strip (rinforzo prenotazione a metà pagina) ---------- */
.sh-cta-strip {
	background: var( --sh-color-cream, #f4ead9 );
	border-top: 1px solid #e7ddcc;
	border-bottom: 1px solid #e7ddcc;
	padding: 1.6rem 0;
}
.sh-cta-strip__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
}
.sh-cta-strip__inner p {
	margin: 0;
	font-size: 1.05rem;
	color: var( --sh-color-text );
}
.sh-cta-strip .sh-button { flex-shrink: 0; }

/* ---------- CTA banner ---------- */
.sh-cta-banner {
	background: linear-gradient(135deg, var(--sh-color-primary) 0%, var(--sh-color-primary-dark) 100%);
	color: #fff;
	text-align: center;
	padding: 4rem 0;
}
.sh-cta-banner h2 { color: #fff; margin-bottom: 1.2em; }

/* ---------- Prose / content pages ---------- */
.sh-prose { max-width: 760px; margin: 0 auto; }
.sh-prose--wide { max-width: 860px; }
.sh-prose h2 { margin-top: 1.6em; }
.sh-prose h2:first-child { margin-top: 0; }
.sh-subheading { margin-top: 1.6em; font-size: 1.05rem; color: var(--sh-color-gold); text-transform: uppercase; letter-spacing: 0.05em; }
.sh-page-title { text-align: center; }

.sh-checklist { list-style: none; padding: 0; margin: 0 0 1.5em; }
.sh-checklist li {
	padding-left: 1.6em;
	position: relative;
	margin-bottom: 0.6em;
}
.sh-checklist li::before {
	content: '\2022';
	color: var( --sh-color-gold );
	font-size: 1.3em;
	position: absolute;
	left: 0;
	top: -0.05em;
}

.sh-amenities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 0.8rem;
	margin: 1.5rem 0 2rem;
}
.sh-amenities-grid span {
	background: var( --sh-color-cream );
	border-radius: 8px;
	padding: 0.7rem 1rem;
	font-size: 0.9rem;
}

.sh-note {
	background: var( --sh-color-cream );
	border-left: 3px solid var( --sh-color-gold );
	padding: 0.9rem 1.2rem;
	border-radius: 0 8px 8px 0;
	font-size: 0.92rem;
	color: var( --sh-color-primary-dark );
}

.sh-inline-cta { text-align: center; margin-top: 2.5rem; }
.sh-inline-cta--row { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 2.5rem; }
.sh-inline-cta--row + .sh-inline-cta { margin-top: 1.2rem; }

.sh-steps { padding-left: 1.2rem; }
.sh-steps li { margin-bottom: 0.8em; }

/* ---------- Guide nav (sub navigation) ---------- */
.sh-guide-nav {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin: -1.5rem 0 3rem;
}
.sh-guide-nav a {
	padding: 0.5rem 1.1rem;
	border-radius: 999px;
	border: 1px solid var( --sh-color-border );
	font-size: 0.88rem;
	color: var( --sh-color-text );
}
.sh-guide-nav a:hover,
.sh-guide-nav a.is-active {
	background: var( --sh-color-primary );
	border-color: var( --sh-color-primary );
	color: #fff;
}

/* ---------- Place cards (guide content) ---------- */
.sh-place-card {
	background: #fff;
	border: 1px solid var( --sh-color-border );
	border-radius: var( --sh-radius );
	padding: 1.5rem 1.8rem;
	margin-bottom: 1.4rem;
}
.sh-place-card h3 { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.6rem; margin-bottom: 0.4em; }
.sh-place-card__addr { font-family: var(--sh-font-body); font-weight: 400; font-size: 0.82rem; color: var(--sh-color-muted); }
.sh-place-card p:last-child { margin-bottom: 0; }

.sh-area-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.5rem;
	margin: 1.5rem 0 2.5rem;
}
.sh-area-grid h4 { font-family: var(--sh-font-body); font-weight: 600; font-size: 0.95rem; color: var(--sh-color-primary); margin-bottom: 0.4em; }
.sh-area-grid ul { margin: 0; padding-left: 1.1rem; color: var(--sh-color-muted); font-size: 0.9rem; }

/* ---------- Contact page ---------- */
.sh-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 3rem;
}
.sh-contact-form {
	background: var( --sh-color-cream );
	border-radius: var( --sh-radius );
	padding: 2rem;
}

/* Modulo Contact Form 7: allineato allo stile del resto del sito. */
.sh-contact-form .wpcf7-form p { margin: 0 0 1.1rem; }
.sh-contact-form .sh-cf7-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.1rem;
}
.sh-contact-form .wpcf7-form-control-wrap { display: block; }
.sh-contact-form input.wpcf7-form-control,
.sh-contact-form textarea.wpcf7-form-control {
	width: 100%;
	font-family: inherit;
	font-size: 1rem;
	padding: 0.65rem 0.8rem;
	border: 1px solid #d9cdb8;
	border-radius: 6px;
	background: #fff;
	color: var( --sh-color-text );
}
.sh-contact-form input.wpcf7-form-control:focus,
.sh-contact-form textarea.wpcf7-form-control:focus {
	outline: none;
	border-color: var( --sh-color-gold );
}
.sh-contact-form textarea.wpcf7-form-control { min-height: 130px; }
.sh-contact-form input.wpcf7-form-control.wpcf7-not-valid { border-color: #a3352d; }
.sh-contact-form .wpcf7-not-valid-tip { color: #a3352d; font-size: 0.82rem; margin-top: 0.3rem; }
.sh-contact-form input.wpcf7-submit.wpcf7-form-control {
	width: auto;
	background: var( --sh-color-primary );
	color: #fff;
	border: none;
	padding: 0.85rem 2rem;
	border-radius: 999px;
	font-family: var( --sh-font-heading );
	font-size: 1rem;
	letter-spacing: 0.03em;
	cursor: pointer;
	transition: background .2s ease;
}
.sh-contact-form input.wpcf7-submit.wpcf7-form-control:hover { background: var( --sh-color-gold ); }
.sh-contact-form .wpcf7-response-output {
	margin: 1rem 0 0;
	padding: 0.9rem 1.1rem;
	border-radius: 8px;
	font-size: 0.9rem;
}
.sh-contact-form .wpcf7 form.sent .wpcf7-response-output { background: #dcefdc; color: #256029; border: none; }
.sh-contact-form .wpcf7 form.invalid .wpcf7-response-output,
.sh-contact-form .wpcf7 form.failed .wpcf7-response-output,
.sh-contact-form .wpcf7 form.aborted .wpcf7-response-output,
.sh-contact-form .wpcf7 form.spam .wpcf7-response-output { background: #f8d7da; color: #842029; border: none; }

@media ( max-width: 640px ) {
	.sh-contact-form .sh-cf7-row { grid-template-columns: 1fr; }
}

.sh-alert { padding: 0.9rem 1.1rem; border-radius: 8px; font-size: 0.9rem; }
.sh-alert--success { background: #dcefdc; color: #256029; }
.sh-alert--error { background: #f8d7da; color: #842029; }
.sh-alert--notice { background: #fff3cd; color: #7a5b00; margin-bottom: 2rem; }
.sh-payment-result { max-width: 760px; margin: 0 auto 2.5rem; padding: 1.8rem 2rem; }
.sh-payment-result h2 { color: inherit; margin-bottom: 0.5em; }

/* ---------- Legal page ---------- */
.sh-legal h2 { border-top: 1px solid var(--sh-color-border); padding-top: 1.4em; }
.sh-legal h2:first-child { border-top: none; padding-top: 0; }

.sh-gallery-intro { color: var(--sh-color-muted); font-size: 0.95rem; margin-top: -0.8em; }

/* ---------- Carousel fotografico: hero + filmstrip di miniature ---------- */
.sh-carousel { margin: 2.5rem auto 0; max-width: 980px; }

.sh-carousel__stage {
	position: relative;
	border-radius: var(--sh-radius);
	overflow: hidden;
	box-shadow: 0 18px 40px -18px rgba(44, 38, 32, 0.35);
}
.sh-carousel__main {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	background: #efe9df;
}
.sh-carousel__mainitem.sh-carousel__mainitem {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
	padding: 0;
	margin: 0;
	background: none;
	cursor: zoom-in;
	opacity: 0;
	pointer-events: none;
	transition: opacity .5s ease;
}
.sh-carousel__mainitem.is-active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}
.sh-carousel__main img { width: 100%; height: 100%; object-fit: cover; display: block; }

.sh-carousel__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	border: none;
	background: rgba(28, 22, 16, 0.38);
	backdrop-filter: blur(3px);
	color: #fff;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .2s ease, transform .2s ease;
}
.sh-carousel__arrow:hover { background: rgba(28, 22, 16, 0.65); transform: translateY(-50%) scale(1.06); }
.sh-carousel__arrow--prev { left: 14px; }
.sh-carousel__arrow--next { right: 14px; }

.sh-carousel__counter {
	position: absolute;
	bottom: 14px;
	right: 14px;
	z-index: 3;
	background: rgba(28, 22, 16, 0.55);
	backdrop-filter: blur(3px);
	color: #fff;
	font-size: 0.8rem;
	letter-spacing: 0.03em;
	padding: 0.3rem 0.7rem;
	border-radius: 999px;
}

.sh-carousel__thumbs {
	display: flex;
	gap: 0.6rem;
	margin-top: 0.8rem;
	overflow-x: auto;
	padding-bottom: 2px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.sh-carousel__thumbs::-webkit-scrollbar { display: none; }
.sh-carousel__thumb {
	flex: 0 0 auto;
	width: 84px;
	aspect-ratio: 4 / 3;
	border-radius: 8px;
	overflow: hidden;
	border: 2px solid transparent;
	padding: 0;
	cursor: pointer;
	opacity: 0.55;
	transition: opacity .2s ease, border-color .2s ease;
}
.sh-carousel__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sh-carousel__thumb:hover { opacity: 0.85; }
.sh-carousel__thumb.is-active { opacity: 1; border-color: var(--sh-color-gold); }

@media ( max-width: 640px ) {
	.sh-carousel__main { aspect-ratio: 4 / 3; }
	.sh-carousel__thumb { width: 64px; }
}

/* ---------- Galleria fotografica + lightbox ---------- */
.sh-gallery-group { margin-bottom: 3rem; }
.sh-gallery-group__title {
	display: flex;
	align-items: baseline;
	gap: 0.7rem;
	font-family: var(--sh-font-heading);
	font-size: 1.3rem;
	color: var(--sh-color-primary-dark);
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid var(--sh-color-border);
}
.sh-gallery-group__count {
	font-family: var(--sh-font-body);
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--sh-color-gold);
	font-weight: 500;
}

.sh-photo-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	grid-auto-rows: 110px;
	grid-auto-flow: dense;
	gap: 0.6rem;
}
.sh-photo-grid__item {
	display: block;
	border: none;
	padding: 0;
	background: none;
	cursor: zoom-in;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}
.sh-photo-grid__item--feature {
	grid-column: span 2;
	grid-row: span 2;
}
@media ( min-width: 480px ) {
	.sh-photo-grid { grid-auto-rows: 130px; }
}
.sh-photo-grid__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .3s ease;
}
.sh-photo-grid__item:hover img { transform: scale(1.06); }
.sh-photo-grid__item::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 60%, rgba(20,14,10,0.35) 100%);
	opacity: 0;
	transition: opacity .2s ease;
}
.sh-photo-grid__item:hover::after { opacity: 1; }

/* Ambienti con una sola foto: card grande in evidenza, non griglia. */
.sh-photo-grid--single {
	grid-template-columns: 1fr;
	grid-auto-rows: auto;
}
.sh-photo-grid--single .sh-photo-grid__item {
	aspect-ratio: 21 / 9;
}
.sh-photo-grid__caption {
	position: absolute;
	left: 1.2rem;
	bottom: 1rem;
	color: #fff;
	font-family: var(--sh-font-heading);
	font-size: 1.1rem;
	text-shadow: 0 2px 8px rgba(0,0,0,0.6);
	z-index: 1;
}
.sh-photo-grid--single .sh-photo-grid__item::after {
	opacity: 1;
	background: linear-gradient(180deg, transparent 40%, rgba(20,14,10,0.55) 100%);
}

@media ( max-width: 480px ) {
	.sh-photo-grid--single .sh-photo-grid__item { aspect-ratio: 4 / 3; }
}

.sh-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(20, 14, 10, 0.92);
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 2rem;
}
.sh-lightbox[hidden] { display: none !important; }
.sh-lightbox__img {
	max-width: min(90vw, 1100px);
	max-height: 85vh;
	object-fit: contain;
	border-radius: 6px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.sh-lightbox__caption {
	position: absolute;
	bottom: 1.5rem;
	left: 0;
	right: 0;
	text-align: center;
	color: #f3e6d3;
	font-size: 0.9rem;
}
.sh-lightbox__close,
.sh-lightbox__prev,
.sh-lightbox__next {
	position: absolute;
	background: rgba(255,255,255,0.1);
	border: 1px solid rgba(255,255,255,0.3);
	color: #fff;
	border-radius: 50%;
	width: 46px;
	height: 46px;
	font-size: 1.3rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}
.sh-lightbox__close:hover,
.sh-lightbox__prev:hover,
.sh-lightbox__next:hover { background: rgba(255,255,255,0.25); }
.sh-lightbox__close { top: 1.5rem; right: 1.5rem; }
.sh-lightbox__prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.sh-lightbox__next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ---------- Footer ---------- */
.sh-footer {
	background: var( --sh-color-primary-dark );
	color: #e9dcc7;
	padding: 4rem 0 1.5rem;
	margin-top: 4rem;
}
.sh-footer h3, .sh-footer h4 { color: #fff; }
.sh-footer a { color: #e9dcc7; }
.sh-footer a:hover { color: var( --sh-color-gold-light ); }
.sh-footer__grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 2.5rem;
	margin-bottom: 2.5rem;
}
.sh-footer__brand { font-size: 1.4rem; }
.sh-footer__cin { font-size: 0.8rem; opacity: 0.8; }
.sh-footer__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; font-size: 0.92rem; }
.sh-footer__bottom {
	border-top: 1px solid rgba(255,255,255,0.12);
	padding-top: 1.2rem;
	font-size: 0.8rem;
	opacity: 0.75;
}


/* ---------- Servizi (amenities) ---------- */
.sh-services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 1.75rem;
	margin-top: 1rem;
}
.sh-service-category {
	background: #fff;
	border: 1px solid var( --sh-color-border );
	border-radius: var( --sh-radius );
	padding: 1.8rem 1.9rem;
}
.sh-service-category__head {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	margin-bottom: 1.1rem;
}
.sh-service-category__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: var( --sh-color-cream );
	color: var( --sh-color-gold );
}
.sh-service-category__icon svg { width: 21px; height: 21px; }
.sh-service-category h3 { font-size: 1.05rem; margin: 0; }
.sh-service-list { list-style: none; margin: 0; padding: 0; }
.sh-service-list li {
	padding: 0.55rem 0;
	border-top: 1px solid var( --sh-color-border );
	font-size: 0.92rem;
}
.sh-service-list li:first-child { border-top: none; padding-top: 0; }
.sh-service-list li:last-child { padding-bottom: 0; }
.sh-service-note { display: block; color: var( --sh-color-muted ); font-size: 0.84rem; margin-top: 0.15rem; }

/* ---------- La tua Host ---------- */
.sh-host-grid {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 3rem;
	align-items: start;
}
.sh-host-photo {
	width: 100%;
	aspect-ratio: 1;
	border-radius: 50%;
	object-fit: cover;
	border: 1px solid var( --sh-color-border );
	box-shadow: var( --sh-shadow );
}
.sh-host-photo--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var( --sh-color-cream );
	color: var( --sh-color-gold );
	font-family: var( --sh-font-heading );
	font-size: 3.5rem;
}
.sh-host-name { margin-bottom: 0.2em; }
.sh-host-tagline { color: var( --sh-color-gold ); font-family: var(--sh-font-body); font-weight: 600; text-transform: uppercase; font-size: 0.82rem; letter-spacing: 0.06em; margin-bottom: 1.2em; }
.sh-host-facts {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 1rem;
	margin: 1.8rem 0;
	padding: 1.4rem 0;
	border-top: 1px solid var( --sh-color-border );
	border-bottom: 1px solid var( --sh-color-border );
}
.sh-host-fact { display: flex; align-items: flex-start; gap: 0.7rem; }
.sh-host-fact .dashicons { color: var( --sh-color-gold ); font-size: 1.3rem; width: 1.3rem; height: 1.3rem; flex-shrink: 0; margin-top: 0.1em; }
.sh-host-fact span { font-size: 0.88rem; color: var( --sh-color-muted ); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
	.sh-nav, .sh-header__cta { display: none; }
	.sh-nav-toggle {
		display: inline-flex;
		flex-direction: column;
		gap: 5px;
		background: none;
		border: none;
		cursor: pointer;
		padding: 0.4rem;
	}
	.sh-nav-toggle span { width: 24px; height: 2px; background: var(--sh-color-text); }
	.sh-nav-mobile.is-open { display: flex; }
	.sh-location__grid,
	.sh-contact-grid { grid-template-columns: 1fr; }
	.sh-footer__grid { grid-template-columns: 1fr 1fr; }
	.sh-host-grid { grid-template-columns: 1fr; justify-items: center; text-align: center; }
	.sh-host-photo { max-width: 220px; }
	.sh-host-facts { justify-items: center; }
}
@media (max-width: 560px) {
	.sh-footer__grid { grid-template-columns: 1fr; }
}
