:root {
    --bg-color: #e6e6e6;
    --text-color: #1a1a1a;
    --accent-color: #d44000;
    /* Burnt orange/rust for that mid-century feel */
    --shape-color-1: #ffffff;
    --shape-color-2: #2a2a2a;
    --font-serif: 'Cormorant Garamond', serif;
    --font-sans: 'Space Grotesk', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    overflow: hidden;
    /* Prevent scroll for the artistic view */
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The Canvas */
.architectural-canvas {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: 1600px;
    margin: 0 auto;
    perspective: 1000px;
}

/* Shapes */
.shape {
    position: absolute;
    z-index: 0;
    transition: all 1s ease;
}

/* Niemeyer Curve - White organic shape */
.shape-1 {
    top: -10%;
    right: -10%;
    width: 70vw;
    height: 80vh;
    background: var(--shape-color-1);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.8;
    filter: blur(2px);
    animation: float 20s infinite alternate ease-in-out;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.05);
}

/* Gehry/FLW Geometry - Dark sharp block */
.shape-2 {
    bottom: -10%;
    left: -10%;
    width: 120vw;
    /* Massive to ensure coverage */
    height: 80vh;
    background: var(--shape-color-2);
    clip-path: polygon(10% 20%, 100% 0%, 90% 100%, 0% 90%);
    z-index: 1;
    mix-blend-mode: multiply;
    opacity: 0.9;
    animation: shift 20s infinite alternate ease-in-out;
    /* Slower animation */
}

/* PH Light - Soft gradient orb */
.shape-3 {
    top: 40%;
    left: 40%;
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, rgba(255, 200, 150, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 2;
    filter: blur(20px);
    mix-blend-mode: screen;
    animation: pulse 10s infinite alternate;
}

/* Constructivist Lines */
.line {
    position: absolute;
    background-color: var(--text-color);
    z-index: 3;
}

.line-1 {
    top: 0;
    left: 20%;
    width: 1px;
    height: 100%;
    opacity: 0.1;
}

.line-2 {
    top: 60%;
    left: 0;
    width: 100%;
    height: 1px;
    opacity: 0.1;
}

/* Content Layer */
.content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5vw;
    pointer-events: none;
    /* Let clicks pass through to potential interactive elements if added */
}

.title {
    display: flex;
    flex-direction: column;
    font-size: clamp(3rem, 8vw, 10rem);
    line-height: 0.8;
    mix-blend-mode: difference;
    color: white;
    /* Difference mode will invert this against bg */
}

.word-latent {
    font-family: var(--font-serif);
    font-weight: 300;
    font-style: italic;
    transform: translateX(-5vw);
}

.word-space {
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    margin-left: 10vw;
}

.word-studio {
    font-family: var(--font-serif);
    font-weight: 600;
    /* Bolder for readability */
    font-size: 0.8em;
    /* Larger */
    letter-spacing: 0.1em;
    /* Slightly tighter to keep it cohesive */
    margin-left: 25vw;
    /* Adjusted position */
    margin-top: 1vh;
    font-style: italic;
}

.info-block {
    margin-top: 10vh;
    margin-left: 40vw;
    font-family: var(--font-sans);
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    color: var(--text-color);
    pointer-events: auto;
    /* Re-enable clicks */
    background: rgba(255, 255, 255, 0.8);
    padding: 2rem;
    backdrop-filter: blur(10px);
    border-left: 3px solid var(--accent-color);
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location {
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact {
    font-weight: 300;
    line-height: 1.4;
}

.contact a {
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-color);
    transition: all 0.3s ease;
}

.contact a:hover {
    background-color: var(--accent-color);
    color: white;
    padding: 0 5px;
}

/* Animations */
@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    100% {
        transform: translate(20px, 40px) rotate(5deg);
        border-radius: 50% 50% 40% 60% / 50% 40% 60% 50%;
    }
}

@keyframes shift {
    0% {
        transform: translate(0, 0) skew(0deg);
    }

    100% {
        transform: translate(-30px, 10px) skew(2deg);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .word-latent {
        transform: translateX(0);
    }

    .word-space {
        margin-left: 2rem;
    }

    .word-studio {
        margin-left: 4rem;
    }

    .info-block {
        margin-left: 0;
        margin-top: 5vh;
        width: 90%;
    }

    .shape-1 {
        width: 100vw;
        height: 50vh;
        top: -10%;
        right: -20%;
    }

    .shape-2 {
        width: 80vw;
        height: 40vh;
        bottom: 5%;
        left: 5%;
    }
}