.phonolux-front {
  font-family: Commissioner, system-ui, sans-serif;
}

.phonolux-hero {
  min-height: 85vh;
}

.phonolux-hero-scrim {
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.35) 45%,
    rgba(10, 10, 10, 0.15) 100%
  );
}

.phonolux-hero-poster {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 600ms cubic-bezier(0.25, 1, 0.5, 1);
}

.phonolux-hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #0a0a0a;
}

.phonolux-hero.is-playing .phonolux-hero-poster {
  opacity: 0;
  pointer-events: none;
}

.phonolux-service-card {
  transition:
    box-shadow 180ms cubic-bezier(0.25, 1, 0.5, 1),
    transform 180ms cubic-bezier(0.25, 1, 0.5, 1);
}

.phonolux-service-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  transform: translateY(-2px);
}

.phonolux-catalog-card {
  transition: box-shadow 180ms cubic-bezier(0.25, 1, 0.5, 1);
}

.phonolux-catalog-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.phonolux-nav-link {
  border-bottom: 2px solid transparent;
  transition:
    color 180ms cubic-bezier(0.25, 1, 0.5, 1),
    border-color 180ms cubic-bezier(0.25, 1, 0.5, 1);
}

.phonolux-nav-link:hover {
  color: var(--color-primary);
}

.phonolux-nav-link.is-active {
  border-bottom-color: var(--color-accent);
}

.phonolux-lang-switcher a {
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  .phonolux-hero-video {
    display: none;
  }

  .phonolux-service-card:hover,
  .phonolux-catalog-card:hover {
    transform: none;
  }
}
