/* p9r.st - Brutalist Forest Ranger Station */
/* Colors: #6A6A5A, #6A4A28, #E8E4DC, #2A6A3A, #D47A30, #1A2A18, #F4F0E8 */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito', sans-serif; color: #1A2A18; background: #E8E4DC; overflow-x: hidden; }

body::before {
    content: ''; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='256' height='256' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none; z-index: -1;
}

.top-rule { position: fixed; top: 0; left: 0; width: 100%; height: 3px; background: #1A2A18; z-index: 100; }

.f-layout {
    display: grid; grid-template-columns: 65% 35%; max-width: 1000px;
    margin: 0 auto; padding: 60px 24px 80px; gap: 24px;
}

.main-col { display: flex; flex-direction: column; gap: 24px; }
.side-col { display: flex; flex-direction: column; gap: 24px; }

.brutalist-panel {
    background: #F4F0E8; border: 3px solid #1A2A18; padding: 32px;
    position: relative; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.brutalist-panel:hover { transform: scale(1.005); box-shadow: 4px 4px 0 #1A2A18; }

.hero-title {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 700;
    color: #1A2A18; text-transform: uppercase; margin-bottom: 16px;
}

.panel-heading {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.5rem; font-weight: 700; color: #1A2A18; margin-bottom: 12px;
}

.body-text { font-size: clamp(0.95rem, 1.05vw, 1.1rem); line-height: 1.8; color: #6A6A5A; }

.data-panel { padding: 20px; }
.leaf-specimen { width: 60px; height: 80px; display: block; margin-bottom: 12px; }

.data-label {
    font-family: 'Overpass Mono', monospace; font-size: 11px; font-weight: 600;
    color: #2A6A3A; letter-spacing: 0.1em; display: block; margin-bottom: 12px;
}

.data-row {
    display: flex; justify-content: space-between; padding: 6px 0;
    border-bottom: 1px solid rgba(26, 42, 24, 0.06);
}
.data-key { font-family: 'Overpass Mono', monospace; font-size: 12px; color: #6A6A5A; }
.data-val { font-family: 'Overpass Mono', monospace; font-size: 12px; font-weight: 600; color: #1A2A18; }
.data-val.alert { color: #D47A30; }

.reveal { opacity: 0; transform: translateY(12px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
    .f-layout { grid-template-columns: 1fr; }
    .brutalist-panel { padding: 20px; }
}
