@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

/* ============================================================
   ADMIRAL HOTEL MILANO – Main Stylesheet
   Ispirazione grafica: Villa Appiani / boutique hotel italiano
   Font: Cormorant Garamond + Raleway
   ============================================================ */

/* ---------- GLOBAL VARIABLES ---------- */
:root {
  /* Palette */
  --white:        #FFFFFF;
  --off-white:    #F8F8F8;
  --cream:        #F2F2F2;
  --beige:        #EBEBEB;
  --accent:       #B0001E;   /* Admiral red */
  --accent-hover: #8C0018;
  --accent-light: rgba(176, 0, 30, .10);
  --gold:         #B0001E;   /* Admiral red (unificato con accent) */
  --gold-light:   rgba(176, 0, 30, .15);
  --text:         #6B5E55;
  --text-dark:    #231810;
  --text-light:   #A09387;
  --border:       #DDD3C8;
  --border-light: #DCDCDC;
  --dark:         #1A110C;
  --dark-warm:    #2C1D15;
  --overlay:      rgba(26, 17, 12, .52);

  /* Typography */
  --font-heading: 'Syne', 'Helvetica Neue', sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-py:   110px;
  --section-px:   5vw;
  --gap:          28px;

  /* Radius – azzerato come stile boutique elegante */
  --radius:       0;
  --radius-lg:    0;

  /* Transition */
  --ease:         cubic-bezier(.25,.46,.45,.94);
  --speed:        .4s;
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--accent); text-decoration: none; transition: color var(--speed) var(--ease); }
a:hover { color: var(--accent-hover); }

ul, ol { list-style: none; }

::selection {
  background: var(--accent);
  color: var(--white);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); font-weight: 800; letter-spacing: -.025em; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem);     font-weight: 700; }
h3 { font-size: clamp(1.3rem, 3vw, 1.9rem);   font-weight: 700; }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem);   font-weight: 600; }
h5 { font-size: 1rem;  font-weight: 600; }
h6 { font-size: .88rem; font-weight: 600; font-family: var(--font-body); }

/* Em nei titoli: peso leggero + colore accento — look editoriale */
h1 em, h2 em, h3 em, h4 em {
  font-style: normal;
  font-weight: 400;
  color: var(--accent);
}
.section-dark h1 em,
.section-dark h2 em,
.section-dark h3 em,
.storia-quote em { color: var(--gold); }

p { margin-bottom: 1rem; }

.text-accent  { color: var(--accent) !important; }
.text-dark    { color: var(--text-dark) !important; }
.text-light   { color: var(--text-light) !important; }
.text-white   { color: var(--white) !important; }
.text-center  { text-align: center; }
.text-italic  { font-style: italic; }

.label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .35em;
  font-size: .68rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 14px;
  font-family: var(--font-body);
}

.lead {
  font-size: 1.1rem;
  line-height: 1.9;
  max-width: 660px;
  font-weight: 300;
}

.lead-center {
  font-size: 1.1rem;
  line-height: 1.9;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

/* ---------- LAYOUT HELPERS ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--section-px);
}
.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--section-px);
}

.section {
  padding: var(--section-py) 0;
}
.section-sm {
  padding: 70px 0;
}
.section-xs {
  padding: 48px 0;
}
.section-white  { background: var(--white); }
.section-cream  { background: var(--cream); }
.section-beige  { background: var(--beige); }
.section-off    { background: var(--off-white); }
.section-dark   { background: var(--dark); color: var(--white); }
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }
.section-dark .label { color: var(--gold); }
.section-dark p { color: rgba(255,255,255,.72); }

.grid {
  display: grid;
  gap: var(--gap);
}
.grid > * { min-width: 0; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }
.flex-gap { gap: var(--gap); }

.mx-auto { margin-left: auto; margin-right: auto; }
.mb-0  { margin-bottom: 0 !important; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }
.mb-5  { margin-bottom: 3rem; }
.mt-2  { margin-top: 1rem; }
.mt-4  { margin-top: 2rem; }
.mt-5  { margin-top: 3rem; }

/* ---------- DECORATIVE DIVIDERS ---------- */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  width: 100%;
  max-width: 200px;
}
.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider::before { max-width: 40px; }
.divider-dot {
  width: 5px;
  height: 5px;
  border: 1px solid var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.divider-center {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px auto;
  width: fit-content;
}
.divider-center::before,
.divider-center::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--border);
}
.divider-center-dot {
  width: 5px;
  height: 5px;
  border: 1px solid var(--accent);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Legacy support */
div.divider { max-width: 200px; }
div.divider-center { max-width: none; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  padding: 15px 40px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--speed) var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--text-dark);
  border-color: var(--white);
}

.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: var(--white);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: #A87D52;
  border-color: #A87D52;
  color: var(--white);
}

.btn-nav {
  padding: 10px 26px;
  font-size: .68rem;
}

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  padding: 0;
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
}
.btn-text::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--speed) var(--ease);
}
.btn-text:hover::after { width: 100%; }

.mobile-cta {
  display: block;
  margin: 20px 24px 0;
  padding: 14px 0;
  text-align: center;
  background: var(--accent);
  color: var(--white) !important;
  font-family: var(--font-body);
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: background .3s var(--ease);
}
.mobile-cta:hover { background: var(--accent-hover); }

/* ---------- HEADER / NAVBAR ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10001;
  padding: 22px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  transition: all .5s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(16px);
  padding: 14px 48px;
  box-shadow: 0 1px 0 var(--border-light), 0 4px 30px rgba(26,17,12,.06);
}
.site-header.scrolled .hamburger span { background: var(--text-dark); }

.site-header.nav-open {
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
.site-header.nav-open .hamburger span { background: var(--white); }

.header-logo-link {
  justify-self: center;
  grid-column: 2;
  display: block;
  line-height: 0;
  transition: opacity .3s ease;
}
.header-logo {
  height: 44px;
  width: auto;
  display: block;
  /* Default: logo originale (header scrollato / sfondo bianco) */
  filter: none;
  transition: filter .4s ease, height .4s ease;
}

/* Header non scrollato (su hero scuro): logo bianco */
.site-header:not(.scrolled):not(.nav-open) .header-logo {
  filter: brightness(0) invert(1)
          drop-shadow(0 1px 8px rgba(0,0,0,.35));
}

