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

body {
    font-family: 'Cormorant', serif;
    background: #E8E4DF;
    color: #1A1A1E;
    overflow-x: hidden;
}

/* Spread Layout */
.spread {
    min-height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
}

/* Cover */
#cover {
    flex-direction: column;
    justify-content: flex-end;
    background: #E8E4DF;
}

.cover-space {
    flex: 1;
}

.cover-text {
    padding: 0 4rem 4rem;
    text-align: right;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1.5s ease 1s, transform 1.5s ease 1s;
}

.cover-text.visible {
    opacity: 1;
    transform: translateY(0);
}

.brand-name {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    font-size: clamp(1.5rem, 4vw, 3rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #1A1A1E;
}

.issue-label {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #8A7F72;
    margin-top: 1rem;
}

/* Color Fields */
.color-field {
    width: 55%;
    min-height: 100vh;
    transition: filter 0.8s ease;
}

.color-field:hover {
    filter: brightness(1.02);
}

.field-storm { background: #3A3D47; }
.field-fog { background: #8A7F72; }
.field-sand { background: #D4B8A0; }
.field-night { background: #1A1A1E; }
.field-wine { background: #8B3040; }

/* Spread Text */
.spread-text {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem;
    opacity: 0;
    transition: opacity 1s ease;
}

.spread-text.visible {
    opacity: 1;
}

.spread-text-right {
    padding-left: 5rem;
}

.spread-text-left {
    padding-right: 5rem;
    text-align: right;
}

.spread-number {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: #C5C0BA;
    margin-bottom: 2rem;
    display: block;
}

.spread-title {
    font-family: 'Bodoni Moda', serif;
    font-weight: 400;
    font-size: clamp(2rem, 4vw, 4rem);
    font-style: italic;
    letter-spacing: 0.02em;
    color: #1A1A1E;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.spread-body {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    font-size: clamp(0.95rem, 1.3vw, 1.15rem);
    line-height: 1.9;
    color: #3A3D47;
    max-width: 380px;
}

.spread-text-left .spread-body {
    margin-left: auto;
}

/* Colophon */
.colophon-spread {
    min-height: 60vh;
    justify-content: center;
    align-items: center;
    background: #E8E4DF;
}

.colophon-content {
    text-align: center;
    padding: 4rem 2rem;
}

.colophon-line {
    width: 40px;
    height: 1px;
    background: #C5C0BA;
    margin: 0 auto 2rem;
}

.colophon-brand {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #1A1A1E;
}

.colophon-tagline {
    font-family: 'Cormorant', serif;
    font-weight: 300;
    font-style: italic;
    font-size: 1rem;
    color: #8A7F72;
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
}

.colophon-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.colophon-details span {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 300;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #C5C0BA;
}

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

    .color-field {
        width: 100%;
        min-height: 50vh;
    }

    .spread-text {
        width: 100%;
        padding: 3rem 2rem;
    }

    .spread-text-right {
        padding-left: 2rem;
    }

    .spread-text-left {
        padding-right: 2rem;
        text-align: left;
    }

    .spread-text-left .spread-body {
        margin-left: 0;
    }

    #spread-two,
    #spread-four {
        flex-direction: column-reverse;
    }

    .cover-text {
        padding: 0 2rem 3rem;
    }

    .colophon-details {
        flex-direction: column;
        gap: 0.5rem;
    }
}
