/* mujun.art */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #faf9f6; color: #2a2a2a; font-family: 'Lato', sans-serif; font-weight: 300; line-height: 1.8; }
.hero { min-height: 70vh; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; padding: 2rem; }
.wash-bg { position: absolute; width: 300px; height: 300px; background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(96,165,250,0.08)); border-radius: 50%; filter: blur(40px); pointer-events: none; }
.gallery-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(139,92,246,0.3); margin-bottom: 1.5rem; position: relative; z-index: 1; }
.brand { font-family: 'Cormorant', serif; font-weight: 400; font-size: clamp(2rem, 5vw, 3rem); position: relative; z-index: 1; }
.tagline { font-size: 0.85rem; color: #8b8b8b; margin-top: 0.5rem; position: relative; z-index: 1; }
.gallery-entry { max-width: 700px; margin: 0 auto; padding: 100px 2rem; text-align: center; }
.entry-label { font-family: 'Inter', sans-serif; font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: #8b8b8b; display: block; margin-bottom: 1rem; }
.entry-title { font-family: 'Cormorant', serif; font-weight: 400; font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: 1.5rem; }
.watercolor-panel { width: 100%; height: 200px; margin-bottom: 1.5rem; }
.purple-wash { background: linear-gradient(135deg, rgba(139,92,246,0.15), rgba(96,165,250,0.08)); }
.blue-wash { background: linear-gradient(135deg, rgba(96,165,250,0.12), rgba(139,92,246,0.06)); }
.rose-wash { background: linear-gradient(135deg, rgba(244,114,182,0.1), rgba(139,92,246,0.08)); }
.entry-text { font-size: 0.9rem; color: #555; max-width: 500px; margin: 0 auto; }
.gallery-wall { height: 100px; }
.exhibition-footer { text-align: center; padding: 4rem 2rem; }
.thin-rule { border: none; border-top: 1px solid #e5e5e0; width: 40px; margin: 0 auto 1.5rem; }
.footer-brand { font-family: 'Cormorant', serif; font-weight: 400; font-size: 0.8rem; color: #8b8b8b; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
