* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: #f8f7f5; color: #2a2a28; line-height: 1.6; }
.site-main { max-width: 1000px; margin: 0 auto; padding: 3rem 2rem; }
header { text-align: center; margin-bottom: 4rem; }
header h1 { font-size: 3rem; margin-bottom: 0.5rem; font-weight: 700; letter-spacing: -0.02em; }
header p { font-size: 1.1rem; color: #6a6a68; }
section { margin-bottom: 5rem; }
section h2 { font-size: 2rem; margin-bottom: 2rem; }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.work-item { aspect-ratio: 1; background: linear-gradient(135deg, #e8d8c8, #d4c4b0); border-radius: 8px; }
.contact { text-align: center; padding: 3rem; background: #f2f0ed; border-radius: 8px; }
.contact p { font-size: 1.2rem; font-weight: 500; }
@media (max-width: 768px) {
    header h1 { font-size: 2rem; }
    section h2 { font-size: 1.5rem; }
    .portfolio-grid { grid-template-columns: 1fr; }
}
