/* ============================================================
 * holding.css — The Black Rose Stage 1 Holding Page
 * ============================================================
 *
 * One image. Two words. No invitation to click.
 * The page is complete the moment it loads.
 *
 * ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  cursor: default;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #EDE4D3;
  overflow: hidden;
  cursor: default;
}

img,
picture {
  display: block;
}

.holding,
.holding * {
  cursor: default;
}

.holding {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  background-color: #EDE4D3;
}

.holding__art,
.holding__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.holding__image {
  object-fit: cover;
  object-position: 15% 10%;
  pointer-events: none;
}

.holding__note {
  position: absolute;
  left: 57%;
  top: 77%;
  margin: 0;
  font-family: 'Kalam', var(--font-handwritten);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #1A1A2E;
  opacity: 0;
  filter: blur(0.01875rem);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  animation: holding-note-fade 2.8s ease-in-out 1.2s forwards;
}

@keyframes holding-note-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 0.85;
  }
}

@media (min-width: 48rem) {
  .holding__image {
    object-position: 20% 15%;
  }

  .holding__note {
    left: 60%;
    top: 73%;
    font-size: 2.8rem;
  }
}

@media (min-width: 64rem) {
  .holding__note {
    left: 64%;
    top: 72%;
    font-size: 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .holding__note {
    animation: none;
    opacity: 0.85;
  }
}
