    /* =============================================
       HEADER — fisso, social + logo + hamburger
       ============================================= */
    .header {
      /* STICKY (non fixed): su iOS Safari l'header fisso "lampeggiava" lasciando
         intravedere il contenuto durante lo scroll. Sticky scorre nel flusso e
         resta stabile in cima. Layout identico a prima (vedi offset rimossi sotto). */
      position: sticky;
      top: 0;
      z-index: 200;
      height: var(--header-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 22px;
      /* topbar volutamente NERA caratteristica (#0B0A09), non il bruno caldo del corpo:
         il lift luminosità è solo sul corpo, l'header in alto resta scuro/neutro. */
      background: #0B0A09;
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      transition: border-color 0.4s;
    }

    .header.solid {
      border-bottom-color: rgba(255, 255, 255, 0.04);
    }

    /* Social icons — left */
    .header-social {
      display: flex;
      flex-direction: column;
      gap: 12px;
      width: 50px;
    }

    .header-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      color: rgba(237, 232, 224, 0.75);
      transition: color 0.25s;
    }
    .header-social a:active { color: rgba(237, 232, 224, 0.8); }
    .header-social svg { width: 20px; height: 20px; }

    /* Logo center */
    .header-center {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }
    .header-logo-link {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 3px;
      text-decoration: none;
      color: inherit;
      cursor: pointer;
    }

    .header-logo {
      height: 64px;
      width: auto;
      filter: brightness(0) invert(1);
      opacity: 0.95;
    }

    .header-subtitle {
      font-family: var(--font-body);
      font-size: 8px;
      font-weight: 300;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(237, 232, 224, 0.4);
      white-space: nowrap;
    }

    /* Hamburger — right */
    .header-hamburger {
      width: 50px;
      display: flex;
      justify-content: flex-end;
    }

    .hamburger-btn {
      background: none;
      border: none;
      width: 36px;
      height: 36px;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: center;
      gap: 6px;
      cursor: pointer;
      padding: 0;
    }

    .hamburger-btn span {
      display: block;
      height: 1px;
      background: rgba(237, 232, 224, 0.9);
      transition: all 0.3s;
    }
    .hamburger-btn span:nth-child(1) { width: 26px; }
    .hamburger-btn span:nth-child(2) { width: 19px; }
    .hamburger-btn span:nth-child(3) { width: 26px; }

    .hamburger-btn.open span:nth-child(1) { width: 26px; transform: translateY(7px) rotate(45deg); }
    .hamburger-btn.open span:nth-child(2) { opacity: 0; width: 0; }
    .hamburger-btn.open span:nth-child(3) { width: 26px; transform: translateY(-7px) rotate(-45deg); }

    /* =============================================
       DRAWER MENU — slide from right
       ============================================= */
    .drawer-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      z-index: 190;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s;
    }
    .drawer-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }

    .drawer {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: min(220px, 58vw);
      background: #151311;
      z-index: 195;
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      border-left: 1px solid rgba(201,168,76,0.08);
    }
    .drawer.open { transform: translateX(0); }

    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 28px;
      border-bottom: 1px solid rgba(201,168,76,0.08);
    }

    .drawer-logo {
      height: 32px;
      filter: brightness(0) invert(1);
      opacity: 0.9;
    }

    .drawer-close {
      background: none;
      border: none;
      color: rgba(237,232,224,0.4);
      font-size: 24px;
      font-weight: 300;
      line-height: 1;
      cursor: pointer;
      padding: 4px;
    }

    .drawer-nav {
      flex: 1;
      padding: 32px 0;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .drawer-nav a {
      display: block;
      padding: 18px 32px;
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 300;
      letter-spacing: 3px;
      color: rgba(237,232,224,0.65);
      text-decoration: none;
      text-transform: uppercase;
      transition: color 0.25s, padding-left 0.25s;
    }
    .drawer-nav a:hover {
      color: var(--gold-soft);
    }
    .drawer-nav a:active {
      color: var(--gold);
      padding-left: 38px;
    }

    .drawer-social-label {
      font-family: var(--font-body);
      font-size: 9px;
      font-weight: 400;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(237,232,224,0.45);
      text-align: center;
      padding: 0 24px 12px;
    }

    .drawer-brands {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 18px;
      padding: 0 0 16px;
    }

    .drawer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .drawer-brand-logo {
      height: 28px;
      width: auto;
      filter: brightness(0) invert(1);
      opacity: 0.75;
    }
    .drawer-brand-logo-arena {
      height: 36px;
      margin: -4px 0;
    }

    .drawer-brand-handle {
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 300;
      color: rgba(237,232,224,0.35);
      letter-spacing: 0.5px;
    }

    .drawer-footer {
      padding: 24px 24px calc(24px + var(--safe-bottom));
      border-top: 1px solid rgba(201,168,76,0.08);
    }

    .drawer-book-btn {
      display: block;
      text-align: center;
      padding: 14px 12px;
      font-family: var(--font-body);
      font-size: 9px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--bg);
      background: var(--gold);
      text-decoration: none;
      white-space: nowrap;
      transition: opacity 0.25s;
    }
    .drawer-book-btn:active { opacity: 0.8; }

    .drawer-info {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .drawer-info-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .drawer-info-row svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
      color: rgba(237,232,224,0.25);
      margin-top: 1px;
    }

    .drawer-info-row span {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 300;
      color: rgba(237,232,224,0.35);
      line-height: 1.5;
    }

    .drawer-info-row a {
      color: rgba(237,232,224,0.45);
      text-decoration: none;
    }

    .drawer-hours-grid {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 4px 10px;
      font-family: var(--font-body);
      font-size: 10.5px;
      font-weight: 300;
      line-height: 1.4;
    }
    .dh-day {
      color: rgba(237,232,224,0.45);
      white-space: nowrap;
    }
    .dh-time {
      color: rgba(237,232,224,0.3);
      white-space: nowrap;
    }
    .dh-closed {
      color: rgba(237,232,224,0.2);
      font-style: italic;
    }

    /* =============================================
       HERO — grande, immersivo, foto locale
       ============================================= */
    .hero {
      position: relative;
      height: calc(100svh - var(--header-h));
      min-height: 400px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background: #15110C;
      overflow: hidden;
      z-index: 0;
    }

    .hero-bg video {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* preview luminosità: hero meno spenta (0.45→0.62) e più viva (sat 0.75→0.88) */
      filter: brightness(0.62) saturate(0.88);
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      /* preview luminosità: velo più leggero — la foto si vede, CTA in basso ancora leggibile */
      background:
        radial-gradient(ellipse at center, transparent 28%, rgba(11,10,9,0.34) 100%),
        linear-gradient(to bottom, rgba(11,10,9,0.28) 0%, transparent 32%, transparent 52%, rgba(11,10,9,0.72) 100%);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      width: 100%;
      padding: 0 20px;
    }

    .hero-spacer { flex: 1; }

    /* === HERO TEXT — frase fissa, elegante, subito visibile === */
    .hero-phrase {
      position: relative;
      z-index: 2;
      text-align: center;
      animation: fadeUp 1s ease-out 0.3s both;
    }

    .hero-phrase-text {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 300;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: rgba(237, 232, 224, 0.85);
      text-shadow: 0 1px 18px rgba(0,0,0,0.6);
    }

    /* === CTA — subito visibile, pulito === */
    .hero-cta {
      margin-bottom: calc(24px + var(--safe-bottom));
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      position: relative;
      z-index: 3;
      animation: fadeUp 1s ease-out 0.6s both;
    }

    .hero-cta-btn {
      display: inline-block;
      padding: 13px 36px;
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 400;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(237, 232, 224, 0.85);
      text-decoration: none;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 0;
      transition: all 0.3s;
      backdrop-filter: blur(6px);
      background: rgba(255, 255, 255, 0.05);
    }
    .hero-cta-btn:active {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.35);
    }

    /* Variante primaria: bottone oro pieno per il CTA principale (prenota).
       Coerente con la palette brand (#C9A84C) e accenta la conversione senza
       rompere l'eleganza della hero (stesso font, stesso letter-spacing). */
    .hero-cta-btn--primary {
      color: #15110C;
      background: #C9A84C;
      border-color: #C9A84C;
      font-weight: 500;
    }
    .hero-cta-btn--primary:active {
      background: #b89740;
      border-color: #b89740;
    }

    .hero-cta-arrow {
      width: 12px;
      height: 12px;
      border-right: 1px solid rgba(237, 232, 224, 0.35);
      border-bottom: 1px solid rgba(237, 232, 224, 0.35);
      transform: rotate(45deg);
      animation: arrowPulse 2.5s ease-in-out infinite;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* =============================================
       HERO DESKTOP/TABLET (≥768px) — video verticale NITIDO al centro + lati ambient
       Il video è 540×960 (verticale, pensato per mobile): a tutta larghezza si
       sgranava (upscaling ~3,5×). Qui sta in una colonna verticale a larghezza
       ~nativa = nitido, e i lati sono riempiti dallo STESSO poster sfocato/scurito
       (stile "now playing": la sfocatura nasconde del tutto la bassa risoluzione).
       La versione MOBILE (<768px) resta IDENTICA a prima.
       ============================================= */
    @media (min-width: 768px) {
      /* sfondo ambient full-bleed: poster sfocato e scuro */
      .hero::before {
        content: '';
        position: absolute;
        inset: -60px;            /* bleed: il blur non lascia bordi vuoti (clippato da .hero overflow:hidden) */
        z-index: 0;
        background: url("../images/locale-poster.webp") center / cover no-repeat;
        filter: blur(46px) brightness(0.42) saturate(1.15);
        transform: scale(1.06);
      }
      /* colonna video verticale, centrata e nitida */
      .hero-bg {
        top: 0;
        bottom: auto;
        left: 50%;
        right: auto;
        width: auto;
        height: 100%;
        aspect-ratio: 540 / 960;
        transform: translateX(-50%);
        z-index: 1;
        box-shadow: 0 0 90px rgba(0, 0, 0, 0.55);
      }
      .hero-bg video {
        filter: brightness(0.7) saturate(0.95);  /* incorniciato → un filo più chiaro del mobile */
      }
      /* vignette e contenuto sopra i due layer */
      .hero::after { z-index: 2; }
      .hero-content { z-index: 3; }
    }

