/* namu.day */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #fafaf5; color: #2a3a2a; font-family: 'Lato', sans-serif; font-weight: 300; line-height: 1.85; }
.top-bar { display: flex; justify-content: flex-end; gap: 1rem; padding: 1.5rem 2rem; }
.date-label { font-family: 'Inter', sans-serif; font-size: 0.6rem; color: #8a8a80; }
.day-label { font-family: 'Inter', sans-serif; font-size: 0.6rem; color: #8a8a80; }
.hero { text-align: center; padding: 6rem 2rem 4rem; }
.green-dot { width: 6px; height: 6px; border-radius: 50%; background: #5a8a5a; margin: 0 auto 2rem; }
.tree-name { font-family: 'Cormorant', serif; font-weight: 400; font-size: clamp(2.5rem, 6vw, 4rem); }
.tree-latin { font-family: 'Cormorant', serif; font-weight: 400; font-size: 1rem; font-style: italic; color: #6a7a6a; display: block; margin-top: 0.3rem; }
.green-line { width: 40px; height: 1px; background: #5a8a5a; margin: 0 auto; }
.tree-section { max-width: 500px; margin: 0 auto; padding: 4rem 2rem; text-align: center; }
.tree-block { width: 100%; height: 120px; background: #e0ead0; margin-bottom: 2rem; }
.tree-fact { font-size: 0.85rem; color: #3a4a3a; }
.rings { display: flex; align-items: center; justify-content: center; padding: 4rem 2rem; }
.ring-container { position: relative; width: 200px; height: 200px; }
.ring { position: absolute; border: 1px solid #88aa88; border-radius: 50%; }
.r1 { inset: 0; }
.r2 { inset: 20px; }
.r3 { inset: 40px; }
.r4 { inset: 60px; }
.r5 { inset: 80px; }
.archive { text-align: center; padding: 4rem 2rem; }
.archive-link { font-size: 0.7rem; color: #6a7a6a; display: block; margin-bottom: 1rem; }
.footer-brand { font-family: 'Cormorant', serif; font-weight: 400; font-size: 0.65rem; color: #e0ead0; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
