/* ============================================================
   B&B City Hall Catania — Premium Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --white:    #FFFFFF;
  --black:    #111111;
  --gray:     #666666;
  --light:    #F7F5F2;
  --border:   #E8E4DE;
  --gold:     #C9A96E;
  --gold-dk:  #A8843A;
  --green:    #6B7D5C;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --radius:   4px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.07);
  --shadow:   0 8px 40px rgba(0,0,0,.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.18);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.3px;
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { color: #444; line-height: 1.75; }

/* ── Utility ────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.section { padding: 90px 0; position: relative; z-index: 1; }
.section-sm { padding: 56px 0; position: relative; z-index: 1; clear: both; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px auto 0;
}
.divider-left { margin-left: 0; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--black);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════════════ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#header.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 1px 30px rgba(0,0,0,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  transition: color .3s;
  letter-spacing: .5px;
}
.logo-sub {
  font-size: .65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
#header.scrolled .logo-name { color: var(--black); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  transition: color .3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
#header.scrolled .nav-links a { color: var(--black); }
#header.scrolled .nav-links a:hover { color: var(--gold); }

.nav-cta { margin-left: 8px; }
#header.scrolled .btn-outline {
  border-color: var(--gold);
  color: var(--gold);
}
#header.scrolled .btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
#header.scrolled .hamburger span { background: var(--black); }


/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.35) 0%,
    rgba(0,0,0,.45) 60%,
    rgba(0,0,0,.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 860px;
}
.hero-eyebrow {
  font-size: .75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 18px;
  animation: fadeUp .9s ease both;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 600;
  animation: fadeUp .9s .15s ease both;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-content p {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  margin-bottom: 36px;
  animation: fadeUp .9s .3s ease both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .9s .45s ease both;
}
.hero-badges {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 48px;
  animation: fadeUp .9s .6s ease both;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255,255,255,.8);
  letter-spacing: .5px;
}
.hero-badge svg { width:16px; height:16px; stroke: var(--gold); fill: none; }
.hero-scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1.5s 1.5s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.3);
  animation: scrollLine 2s 2s infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Booking Widget ─────────────────────────────────────────── */
/* ══════════════════════════════════════════════════════════════
   BOOKING WIDGET v4 — Restyling completo
   Design: bianco/crema su sfondo scuro, overlay fixed
══════════════════════════════════════════════════════════════ */

/* ── Wrapper strip ── */
.booking-widget-wrap {
  background: #0e0b06;
  border-top: 1px solid rgba(201,169,110,.2);
  border-bottom: 1px solid rgba(201,169,110,.1);
  position: relative;
  z-index: 5;
  transition: opacity .3s;
}
.booking-modal-overlay.active ~ .booking-widget-wrap,
body.modal-open .booking-widget-wrap { opacity: .2; pointer-events: none; }

/* ── Outer container ── */
.bbf-outer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 40px 32px;
  position: relative;
}

/* ── Section tag ── */
.bbf-tag {
  font-family: var(--font-sans);
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.bbf-tag::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(201,169,110,.35), transparent);
}

/* ── Main row ── */
.bbf-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,169,110,.2);
  border-radius: 6px;
  overflow: visible;
}

/* ── Single column ── */
.bbf-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 20px 14px;
  border-right: 1px solid rgba(201,169,110,.12);
  cursor: pointer;
  transition: background .2s;
  min-width: 0;
  position: relative;
}
.bbf-col:hover { background: rgba(255,255,255,.04); }
.bbf-col-count {
  flex: 0 0 130px;
  cursor: default;
}
.bbf-col-count:hover { background: transparent; }

.bbf-col-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-sans);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(201,169,110,.75);
  margin-bottom: 10px;
}
.bbf-col-label svg { stroke: var(--gold); }

/* ── Date pill button ── */
.bbf-pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: transparent;
  border: none !important;
  color: rgba(255,255,255,.35);
  font-family: var(--font-serif);
  font-size: 1rem;
  letter-spacing: .2px;
  cursor: pointer;
  padding: 0;
  text-align: left;
  width: 100%;
  transition: color .2s;
}
.bbf-pill.active { color: #fff; }
.bbf-pill svg { stroke: rgba(201,169,110,.4); flex-shrink: 0; transition: stroke .2s; }
.bbf-pill:hover svg,
.bbf-pill.active svg { stroke: var(--gold); }
.bbf-pill:hover { color: #fff; }

.bbf-nights {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .5px;
  background: var(--gold);
  color: #0e0b06;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ── Arrow separator ── */
.bbf-arrow {
  display: flex;
  align-items: center;
  padding: 0 4px;
  color: rgba(201,169,110,.25);
  flex-shrink: 0;
}

/* ── Vertical divider ── */
.bbf-divline {
  width: 1px;
  background: rgba(201,169,110,.12);
  margin: 10px 0;
  flex-shrink: 0;
}

/* ── Counter ── */
.bbf-counter {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}
.bbf-step {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,.4) !important;
  background: transparent !important;
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .18s;
  font-family: var(--font-sans);
  font-weight: 300;
  flex-shrink: 0;
}
.bbf-step:hover { background: rgba(201,169,110,.15) !important; border-color: var(--gold) !important; }
.bbf-step:disabled { opacity: .22; cursor: not-allowed; }

/* ── Submit button ── */
.bbf-submit {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--gold);
  color: #0e0b06;
  border: none !important;
  border-radius: 0 5px 5px 0;
  padding: 0 28px;
  font-family: var(--font-sans);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.5;
  transition: all .25s;
  flex-shrink: 0;
}
.bbf-submit svg { stroke: #0e0b06; flex-shrink: 0; }
.bbf-submit:hover { background: #fff; }
.bbf-submit:disabled {
  background: rgba(201,169,110,.15);
  color: rgba(255,255,255,.2);
  cursor: not-allowed;
}
.bbf-submit:disabled svg { stroke: rgba(255,255,255,.2); }

.bbf-err {
  font-family: var(--font-serif);
  font-size: .82rem;
  font-style: italic;
  color: #e08888;
  margin-top: 10px;
  min-height: 18px;
  text-align: center;
}

/* ════════════════════════════════════════════════════════════
   OVERLAY FISSO — position:fixed, sopra tutto
════════════════════════════════════════════════════════════ */
.bbf-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
  backdrop-filter: blur(4px);
}
.bbf-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ── Calendar box ── */
.bbf-cal-box {
  background: #13100a;
  border: 1px solid rgba(201,169,110,.3);
  border-radius: 8px;
  box-shadow: 0 40px 100px rgba(0,0,0,.9);
  width: 100%;
  max-width: 720px;
  overflow: hidden;
  transform: translateY(12px) scale(.97);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1);
}
.bbf-overlay.open .bbf-cal-box {
  transform: translateY(0) scale(1);
}

/* ── Calendar top bar ── */
.bbf-cal-top {
  display: flex;
  align-items: center;
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(201,169,110,.12);
  gap: 8px;
}
.bbf-nav {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,110,.3) !important;
  background: transparent !important;
  color: var(--gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .18s;
  flex-shrink: 0;
}
.bbf-nav:hover { border-color: var(--gold) !important; background: rgba(201,169,110,.1) !important; }

.bbf-months-hd {
  flex: 1;
  display: flex;
}
.bbf-mh { flex: 1; text-align: center; }
.bbf-mt {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
}
.bbf-my {
  font-family: var(--font-sans);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(201,169,110,.6);
  margin-top: 3px;
}

/* ── Two-month grid ── */
.bbf-grids {
  display: flex;
  padding: 20px 16px 22px;
  gap: 0;
}
.bbf-grid {
  flex: 1;
  padding: 0 10px;
}
.bbf-grid + .bbf-grid {
  border-left: 1px solid rgba(201,169,110,.1);
}

/* Days of week header */
.bbf-dow {
  display: grid;
  grid-template-columns: repeat(7,1fr);
  margin-bottom: 8px;
}
.bbf-dow span {
  font-family: var(--font-sans);
  font-size: .53rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(201,169,110,.45);
  text-align: center;
  padding: 4px 0;
}

/* Day cells */
.bbf-days {
  display: grid;
  grid-template-columns: repeat(7,1fr);
  gap: 2px;
}
.bbf-d {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  border-radius: 4px;
  cursor: pointer;
  transition: all .12s;
  user-select: none;
  border: 1px solid transparent;
}
.bbf-d:empty { pointer-events: none; }
.bbf-d.past { color: rgba(255,255,255,.15); cursor: not-allowed; pointer-events: none; }
.bbf-d.today { border-color: rgba(201,169,110,.5); color: var(--gold); font-weight: 600; }
.bbf-d:not(:empty):not(.past):hover { background: rgba(201,169,110,.15); color: #fff; }
.bbf-d.ir { background: rgba(201,169,110,.1); border-radius: 0; color: rgba(255,255,255,.85); }
.bbf-d.hr { background: rgba(201,169,110,.06); border-radius: 0; }
.bbf-d.rs, .bbf-d.re {
  background: var(--gold) !important;
  color: #0e0b06 !important;
  font-weight: 700;
  border-color: var(--gold) !important;
}
.bbf-d.rs { border-radius: 4px 0 0 4px; }
.bbf-d.re { border-radius: 0 4px 4px 0; }
.bbf-d.rs.re { border-radius: 4px; }

/* ── Footer ── */
.bbf-cal-foot {
  border-top: 1px solid rgba(201,169,110,.1);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(0,0,0,.3);
}
.bbf-foot-info {
  font-family: var(--font-serif);
  font-size: .85rem;
  font-style: italic;
  color: rgba(255,255,255,.4);
}
.bbf-foot-info strong { color: var(--gold); font-style: normal; font-weight: 500; }
.bbf-clear {
  font-family: var(--font-sans);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(201,169,110,.5);
  background: none;
  border: none !important;
  cursor: pointer;
  transition: color .2s;
}
.bbf-clear:hover { color: var(--gold); }

/* ════ RESPONSIVE ════ */
@media (max-width: 900px) {
  .bbf-outer { padding: 28px 20px 24px; }
  .bbf-row { flex-wrap: wrap; border-radius: 6px; }
  .bbf-col { flex: 1 1 calc(50% - 1px); border-bottom: 1px solid rgba(201,169,110,.12); }
  .bbf-col-count { flex: 1 1 calc(50% - 1px); }
  .bbf-arrow { display: none; }
  .bbf-divline { display: none; }
  .bbf-submit { flex: 1 1 100%; border-radius: 0 0 5px 5px; padding: 16px 20px; justify-content: center; }
}
@media (max-width: 600px) {
  .bbf-col, .bbf-col-count { flex: 1 1 100%; }
  .bbf-grids { flex-direction: column; }
  .bbf-grid + .bbf-grid { border-left: none; border-top: 1px solid rgba(201,169,110,.1); padding-top: 16px; margin-top: 4px; }
  .bbf-cal-box { max-width: 100%; border-radius: 10px 10px 0 0; }
  .bbf-overlay { align-items: flex-end; padding: 0; }
}



/* ══════════════════════════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════════════════════════ */
.bg-light { background: var(--light); position: relative; z-index: 1; }
.bg-black { background: var(--black); }

/* About strip */
.about-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-item {
  padding: 40px 36px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-right: 1px solid var(--border);
}
.about-item:last-child { border-right: none; }
.about-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,169,110,.12);
  border-radius: 50%;
}
.about-icon svg { width:22px; height:22px; stroke: var(--gold); fill: none; }
.about-item h4 { margin-bottom: 4px; font-size: 1rem; }
.about-item p { font-size: .88rem; color: var(--gray); line-height: 1.5; }

