/**
 * FK watermark — site header monogram overlay (reversed F + K).
 * Scales with image container; does not affect art image layout.
 */
/* Scope host only — no container-type here (breaks w-fit hero frames). */
.fk-watermark-scope {
  /* Positioning comes from existing layout classes on each host. */
}

.fk-watermark {
  position: absolute;
  right: clamp(12px, 2.5%, 20px);
  bottom: clamp(12px, 2.5%, 20px);
  z-index: 11;
  pointer-events: none;
  user-select: none;
  opacity: 0.35;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.28));
}

/* Same monogram rules as site header — scoped under .fk-watermark */
.fk-watermark .fk-monogram {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--fk-wm-size, clamp(0.825rem, 2.75vmin, 3.025rem));
  font-weight: 300;
  line-height: 1;
  color: #f5f5f5;
  display: inline-flex;
  align-items: baseline;
  letter-spacing: 0;
  white-space: nowrap;
}

.fk-watermark .fk-mono-f,
.fk-watermark .fk-mono-k {
  font: inherit;
  display: inline-block;
  line-height: 1;
}

.fk-watermark .fk-mono-f {
  clip-path: inset(0 0 12% 0);
}

.fk-watermark .fk-mono-f-glyph {
  display: inline-block;
  transform: scaleX(-1);
}

.fk-watermark .fk-mono-k {
  clip-path: inset(0 0 0 30%);
  margin-left: -0.28em;
}

@media (prefers-reduced-motion: reduce) {
  .fk-watermark {
    filter: none;
  }
}
