/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Inter:wght@400;600;700&display=swap');

#about {
    background:#dcedc8;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5rem 1rem;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.about-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ================= SCROLL ANIMATIONS ================= */
.about-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    text-align: center;
    margin-bottom: 2rem;
}

.about-header.reveal {
    opacity: 1;
    transform: translateY(0);
}

.about-main-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
    background: #ffffff;
    width: 100%;
    max-width: 900px;
    border-radius: 12px;
    padding: 3rem 2rem 3rem 3rem;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
}

.about-main-card.reveal {
    opacity: 1;
    transform: translateY(0);
}

.about-cta-wrapper {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
    margin-top: 3rem;
}

.about-cta-wrapper.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Respect motion preferences */
@media (prefers-reduced-motion: reduce) {
    .about-header,
    .about-main-card,
    .about-cta-wrapper {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* Header Styling */
.about-eyebrow {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.about-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: #1A1A1A;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.5rem;
}

.about-header p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

.mv-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #1B5E20;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.mv-column p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* CTA Pill Button */
.about-pill-btn {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border: 2px solid #333333;
    border-radius: 50px;
    text-decoration: none;
    color: #333333;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.about-pill-btn:hover {
    background: #333333;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Desktop Logic */
@media (min-width: 768px) {
    .mv-grid {
        grid-template-columns: 1fr auto 1fr;
        align-items: start;
    }

    .mv-divider {
        width: 1px;
        background: #EEEEEE;
        height: 100%;
        min-height: 120px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .value-unit span {
        display: none;
    }
    .about-values-overlap {
        padding: 1.2rem;
    }
}

/* ================= ACCESSIBILITY ================= */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}