/* ============================================================================
   landing.css — Sito pubblico clienti Il Faro (/home)
   Palette brand: bordeaux + ottone su nero-carbone. Dark fisso, niente toggle.
   Self-contained: NON dipende da main.css / bundle del gestionale.
   ========================================================================== */
:root {
  --bg:        #08080B;
  --bg-2:      #111014;
  --surface:   #171419;
  --elevated:  #211B20;
  --line:      rgba(255,255,255,0.10);
  --line-2:    rgba(255,255,255,0.18);

  --bordeaux:    #8F1427;
  --bordeaux-hi: #C51D37;
  --bordeaux-200:#F0A0AD;
  --brass:       #D5B36F;
  --brass-hi:    #F0D79C;

  --text:    #F7F3EA;
  --text-2:  #C9C1B6;
  --text-3:  #827A73;

  --ok:      #3fae6b;
  --ok-bg:   rgba(63,174,107,0.12);

  --font-display: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-sans:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --r-sm: 8px;  --r-md: 12px;  --r-lg: 16px;  --r-xl: 24px;  --r-pill: 999px;
  --shadow: 0 26px 80px rgba(0,0,0,0.58), 0 6px 20px rgba(0,0,0,0.38);
  --glow-b: 0 0 0 1px rgba(197,29,55,0.48), 0 18px 44px rgba(143,20,39,0.28);
  --caps: 0.18em;
  --safe-top: env(safe-area-inset-top, 0px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section, .hero, .trust-strip, .footer { scroll-margin-top: 88px; }
body {
  margin: 0;
  background:
    linear-gradient(180deg, #08080B 0%, #0E0B0D 45%, #08080B 100%);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--bordeaux); color: #fff; }

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 22px; }
.hidden { display: none !important; }
.kicker {
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: var(--caps); text-transform: uppercase;
  color: var(--brass);
}

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-sans); font-weight: 700; font-size: 0.95rem;
  padding: 13px 24px; border-radius: var(--r-pill);
  border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  text-align: center; line-height: 1;
}
.btn:active { transform: scale(0.97); }
.btn:disabled { cursor: not-allowed; opacity: .58; box-shadow: none; transform: none; }
.btn-primary { background: linear-gradient(135deg, var(--bordeaux-hi), #76101F); color: #fff; border-color: rgba(255,255,255,0.18); box-shadow: var(--glow-b); }
.btn-primary:hover { background: linear-gradient(135deg, #D62642, #8F1427); }
.btn-ghost { background: rgba(255,255,255,0.06); color: var(--text); border-color: rgba(255,255,255,0.22); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.btn-ghost:hover { border-color: rgba(213,179,111,0.7); color: var(--brass-hi); background: rgba(213,179,111,0.08); }
.btn-brass { background: linear-gradient(135deg, var(--brass-hi), var(--brass)); color: #1a120a; border-color: rgba(255,255,255,0.22); box-shadow: 0 14px 36px rgba(213,179,111,0.18); }
.btn-brass:hover { background: var(--brass-hi); }
.btn-wa { background: #25D366; color: #052b12; border-color: #1fb457; }
.btn-wa:hover { filter: brightness(1.06); }
.btn-sm { padding: 9px 16px; font-size: 0.83rem; }
.btn-block { width: 100%; }

/* ── Topbar ───────────────────────────────────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 50;
  padding-top: var(--safe-top);
  background: rgba(8,8,11,0.44);
  backdrop-filter: blur(18px) saturate(1.15); -webkit-backdrop-filter: blur(18px) saturate(1.15);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
.topbar.scrolled { background: rgba(8,8,11,0.9); border-bottom-color: var(--line); }
.topbar-inner { display: flex; align-items: center; gap: 14px; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-logo { width: 34px; height: 34px; object-fit: contain; filter: brightness(1.25); }
/* Logo completo (FARO TRASPARENTE) — bianco su trasparente, va sull'header scuro */
.brand-logo-full { height: 50px; width: auto; max-width: 210px; object-fit: contain; display: block; filter: drop-shadow(0 8px 18px rgba(0,0,0,0.45)); }
@media (max-width: 420px) { .brand-logo-full { height: 40px; } }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; letter-spacing: .01em; }
.brand-sub { font-size: 0.6rem; letter-spacing: var(--caps); text-transform: uppercase; color: var(--text-3); margin-top: 3px; }
.top-spacer { flex: 1; }
.top-actions { display: flex; align-items: center; gap: 10px; }

/* ── Open badge ───────────────────────────────────────────────────────── */
.badge-open {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700;
  padding: 7px 14px; border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.18); color: var(--text-2);
  background: rgba(0,0,0,0.22);
  white-space: nowrap;
}
.badge-open .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--text-3); flex: none; }
.badge-open.is-open { color: #9ff0bd; border-color: rgba(63,174,107,0.4); background: var(--ok-bg); }
.badge-open.is-open .dot { background: var(--ok); box-shadow: 0 0 0 0 rgba(63,174,107,0.6); animation: pulse 2s infinite; }
.badge-open.is-closed { color: var(--bordeaux-200); border-color: rgba(184,32,53,0.35); background: rgba(184,32,53,0.08); }
.badge-open.is-closed .dot { background: var(--bordeaux-hi); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(63,174,107,0.5);} 70% { box-shadow: 0 0 0 7px rgba(63,174,107,0);} 100% { box-shadow: 0 0 0 0 rgba(63,174,107,0);} }

/* ── Evento in sovrimpressione ─────────────────────────────────────────── */
.event-popup {
  position: fixed; inset: 0; z-index: 260; display: flex; align-items: center; justify-content: center;
  padding: 20px; color: var(--text);
}
.event-popup__backdrop {
  position: absolute; inset: 0; background: rgba(4,4,7,0.76);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.event-popup__panel {
  position: relative; z-index: 1; width: min(920px, 100%); max-height: calc(100svh - 40px);
  display: grid; grid-template-columns: minmax(280px, .9fr) minmax(0, 1.1fr);
  overflow: hidden; border-radius: var(--r-lg);
  border: 1px solid rgba(213,179,111,0.32);
  background:
    linear-gradient(135deg, rgba(23,20,25,0.98), rgba(43,17,24,0.98)),
    var(--surface);
  box-shadow: 0 34px 120px rgba(0,0,0,0.72);
}
.event-popup__panel:not(.has-media) { grid-template-columns: 1fr; max-width: 640px; }
.event-popup__panel:not(.has-media) .event-popup__media { display: none; }
.event-popup__close {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.24);
  background: rgba(0,0,0,0.58); color: #fff; cursor: pointer;
  font-size: 1rem; font-weight: 900; line-height: 1;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.event-popup__close:hover { border-color: rgba(213,179,111,0.72); color: var(--brass-hi); }
.event-popup__media {
  min-height: 460px;
  background-color: #0B0B10;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.event-popup__body {
  min-width: 0; max-height: calc(100svh - 40px); overflow: auto;
  padding: clamp(26px, 4.4vw, 48px);
}
.event-popup__kicker {
  display: inline-flex; align-items: center; min-height: 28px; padding: 5px 11px;
  border: 1px solid rgba(213,179,111,0.32); border-radius: var(--r-pill);
  background: rgba(213,179,111,0.1); color: var(--brass-hi);
  font-size: .68rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase;
}
.event-popup__title {
  margin: 14px 44px 12px 0; font-family: var(--font-display); font-size: clamp(2.1rem, 5.2vw, 4rem);
  font-weight: 600; line-height: .92; letter-spacing: 0; text-wrap: balance;
}
.event-popup__info {
  margin: 0 0 16px; color: var(--brass-hi); font-size: .9rem; line-height: 1.55; font-weight: 800;
}
.event-popup__desc { margin: 0 0 18px; color: var(--text-2); font-size: .98rem; line-height: 1.65; }
.event-popup__offer {
  margin: 0 0 20px; color: var(--text-2); font-size: .92rem; line-height: 1.72; white-space: pre-line;
}
.event-popup__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.event-popup__actions .btn { min-width: 170px; }
body.event-popup-open { overflow: hidden; }

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero { position: relative; min-height: calc(100svh - 0px); display: flex; align-items: center; overflow: hidden; isolation: isolate; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background-image: var(--hero-img, url("/landing-optimized/hero/faro-0147-hero.webp")); background-size: cover; background-position: center; transform: scale(1.04); animation: heroDrift 18s ease-in-out infinite alternate; }
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,8,0.92) 0%, rgba(5,5,8,0.70) 38%, rgba(5,5,8,0.18) 72%, rgba(5,5,8,0.58) 100%),
    linear-gradient(180deg, rgba(5,5,8,0.22) 0%, rgba(5,5,8,0.12) 45%, rgba(8,8,11,0.95) 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(70% 55% at 22% 58%, rgba(143,20,39,0.34), transparent 70%),
    radial-gradient(55% 50% at 78% 30%, rgba(213,179,111,0.16), transparent 62%);
  mix-blend-mode: screen;
  opacity: .78;
}
.hero-vignette { position: absolute; inset: auto 0 0; height: 34%; z-index: 1; background: linear-gradient(180deg, transparent, var(--bg)); pointer-events: none; }
.hero-content { position: relative; z-index: 2; padding-top: 118px; padding-bottom: 92px; max-width: 720px; }
.hero-kicker { margin-bottom: 20px; }
.hero-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(3.25rem, 9vw, 6.5rem); line-height: .91;
  letter-spacing: 0; margin: 0 0 22px;
  text-wrap: balance;
  text-shadow: 0 18px 54px rgba(0,0,0,0.52);
}
.hero-title .accent { color: var(--brass-hi); font-style: italic; }
.hero-sub { font-size: clamp(1.06rem, 2.4vw, 1.36rem); color: #EEE7DB; max-width: 580px; margin: 0 0 34px; text-shadow: 0 10px 28px rgba(0,0,0,0.42); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 13px; }
.hero-status { margin-top: 28px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; color: var(--text-3); font-size: 0.85rem; }
.hero-event {
  margin: 0 0 20px; max-width: 620px; display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 14px; padding: 14px 15px;
  border: 1px solid rgba(213,179,111,0.32); border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(20,16,18,0.82), rgba(77,18,27,0.56));
  box-shadow: 0 18px 54px rgba(0,0,0,0.36);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.hero-event:hover,
.hero-event:focus-visible {
  border-color: rgba(213,179,111,0.62);
  box-shadow: 0 22px 62px rgba(0,0,0,0.44);
  transform: translateY(-1px);
  outline: none;
}
.hero-event__date {
  width: 54px; height: 54px; border-radius: var(--r-sm); display: flex; flex-direction: column;
  align-items: center; justify-content: center; color: #1a120a;
  background: linear-gradient(135deg, var(--brass-hi), var(--brass));
  font-weight: 800; line-height: 1;
}
.hero-event__date b { font-family: var(--font-display); font-size: 1.45rem; line-height: .9; }
.hero-event__date span { margin-top: 4px; font-size: .56rem; letter-spacing: .1em; text-transform: uppercase; }
.hero-event__poster {
  position: relative;
  width: 74px;
  height: 84px;
  overflow: hidden;
  border: 1px solid rgba(213,179,111,0.38);
  border-radius: var(--r-md);
  background: var(--elevated);
  box-shadow: 0 12px 34px rgba(0,0,0,0.3);
}
.hero-event__poster img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0B0B10;
}
.hero-event__poster .hero-event__date {
  position: absolute;
  left: 6px;
  bottom: 6px;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.34);
}
.hero-event__poster .hero-event__date b { font-size: 1rem; }
.hero-event__poster .hero-event__date span { margin-top: 2px; font-size: .43rem; }
.hero-event__copy { min-width: 0; }
.hero-event__copy small { display: block; color: var(--brass-hi); font-size: .67rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.hero-event__copy strong { display: block; margin-top: 3px; color: var(--text); font-size: .98rem; line-height: 1.25; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-event__copy span { display: block; margin-top: 2px; color: var(--text-2); font-size: .78rem; line-height: 1.35; }
.hero-event__cta { padding-inline: 15px; white-space: nowrap; }
.hero-metrics { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.hero-metrics span { display: inline-flex; align-items: center; gap: 5px; padding: 8px 12px; border: 1px solid rgba(255,255,255,0.15); border-radius: var(--r-pill); background: rgba(0,0,0,0.24); color: var(--text-2); font-size: .78rem; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.hero-metrics b { color: var(--brass-hi); font-weight: 800; }
.hero-photo-strip { position: absolute; right: clamp(22px, 6vw, 76px); bottom: 58px; z-index: 2; display: grid; grid-template-columns: 120px 150px; grid-template-rows: 112px 112px; gap: 10px; width: 280px; }
.hero-photo-strip img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; border: 1px solid rgba(255,255,255,0.16); box-shadow: 0 20px 60px rgba(0,0,0,0.42); }
.hero-photo-strip img:first-child { grid-row: 1 / 3; }
.hero-photo-strip img:nth-child(2) { transform: translateY(-14px); }
.hero-photo-strip img:nth-child(3) { transform: translateY(8px); }
.hero-photo-strip img.loaded { animation: photoIn .7s ease both; }
.scroll-hint {
  position: absolute; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 1; color: var(--text-3); font-size: 0.7rem; letter-spacing: var(--caps); text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px; animation: float 2.6s ease-in-out infinite;
}
.scroll-hint span { font-size: 1.1rem; }
@keyframes float { 0%,100% { transform: translate(-50%,0);} 50% { transform: translate(-50%,7px);} }
@keyframes heroDrift { from { transform: scale(1.04) translate3d(0,0,0); } to { transform: scale(1.09) translate3d(-1.2%, .8%, 0); } }
@keyframes photoIn { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; } }

/* ── Sections ─────────────────────────────────────────────────────────── */
.section { padding: 92px 0; position: relative; }
.section.alt { background: linear-gradient(180deg, var(--bg) 0%, #120D10 48%, var(--bg) 100%); }
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.15rem, 5vw, 3.45rem); line-height: .98; margin: 12px 0 16px; letter-spacing: 0; text-wrap: balance; }
.section-sub { color: var(--text-2); font-size: 1.02rem; margin: 0; }
.divider { width: 46px; height: 2px; background: var(--bordeaux); margin: 0 auto; border: none; }

/* ── Esperienza ───────────────────────────────────────────────────────── */
.experience { padding-top: 74px; background: radial-gradient(90% 70% at 80% 0%, rgba(213,179,111,0.08), transparent 62%); }
.experience-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: 44px; align-items: center; }
.experience-copy .section-title { font-size: clamp(2.2rem, 4.8vw, 4rem); }
.experience-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.experience-mosaic { display: grid; grid-template-columns: 1.1fr .78fr; grid-template-rows: 220px 220px; gap: 12px; }
.mosaic-item { appearance: none; border: 1px solid rgba(255,255,255,0.14); background: var(--elevated); padding: 0; border-radius: var(--r-lg); overflow: hidden; cursor: pointer; box-shadow: 0 18px 55px rgba(0,0,0,0.34); }
.mosaic-main { grid-row: 1 / 3; }
.mosaic-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease, filter .25s ease; }
.mosaic-item:hover img { transform: scale(1.055); filter: saturate(1.08) contrast(1.04); }

/* ── Promo in evidenza ────────────────────────────────────────────────── */
.promo-section {
  padding: 88px 0;
  background:
    linear-gradient(180deg, rgba(8,8,11,0.98) 0%, rgba(25,13,17,0.96) 50%, rgba(8,8,11,0.98) 100%),
    radial-gradient(70% 100% at 14% 50%, rgba(197,29,55,0.2), transparent 60%),
    radial-gradient(54% 88% at 88% 18%, rgba(213,179,111,0.14), transparent 64%);
  overflow: hidden;
}
.promo-section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,0.05), transparent 18%, transparent 82%, rgba(213,179,111,0.06));
  opacity: .72;
}
.promo-layout {
  position: relative; display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 0; min-height: 430px; align-items: stretch;
  border-top: 1px solid rgba(213,179,111,0.34); border-bottom: 1px solid rgba(255,255,255,0.12);
}
.promo-media { position: relative; min-height: 430px; overflow: hidden; }
.promo-photo {
  position: absolute; inset: 0;
  background-image: var(--promo-img, var(--hero-img));
  background-size: cover; background-position: center;
  transform: scale(1.03);
  filter: saturate(1.06) contrast(1.02);
}
.promo-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,8,11,0.08) 0%, rgba(8,8,11,0.04) 45%, rgba(8,8,11,0.76) 100%),
    linear-gradient(180deg, rgba(8,8,11,0.04), rgba(8,8,11,0.34));
}
.promo-copy {
  position: relative; display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  padding: clamp(30px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(8,8,11,0.92), rgba(17,12,15,0.84)),
    radial-gradient(92% 74% at 78% 18%, rgba(213,179,111,0.14), transparent 68%);
}
.promo-copy::before {
  content: ""; position: absolute; left: 0; top: 12%; bottom: 12%; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(213,179,111,0.72), transparent);
}
.promo-top { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.promo-badge {
  display: inline-flex; align-items: center; min-height: 30px; padding: 6px 12px;
  border-radius: var(--r-pill); border: 1px solid rgba(213,179,111,0.32);
  background: rgba(213,179,111,0.1); color: var(--brass-hi);
  font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
}
.promo-title {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(2.25rem, 5.2vw, 4.7rem); line-height: .92; letter-spacing: 0;
  margin: 0 0 18px; text-wrap: balance;
}
.promo-text {
  max-width: 560px; margin: 0 0 28px; color: var(--text-2);
  font-size: clamp(1rem, 1.7vw, 1.13rem); line-height: 1.7;
}
.promo-copy .btn { min-width: 168px; }

/* ── Momenti / percorsi serata ───────────────────────────────────────── */
.moments-section {
  background:
    radial-gradient(80% 70% at 18% 12%, rgba(213,179,111,0.1), transparent 58%),
    linear-gradient(180deg, var(--bg) 0%, #100C0F 52%, var(--bg) 100%);
}
.moments-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px;
  align-items: stretch;
}
.moment-card {
  position: relative; min-height: 286px; display: flex; flex-direction: column; align-items: flex-start;
  padding: 24px 20px 20px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-lg);
  background:
    linear-gradient(180deg, rgba(23,20,25,0.92), rgba(14,12,16,0.94)),
    radial-gradient(90% 70% at 50% 0%, rgba(213,179,111,0.08), transparent 66%);
  box-shadow: 0 18px 48px rgba(0,0,0,0.26);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.moment-card::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--bordeaux-hi), var(--brass));
  opacity: .55;
}
.moment-card:hover { transform: translateY(-4px); border-color: rgba(213,179,111,0.42); }
.moment-card.is-featured {
  background:
    linear-gradient(180deg, rgba(45,19,27,0.96), rgba(17,12,16,0.96)),
    radial-gradient(110% 80% at 68% 0%, rgba(213,179,111,0.16), transparent 66%);
  border-color: rgba(213,179,111,0.34);
}
.moment-num {
  margin-bottom: 22px; color: rgba(213,179,111,0.68);
  font-size: .74rem; font-weight: 800; letter-spacing: .14em;
}
.moment-card h3 {
  font-family: var(--font-display); font-size: 1.72rem; font-weight: 600; line-height: 1;
  margin: 0 0 12px; letter-spacing: 0;
}
.moment-card p {
  color: var(--text-2); font-size: .92rem; line-height: 1.62; margin: 0 0 22px;
}
.moment-cta {
  margin-top: auto; min-height: 40px; padding: 0 14px;
  border-radius: var(--r-pill); border: 1px solid rgba(213,179,111,0.28);
  background: rgba(213,179,111,0.08); color: var(--brass-hi);
  font-family: var(--font-sans); font-size: .78rem; font-weight: 800;
  cursor: pointer; transition: background .18s ease, border-color .18s ease, color .18s ease, transform .15s ease;
}
.moment-cta:hover { background: var(--brass); border-color: var(--brass-hi); color: #1a120a; }
.moment-cta:active { transform: scale(.97); }

/* ── Eventi ───────────────────────────────────────────────────────────── */
.events { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.event-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 20px; display: flex; flex-direction: column; gap: 14px; overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.event-card.has-image { padding-top: 0; }
.event-card:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: var(--shadow); }
.event-card.is-full { opacity: .72; }
.event-image { margin: 0 -20px 2px; aspect-ratio: 16 / 10; background: var(--elevated); overflow: hidden; }
.event-image img { width: 100%; height: 100%; object-fit: cover; }
.event-top { display: flex; align-items: center; gap: 14px; }
.event-date {
  flex: none; width: 62px; height: 62px; border-radius: var(--r-md);
  background: linear-gradient(160deg, var(--bordeaux) 0%, #5e0f1a 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff;
  box-shadow: var(--glow-b);
}
.event-date .d { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; line-height: 1; }
.event-date .m { font-size: 0.6rem; letter-spacing: var(--caps); text-transform: uppercase; margin-top: 3px; opacity: .9; }
.event-when { font-size: 0.78rem; color: var(--brass); font-weight: 700; letter-spacing: .04em; text-transform: capitalize; }
.event-head { flex: 1; min-width: 0; }
.event-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin: 2px 0 0; }
.event-price { display: inline-block; margin-top: 6px; font-size: 0.8rem; font-weight: 800; color: #1a120a; background: var(--brass); padding: 3px 11px; border-radius: var(--r-pill); }
.event-desc { color: var(--text-2); font-size: 0.92rem; margin: 0; flex: 1; }
.event-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 9px; }
.event-meta span,
.event-capacity {
  display: inline-flex; align-items: center; gap: 6px; min-height: 28px; padding: 5px 10px;
  border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.045); color: var(--text-2);
  font-size: .74rem; font-weight: 700;
}
.event-capacity { align-self: flex-start; color: var(--brass-hi); border-color: rgba(213,179,111,0.3); background: rgba(213,179,111,0.08); }
.event-card.is-full .event-capacity { color: var(--bordeaux-200); border-color: rgba(240,160,173,0.32); background: rgba(143,20,39,0.14); }
.event-offerta { display: flex; flex-wrap: wrap; gap: 6px; }
.event-tag { font-size: 0.74rem; color: var(--brass-hi); background: rgba(201,168,106,0.1); border: 1px solid rgba(201,168,106,0.28); border-radius: var(--r-pill); padding: 4px 10px; }
.event-offerta-text {
  margin: 0; color: var(--text-2); font-size: .88rem; line-height: 1.62; white-space: pre-line;
}
.events-empty { text-align: center; color: var(--text-3); padding: 30px; grid-column: 1/-1; }