/* Header scrollato: logo originale, nessun filtro */
.site-header.scrolled .header-logo {
  filter: none;
  height: 38px;
}

/* Menu aperto: torna bianco */
.site-header.nav-open .header-logo {
  filter: brightness(0) invert(1);
}

/* Desktop: logo leggermente più grande in homepage non scrollata */
@media (min-width: 769px) {
  .site-header:not(.scrolled):not(.nav-open) .header-logo {
    height: 52px;
  }
}

/* Footer logo */
@media (min-width: 769px) {
  .site-footer .footer-brand img {
    height: 48px;
  }
}

.header-actions {
  justify-self: end;
  grid-column: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity .3s ease;
}
.header-book-btn {
  white-space: nowrap;
}

/* Menu aperto: nascondi logo e azioni, resta solo la chiusura */
.site-header.nav-open .header-logo-link,
.site-header.nav-open .header-actions {
  opacity: 0;
  pointer-events: none;
}

/* Language switcher */
.lang-switcher-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: border-color .25s ease, background .25s ease, color .25s ease;
}
.lang-switcher-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.site-header.scrolled .lang-switcher-btn {
  border-color: var(--border);
  background: transparent;
  color: var(--text-dark);
}
.lang-switcher-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.lang-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}
.lang-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lang-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 17, 12, .55);
  backdrop-filter: blur(4px);
}
.lang-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  background: var(--white);
  padding: 36px 32px 28px;
  box-shadow: 0 24px 80px rgba(26, 17, 12, .22);
  transform: translateY(12px) scale(.98);
  transition: transform .3s var(--ease);
}
.lang-modal.open .lang-modal-dialog {
  transform: translateY(0) scale(1);
}
.lang-modal-dialog h2 {
  font-size: 1.35rem;
  margin: 0 40px 8px 0;
  color: var(--text-dark);
}
.lang-modal-lead {
  font-size: .9rem;
  color: var(--text);
  margin-bottom: 24px;
  font-weight: 300;
}
.lang-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text-dark);
  font-size: 1.4rem;
  line-height: 1;
}
.lang-modal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.lang-modal-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid var(--border);
  color: var(--text-dark);
  text-decoration: none;
  font-size: .95rem;
  transition: border-color .2s ease, background .2s ease, color .2s ease;
}
.lang-modal-list a:hover,
.lang-modal-list a.is-active {
  border-color: var(--accent);
  background: var(--accent-light);
  color: var(--accent);
}
.lang-modal-list a .lang-code {
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .7;
}

/* Hamburger */
.hamburger {
  justify-self: start;
  grid-column: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
  z-index: 2;
  padding: 10px;
  margin: -10px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--white);
  transition: all .35s var(--ease);
}
.hamburger span:nth-child(1) { width: 20px; }
.hamburger span:nth-child(3) { width: 20px; margin-left: 8px; }
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  width: 28px;
}
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  width: 28px;
  margin-left: 0;
}
.site-header.scrolled .hamburger span { background: var(--text-dark); }

/* Overlay menu */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
}
.nav-overlay.open { pointer-events: auto; }
.nav-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 10, 5, .92);
  opacity: 0;
  transition: opacity .45s var(--ease);
}
.nav-overlay.open .nav-overlay-backdrop { opacity: 1; }
.nav-overlay-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: min(580px, calc(100vw - 40px));
  overflow-y: auto;
  overflow-x: hidden;
  padding: calc(100px + env(safe-area-inset-top, 0px)) 40px calc(48px + env(safe-area-inset-bottom, 0px));
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, .2) transparent;
  opacity: 0;
  transform: translate(-50%, -20px);
  transition: opacity .45s var(--ease), transform .5s var(--ease);
}
.nav-overlay.open .nav-overlay-panel {
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-overlay-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.nav-overlay-nav > a:not(.nav-overlay-phone) {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-style: normal;
  font-weight: 700;
  color: var(--white);
  padding: 14px 0;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .25s, padding-left .3s;
  letter-spacing: .02em;
}
.nav-overlay-nav > a:not(.nav-overlay-phone):hover {
  color: var(--gold);
  padding-left: 10px;
}
.nav-overlay-phone {
  font-family: var(--font-body);
  font-size: .88rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 28px 0 10px;
  text-decoration: none;
  border-bottom: none;
}
.nav-overlay-phone:hover { color: #D4A87C; }

/* ---------- Barra azioni mobile ---------- */
.mobile-action-dock { display: none; }
.mobile-dock-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  padding: 6px 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .54rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: color .2s var(--ease);
}
.mobile-dock-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
}
.mobile-dock-label { line-height: 1.2; text-align: center; }
.mobile-dock-book {
  background: var(--accent);
  border-radius: 10px;
  margin: -2px 2px;
  padding: 8px 4px;
  color: var(--white);
}
.mobile-dock-book .mobile-dock-icon,
.mobile-dock-book .mobile-dock-label { color: var(--white); }
.mobile-dock-whatsapp .mobile-dock-icon { color: #25D366; }

/* Contact sheet mobile */
.mobile-contact-sheet {
  position: fixed;
  inset: 0;
  z-index: 10050;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear .35s;
}
.mobile-contact-sheet.open {
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}
.mobile-contact-sheet-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 10, 5, .5);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.mobile-contact-sheet.open .mobile-contact-sheet-backdrop { opacity: 1; }
.mobile-contact-sheet-panel {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: max(16px, env(safe-area-inset-bottom, 0px));
  max-width: 400px;
  margin: 0 auto;
  background: var(--white);
  padding: 32px 24px 24px;
  box-shadow: 0 28px 70px rgba(0,0,0,.2);
  transform: translateY(calc(100% + 24px));
  transition: transform .38s var(--ease);
}
.mobile-contact-sheet.open .mobile-contact-sheet-panel { transform: translateY(0); }
.mobile-contact-sheet-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  margin: 0 0 22px;
}
.mobile-contact-sheet-actions { display: flex; flex-direction: column; gap: 12px; }
.mobile-contact-sheet-actions .btn { width: 100%; justify-content: center; }
.mobile-contact-sheet-close {
  display: block;
  width: 100%;
  margin-top: 18px;
  text-align: center;
}

