
  /* ── PAGE LOADER ────────────────────────────── */
  #loader {
    position: fixed;
    inset: 0;
    background: #DDBC44;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
  }
  .loader-name {
    font-family: 'Inter', sans-serif;
    font-size: clamp(32px, 6vw, 80px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    opacity: 0;
    transform: translateY(20px);
  }
  .loader-bar-wrap {
    width: 200px;
    height: 1px;
    background: rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
  }
  .loader-bar {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    background: #fff;
    width: 0;
  }
  .loader-counter {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.2em;
  }