/* rinji.org */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #FAF6F0; color: #5A5A5A; font-family: 'Lato', sans-serif; font-weight: 400; line-height: 1.75; }
.hero { max-width: 620px; margin: 0 auto; padding: 5rem 2rem 3rem; text-align: center; }
.headline { font-family: 'Merriweather', serif; font-weight: 700; font-size: clamp(1.8rem, 4vw, 3rem); color: #2C2C2C; line-height: 1.3; margin-bottom: 1rem; }
.mission { font-size: 1rem; color: #5A5A5A; margin-bottom: 2rem; }
.cta-row { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.btn-teal { display: inline-block; background: #2D8B7A; color: #ffffff; font-family: 'Lato', sans-serif; font-weight: 500; font-size: 0.9rem; padding: 0.75rem 1.5rem; border-radius: 6px; text-decoration: none; }
.btn-amber { display: inline-block; background: #E8B44D; color: #2C2C2C; font-family: 'Lato', sans-serif; font-weight: 500; font-size: 0.9rem; padding: 0.75rem 1.5rem; border-radius: 6px; text-decoration: none; }
.rule { border-top: 1px solid #D4C5A9; max-width: 620px; margin: 0 auto; }
.services { max-width: 620px; margin: 0 auto; padding: 2rem; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.service-card { background: #F0E8DA; border-left: 4px solid #2D8B7A; padding: 1.5rem; border-radius: 4px; }
.service-icon { display: block; width: 28px; height: 28px; margin-bottom: 0.75rem; }
.service-icon.scale { width: 0; height: 0; border-left: 14px solid transparent; border-right: 14px solid transparent; border-bottom: 24px solid #2D8B7A; }
.service-icon.briefcase { width: 28px; height: 20px; border: 2px solid #2D8B7A; border-radius: 2px; position: relative; margin-top: 8px; }
.service-icon.house { width: 28px; height: 20px; border: 2px solid #2D8B7A; border-top: none; position: relative; }
.service-icon.house::before { content: ''; position: absolute; top: -12px; left: -2px; width: 0; height: 0; border-left: 16px solid transparent; border-right: 16px solid transparent; border-bottom: 12px solid #2D8B7A; }
.service-icon.circle { width: 28px; height: 28px; border: 2px solid #2D8B7A; border-radius: 50%; }
.service-name { font-family: 'Merriweather', serif; font-weight: 700; font-size: 1rem; color: #2C2C2C; margin-bottom: 0.3rem; }
.service-desc { font-size: 0.8rem; color: #5A5A5A; }
.impact { max-width: 620px; margin: 0 auto; padding: 2rem; }
.impact-row { display: flex; justify-content: space-around; text-align: center; flex-wrap: wrap; gap: 1rem; }
.impact-block { }
.impact-num { font-family: 'IBM Plex Mono', monospace; font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700; color: #2C2C2C; display: block; }
.impact-label { font-size: 0.8rem; color: #5A5A5A; border-bottom: 2px solid #2D8B7A; padding-bottom: 0.2rem; }
.stories { max-width: 620px; margin: 0 auto; padding: 2rem; }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.testimonial { position: relative; padding: 1.5rem; padding-top: 2rem; }
.testimonial::before { content: '\201C'; font-family: 'Merriweather', serif; font-size: 4rem; color: #E8B44D; opacity: 0.2; position: absolute; top: -0.5rem; left: 0; }
.quote-text { font-style: italic; font-size: 0.85rem; color: #5A5A5A; margin-bottom: 0.5rem; }
.quote-author { font-family: 'IBM Plex Mono', monospace; font-size: 0.7rem; color: #2D8B7A; }
.footer { max-width: 620px; margin: 0 auto; padding: 3rem 2rem; text-align: center; background: linear-gradient(180deg, #FAF6F0, #F0E8DA); }
.hotline { font-family: 'Merriweather', serif; font-weight: 700; font-size: 1.2rem; color: #2C2C2C; display: block; margin-bottom: 1rem; }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; }
.flink { font-size: 0.8rem; color: #5A5A5A; }
@media (max-width: 520px) {
    .service-grid, .testimonial-grid { grid-template-columns: 1fr; }
}
.fade-in { opacity: 0; transform: translateY(12px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
