/* ppuzzl.org */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    background: #faf7f2;
    color: #3d2c1e;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.7;
}

section {
    position: relative;
    width: 100%;
}

.welcome {
    text-align: center;
    padding: 5rem 2rem 2rem;
    background: #faf7f2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.puzzle-icon {
    width: 40px;
    height: 40px;
    clip-path: polygon(0 0, 70% 0, 70% 30%, 100% 30%, 100% 100%, 30% 100%, 30% 70%, 0 70%);
    background: #c2410c;
    flex-shrink: 0;
}

.brand {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #3d2c1e;
}

.impact-metric {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    color: #c2410c;
    margin-top: 2rem;
}

.since {
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    color: #92400e;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: block;
    margin-top: 1rem;
    font-weight: 600;
}

.warm-rule {
    border: none;
    border-top: 1px solid #d6cfc5;
    max-width: 600px;
    margin: 2rem auto;
}

.stories {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    background: #faf7f2;
    min-height: 80vh;
    justify-content: center;
}

.story-panel {
    border-left: 3px solid #c2410c;
    padding: 2rem 2.5rem;
    background: #faf7f2;
}

.story-title {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #3d2c1e;
    margin-bottom: 1rem;
}

.story-text {
    font-size: 0.95rem;
    color: #5c4332;
    line-height: 1.8;
}

.impact {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: #faf7f2;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.metric-strip {
    display: flex;
    justify-content: space-around;
    text-align: center;
    width: 100%;
    gap: 2rem;
}

.metric {
    flex: 1;
}

.metric-number {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #c2410c;
    line-height: 1.1;
}

.metric-number.sage {
    color: #65a30d;
}

.metric-label {
    font-size: 0.85rem;
    color: #92400e;
    margin-top: 0.5rem;
    font-weight: 600;
}

.community {
    text-align: center;
    padding: 3rem 2rem;
    background: #faf7f2;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circles {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: -15px;
}

.circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #d4b896;
    margin-left: -15px;
    opacity: 0.85;
}

.circle:first-child {
    margin-left: 0;
}

.join {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
    text-align: center;
    background: #faf7f2;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.join-text {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: #c2410c;
    margin-top: 1rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .metric-strip {
        flex-direction: column;
        gap: 1.5rem;
    }

    .brand-row {
        flex-direction: column;
        gap: 0.25rem;
    }

    .circles {
        gap: 0;
    }

    .story-panel {
        padding: 1.5rem 2rem;
    }
}
