/* dreamthinkimagine.com — micro-polish layer (2026-07-06 quality pass)
   Additive only: loaded after the Zephyr theme CSS. Restrained on purpose —
   the design stays the design; these are texture-level upgrades. */

/* Smoother in-page anchor travel (theme uses #anchors on long pages) */
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* Crisper type rendering across the board */
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* Visible keyboard focus (accessibility polish; matches site accent) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid #9e78ee;
  outline-offset: 2px;
}

/* Portfolio & blog cards: gentle lift + depth on hover (desktop only) */
.w-grid-item-h {
  transition: transform .28s ease, box-shadow .28s ease;
}
.no-touch .w-grid-item:hover .w-grid-item-h {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(20, 10, 60, .16);
}
@media (prefers-reduced-motion: reduce) {
  .w-grid-item-h { transition: none; }
  .no-touch .w-grid-item:hover .w-grid-item-h { transform: none; }
}

/* Comfortable tap targets for the footer social icons on small screens */
@media (max-width: 600px) {
  .w-socials-item-link { min-width: 44px; min-height: 44px; }
}
