/* ── Custom Cursor ── */
#cursor { pointer-events: none; position: fixed; z-index: 99999; top: 0; left: 0; }

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
}

.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

.cursor-ring.hover {
  width: 56px;
  height: 56px;
  border-color: rgba(201,168,76,0.8);
}

@media (hover: none) {
  #cursor { display: none; }
}
