/* monopole.design - Bauhaus Geometric Purity */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.8;
    color: #1A1A1A;
    background: #FFFFFF;
    overflow-x: hidden;
}

/* ===== Grid Structure ===== */
.center-col {
    display: grid;
    grid-template-columns: 1fr minmax(auto, 800px) 1fr;
    padding: 0 1.5rem;
}

.center-col > * {
    grid-column: 2;
}

/* ===== Exhibits ===== */
.exhibit {
    padding: 16vh 0;
    background: #FFFFFF;
}

.exhibit-alt {
    background: #F2F2F2;
}

/* ===== Exhibit 1: Identity ===== */
#identity {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#identity .center-col {
    width: 100%;
}

.identity-block {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.identity-block.revealed {
    opacity: 1;
}

.identity-line {
    width: 60px;
    height: 1px;
    background: #1A1A1A;
    margin-bottom: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    transition-delay: 0ms;
}

.identity-block.revealed .identity-line {
    opacity: 1;
}

.hero-title {
    font-weight: 700;
    font-size: clamp(3rem, 8vw, 7rem);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #1A1A1A;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
    transition-delay: 200ms;
}

.identity-block.revealed .hero-title {
    opacity: 1;
}

/* ===== Exhibit 2: Philosophy ===== */
.philosophy-section {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.philosophy-section.revealed {
    opacity: 1;
    transform: translateY(0);
}

.shape-marker {
    flex-shrink: 0;
    padding-top: 0.25rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    transition-delay: 0ms;
}

.philosophy-section.revealed .shape-marker {
    opacity: 1;
}

.section-content {
    opacity: 0;
    transition: opacity 0.3s ease;
    transition-delay: 200ms;
}

.philosophy-section.revealed .section-content {
    opacity: 1;
}

.section-content h2 {
    font-weight: 500;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    letter-spacing: 0.02em;
    color: #1A1A1A;
    margin-bottom: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    transition-delay: 200ms;
}

.philosophy-section.revealed .section-content h2 {
    opacity: 1;
}

.section-content p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.8;
    color: #1A1A1A;
    opacity: 0;
    transition: opacity 0.3s ease;
    transition-delay: 400ms;
}

.philosophy-section.revealed .section-content p {
    opacity: 1;
}

/* ===== Exhibit 3: Works ===== */
.works-list {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.works-list.revealed {
    opacity: 1;
    transform: translateY(0);
}

.work-entry {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2vh 0;
}

.work-entry + .work-entry {
    border-top: 1px solid #E0E0E0;
}

.work-marker {
    flex-shrink: 0;
}

.work-info {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex: 1;
    flex-wrap: wrap;
}

.work-name {
    font-weight: 500;
    font-size: 1.125rem;
    color: #1A1A1A;
    white-space: nowrap;
}

.work-line {
    flex: 1;
    height: 1px;
    background: #E0E0E0;
    min-width: 20px;
}

.work-desc {
    font-weight: 300;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #666666;
}

/* ===== Exhibit 4: Contact ===== */
.contact-block {
    text-align: left;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.contact-block.revealed {
    opacity: 1;
    transform: translateY(0);
}

.bauhaus-mark {
    margin-bottom: 3rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-line {
    font-weight: 300;
    font-size: 1.125rem;
    color: #333333;
    margin-bottom: 0.25rem;
}

.contact-sub {
    font-weight: 300;
    font-size: 0.8125rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #666666;
}

.closing-space {
    height: 30vh;
}

/* ===== Background Shapes ===== */
.exhibit {
    position: relative;
}

/* Large background geometric hints */
#philosophy::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(26,26,26,0.02);
    transform: translateY(-50%);
    pointer-events: none;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .exhibit {
        padding: 10vh 0;
    }

    .philosophy-section {
        flex-direction: column;
        gap: 1rem;
    }

    .work-info {
        flex-direction: column;
        gap: 0.25rem;
    }

    .work-line {
        display: none;
    }
}
