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

.phonolux-header-accent {
  height: 3px;
  width: 100%;
  background-color: var(--color-accent);
}

@media (min-width: 768px) {
  .phonolux-header-accent {
    height: 4px;
  }
}

.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-pillar__frame {
  border: 1px solid color-mix(in oklch, var(--color-base-content) 38%, transparent);
  transition:
    border-color 180ms cubic-bezier(0.25, 1, 0.5, 1),
    box-shadow 180ms cubic-bezier(0.25, 1, 0.5, 1);
}

.phonolux-service-pillar:hover .phonolux-service-pillar__frame {
  border-color: color-mix(in oklch, var(--color-base-content) 72%, transparent);
}

.phonolux-service-pillar__label {
  font-size: clamp(0.6875rem, 1.6vw, 0.8125rem);
}

.phonolux-service-pillar:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

.phonolux-catalog-banner {
  background-color: #0a0a0a;
}

.phonolux-catalog-banner__media {
  position: absolute;
  inset: -12% 0;
  z-index: 0;
  height: 124%;
  overflow: hidden;
}

.phonolux-catalog-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, var(--phonolux-banner-shift, 0px), 0) scale(1.08);
  will-change: transform;
}

.phonolux-catalog-banner__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.55) 0%,
    rgba(10, 10, 10, 0.72) 45%,
    rgba(10, 10, 10, 0.88) 100%
  );
}

.phonolux-catalog-banner__content {
  text-shadow: 0 1px 24px rgba(0, 0, 0, 0.35);
}

.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;
  }

  .phonolux-service-pillar__frame img {
    transition: none;
  }

  .phonolux-catalog-banner__image {
    transform: scale(1.05);
  }
}