/* Accordion sottomenu */
.nav-accordion {
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-accordion-with-primary-link .nav-accordion-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}
.nav-accordion-primary-link {
  flex: 1;
  min-width: 0;
  padding: 14px 0;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-style: normal;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  text-align: left;
  transition: color .25s;
  letter-spacing: .02em;
}
.nav-accordion-primary-link:hover { color: var(--gold); }
.nav-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-style: normal;
  font-weight: 700;
  color: var(--white);
  text-align: left;
  transition: color .25s;
  letter-spacing: .02em;
}
.nav-accordion-btn:hover { color: var(--gold); }
.nav-accordion-btn.nav-accordion-toggle {
  width: auto;
  flex-shrink: 0;
  min-width: 44px;
  min-height: 44px;
  padding: 10px 4px 10px 12px;
  justify-content: center;
  font-size: 1rem;
  font-style: normal;
}
.nav-accordion-chevron {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  margin-bottom: 4px;
  transition: transform .3s var(--ease);
}
.nav-accordion.is-open .nav-accordion-chevron {
  transform: rotate(-135deg);
  margin-bottom: -2px;
}
.nav-accordion-panel {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height .45s var(--ease), opacity .35s ease, padding .35s ease;
  padding: 0 0 0 8px;
}
.nav-accordion.is-open .nav-accordion-panel {
  max-height: 480px;
  opacity: 1;
  padding: 4px 0 18px 12px;
  pointer-events: auto;
}
.nav-accordion-panel a {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
  padding: 8px 0 8px 12px;
  text-decoration: none;
  border-left: 1px solid rgba(196,149,106,.3);
  transition: color .2s, border-color .2s, padding-left .2s;
}
.nav-accordion-panel a:hover {
  color: var(--gold);
  border-left-color: var(--gold);
  padding-left: 18px;
}

/* Menu overlay su desktop: voci più compatte per evitare lo scroll verticale */
@media (min-width: 769px) {
  .nav-overlay-panel {
    padding-top: calc(84px + env(safe-area-inset-top, 0px));
    padding-bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  }
  .nav-overlay-nav > a:not(.nav-overlay-phone),
  .nav-accordion-primary-link,
  .nav-accordion-btn {
    font-size: clamp(1.25rem, 3.4vh, 2rem);
    padding: 9px 0;
  }
  .nav-accordion-btn.nav-accordion-toggle {
    padding: 8px 4px 8px 12px;
  }
  .nav-overlay-phone {
    padding: 16px 0 6px;
  }
  .nav-accordion.is-open .nav-accordion-panel {
    max-height: 400px;
    padding: 2px 0 12px 12px;
  }
  .nav-accordion-panel a {
    padding: 6px 0 6px 12px;
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 12s linear;
}
/* Foto generica di fallback: si applica solo se la sezione hero non ha
   gia' una foto propria (background-image inline o <img>). Il blog non ha
   l'elemento .hero-bg quindi non e' mai interessato da questa regola. */
.hero-bg:not([style*="background-image"]):not(:has(img)) {
  background-image: url('/assets/media/temi/esterni/01-dsc-5773.jpg');
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,17,12,.82) 0%,
    rgba(26,17,12,.58) 25%,
    rgba(26,17,12,.42) 50%,
    rgba(26,17,12,.38) 65%,
    rgba(26,17,12,.65) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 860px;
  padding: 0 24px;
}
.hero-content .label { color: rgba(255,255,255,.72); letter-spacing: .35em; }
.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
  font-weight: 300;
}
.hero-home .hero-content h1 em { color: var(--white); }
.hero-content p {
  font-size: 1.05rem;
  font-weight: 300;
  opacity: .88;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.85;
}

/* Hero inner pages */
.hero-inner {
  height: 60vh;
  min-height: 440px;
}
.hero-inner .hero-content {
  text-align: center;
  align-items: center;
}
.hero-inner h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: #fff;
  text-shadow: 0 2px 32px rgba(0,0,0,.55);
}
.hero-inner h1 em {
  color: #fff;
  font-style: italic;
}
.hero-inner::after {
  background: rgba(0,0,0,.5);
}

/* Scroll indicator */
a.hero-scroll {
  text-decoration: none;
  cursor: pointer;
  transition: opacity .3s var(--ease);
}
a.hero-scroll:hover { opacity: .8; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-scroll > span:first-child {
  font-family: var(--font-body);
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.hero-scroll .scroll-line {
  display: block;
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.25);
  position: relative;
  overflow: hidden;
}
.hero-scroll .scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  background: var(--gold);
  animation: scrollDown 2.2s infinite;
}
@keyframes scrollDown {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* Hero CTA group */
.hero-cta-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-cta-group .btn {
  justify-content: center;
  text-align: center;
  width: 100%;
}

/* ---------- PLACEHOLDER IMAGES ---------- */
.ph-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--beige);
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.ph-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 20px,
      rgba(0,0,0,.02) 20px,
      rgba(0,0,0,.02) 21px
    );
}
.ph-img span {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
}
.ph-img span::before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 24 24' fill='none' stroke='%23A09387' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpolyline points='21 15 16 10 5 21'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: .6;
}

/* ---------- FEATURE TILES (Villa Appiani style) ---------- */
/* Griglia principale stile Villa Appiani */
.features-section {
  padding: 0;
}

/* Intestazione di blocco con etichetta */
.features-block-header {
  padding: 28px 40px 0;
  background: var(--white);
}
.features-block-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--accent);
}

/* Sezione alternativa (business / posizione) */
.features-section-alt {
  background: var(--cream);
}
.features-section-alt .feature-tile {
  background: var(--off-white);
}
.features-section-alt .feature-tile:hover {
  background: var(--beige);
}
.features-section-alt .features-block-header {
  background: var(--cream);
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--border-light);
}

/* Griglia a 4 colonne per il blocco business */
.features-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .features-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

.feature-tile {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  overflow: hidden;
  transition: background var(--speed) var(--ease);
}
.feature-tile:hover { background: var(--cream); }

.feature-tile-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.feature-tile-img img,
.feature-tile-img .ph-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease), filter .7s var(--ease);
  filter: brightness(.97) saturate(.95);
}
.feature-tile:hover .feature-tile-img img,
.feature-tile:hover .feature-tile-img .ph-img {
  transform: scale(1.05);
  filter: brightness(1.03) saturate(1.08);
}

