/* ═══════════════════════════════════════════════════════════════
   BELLAVISTA SAN TEODORO — Main Stylesheet
   Design: Maritime Luxury — Navy · Gold · White · Cream
   ═══════════════════════════════════════════════════════════════ */

:root {
  /* Dark palette */
  --navy:        #0B1728;
  --navy-mid:    #0F2040;
  --navy-soft:   #152848;
  --blue-deep:   #053468;
  --blue:        #0B5EA8;
  --azure:       #3A8CC5;
  --azure-light: #7BBFE0;

  /* Gold — warmer, more refined */
  --gold:        #C9A84C;
  --gold-light:  #E2C47A;
  --gold-dark:   #9E7C30;
  --gold-pale:   #F0E4BE;

  /* Light palette — the "bianco" */
  --white:       #FFFFFF;
  --ivory:       #FAFAF6;
  --cream:       #F4EDE1;
  --pearl:       #EDE5D6;

  /* Text */
  --text-dark:   #1B2240;
  --text-mid:    #4E5470;
  --text-light:  rgba(255,255,255,0.92);
  --text-muted:  rgba(255,255,255,0.58);

  /* Black */
  --black:       #080C14;

  /* Shadows */
  --shadow-gold: 0 8px 40px rgba(201,168,76,0.22);
  --shadow-navy: 0 20px 60px rgba(11,23,40,0.35);
  --shadow-soft: 0 4px 30px rgba(0,0,0,0.08);

  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

/* ── Content protection (CSS layer) ───────────────────────── */
body { -webkit-user-select: none; -moz-user-select: none; user-select: none; }
input, textarea, select, [contenteditable] {
    -webkit-user-select: text; -moz-user-select: text; user-select: text;
}
img, video { -webkit-user-drag: none; user-drag: none; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--ivory);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.65;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── Typography (shared) ──────────────────────────────────────── */
h1,h2,h3,h4 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.15;
}
.section-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}
.section-title span { color: var(--gold-dark); }
.section-sub {
  text-align: center;
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 3.5rem;
  font-family: 'Inter', sans-serif;
}
.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0.8rem auto 1.4rem;
  border-radius: 2px;
}

/* Dark-section overrides */
.dark-section .section-title { color: var(--white); }
.dark-section .section-title span { color: var(--gold); }
.dark-section .section-sub { color: var(--text-muted); }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(11,23,40,0.97);
  backdrop-filter: blur(24px);
  padding: 0.8rem 2.5rem;
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-logo-img {
  height: 72px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
  box-shadow: 0 0 18px rgba(201,168,76,0.35);
}
.nav-links {
  display: flex; list-style: none;
  gap: 2rem; align-items: center;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color var(--transition);
  position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

/* Esperienze — link speciale in navbar */
.nav-links a.nav-exp-link {
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 30px;
  padding: 0.28rem 1rem 0.3rem;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.nav-links a.nav-exp-link::after { display: none; }
.nav-links a.nav-exp-link:hover {
  color: var(--gold-light);
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}

/* Mobile */
.mobile-menu a.mobile-exp-link { color: var(--gold); }
.mobile-menu a.mobile-exp-link:hover { color: var(--gold-light); }

.nav-actions {
  display: flex; align-items: center; gap: 1rem;
}

/* Language Switcher */
.lang-switcher { position: relative; }
.lang-btn {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 0.38rem 0.9rem;
  border-radius: 30px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  display: flex; align-items: center; gap: 0.4rem;
  transition: all var(--transition);
}
.lang-btn:hover { background: rgba(201,168,76,0.12); border-color: var(--gold); }
.lang-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius); overflow: hidden;
  min-width: 155px; opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45);
}
.lang-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown a {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.7rem 1rem;
  font-size: 0.85rem; color: var(--text-light);
  transition: background var(--transition), color var(--transition);
}
.lang-dropdown a:hover, .lang-dropdown a.active {
  background: rgba(201,168,76,0.1); color: var(--gold);
}
.lang-flag { font-size: 1.1rem; }

/* Reserve Button */
.btn-reserve-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  padding: 0.5rem 1.5rem;
  border-radius: 30px; border: none;
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: all var(--transition);
  box-shadow: 0 4px 18px rgba(201,168,76,0.28);
  white-space: nowrap; cursor: pointer;
}
.btn-reserve-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(201,168,76,0.5);
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px; cursor: pointer;
}
.hamburger span {
  width: 24px; height: 2px; background: var(--gold);
  border-radius: 2px; transition: all var(--transition); display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11,23,40,0.98);
  backdrop-filter: blur(20px); z-index: 999;
  flex-direction: column; align-items: center;
  justify-content: center; gap: 1.8rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a, .mobile-menu button.mobile-menu-link {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem; color: var(--text-light);
  transition: color var(--transition);
  background: none; border: none; cursor: pointer;
}
.mobile-menu a:hover, .mobile-menu button.mobile-menu-link:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: var(--gold);
  font-size: 2rem; line-height: 1;
}

/* ══════════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════════ */
#hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--navy);
}
.hero-video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,15,30,0.52) 0%, rgba(5,15,30,0.3) 50%, rgba(5,15,30,0.72) 100%);
  z-index: 1;
}
#hero-canvas {
  position: absolute; inset: 0; z-index: 2; opacity: 0.35;
}
.hero-content {
  position: relative; z-index: 3;
  text-align: center; padding: 0 2rem; max-width: 900px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 0.4rem 1.3rem; border-radius: 30px;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 1.8rem;
  animation: fadeInDown 1s ease 0.3s both;
}
.hero-title {
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 700; line-height: 1;
  margin-bottom: 1.2rem;
  background: linear-gradient(150deg, var(--white) 20%, var(--gold-light) 60%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: fadeInUp 1s ease 0.5s both;
}
.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--azure-light); opacity: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 0.8rem;
  animation: fadeInUp 1s ease 0.7s both;
}
.hero-separator {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin: 1.8rem auto; color: var(--gold);
  animation: fadeInUp 1s ease 0.85s both;
}
.hero-separator::before, .hero-separator::after {
  content: ''; width: 70px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-separator::after { background: linear-gradient(90deg, var(--gold), transparent); }
.hero-ctas {
  display: flex; gap: 1.2rem; justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 1s both;
}

/* ── Buttons (shared) ─────────────────────────────────────────── */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black); padding: 0.95rem 2.4rem;
  border-radius: 50px; border: none;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.04em;
  transition: all var(--transition);
  box-shadow: 0 6px 28px rgba(201,168,76,0.35);
  display: inline-flex; align-items: center; gap: 0.5rem;
  cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 38px rgba(201,168,76,0.55); }

.btn-outline {
  background: transparent; color: var(--white);
  padding: 0.95rem 2.4rem; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.04em;
  transition: all var(--transition);
  border: 1.5px solid rgba(255,255,255,0.45);
  display: inline-flex; align-items: center; gap: 0.5rem;
  cursor: pointer;
}
.btn-outline:hover { background: rgba(255,255,255,0.09); border-color: var(--white); transform: translateY(-3px); }

.btn-outline-navy {
  background: transparent; color: var(--navy);
  padding: 0.85rem 2.2rem; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.04em;
  border: 1.5px solid rgba(11,23,40,0.35);
  display: inline-flex; align-items: center; gap: 0.5rem;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline-navy:hover {
  background: var(--navy); color: var(--white);
  border-color: var(--navy);
}

.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--text-muted); font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  animation: fadeInUp 1s ease 1.4s both; z-index: 3;
}
.scroll-hint .scroll-arrow {
  width: 22px; height: 22px;
  border-right: 1.5px solid var(--gold); border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg); animation: bounce 1.6s ease infinite;
}
.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; z-index: 2; line-height: 0;
}
.hero-wave svg { display: block; width: 100%; }

