.progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--gold);
  z-index: 200;
  transition: width 0.2s ease;
}

#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: linear-gradient(to bottom, rgba(10,6,4,1) 0%, rgba(10,6,4,0.95) 60%, transparent 100%);
}

.nav-logo {
  display: flex;
  justify-content: center;
  grid-column: 2;
}

.nav-logo img {
  height: 90px;
  width: auto;
  display: block;
}

.nav-dots {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: flex-end;
  grid-column: 3;
}

.nav-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--muted);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.nav-dot.active {
  background: var(--gold);
  transform: scale(1.5);
}

@media (max-width: 767px) {
  #nav {
    padding: 0.6rem 1.2rem;
    background: rgba(10,6,4,0.97);
  }
  .nav-logo img { height: 44px; }
  .nav-dot { width: 6px; height: 6px; }
}