/* Placeholder styling -- functional only. Real visual design comes from a
   dedicated mockup/design pass (see project plan) before this ships. */

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  color: #222;
  background: #fafaf8;
}
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #ddd;
}
.site-title { font-size: 1.25rem; font-weight: bold; text-decoration: none; color: inherit; }
.site-nav a { margin-left: 1rem; text-decoration: none; color: inherit; }
main { max-width: 1100px; margin: 0 auto; padding: 1.5rem; }
.hero { text-align: center; padding: 3rem 1rem; }
.category-grid, .piece-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.category-tile, .piece-tile { text-decoration: none; color: inherit; display: block; }
.category-tile img, .piece-tile img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.category-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 0.5rem; margin: 1rem 0; }
.category-gallery img { width: 100%; height: auto; }
.category-hero img { width: 100%; max-height: 420px; object-fit: cover; }
.piece-images img { width: 100%; height: auto; margin-bottom: 0.5rem; }
.piece-nav { display: flex; justify-content: space-between; margin-top: 2rem; }
.site-footer { text-align: center; padding: 2rem; color: #888; font-size: 0.85rem; }
.about-page { display: flex; gap: 2rem; align-items: flex-start; flex-wrap: wrap; }
.about-photo { width: 260px; height: 260px; object-fit: cover; border-radius: 4px; }
.about-bio { flex: 1; min-width: 260px; line-height: 1.6; }

@media (max-width: 600px) {
  .category-grid, .piece-grid { grid-template-columns: repeat(2, 1fr); }
}
