/* Smooth scroll for in-page anchors */
html { scroll-behavior: smooth; }

/* Selection */
::selection {
  background-color: #caa247;
  color: #0b0a09;
}

/* Hero parallax-ish subtle zoom */
.hero-img {
  animation: heroZoom 24s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-img { animation: none !important; }
}

/* Form focus polish */
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

/* Subtle scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Display font fine-tune for Korean weight */
.font-display { letter-spacing: -0.01em; }
