/* namu.farm */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #f5f3ed; color: #1a1a1a; font-family: 'Inter', sans-serif; font-weight: 400; line-height: 1.7; }
.green-bar { height: 4px; background: #6b8f5e; }
.hero { text-align: center; padding: 3rem 2rem 2rem; }
.brand { font-family: 'Work Sans', sans-serif; font-weight: 600; font-size: clamp(2rem, 5vw, 3rem); }
.tagline { font-size: 0.85rem; color: #6b8f5e; margin-top: 0.3rem; }
.since { font-size: 0.6rem; color: #8b7355; display: block; margin-top: 0.3rem; }
.catalog { max-width: 560px; margin: 0 auto; padding: 1rem 2rem 2rem; display: flex; flex-direction: column; gap: 1rem; }
.product-card { background: #ffffff; border: 1px solid #e0ddd4; padding: 1.5rem; border-radius: 4px; }
.product-block { width: 100%; height: 60px; border-radius: 2px; margin-bottom: 1rem; }
.product-name { font-family: 'Work Sans', sans-serif; font-weight: 600; font-size: 1rem; margin-bottom: 0.3rem; }
.product-desc { font-size: 0.8rem; color: #555; margin-bottom: 0.5rem; }
.product-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.product-price { font-family: 'Fira Code', monospace; font-size: 0.85rem; font-weight: 600; color: #6b8f5e; }
.product-code { font-family: 'Fira Code', monospace; font-size: 0.55rem; color: #8b7355; }
.seasons { display: flex; gap: 0.3rem; }
.season { width: 12px; height: 12px; border-radius: 50%; }
.season.spring { background: #88b892; }
.season.summer { background: #6b8f5e; }
.season.autumn { background: #c4956a; }
.season.winter { background: #a0a0a0; }
.care { max-width: 560px; margin: 0 auto; padding: 2rem; }
.section-header { font-family: 'Work Sans', sans-serif; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.75rem; }
.care-text { font-size: 0.8rem; color: #555; }
.footer { max-width: 560px; margin: 0 auto; text-align: center; padding: 2rem; }
.earthy-rule { height: 1px; background: #e0ddd4; margin-bottom: 1.5rem; }
.footer-brand { font-family: 'Work Sans', sans-serif; font-weight: 600; font-size: 0.65rem; color: #e0ddd4; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