.feature-tile-body {
  padding: 30px 28px 34px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.feature-tile-label {
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.feature-tile-title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.feature-tile-text {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 18px;
  flex-grow: 1;
  font-weight: 300;
}
.feature-tile .btn-text {
  margin-top: auto;
  font-size: .65rem;
  letter-spacing: .3em;
}

/* Tile large (occupa 2 colonne) */
.feature-tile-lg {
  grid-column: span 2;
}
.feature-tile-lg .feature-tile-img {
  aspect-ratio: 16/7;
}

/* Tile con overlay — foto che occupa TUTTO, testo sovrapposto in basso */
.feature-tile-overlay {
  position: relative !important;
  aspect-ratio: 1/1;
  overflow: hidden !important;
  background: #222222 !important;       /* grigio scuro neutro, nessun caldo */
  display: block !important;
}
.feature-tile-overlay .feature-tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}
.feature-tile-overlay .feature-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-tile-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 25%, rgba(0,0,0,.75) 100%);
  z-index: 1;
  transition: opacity .4s;
  pointer-events: none;
}
.feature-tile-overlay:hover::after { opacity: .9; }
.feature-tile-overlay .feature-tile-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 22px 24px;
  background: transparent !important;
  flex: unset;
}
.feature-tile-overlay .feature-tile-label { color: rgba(255,255,255,.6); }
.feature-tile-overlay .feature-tile-title { color: var(--white); font-size: clamp(1.1rem, 2vw, 1.35rem); }
.feature-tile-overlay .feature-tile-text { display: none; }
.feature-tile-overlay .btn-text { color: rgba(255,255,255,.7); font-size: .62rem; }
.feature-tile-overlay .btn-text::after { background: rgba(255,255,255,.7); }

/* ---------- CARDS (per carousel camere) ---------- */
.card {
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: transform var(--speed) var(--ease), box-shadow var(--speed) var(--ease), border-color var(--speed) var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(26,17,12,.09);
  border-color: var(--border);
}
.card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.card-img img,
.card-img .ph-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .6s var(--ease);
  filter: brightness(.96) saturate(.9);
}
.card:hover .card-img img { transform: scale(1.06); filter: brightness(1.04) saturate(1.1); }
.card-body { padding: 28px 26px 32px; }
.card-body h4 { margin-bottom: 8px; }
.card-body p { font-size: .9rem; margin-bottom: 18px; font-weight: 300; }
.card-meta {
  display: flex;
  gap: 16px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}

/* ---------- ROOM CAROUSEL ---------- */
.rooms-carousel { position: relative; overflow: hidden; }
.rooms-track {
  display: flex;
  transition: transform .65s var(--ease);
  will-change: transform;
}
.rooms-track .card {
  flex: 0 0 calc((100% - 24px) / 2);
  margin-right: 24px;
}
.rooms-track .card:last-child { margin-right: 0; }
.rooms-carousel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 44px;
}
.carousel-nav { display: flex; gap: 0; }
.carousel-btn {
  width: 52px;
  height: 52px;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s var(--ease);
  font-size: 1.25rem;
  color: var(--text-dark);
}
.carousel-btn:first-child { border-right: none; }
.carousel-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }

/* ---------- SPLIT SECTION ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.split > * { min-width: 0; }
.split-sm {
  min-height: 320px;
}
.split-sm .split-img {
  min-height: 240px;
}
.split-sm .split-text {
  padding: 48px 60px;
}
.split-sm .split-text h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  margin-bottom: 12px;
}
.split-sm .split-text p {
  font-size: .9rem;
  margin-bottom: 14px;
}
.split-img {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.split-img img,
.split-img .ph-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}
.split-img:hover img { transform: scale(1.05); }
.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 70px;
}
.split-text h2 { margin-bottom: 20px; }
.split-text p  { margin-bottom: 20px; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

/* ---------- EVENTI ---------- */
.eventi-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.eventi-header h2 { margin-bottom: 0; }
.eventi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.evento-card {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: box-shadow var(--speed) var(--ease), transform var(--speed) var(--ease);
}
.evento-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transform: translateY(-3px);
}
.evento-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.evento-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.evento-card:hover .evento-card-img img { transform: scale(1.05); }
.evento-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  padding: 5px 12px;
}
.evento-badge--prossimo { background: var(--text-dark); }
.evento-badge--generico { background: var(--text-light); }
.evento-card-body {
  padding: 24px 26px 28px;
}
.evento-data {
  display: block;
  font-family: var(--font-body);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.evento-titolo {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.2;
}
.evento-testo {
  font-size: .88rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 16px;
}
/* Card evento grande (pagina eventi.html) */
.evento-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border-light);
  overflow: hidden;
  margin-top: 40px;
}
.evento-feature-img {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}
.evento-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
}
.evento-feature:hover .evento-feature-img img { transform: scale(1.04); }
.evento-feature-body {
  padding: 52px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.evento-feature-body h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.15;
}
.evento-feature-body p {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 14px;
}
@media (max-width: 900px) {
  .evento-feature { grid-template-columns: 1fr; }
  .evento-feature-body { padding: 36px 28px; }
}
@media (max-width: 900px) {
  .eventi-grid { grid-template-columns: 1fr; }
  .eventi-header { flex-direction: column; align-items: flex-start; }
}

/* ---------- PAGINA SERVIZI ---------- */
.servizi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-light);
  margin-top: 40px;
}
.servizio-card {
  background: var(--white);
  padding: 40px 36px 44px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background var(--speed) var(--ease);
}
.servizio-card--featured:hover { background: var(--off-white); }
.servizio-icon {
  font-size: 1.8rem;
  color: var(--accent);
  line-height: 1;
}
.servizio-titolo {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}
.servizio-testo {
  font-size: .88rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
}

/* Layout 2 colonne testo + checklist */
.servizi-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.servizi-2col--reverse { direction: rtl; }
.servizi-2col--reverse > * { direction: ltr; }
.servizi-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
  padding: 0;
  margin: 0;
}
.servizi-checklist li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: .88rem;
  line-height: 1.6;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-light);
}
.servizi-checklist .bi-check2 {
  color: var(--accent);
  font-size: .9rem;
  flex-shrink: 0;
}