/* ── Menù highlights ──────────────────────────────────────────────────── */
.menu-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-bottom: 40px; }
.dish-card {
  position: relative; background: rgba(23,20,25,0.9); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column;
  aspect-ratio: 1 / 1; min-height: 0; color: var(--text); padding: 0; cursor: pointer;
  appearance: none; font: inherit; text-align: inherit;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.dish-card:focus-visible { outline: 3px solid rgba(213,179,111,0.42); outline-offset: 3px; }
.dish-card:hover { transform: translateY(-5px); border-color: rgba(213,179,111,0.42); box-shadow: var(--shadow); }
.dish-card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(8,8,11,0.02), rgba(8,8,11,0.16)),
    linear-gradient(135deg, rgba(213,179,111,0.1), transparent 34%, rgba(143,20,39,0.12));
  opacity: .7;
}
.dish-img { width: 100%; height: 100%; object-fit: cover; background: var(--elevated); transition: transform .55s ease, filter .25s ease; }
.dish-card:hover .dish-img { transform: scale(1.055); filter: saturate(1.08) contrast(1.04); }
.dish-noimg { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2.4rem; background: radial-gradient(circle at 50% 40%, rgba(138,24,40,0.22), var(--elevated)); }
.menu-foot { text-align: center; }

/* ── Trust strip prima della prenotazione ─────────────────────────────── */
.trust-strip {
  position: relative; padding: 34px 0 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(18,13,16,0.98) 100%);
}
.trust-layout {
  display: grid; grid-template-columns: minmax(250px, .9fr) minmax(0, 1.35fr) auto;
  gap: 22px; align-items: center;
  padding-top: 28px; padding-bottom: 28px;
  border-top: 1px solid rgba(213,179,111,0.24);
  border-bottom: 1px solid rgba(255,255,255,0.11);
}
.trust-copy h2 {
  font-family: var(--font-display); font-size: clamp(1.85rem, 3.4vw, 2.7rem);
  font-weight: 600; line-height: 1; margin: 8px 0 10px; letter-spacing: 0;
}
.trust-copy p { margin: 0; color: var(--text-2); font-size: .95rem; line-height: 1.65; }
.trust-points { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.trust-point {
  min-width: 0; min-height: 132px; padding: 16px 15px;
  border: 1px solid rgba(255,255,255,0.11); border-radius: var(--r-md);
  background: rgba(255,255,255,0.045);
}
.trust-point span {
  display: block; margin-bottom: 12px; color: rgba(213,179,111,0.72);
  font-size: .68rem; font-weight: 800; letter-spacing: .16em;
}
.trust-point b {
  display: block; color: var(--text); font-size: .9rem; line-height: 1.2; margin-bottom: 7px;
}
.trust-point small {
  display: block; color: var(--text-3); font-size: .76rem; line-height: 1.45;
}
.trust-link {
  justify-self: end; display: inline-flex; align-items: center; justify-content: center;
  min-height: 42px; padding: 0 16px; border-radius: var(--r-pill);
  border: 1px solid rgba(213,179,111,0.32); color: var(--brass-hi);
  font-size: .8rem; font-weight: 800; white-space: nowrap;
  background: rgba(213,179,111,0.08);
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.trust-link:hover { background: var(--brass); color: #1a120a; border-color: var(--brass-hi); }

/* ── Booking ──────────────────────────────────────────────────────────── */
.booking-wrap { max-width: 1040px; margin: 0 auto; display: grid; grid-template-columns: .82fr 1fr; gap: 20px; align-items: stretch; }
.booking-side { position: relative; min-height: 100%; border-radius: var(--r-xl); overflow: hidden; border: 1px solid rgba(255,255,255,0.12); background: var(--elevated); box-shadow: var(--shadow); }
.booking-photo { position: absolute; inset: 0; background-image: var(--booking-img, url("/landing-optimized/hero/faro-0093-card.webp")); background-size: cover; background-position: center; transform: scale(1.03); }
.booking-side::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,7,10,0.04) 0%, rgba(7,7,10,0.18) 35%, rgba(7,7,10,0.88) 100%); }
.booking-side-copy { position: absolute; left: 24px; right: 24px; bottom: 24px; z-index: 1; }
.booking-side-copy h3 { font-family: var(--font-display); font-size: 2rem; line-height: 1; margin: 10px 0 10px; }
.booking-side-copy p { color: var(--text-2); margin: 0; font-size: .95rem; }
.booking-card { background: rgba(23,20,25,0.88); border: 1px solid rgba(255,255,255,0.13); border-top: 3px solid var(--brass); border-radius: var(--r-xl); padding: 30px 26px; box-shadow: var(--shadow); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.booking-event-chip {
  display: none; align-items: flex-start; gap: 12px; justify-content: space-between;
  background: rgba(138,24,40,0.12); border: 1px solid rgba(184,32,53,0.4); border-radius: var(--r-md);
  padding: 11px 14px; margin-bottom: 20px; font-size: 0.9rem;
}
.booking-event-chip.show { display: flex; }
.booking-event-chip span { min-width: 0; display: grid; gap: 3px; }
.booking-event-chip small {
  color: var(--brass-hi);
  font-size: .66rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.booking-event-chip b {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.22;
}
.booking-event-chip em {
  color: var(--text-2);
  font-size: .8rem;
  font-style: normal;
  line-height: 1.35;
}
.booking-event-chip button { flex: none; background: none; border: none; color: var(--text-3); cursor: pointer; font-size: 1.1rem; }
.booking-quick { display: grid; gap: 10px; margin-bottom: 18px; }
.quick-row { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.quick-row span { flex: 0 0 72px; color: var(--text-3); font-size: .7rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.quick-row button {
  min-width: 58px; height: 36px; padding: 0 12px; border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.06);
  color: var(--text-2); font: inherit; font-size: .82rem; font-weight: 800; cursor: pointer;
  transition: border-color .15s ease, background .15s ease, color .15s ease, transform .15s ease;
}
.quick-row button:hover, .quick-row button.is-on { color: #1a120a; background: var(--brass); border-color: var(--brass-hi); }
.quick-row button:active { transform: scale(.96); }
.quick-row-dates button { min-width: 92px; padding: 0 13px; }
.quick-date-main { display: block; line-height: 1; }
.quick-date-sub { display: block; margin-top: 3px; font-size: .64rem; color: currentColor; opacity: .72; line-height: 1; }
.booking-summary {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px;
  margin: 0 0 18px; padding: 10px; border-radius: var(--r-md);
  border: 1px solid rgba(213,179,111,0.18); background: rgba(213,179,111,0.07);
}
.booking-summary span {
  min-width: 0; padding: 9px 10px; border-radius: var(--r-sm);
  background: rgba(8,8,11,0.42); color: var(--text-2);
  font-size: .78rem; font-weight: 800; text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.booking-summary span.booking-summary-warning {
  grid-column: 1 / -1;
  background: rgba(143,20,39,0.16);
  border: 1px solid rgba(197,29,55,0.42);
  color: var(--bordeaux-200);
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  text-align: left;
  line-height: 1.35;
}
.booking-optional-toggle {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  margin: 0 0 12px;
  padding: 0 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font: inherit;
  font-size: .82rem;
  font-weight: 800;
}
.booking-optional-toggle-ico { width: 18px; text-align: center; font-size: 1rem; line-height: 1; }
.booking-optional { display: block; }
.booking-optional-grid { margin-bottom: 10px; }
.booking-optional .field textarea { min-height: 64px; }
.booking-newsletter { margin: 10px 0 0; }
.booking-optional.is-collapsed {
  display: none;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.74rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-2); }
.field .req { color: var(--bordeaux-hi); }
.field input, .field textarea, .field select {
  width: 100%; background: rgba(8,8,11,0.72); border: 1px solid var(--line-2); border-radius: var(--r-sm);
  color: var(--text); font-family: var(--font-sans); font-size: 1rem; padding: 12px 13px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--bordeaux-hi); box-shadow: 0 0 0 3px rgba(184,32,53,0.18); }
.field textarea { resize: vertical; min-height: 70px; }
.checks { margin: 18px 0 8px; display: flex; flex-direction: column; gap: 12px; }
.check { display: flex; align-items: flex-start; gap: 11px; font-size: 0.85rem; color: var(--text-2); cursor: pointer; }
.check input { width: 19px; height: 19px; margin: 1px 0 0; flex: none; accent-color: var(--bordeaux-hi); }
.check a { color: var(--brass); text-decoration: underline; }
.booking-wa-btn { margin-top: 10px; }
.booking-msg { margin-top: 14px; font-size: 0.9rem; }
.booking-msg.err { color: var(--bordeaux-200); }
.booking-msg.ok { color: var(--brass-hi); }
.booking-success { text-align: center; padding: 26px 10px; }
.booking-success .ic { font-size: 3rem; }
.booking-success h3 { font-family: var(--font-display); font-size: 1.9rem; margin: 12px 0 6px; }
.booking-success p { color: var(--text-2); margin: 0; }

/* ── Galleria a griglia (3 col) + lightbox ────────────────────────────── */
.gallery-grid3 { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 128px; gap: 10px; }
@media (min-width: 760px) { .gallery-grid3 { gap: 12px; grid-auto-rows: 154px; } }
.gallery-cell {
  aspect-ratio: auto; min-height: 0; border-radius: var(--r-md); overflow: hidden; cursor: pointer;
  background: var(--elevated); border: 1px solid var(--line); position: relative;
  grid-column: span 2; grid-row: span 1;
}
.gallery-cell:nth-child(1), .gallery-cell:nth-child(10), .gallery-cell:nth-child(19) { grid-column: span 3; grid-row: span 2; }
.gallery-cell:nth-child(4), .gallery-cell:nth-child(13), .gallery-cell:nth-child(22) { grid-column: span 2; grid-row: span 2; }
.gallery-cell:nth-child(7), .gallery-cell:nth-child(16), .gallery-cell:nth-child(25) { grid-column: span 4; }
.gallery-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; display: block; }
.gallery-cell:hover img { transform: scale(1.07); }
.gallery-cell.gallery-ph { display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--bordeaux-200); background: radial-gradient(circle at 40% 30%, rgba(138,24,40,0.25), var(--elevated)); }
.gallery-more { display: block; margin: 24px auto 0; }

/* Lightbox a schermo intero */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(7,7,10,0.94);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  animation: lbfade .2s ease;
}
@keyframes lbfade { from { opacity: 0; } to { opacity: 1; } }
.lb-img { max-width: 96vw; max-height: 90vh; object-fit: contain; border-radius: var(--r-md); box-shadow: var(--shadow); }
.lb-close { position: fixed; top: 16px; right: 18px; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-2); background: rgba(11,11,16,0.7); color: #fff; font-size: 1.2rem; cursor: pointer; }
.lb-arrow { position: fixed; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line-2); background: rgba(11,11,16,0.7); color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lb-arrow:hover { background: var(--bordeaux); }
.lb-prev { left: 14px; }
.lb-next { right: 14px; }
.lb-counter { position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%); color: var(--text-2); font-size: 0.85rem; font-variant-numeric: tabular-nums; background: rgba(11,11,16,0.6); padding: 5px 14px; border-radius: var(--r-pill); }
.lb-share { position: fixed; top: 16px; left: 16px; z-index: 2; display: inline-flex; align-items: center; gap: 6px; padding: 9px 15px; border-radius: var(--r-pill); border: 1px solid var(--line-2); background: rgba(11,11,16,0.7); color: #fff; font-size: 0.85rem; font-weight: 600; cursor: pointer; }
.lb-share:hover { background: var(--bordeaux); border-color: var(--bordeaux-hi); }

/* Menu condivisione (bottom-sheet su mobile, card al centro su desktop) */
.share-sheet { position: fixed; inset: 0; z-index: 400; background: rgba(0,0,0,0.65); display: flex; align-items: flex-end; justify-content: center; animation: lbfade .2s ease; }
@media (min-width: 600px) { .share-sheet { align-items: center; } }
.share-panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl) var(--r-xl) 0 0; width: 100%; max-width: 440px; padding: 24px 22px calc(24px + env(safe-area-inset-bottom, 0px)); }
@media (min-width: 600px) { .share-panel { border-radius: var(--r-xl); padding-bottom: 24px; } }
.share-title { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 18px; text-align: center; }
.share-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px; }
.share-btn { display: flex; flex-direction: column; align-items: center; gap: 7px; padding: 15px 6px; border-radius: var(--r-md); border: 1px solid var(--line); background: var(--bg-2); color: var(--text); font-size: 0.76rem; cursor: pointer; text-align: center; transition: border-color .2s ease, background .2s ease; }
.share-btn:hover { border-color: var(--brass); background: var(--elevated); }
.share-ico { font-size: 1.5rem; line-height: 1; }
.share-note { font-size: 0.74rem; color: var(--text-3); text-align: center; margin-top: 16px; line-height: 1.5; }
.share-close { display: block; width: 100%; margin-top: 16px; padding: 12px; border-radius: var(--r-pill); border: 1px solid var(--line-2); background: transparent; color: var(--text-2); font-weight: 600; cursor: pointer; }
.share-close:hover { color: var(--text); border-color: var(--brass); }