/* ══════════════════════════════════════════════════════════════
   SECTIONS GENERAL
══════════════════════════════════════════════════════════════ */
section { padding: 6rem 0; position: relative; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }

/* ══════════════════════════════════════════════════════════════
   ABOUT — WHITE SECTION
══════════════════════════════════════════════════════════════ */
#about { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
  width: 100%; padding: 0 10px; box-sizing: border-box;
}
.about-image-wrapper {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 4/3;
  box-shadow: 0 24px 60px rgba(11,23,40,0.18);
}
.about-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.about-image-wrapper:hover img { transform: scale(1.04); }
.about-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,23,40,0.35) 100%);
}
.about-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.08); border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold-dark); padding: 0.35rem 1rem; border-radius: 20px;
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.4rem; font-family: 'Inter', sans-serif;
}
.about-text h2 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin-bottom: 1.5rem; color: var(--text-dark);
}
.about-text h2 span { color: var(--gold-dark); }
.about-para {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-mid);
  font-size: 1.02rem; line-height: 1.9;
  margin-top: 1.6rem;
  opacity: 0;
  transform: translateX(-22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.about-para.visible {
  opacity: 1;
  transform: translateX(0);
}
.about-para::before {
  content: '';
  position: absolute; left: 0; top: 0.4em;
  width: 2px; height: 0;
  background: linear-gradient(180deg, var(--gold), rgba(201,168,76,0.12));
  border-radius: 2px;
  transition: height 0.45s cubic-bezier(0.4,0,0.2,1) 0.2s;
}
.about-para.visible::before { height: calc(100% - 0.4em); }
.about-para:first-of-type {
  font-size: 1.06rem; font-weight: 500;
  color: var(--text-dark);
}
.about-features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 0 10px;
  margin-top: 3rem;
  width: 100%;
  box-sizing: border-box;
}
.about-feature-card {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 6px 28px rgba(11,23,40,0.1);
  border: 1px solid rgba(201,168,76,0.18);
  background: var(--cream);
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 48px rgba(11,23,40,0.15);
}
.about-feature-header {
  display: flex; align-items: center; gap: 0.75rem;
  background: var(--cream); padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.about-feature-icon {
  width: 48px; height: 48px;
  border-radius: 50%; overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(201,168,76,0.4);
  box-shadow: 0 2px 8px rgba(11,23,40,0.15);
}
.about-feature-icon img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.about-feature-header span {
  font-size: 1rem; font-weight: 700; color: var(--text-dark);
  letter-spacing: 0.02em;
}
.about-feature-img {
  aspect-ratio: 3/4; overflow: hidden;
}
.about-feature-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.about-feature-card:hover .about-feature-img img { transform: scale(1.06); }

/* ══════════════════════════════════════════════════════════════
   LOCATION
══════════════════════════════════════════════════════════════ */
#location {
  position: relative;
  background-image: url('../img/Vista/image00035.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
#location::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(8,18,36,0.82) 0%, rgba(11,23,40,0.72) 55%, rgba(8,18,36,0.88) 100%);
  z-index: 0;
}
#location > * { position: relative; z-index: 1; }

.location-grid {
  display: grid; grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem; align-items: center;
  width: 100%; padding: 0 10px;
  box-sizing: border-box; margin-top: 2.5rem;
}

/* ── Testo ── */
.location-text { display: flex; flex-direction: column; }

.location-para {
  position: relative; padding-left: 1.5rem;
  color: rgba(255,255,255,0.78);
  font-size: 1rem; line-height: 1.8;
  margin-top: 1rem;
  opacity: 0; transform: translateX(-22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.location-para.visible { opacity: 1; transform: translateX(0); }
.location-para::before {
  content: '';
  position: absolute; left: 0; top: 0.4em;
  width: 2px; height: 0;
  background: linear-gradient(180deg, var(--gold), rgba(201,168,76,0.1));
  border-radius: 2px;
  transition: height 0.45s cubic-bezier(0.4,0,0.2,1) 0.2s;
}
.location-para.visible::before { height: calc(100% - 0.4em); }
.location-para:first-of-type {
  color: rgba(255,255,255,0.96); font-weight: 500; margin-top: 0;
}
.location-para--last {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.22rem; font-style: italic; font-weight: 600;
  color: var(--gold-light) !important;
  letter-spacing: 0.02em;
}
.location-para--last::before {
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
}

/* ── Isole ── */
.location-islands {
  display: flex; flex-wrap: wrap; gap: 0.65rem; margin-top: 2.2rem;
}
.island-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  padding: 0.38rem 1rem; border-radius: 30px;
  font-size: 0.82rem; letter-spacing: 0.08em;
  font-family: 'Inter', sans-serif;
  opacity: 0; transform: scale(0.82) translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease, background 0.3s ease;
}
.island-badge.visible { opacity: 1; transform: scale(1) translateY(0); }
.island-badge:hover { background: rgba(201,168,76,0.18); }

/* ── CTA directions ── */
.btn-directions {
  display: inline-flex; align-items: center; gap: 0.55rem;
  align-self: flex-start; margin-top: 2rem;
  background: var(--gold);
  border: none;
  color: var(--navy);
  padding: 0.85rem 2rem; border-radius: 50px;
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(201,168,76,0.35);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.5s ease 0.9s, transform 0.5s ease 0.9s,
              background 0.25s ease, box-shadow 0.25s ease;
}
.btn-directions.visible { opacity: 1; transform: translateY(0); }
.btn-directions:hover {
  background: var(--gold-dark);
  box-shadow: 0 10px 32px rgba(201,168,76,0.5);
  transform: translateY(-2px) !important;
}

/* ── Mappa ── */
.location-map-wrapper {
  display: flex; flex-direction: column; gap: 1.1rem;
}
.location-map-frame {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.22);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  aspect-ratio: 4/3;
}
.location-map-frame iframe {
  width: 100%; height: 100%; border: none; display: block;
}
.location-coords {
  display: flex; align-items: center; gap: 0.7rem;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.95rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(201,168,76,0.5);
}
.coord-dot { color: rgba(201,168,76,0.25); font-size: 0.65rem; }

/* ── Due card affiancate in fondo alla Location ── */
.location-contacts {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.2rem; padding: 2.5rem 10px 0;
  width: 100%; box-sizing: border-box;
}

/* Card condivisa */
.loc-card {
  background: var(--cream);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.loc-card:hover {
  background: var(--pearl);
  border-color: rgba(201,168,76,0.45);
}

/* Titolo card */
.loc-card-title {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold-dark);
  margin-bottom: 1.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

/* Righe info nella card contatti */
.loc-info-row {
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(11,23,40,0.06);
}
.loc-info-row:last-child { border-bottom: none; padding-bottom: 0; }
.loc-info-icon { font-size: 1.1rem; flex-shrink: 0; line-height: 1.5; }
.loc-info-body { flex: 1; min-width: 0; }
.loc-info-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.18rem;
}
.loc-info-value { font-size: 0.9rem; color: var(--text-dark); }
.loc-info-value a { color: var(--blue); text-decoration: none; }
.loc-info-value a:hover { color: var(--gold-dark); }

/* Righe orari nella card orari */
.loc-hours-list { display: flex; flex-direction: column; gap: 0; }
.loc-hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.42rem 0;
  border-bottom: 1px solid rgba(11,23,40,0.06);
  font-size: 0.88rem; color: var(--text-mid);
}
.loc-hours-row:last-child { border-bottom: none; }
.loc-hours-row .day-name { color: var(--text-dark); font-weight: 500; }
.loc-hours-row .time-slot { color: var(--text-mid); font-size: 0.83rem; }
.loc-hours-row.today .day-name,
.loc-hours-row.today .time-slot {
  color: var(--gold-dark); font-weight: 600;
}

