/* Urban Luksus chrome: header mark + glass watermark (text shows through) */
.ul-header-mark {
  height: 2.25rem;
  max-height: 2.25rem;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  object-position: left center;
}
@media (min-width: 640px) {
  .ul-header-mark {
    height: 2.5rem;
    max-height: 2.5rem;
  }
}
.ul-header-word {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
}
@media (min-width: 640px) {
  .ul-header-word {
    font-size: 0.95rem;
  }
}
/* Glass watermark: logo shape as mask + translucent gold fill */
.ul-watermark {
  position: fixed;
  inset: 0;
  z-index: 25;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: hidden;
}
.ul-watermark-glass {
  width: min(42vmin, 420px);
  aspect-ratio: 720 / 884;
  background: rgba(212, 175, 55, 0.14);
  -webkit-mask-image: url("/brand/logo.png");
  mask-image: url("/brand/logo.png");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mix-blend-mode: soft-light;
}