/* ── Recensioni Google ────────────────────────────────────────────────── */
.recensioni-sec.hidden { display: none; }
.reviews-card {
  max-width: 760px; margin: 0 auto; text-align: center;
  background:
    linear-gradient(160deg, rgba(23,20,25,0.94) 0%, rgba(34,15,22,0.96) 100%);
  border: 1px solid rgba(255,255,255,0.13); border-radius: var(--r-xl);
  padding: 40px 28px; box-shadow: var(--shadow);
}
.reviews-stars { color: var(--brass); font-size: 1.9rem; letter-spacing: 4px; margin-bottom: 14px; }
.reviews-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.7rem, 4.5vw, 2.4rem); margin: 8px 0 10px; }
.reviews-sub { color: var(--text-2); font-size: 1rem; margin: 0 0 24px; }
.reviews-btn { font-size: 1rem; }
.reviews-write { display: inline-block; margin-top: 16px; color: var(--text-3); font-size: 0.85rem; text-decoration: underline; }
.reviews-write:hover { color: var(--brass); }

/* ── Contatti / Orari / Mappa ─────────────────────────────────────────── */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; }
.panel { background: rgba(23,20,25,0.78); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-lg); padding: 24px; box-shadow: 0 18px 50px rgba(0,0,0,0.22); }
.panel h3 { font-family: var(--font-display); font-size: 1.5rem; margin: 0 0 16px; display: flex; align-items: center; gap: 10px; }
.hours-row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text-2); }
.hours-row .time { color: var(--text); font-variant-numeric: tabular-nums; }
.hours-row.closed .time { color: var(--text-3); }
.hours-row.today { background: rgba(201,168,106,0.07); margin: 0 -10px; padding: 9px 10px; border-radius: var(--r-sm); border-bottom: none; }
.hours-row.today .day { color: var(--brass-hi); font-weight: 700; }
.info-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.info-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: var(--text-2); }
.info-list .ic { font-size: 1.15rem; line-height: 1.3; flex: none; }
.info-list a:hover { color: var(--brass-hi); }
.map { margin-top: 18px; border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); }
.map iframe { width: 100%; height: 230px; border: 0; display: block; filter: grayscale(0.3) contrast(1.05); }
.socials { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.social-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 15px; border-radius: var(--r-pill); border: 1px solid var(--line-2); font-size: 0.85rem; font-weight: 600; color: var(--text); transition: border-color .2s ease, color .2s ease; }
.social-btn:hover { border-color: var(--brass); color: var(--brass-hi); }