/* Intro section */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-imgs {
  position: relative;
  height: 520px;
  flex-shrink: 0;
  overflow: hidden;
}
.intro-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%; height: 80%;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow);
}
.intro-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 55%;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
}
.intro-text p { margin-bottom: 20px; }
.intro-text .stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 36px 0;
}
.stat-item { }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 500;
  line-height: 1;
}
.stat-label {
  font-size: .8rem;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── Room Cards ─────────────────────────────────────────────── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.room-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.room-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.room-card:hover .room-card-img img {
  transform: scale(1.06);
}
.room-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .4s;
}
.room-card:hover .room-card-overlay { opacity: 1; }
.room-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.room-card-body {
  padding: 24px;
}
.room-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.room-card-body p {
  font-size: .88rem;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.6;
}
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.amenity-pill {
  font-size: .72rem;
  color: var(--gray);
  background: var(--light);
  padding: 3px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.room-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.room-price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--black);
}
.room-price span { font-size: .78rem; color: var(--gray); font-family: var(--font-sans); }

/* ── Gallery Slider ─────────────────────────────────────────── */
.gallery-slider {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  display: block;
}
.slider-track {
  display: flex;
  transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  /* NON impostare width: auto si adatta alle slide */
}
.slide {
  flex: 0 0 100%;          /* ogni slide = 100% del .gallery-slider */
  width: 100%;
  min-width: 0;
  position: relative;
  overflow: hidden;
}
.slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
/* Bottoni freccia — rimangono visibili grazie a z-index, dentro l'overflow:hidden */
.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
  transition: var(--transition);
  flex-shrink: 0;
  cursor: pointer;
}
.slider-btn:hover { background: var(--gold); }
.slider-btn:hover svg { stroke: var(--white); }
.slider-btn svg { width: 20px; height: 20px; stroke: var(--black); fill: none; }
.slider-prev { left: 12px; }
.slider-next { right: 12px; }
.slider-dots {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  pointer-events: none;
}
.slider-dots .dot { pointer-events: auto; }
.dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,.5);
  border-radius: 50%;
  transition: all .3s;
  cursor: pointer;
}
.dot.active {
  background: var(--gold);
  transform: scale(1.3);
}


/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: var(--black);
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A96E' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; position: relative; }
.cta-banner p { color: rgba(255,255,255,.6); margin-bottom: 32px; position: relative; }
.cta-perks {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
}
.cta-perk {
  font-size: .82rem;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cta-perk svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; }

/* ── Services Grid ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.service-card {
  text-align: center;
  padding: 40px 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.service-icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,169,110,.1);
  border-radius: 50%;
}
.service-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; }
.service-card h4 { margin-bottom: 8px; }
.service-card p { font-size: .88rem; color: var(--gray); }

/* ── Location Section ───────────────────────────────────────── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}
.location-info {
  padding: 60px;
  background: var(--light);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-info h2 { margin-bottom: 16px; }
.location-info p { margin-bottom: 32px; }
.distances {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.distance-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--radius);
}
.distance-item svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; flex-shrink: 0; }
.distance-label { font-size: .82rem; color: var(--gray); }
.distance-val { font-size: .9rem; font-weight: 600; color: var(--black); }
.location-map { overflow: hidden; }
.location-map iframe { width: 100%; height: 100%; min-height: 400px; display: block; }

/* ── Breakfast Section ──────────────────────────────────────── */
.breakfast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  overflow: hidden;
}
.breakfast-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 480px;
  min-height: 400px;
  overflow: hidden;
  border-radius: var(--radius);
}
.breakfast-imgs img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
.breakfast-imgs img:first-child {
  grid-row: 1 / 3;
}
.breakfast-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.breakfast-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
  color: #444;
}
.breakfast-item svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; flex-shrink: 0; }

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--black);
  line-height: 1.65;
  margin-bottom: 20px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
}
.reviewer-name { font-weight: 600; font-size: .9rem; }
.reviewer-origin { font-size: .78rem; color: var(--gray); }