/* Strip hotel ad hoc */
.servizi-adhoc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.servizi-adhoc-text h2 { color: var(--white); }
.servizi-adhoc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,.08);
}
.adhoc-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,.04);
  gap: 8px;
}
.adhoc-stat-val {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -.02em;
  line-height: 1;
}
.adhoc-stat-label {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

@media (max-width: 900px) {
  .servizi-grid { grid-template-columns: 1fr; }
  .servizi-2col,
  .servizi-2col--reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .servizi-checklist { grid-template-columns: 1fr; }
  .servizi-adhoc { grid-template-columns: 1fr; gap: 48px; }
}

/* ---------- SALE MEETING ---------- */
.sala-config {
  list-style: none;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 12px 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sala-config li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: .82rem;
  line-height: 1.4;
}
.sala-config-label {
  color: var(--text-light);
  font-weight: 400;
}
.sala-config-val {
  font-weight: 600;
  color: var(--text-dark);
  font-family: var(--font-heading);
  letter-spacing: -.01em;
}

/* ---------- GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.gallery-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img,
.gallery-item .ph-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .5s var(--ease);
  filter: brightness(.94) saturate(.88);
}
@media (hover: hover) and (pointer: fine) {
  .gallery-item:hover img { transform: scale(1.07); filter: brightness(1.04) saturate(1.15); }
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background .3s;
}
.gallery-item:hover::after { background: rgba(0,0,0,.06); }
.gallery-item .gallery-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 46px; height: 46px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: transform .4s var(--ease);
  color: var(--text-dark);
  font-size: 1.1rem;
}
.gallery-item:hover .gallery-zoom { transform: translate(-50%, -50%) scale(1); }

/* ---------- AMENITIES ---------- */
.amenities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0;
}
.amenity {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
}
.amenity-icon {
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.amenity span { font-size: .88rem; font-weight: 300; color: var(--text); }

/* ---------- ROOM INFO BAR ---------- */
.room-info-bar {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 40px 0;
}
.room-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 28px 36px 28px 0;
}
.room-info-item .ri-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.room-info-item .ri-label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-light);
  font-weight: 500;
}
.room-info-item .ri-value { font-size: .95rem; color: var(--text-dark); }

/* ---------- OTHER ROOMS STRIP ---------- */
.other-rooms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.other-room {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.other-room img,
.other-room .ph-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.other-room:hover img { transform: scale(1.06); }
.other-room-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.68) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px 16px;
}
.other-room-overlay h5 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: -.01em;
}
/* Card "Tutte le camere" senza foto */
.other-room--cta {
  background: var(--text-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-decoration: none;
  transition: background .35s var(--ease);
}
.other-room--cta:hover { background: var(--accent); }
.other-room--cta .other-room-cta-icon {
  width: 52px; height: 52px;
  border: 1.5px solid rgba(255,255,255,.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  transition: border-color .35s var(--ease), transform .35s var(--ease);
}
.other-room--cta:hover .other-room-cta-icon {
  border-color: var(--white);
  transform: scale(1.08);
}
.other-room--cta .other-room-cta-label {
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  text-align: center;
}
.other-room--cta .other-room-cta-sub {
  font-size: .72rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* ---------- CONTACT FORM ---------- */
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 500;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  background: var(--off-white);
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--text-dark);
  transition: border-color .3s, background .3s;
  border-radius: 0;
  outline: none;
  font-weight: 300;
}
.form-control:focus {
  border-color: var(--accent);
  background: var(--white);
}
textarea.form-control { min-height: 150px; resize: vertical; }

/* ---------- CONTACT INFO ---------- */
.contact-card {
  padding: 40px;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  height: 100%;
}
.contact-card h4 { margin-bottom: 20px; }
.contact-card a {
  display: block;
  color: var(--text);
  font-size: .92rem;
  margin-bottom: 6px;
  font-weight: 300;
}
.contact-card a:hover { color: var(--accent); }
.contact-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.contact-social .contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: color .25s var(--ease);
}
.contact-social .contact-social-link:hover { color: var(--accent-hover); }
.contact-social .contact-social-link svg { flex-shrink: 0; }

/* Map */
.map-container {
  width: 100%;
  height: 450px;
  position: relative;
  border-top: 3px solid var(--accent);
  filter: grayscale(.55) sepia(.35) hue-rotate(-6deg) saturate(1.35) brightness(.97) contrast(1.08);
}
.map-container iframe { width: 100%; height: 100%; border: none; display: block; }
#mappa { scroll-margin-top: 96px; }

