/* desca.work */
/* Colors: #ede4d3, #4a4a48, #f4f0eb, #8b5e3c, #d4cbc0, #2a2826, #6a6a68, #b0a898, #faf8f4, #1a1816 */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; font-weight: 400; font-size: 16px; line-height: 1.8; background: #f4f0eb; color: #4a4a48; }
.hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px; background: #ede4d3; }
.hero-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(3rem, 10vw, 6rem); color: #4a4a48; opacity: 0; animation: fadeIn 1.5s ease forwards; }
@keyframes fadeIn { to { opacity: 1; } }
.hero-sub { font-weight: 300; font-size: 17px; color: #8b5e3c; margin-top: 16px; opacity: 0; animation: fadeIn 1s 0.8s ease forwards; }
.section { padding: 100px 40px; display: flex; flex-direction: column; align-items: center; text-align: center; background: #f4f0eb; }
.section-alt { background: #faf8f4; }
.section-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: clamp(2rem, 5vw, 3rem); color: #4a4a48; margin-bottom: 20px; }
.section-text { font-weight: 300; font-size: 17px; color: #6a6a68; max-width: 600px; margin-bottom: 40px; }
.principle-list { display: flex; flex-direction: column; gap: 20px; max-width: 400px; width: 100%; }
.principle { display: flex; align-items: center; gap: 20px; text-align: left; padding: 16px 0; border-bottom: 1px solid #d4cbc0; opacity: 0; transform: translateY(15px); transition: opacity 0.5s ease, transform 0.5s ease; }
.principle.visible { opacity: 1; transform: translateY(0); }
.p-num { font-family: 'IBM Plex Mono', monospace; font-size: 20px; color: #8b5e3c; flex-shrink: 0; width: 30px; }
.principle p { font-size: 16px; color: #4a4a48; }
.site-footer { text-align: center; padding: 40px; background: #2a2826; color: #6a6a68; font-size: 13px; }
@media (max-width: 768px) { .section { padding: 60px 24px; } }
