/* ============================================================
   CALA BLU — Luxury Layout System
   Struttura completamente nuova: navbar floating, hero fullscreen,
   trust bar, split layout, bento grid, dark reviews, FAQ accordion
   ============================================================ */

/* ─── Reset page ────────────────────────────────────────────── */
.lux-page {
  font-family: 'Inter', system-ui, sans-serif;
  background: #fff;
  color: #0D1B2A;
  margin: 0;
  padding: 0;
}
.lux-page * { box-sizing: border-box; }

/* ─── Container ─────────────────────────────────────────────── */
.lux-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) { .lux-container { padding: 0 20px; } }

/* ══════════════════════════════════════════════════════════════
   NAVBAR — floating, transparent → solid on scroll
   ══════════════════════════════════════════════════════════════ */
/* Le animazioni d'ingresso (AOS) spostano gli elementi di 100 px in
   orizzontale prima di farli comparire: "fade-right" parte a -100, "fade-left"
   a +100. Su telefono quello spostamento sporge oltre il bordo dello schermo
   e allarga la pagina di 80 px — si vedeva nella sezione delle domande
   frequenti, i cui blocchi restano fermi finche' non entrano in vista.
   "clip" taglia la sporgenza SENZA creare un contenitore di scorrimento,
   quindi non rompe gli elementi che restano agganciati scorrendo. */
main { overflow-x: clip; }

.lux-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
  background: transparent;
}
.lux-nav.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow: 0 1px 40px rgba(13,27,42,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.lux-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 92px;
  display: flex;
  align-items: center;
  gap: 0;
  overflow: visible;
}

/* Brand / Logo */
.lux-brand { flex-shrink: 0; margin-right: 32px; line-height: 0; }
.lux-brand img {
  height: 80px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.3));
  transition: filter 0.3s ease, opacity 0.2s ease;
}
.lux-nav.scrolled .lux-brand img { filter: none; }
.lux-brand:hover img { opacity: 0.85; }