/* ── Contact Form ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-item-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: rgba(201,169,110,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-item-icon svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; }
.contact-item-label { font-size: .78rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.contact-item-value { font-size: .95rem; font-weight: 500; }
.contact-form { }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label { font-size: .8rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: var(--black); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .9rem;
  color: var(--black);
  background: var(--white);
  transition: border-color .25s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  padding: 16px;
  background: rgba(107,125,92,.1);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  color: var(--green);
  font-size: .9rem;
  margin-top: 12px;
}

/* ── Room Detail Page ───────────────────────────────────────── */
.room-hero {
  height: 60vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px; /* compensa header fisso */
}
.room-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.room-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.room-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.48);
}
.room-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 48px 64px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.room-hero-content .breadcrumb {
  justify-content: center;
  margin-bottom: 20px;
}
.room-hero-content h1 {
  color: var(--white);
  margin-bottom: 0;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 2px 24px rgba(0,0,0,.45);
  line-height: 1.15;
}
.room-hero-content p {
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 16px;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
}
.room-hero-content::after {
  content: '';
  display: block;
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin-top: 22px;
  border-radius: 2px;
}

.room-detail-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 80px 0;
}
/* Slider nelle pagine dettaglio camera — più alto */
.room-detail-grid .gallery-slider {
  background: #1a1a1a;
}
.room-detail-grid .gallery-slider .slide {
  aspect-ratio: 3 / 4;
  height: auto;
  overflow: hidden;
}
.room-detail-grid .gallery-slider .slide img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
/* Slider nelle sezioni camere (home + camere.html) — altezza media */
.camere-layout .gallery-slider {
  background: #1a1a1a;
}
.camere-layout .gallery-slider .slide {
  aspect-ratio: 3 / 4;
  height: auto;
  overflow: hidden;
}
.camere-layout .gallery-slider .slide img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center;
}
.room-amenities-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.amenity-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9rem;
}
.amenity-row svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; flex-shrink: 0; }

.booking-box {
  background: var(--light);
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: sticky;
  top: 100px;
}
.booking-box h3 { margin-bottom: 8px; }
.booking-box .btn {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-bottom: 10px;
}
.booking-price {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold);
  margin: 12px 0 24px;
}
.booking-price span { font-size: 1rem; color: var(--gray); font-family: var(--font-sans); }
.booking-perks {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.booking-perk {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--gray);
}
.booking-perk svg { width: 16px; height: 16px; stroke: var(--green); fill: none; flex-shrink: 0; }

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  height: 45vh;
  min-height: 320px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;
  padding-top: 80px; /* compensa header fisso */
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-hero-content h1 {
  color: var(--white);
  margin-bottom: 0;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 600;
  letter-spacing: 1px;
  text-shadow: 0 2px 24px rgba(0,0,0,.45);
  line-height: 1.15;
}
.page-hero-content p {
  color: rgba(255,255,255,.88);
  font-size: clamp(.95rem, 1.8vw, 1.2rem);
  font-family: var(--font-sans);
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 14px;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
}
.page-hero-content::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-top: 20px;
  border-radius: 2px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 16px;
  justify-content: center;
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,.4); }

/* ── Prenota Page ───────────────────────────────────────────── */
.prenota-iframe-wrap {
  padding: 60px 0;
}
.prenota-iframe-wrap iframe {
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ── Colazione Page ─────────────────────────────────────────── */
.colazione-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
  overflow: hidden;
}
.colazione-gallery img {
  width: 100%; height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: var(--transition);
  display: block;
}
.colazione-gallery img:hover { transform: scale(1.02); }
.colazione-gallery img:first-child {
  grid-column: 1 / 3;
  height: 360px;
}

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: var(--black);
  color: rgba(255,255,255,.7);
  padding: 80px 0 0;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .logo-name { color: var(--white); font-size: 1.5rem; }
.footer-brand p {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
  margin-top: 16px;
  line-height: 1.7;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-link {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); border-color: var(--gold); }
.social-link svg { width: 16px; height: 16px; stroke: rgba(255,255,255,.7); fill: none; }
.social-link:hover svg { stroke: var(--white); }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  transition: color .25s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .88rem;
}
.footer-contact-item svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Floating Buttons ───────────────────────────────────────── */
.float-wrap {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 16px;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .5px;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: var(--transition);
  cursor: pointer;
}
.float-btn span { display: none; }
.float-book {
  background: var(--gold);
  color: var(--white);
}
.float-book:hover {
  background: var(--black);
  transform: translateY(-2px);
}
.float-wa {
  background: #25D366;
  color: var(--white);
}
.float-wa:hover { background: #128C7E; transform: translateY(-2px); }
.float-btn svg { width: 24px; height: 24px; fill: var(--white); stroke: none; }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-delay-1 { transition-delay: .1s; }
.fade-delay-2 { transition-delay: .2s; }
.fade-delay-3 { transition-delay: .3s; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — Completo per tutti i dispositivi
   Breakpoints: 1200 | 1024 | 900 | 768 | 600 | 480 | 360
══════════════════════════════════════════════════════════════ */

/* ── 1200px — Large Tablet / Small Desktop ───────────────── */
@media (max-width: 1200px) {
  .container { padding: 0 32px; }

  /* Navigation */
  .nav-links { gap: 22px; }
  .nav-links a { font-size: .78rem; }

  /* Hero */
  .hero-content { max-width: 720px; }

  /* Grids */
  .rooms-grid { gap: 20px; }
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
  }

  /* Intro / Breakfast */
  .intro-grid { gap: 56px; }
  .breakfast-grid { gap: 56px; }

  /* Location */
  .location-info { padding: 48px; }

  /* Contact */
  .contact-grid { gap: 56px; }

  /* Room detail */
  .room-detail-grid { gap: 40px; }
  .room-hero-content { padding: 40px; }
}

/* ── 1024px — Tablet Landscape ───────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }

  /* Navigation */
  .nav-links { gap: 18px; }
  .nav-links a { font-size: .75rem; }
  .nav-cta { padding: 11px 20px; font-size: .78rem; }

  /* Sections */
  .section { padding: 80px 0; }
  .section-sm { padding: 48px 0; }

  /* About strip */
  .about-strip { grid-template-columns: 1fr 1fr; }
  .about-item:nth-child(2) { border-right: none; }
  .about-item:nth-child(3) {
    grid-column: 1 / -1;
    border-right: none;
    border-top: 1px solid var(--border);
  }

  /* Grids */
  .rooms-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer { padding: 60px 0 0; }

  /* Intro / Breakfast */
  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .breakfast-grid { grid-template-columns: 1fr; gap: 40px; }
  .intro-imgs { height: 380px; overflow: hidden; }
  .intro-img-main { width: 75%; height: 80%; }
  .intro-img-accent { width: 52%; height: 52%; }
  .breakfast-imgs { height: 340px; overflow: hidden; }

  /* Location */
  .location-grid { grid-template-columns: 1fr 1fr; }
  .location-info { padding: 44px 36px; }

  /* Contact */
  .contact-grid { gap: 48px; }

  /* Room detail */
  .room-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .room-amenities-full { grid-template-columns: 1fr 1fr 1fr; }
  .booking-box { position: static; top: unset; }

  /* Gallery slider */
  .room-detail-grid .gallery-slider .slide img { height: 100%; }
  .camere-layout .gallery-slider .slide img { height: 100%; }

  /* Colazione */
  .colazione-gallery { gap: 12px; overflow: hidden; }
}