/* ── Responsive location ── */
@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; gap: 2.5rem; padding: 0 8px; margin-top: 2.5rem; }
  .location-map-frame { aspect-ratio: 16/9; }
}
@media (max-width: 620px) {
  .location-contacts { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   PIZZAIOLO — team card centrata
══════════════════════════════════════════════════════════════ */
/* Sezione staff unificata (pizzaiolo + team affiancati) */
.section-staff { background: var(--cream); padding: 6rem 0; }

.staff-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.staff-col { padding: 0 3rem; }
.staff-col:first-child { padding-left: 0; }
.staff-col:last-child  { padding-right: 0; }

.staff-vdivider {
  width: 1px;
  align-self: stretch;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(201,168,76,0.4) 15%,
    rgba(201,168,76,0.4) 85%,
    transparent 100%
  );
}

.pizzaiolo-label {
  text-align: center;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-dark); font-family: 'Inter', sans-serif;
  margin-bottom: 0.8rem;
}

/* Card centrata: foto + nome + sep */
.pizzaiolo-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 1.4rem; margin-top: 3rem;
}

/* Foto circolare con anello gold a strati */
.pizzaiolo-circle-wrap {
  width: 220px; height: 220px; border-radius: 50%;
  overflow: hidden; position: relative; flex-shrink: 0;
  box-shadow:
    0 0 0 5px var(--cream),
    0 0 0 7px var(--gold),
    0 0 0 13px rgba(201,168,76,0.18),
    0 24px 60px rgba(11,23,40,0.2);
  transition: box-shadow var(--transition);
}
.pizzaiolo-circle-wrap:hover {
  box-shadow:
    0 0 0 5px var(--cream),
    0 0 0 7px var(--gold-light),
    0 0 0 15px rgba(201,168,76,0.3),
    0 32px 72px rgba(11,23,40,0.28);
}
.pizzaiolo-circle-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transform: scale(1.3);
  transition: transform 0.8s ease;
}
.pizzaiolo-circle-wrap:hover img { transform: scale(1.38); }
.pizzaiolo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(145deg, var(--navy-soft), var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-size: 5.5rem;
}

/* Nome e ruolo */
.pizzaiolo-identity {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.45rem; text-align: center;
}
.pizzaiolo-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; color: var(--text-dark);
  letter-spacing: 0.02em; line-height: 1;
}
.pizzaiolo-role {
  font-size: 0.74rem; font-weight: 600;
  color: var(--gold-dark); letter-spacing: 0.18em;
  text-transform: uppercase; font-family: 'Inter', sans-serif;
}

/* Separatore ornamentale */
.pizzaiolo-sep {
  display: flex; align-items: center; gap: 1rem;
  width: 100%; max-width: 280px;
}
.pizzaiolo-sep span {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.6));
}
.pizzaiolo-sep span:last-child {
  background: linear-gradient(90deg, rgba(201,168,76,0.6), transparent);
}
.pizzaiolo-sep i {
  color: var(--gold); font-size: 0.62rem;
  font-style: normal; flex-shrink: 0;
}

/* Testo bio */
.pizzaiolo-text {
  width: 100%;
  margin: 2rem 0 0; padding: 0 10px;
}
.pizzaiolo-para {
  position: relative; padding-left: 1.5rem;
  color: var(--text-mid);
  font-size: 1.02rem; line-height: 1.9;
  margin-top: 1.5rem;
  opacity: 0; transform: translateX(-22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.pizzaiolo-para.visible { opacity: 1; transform: translateX(0); }
.pizzaiolo-para::before {
  content: '';
  position: absolute; left: 0; top: 0.4em;
  width: 2px; height: 0;
  background: linear-gradient(180deg, var(--gold), rgba(201,168,76,0.12));
  border-radius: 2px;
  transition: height 0.45s cubic-bezier(0.4,0,0.2,1) 0.2s;
}
.pizzaiolo-para.visible::before { height: calc(100% - 0.4em); }
.pizzaiolo-para:first-of-type {
  font-size: 1.06rem; font-weight: 500;
  color: var(--text-dark); margin-top: 0;
}
.pizzaiolo-para--last {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.22rem; font-style: italic; font-weight: 600;
  color: var(--gold-dark) !important; letter-spacing: 0.02em;
}
.pizzaiolo-para--last::before {
  background: linear-gradient(180deg, var(--gold-dark), var(--gold));
}

@media (max-width: 480px) {
  .pizzaiolo-circle-wrap { width: 180px; height: 180px; }
}

/* ══════════════════════════════════════════════════════════════
   TICKER DIVIDER
══════════════════════════════════════════════════════════════ */
.ticker-divider {
  background: var(--navy);
  overflow: hidden;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(201,168,76,0.25);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  position: relative;
}
.ticker-divider::before,
.ticker-divider::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.ticker-divider::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy), transparent);
}
.ticker-divider::after {
  right: 0;
  background: linear-gradient(-90deg, var(--navy), transparent);
}
.ticker-inner {
  display: flex;
  width: max-content;
  animation: tickerScroll 32s linear infinite;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-set {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-right: 2rem;
  white-space: nowrap;
}
.ticker-item {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: rgba(201,168,76,0.85);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.ticker-inner:hover .ticker-item { color: var(--gold-light); }
.ticker-sep {
  font-size: 0.65rem;
  color: rgba(201,168,76,0.4);
  flex-shrink: 0;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════
   PIZZA TICKER DIVIDER
══════════════════════════════════════════════════════════════ */
.pizza-ticker {
  background: var(--cream);
  overflow: hidden;
  padding: 2rem 0;
  border-top: 1px solid rgba(201,168,76,0.3);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  position: relative;
}
.pizza-ticker::before,
.pizza-ticker::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.pizza-ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream), transparent);
}
.pizza-ticker::after {
  right: 0;
  background: linear-gradient(-90deg, var(--cream), transparent);
}
.pizza-ticker-inner {
  display: flex;
  width: max-content;
  align-items: center;
  animation: pizzaScroll 28s linear infinite;
}
.pizza-ticker-inner:hover { animation-play-state: paused; }
.pizza-ticker-set {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
}
.pizza-ticker-item {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-shrink: 0;
}
.pizza-ticker-img {
  width: 90px; height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(201,168,76,0.35);
  box-shadow: 0 4px 16px rgba(11,23,40,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  flex-shrink: 0;
}
.pizza-ticker-set img:nth-of-type(odd)  { transform: rotate(-5deg); }
.pizza-ticker-set img:nth-of-type(even) { transform: rotate(5deg); }
.pizza-ticker-inner:hover .pizza-ticker-img {
  transform: rotate(0deg) scale(1.1) !important;
  box-shadow: 0 8px 28px rgba(201,168,76,0.35);
}
.pizza-ticker-sep {
  font-size: 1.3rem;
  color: rgba(201,168,76,0.45);
  flex-shrink: 0;
  line-height: 1;
}
@keyframes pizzaScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════
   WAVE DIVIDERS  (sezione → sezione)
══════════════════════════════════════════════════════════════ */
.wave-div {
  display: block;
  line-height: 0;
  overflow: hidden;
}
.wave-div svg {
  display: block;
  width: 100%;
  height: 80px;
}
/* Pizzaiolo (cream) → Gallery (black) */
.wave-div--pizz-gall { background: #080C14; }
/* ══════════════════════════════════════════════════════════════
   LUXURY DIVIDER  (Gallery → Menu)
══════════════════════════════════════════════════════════════ */
.luxury-div {
  background: linear-gradient(to bottom, var(--black) 0%, var(--navy-mid) 55%, var(--ivory) 100%);
  padding: 3.5rem 2rem;
  position: relative;
  overflow: hidden;
}

.luxury-div-inner {
  display: flex;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  gap: 2rem;
  position: relative;
}

/* ── Linea gold ─────────────────── */
.lux-line-wrap {
  flex: 1;
  position: relative;
}
.lux-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.7) 30%, rgba(201,168,76,0.7) 70%, transparent);
  position: relative;
  overflow: hidden;
}

