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

body {
    font-family: 'Work Sans', sans-serif;
    background: #F0ECE3;
    color: #1A1A1A;
    overflow-x: hidden;
}

/* Opening split line */
#split-line {
    position: fixed;
    top: 0;
    left: 55%;
    width: 2px;
    height: 0;
    background: #1A1A1A;
    z-index: 100;
    transition: height 0.8s ease;
}

#split-line.active {
    height: 100vh;
}

/* Studio Sections */
.studio-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Facade (Hero) */
#facade {
    display: flex;
    min-height: 100vh;
}

.facade-left {
    width: 55%;
    background: #F0ECE3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 4rem;
}

.studio-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(3rem, 8vw, 8rem);
    letter-spacing: -0.04em;
    text-transform: uppercase;
    line-height: 0.9;
    color: #1A1A1A;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.studio-name.visible {
    opacity: 1;
    transform: translateY(0);
}

.studio-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #A0998C;
    margin-top: 1.5rem;
    opacity: 0;
    transition: opacity 0.8s ease 0.3s;
}

.studio-label.visible {
    opacity: 1;
}

.facade-right {
    width: 45%;
    background: #1A1A1A;
    position: relative;
    border-left: 2px solid #3A5FA0;
}

.concrete-block {
    position: absolute;
    bottom: 15%;
    left: -40px;
    width: 200px;
    height: 200px;
    background: #E85D26;
    border: 3px solid #1A1A1A;
    box-shadow: 6px 6px 0 #1A1A1A, inset 0 0 0 2px #F5C518;
}

/* Split Layout */
.split-layout {
    display: flex;
    min-height: 100vh;
}

.split-left {
    width: 45%;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-right {
    width: 55%;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-layout.reverse .split-left {
    width: 55%;
}

.split-layout.reverse .split-right {
    width: 45%;
    background: #2A3A4A;
}

/* Section Number */
.section-number {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(4rem, 10vw, 10rem);
    color: rgba(26, 26, 26, 0.06);
    line-height: 1;
}

.split-layout.reverse .split-right .section-number {
    color: rgba(240, 236, 227, 0.06);
}

/* Typography */
.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #1A1A1A;
    margin-bottom: 1.5rem;
    border-bottom: 3px solid #1A1A1A;
    padding-bottom: 0.75rem;
    display: inline-block;
}

.body-text {
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.8;
    color: #2A3A4A;
    margin-bottom: 1rem;
    max-width: 500px;
}

/* Work Cards */
.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.work-card {
    border: 3px solid #1A1A1A;
    box-shadow: 6px 6px 0 #1A1A1A;
    background: #FFFFFF;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.work-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.work-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 #1A1A1A;
}

.card-color {
    height: 120px;
    border-bottom: 3px solid #1A1A1A;
}

.card-info {
    padding: 1rem;
}

.card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #1A1A1A;
    letter-spacing: -0.01em;
}

.card-meta {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: #A0998C;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    border-left: 3px solid #1A1A1A;
    padding-left: 1.5rem;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.process-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.step-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: #A0998C;
    letter-spacing: 0.1em;
}

.step-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: #1A1A1A;
    margin: 0.25rem 0;
}

.step-desc {
    font-family: 'Work Sans', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: #2A3A4A;
    line-height: 1.6;
}

/* Contact */
#contact {
    min-height: auto;
    padding: 4rem;
    background: #1A1A1A;
    color: #F0ECE3;
}

#contact .section-title {
    color: #F0ECE3;
    border-bottom-color: #F0ECE3;
}

.contact-content {
    max-width: 800px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.contact-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #A0998C;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: #F0ECE3;
    line-height: 1.6;
}

.footer-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4rem;
    padding-top: 1.5rem;
    border-top: 3px solid #F0ECE3;
}

.footer-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    color: #F0ECE3;
    letter-spacing: -0.02em;
}

.footer-year {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: #A0998C;
}

/* Responsive */
@media (max-width: 768px) {
    #facade {
        flex-direction: column;
    }

    .facade-left,
    .facade-right {
        width: 100%;
    }

    .facade-left {
        min-height: 60vh;
    }

    .facade-right {
        min-height: 40vh;
    }

    .concrete-block {
        left: 50%;
        transform: translateX(-50%);
        bottom: 10%;
        width: 120px;
        height: 120px;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
    }

    .split-left,
    .split-right,
    .split-layout.reverse .split-left,
    .split-layout.reverse .split-right {
        width: 100%;
        padding: 2rem;
    }

    .work-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    #split-line {
        display: none;
    }
}