/* Scritta "recensioni verificate" nel box punteggio */
.lux-score-verified{ margin-top:8px; font-size:.82rem; color:rgba(255,255,255,.8); display:inline-flex; align-items:center; gap:6px; }
.lux-score-verified .lux-verified-check{ display:inline-flex; align-items:center; justify-content:center; width:16px; height:16px; border-radius:50%; background:#0ABFBC; color:#fff; font-size:11px; font-weight:800; }

/* CTA sotto le recensioni (link ad Airbnb/Booking) */
/* Avviso che le recensioni sono tradotte: discreto, ma detto. */
.lux-reviews-note{ text-align:center; margin:20px 0 0; font-size:.85rem; color:rgba(255,255,255,.6); font-style:italic; }
.lux-reviews-cta{ text-align:center; margin-top:34px; display:flex; flex-direction:column; align-items:center; gap:12px; }
.lux-reviews-cta-label{ color:rgba(255,255,255,.85); margin:0; font-size:.95rem; }
.lux-reviews-cta .lux-btn-outline{ margin:0 6px; }

/* Badge fonte recensioni (Booking / Airbnb) */
.lux-review-author .rev-badge{ display:inline-block; font-size:11px; font-weight:700; padding:2px 8px; border-radius:6px; vertical-align:middle; letter-spacing:.2px; }
.lux-review-author .rev-badge.rev-booking{ background:#003b95; color:#fff; }
.lux-review-author .rev-badge.rev-airbnb{ background:#ff5a5f; color:#fff; }

/* Doppio logo (Cala Blu + Cala Verde) su chip bianco */
.lux-brand .lux-brand-logos {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 14px;
  padding: 6px 14px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.22);
  transition: box-shadow 0.3s ease;
}
.lux-brand .lux-brand-logos img {
  height: 50px;
  width: auto;
  display: block;
  filter: none;
}
.lux-nav.scrolled .lux-brand .lux-brand-logos { box-shadow: 0 2px 12px rgba(13,27,42,0.10); }
@media (max-width: 640px){ .lux-brand .lux-brand-logos img { height: 38px; } .lux-brand .lux-brand-logos { gap: 6px; padding: 5px 10px; } }

/* Desktop links */
.lux-links {
  display: flex;
  align-items: center;
  gap: 2px;
  overflow: visible;
}
.lux-link {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-decoration: none !important;
  letter-spacing: 0.01em;
  transition: color 0.2s ease, background 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.lux-nav.scrolled .lux-link { color: #0D1B2A; }
.lux-link:hover { background: rgba(255,255,255,0.12); color: #fff; }
.lux-nav.scrolled .lux-link:hover { background: #f0faf9; color: #0ABFBC; }

/* Dropdown */
.lux-dropdown {
  position: relative;
  overflow: visible;
}
.lux-link-parent { cursor: pointer; }
.lux-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(13,27,42,0.16);
  padding: 8px;
  display: none;
  z-index: 9100;
}
.lux-dropdown:hover .lux-submenu,
.lux-dropdown:focus-within .lux-submenu,
.lux-dropdown.open .lux-submenu { display: block; }

/* Bridge invisibile che copre il gap tra parent e submenu */
.lux-submenu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0; right: 0;
  height: 12px;
}

.lux-submenu a {
  display: block;
  padding: 11px 16px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #0D1B2A;
  text-decoration: none !important;
  transition: background 0.15s ease, color 0.15s ease;
}
.lux-submenu a:hover { background: #e0f7f7; color: #0ABFBC; }

/* Right side */
.lux-nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
  min-width: 0;
}

/* Language */
.lux-lang {
  display: flex;
  gap: 4px;
}
.lux-lang a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 26px;
  padding: 0 6px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none !important;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.25);
  background: transparent;
  transition: all 0.2s ease;
}
.lux-nav.scrolled .lux-lang a { color: #0D1B2A; border-color: rgba(13,27,42,0.2); }
.lux-lang a:hover { background: rgba(255,255,255,0.2); color: #fff; }
.lux-nav.scrolled .lux-lang a:hover { background: #e0f7f7; color: #0ABFBC; border-color: #0ABFBC; }
.lux-lang a.active {
  background: #C9A84C;
  color: #0D1B2A;
  border-color: #C9A84C;
}

/* CTA button — base */
.lux-cta-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0ABFBC, #088f8d);
  color: #fff !important;
  text-decoration: none !important;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(10,191,188,0.35);
  white-space: nowrap;
  flex-shrink: 0;
}
.lux-cta-btn:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(10,191,188,0.5); }
.lux-cta-main { font-size: 13px; font-weight: 800; color: #fff; }
/* Hide subtitle in navbar — single line only */
.lux-nav .lux-cta-sub { display: none; }
/* Show subtitle in mobile menu */
.lux-mobile-menu .lux-cta-btn { flex-direction: column; align-items: flex-start; }
.lux-mobile-menu .lux-cta-sub { display: block; font-size: 11px; font-weight: 500; opacity: 0.85; color: #fff; }

/* Hamburger */
.lux-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.lux-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: background 0.3s ease;
}
.lux-nav.scrolled .lux-hamburger span { background: #0D1B2A; }

/* Mobile menu */
.lux-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 0 20px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  border-top: 0px solid rgba(201,168,76,0.15);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.3s ease, border-top-width 0.1s ease;
}
.lux-mobile-menu.open {
  max-height: 680px;
  padding: 16px 20px 28px;
  border-top-width: 1px;
}
.lux-mob-link {
  display: block;
  padding: 13px 16px;
  border-radius: 12px;
  background: #F8F5F0;
  color: #0D1B2A !important;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.2s ease;
}
.lux-mob-link:hover { background: #e0f7f7; color: #0ABFBC !important; }
.lux-mob-sub { padding-left: 28px; font-size: 14px; }
.lux-mob-label {
  display: block;
  padding: 8px 16px 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #5a7080;
}
.lux-mob-lang { margin-top: 6px; }
.lux-mobile-menu .lux-cta-btn { width: 100%; justify-content: center; }

@media (max-width: 991px) {
  .lux-links, .lux-nav-right { display: none; }
  .lux-hamburger { display: flex; }
  .lux-mobile-menu { display: flex; }
  .lux-nav-inner { height: 72px; padding: 0 20px; }
  .lux-brand img { height: 58px; }
  /* prevent body shift when menu opens */
  body.menu-open { overflow: hidden; }
}
@media (min-width: 992px) {
  .lux-mobile-menu { display: none !important; }
}


/* ══════════════════════════════════════════════════════════════
   HERO — fullscreen cinematic
   ══════════════════════════════════════════════════════════════ */
.lux-hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

/* Owl slider */
.lux-hero-slider { height: 100%; }
.lux-hero-slider.owl-carousel { display: block; }

.lux-slide {
  height: 100svh;
  min-height: 600px;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
}

/* Dark gradient overlay */
.lux-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(13,27,42,0.22) 0%,
    rgba(13,27,42,0.48) 40%,
    rgba(13,27,42,0.75) 100%
  );
  pointer-events: none;
}

/* Hero text content */
.lux-hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 120px;
  pointer-events: none;
}
.lux-hero-content > * { pointer-events: auto; }

.lux-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #C9A84C;
  margin: 0 0 20px;
}
.lux-eyebrow--light { color: rgba(255,255,255,0.7); }

.lux-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 1.0;
  color: #fff;
  margin: 0 0 28px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.35);
  letter-spacing: -0.02em;
}
.lux-hero-title em {
  font-style: italic;
  color: #C9A84C;
  text-shadow: 0 4px 40px rgba(201,168,76,0.3);
}

