/* recycle.studio - Wabi-Sabi */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root { --warm-paper: #F5EDE0; --aged: #E8DCC8; --gold: #D4A850; --teal: #4A7A70; --stone: #7A6E5A; }
body { background: var(--warm-paper); color: var(--stone); font-family: 'Libre Baskerville', Georgia, serif; font-size: 1.05rem; line-height: 1.85; }
#hero { text-align: center; padding: 6rem 2rem 3rem; }
#hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: #3A3028; letter-spacing: 0.02em; }
.sub { font-style: italic; font-size: 1rem; color: var(--gold); margin-top: 0.75rem; }
#content { max-width: 640px; 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 h2 { font-size: 1.4rem; font-weight: 700; color: var(--teal); margin-bottom: 1rem; }
.section p { font-size: 1.05rem; line-height: 1.85; }
.wave-divider { display: block; width: 200px; margin: 0 auto; }
footer { text-align: center; padding: 4rem 2rem; font-size: 0.85rem; color: var(--stone); opacity: 0.4; }