/* ── 900px — Small Tablet ────────────────────────────────── */
@media (max-width: 900px) {
  /* Header */
  .nav-links { gap: 14px; }
  .nav-links a { font-size: .72rem; letter-spacing: .5px; }

  /* Intro images */
  .intro-imgs { height: 340px; }
  .intro-img-main { width: 72%; height: 78%; }
  .intro-img-accent { width: 52%; height: 52%; }

  /* Stats */
  .intro-text .stats { gap: 16px; }
  .stat-num { font-size: 2rem; }

  /* Location */
  .location-info { padding: 36px 28px; }
  .distances { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr 1fr; }

  /* Room detail */
  .room-hero-content { padding: 36px; }
  .room-amenities-full { grid-template-columns: 1fr 1fr; }

  /* Booking box */
  .booking-box { padding: 28px; }

  /* CTA perks */
  .cta-perks { gap: 20px; }
}

/* ── 768px — Tablet Portrait / Mobile Menu ───────────────── */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  /* Sections */
  .section { padding: 44px 0; }
  .section-sm { padding: 28px 0; }

  /* ── Camere layout inline grid fix ── */
  .camere-layout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    overflow: hidden;
  }

  /* ── Header & Navigation ── */
  .nav-links,
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  #header { padding: 16px 0; }
  #header.scrolled { padding: 10px 0; }

  /* Mobile menu larger tap targets */
  
  

  /* ── Hero ── */
  .hero { min-height: 520px; }
  .hero-content { padding: 0 20px; }
  .hero-content h1 { margin-bottom: 16px; }
  .hero-content p { font-size: 1rem; margin-bottom: 28px; }
  .hero-btns { gap: 12px; }
  .hero-btns .btn { padding: 13px 26px; font-size: .82rem; }
  .hero-badges {
    gap: 14px;
    flex-direction: column;
    align-items: center;
  }
  .hero-location-badge .badge-name { font-size: 1.1rem; }

  /* ── About Strip ── */
  .about-strip { grid-template-columns: 1fr; }
  .about-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 28px 24px;
  }
  .about-item:last-child { border-bottom: none; }

  /* ── Intro ── */
  .intro-imgs { height: 300px; overflow: hidden; }
  .intro-img-main { width: 100%; height: 100%; position: static; }
  .intro-img-accent { display: none; }
  .intro-text .stats { grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }

  /* ── Rooms ── */
  .rooms-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 36px; }
  .room-card-img { height: 220px; }

  /* ── Services ── */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
  .service-card { padding: 28px 16px; }

  /* ── Gallery slider ── */
  .room-detail-grid .gallery-slider .slide img { height: 100%; }
  .camere-layout .gallery-slider .slide img { height: 100%; }
  .slide img { height: 300px; }
  .room-detail-grid .gallery-slider .slide img,
  .camere-layout .gallery-slider .slide img { height: 100%; object-fit: contain; }
  .slider-btn { width: 40px; height: 40px; }
  .slider-btn svg { width: 18px; height: 18px; }

  /* ── CTA Banner ── */
  .cta-banner { padding: 44px 0; }
  .cta-perks { gap: 14px; flex-direction: column; align-items: center; }
  .cta-banner .btn { padding: 14px 28px; }

  /* ── Location ── */
  .location-grid { grid-template-columns: 1fr; }
  .location-info { padding: 36px 20px; order: 2; }
  .location-map { order: 1; min-height: 280px; }
  .location-map iframe { min-height: 280px; }
  .distances { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* ── Breakfast ── */
  .breakfast-grid { gap: 32px; }
  .breakfast-imgs { height: 260px; }
  .breakfast-items { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* ── Testimonials ── */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
  .testimonial-card { padding: 24px; }

  /* ── Contact ── */
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .form-group { margin-bottom: 12px; }

  /* ── Room Detail ── */
  .room-hero { height: 50vh; min-height: 320px; }
  .room-hero-content { padding: 24px 20px; }
  .room-detail-grid { padding: 48px 0; gap: 32px; }
  .room-amenities-full { grid-template-columns: 1fr 1fr; gap: 10px; }
  .booking-box { padding: 24px; }
  .booking-price { font-size: 1.8rem; }

  /* ── Page Hero ── */
  .page-hero { height: 38vh; min-height: 260px; }
  .page-hero-content h1 { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .page-hero-content p { font-size: .95rem; }

  /* ── Colazione Gallery ── */
  .colazione-gallery { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 36px; }
  .colazione-gallery img { height: 200px; }
  .colazione-gallery img:first-child { grid-column: 1 / 3; height: 280px; }

  /* ── Footer ── */
  footer { padding: 48px 0 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 20px 0;
  }

  /* ── Floating Buttons ── */
  .float-wrap { bottom: 16px; right: 16px; gap: 10px; }
  .float-btn { width: 48px; height: 48px; }
  .float-btn svg { width: 22px; height: 22px; }

  /* ── Booking Widget ── */

  /* ── Camere page — inline price/cta row ── */
  .camere-layout [style*="display:flex;align-items:center;gap:20px"] {
    flex-wrap: wrap;
    gap: 12px !important;
  }
  /* amenities grid in camere page */
  .room-amenities-full { grid-template-columns: 1fr 1fr; }
  /* intro text stats in camere */
  .about-strip[style*="margin-top:48px"] { margin-top: 28px !important; }
}

/* ── 600px — Large Phone ─────────────────────────────────── */
@media (max-width: 600px) {
  /* Container */
  .container { padding: 0 16px; }

  /* Typography adjustments */
  h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }
  h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
  h3 { font-size: clamp(1.1rem, 4vw, 1.5rem); }

  /* Sections */
  .section { padding: 36px 0; }
  .section-sm { padding: 24px 0; }

  /* Hero */
  .hero { min-height: 480px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 260px; justify-content: center; }
  .hero-scroll { display: none; }

  /* About strip */
  .about-item { padding: 24px 16px; }
  .about-icon { width: 38px; height: 38px; }
  .about-icon svg { width: 18px; height: 18px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 24px 20px; }

  /* Intro */
  .intro-imgs { height: 240px; overflow: hidden; }
  .intro-img-accent { display: none; }
  .intro-img-main { width: 100%; height: 100%; position: static; box-shadow: var(--shadow-sm); }
  .intro-text .stats { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 1.8rem; }

  /* Gallery slider */
  .slide img { height: 240px; }
  .room-detail-grid .gallery-slider .slide img,
  .camere-layout .gallery-slider .slide img { height: 100%; object-fit: contain; }
  .slider-btn { width: 36px; height: 36px; }
  .slider-prev { left: 10px; }
  .slider-next { right: 10px; }

  /* Location */
  .distances { grid-template-columns: 1fr; gap: 8px; }
  .distance-item { padding: 12px 14px; }

  /* Breakfast */
  .breakfast-imgs {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    height: auto;
    gap: 8px;
  }
  .breakfast-imgs img { height: 200px; }
  .breakfast-imgs img:first-child { grid-row: auto; height: 220px; }
  .breakfast-items { grid-template-columns: 1fr; gap: 8px; }

  /* Testimonials */
  .testimonial-card blockquote { font-size: .95rem; }

  /* Contact */
  .form-row { grid-template-columns: 1fr; }
  .contact-items { gap: 16px; }
  .contact-item-icon { width: 38px; height: 38px; }
  .contact-item-icon svg { width: 18px; height: 18px; }

  /* Room detail */
  .room-hero { height: 45vh; min-height: 280px; }
  .room-hero-content { padding: 20px 16px; }
  .room-amenities-full { grid-template-columns: 1fr; gap: 8px; }
  .booking-box { padding: 20px; }
  .room-card-img { height: 200px; }

  /* Colazione */
  .colazione-gallery { grid-template-columns: 1fr; }
  .colazione-gallery img { height: 220px; }
  .colazione-gallery img:first-child { grid-column: 1; height: 240px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-social { margin-top: 16px; }

  /* CTA */
  .cta-banner { padding: 36px 0; }
  .cta-banner h2 { margin-bottom: 10px; }

  /* Booking widget */
}

/* ── 480px — Standard Phone ──────────────────────────────── */
@media (max-width: 480px) {
  /* Container */
  .container { padding: 0 14px; }

  /* Sections */
  .section { padding: 32px 0; }

  /* Camere layout fix */
  .camere-layout { gap: 20px !important; }

  /* Header */
  .logo-name { font-size: 1.15rem; }
  #header { padding: 14px 0; }

  /* Hero */
  .hero { min-height: 440px; }
  .hero-content p { display: none; }
  .hero-location-badge { margin-bottom: 16px; }
  .hero-location-badge .badge-name { font-size: 1rem; }
  .hero-badges { display: none; }

  /* About strip */
  .about-strip { border-top: none; }
  .about-item { gap: 14px; }

  /* Intro imgs */
  .intro-imgs { display: none; }
  .intro-text .stats { gap: 12px; }

  /* Room cards */
  .room-card-img { height: 190px; }
  .room-card-body { padding: 18px; }
  .room-card-body h3 { font-size: 1.1rem; }

  /* Gallery */
  .slide img { height: 200px; }
  .room-detail-grid .gallery-slider .slide img,
  .camere-layout .gallery-slider .slide img { height: 100% !important; object-fit: contain !important; }
  .testimonials-grid { gap: 12px; }
  .testimonial-card { padding: 20px; }

  /* Room detail */
  .room-hero { height: 40vh; min-height: 240px; }
  .room-hero-content h1 { font-size: clamp(1.4rem, 6vw, 2rem); }
  .room-detail-grid { padding: 36px 0; }
  .booking-price { font-size: 1.6rem; }
  .booking-box { padding: 18px; }

  /* Page hero */
  .page-hero { height: 35vh; min-height: 220px; }

  /* Footer */
  .footer-grid { gap: 24px; }
  .footer-col ul { gap: 8px; }
  .footer-bottom { padding: 16px 0; }

  /* Colazione */
  .colazione-gallery img { height: 180px; }
  .colazione-gallery img:first-child { height: 200px; }

  /* Float buttons */
  .float-wrap { bottom: 12px; right: 12px; gap: 8px; }
  .float-btn { width: 44px; height: 44px; }
  .float-btn svg { width: 20px; height: 20px; }
}

/* ── 360px — Small / Budget Phone ───────────────────────── */
@media (max-width: 360px) {
  .container { padding: 0 12px; }

  /* Typography */
  h1 { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  h2 { font-size: clamp(1.3rem, 6vw, 1.7rem); }

  /* Hero */
  .hero { min-height: 400px; }
  .hero-btns .btn { padding: 12px 20px; font-size: .78rem; }
  .hero-location-badge { gap: 8px; }
  .hero-location-badge .badge-line { width: 20px; }

  /* Sections */
  .section { padding: 28px 0; }
  .camere-layout { gap: 16px !important; }

  /* About */
  .about-item { padding: 20px 12px; }

  /* Room cards */
  .room-card-img { height: 170px; }
  .room-card-body { padding: 14px; }
  .room-card-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
  .room-price { font-size: 1.2rem; }

  /* Services */
  .service-card { padding: 20px 14px; }
  .service-icon { width: 46px; height: 46px; margin-bottom: 14px; }

  /* Gallery */
  .slide img { height: 180px; }
  .room-detail-grid .gallery-slider .slide img,
  .camere-layout .gallery-slider .slide img { height: 100% !important; object-fit: contain !important; }

  /* Contact */
  .form-group input,
  .form-group textarea,
  .form-group select { padding: 10px 12px; font-size: .85rem; }

  /* Booking box */
  .booking-box { padding: 16px; }
  .booking-price { font-size: 1.4rem; }

  /* Footer */
  .footer-grid { gap: 20px; }
  .social-link { width: 34px; height: 34px; }

  /* Float buttons */
  .float-wrap { bottom: 10px; right: 10px; }
  .float-btn { width: 42px; height: 42px; }
  .float-btn svg { width: 18px; height: 18px; }
}

/* ══════════════════════════════════════════════════════════════
   BOOKING PANEL (legacy — stili gestiti inline in index.html)
══════════════════════════════════════════════════════════════ */
.booking-panel, .booking-panel-overlay { display: none !important; }

/* ══════════════════════════════════════════════════════════════
   HERO LOCATION BADGE — Stile badge luogo nell'hero
══════════════════════════════════════════════════════════════ */
.hero-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.hero-location-badge .badge-line {
  width: 32px; height: 1px;
  background: rgba(201,169,110,0.6);
}
.hero-location-badge .badge-name {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  letter-spacing: 2px;
}
.hero-location-badge .badge-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #C9A96E;
}
.hero-location-badge .badge-region {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(201,169,110,0.8);
}

/* ══════════════════════════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════════════════════════ */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9800;
  background: var(--black);
  border-top: 2px solid var(--gold);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -8px 40px rgba(0,0,0,.35);
}
#cookie-banner.visible {
  transform: translateY(0);
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  min-width: 220px;
}
.cookie-text p {
  font-size: .84rem;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  margin: 0;
}
.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
  font-weight: 600;
}
.cookie-text a:hover { color: #fff; }
.cookie-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-title svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; }
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.cookie-btn-accept {
  background: var(--gold);
  color: var(--white);
}
.cookie-btn-accept:hover { background: #a8843a; }
.cookie-btn-reject {
  background: transparent;
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.2);
}
.cookie-btn-reject:hover { border-color: rgba(255,255,255,.5); color: var(--white); }
.cookie-btn-settings {
  background: transparent;
  color: rgba(255,255,255,.5);
  text-decoration: underline;
  padding: 10px 12px;
  font-size: .75rem;
  letter-spacing: .5px;
}
.cookie-btn-settings:hover { color: var(--gold); }