.lux-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  max-width: 580px;
  line-height: 1.65;
  margin: 0 0 40px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.lux-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Scroll hint */
.lux-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  animation: lux-bounce 2.5s ease-in-out infinite;
}
.lux-scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.8));
}
.lux-scroll-text {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
}
@keyframes lux-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@media (max-width: 768px) {
  .lux-hero-title { font-size: clamp(2.2rem, 11vw, 3.2rem); }
  .lux-hero-content {
    padding: 120px 24px 90px;
    justify-content: flex-end;
    padding-bottom: 60px;
  }
  .lux-hero-sub { font-size: 15px; margin-bottom: 28px; }
  .lux-scroll-hint { display: none; }
  .lux-eyebrow { font-size: 10px; letter-spacing: 0.18em; margin-bottom: 14px; }
}

@media (max-width: 520px) {
  .lux-hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .lux-hero-actions .lux-btn-gold,
  .lux-hero-actions .lux-btn-ghost {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }
}


/* ══════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════ */
.lux-btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, #C9A84C, #a8852e);
  color: #0D1B2A !important;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none !important;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.lux-btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px rgba(201,168,76,0.45);
  color: #0D1B2A !important;
}
.lux-btn-gold--sm { padding: 11px 22px; font-size: 13px; }

.lux-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.45);
  color: #fff !important;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
  backdrop-filter: blur(8px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  white-space: nowrap;
}
.lux-btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
  color: #fff !important;
}

.lux-btn-teal {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0ABFBC, #088f8d);
  color: #fff !important;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: 0 6px 24px rgba(10,191,188,0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lux-btn-teal:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(10,191,188,0.42);
  color: #fff !important;
}

.lux-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 999px;
  border: 2px solid #0ABFBC;
  color: #0ABFBC !important;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: background 0.2s ease, color 0.2s ease;
}
.lux-btn-outline:hover { background: #0ABFBC; color: #fff !important; }


/* ══════════════════════════════════════════════════════════════
   TRUST BAR
   ══════════════════════════════════════════════════════════════ */
.lux-trust-bar {
  background: #0D1B2A;
  padding: 0;
}
.lux-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
}
.lux-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 40px;
  text-align: center;
  flex: 1;
  min-width: 0;
}
.lux-trust-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #C9A84C;
  line-height: 1;
  margin-bottom: 6px;
}
.lux-trust-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}
.lux-trust-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  align-self: stretch;
  margin: 16px 0;
}
@media (max-width: 768px) {
  .lux-trust-inner { flex-wrap: wrap; gap: 0; }
  .lux-trust-item { padding: 22px 12px; flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .lux-trust-item:nth-child(1), .lux-trust-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.06); }
  .lux-trust-divider { display: none; }
  .lux-trust-num { font-size: 1.6rem; }
  .lux-trust-label { font-size: 10px; }
}


/* ══════════════════════════════════════════════════════════════
   SECTION COMMON
   ══════════════════════════════════════════════════════════════ */
