/* reasoner.studio - Light Academia */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --warm-cream: #FBF8F1; --parchment: #F5F0E5; --wine: #6B2040; --sage: #2A6B5A; --warm-brown: #7A6A50; --text-dark: #2A2218; }
body { background: var(--warm-cream); color: var(--text-dark); font-family: 'Libre Baskerville', Georgia, serif; font-size: 1.05rem; line-height: 1.85; }
#hero { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 100vh; text-align: center; padding: 2rem; }
.hero-title { font-family: 'Libre Baskerville', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--text-dark); letter-spacing: 0.02em; opacity: 0; animation: fadeIn 1.5s ease 0.5s forwards; }
.hero-sub { font-family: 'Raleway', sans-serif; font-size: 1rem; font-weight: 300; color: var(--warm-brown); margin-top: 1rem; opacity: 0; animation: fadeIn 1.5s ease 1.5s forwards; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
#content { max-width: 680px; margin: 0 auto; padding: 2rem; }
.section { padding: 3rem 0; opacity: 0; transform: translateY(15px); transition: opacity 0.8s ease, transform 0.8s ease; }
.section.visible { opacity: 1; transform: translateY(0); }
.section-title { font-family: 'Libre Baskerville', serif; font-size: 1.5rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1.25rem; }
.body-text { font-size: 1.05rem; line-height: 1.85; color: var(--warm-brown); }
.divider { width: 60px; height: 1px; background: var(--warm-brown); margin: 0 auto; opacity: 0.3; }
.pull-quote { font-family: 'Libre Baskerville', serif; font-size: 1.2rem; font-style: italic; color: var(--wine); border-left: 3px solid var(--sage); padding-left: 1.5rem; line-height: 1.7; }
#footer { text-align: center; padding: 4rem 2rem; }
.footer-text { font-family: 'Raleway', sans-serif; font-size: 0.8rem; color: var(--warm-brown); opacity: 0.5; letter-spacing: 0.1em; }
