/* recycle.cafe */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #F7F3EE; color: #5C524A; font-family: 'Work Sans', sans-serif; font-weight: 400; line-height: 1.7; }
.hero { max-width: 640px; margin: 0 auto; padding: 5rem 2rem 2rem; text-align: center; }
.hero-inner { margin-bottom: 2rem; }
.hero-title { font-family: 'Cormorant', serif; font-weight: 600; font-size: clamp(2rem, 5vw, 3.2rem); color: #2B2B2B; line-height: 1.2; letter-spacing: 0.01em; margin-bottom: 0.75rem; }
.hero-sub { font-size: 0.95rem; color: #8B7E6A; margin-bottom: 1.5rem; }
.explore-btn { display: inline-block; background: #3D7C5F; color: #ffffff; font-family: 'Work Sans', sans-serif; font-weight: 500; font-size: 0.85rem; padding: 0.6rem 1.5rem; border-radius: 4px; text-decoration: none; }
.rule { border-top: 1px solid #E8DFD3; }
.rule-section { max-width: 640px; margin: 0 auto; padding: 0 2rem; }
.section-title { font-family: 'Cormorant', serif; font-weight: 600; font-size: 1.8rem; color: #2B2B2B; margin-bottom: 1.5rem; position: relative; }
.stories { max-width: 640px; margin: 0 auto; padding: 2rem 2rem 2rem; }
.stories-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 1.5rem; }
.story-card { background: #ffffff; border-left: 3px solid #3D7C5F; padding: 1.2rem; border-radius: 2px; }
.story-card:nth-child(2) { border-left-color: #C4956A; }
.story-card.featured { display: flex; flex-direction: column; justify-content: center; }
.cat-tag { font-family: 'IBM Plex Mono', monospace; font-size: 0.65rem; color: #8B7E6A; border: 1px solid #E8DFD3; border-radius: 9999px; padding: 0.1rem 0.5rem; display: inline-block; margin-bottom: 0.5rem; }
.story-title { font-family: 'Cormorant', serif; font-weight: 700; font-size: 1.1rem; color: #2B2B2B; margin-bottom: 0.3rem; }
.story-excerpt { font-size: 0.8rem; color: #8B7E6A; }
.story-stack { display: flex; flex-direction: column; gap: 0.75rem; }
.workshop { max-width: 640px; margin: 0 auto; padding: 2rem; }
.timeline { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.event { display: flex; align-items: center; gap: 0.75rem; }
.event-date { font-family: 'IBM Plex Mono', monospace; font-size: 0.75rem; color: #8B7E6A; min-width: 50px; }
.event-line { flex: 0 0 40px; height: 1px; background: #E8DFD3; }
.event-name { font-family: 'Work Sans', sans-serif; font-weight: 500; font-size: 0.85rem; color: #2B2B2B; }
.resource-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.resource-tile { background: #E8DFD3; padding: 1rem; text-align: center; font-family: 'Work Sans', sans-serif; font-weight: 500; font-size: 0.75rem; color: #5C524A; border-radius: 2px; }
.closing { max-width: 640px; margin: 0 auto; padding: 3rem 2rem; text-align: center; }
.closing-tagline { font-family: 'Cormorant', serif; font-weight: 600; font-size: 1.5rem; color: #2B2B2B; }
.footer { background: #E8DFD3; text-align: center; padding: 2rem; }
.footer-link { font-size: 0.8rem; color: #5C524A; }
.footer-dot { color: #8B7E6A; margin: 0 0.5rem; }
.footer-tagline { font-size: 0.75rem; color: #8B7E6A; margin-top: 0.75rem; }
@media (max-width: 520px) {
    .stories-grid { grid-template-columns: 1fr; }
    .resource-grid { grid-template-columns: repeat(2, 1fr); }
}
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