.lux-section {
  padding: 100px 0;
}
.lux-section-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #0ABFBC;
  text-align: center;
  margin-bottom: 14px;
}
.lux-section-label--light { color: #C9A84C; }
.lux-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #0D1B2A;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.lux-title--light { color: #fff; }
.lux-section-sub {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: #5a7080;
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .lux-section { padding: 60px 0; }
  .lux-section-title { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .lux-section-sub { font-size: 15px; margin-bottom: 40px; padding: 0 8px; }
  .lux-cta-banner { min-height: 360px; }
  .lux-cta-content { padding: 60px 20px; }
  .lux-cta-title { font-size: clamp(1.8rem, 8vw, 2.6rem); }
  .lux-cta-sub { font-size: 14px; }
}


/* ══════════════════════════════════════════════════════════════
   APPARTAMENTI — split layout
   ══════════════════════════════════════════════════════════════ */
.lux-apts {
  padding-top: 100px;
  padding-bottom: 0;
}
.lux-apts .lux-section-label,
.lux-apts .lux-section-title,
.lux-apts .lux-section-sub { padding: 0 20px; }

.lux-apt-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  margin: 60px 0 0;
}

.lux-apt-split--imgR .lux-apt-body { order: 1; }
.lux-apt-split--imgR .lux-apt-img { order: 2; }

.lux-apt-img {
  position: relative;
  background-size: cover !important;
  background-position: center !important;
  overflow: hidden;
  display: block;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.4s ease;
}
.lux-apt-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.15), rgba(13,27,42,0.05));
  transition: background 0.3s ease;
}
.lux-apt-img:hover {
  transform: scale(1.02);
}
.lux-apt-img:hover::after {
  background: linear-gradient(135deg, rgba(10,191,188,0.18), rgba(13,27,42,0.08));
}
/* Icona visiva "clicca" al hover */
.lux-apt-img::before {
  content: '→ Scopri';
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3;
  background: rgba(201,168,76,0.92);
  color: #0D1B2A;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 14px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}
.lux-apt-img:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.lux-apt-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  background: #C9A84C;
  color: #0D1B2A;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 7px 16px;
  border-radius: 999px;
}

.lux-apt-body {
  padding: 64px 72px;
  background: #F8F5F0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lux-apt-split--imgR .lux-apt-body { background: #fff; }

.lux-apt-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #0ABFBC;
  margin: 0 0 16px;
}
.lux-apt-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: #0D1B2A;
  line-height: 1.1;
  margin: 0 0 22px;
  letter-spacing: -0.01em;
}
.lux-apt-desc {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #5a7080;
  line-height: 1.75;
  margin: 0 0 28px;
  max-width: 440px;
}
.lux-apt-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lux-apt-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2c4460;
}
.lux-apt-features li svg { color: #0ABFBC; flex-shrink: 0; }

@media (max-width: 900px) {
  .lux-apt-split { grid-template-columns: 1fr; min-height: auto; }
  .lux-apt-img { height: 280px; order: 0 !important; }
  .lux-apt-body { padding: 36px 24px 44px; order: 1 !important; }
  .lux-apt-split--imgR .lux-apt-img { order: 0 !important; }
  .lux-apt-desc { max-width: 100%; }
  .lux-btn-teal { width: 100%; justify-content: center; }
  .lux-apts { padding-top: 70px; }
}


/* ══════════════════════════════════════════════════════════════
   DESTINAZIONI — bento grid
   ══════════════════════════════════════════════════════════════ */
.lux-destinations {
  background: #F8F5F0;
}

.lux-bento {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 340px 220px;
  gap: 14px;
  margin-top: 0;
}

.lux-bento-card {
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}
.lux-bento-card:hover { transform: scale(1.018); box-shadow: 0 24px 60px rgba(13,27,42,0.2); }

.lux-bento-large {
  grid-row: 1 / 2;
  grid-column: 1 / 2;
}
.lux-bento-col {
  grid-row: 1 / 2;
  grid-column: 2 / 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lux-bento-small { flex: 1; border-radius: 20px; }
.lux-bento-bottom {
  grid-row: 2 / 3;
  border-radius: 20px;
}
.lux-bento-bottom:first-of-type { grid-column: 1 / 2; }
.lux-bento-bottom:last-of-type { grid-column: 2 / 3; }

/* Dark gradient over each card */
.lux-bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13,27,42,0.82) 0%, rgba(13,27,42,0.15) 55%, transparent 100%);
  transition: opacity 0.3s ease;
}
.lux-bento-card:hover .lux-bento-overlay { opacity: 0.7; }