/* Cookie Settings Modal */
#cookie-settings {
  position: fixed;
  inset: 0;
  z-index: 9900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
#cookie-settings.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: var(--white);
  border-radius: 8px;
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.cookie-modal-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.cookie-modal-header h3 { font-size: 1.3rem; margin: 0; }
.cookie-modal-close {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--gray);
  transition: background .2s;
}
.cookie-modal-close:hover { background: var(--border); }
.cookie-modal-body { padding: 24px 28px; }
.cookie-category {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.cookie-category-name {
  font-weight: 600;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-badge {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(201,169,110,.15);
  color: var(--gold);
  padding: 2px 8px;
  border-radius: 10px;
}
.cookie-badge-required {
  background: rgba(107,125,92,.12);
  color: var(--green);
}
.cookie-category p { font-size: .84rem; color: var(--gray); margin: 0; }
/* Toggle switch */
.cookie-toggle {
  position: relative;
  width: 44px; height: 24px;
  flex-shrink: 0;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 12px;
  cursor: pointer;
  transition: background .3s;
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: white;
  left: 3px; top: 3px;
  transition: transform .3s;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--gold); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: .6; cursor: not-allowed; }
.cookie-modal-footer {
  padding: 20px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .cookie-inner { gap: 16px; }
  #cookie-banner { padding: 16px 0; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
  .cookie-btn-settings { flex: none; width: 100%; text-align: left; }
  .cookie-modal-header, .cookie-modal-body, .cookie-modal-footer { padding-left: 20px; padding-right: 20px; }
  .cookie-modal-footer { flex-direction: column; }
  .cookie-modal-footer .cookie-btn { width: 100%; text-align: center; }
}

/* ══════════════════════════════════════════════════════════════
   PRIVACY / COOKIE PAGE
══════════════════════════════════════════════════════════════ */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 0 80px;
}
.legal-content h2 {
  font-size: 1.6rem;
  margin: 40px 0 12px;
  color: var(--black);
}
.legal-content h3 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
  color: var(--black);
}
.legal-content p, .legal-content li {
  font-size: .95rem;
  color: #444;
  line-height: 1.8;
}
.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-content ul li { margin-bottom: 6px; }
.legal-content a { color: var(--gold); font-weight: 600; }
.legal-content a:hover { color: var(--gold-dk); }
.legal-meta {
  font-size: .8rem;
  color: var(--gray);
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.legal-toc {
  background: var(--light);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 36px;
}
.legal-toc h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.legal-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.legal-toc ul li a {
  font-size: .88rem;
  color: var(--black);
  font-weight: 400;
}
.legal-toc ul li a:hover { color: var(--gold); }
.legal-highlight {
  background: rgba(201,169,110,.08);
  border: 1px solid rgba(201,169,110,.3);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0;
}
.legal-highlight p { margin: 0; font-size: .9rem; }

@media (max-width: 768px) {
  .legal-content { padding: 40px 0 60px; }
  .legal-content h2 { font-size: 1.3rem; margin-top: 32px; }
  .legal-content h3 { font-size: 1.05rem; }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE — Fix spazi inline nelle pagine camere
══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Riduci margin top/bottom degli elementi .room-amenities-full inline */
  .camere-layout .room-amenities-full {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  /* Prezzi riga inline */
  .camere-layout > div > [style*="display:flex"] {
    margin-top: 0 !important;
  }
  /* divider margin */
  .camere-layout .divider {
    margin-bottom: 12px !important;
  }
  /* eyebrow */
  .camere-layout .eyebrow {
    margin-bottom: 8px;
  }
  /* h4 interni */
  .camere-layout h4 {
    margin-top: 20px !important;
  }
  /* Sezioni camera — slider viene prima del testo su mobile */
  .camere-layout .gallery-slider {
    order: -1;
  }
  /* Riduci padding intro camere */
  .container > .text-center[style*="max-width:680px"] {
    margin-bottom: 0 !important;
  }
  /* intro text padding interno */
  .camere-layout > div:last-child > p {
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .camere-layout .room-amenities-full {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
    grid-template-columns: 1fr 1fr;
  }
  /* Prezzo font size */
  .camere-layout [style*="font-size:2rem"] {
    font-size: 1.6rem !important;
  }
}

/* ── Camere-layout: margin-bottom su mobile ─────────────────── */
@media (max-width: 768px) {
  .camere-layout[style*="margin-bottom:56px"] {
    margin-bottom: 32px !important;
  }
  .camere-layout[style*="margin-bottom:56px"]:last-of-type {
    margin-bottom: 0 !important;
  }
  /* slider height omogeneo su tablet */
  .camere-layout .slide img {
    height: 100%;
  }
}
@media (max-width: 480px) {
  .camere-layout[style*="margin-bottom:56px"] {
    margin-bottom: 24px !important;
  }
  .camere-layout .slide img {
    height: 100%;
  }
}

/* ══════════════════════════════════════════════════════════════
   BOOKING MODAL — Incluso in tutte le pagine
══════════════════════════════════════════════════════════════ */
.booking-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.35s ease;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.booking-modal-overlay.active { display: flex; opacity: 0; }
.booking-modal-overlay.visible { opacity: 1; }
.booking-modal {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.45), 0 0 0 1px rgba(201,169,110,0.15);
  width: 100%;
  max-width: 860px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  transform: translateY(32px) scale(0.97);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  overflow: hidden;
}
.booking-modal-overlay.visible .booking-modal { transform: translateY(0) scale(1); }
.booking-modal-header {
  background: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.booking-modal-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C9A96E' fill-opacity='0.06'%3E%3Cpath d='M20 0v40M0 20h40'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 40px 40px;
}
.booking-modal-brand { position: relative; display: flex; flex-direction: column; }
.booking-modal-brand .bm-name { font-family: 'Playfair Display', Georgia, serif; font-size: 1.15rem; font-weight: 500; color: #fff; letter-spacing: 0.5px; line-height: 1; }
.booking-modal-brand .bm-sub { font-size: 0.65rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: #C9A96E; margin-top: 5px; }
.booking-modal-brand .bm-perks { display: flex; gap: 20px; margin-top: 8px; }
.booking-modal-brand .bm-perk { display: flex; align-items: center; gap: 5px; font-size: 0.72rem; color: rgba(255,255,255,0.55); }
.booking-modal-brand .bm-perk svg { width: 13px; height: 13px; stroke: #C9A96E; fill: none; flex-shrink: 0; }
.booking-modal-close { position: relative; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s; flex-shrink: 0; }
.booking-modal-close:hover { background: rgba(201,169,110,0.2); border-color: rgba(201,169,110,0.4); }
.booking-modal-close svg { width: 17px; height: 17px; stroke: rgba(255,255,255,0.7); fill: none; stroke-width: 2; }
.booking-modal-body { flex: 1; overflow-y: auto; background: #f9f7f4; }
.booking-modal-body iframe { display: block; width: 100%; border: none; min-height: 580px; }
.booking-modal-loading { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 80px 40px; gap: 16px; }
@keyframes spin { to { transform: rotate(360deg); } }
.booking-modal-loading .bml-spinner { width: 36px; height: 36px; border: 2px solid rgba(201,169,110,0.2); border-top-color: #C9A96E; border-radius: 50%; animation: spin 0.8s linear infinite; }
.booking-modal-loading p { font-size: 0.85rem; color: var(--gray); margin: 0; }
.booking-modal-footer { background: var(--white); border-top: 1px solid var(--border); padding: 12px 28px; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.booking-modal-footer p { font-size: 0.75rem; color: var(--gray); margin: 0; }
.booking-modal-footer .bm-secure { display: flex; align-items: center; gap: 5px; font-size: 0.72rem; color: var(--gray); }
.booking-modal-footer .bm-secure svg { width: 13px; height: 13px; stroke: #6B7D5C; fill: none; }
.booking-modal-drag { display: none; width: 40px; height: 4px; background: rgba(255,255,255,0.2); border-radius: 2px; margin: 0 auto; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); }
@media (max-width: 767px) {
  .booking-modal-overlay { align-items: flex-end; padding: 0; }
  .booking-modal { max-width: 100%; max-height: 94vh; border-radius: 20px 20px 0 0; transform: translateY(100%); }
  .booking-modal-overlay.visible .booking-modal { transform: translateY(0); }
  .booking-modal-drag { display: block; }
  .booking-modal-header { padding: 24px 20px 18px; }
  .booking-modal-brand .bm-perks { display: none; }
  .booking-modal-footer { padding: 10px 20px; }
}
.booking-panel, .booking-panel-overlay { display: none !important; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE FIX COMPLETO — Override stili inline + fix mobile
   Tutti i .camere-layout usano display:grid inline → serve !important
══════════════════════════════════════════════════════════════ */

/* ── Base mobile-first fixes ─────────────────────────────── */
* { box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }

/* Catania grid section (senza classe) fix */
.catania-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ── 1024px ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* Catania section grid */
  .catania-grid { gap: 40px; }
}

/* ── 768px — Tablet / Mobile ─────────────────────────────── */
@media (max-width: 768px) {

  /* ══ CAMERE-LAYOUT — Forza colonna singola (batte inline style) ══ */
  .camere-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  /* Nei layout alternati (testo prima, slider dopo) → slider viene prima */
  .camere-layout > .gallery-slider {
    order: 0 !important;
  }
  .camere-layout > div:not(.gallery-slider) {
    order: 1 !important;
  }

  /* Slider immagini — mostra foto intere (portrait 3:4) */
  .camere-layout .gallery-slider .slide img,
  .camere-layout .slide img {
    height: 100% !important;
    object-fit: contain !important;
    width: 100%;
  }

  /* Prezzi e CTA row in camere */
  .camere-layout [style*="display:flex"] {
    flex-wrap: wrap !important;
    gap: 12px !important;
  }

  /* Margin bottom camere layout */
  .camere-layout {
    margin-bottom: 0 !important;
  }

  /* Catania grid → colonna singola */
  .catania-grid,
  [style*="grid-template-columns:1fr 1fr;gap:60px;align-items:center"],
  [style*="grid-template-columns:1fr 1fr"][style*="align-items:center"] {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  /* Su mobile Catania: intro (order 1) → immagini (order 2) → corpo testo (order 3) */
  .catania-text-col {
    display: contents;
  }
  .catania-intro {
    order: 1;
    margin-bottom: 20px;
  }
  .catania-imgs-grid {
    order: 2;
    margin-bottom: 24px;
  }
  .catania-body {
    order: 3;
  }

  /* Immagini grid Catania section */
  [style*="grid-template-columns:1fr 1fr;gap:12px"] img {
    height: 160px !important;
    margin-top: 0 !important;
  }
  [style*="grid-template-columns:1fr 1fr;gap:12px"] {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
    margin-top: 0 !important;
  }

  /* About strip a colonna singola */
  .about-strip {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  .about-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border);
    padding: 24px 20px !important;
  }
  .about-item:last-child { border-bottom: none; }
  .about-item:nth-child(2) { border-right: none !important; }
  .about-item:nth-child(3) {
    grid-column: auto !important;
    border-top: none !important;
    border-right: none !important;
  }

  /* Intro grid */
  .intro-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .intro-imgs {
    height: 260px !important;
    overflow: hidden !important;
    position: relative !important;
    width: 100% !important;
  }
  .intro-img-main {
    position: static !important;
    width: 100% !important;
    height: 100% !important;
    max-height: 260px !important;
    object-fit: cover !important;
    box-shadow: none !important;
  }
  .intro-img-accent { display: none !important; }

  /* Stats grid */
  .intro-text .stats {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    margin: 20px 0 !important;
  }
  .stat-num { font-size: 1.9rem !important; }

  /* Room amenities full → 2 colonne */
  .room-amenities-full {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin-top: 16px !important;
    margin-bottom: 20px !important;
  }

  /* Breakfast grid */
  .breakfast-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  /* Su mobile Colazione: intro (order 1) → immagini (order 2) → corpo testo (order 3) */
  .breakfast-text-col {
    display: contents;
  }
  .breakfast-intro {
    order: 1;
    margin-bottom: 20px;
  }
  .breakfast-imgs {
    height: 240px !important;
    overflow: hidden !important;
    order: 2;
    margin-bottom: 24px;
  }
  .breakfast-body {
    order: 3;
  }
  .breakfast-grid > .fade.fade-delay-1 {
    order: 2;
  }

  /* Location grid */
  .location-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }
  .location-info { padding: 32px 20px !important; order: 2; }
  .location-map { order: 1; min-height: 260px; }
  .location-map iframe { min-height: 260px !important; }
  .distances {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }
  .footer-brand { grid-column: 1 / -1 !important; }

  /* Contact grid */
  .contact-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .form-row { grid-template-columns: 1fr !important; }

  /* Room detail */
  .room-detail-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .booking-box { position: static !important; top: unset !important; }

  /* Colazione gallery */
  .colazione-gallery {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    overflow: hidden !important;
  }
  .colazione-gallery img { height: 180px !important; }
  .colazione-gallery img:first-child {
    grid-column: 1 / 3 !important;
    height: 240px !important;
  }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr !important; }

  /* Services */
  .services-grid { grid-template-columns: 1fr 1fr !important; }

  /* Rooms grid */
  .rooms-grid { grid-template-columns: 1fr !important; }

  /* Section padding */
  .section { padding: 48px 0 !important; }
  .section-sm { padding: 32px 0 !important; }
  .section.bg-light { padding: 48px 0 !important; }

  /* Container padding */
  .container { padding: 0 20px !important; }

  /* Sezione camere — ogni sezione aggiunge spazio */
  section.section + section.section,
  section.section.bg-light + section.section,
  section.section + section.section.bg-light {
    padding-top: 48px !important;
  }
}

/* ── 600px ────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .container { padding: 0 16px !important; }

  /* Catania image grid */
  [style*="grid-template-columns:1fr 1fr;gap:12px"] img {
    height: 130px !important;
  }

  /* Camere layout gap */
  .camere-layout { gap: 20px !important; }

  /* Slider height */
  .camere-layout .slide img,
  .camere-layout .gallery-slider .slide img {
    height: 100% !important;
    object-fit: contain !important;
  }

  /* Room amenities full → 1 col su small */
  .room-amenities-full {
    grid-template-columns: 1fr !important;
  }

  /* Distances → 1 col */
  .distances { grid-template-columns: 1fr !important; gap: 8px !important; }

  /* Services → 1 col */
  .services-grid { grid-template-columns: 1fr !important; }

  /* Footer → 1 col */
  .footer-grid { grid-template-columns: 1fr !important; }

  /* Breakfast images */
  .breakfast-imgs {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    height: auto !important;
    gap: 8px !important;
  }
  .breakfast-imgs img { height: 190px !important; }
  .breakfast-imgs img:first-child { grid-row: auto !important; height: 200px !important; }
  .breakfast-items { grid-template-columns: 1fr !important; gap: 8px !important; }

  /* Colazione → 1 col */
  .colazione-gallery { grid-template-columns: 1fr !important; }
  .colazione-gallery img { height: 200px !important; }
  .colazione-gallery img:first-child {
    grid-column: 1 !important;
    height: 220px !important;
  }

  /* Stats */
  .intro-text .stats { grid-template-columns: 1fr 1fr !important; }
  .stat-num { font-size: 1.7rem !important; }

  /* Hero buttons */
  .hero-btns { flex-direction: column !important; align-items: center !important; }
  .hero-btns .btn { width: 100% !important; max-width: 280px !important; justify-content: center !important; }

  /* Section padding */
  .section { padding: 36px 0 !important; }
  .section-sm { padding: 24px 0 !important; }

  /* Booking box */
  .booking-box { padding: 20px !important; }
  .booking-price { font-size: 1.7rem !important; }

  /* Room hero */
  .room-hero-content { padding: 20px 16px !important; }
}

/* ── 480px ────────────────────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 14px !important; }

  .camere-layout .slide img,
  .camere-layout .gallery-slider .slide img {
    height: 100% !important;
    object-fit: contain !important;
  }

  .slide img { height: 195px !important; }
  .room-detail-grid .gallery-slider .slide img,
  .camere-layout .gallery-slider .slide img { height: 100% !important; object-fit: contain !important; }

  /* Rooms grid card img */
  .room-card-img { height: 190px !important; }
  .room-card-body { padding: 16px !important; }
  .room-card-footer { flex-direction: column !important; align-items: flex-start !important; gap: 10px !important; }

  /* Section padding */
  .section { padding: 30px 0 !important; }

  /* Stats 1 col */
  .intro-text .stats { grid-template-columns: 1fr 1fr !important; }

  /* Booking price */
  .booking-price { font-size: 1.5rem !important; }
  .booking-box { padding: 16px !important; }

  /* Mobile menu links */
  

  /* Page hero */
  .page-hero { height: 35vh !important; min-height: 210px !important; }

  /* Float buttons — icon only */
  .float-wrap { bottom: 12px !important; right: 12px !important; gap: 8px !important; }
  .float-btn { width: 48px !important; height: 48px !important; }
  .float-btn svg { width: 22px !important; height: 22px !important; }

  /* Footer */
  .footer-grid { gap: 20px !important; }

  /* Hero */
  .hero-content p { display: none !important; }
  .hero-badges { display: none !important; }
}

/* ── 360px ────────────────────────────────────────────────── */
@media (max-width: 360px) {
  .container { padding: 0 12px !important; }

  .camere-layout .slide img,
  .camere-layout .gallery-slider .slide img { height: 100% !important; object-fit: contain !important; }

  .slide img { height: 175px !important; }
  .room-detail-grid .gallery-slider .slide img,
  .camere-layout .gallery-slider .slide img { height: 100% !important; object-fit: contain !important; }

  .booking-price { font-size: 1.3rem !important; }
  .booking-box { padding: 14px !important; }

  .section { padding: 24px 0 !important; }

  /* Stats compatti */
  .stat-num { font-size: 1.5rem !important; }
  .stat-label { font-size: .72rem !important; }

  .about-item { padding: 18px 12px !important; gap: 12px !important; }

  .service-card { padding: 20px 14px !important; }

  .footer-grid { gap: 18px !important; }
  .footer-col ul { gap: 7px !important; }

  .float-btn { width: 44px !important; height: 44px !important; }
  .float-btn svg { width: 20px !important; height: 20px !important; }

  /* Prices */
  .room-price { font-size: 1.15rem !important; }
}


/* ══════════════════════════════════════════════════════════════
   ADDITIONAL SPECIFIC FIXES
══════════════════════════════════════════════════════════════ */

/* Catania imgs grid — desktop offset effect */
.catania-imgs-grid {
  overflow: visible;
}

/* Location cards grid */
.location-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 768px) {
  /* Catania imgs grid — mobile no offset */
  .catania-imgs-grid {
    gap: 8px !important;
    overflow: hidden !important;
  }
  .catania-imgs-grid img {
    height: 150px !important;
    margin-top: 0 !important;
    width: 100% !important;
  }

  /* Location cards */
  .location-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Catania section text+grid columns */
  .catania-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
}

@media (max-width: 600px) {
  .catania-imgs-grid img {
    height: 130px !important;
  }

  /* Prenota page info grid */
  .prenota-info {
    grid-template-columns: 1fr !important;
  }
}

/* ── General image overflow protection ─────────────────── */
section, .section, .section-sm, .container,
.camere-layout, .intro-grid, .breakfast-grid,
.location-grid, .footer-grid, .contact-grid,
.room-detail-grid, .testimonials-grid, .rooms-grid,
.services-grid, .about-strip, .colazione-gallery,
.catania-grid, .catania-imgs-grid {
  overflow: hidden;
}

/* But allow sticky booking box overflow to be visible on desktop */
@media (min-width: 769px) {
  .room-detail-grid { overflow: visible; }
  .booking-box { overflow: visible; }
}

/* ── Uniform section separators ──────────────────────────── */
.section + .section,
.section + .cta-banner,
.cta-banner + .section,
.section-sm + .section,
.section + .section-sm {
  border-top: none;
}

/* ── Improved button sizing on mobile ────────────────────── */
@media (max-width: 480px) {
  .btn {
    padding: 12px 22px !important;
    font-size: .8rem !important;
  }
  .btn-gold, .btn-dark, .btn-outline {
    padding: 12px 22px !important;
  }
}

/* ── Colazione: immagini dopo il testo e centrate su smartphone ── */
@media (max-width: 768px) {
  .breakfast-grid {
    display: flex;
    flex-direction: column;
  }
  .breakfast-grid .breakfast-imgs {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    gap: 12px;
    margin-top: 8px;
  }
  .breakfast-grid .fade.fade-delay-1 {
    order: 1;
  }
  .breakfast-imgs img {
    width: 100%;
    max-width: 360px;
    height: 220px !important;
    object-fit: cover;
    border-radius: 10px;
  }
  .breakfast-imgs img:first-child {
    height: 220px !important;
    grid-row: auto !important;
  }
}


/* Hamburger — stato aperto */
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════════
   MOBILE HEADER ACTIONS (pulsante Prenota + hamburger)
══════════════════════════════════════════════════════════════ */
.mobile-header-actions {
  display: none;
  align-items: center;
  gap: 8px;
}
.mobile-book-btn {
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 2px;
  padding: 7px 13px;
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.mobile-book-btn:hover,
.mobile-book-btn:focus-visible { background: var(--gold); color: var(--white); }
#header.scrolled .mobile-book-btn { color: var(--gold); border-color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   OVERLAY
══════════════════════════════════════════════════════════════ */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.52);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ══════════════════════════════════════════════════════════════
   DRAWER LATERALE
══════════════════════════════════════════════════════════════ */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 90vw;
  height: 100%;
  height: 100dvh;
  background: var(--black);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
}
.mobile-drawer.open {
  transform: translateX(0);
}

/* Intestazione drawer */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.drawer-logo { line-height: 1.1; text-decoration: none; }
.drawer-logo-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .5px;
}
.drawer-logo-sub {
  display: block;
  font-size: .52rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.drawer-close-btn {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
}
.drawer-close-btn:hover { background: rgba(255,255,255,.14); }
.drawer-close-btn svg { width: 13px; height: 13px; }

/* Nav del drawer */
.drawer-nav {
  flex: 1;
  padding: 6px 0 16px;
  display: flex;
  flex-direction: column;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 22px;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
  border-left: 2px solid transparent;
  transition: color .2s, background .2s, border-color .2s;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  text-decoration: none;
}
.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  background: rgba(201,169,110,.1);
  border-left-color: var(--gold);
}
.nav-link--small {
  font-size: .62rem;
  letter-spacing: 1px;
  color: rgba(255,255,255,.28);
  padding-top: 10px;
  padding-bottom: 10px;
}
.nav-link--small:hover { color: rgba(255,255,255,.5); background: none; border-left-color: transparent; }

/* Freccia sottomenu */
.nav-arrow {
  width: 15px; height: 15px;
  transition: transform .3s ease;
  flex-shrink: 0;
}
.nav-item.open .nav-arrow { transform: rotate(180deg); }

/* Separatore */
.nav-divider {
  height: 1px;
  background: rgba(255,255,255,.07);
  margin: 8px 22px;
}

/* Sottomenu camere */
.drawer-submenu {
  overflow: hidden;
  max-height: 0;
  transition: max-height .38s ease;
}
.drawer-submenu.open { max-height: 360px; }
.submenu-inner {
  padding: 4px 0 8px;
  background: rgba(255,255,255,.025);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.submenu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px 10px 38px;
  font-size: .76rem;
  letter-spacing: .3px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .2s;
  -webkit-tap-highlight-color: transparent;
}
.submenu-link:hover { color: var(--gold); }
.submenu-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .5;
  flex-shrink: 0;
  transition: opacity .2s;
}
.submenu-link:hover .submenu-dot { opacity: 1; }
.room-badge {
  margin-left: auto;
  font-size: .55rem;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,169,110,.12);
  border: 1px solid rgba(201,169,110,.28);
  border-radius: 2px;
  padding: 2px 6px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Footer drawer */
