/* monopole.studio */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: #faf5eb;
    color: #2a2a2a;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.75;
    position: relative;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 70vh;
    padding: 3rem 2rem;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-left {
    flex: 1;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-circle {
    width: 0.5rem;
    height: 0.5rem;
    background: #c2703e;
    border-radius: 50%;
    flex-shrink: 0;
}

.brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #2a2a2a;
    margin: 0;
}

.studio-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999;
    display: block;
    margin-top: 0.25rem;
    margin-bottom: 0;
}

.hero-line {
    width: 60px;
    height: 1px;
    background: #c4b99a;
    margin-top: 1.5rem;
}

/* Color Blocks */
.color-block {
    width: 40%;
    aspect-ratio: 4/3;
    flex-shrink: 0;
}

.color-block.terracotta { background: #c2703e; }
.color-block.olive { background: #6b7c3e; }
.color-block.slate-blue { background: #4a6580; }
.color-block.panel { background: #f0ebe0; }

/* Projects */
.project {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

.project.reverse {
    flex-direction: row-reverse;
}

.project-content {
    flex: 1;
}

.project-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
    display: block;
    margin-bottom: 0.5rem;
}

.project-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
    color: #2a2a2a;
}

.project-text {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* Material Swatches */
.swatches {
    display: flex;
    height: 100px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.swatch {
    height: 100%;
    transition: flex-grow 0.3s ease;
}

.swatch.terracotta { background: #c2703e; }
.swatch.olive { background: #6b7c3e; }
.swatch.slate-blue { background: #4a6580; }
.swatch.cream-dark { background: #c4b99a; }
.swatch.panel { background: #f0ebe0; }

/* Materials Section */
.materials {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.materials-text {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}

/* Philosophy */
.philosophy {
    padding: 5rem 2rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.philosophy-inner {
    border-left: 3px solid #c4b99a;
    padding-left: 2rem;
}

.philosophy-text {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #2a2a2a;
    line-height: 1.8;
}

/* Footer/Colophon */
.colophon {
    padding: 3rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-line {
    width: 60px;
    height: 1px;
    background: #c4b99a;
    margin-bottom: 1rem;
}

.footer-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    color: #2a2a2a;
    display: block;
    letter-spacing: 0.05em;
}

.footer-contact {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #666;
}

.footer-contact p {
    margin: 0.25rem 0;
}

/* Golden Ratio Vertical Line */
.golden-line {
    position: fixed;
    top: 0;
    left: 61.8%;
    width: 1px;
    height: 100%;
    background: rgba(196, 185, 154, 0.15);
    pointer-events: none;
    z-index: 0;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero, .project, .project.reverse {
        flex-direction: column;
    }
    .color-block {
        width: 100%;
        aspect-ratio: 16/9;
    }
    .swatches {
        height: 60px;
    }
    .golden-line {
        display: none;
    }
    .philosophy-inner {
        border-left: none;
        padding-left: 0;
    }
}