/* ── Shimmer che scorre ─────────── */
@keyframes lux-shimmer {
  0%   { left: -60%; }
  100% { left: 130%; }
}
.lux-shimmer {
  position: absolute;
  top: -1px;
  left: -60%;
  width: 45%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), rgba(226,196,122,1), rgba(255,255,255,0.6), transparent);
  animation: lux-shimmer 3.2s cubic-bezier(0.4,0,0.6,1) infinite;
  border-radius: 2px;
}
.lux-shimmer--rev {
  animation-delay: 1.6s;
}

/* ── Scintille fluttuanti ───────── */
@keyframes lux-spark {
  0%   { transform: translateY(0)    scale(1);   opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateY(-22px) scale(0.3); opacity: 0; }
}
.lux-sparks {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  pointer-events: none;
}
.lux-spark {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold-light);
  top: -1px;
  animation: lux-spark 2.8s ease-out infinite;
}
.lux-spark:nth-child(1) { left: 10%; animation-delay: 0.0s; }
.lux-spark:nth-child(2) { left: 28%; animation-delay: 0.7s; }
.lux-spark:nth-child(3) { left: 50%; animation-delay: 1.3s; }
.lux-spark:nth-child(4) { left: 72%; animation-delay: 0.4s; }
.lux-spark:nth-child(5) { left: 90%; animation-delay: 1.9s; }

/* ── Ornamento centrale ─────────── */
.lux-center {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}
.lux-sep {
  color: rgba(201,168,76,0.45);
  font-size: 1.1rem;
  line-height: 1;
}

@keyframes lux-pulse {
  0%, 100% {
    text-shadow: 0 0 5px rgba(201,168,76,0.35), 0 0 14px rgba(201,168,76,0.15);
    opacity: 0.75;
  }
  50% {
    text-shadow: 0 0 10px rgba(201,168,76,1), 0 0 28px rgba(201,168,76,0.55), 0 0 55px rgba(201,168,76,0.2);
    opacity: 1;
  }
}
.lux-gem {
  color: var(--gold);
  font-size: 0.85rem;
  animation: lux-pulse 3s ease-in-out infinite;
}
.lux-gem--main {
  color: var(--gold-light);
  font-size: 1.5rem;
  animation: lux-pulse 2.4s ease-in-out infinite 0.4s;
}

/* ══════════════════════════════════════════════════════════════
   ORNAMENT DIVIDER  (Menu → Prenotazioni)
══════════════════════════════════════════════════════════════ */
.ornament-div--menu-res {
  background: linear-gradient(to bottom, var(--ivory), var(--cream));
  padding: 2.6rem 2rem;
  display: flex;
  justify-content: center;
}
.orn-inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 820px;
  gap: 1.8rem;
}
.orn-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.orn-motif {
  color: var(--gold-dark);
  font-size: 1.05rem;
  letter-spacing: 0.28em;
  white-space: nowrap;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════
   STELLE DIVIDER  (Prenotazioni → Recensioni)
══════════════════════════════════════════════════════════════ */
.stars-div {
  background: var(--white);
  padding: 1rem 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.stars-div-track {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.sd-star {
  font-size: 1.25rem;
  color: var(--gold);
  animation: sdPulse 2.6s ease-in-out infinite;
  animation-delay: calc(var(--sd-i) * 0.28s);
}
.sd-dot {
  font-size: 0.85rem;
  color: rgba(201,168,76,0.3);
}
@keyframes sdPulse {
  0%, 100% { opacity: 0.55; transform: scale(0.88); }
  50%       { opacity: 1;    transform: scale(1.2); }
}

/* ══════════════════════════════════════════════════════════════
   ELEGANT DIVIDER  (Recensioni → Esperienze)
══════════════════════════════════════════════════════════════ */
.eleg-div {
  background: linear-gradient(
    to bottom,
    var(--white)   0%,
    var(--white)  28%,
    var(--navy)   72%,
    var(--black) 100%
  );
  padding: 0;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eleg-inner {
  display: flex;
  align-items: center;
  width: min(820px, 88vw);
  gap: 1.4rem;
}

/* Linea sottile */
.eleg-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,168,76,0.25) 15%,
    rgba(201,168,76,0.75) 50%,
    rgba(201,168,76,0.25) 85%,
    transparent 100%
  );
  position: relative;
  overflow: hidden;
}

/* Shimmer che scorre */
@keyframes elegShimmer {
  0%   { left: -60%; }
  100% { left: 130%; }
}
.eleg-shimmer {
  position: absolute; top: -1px;
  left: -60%; width: 40%; height: 3px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,0.5),
    rgba(226,196,122,1),
    rgba(255,255,255,0.5),
    transparent
  );
  border-radius: 2px;
  animation: elegShimmer 3.5s ease-in-out infinite;
}
.eleg-shimmer--r { animation-delay: 1.75s; }

/* Ornamento centrale */
.eleg-gem-wrap {
  display: flex; align-items: center; gap: 0.55rem;
  flex-shrink: 0;
}

@keyframes elegDotPulse {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50%       { opacity: 1;   transform: scale(1.2); }
}
@keyframes elegStarGlow {
  0%, 100% {
    text-shadow: 0 0 4px rgba(201,168,76,0.4);
    transform: rotate(0deg) scale(1);
  }
  50% {
    text-shadow: 0 0 14px rgba(201,168,76,1), 0 0 32px rgba(201,168,76,0.4);
    transform: rotate(180deg) scale(1.15);
  }
}

.eleg-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  animation: elegDotPulse 2.4s ease-in-out infinite;
}
.eleg-dot:last-child { animation-delay: 1.2s; }

.eleg-star {
  color: var(--gold-light);
  font-size: 1.1rem;
  display: inline-block;
  animation: elegStarGlow 4s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════════════
   ESPERIENZE BANNER
══════════════════════════════════════════════════════════════ */
.esperienze-banner {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.exp-banner-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 9s ease;
}
.esperienze-banner:hover .exp-banner-bg { transform: scale(1.12); }
.exp-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8,12,20,0.76) 0%,
    rgba(11,23,40,0.55) 55%,
    rgba(11,58,108,0.42) 100%
  );
}
.exp-banner-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 5rem 2rem;
  max-width: 760px;
}
.exp-banner-badge {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.exp-banner-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.exp-banner-title span { color: var(--gold-light); }
.exp-banner-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.86);
  line-height: 1.72;
  margin: 0 auto 2.8rem;
  max-width: 580px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.3);
}
.exp-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.8rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 26px rgba(201,168,76,0.48);
}
.exp-banner-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 38px rgba(201,168,76,0.62);
  filter: brightness(1.08);
  color: var(--navy);
}
@media (max-width: 640px) {
  .esperienze-banner { min-height: 420px; }
  .exp-banner-title  { font-size: 2.2rem; }
  .exp-banner-sub    { font-size: 0.97rem; }
}

/* ══════════════════════════════════════════════════════════════
   TEAM (colonna destra del layout staff affiancato)
══════════════════════════════════════════════════════════════ */
.team-badge {
  text-align: center;
  font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 600; margin-bottom: 0.6rem;
}

.team-intro {
  margin: 0 0 2rem;
  text-align: left;
}
.team-intro p {
  color: var(--text-mid); font-size: 0.96rem; line-height: 1.9;
  margin-bottom: 0.9rem;
}
.team-intro-lead {
  color: var(--text-dark) !important;
  font-size: 1.05rem !important; font-weight: 500;
  font-style: italic;
}

.team-photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  aspect-ratio: 4 / 3;
  cursor: pointer;
}
.team-photo-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-navy);
}

.team-photo-wrap {
  position: relative; width: 100%; height: 100%;
}
.team-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  transition: transform 0.9s ease;
}
.team-photo-card:hover .team-photo-wrap img { transform: scale(1.08); }