.drawer-footer {
  padding: 16px 22px 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.drawer-book-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  border: none;
  border-radius: 2px;
  padding: 14px 24px;
  cursor: pointer;
  text-decoration: none;
  transition: background .25s, transform .15s;
  -webkit-tap-highlight-color: transparent;
}
.drawer-book-btn:hover { background: var(--gold-dk); color: var(--white); }
.drawer-book-btn:active { transform: scale(.98); }

/* Contatti rapidi */
.drawer-contacts {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.drawer-contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .72rem;
  color: rgba(255,255,255,.38);
  text-decoration: none;
  transition: color .2s;
  -webkit-tap-highlight-color: transparent;
}
.drawer-contact-item:hover { color: rgba(255,255,255,.7); }
.drawer-contact-item svg {
  width: 13px; height: 13px;
  flex-shrink: 0;
}

/* Social */
.drawer-social {
  margin-top: 16px;
  display: flex;
  gap: 8px;
}
.drawer-social-link {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.38);
  font-size: .6rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .2s, color .2s;
  -webkit-tap-highlight-color: transparent;
}
.drawer-social-link:hover { border-color: var(--gold); color: var(--gold); }
.drawer-social-link svg { width: 13px; height: 13px; }

/* ── Media query: mostra mobile-header-actions su mobile ─── */
@media (max-width: 768px) {
  .nav-links,
  .nav-cta { display: none; }
  .mobile-header-actions { display: flex; }
  .hamburger { display: flex; }
}
