/* muhan.studio - Colors: #FAFAFA, #4A4A4A, #E8E8E8, #1A1A1A, #3040A0 */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #FAFAFA; color: #1A1A1A; font-family: 'Inter', sans-serif; }
#hero { min-height: 50vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 4rem 2rem; }
.title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(2.5rem, 5vw, 4rem); color: #1A1A1A; margin-bottom: 1rem; }
.sub { font-family: 'Lora', serif; font-size: 1rem; color: #4A4A4A; max-width: 400px; line-height: 1.6; }
#content { max-width: 800px; margin: 0 auto; padding: 3rem 2rem; }
.project { margin-bottom: 3rem; padding: 2rem; border-bottom: 1px solid #E8E8E8; opacity: 0; transform: translateY(15px); transition: opacity 0.6s ease, transform 0.6s ease; }
.project.visible { opacity: 1; transform: translateY(0); }
.label { font-family: 'Space Grotesk', sans-serif; font-size: 0.7rem; color: #3040A0; letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 0.75rem; }
.project-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.8rem; color: #1A1A1A; margin-bottom: 0.75rem; }
.project-text { font-family: 'Lora', serif; font-size: 1rem; line-height: 1.8; color: #4A4A4A; }