.team-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,23,40,0.38) 0%, transparent 55%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}
.team-photo-card:hover .team-photo-overlay { opacity: 1; }

/* Responsive: stack verticale sotto 900px */
@media (max-width: 900px) {
  .section-staff { padding: 4rem 0; }
  .staff-split {
    grid-template-columns: 1fr;
  }
  .staff-col { padding: 0; }
  .staff-vdivider {
    width: 100%; height: 1px;
    background: linear-gradient(
      to right,
      transparent 0%,
      rgba(201,168,76,0.4) 15%,
      rgba(201,168,76,0.4) 85%,
      transparent 100%
    );
    margin: 3rem 0;
  }
  .team-intro { text-align: center; }
}

/* ══════════════════════════════════════════════════════════════
   GALLERY — DARK
══════════════════════════════════════════════════════════════ */
#gallery {
  background: var(--black);
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem;
}
.gallery-item {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4/3;
  cursor: pointer; background: var(--navy-mid);
}
.gallery-item img, .gallery-item video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.07); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.65) 100%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-zoom-icon {
  color: var(--white); font-size: 1.6rem;
  border: 1.5px solid rgba(255,255,255,0.75); border-radius: 50%;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  transform: scale(0.65); transition: transform var(--transition);
}
.gallery-item:hover .gallery-zoom-icon { transform: scale(1); }
.gallery-item--hidden { display: none; }

.gallery-load-more-wrap {
  text-align: center; padding: 2.5rem 0 0.5rem;
}
.btn-gallery-more {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(201,168,76,0.12);
  border: 1.5px solid rgba(201,168,76,0.4);
  color: rgba(201,168,76,0.9);
  padding: 0.85rem 2.2rem; border-radius: 50px;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; cursor: pointer; font-family: inherit;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.btn-gallery-more:hover {
  background: rgba(201,168,76,0.22);
  border-color: rgba(201,168,76,0.7);
  color: #E2C47A; transform: translateY(-2px);
}

.gallery-empty {
  text-align: center; padding: 4.5rem 1rem; color: var(--text-muted);
}
.gallery-empty .gallery-empty-icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.35; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.96); z-index: 9000;
  display: none; align-items: center;
  justify-content: center; padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img, .lightbox-inner video {
  max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius);
}
.lightbox-close {
  position: absolute; top: -42px; right: 0;
  background: none; border: none; color: var(--white); font-size: 2rem; line-height: 1;
}
.lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08); border: none; color: var(--white);
  font-size: 2rem; padding: 1rem 1.2rem; cursor: pointer;
  border-radius: var(--radius); transition: background var(--transition);
}
.lightbox-nav:hover { background: rgba(201,168,76,0.25); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ══════════════════════════════════════════════════════════════
   MENU — IVORY
══════════════════════════════════════════════════════════════ */
#menu-section {
  background: var(--ivory);
  padding: 0 0 4rem;
}

.menu-hero-img {
  width: 100%;
  line-height: 0;
}
.menu-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

.menu-cta-area {
  text-align: center;
  padding: 3rem 1.5rem 0;
}

.btn-menu-browse {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--black);
  padding: 1.1rem 3.5rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 1rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: all var(--transition);
  box-shadow: 0 6px 28px rgba(201,168,76,0.35);
  border: none; cursor: pointer;
}
.btn-menu-browse:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(201,168,76,0.5);
}
.menu-coming-soon {
  color: var(--text-mid); font-size: 0.95rem; font-style: italic;
}

/* ══════════════════════════════════════════════════════════════
   FADE DIVIDER: Menu (ivory) → Reservations (cream)
══════════════════════════════════════════════════════════════ */
.fade-div-menu-res {
  height: 60px;
  background: linear-gradient(to bottom, var(--ivory), var(--cream));
}

/* ══════════════════════════════════════════════════════════════
   RESERVATIONS — CREAM
══════════════════════════════════════════════════════════════ */
#reservations {
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 2rem;
}

/* Calore ambientale: radiale gold molto soft */
.res-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 0%,   rgba(201,168,76,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 100%, rgba(201,168,76,0.06) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 100%, rgba(201,168,76,0.06) 0%, transparent 45%);
}

.res-badge {
  font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 600; margin-bottom: 0.8rem;
  display: block;
}
.res-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: var(--text-dark); font-weight: 700;
  line-height: 1.1; margin-bottom: 1.2rem;
}
.res-desc {
  color: var(--text-mid); font-size: 1rem;
  line-height: 1.9; max-width: 560px;
  margin: 0 auto 3rem;
}

/* Pills contatto */
.res-contacts {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 1rem;
  margin-bottom: 3.5rem;
}
.res-pill {
  display: inline-flex; align-items: center; gap: 0.65rem;
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.32);
  border-radius: 50px;
  padding: 0.8rem 1.8rem;
  color: var(--text-mid); font-size: 0.9rem;
  transition: all var(--transition);
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(11,23,40,0.05);
}
.res-pill:hover {
  background: var(--cream);
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 22px rgba(201,168,76,0.18);
}
.res-pill-ico { font-size: 1rem; flex-shrink: 0; }

/* CTA block */
.res-cta {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.2rem;
}
.res-cta-note {
  color: var(--text-mid); font-size: 0.85rem; font-style: italic;
  opacity: 0.7;
}

/* Bottone principale */
.btn-reserve-big {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: var(--black); padding: 1.15rem 3.2rem;
  border-radius: 50px; border: none;
  font-weight: 700; font-size: 1.05rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: all var(--transition);
  box-shadow: 0 6px 28px rgba(201,168,76,0.35);
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.btn-reserve-big:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(201,168,76,0.52);
}

@media (max-width: 640px) {
  .res-contacts { flex-direction: column; align-items: center; }
  .res-pill { width: 100%; max-width: 320px; justify-content: center; }
}

