.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  overflow: visible;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: #facc15;
  color: #18181b;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}
.hover-lift {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.btn-premium {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  #mobile-menu-button-container {
    display: none !important;
  }
}
