/* mores.quest */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #f5f0e8; color: #2a2a2a; font-family: 'Lato', sans-serif; font-weight: 400; line-height: 1.75; }
.hero { text-align: center; padding: 5rem 2rem 3rem; }
.brand { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(2.5rem, 6vw, 3.5rem); }
.arrow { font-size: 1.5rem; color: #8b7355; display: block; margin: 0.5rem 0; }
.tagline { font-size: 0.9rem; color: #8b7355; }
.journey { padding: 1rem 0; }
.scroll-container { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 1.5rem; padding: 1rem 2rem; }
.culture-panel { min-width: 80vw; max-width: 400px; scroll-snap-align: start; padding: 2rem; flex-shrink: 0; }
.region-label { font-family: 'Fira Code', monospace; font-size: 0.6rem; color: #8b7355; display: block; margin-bottom: 0.75rem; }
.culture-block { height: 100px; margin-bottom: 1rem; }
.culture-block.terracotta { background: #c2703e; }
.culture-block.slate-blue { background: #4a6580; }
.culture-block.olive { background: #6b7c3e; }
.culture-title { font-family: 'Cormorant', serif; font-weight: 500; font-size: 1.5rem; margin-bottom: 0.3rem; }
.culture-text { font-size: 0.85rem; color: #555; }
.map-strip { padding: 2rem; max-width: 500px; margin: 0 auto; }
.map-line { height: 2px; background: #c4b99a; position: relative; }
.map-dot { position: absolute; top: -4px; width: 10px; height: 10px; border-radius: 50%; background: #c2703e; }
.reflect { text-align: center; padding: 5rem 2rem; }
.reflect-text { font-family: 'Cormorant', serif; font-weight: 500; font-size: clamp(1.3rem, 3.5vw, 2rem); color: #2a2a2a; max-width: 440px; margin: 0 auto; }
.return { text-align: center; padding: 3rem 2rem; }
.close-text { font-size: 0.85rem; color: #8b7355; }
.footer-brand { font-size: 0.6rem; color: #c4b99a; display: block; margin-top: 0.5rem; }
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
