* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica', Arial, sans-serif;
    line-height: 1.6;
    color: #2d2d2d;
    background: #fafafa;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header / Hero */
header {
    background: white;
    padding: 80px 0;
    border-bottom: 1px solid #eee;
}

.hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.tagline {
    font-size: 24px;
    color: #666;
    margin-bottom: 24px;
}

.bio {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta {
    display: inline-block;
    padding: 14px 28px;
    background: #2d2d2d;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.2s;
}

.cta:hover {
    background: #1a1a1a;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Work Section */
.work {
    padding: 80px 0;
}

.work h2 {
    font-size: 36px;
    margin-bottom: 8px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 48px;
    font-size: 18px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.portfolio-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.portfolio-item img {
    width: 100%;
    display: block;
}

.portfolio-item .caption {
    padding: 16px;
}

.portfolio-item .caption h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.portfolio-item .caption p {
    font-size: 14px;
    color: #666;
}

/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.about-item {
    text-align: center;
}

.about-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.about-item p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    color: #999;
    font-size: 14px;
}

footer a {
    color: #666;
    text-decoration: none;
}

footer a:hover {
    color: #2d2d2d;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .tagline {
        font-size: 20px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

