/* Import Modern Studio Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background: #f8f7f2;
    color: #111;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.logo {
    font-size: clamp(2.5rem, 8vw, 4.5rem); /* Responsive sizing */
    letter-spacing: 0.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: 0.1rem;
    color: #333;
}

.hero p {
    font-size: 1.05rem;
    color: #555;
    font-weight: 400;
    line-height: 1.8;
}

/* --- Sections --- */
.works,
.about {
    padding: 100px 10%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.works h2,
.about h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: 0.05rem;
}

.about p {
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.15rem;
    color: #444;
    font-weight: 300;
    line-height: 1.8;
}

/* --- Grid Placeholder for Selected Works --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.portfolio-item {
    background: #eae8e1;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    opacity: 0.9;
}

/* --- Footer --- */
footer {
    text-align: center;
    padding: 60px 20px;
    font-size: 0.85rem;
    color: #777;
    border-top: 1px solid #e5e3dc;
    margin-top: 40px;
}
