/* namu.land - Goblincore Curiosity Cabinet */
/* Colors: #2A2520, #8A6878, #E0D8C8, #D4A830, #A89460, #8A7E70, #6A7A4A, #332E28 */
/* Fonts: Noto Serif, Karla */

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

body {
    font-family: 'Karla', sans-serif;
    color: #E0D8C8;
    background: #2A2520;
    background-image: radial-gradient(ellipse at 30% 40%, rgba(100,90,75,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 60%, rgba(100,90,75,0.1) 0%, transparent 50%);
    overflow-x: hidden;
    min-height: 100vh;
}

.spore-canvas {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 100;
}

.bento-grid {
    position: relative;
    z-index: 5;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.cell {
    background: #332E28;
    background-image: radial-gradient(ellipse at 50% 50%, rgba(168,148,96,0.04) 0%, transparent 70%);
    border: 1px solid rgba(168,148,96,0.12);
    padding: 28px 24px;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateY(8px);
}

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

.cell--hero {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 40px;
}

.cell--wide { grid-column: span 2; }
.cell--tall { grid-row: span 2; }

.cell-title--hero {
    font-family: 'Noto Serif', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #D4A830;
    margin-bottom: 12px;
}

.cell-subtitle {
    font-family: 'Karla', sans-serif;
    font-size: 0.9rem;
    color: #8A7E70;
}

.specimen-label {
    font-family: 'Karla', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: #6A7A4A;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.cell-heading {
    font-family: 'Noto Serif', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #D4A830;
    margin-bottom: 10px;
}

.cell-text {
    font-family: 'Karla', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    color: #E0D8C8;
    opacity: 0.85;
    margin-bottom: 10px;
}

.footer {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 40px 20px;
}

.footer-text {
    font-family: 'Karla', sans-serif;
    font-size: 0.75rem;
    color: #8A7E70;
    opacity: 0.4;
}

@media (max-width: 768px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .cell--wide { grid-column: span 2; }
}

@media (max-width: 480px) {
    .bento-grid { grid-template-columns: 1fr; }
    .cell--wide { grid-column: 1; }
}