/* ══════════════════════════════════════════════════════════════
   REVIEWS — WHITE
══════════════════════════════════════════════════════════════ */
#reviews { background: var(--white); padding-top: 2rem; }
.reviews-carousel { overflow: hidden; margin-bottom: 2.5rem; }
.reviews-track {
  display: flex; gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.review-card {
  flex: 0 0 calc(33.333% - 1rem); min-width: 280px;
  background: var(--ivory);
  border: 1px solid rgba(201,168,76,0.14);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  display: flex; flex-direction: column;
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.review-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.review-comment-wrap { margin-bottom: 1.5rem; }
.review-comment {
  color: var(--text-mid); font-size: 0.95rem; line-height: 1.8;
  margin-bottom: 0.5rem; font-style: italic;
}
.btn-review-more {
  background: none; border: none; padding: 0;
  color: var(--gold-dark); font-size: 0.82rem; font-weight: 600;
  cursor: pointer; text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.2s;
}
.btn-review-more:hover { color: var(--gold); }

/* Popup testo recensione completa */
.review-text-popup {
  display: none; position: fixed; inset: 0; z-index: 9500;
  background: rgba(5,8,16,0.88); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 1.5rem;
}
.review-text-popup.open { display: flex; }
.review-text-box {
  background: var(--ivory); border-radius: 18px;
  width: min(600px, 96vw); max-height: 82vh; overflow-y: auto;
  padding: 2rem 2.2rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.review-text-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; margin-bottom: 1rem;
}
.review-text-author {
  font-size: 1rem; font-weight: 700; color: var(--text-dark);
}
.review-text-close {
  flex-shrink: 0; background: rgba(11,23,40,0.08);
  border: 1px solid rgba(11,23,40,0.12); border-radius: 50%;
  width: 34px; height: 34px; font-size: 0.9rem; cursor: pointer;
  color: var(--text-dark); display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.review-text-close:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.review-text-full {
  color: var(--text-mid); font-size: 0.98rem; line-height: 1.9;
  font-style: italic; margin: 0 0 1rem;
}
.review-text-date { font-size: 0.78rem; color: var(--text-mid); text-align: right; }
.review-author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.review-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
  color: var(--white); flex-shrink: 0;
}
.review-name { font-weight: 600; color: var(--text-dark); font-size: 0.95rem; }
.review-date { font-size: 0.78rem; color: var(--text-mid); }

/* Foto clienti nella review card */
.review-photo-strip {
  position: relative; width: 100%; height: 130px;
  border-radius: 8px; overflow: hidden;
  margin-bottom: 1.2rem; cursor: pointer;
  flex-shrink: 0;
}
.review-photo-strip img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.review-photo-strip:hover img { transform: scale(1.06); }
.review-photo-more {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(11,23,40,0.75); color: #fff;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 3px 10px; border-radius: 20px;
  backdrop-filter: blur(6px);
  pointer-events: none;
}
.review-photo-strip-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: rgba(11,23,40,0); transition: background 0.3s ease;
  display: flex; align-items: center; justify-content: center;
}
.review-photo-strip:hover .review-photo-strip-overlay {
  background: rgba(11,23,40,0.25);
}
.review-photo-strip-icon {
  color: rgba(255,255,255,0); font-size: 1.5rem;
  transform: scale(0.7);
  transition: color 0.3s ease, transform 0.3s ease;
}
.review-photo-strip:hover .review-photo-strip-icon {
  color: rgba(255,255,255,0.9); transform: scale(1);
}
.review-photo-more { z-index: 2; }

/* Popup foto recensioni */
.review-photos-popup {
  display: none; position: fixed; inset: 0; z-index: 9500;
  background: rgba(5,8,16,0.88); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 1.5rem;
}
.review-photos-popup.open { display: flex; }
.review-photos-box {
  background: var(--navy-mid, #111c2e); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px; padding: 1.5rem;
  max-width: 680px; width: 100%; max-height: 85vh;
  overflow-y: auto; position: relative;
}
.review-photos-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.review-photos-header span {
  font-size: 0.82rem; color: rgba(201,168,76,0.8);
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
}
.review-photos-close {
  background: none; border: none; color: rgba(255,255,255,0.5);
  font-size: 1.2rem; cursor: pointer; padding: 0.2rem;
  transition: color 0.2s ease; line-height: 1;
}
.review-photos-close:hover { color: #fff; }
.review-photos-grid {
  display: grid; gap: 0.6rem;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.review-photos-grid img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: 8px; cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(201,168,76,0.15);
}
.review-photos-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.reviews-controls {
  display: flex; justify-content: center; gap: 0.8rem; margin-top: 1rem;
}
.reviews-dot {
  width: 7px; height: 7px; background: var(--pearl);
  border-radius: 50%; cursor: pointer;
  transition: all var(--transition); border: none;
}
.reviews-dot.active { background: var(--gold); width: 22px; border-radius: 4px; }

/* Review CTA */
.review-cta-box {
  max-width: 600px; margin: 4rem auto 0;
  background: var(--cream);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem; text-align: center;
  box-shadow: var(--shadow-soft);
}
.review-cta-box h3 {
  font-size: 1.8rem; color: var(--text-dark); margin-bottom: 0.8rem;
}
.review-cta-box p {
  color: var(--text-mid); font-size: 0.98rem;
  line-height: 1.75; margin-bottom: 2rem;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT — DARK
══════════════════════════════════════════════════════════════ */
#contact { background: var(--navy); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 1rem; }
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 1.2rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  transition: border-color var(--transition), background var(--transition);
}
.contact-card:hover { border-color: rgba(201,168,76,0.3); background: rgba(201,168,76,0.04); }
.contact-card-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, rgba(201,168,76,0.18), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.28); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.contact-card-label {
  font-size: 0.72rem; font-weight: 600; color: var(--gold);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.2rem;
}
.contact-card-value { font-size: 0.92rem; color: var(--text-light); }
.contact-card-value a { color: var(--azure-light); transition: color var(--transition); }
.contact-card-value a:hover { color: var(--gold); }
.map-wrapper {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(201,168,76,0.12);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.map-wrapper iframe { display: block; width: 100%; height: 420px; border: none; filter: grayscale(30%) brightness(0.85); }

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
#footer { background: #060A14; border-top: 1px solid rgba(201,168,76,0.1); }
.footer-top { padding: 4.5rem 0 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.05); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem; font-weight: 700; color: var(--gold); margin-bottom: 1rem;
}
.footer-logo-img {
  width: 42px; height: 42px;
  object-fit: contain;
}
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.2rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: all var(--transition);
}
.social-btn:hover { background: rgba(201,168,76,0.12); border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color var(--transition);
}
.footer-phone:hover { color: var(--gold); }
.footer-col h4 {
  font-size: 0.78rem; font-weight: 700; color: var(--gold);
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col ul a { font-size: 0.88rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--gold); }

/* Hours Accordion */
.hours-today { font-size: 0.88rem; color: var(--text-light); margin-bottom: 0.5rem; }
.hours-today strong { color: var(--gold); }
.hours-toggle {
  background: none; border: none; color: var(--azure-light);
  font-size: 0.82rem; cursor: pointer; padding: 0;
  display: flex; align-items: center; gap: 0.4rem;
  transition: color var(--transition); margin-bottom: 0.8rem;
}
.hours-toggle:hover { color: var(--gold); }
.hours-toggle .toggle-arrow { transition: transform var(--transition); display: inline-block; }
.hours-toggle.open .toggle-arrow { transform: rotate(180deg); }
.hours-full { display: none; flex-direction: column; gap: 0.5rem; }
.hours-full.open { display: flex; }
.hours-row {
  display: flex; justify-content: space-between;
  font-size: 0.8rem; color: var(--text-muted);
  padding: 0.3rem 0; border-bottom: 1px solid rgba(255,255,255,0.04);
}
.hours-row.today { color: var(--gold-pale); font-weight: 600; }
.hours-row .time-slot { text-align: right; }
.hours-row.today .time-slot { color: var(--gold); }
.badge-open {
  display: inline-block;
  background: rgba(37,211,102,0.12); color: #3dd68c;
  border: 1px solid rgba(37,211,102,0.25);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 0.15rem 0.5rem; border-radius: 10px; text-transform: uppercase;
}
.badge-closed {
  display: inline-block;
  background: rgba(255,80,80,0.12); color: #ff6b6b;
  border: 1px solid rgba(255,80,80,0.25);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 0.15rem 0.5rem; border-radius: 10px; text-transform: uppercase;
}
.footer-bottom { padding: 2rem 0 2.4rem; }

/* Ornament line */
.fbot-orn {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.8rem;
}
.fbot-line {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.25), transparent);
}
.fbot-diamond {
  font-size: 0.7rem; color: rgba(201,168,76,0.5);
  flex-shrink: 0;
}

/* Inner — tutto centrato */
.fbot-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 0.9rem;
  text-align: center;
}

/* Brand */
.fbot-brand {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.02em;
}
.fbot-logo-img {
  width: 28px; height: 28px;
  object-fit: contain;
}

/* Policy links */
.fbot-links {
  display: flex; align-items: center; gap: 0.75rem;
  flex-wrap: wrap; justify-content: center;
}
.fbot-links a {
  font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: color var(--transition);
  text-decoration: none;
}
.fbot-links a:hover { color: var(--gold); }
.fbot-sep { color: rgba(201,168,76,0.35); font-size: 0.7rem; }

/* Copyright */
.fbot-copy {
  font-size: 0.78rem; color: rgba(255,255,255,0.3);
  letter-spacing: 0.02em; margin: 0;
}
.fbot-copy a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
  text-decoration: none;
}
.fbot-copy a:hover { color: var(--gold); }