/* ---------- COMING SOON (Eventi) ---------- */
.coming-soon {
  position: relative;
  padding: clamp(72px, 12vw, 120px) 0;
  overflow: hidden;
}
.coming-soon::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(176, 0, 30, .08), transparent 65%),
    linear-gradient(180deg, rgba(242, 242, 242, .35), transparent 40%);
  pointer-events: none;
}
.coming-soon-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.coming-soon-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  font-family: var(--font-heading);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
}
.coming-soon-mark::before,
.coming-soon-mark::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
  opacity: .55;
}
.coming-soon-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(176, 0, 30, .45);
  animation: coming-soon-pulse 2.2s ease-out infinite;
}
@keyframes coming-soon-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(176, 0, 30, .45); }
  70%  { box-shadow: 0 0 0 12px rgba(176, 0, 30, 0); }
  100% { box-shadow: 0 0 0 0 rgba(176, 0, 30, 0); }
}
.coming-soon h2 {
  margin-bottom: 20px;
}
.coming-soon .lead-center {
  margin: 0 auto 36px;
  max-width: 520px;
}
.coming-soon-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.coming-soon-cta .btn i {
  margin-right: 8px;
  font-size: .95em;
  vertical-align: -0.05em;
}
@media (prefers-reduced-motion: reduce) {
  .coming-soon-pulse { animation: none; }
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--dark-warm);
  color: rgba(255,255,255,.55);
  padding: 80px 0 0;
}
.footer-credit {
  margin: 0;
  padding: 1.5rem 0 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-size: .72rem;
  color: rgba(255,255,255,.38);
  letter-spacing: .04em;
}
.footer-credit a {
  color: rgba(255,255,255,.6);
  font-weight: 500;
  transition: color .25s;
}
.footer-credit a:hover { color: var(--gold); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { height: 44px; margin-bottom: 16px; }
.footer-brand p { font-size: .85rem; font-weight: 300; line-height: 1.7; max-width: 260px; }
.footer-social { display: flex; align-items: center; gap: 10px; margin-top: 22px; }
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.45);
  transition: color .25s, border-color .25s, background .25s;
}
.footer-social-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(196,149,106,.08);
}
.site-footer h6 {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .65rem;
  margin-bottom: 22px;
  font-family: var(--font-body);
  font-weight: 600;
}
.footer-contact-group:not(:first-of-type) {
  margin-top: 1.6rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.footer-contact-label {
  display: block;
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(255,255,255,.35);
  margin-bottom: 10px;
}
.footer-contact-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-contact-social-link {
  display: inline-flex;
  align-items: center;
  color: var(--gold);
  transition: color .25s;
}
.footer-contact-social-link:hover { color: #D4A87C; }
.footer-links a {
  display: block;
  color: rgba(255,255,255,.45);
  font-size: .85rem;
  font-weight: 300;
  padding: 5px 0;
  transition: color .3s, padding-left .3s;
}
.footer-links a:hover { color: var(--gold); padding-left: 6px; }
.footer-legal {
  padding: 22px 0 4px;
  text-align: center;
  font-size: .72rem;
  line-height: 1.75;
  color: rgba(255,255,255,.4);
}
.footer-legal span { display: block; }
.footer-legal .footer-legal-name {
  color: rgba(255,255,255,.62);
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.footer-bottom {
  padding: 20px 0 24px;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: .75rem;
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ---------- OFFERTE ---------- */
.offers-single {
  max-width: 480px;
  margin: 0 auto;
}
.offer-card {
  border: 1px solid var(--border);
  padding: 40px;
  transition: all var(--speed) var(--ease);
  background: var(--white);
}
.offer-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(140,49,72,.08);
}
.offer-card h4 { margin-bottom: 14px; }
.offer-card p  { margin-bottom: 22px; }
.offer-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-family: var(--font-body);
  font-size: .62rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 14px;
  margin-bottom: 18px;
}

/* ---------- INFO GRID ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.info-item {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: transparent;
  transition: background .35s var(--ease);
}
.info-item:nth-child(3n) { border-right: none; }
.info-item:nth-last-child(-n+3) { border-bottom: none; }
.info-item:hover { background: var(--cream); }
.info-item h5 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.info-item p { font-size: .88rem; margin-bottom: 0; font-weight: 300; line-height: 1.7; }

/* ---------- PREMI & NUMERI ---------- */
.premi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 56px;
}
.premio-item {
  padding: 44px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background .35s;
}
.premio-item:last-child { border-right: none; }
.premio-item:hover { background: var(--cream); }
.premio-anno {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
  font-style: italic;
}
.premio-titolo {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 8px;
}
.premio-desc { font-size: .82rem; color: var(--text-light); margin: 0; line-height: 1.6; }

.numeri-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}
.numero-item {
  padding: 48px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background .35s ease;
}
.numero-item:last-child { border-right: none; }
.numero-item:hover { background: var(--off-white); }

/* Entrata staggerata */
.numeri-entry {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity .7s ease calc(var(--i) * 120ms),
    transform .7s cubic-bezier(.22,.68,0,1.2) calc(var(--i) * 120ms);
}
.numeri-entry.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.numero-val {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 800;
  letter-spacing: -.03em;
  transition: color .3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.numero-item:hover .numero-val {
  color: var(--accent-hover);
}

/* Lineetta animata sotto il numero */
.numero-line {
  width: 0;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 14px;
  transition: width .6s cubic-bezier(.22,.68,0,1.2);
}
.numeri-entry.is-visible .numero-line {
  width: 32px;
  transition-delay: calc(var(--i) * 120ms + 400ms);
}

.numero-label {
  font-family: var(--font-body);
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 500;
}

/* ---------- STORIA QUOTE ---------- */
.storia-quote {
  position: relative;
  padding: 80px 100px;
  background: var(--dark-warm);
  text-align: center;
}
.storia-quote::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 48px;
  font-family: var(--font-heading);
  font-size: 10rem;
  color: var(--accent);
  opacity: .2;
  line-height: 1;
}
.storia-quote blockquote {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-style: normal;
  color: var(--white);
  font-weight: 300;
  line-height: 1.6;
  max-width: 820px;
  margin: 0 auto 22px;
  position: relative;
  letter-spacing: -.01em;
}
.storia-quote cite {
  font-family: var(--font-body);
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ---------- ZONA STRIP ---------- */
.zona-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}
.zona-item {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.zona-item img,
.zona-item .ph-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .6s var(--ease);
  filter: brightness(.78) saturate(.9);
}
.zona-item:hover img { transform: scale(1.06); filter: brightness(.65) saturate(1.0); }
.zona-item-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,.72) 100%);
}
.zona-item h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-style: normal;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 4px;
}
.zona-item p { font-size: .8rem; color: rgba(255,255,255,.72); margin: 0 0 12px; line-height: 1.5; }
.zona-item .btn-text { color: var(--gold); font-size: .65rem; letter-spacing: .28em; }
.zona-item .btn-text::after { background: var(--gold); }

/* ---------- FAQ SECTION ---------- */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  font-family: var(--font-heading);
  font-size: clamp(.95rem, 2vw, 1.1rem);
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color .25s;
}
.faq-question:hover { color: var(--accent); }
.faq-chevron {
  flex-shrink: 0;
  width: 9px; height: 9px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  margin-bottom: 3px;
  transition: transform .3s var(--ease);
}
.faq-item.is-open .faq-chevron { transform: rotate(-135deg); margin-bottom: -2px; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height .4s var(--ease), opacity .3s ease, padding .3s ease;
  padding: 0;
}
.faq-answer p { font-size: .92rem; line-height: 1.8; margin: 0; font-weight: 300; }
.faq-item.is-open .faq-answer {
  max-height: 400px;
  opacity: 1;
  padding-bottom: 22px;
  pointer-events: auto;
}

/* ---------- GEO PAGES ---------- */
.geo-hero-label {
  font-family: var(--font-body);
  font-size: .65rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
  display: block;
  margin-bottom: 14px;
  font-weight: 500;
}

