* { margin: 0; padding: 0; box-sizing: border-box; }
  html, body { width: 100%; }
  body {
    background: #081315;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #ffffff;
    min-height: 100vh;
  }
  a { color: inherit; text-decoration: none; }

  /* ===== Stage = rapporto fisso 1920:1913 ===== */
  .stage {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    aspect-ratio: 1920 / 1913;
    background: #000;
    overflow: hidden;
  }

  /* ===== Sfondo (foto + cornice oro) ===== */
  .layer-bg {
    position: absolute;
    inset: 0;
    background-image: url('IMG/landing-sfondo.jpg');
    background-size: cover;
    background-position: center top;
    z-index: 1;
  }

  /* ===== Overlay testi: blend "lighten" ===== */
  /* Nero (0,0,0) -> trasparente, bianco/oro restano visibili */
  .layer-text {
    position: absolute;
    inset: 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    mix-blend-mode: lighten;
    z-index: 2;
    pointer-events: none;
  }
  .layer-logo  { background-image: url('../IMG/landing-sfondo.jpg'); }
  .layer-foot  { background-image: url('../IMG/scritte_italiano.png'); }

  /* ===== Selettore lingua (HTML, posizione alto-centro) ===== */
  .lang-switcher {
    position: absolute;
    top: 1.7%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-size: clamp(11px, 0.9vw, 16px);
    letter-spacing: 1px;
    cursor: pointer;
    user-select: none;
    padding: 4px 8px;
  }
  .lang-switcher .flag {
    width: clamp(14px, 1.1vw, 20px);
    height: clamp(14px, 1.1vw, 20px);
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.25);
  }
  .lang-switcher .flag svg { width: 100%; height: 100%; display: block; }
  .lang-switcher .caret { font-size: 0.7em; opacity: 0.85; }

  .lang-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 6px;
    min-width: 90px;
    background: rgba(13, 28, 28, 0.95);
    border: 1px solid rgba(201, 162, 39, 0.45);
    display: none;
  }
  .lang-dropdown.open { display: block; }
  .lang-dropdown .opt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: clamp(11px, 0.85vw, 14px);
    white-space: nowrap;
  }
  .lang-dropdown .opt:hover { background: rgba(201, 162, 39, 0.15); }

  /* ===== Aree cliccabili invisibili sopra i bottoni dell'immagine ===== */
  /* Bottone "Consulta il listino" - posizione approssimativa sull'immagine 1920x1913 */
  .hit-cta {
    position: absolute;
    z-index: 5;
    left: 41.4%;
    top: 44.6%;
    width: 17.2%;
    height: 2.5%;
    cursor: pointer;
    background: transparent;
    transition: background 0.25s ease;
  }
  .hit-cta:hover { background: rgba(201, 162, 39, 0.18); }

  /* Social icons del footer */
  .hit-social {
    position: absolute;
    z-index: 5;
    width: 1.7%;
    height: 1.7%;
    cursor: pointer;
    background: transparent;
    border-radius: 4px;
    transition: background 0.25s ease;
  }
  .hit-social:hover { background: rgba(255,255,255,0.15); }

  .hit-fb { left: 47.0%; top: 84.3%; }
  .hit-ig { left: 49.3%; top: 84.3%; }
  .hit-yt { left: 51.6%; top: 84.3%; }

  /* ===== Toast notifica ===== */
  .toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 28, 28, 0.95);
    border: 1px solid #c9a227;
    color: #fff;
    padding: 12px 20px;
    font-size: 14px;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .toast.show { opacity: 1; }

  @media (max-width: 600px) {
    .lang-switcher { top: 1.5%; padding: 6px 10px; }
  }