* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; background: linear-gradient(135deg, #f5f1eb 0%, #ede6de 100%); color: #2a2a2a; font-family: 'Inter', sans-serif; line-height: 1.6; }
.container { max-width: 900px; margin: 0 auto; padding: 2rem; }
.header { text-align: center; padding: 3rem 0 2rem; }
.title { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 700; color: #1a1a1a; margin-bottom: 0.5rem; }
.subtitle { font-size: 1rem; letter-spacing: 0.1em; color: #7a7a7a; text-transform: uppercase; }
.main { padding: 2rem 0; }
.daily-article { background: white; padding: 3rem; margin-bottom: 3rem; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.article-header { margin-bottom: 2rem; border-bottom: 2px solid #e0dcd5; padding-bottom: 1rem; }
.article-title { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: #1a1a1a; margin-bottom: 0.5rem; }
.article-date { font-size: 0.9rem; color: #a0a0a0; }
.article-content { }
.article-text { margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.8; color: #3a3a3a; }
.thought-box { background: #faf7f2; padding: 2rem; border-left: 4px solid #d4a574; margin: 2rem 0; }
.thought-title { font-weight: 700; color: #1a1a1a; margin-bottom: 0.5rem; }
.thought-text { font-style: italic; color: #4a4a4a; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 700; color: #1a1a1a; margin-bottom: 2rem; }
.posts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.post-card { background: white; padding: 1.5rem; border: 1px solid #e0dcd5; transition: all 300ms ease; animation: slideUp 600ms ease-out forwards; opacity: 0; }
.post-card:nth-child(1) { animation-delay: 200ms; }
.post-card:nth-child(2) { animation-delay: 400ms; }
.post-card:nth-child(3) { animation-delay: 600ms; }
.post-card:hover { transform: translateY(-5px); box-shadow: 0 4px 12px rgba(0,0,0,0.12); border-color: #d4a574; }
.post-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: #1a1a1a; margin-bottom: 0.5rem; }
.post-meta { font-size: 0.85rem; color: #a0a0a0; margin-bottom: 1rem; }
.post-excerpt { color: #4a4a4a; font-size: 0.95rem; line-height: 1.6; }
.daily-metrics { background: white; padding: 2rem; margin-bottom: 3rem; }
.metrics-display { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.metric { background: #faf7f2; padding: 1.5rem; border-radius: 4px; animation: slideUp 600ms ease-out forwards; opacity: 0; }
.metric:nth-child(1) { animation-delay: 300ms; }
.metric:nth-child(2) { animation-delay: 400ms; }
.metric:nth-child(3) { animation-delay: 500ms; }
.metric-label { display: block; font-size: 0.8rem; letter-spacing: 0.1em; color: #a0a0a0; text-transform: uppercase; margin-bottom: 0.5rem; }
.metric-value { display: block; font-size: 1.8rem; font-weight: 700; color: #d4a574; }
.cta-section { background: white; padding: 3rem; text-align: center; }
.cta-text { font-size: 1rem; color: #4a4a4a; margin: 1rem 0 2rem; }
.action-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn { padding: 0.8rem 1.5rem; border: 2px solid #d4a574; font-family: 'Inter', sans-serif; font-weight: 600; cursor: pointer; text-transform: uppercase; letter-spacing: 0.05em; transition: all 300ms ease; }
.btn-primary { background: #d4a574; color: white; }
.btn-primary:hover { background: #c09560; }
.btn-secondary { background: transparent; color: #d4a574; }
.btn-secondary:hover { background: #d4a574; color: white; }
.footer { text-align: center; padding: 2rem; color: #a0a0a0; font-size: 0.9rem; border-top: 1px solid #e0dcd5; margin-top: 4rem; }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@media (max-width: 768px) { .container { padding: 1rem; } .daily-article { padding: 1.5rem; } .cta-section { padding: 1.5rem; } .posts-grid { grid-template-columns: 1fr; } .action-buttons { flex-direction: column; } .btn { width: 100%; } }