/* ---------- CAMERA A TEMA (pagine specifiche) ---------- */
.tema-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.tema-hero-badge .tema-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
}
.tema-hero-badge .tema-cat {
  font-family: var(--font-body);
  font-size: .65rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.camera-detail-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}
/* Sezione tipologie nella sidebar */
.sidebar-tipologie {
  margin-bottom: 0;
}
.sidebar-label {
  display: block;
  font-family: var(--font-body);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
/* Griglia tipologie compatta (sidebar 2x2) */
.tipologie-grid--sm {
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.tipologie-grid--sm .tipologia-item {
  padding: 14px 12px;
}
.tipologie-grid--sm .tipologia-icon {
  font-size: 1rem;
  margin-bottom: 6px;
}
.tipologie-grid--sm .tipologia-name {
  font-size: .78rem;
  font-weight: 700;
}
.tipologie-grid--sm .tipologia-size {
  font-size: .68rem;
}
.tipologie-grid--sm .tipologia-guests { display: none; }

/* Riga separatrice sidebar */
.sidebar-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}

.camera-sidebar {
  background: transparent;
  padding: 0 0 0 32px;
  border-left: 2px solid var(--accent);
  position: sticky;
  top: 100px;
}
.camera-sidebar h4 {
  font-size: clamp(.85rem, 1.3vw, .95rem);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}
.camera-sidebar .btn { width: 100%; justify-content: center; margin-bottom: 8px; }
.camera-features {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.camera-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: .88rem;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
  font-weight: 300;
}
.camera-features li:last-child { border-bottom: none; }
.camera-features li i { color: var(--accent); font-size: 1rem; width: 18px; }

/* Gallery camera: slider con anteprima + apertura lightbox al click */
.camera-gallery {
  position: relative;
  margin-bottom: 48px;
}
.camera-gallery-viewport {
  overflow: hidden;
  border-radius: 2px;
}
.camera-gallery-track {
  display: flex;
  gap: 6px;
  transition: transform .5s var(--ease);
  will-change: transform;
}
.camera-gallery .gallery-item {
  flex: 0 0 calc((100% - 12px) / 3);
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: pointer;
}
.camera-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.camera-gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.92);
  color: var(--text);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  transition: background .25s var(--ease), color .25s var(--ease), opacity .25s var(--ease);
  z-index: 5;
}
.camera-gallery-arrow:hover { background: var(--accent); color: var(--white); }
.camera-gallery-arrow:disabled { opacity: 0; pointer-events: none; }
.camera-gallery-prev { left: 12px; }
.camera-gallery-next { right: 12px; }
.camera-gallery-counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,.6);
  color: var(--white);
  font-size: .7rem;
  letter-spacing: .06em;
  padding: 5px 12px;
  border-radius: 20px;
  z-index: 5;
}
.camera-gallery--single .camera-gallery-arrow,
.camera-gallery--single .camera-gallery-counter { display: none; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 36px;
  font-size: .72rem;
  letter-spacing: .1em;
}
.breadcrumb a { color: var(--text-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--text-light); }
.breadcrumb .bc-sep { color: var(--border); }

/* ---------- TIPOLOGIE CAMERE ---------- */
.tipologie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  margin: 36px 0 48px;
}
.tipologia-item {
  padding: 22px 16px;
  border-right: 1px solid var(--border);
  text-align: center;
  cursor: pointer;
  transition: background .25s var(--ease);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: inherit;
}
.tipologia-item:last-child { border-right: none; }
.tipologia-item:hover { background: var(--cream); }
.tipologia-icon {
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 8px;
  flex-shrink: 0;
}
.tipologia-name {
  font-family: var(--font-heading);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.tipologia-guests {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}
.tipologia-size {
  font-size: .72rem;
  color: var(--text);
  font-weight: 300;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .tipologie-grid { grid-template-columns: repeat(2, 1fr); }
  .tipologia-item:nth-child(2) { border-right: none; }
  .tipologia-item:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .tipologia-item:nth-child(4) { border-right: none; border-top: 1px solid var(--border); }
}
@media (max-width: 480px) {
  .tipologie-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- ROOM NAV (prev/next) ---------- */
.room-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 60px;
}
.room-nav-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  background: var(--cream);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background .3s, border-color .3s;
}
.room-nav-item:hover { background: var(--beige); border-color: var(--border); }
.room-nav-item--next { justify-content: flex-end; text-align: right; }
.room-nav-thumb {
  width: 70px;
  height: 52px;
  overflow: hidden;
  flex-shrink: 0;
}
.room-nav-thumb img,
.room-nav-thumb .ph-img { width: 100%; height: 100%; object-fit: cover; }
.room-nav-label {
  font-family: var(--font-body);
  font-size: .62rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
}
.room-nav-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: normal;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -.01em;
}

/* ---------- SERVIZI DECK ---------- */
.servizi-deck {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  max-width: 980px;
  margin: 0 auto;
}
.servizi-deck-card {
  display: flex;
  flex-direction: column;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.servizi-deck-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(26,17,12,.08);
}
.servizi-deck-card-img { aspect-ratio: 16/9; overflow: hidden; }
.servizi-deck-card-img img,
.servizi-deck-card-img .ph-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .75s var(--ease);
}
.servizi-deck-card:hover .servizi-deck-card-img img { transform: scale(1.04); }
.servizi-deck-card-body {
  padding: 26px 24px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.servizi-deck-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 400;
  color: var(--text-dark);
  margin: 0 0 8px;
}
.servizi-deck-card-text { font-size: .88rem; line-height: 1.7; color: var(--text); margin: 0 0 14px; flex-grow: 1; font-weight: 300; }
.servizi-deck-card-cta { font-size: .65rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); margin-top: auto; }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.94);
  z-index: 10200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), visibility .25s var(--ease);
  touch-action: pan-y;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90vw;
  max-height: 85vh;
}
.lightbox img,
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: filter .2s ease, opacity .2s ease;
}
.lightbox-img.is-loading { filter: blur(6px); opacity: .85; }
.lightbox-spinner {
  position: absolute;
  width: 36px;
  height: 36px;
  border: 2px solid rgba(255,255,255,.25);
  border-top-color: var(--gold, #c9a96e);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  animation: lightbox-spin .7s linear infinite;
}
.lightbox-spinner.is-visible { opacity: 1; }
@keyframes lightbox-spin { to { transform: rotate(360deg); } }
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none; border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  z-index: 10000;
  transition: color .3s;
}
.lightbox-close:hover { color: var(--gold); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none; border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10000;
  padding: 16px;
  transition: color .3s;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--gold); }
