/* CH1: Gallery — Gold (#D4AF37) */
.gallery-page { --ch-color: var(--ch1); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--sp-4); }
.gallery-card { background: var(--surface); border-radius: var(--r-lg); overflow: hidden; transition: transform var(--dur-normal) var(--ease-out); }
.gallery-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(212,175,55,0.15); }
.gallery-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.gallery-card__info { padding: var(--sp-4); }
.gallery-card__title { font-family: var(--font-art); font-size: var(--text-h3); color: var(--text); }
.gallery-card__price { color: var(--ch1); font-weight: var(--w-semibold); margin-top: var(--sp-2); }