.lux-bento-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 24px;
  z-index: 2;
}
.lux-bento-cat {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #C9A84C;
  margin-bottom: 6px;
}
.lux-bento-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0;
}
.lux-bento-large .lux-bento-title { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
.lux-bento-arrow {
  display: inline-block;
  color: #C9A84C;
  font-size: 18px;
  margin-top: 8px;
  transition: transform 0.2s ease;
}
.lux-bento-card:hover .lux-bento-arrow { transform: translateX(6px); }

@media (max-width: 900px) {
  .lux-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .lux-bento-large { grid-column: 1 / 3; height: 280px; }
  .lux-bento-col { grid-column: 1 / 3; flex-direction: row; grid-row: auto; }
  .lux-bento-small { height: 200px; flex: 1; }
  .lux-bento-bottom { height: 180px; grid-column: auto; grid-row: auto; }
}
@media (max-width: 600px) {
  .lux-bento { grid-template-columns: 1fr; gap: 10px; }
  .lux-bento-large, .lux-bento-col, .lux-bento-bottom { grid-column: 1 / 2; }
  .lux-bento-col { flex-direction: column; }
  .lux-bento-large { height: 240px; }
  .lux-bento-small, .lux-bento-bottom { height: 180px; }
}


/* ══════════════════════════════════════════════════════════════
   REVIEWS — dark section
   ══════════════════════════════════════════════════════════════ */
.lux-reviews {
  background: #0D1B2A;
  padding: 100px 0;
}

.lux-score-row {
  display: flex;
  justify-content: center;
  margin-bottom: 56px;
}
.lux-score-box {
  text-align: center;
  padding: 32px 48px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 20px;
  background: rgba(201,168,76,0.06);
}
.lux-score-stars {
  font-size: 28px;
  color: #C9A84C;
  letter-spacing: 4px;
  margin-bottom: 8px;
}
.lux-score-num {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.lux-score-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.lux-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.lux-review-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.lux-review-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
}
.lux-review-stars {
  font-size: 16px;
  color: #C9A84C;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.lux-review-text {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin: 0 0 18px;
  font-style: italic;
}
.lux-review-author {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 900px) {
  .lux-reviews-grid { grid-template-columns: repeat(2, 1fr); padding: 0 20px; }
  .lux-reviews { padding: 70px 0; }
}
@media (max-width: 600px) {
  .lux-reviews-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .lux-score-box { padding: 24px 24px; width: 100%; }
  .lux-score-num { font-size: 3rem; }
  .lux-score-row { padding: 0 20px; }
}


/* ══════════════════════════════════════════════════════════════
   CTA BANNER — full-bleed image
   ══════════════════════════════════════════════════════════════ */
.lux-cta-banner {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lux-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover !important;
  background-position: center !important;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.lux-cta-banner:hover .lux-cta-bg { transform: scale(1.0); }
.lux-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.65) 100%);
}
.lux-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px;
}
.lux-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.lux-cta-sub {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin: 0 0 36px;
  line-height: 1.6;
}


/* ══════════════════════════════════════════════════════════════
   FAQ — sidebar + accordion
   ══════════════════════════════════════════════════════════════ */
.lux-faq-section { background: #fff; }

.lux-faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.lux-faq-header { position: sticky; top: 100px; }
.lux-faq-title { text-align: left; }
.lux-faq-lead {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #5a7080;
  line-height: 1.65;
  margin: 0 0 28px;
  text-align: left;
}

.lux-faq-list { padding-top: 4px; }
.lux-faq-item {
  border-bottom: 1px solid rgba(13,27,42,0.08);
}
.lux-faq-item:first-child { border-top: 1px solid rgba(13,27,42,0.08); }

.lux-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0D1B2A;
  text-align: left;
  line-height: 1.4;
  transition: color 0.2s ease;
}
.lux-faq-q:hover { color: #0ABFBC; }
.lux-faq-q[aria-expanded="true"] { color: #0ABFBC; }

.lux-faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.2s ease, transform 0.3s ease;
}
.lux-faq-icon::before,
.lux-faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.lux-faq-icon::before { width: 10px; height: 1.5px; }
.lux-faq-icon::after { width: 1.5px; height: 10px; }
.lux-faq-q[aria-expanded="true"] .lux-faq-icon::after { transform: rotate(90deg); opacity: 0; }
.lux-faq-q[aria-expanded="true"] .lux-faq-icon { background: #0ABFBC; border-color: #0ABFBC; }
.lux-faq-q[aria-expanded="true"] .lux-faq-icon::before { background: #fff; }

.lux-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), padding 0.3s ease;
}
.lux-faq-a.open {
  max-height: 300px;
  padding-bottom: 20px;
}
.lux-faq-a p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #5a7080;
  line-height: 1.7;
  margin: 0;
}
.lux-faq-a a { color: #0ABFBC; }

@media (max-width: 900px) {
  .lux-faq-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
  .lux-faq-header { position: static; text-align: center; }
  .lux-faq-title { text-align: center; }
  .lux-faq-lead { text-align: center; }
  .lux-faq-header .lux-btn-outline { display: inline-flex; }
  .lux-faq-section { padding: 70px 0; }
}


/* ══════════════════════════════════════════════════════════════
   FOOTER — luxury 4-col
   ══════════════════════════════════════════════════════════════ */
.lux-footer {
  background: #0D1B2A;
}
.lux-footer-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px 60px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 48px;
}
.lux-footer-brand img {
  height: 80px;
  width: auto;
  margin-bottom: 20px;
  display: block;
}
.lux-footer-brand p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 24px;
}
.lux-footer-brand .lux-btn-gold {
  align-self: flex-start;
  width: auto;
  display: inline-flex;
}
.lux-footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #C9A84C;
  margin-bottom: 18px;
}
.lux-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lux-footer-col a, .lux-footer-brand a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.55) !important;
  text-decoration: none !important;
  padding: 5px 0;
  display: block;
  transition: color 0.2s ease;
}
.lux-footer-col a:hover, .lux-footer-brand a:hover { color: #0ABFBC !important; }
.lux-footer-address {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 16px;
}
.lux-footer-lang {
  display: flex;
  gap: 6px;
  margin-top: 20px;
}
.lux-footer-lang a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 26px;
  padding: 0 !important;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}
