/* ppuzzl.in - Colors: #1A0E0A, #2A8B5C, #8B2A4A, #2A4A8B, #2A1E15 */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: #C8BEB0; background: #1A0E0A; overflow-x: hidden; }

.hero { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px 24px; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 7vw, 6rem); font-weight: 700; color: #2A8B5C; }
.hero-sub { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 300; color: #8B2A4A; margin-top: 12px; }

.content { max-width: 680px; margin: 0 auto; padding: 0 24px 80px; }
.block { padding: 40px 0; border-bottom: 1px solid rgba(200,190,176,0.06); opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.block.visible { opacity: 1; transform: translateY(0); }
.block.accent { border-left: 3px solid #2A4A8B; padding-left: 24px; background: #2A1E15; margin: 0 -24px; padding: 40px 24px 40px 48px; }

.label { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 500; color: #2A8B5C; letter-spacing: 0.1em; display: block; margin-bottom: 8px; }
.heading { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: #2A8B5C; margin-bottom: 8px; }
.text { font-size: 0.95rem; line-height: 1.8; color: rgba(200,190,176,0.6); }
