/* mujun.art - Colors: #C0B8B0, #40A0A0, #F0E8E0, #C040A0, #D0A040 */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #F0E8E0; color: #3A3028; font-family: 'Space Grotesk', sans-serif; }
#hero { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 4rem 2rem; }
.title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: clamp(3rem, 6vw, 5rem); color: #3A3028; margin-bottom: 1rem; }
.sub { font-size: 1rem; color: #C0B8B0; max-width: 450px; line-height: 1.6; }
#gallery { max-width: 800px; margin: 0 auto; padding: 3rem 2rem; }
.piece { margin-bottom: 4rem; padding: 2rem; border-left: 3px solid #40A0A0; opacity: 0; transform: translateY(15px); transition: opacity 0.6s ease, transform 0.6s ease; }
.piece.visible { opacity: 1; transform: translateY(0); }
.piece:nth-child(even) { border-left-color: #C040A0; }
.piece-title { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.8rem; color: #3A3028; margin-bottom: 0.75rem; }
.piece-text { font-size: 1rem; line-height: 1.8; color: #C0B8B0; }