/* Credits */
.fbot-credits {
  font-size: 0.72rem; color: rgba(255,255,255,0.2);
  letter-spacing: 0.02em; margin: 0;
}
.fbot-credits a {
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
  text-decoration: none;
}
.fbot-credits a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════════════════════════ */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 8000;
  background: rgba(8,12,20,0.97); backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 1.5rem 2.5rem;
  display: none; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.45);
}
#cookie-banner.show { display: flex; }
.cookie-text { flex: 1; font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }
.cookie-text a { color: var(--azure-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; flex-shrink: 0; }
.btn-cookie-accept {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black); padding: 0.6rem 1.5rem; border-radius: 30px;
  font-weight: 700; font-size: 0.85rem; border: none; cursor: pointer;
  transition: all var(--transition);
}
.btn-cookie-accept:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.btn-cookie-decline {
  background: transparent; color: var(--text-muted); padding: 0.6rem 1.2rem;
  border-radius: 30px; font-size: 0.85rem; border: 1px solid rgba(255,255,255,0.14);
  cursor: pointer; transition: all var(--transition);
}
.btn-cookie-decline:hover { border-color: var(--white); color: var(--white); }

/* ══════════════════════════════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════════════════════════════ */
#back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: none; border-radius: 50%; color: var(--black);
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(15px);
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
#back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(201,168,76,0.55); }

/* ══════════════════════════════════════════════════════════════
   MODALS
══════════════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(5,8,18,0.82);
  backdrop-filter: blur(12px);
  z-index: 5000;
  display: none; align-items: center; justify-content: center;
  padding: 1rem;
}
.modal-overlay.open {
  display: flex;
  animation: fadeIn 0.25s ease;
}

/* ── RESERVATION modal: 16:9 desktop / 9:16 mobile ─── */
.modal-book {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  /* 16:9 */
  width: min(92vw, 980px);
  aspect-ratio: 16 / 9;
  box-shadow: 0 40px 100px rgba(0,0,0,0.65), 0 0 0 1px rgba(201,168,76,0.12);
  animation: scaleIn 0.3s ease;
}
.modal-book-inner {
  display: grid; grid-template-columns: 42% 58%; height: 100%;
}

/* Left panel — dark visual */
.modal-book-visual {
  background: linear-gradient(160deg, var(--blue-deep) 0%, var(--navy) 100%);
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.modal-book-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 25% 75%, rgba(58,140,197,0.22) 0%, transparent 55%);
}
.modal-book-visual::after {
  content: ''; position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.1);
}
.modal-visual-content { position: relative; z-index: 1; }
.modal-visual-logo {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem; font-weight: 700; color: var(--gold);
  margin-bottom: 1.5rem;
}
.modal-visual-logo span {
  width: 34px; height: 34px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.modal-book-visual h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  color: var(--white); margin-bottom: 0.6rem;
}
.modal-book-visual p {
  color: var(--text-muted); font-size: 0.88rem; line-height: 1.75;
  margin-bottom: 1.5rem;
}
.modal-contact-list { display: flex; flex-direction: column; gap: 0.7rem; }
.modal-contact-list li {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.85rem; color: var(--azure-light); list-style: none;
}
.modal-contact-list li a { color: var(--azure-light); }
.modal-contact-list li a:hover { color: var(--gold); }

/* Right panel — white form */
.modal-book-form {
  background: var(--white);
  padding: 2rem 2.5rem;
  overflow-y: auto;
  display: flex; flex-direction: column; justify-content: center;
}
.modal-book-form h3 {
  font-size: 1.4rem; color: var(--text-dark); margin-bottom: 1.2rem;
}
/* Form on white bg */
.modal-book-form .form-group { margin-bottom: 0.8rem; }
.modal-book-form .form-group label {
  display: block; font-size: 0.75rem; font-weight: 700;
  color: var(--gold-dark); letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.modal-book-form .form-group input,
.modal-book-form .form-group select,
.modal-book-form .form-group textarea {
  width: 100%; background: var(--ivory);
  border: 1.5px solid var(--pearl); border-radius: 10px;
  padding: 0.65rem 0.9rem; color: var(--text-dark);
  font-size: 0.9rem; font-family: inherit;
  transition: border-color var(--transition), background var(--transition);
  appearance: none; -webkit-appearance: none;
}
.modal-book-form .form-group input:focus,
.modal-book-form .form-group select:focus,
.modal-book-form .form-group textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
}
.modal-book-form .form-group select option { background: var(--white); color: var(--text-dark); }
.modal-book-form .form-group textarea { resize: vertical; min-height: 72px; }
.modal-book-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.modal-book-form .form-privacy {
  display: flex; align-items: flex-start; gap: 0.55rem;
  margin-bottom: 1rem; font-size: 0.8rem; color: var(--text-mid); line-height: 1.5;
}
.modal-book-form .form-privacy input[type=checkbox] { margin-top: 2px; accent-color: var(--gold-dark); }
.modal-book-form .form-privacy a { color: var(--blue); text-decoration: underline; }
.btn-whatsapp {
  width: 100%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white); padding: 0.9rem;
  border-radius: 50px; border: none;
  font-weight: 700; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center; gap: 0.65rem;
  cursor: pointer; transition: all var(--transition);
  box-shadow: 0 6px 22px rgba(37,211,102,0.28);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,211,102,0.45); }

.modal-close {
  position: absolute; top: 1.1rem; right: 1.1rem; z-index: 20;
  background: rgba(0,0,0,0.18); border: 1px solid rgba(255,255,255,0.15);
  color: var(--white); width: 36px; height: 36px; border-radius: 50%;
  font-size: 1rem; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all var(--transition);
}
.modal-close:hover { background: rgba(201,168,76,0.25); border-color: var(--gold); color: var(--gold); }

/* ── REVIEW modal ─── */
.modal-review-box {
  position: relative;
  background: var(--white); border-radius: var(--radius-xl);
  overflow: hidden;
  width: min(92vw, 640px); max-height: 88vh;
  box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,168,76,0.12);
  animation: scaleIn 0.3s ease;
  display: flex; flex-direction: column;
}
.modal-review-box .modal-close {
  background: rgba(11,23,40,0.08); border: 1px solid rgba(11,23,40,0.12);
  color: var(--text-dark);
}
.modal-review-box .modal-close:hover {
  background: var(--gold); border-color: var(--gold); color: var(--white);
}
.modal-review-inner {
  padding: 2.5rem; overflow-y: auto; flex: 1;
}
.modal-review-inner h3 {
  font-size: 1.8rem; color: var(--text-dark); margin-bottom: 0.5rem;
}
.modal-review-inner > p {
  color: var(--text-mid); margin-bottom: 1.5rem; font-size: 0.95rem;
}
/* Form on white bg for review */
.modal-review-inner .form-group { margin-bottom: 1rem; }
.modal-review-inner .form-group label {
  display: block; font-size: 0.76rem; font-weight: 700;
  color: var(--gold-dark); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.4rem;
}
.modal-review-inner .form-group input,
.modal-review-inner .form-group textarea {
  width: 100%; background: var(--ivory); border: 1.5px solid var(--pearl);
  border-radius: 10px; padding: 0.72rem 0.9rem;
  color: var(--text-dark); font-size: 0.9rem; font-family: inherit;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
}
.modal-review-inner .form-group input:focus,
.modal-review-inner .form-group textarea:focus {
  outline: none; border-color: var(--gold); background: var(--white);
}
.modal-review-inner .form-group textarea { resize: vertical; min-height: 100px; }
.modal-review-inner .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.modal-review-inner .form-privacy {
  display: flex; align-items: flex-start; gap: 0.55rem;
  margin-bottom: 1.2rem; font-size: 0.8rem; color: var(--text-mid); line-height: 1.5;
}
.modal-review-inner .form-privacy input[type=checkbox] { margin-top: 2px; accent-color: var(--gold-dark); }
.modal-review-inner .form-privacy a { color: var(--blue); text-decoration: underline; }

