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

body {
    font-family: 'Lora', serif;
    background: #E8E0D8;
    color: #4A4038;
    line-height: 1.75;
    font-size: 15px;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.06;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.8' numOctaves='4'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
    z-index: 1000;
}

h1, h2 {
    font-family: 'Shadows Into Light Two', cursive;
    color: #2A2420;
}

.site-header {
    text-align: center;
    padding: 80px 24px 48px;
    position: relative;
    z-index: 1;
}

.site-title {
    font-size: 56px;
    color: #2A2420;
    line-height: 1.1;
}

.site-subtitle {
    font-family: 'Inconsolata', monospace;
    font-size: 14px;
    color: #8A8078;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 12px;
}

/* Mosaic */
.mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px 64px;
    position: relative;
    z-index: 1;
}

.block {
    background: #F0E8E0;
    padding: 32px 24px;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    border: 1px solid #D4CCC4;
}

.block.visible {
    opacity: 1;
    transform: translateY(0);
}

.block:hover {
    background: #F5EDE5;
}

.block:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #A8A098, #6A6258);
}

.block.wide {
    grid-column: span 2;
}

.block.tall {
    grid-row: span 2;
}

.block-date {
    font-family: 'Inconsolata', monospace;
    font-size: 13px;
    font-weight: 500;
    color: #8A8078;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.block-title {
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.block-desc {
    font-size: 15px;
    color: #6A6258;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 48px 24px;
    background: #2A2420;
    color: #A8A098;
    position: relative;
    z-index: 1;
}

.footer-brand {
    font-family: 'Shadows Into Light Two', cursive;
    font-size: 24px;
    color: #E8E0D8;
    display: block;
    margin-bottom: 8px;
}

/* Palette: #D4CCC4 #6A6258 */

@media (max-width: 900px) {
    .mosaic { grid-template-columns: repeat(2, 1fr); }
    .site-title { font-size: 40px; }
}

@media (max-width: 600px) {
    .mosaic { grid-template-columns: 1fr; }
    .block.wide, .block.tall { grid-column: span 1; grid-row: span 1; }
}
