/* Soft anti-copy layer. This only deters casual copying; it is not DRM. */
body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input,
textarea,
[contenteditable="true"] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

img,
svg {
  -webkit-user-drag: none;
  user-select: none;
}

/* Shared JS-driven UI states without inline style mutations. */
.nav.is-scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-links.is-mobile-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  background: white;
  padding: 20px 40px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  gap: 20px;
  z-index: 99;
}

.object-pos-center-center {
  object-position: center center !important;
}

.object-pos-center-42 {
  object-position: center 42% !important;
}