@media (max-width: 768px) {
  .lightbox-prev { left: 4px; }
  .lightbox-next { right: 4px; }
  .lightbox-close { top: 12px; right: 16px; }
  .lightbox img,
  .lightbox-img,
  .lightbox-stage { max-width: 96vw; max-height: 78vh; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
  :root { --section-py: 80px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-tile-lg { grid-column: span 2; }
  .camera-detail-grid { grid-template-columns: 1fr; }
  .camera-sidebar { position: static; }
  .premi-grid { grid-template-columns: repeat(2, 1fr); }
  .numeri-grid { grid-template-columns: repeat(2, 1fr); }
  .numero-item { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .numero-item:nth-child(2) { border-right: none; }
  .numero-item:nth-child(3) { border-right: 1px solid var(--border); }
  .numero-item:nth-child(4) { border-right: none; border-bottom: none; }
  .numero-item:nth-child(3) { border-bottom: none; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .info-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .info-item:nth-child(2n) { border-right: none; }
  .zona-strip { grid-template-columns: repeat(2, 1fr); }
  .other-rooms { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr; min-height: auto; }
  .split-img { min-height: 340px; }
  .split-text { padding: 56px 44px; }
  .split.reverse { direction: ltr; }
  .rooms-track .card { flex: 0 0 calc((100% - 24px) / 2); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --section-py: 60px;
    --section-px: 20px;
  }

  body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }

  .site-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 16px;
    min-height: 68px;
  }
  .site-header.scrolled { padding: 10px 16px; }
  .header-logo-link {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }
  .header-logo { height: 32px; }
  .site-header.scrolled .header-logo { height: 28px; }
  .hamburger { position: relative; z-index: 2; margin: 0 0 0 auto; padding: 10px; }
  .header-actions {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .header-book-btn { display: none !important; }
  .lang-switcher-btn { padding: 7px 10px; }

  .mobile-action-dock {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    align-items: stretch;
    justify-content: space-between;
    gap: 2px;
    padding: 10px 8px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(14px);
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -6px 24px rgba(0,0,0,.05);
  }
  .nav-overlay-panel { padding-left: 20px; padding-right: 20px; }

  .hero-inner { height: 52vh; min-height: 340px; }
  .hero-home .hero-scroll { bottom: calc(90px + env(safe-area-inset-bottom, 0px)); }
  .hero-content { padding: 0 16px; }
  .hero-home .hero-content { padding-bottom: 56px; }
  .hero-content h1 { font-size: clamp(2rem, 8.5vw, 3rem); margin-bottom: 14px; }
  .hero-content p { font-size: 1rem; margin-bottom: 28px; }
  .hero-home .hero-cta-group { display: none; }

  h2 { font-size: clamp(1.6rem, 6.5vw, 2.4rem); }
  h3 { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .lead-center, .lead { font-size: 1rem; }

  .features-grid { grid-template-columns: 1fr; gap: 3px; }
  .feature-tile-lg { grid-column: span 1; }
  .feature-tile-lg .feature-tile-img { aspect-ratio: 4/3; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

  .split-text { padding: 36px 20px; }
  .split-text .btn { width: 100%; justify-content: center; }

  .btn { white-space: normal; }

  .hero-cta-group { grid-template-columns: 1fr; }
  .hero-cta-group .btn { width: 100%; }

  .rooms-track .card { flex: 0 0 85%; margin-right: 16px; }
  .rooms-carousel-footer { flex-direction: column; align-items: center; }

  .premi-grid { grid-template-columns: 1fr 1fr; }
  .premio-item { padding: 28px 18px; }
  .numeri-grid { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr; border: 1px solid var(--border); }
  .info-item { border-right: none !important; padding: 28px 20px; }
  .info-item:last-child { border-bottom: none; }

  .zona-strip { grid-template-columns: 1fr 1fr; }

  .storia-quote { padding: 48px 20px; }
  .storia-quote::before { font-size: 6rem; top: 8px; left: 16px; }
  .storia-quote blockquote { font-size: clamp(1.2rem, 5.5vw, 1.6rem); }

  .room-nav { grid-template-columns: 1fr; }
  .room-nav-thumb { width: 56px; height: 42px; }

  .camera-gallery .gallery-item { flex: 0 0 calc((100% - 6px) / 2); }

  .other-rooms { grid-template-columns: 1fr 1fr; }

  .offer-card { padding: 28px 20px; }
  .contact-card { padding: 28px 20px; }
  .map-container { height: 300px; }

  .footer-grid { grid-template-columns: 1fr; gap: 0; padding-bottom: 40px; text-align: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 36px; }
  .footer-brand p { max-width: 100%; }
  .footer-links { padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 28px; }
  .footer-links:last-child { border-bottom: none; margin-bottom: 0; }
  .footer-links h6 { text-align: center; }
  .footer-links a { text-align: center; padding-left: 0 !important; }
  .footer-contact-group { text-align: center; }
  .footer-contact-social { justify-content: center; }
  .footer-social { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; padding: 20px 0; font-size: .68rem; }
  .footer-credit { padding: 1.2rem 0 calc(28px + env(safe-area-inset-bottom, 0px)); }

  .faq-list { max-width: 100%; }
  .servizi-deck { grid-template-columns: 1fr; max-width: 440px; }
}

@media (max-width: 480px) {
  .features-grid { gap: 2px; }
  .premi-grid { grid-template-columns: 1fr; }
  .numeri-grid { grid-template-columns: 1fr 1fr; }
  .zona-strip { grid-template-columns: 1fr; }
  .other-rooms { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .storia-quote blockquote { font-size: 1.25rem; }
  .camera-gallery .gallery-item { flex: 0 0 100%; }
  .camera-gallery-arrow { width: 38px; height: 38px; font-size: 1rem; }
  #contactForm .grid { grid-template-columns: 1fr; }
}
