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

body {
    font-family: 'Nunito', sans-serif;
    background: #FFF8F0;
    color: #4A3A2A;
    line-height: 1.7;
    font-size: 15px;
}

.site-header {
    text-align: center;
    padding: 64px 24px 32px;
    background: #FAF0E8;
}

.header-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 600;
    color: #3A1A1A;
}

.header-subtitle {
    font-family: 'Caveat', cursive;
    font-size: 22px;
    color: #B89070;
    margin-top: 8px;
}

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

.zone {
    width: 50%;
    padding: 48px 40px;
}

.zone-draft {
    background: #FAF0E8;
}

.zone-revised {
    background: #FFF8F0;
}

.divider-line {
    width: 2px;
    background: linear-gradient(180deg, #C8A080, #D4A4A4, #B89070);
    flex-shrink: 0;
    opacity: 0;
    animation: drawDivider 1s ease 0.7s forwards;
}

@keyframes drawDivider {
    to { opacity: 1; }
}

/* Draft zone */
.draft-block {
    margin-bottom: 32px;
    padding: 24px;
    border: 1px dashed #C8A080;
    transform: rotate(-0.5deg);
    opacity: 0;
    animation: fadeInDraft 0.4s ease forwards;
}

.draft-block:nth-child(1) { animation-delay: 0.2s; }
.draft-block:nth-child(2) { animation-delay: 0.4s; transform: rotate(0.3deg); }
.draft-block:nth-child(3) { animation-delay: 0.6s; transform: rotate(-0.3deg); }
.draft-block:nth-child(4) { animation-delay: 0.8s; transform: rotate(0.5deg); }

@keyframes fadeInDraft {
    from { opacity: 0; transform: translateY(20px) rotate(-0.5deg); }
    to { opacity: 1; }
}

.draft-title {
    font-family: 'Caveat', cursive;
    font-size: 26px;
    font-weight: 400;
    color: #5A4A3A;
    margin-bottom: 8px;
}

.draft-block s {
    color: #6A2A2A;
    text-decoration-color: #6A2A2A;
    opacity: 0.7;
}

.draft-block p {
    color: #6A5A4A;
}

/* Revised zone */
.revised-block {
    margin-bottom: 32px;
    padding: 24px;
    background: linear-gradient(135deg, #C8A080 0%, #B89070 100%);
    background-size: 200% 200%;
    border: 1px solid #C8A080;
    position: relative;
    opacity: 0;
    animation: fadeInRevised 0.4s ease forwards;
}

.revised-block:nth-child(1) { animation-delay: 1.1s; }
.revised-block:nth-child(2) { animation-delay: 1.3s; }
.revised-block:nth-child(3) { animation-delay: 1.5s; }
.revised-block:nth-child(4) { animation-delay: 1.7s; }

@keyframes fadeInRevised {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.revised-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: #3A1A1A;
    margin-bottom: 8px;
}

.revised-block p {
    color: #4A3A2A;
}

.pressed-flower {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 20px;
    color: #D4A4A4;
    opacity: 0.5;
}

/* Leather stitching corners */
.revised-block::before,
.revised-block::after {
    content: '- - -';
    position: absolute;
    font-size: 8px;
    color: #8A7A6A;
    letter-spacing: 2px;
}

.revised-block::before { top: 4px; left: 8px; }
.revised-block::after { bottom: 4px; right: 8px; }

/* Footer */
.site-footer {
    text-align: center;
    padding: 48px 24px;
    background: #3A1A1A;
    color: #C8A080;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: #FAF0E8;
    display: block;
    margin-bottom: 8px;
}

/* Palette: #D4A4A4 #6A2A2A #FFF8F0 #5A4A3A */

@media (max-width: 768px) {
    .split-layout { flex-direction: column; }
    .zone { width: 100%; padding: 32px 20px; }
    .divider-line { width: 100%; height: 2px; }
    .header-title { font-size: 36px; }
}
