/* Dieter Rams Principles Applied:
   1. Innovative - Clean digital typography
   2. Useful - Clear navigation and content hierarchy  
   3. Aesthetic - Swiss design with perfect proportions
   4. Understandable - Obvious information architecture
   5. Unobtrusive - No distracting elements
   6. Honest - Content-first, no false promises
   7. Long-lasting - Timeless design principles
   8. Thorough - Every detail considered
   9. Environmentally friendly - Minimal code/bandwidth
   10. As little design as possible - Only essential elements
*/

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

/* Base Typography - Helvetica Only */
html {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

body {
    background: #3a5ddb;
    color: #0c0c0c;
    overflow-x: hidden;
}

/* Grid System - 12 columns, 8pt spacing */
.grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

/* Header - Minimal */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #3a5ddb;
    border-bottom: 1px solid rgba(33, 33, 33, 0.1);
    z-index: 100;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    gap: 32px;
}

.nav-item {
    color: #0c0c0c;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Main Content */
.main {
    margin-top: 57px; /* Header height */
    padding-top: 64px;
}

/* Hero Section */
.hero-section {
    grid-column: 1 / -1;
    margin-bottom: 128px;
    position: relative;
    overflow: visible;
}

.hero-number {
    font-size: 14px;
    color: #0c0c0c;
    margin-bottom: 24px;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 15vw;
    font-weight: 700;
    line-height: 0.75;
    letter-spacing: -0.02em;
    margin: 0;
    text-align: left;
    padding: 0;
    white-space: nowrap;
    width: 100vw;
    position: relative;
    left: calc(-24px);
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    color: #0c0c0c;
    font-weight: 400;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 2;
}

/* Content Area */
.content-area {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

/* Sections */
.section {
    grid-column: 1 / -1;
    margin-bottom: 96px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.section-number {
    grid-column: 1 / 2;
    font-size: 14px;
    color: #0c0c0c;
    font-weight: 400;
}

.section-title {
    grid-column: 2 / 5;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 32px;
}

/* Work Section */
.work-list {
    grid-column: 5 / -1;
    display: grid;
    gap: 48px;
}

.work-item {
    border-bottom: 1px solid #0c0c0c;
    padding-bottom: 32px;
}

.work-meta {
    font-size: 12px;
    color: #0c0c0c;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.work-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.work-description {
    font-size: 16px;
    color: #0c0c0c;
    line-height: 1.5;
}

/* Studio Section */
.studio-list {
    grid-column: 5 / -1;
    display: grid;
    gap: 24px;
}

.studio-item {
    padding: 24px 0;
    border-bottom: 1px solid #0c0c0c;
}

.studio-label {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
}

/* Contact Section */
.contact-info {
    grid-column: 5 / -1;
}

.email {
    font-size: 24px;
    color: #0c0c0c;
    text-decoration: none;
    font-weight: 400;
}

/* Footer */
.footer {
    margin-top: 128px;
    padding: 32px 0 64px;
    border-top: 1px solid #0c0c0c;
}

.footer-text {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    font-size: 12px;
    color: #0c0c0c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .grid {
        padding: 0 16px;
        gap: 16px;
    }
    
    .nav {
        padding: 16px;
        gap: 24px;
    }
    
    .main {
        padding-top: 32px;
    }
    
    .hero-section {
        margin-bottom: 64px;
    }
    
    .section {
        margin-bottom: 64px;
    }
    
    .section-number {
        grid-column: 1 / -1;
        margin-bottom: 8px;
    }
    
    .section-title {
        grid-column: 1 / -1;
        font-size: 28px;
        margin-bottom: 24px;
    }
    
    .work-list,
    .studio-list,
    .contact-info {
        grid-column: 1 / -1;
    }
    
    .footer-text {
        padding: 0 16px;
    }
}

/* Print Styles */
@media print {
    .header {
        position: static;
    }
    
    .main {
        margin-top: 0;
        padding-top: 0;
    }
}