/* Peculiar Storage — base styles */

html { scroll-behavior: smooth; }

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Display font letter spacing for that classic, industrial look */
.font-display {
  letter-spacing: 0.02em;
}

/* Ensure iframes are responsive */
iframe { display: block; }

/* Smooth open/close on details */
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }

/* Focus rings for keyboard navigation */
*:focus-visible {
  outline: 2px solid #F5C518;
  outline-offset: 2px;
  border-radius: 2px;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Print friendly */
@media print {
  header, footer, #contact-form, .no-print { display: none !important; }
}