.lux-footer-lang a.active { background: #C9A84C; color: #0D1B2A !important; border-color: #C9A84C; }
.lux-footer-lang a:hover:not(.active) { border-color: #0ABFBC; color: #0ABFBC !important; }

.lux-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lux-footer-bottom span, .lux-footer-bottom a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.35) !important;
  text-decoration: none !important;
}
.lux-footer-bottom a:hover { color: rgba(255,255,255,0.65) !important; }

@media (max-width: 900px) {
  .lux-footer-top { grid-template-columns: 1fr 1fr; gap: 28px; padding: 60px 24px 40px; }
}
@media (max-width: 600px) {
  .lux-footer-top { grid-template-columns: 1fr; padding: 48px 20px 36px; gap: 28px; }
  .lux-footer-brand { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .lux-footer-bottom { flex-direction: column; text-align: center; padding: 18px 20px; gap: 8px; }
  .lux-footer-lang { justify-content: center; }
}


/* ══════════════════════════════════════════════════════════════
   WHATSAPP FLOAT
   ══════════════════════════════════════════════════════════════ */
.lux-wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 8000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff !important;
  text-decoration: none !important;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lux-wa-float:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(37,211,102,0.5); color: #fff !important; }
@media (max-width: 600px) { .lux-wa-float span { display: none; } .lux-wa-float { padding: 14px; border-radius: 50%; } }


/* ══════════════════════════════════════════════════════════════
   COOKIE BANNER
   ══════════════════════════════════════════════════════════════ */
.lux-cookie {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 7000;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 18px 32px;
}
.lux-cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.lux-cookie-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
  flex: 1;
  min-width: 0;
}
.lux-cookie-text strong { color: #fff; }
.lux-cookie-text a { color: #0ABFBC; text-decoration: underline; margin-left: 4px; }
.lux-cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.lux-cookie-accept {
  padding: 10px 22px;
  border-radius: 999px;
  background: #0ABFBC;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 13px;
  border: none;
  cursor: pointer;
}
.lux-cookie-reject {
  padding: 10px 22px;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
}
@media (max-width: 700px) {
  .lux-cookie { padding: 16px 20px; }
  .lux-cookie-inner { flex-direction: column; align-items: stretch; }
  .lux-cookie-actions { flex-direction: column; }
  .lux-cookie-accept, .lux-cookie-reject { width: 100%; text-align: center; }
}


/* ══════════════════════════════════════════════════════════════
   REDUCED MOTION
   ══════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  [data-aos] { opacity: 1 !important; transform: none !important; }
  .lux-scroll-hint { animation: none; }
}

/* ===== Sezione video =====
   Il video sta in una sezione dedicata e non parte da solo. Con preload="none"
   il file non viene scaricato finché l'ospite non preme play: costo zero sul
   caricamento della pagina. */
.lux-video-section { text-align: center; }

.lux-video-wrap {
  max-width: 980px;
  margin: 28px auto 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(13,27,42,0.22);
  background: #0d1b2a;
  line-height: 0;
}

.lux-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #0d1b2a;
}

.lux-video-actions { margin-top: 28px; }

@media (max-width: 767px) {
  .lux-video-wrap { border-radius: 12px; margin-top: 22px; }
}