/* ── Newsletter ───────────────────────────────────────────────────────── */
.nl { background: linear-gradient(160deg, #1F1116 0%, var(--bg) 70%); }
.nl-card { max-width: 680px; margin: 0 auto; text-align: center; }
.nl-form { display: flex; gap: 11px; max-width: 480px; margin: 22px auto 14px; flex-wrap: wrap; }
.nl-form input { flex: 1; min-width: 200px; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: var(--r-pill); color: var(--text); padding: 13px 20px; font-size: 1rem; font-family: var(--font-sans); }
.nl-form input:focus { outline: none; border-color: var(--brass); }
.nl-check { font-size: 0.78rem; color: var(--text-3); display: inline-flex; align-items: center; gap: 8px; justify-content: center; }
.nl-check input { accent-color: var(--brass); width: 16px; height: 16px; }
.nl-msg { margin-top: 12px; font-size: 0.9rem; min-height: 20px; }

/* ── Footer ───────────────────────────────────────────────────────────── */
.footer { border-top: 1px solid var(--line); padding: 46px 0 34px; background: var(--bg-2); }
.footer-inner { display: flex; flex-wrap: wrap; gap: 22px; justify-content: space-between; align-items: center; }
.footer .brand-name { font-size: 1.6rem; }
.footer-meta { font-size: 0.78rem; color: var(--text-3); text-align: right; }
.footer-meta a { color: var(--text-3); }
.footer-meta a:hover { color: var(--brass); }
.staff-link { opacity: .55; font-size: 0.72rem; }

/* ── Floating WhatsApp ────────────────────────────────────────────────── */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #052b12;
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.5); transition: transform .2s ease;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.wa-float:hover { transform: scale(1.08); }

.mobile-dock { display: none; }

/* ── Spinner ──────────────────────────────────────────────────────────── */
.spin { width: 17px; height: 17px; border: 2px solid rgba(255,255,255,.35); border-top-color: #fff; border-radius: 50%; display: inline-block; animation: rot .7s linear infinite; }
@keyframes rot { to { transform: rotate(360deg); } }

/* ── Reveal on scroll ─────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .contacts-grid { grid-template-columns: 1fr; }
  .event-popup {
    align-items: flex-end; padding: 12px 12px calc(92px + env(safe-area-inset-bottom, 0px));
  }
  .event-popup__panel {
    width: 100%; max-height: calc(100svh - 114px - env(safe-area-inset-bottom, 0px));
    grid-template-columns: 1fr; border-radius: var(--r-md);
  }
  .event-popup__media {
    min-height: 210px; max-height: 34svh; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.12);
  }
  .event-popup__body {
    max-height: calc(100svh - 114px - env(safe-area-inset-bottom, 0px)); padding: 22px;
  }
  .event-popup__title { margin-right: 36px; font-size: clamp(2rem, 10vw, 2.9rem); }
  .event-popup__actions { display: grid; grid-template-columns: 1fr; }
  .event-popup__actions .btn { width: 100%; min-width: 0; }
  .brand-sub { display: none; }
  .top-actions .badge-open { display: none; }
  .top-menu { display: none; }
  .hero {
    min-height: 100svh;
    align-items: flex-end;
  }
  .hero-bg { background-position: center top; }
  .hero-bg::before { background: linear-gradient(180deg, rgba(5,5,8,0.20) 0%, rgba(5,5,8,0.38) 34%, rgba(5,5,8,0.91) 100%); }
  .hero-content {
    padding-top: 78px;
    padding-bottom: 68px;
    max-width: 100%;
  }
  .hero-kicker { margin-bottom: 12px; }
  .hero-title { font-size: clamp(2.55rem, 13.8vw, 4rem); margin-bottom: 14px; }
  .hero-sub { font-size: 1rem; margin-bottom: 18px; max-width: 24ch; }
  .hero-cta .btn { width: 100%; }
  .hero-status { align-items: flex-start; margin-top: 14px; }
  .hero-address { display: none; }
  .hero-metrics { display: none; }
  .hero-event {
    grid-template-columns: auto 1fr;
    align-items: start;
    padding: 12px;
    gap: 11px;
    margin-bottom: 14px;
  }
  .hero-event.is-compact {
    grid-template-columns: auto 1fr;
    align-items: center;
  }
  .hero-event.is-compact .hero-event__date {
    width: 48px;
    height: 48px;
  }
  .hero-event__poster { width: 64px; height: 74px; }
  .hero-event__copy small { font-size: .62rem; letter-spacing: .12em; }
  .hero-event__copy strong { font-size: .92rem; white-space: normal; }
  .hero-event__copy span { font-size: .73rem; }
  .hero-event__cta { grid-column: 1 / -1; width: 100%; }
  .hero-event__copy strong { white-space: normal; }
  .hero-photo-strip { display: none; }
  .experience-layout { grid-template-columns: 1fr; gap: 28px; }
  .experience-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 150px; }
  .mosaic-main { grid-column: 1 / 3; grid-row: 1; }
  .promo-section { padding: 66px 0; }
  .promo-layout { grid-template-columns: 1fr; min-height: 0; border-top-color: rgba(213,179,111,0.25); }
  .promo-media { min-height: 252px; }
  .promo-media::after { background: linear-gradient(180deg, rgba(8,8,11,0.04), rgba(8,8,11,0.88)); }
  .promo-copy { padding: 28px 22px 34px; }
  .promo-copy::before { left: 22px; right: 22px; top: 0; bottom: auto; width: auto; height: 1px; }
  .promo-top { gap: 9px; margin-bottom: 13px; }
  .promo-badge { min-height: 28px; font-size: .65rem; }
  .promo-title { font-size: clamp(2.05rem, 12vw, 3.35rem); }
  .promo-copy .btn { width: 100%; }
  .moments-grid { grid-template-columns: 1fr; gap: 11px; }
  .moment-card { min-height: 0; padding: 20px 18px 18px; }
  .moment-num { margin-bottom: 14px; }
  .moment-card h3 { font-size: 1.5rem; }
  .moment-card p { margin-bottom: 18px; }
  .moment-cta { width: 100%; }
  .trust-strip { padding-top: 18px; }
  .trust-layout { grid-template-columns: 1fr; gap: 14px; padding-top: 22px; padding-bottom: 22px; }
  .trust-points { grid-template-columns: 1fr; gap: 8px; }
  .trust-point { min-height: 0; }
  .trust-link { width: 100%; justify-self: stretch; }
  .menu-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .booking-wrap { grid-template-columns: 1fr; }
  .booking-side {
    min-height: 190px;
    order: 2;
  }
  .booking-card {
    order: 1;
    padding: 22px 18px 20px;
    border-radius: 18px;
  }
  .booking-side-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .booking-side-copy h3 { font-size: 1.55rem; }
  .booking-side-copy p { font-size: .88rem; }
  .booking-event-chip { margin-bottom: 14px; padding: 10px 12px; }
  .booking-event-chip b { font-size: .95rem; }
  .booking-optional-toggle { display: inline-flex; }
  .booking-optional.is-collapsed { display: none; }
  .booking-optional.is-open { display: block; }
  .quick-row span { flex-basis: 100%; }
  .quick-row button { flex: 1; min-width: 0; }
  .quick-row-dates button { flex: 1 1 calc(33.333% - 8px); min-width: 0; height: 46px; }
  .booking-summary { grid-template-columns: 1fr; gap: 6px; padding: 8px; }
  .booking-summary span { min-height: 38px; display: flex; align-items: center; justify-content: center; }
  .gallery-grid3 { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 148px; gap: 8px; }
  .gallery-cell,
  .gallery-cell:nth-child(1),
  .gallery-cell:nth-child(4),
  .gallery-cell:nth-child(7),
  .gallery-cell:nth-child(10),
  .gallery-cell:nth-child(13),
  .gallery-cell:nth-child(16),
  .gallery-cell:nth-child(19),
  .gallery-cell:nth-child(22),
  .gallery-cell:nth-child(25) { grid-column: span 1; grid-row: span 1; }
  .gallery-cell:nth-child(1), .gallery-cell:nth-child(8), .gallery-cell:nth-child(15) { grid-column: span 2; grid-row: span 2; }
  .wa-float { display: none !important; }
  .mobile-dock {
    position: fixed; left: 12px; right: 12px; bottom: calc(10px + env(safe-area-inset-bottom, 0px)); z-index: 80;
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; padding: 7px;
    border-radius: 18px; background: rgba(8,8,11,0.82); border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(18px) saturate(1.15); -webkit-backdrop-filter: blur(18px) saturate(1.15);
    box-shadow: 0 18px 60px rgba(0,0,0,0.46);
  }
  .mobile-dock a { display: flex; align-items: center; justify-content: center; min-height: 44px; border-radius: 13px; font-size: .82rem; font-weight: 800; background: rgba(255,255,255,0.07); color: var(--text); }
  .mobile-dock a:first-child { background: linear-gradient(135deg, var(--bordeaux-hi), #76101F); color: #fff; }
  .scroll-hint { display: none; }
  body { padding-bottom: 92px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-meta { text-align: center; }
}
@media (max-width: 420px) {
  .top-actions .btn-label { display: none; }
  .top-actions .btn { padding: 10px 13px; }
  .hero-content { padding-top: 68px; padding-bottom: 88px; }
  .hero-title { font-size: clamp(2.35rem, 13vw, 3.55rem); }
  .hero-sub { max-width: 22ch; }
  .booking-card { padding: 20px 16px 18px; }
  .booking-summary { margin-bottom: 14px; }
  .booking-optional-toggle { min-height: 40px; font-size: .78rem; }
  .booking-event-chip b { font-size: .92rem; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