/* Upload zone nel form recensione pubblico */
.review-upload-zone {
  border: 2px dashed rgba(158,124,48,0.35);
  border-radius: 10px; padding: 1.1rem; text-align: center;
  cursor: pointer; transition: border-color 0.25s, background 0.25s;
  background: rgba(11,23,40,0.04);
}
.review-upload-zone:hover { border-color: var(--gold-dark); background: rgba(201,168,76,0.04); }
.review-upload-previews {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-bottom: 0.65rem;
}
.review-upload-placeholder .review-upload-icon { font-size: 1.5rem; margin-bottom: 0.25rem; }
.review-upload-placeholder strong { display: block; font-size: 0.85rem; color: var(--text-dark); }
.review-upload-placeholder span   { font-size: 0.74rem; color: var(--text-mid); }
.review-upload-count { font-size: 0.78rem; color: var(--text-mid); margin-top: 0.35rem; text-align: center; }

/* Star rating on white */
.star-rating-input {
  display: flex; gap: 0.4rem; flex-direction: row-reverse;
  justify-content: flex-end; margin-bottom: 0.5rem;
}
.star-rating-input input { display: none; }
.star-rating-input label {
  font-size: 1.8rem; color: var(--pearl); cursor: pointer;
  transition: color var(--transition), transform var(--transition);
}
.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label { color: var(--gold); transform: scale(1.1); }

/* Review submit button */
.btn-review-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--navy), var(--blue-deep));
  color: var(--white); padding: 0.95rem;
  border-radius: 50px; border: none;
  font-weight: 700; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  cursor: pointer; transition: all var(--transition);
  box-shadow: 0 6px 24px rgba(11,23,40,0.22);
}
.btn-review-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(11,23,40,0.35); }

.review-success-msg { text-align: center; padding: 2rem; display: none; }
.review-success-msg .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.review-success-msg p { color: var(--text-mid); }

/* ══════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════════════════════════ */
.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-28px); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(28px); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity:1; transform:translateX(0); }
.reveal-delay-1 { transition-delay:0.1s; }
.reveal-delay-2 { transition-delay:0.2s; }
.reveal-delay-3 { transition-delay:0.3s; }
.reveal-delay-4 { transition-delay:0.4s; }

/* ══════════════════════════════════════════════════════════════
   KEYFRAMES
══════════════════════════════════════════════════════════════ */
@keyframes fadeIn  { from{opacity:0} to{opacity:1} }
@keyframes scaleIn { from{opacity:0;transform:scale(0.94)} to{opacity:1;transform:scale(1)} }
@keyframes fadeInUp   { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-18px)} to{opacity:1;transform:translateY(0)} }
@keyframes bounce { 0%,100%{transform:rotate(45deg) translateY(0)} 50%{transform:rotate(45deg) translateY(8px)} }
@keyframes float  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* Wave animation */
.waves-path-1 { animation:moveForever1 10s linear infinite; }
.waves-path-2 { animation:moveForever2 8s linear infinite; }
.waves-path-3 { animation:moveForever3 6s linear infinite; }
@keyframes moveForever1 { 0%{transform:translateX(-90px)} 100%{transform:translateX(85px)} }
@keyframes moveForever2 { 0%{transform:translateX(-90px)} 100%{transform:translateX(85px)} }
@keyframes moveForever3 { 0%{transform:translateX(-90px)} 100%{transform:translateX(85px)} }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .reserve-cta-grid { gap: 3rem; }
}

@media (max-width: 900px) {
  .about-grid          { grid-template-columns:1fr; gap:2rem; padding:0 10px; }
  .about-features-grid { grid-template-columns:1fr 1fr; gap:8px; padding:0 8px; }
  .reserve-cta-grid    { grid-template-columns:1fr; }
  .contact-grid        { grid-template-columns:1fr; }
  .review-card         { flex:0 0 calc(50% - 0.75rem); }
  .reserve-action-card { min-height: 260px; }
}

/* Modal 9:16 on mobile */
@media (max-width: 768px) {
  .nav-links, .nav-actions { display:none; }
  .hamburger { display:flex; }
  section { padding:4rem 0; }
  .about-features-grid { grid-template-columns:1fr 1fr; gap:8px; padding:0 8px; }
  .review-card { flex:0 0 84vw; }
  .footer-grid { grid-template-columns:1fr; }
  #cookie-banner { flex-direction:column; align-items:flex-start; }
  .lightbox-nav { display:none; }
  .hero-ctas { flex-direction:column; align-items:center; }
  .about-features-grid { grid-template-columns:1fr 1fr; }

  /* Reservation modal → 9:16 */
  .modal-book {
    width: min(95vw, 440px);
    aspect-ratio: 9 / 16;
    max-height: 92vh;
    overflow-y: auto;
  }
  .modal-book-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    height: auto; min-height: 100%;
  }
  .modal-book-visual { padding: 1.5rem; }
  .modal-book-visual h3 { font-size: 1.4rem; }
  .modal-book-visual p { display: none; }
  .modal-book-form { padding: 1.5rem; justify-content: flex-start; }
  .modal-book-form h3 { font-size: 1.2rem; margin-bottom: 0.8rem; }
  .modal-book-form .form-row { grid-template-columns: 1fr; gap: 0; }

  /* Review modal mobile */
  .modal-review-box { width: min(95vw, 440px); max-height: 90vh; }
  .modal-review-inner { padding: 2rem 1.5rem; }
  .modal-review-inner .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .about-features-grid { grid-template-columns:1fr 1fr; gap:6px; padding:0 6px; }
  .reserve-action-card { padding: 2.5rem 1.5rem; }
  .review-cta-box { padding: 2rem 1.5rem; }
  .fbot-inner { gap: 0.7rem; }
  .modal-book-form { padding: 1.2rem; }
  .modal-review-inner { padding: 1.5rem 1.2rem; }
}

/* ══════════════════════════════════════════════════════════════
   BOTTONE SEGUICI + MODAL SEGUICI
══════════════════════════════════════════════════════════════ */
.btn-seguici {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent;
  color: var(--gold);
  padding: 1rem 3rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 1rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: all var(--transition);
  border: 2px solid var(--gold);
  cursor: pointer;
  margin-top: 1.2rem;
}
.btn-seguici:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(201,168,76,0.35);
}

.modal-seguici-box {
  position: relative;
  background: var(--navy);
  border-radius: var(--radius-xl);
  width: min(92vw, 480px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.2);
  animation: scaleIn 0.3s ease;
  overflow: hidden;
}
.modal-seguici-inner {
  padding: 2.5rem 2rem;
  text-align: center;
}
.seguici-badge {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.modal-seguici-inner h3 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 1.8rem;
  font-family: 'Playfair Display', serif;
}
.seguici-social-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.seguici-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.4rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: all 0.22s ease;
}
.seguici-wa  { background: rgba(37,211,102,0.12); color: #25d366; border: 1px solid rgba(37,211,102,0.3); }
.seguici-wa:hover  { background: #25d366; color: #fff; border-color: #25d366; }
.seguici-ig  { background: rgba(225,48,108,0.12); color: #e1306c; border: 1px solid rgba(225,48,108,0.25); }
.seguici-ig:hover  { background: #e1306c; color: #fff; border-color: #e1306c; }
.seguici-tt  { background: rgba(255,255,255,0.06); color: #fff; border: 1px solid rgba(255,255,255,0.18); }
.seguici-tt:hover  { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.4); }
.seguici-qr {
  border-top: 1px solid rgba(201,168,76,0.2);
  padding-top: 1.5rem;
}
.seguici-qr img {
  width: 140px; height: 140px;
  border-radius: 12px;
  border: 2px solid rgba(201,168,76,0.35);
  object-fit: cover;
}
.seguici-qr p {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  margin-top: 0.6rem;
}
@media (max-width: 480px) {
  .modal-seguici-inner { padding: 2rem 1.4rem; }
  .modal-seguici-inner h3 { font-size: 1.35rem; }
}
