/* ============================================================
   MODERN RESET
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;            /* bottomless void — no scroll */
  background-color: #050507;   /* obsidian */
}

body {
  font-family: "Helvetica Neue", "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ============================================================
   THE CANVAS — exactly 100vw x 100vh, fixed to the void
   ============================================================ */
#rose-canvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: block;
  z-index: 1;
  touch-action: none;          /* allow custom pointer interaction */
}

/* ============================================================
   SR-ONLY — hidden from sight, fully read by Googlebot & AT.
   No display:none (which would strip it from the a11y/SEO tree).
   Uses the clip + 1px technique.
   ============================================================ */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   METALLIC WATERMARK — minimal, unobtrusive, bottom-right
   ============================================================ */
.watermark {
  position: fixed;
  bottom: 22px;
  right: 26px;
  z-index: 10;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  user-select: none;
  pointer-events: none;

  /* soft metallic base */
  color: rgba(212, 175, 55, 0.55);
}

.watermark span {
  font-weight: 500;

  /* brushed-gold gradient text */
  background: linear-gradient(
    100deg,
    #8a6d1f 0%,
    #d4af37 30%,
    #fff3c4 50%,
    #d4af37 70%,
    #8a6d1f 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Respect reduced-motion: dampen the watermark shimmer gracefully */
@media (prefers-reduced-motion: reduce) {
  .watermark { opacity: 0.7; }
}

@media (max-width: 600px) {
  .watermark {
    bottom: 16px;
    right: 16px;
    font-size: 9px;
    letter-spacing: 0.16em;
  }
}