/* ===== MISSION & VISION PAGE ===== */
:root {
    --mv-forest: #114620;
    --mv-forest-light: #1a5c2e;
    --mv-sage: #3d7a4a;
    --mv-sand: #f8f5f0;
    --mv-sand-dark: #efe9e0;
    --mv-amber: #ff6b35;
    --mv-amber-light: #ff8a5c;
    --mv-cream: #fffdf8;
    --mv-text: #3a3a3a;
    --mv-text-light: #6b6b6b;
    --mv-serif: 'Shippori Mincho', Georgia, serif;
    --mv-sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

.mv-page { font-family: var(--mv-sans); color: var(--mv-text); line-height: 1.7; }
.mv-page *, .mv-page *::before, .mv-page *::after { box-sizing: border-box; }
.mv-container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Animations */
.mv-page .fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.mv-page .fade-up.visible { opacity: 1; transform: translateY(0); }

/* HERO */
.mv-hero {
    background: linear-gradient(135deg, var(--mv-forest) 0%, var(--mv-forest-light) 100%);
    padding: 100px 0 80px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.mv-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}
.mv-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255,255,255,0.02);
}
.mv-hero-inner { position: relative; z-index: 1; }
.mv-breadcrumb {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
    display: block;
}
.mv-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.mv-breadcrumb a:hover { color: #fff; }
.mv-hero h1 {
    font-family: var(--mv-serif);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 20px;
    max-width: 700px;
}
.mv-hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    line-height: 1.7;
    margin: 0;
}

/* SECTION DEFAULTS */
.mv-section { padding: 80px 0; }
.mv-bg-sand { background: var(--mv-sand); }
.mv-section-header { text-align: center; margin-bottom: 48px; }
.mv-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--mv-amber);
    margin-bottom: 12px;
}
.mv-section-header h2 {
    font-family: var(--mv-serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--mv-forest);
    font-weight: 700;
    margin: 0;
    line-height: 1.25;
}

/* MISSION & VISION CARDS */
.mv-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
}
.mv-mv-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mv-mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.mv-mission-card { border-top: 4px solid var(--mv-forest); }
.mv-vision-card { border-top: 4px solid var(--mv-amber); }
.mv-mv-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.mv-mission-card .mv-mv-icon { background: rgba(26,60,42,0.08); color: var(--mv-forest); }
.mv-vision-card .mv-mv-icon { background: rgba(200,146,42,0.1); color: var(--mv-amber); }
.mv-mv-card h3 {
    font-family: var(--mv-serif);
    font-size: 1.5rem;
    color: var(--mv-forest);
    margin: 0 0 16px;
    font-weight: 700;
}
.mv-mv-card p {
    color: var(--mv-text-light);
    font-size: 1rem;
    line-height: 1.75;
    margin: 0;
}

/* ASPIRATION */
.mv-aspiration {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(26,60,42,0.04), rgba(200,146,42,0.06));
    border-radius: 12px;
    border-left: 4px solid var(--mv-amber);
}
.mv-aspiration p {
    font-family: var(--mv-serif);
    font-size: 1.15rem;
    color: var(--mv-forest);
    font-style: italic;
    line-height: 1.7;
    margin: 0;
}

/* WHO WE ARE */
.mv-who-content {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}
.mv-who-content p {
    font-size: 1.05rem;
    color: var(--mv-text-light);
    line-height: 1.8;
    margin: 0 0 16px;
}
.mv-who-content p:last-child { margin-bottom: 0; }

.mv-partner-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.mv-partner-card {
    background: #fff;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.mv-partner-card:hover { transform: translateY(-3px); }
.mv-partner-icon { font-size: 2.5rem; margin-bottom: 16px; }
.mv-partner-card h4 {
    font-family: var(--mv-serif);
    font-size: 1.1rem;
    color: var(--mv-forest);
    margin: 0 0 8px;
    font-weight: 700;
}
.mv-partner-card p {
    font-size: 0.9rem;
    color: var(--mv-text-light);
    margin: 0;
    line-height: 1.6;
}

/* CORE VALUES */
.mv-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.mv-value-card {
    background: #fff;
    border-radius: 14px;
    padding: 36px 28px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mv-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.mv-value-icon { font-size: 2.2rem; margin-bottom: 16px; }
.mv-value-card h4 {
    font-family: var(--mv-serif);
    font-size: 1.15rem;
    color: var(--mv-forest);
    margin: 0 0 10px;
    font-weight: 700;
}
.mv-value-card p {
    font-size: 0.92rem;
    color: var(--mv-text-light);
    line-height: 1.7;
    margin: 0;
}

/* TIMELINE */
.mv-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 48px;
}
.mv-timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 8px;
    bottom: 8px;
    width: 3px;
    background: linear-gradient(to bottom, var(--mv-forest), var(--mv-amber));
    border-radius: 3px;
}
.mv-timeline-item {
    position: relative;
    padding: 0 0 40px 32px;
}
.mv-timeline-item:last-child { padding-bottom: 0; }
.mv-timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--mv-forest);
    border: 3px solid var(--mv-sand);
    z-index: 1;
}
.mv-timeline-item:last-child::before { background: var(--mv-amber); }
.mv-timeline-year {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--mv-amber);
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.mv-timeline-content h4 {
    font-family: var(--mv-serif);
    font-size: 1.15rem;
    color: var(--mv-forest);
    margin: 0 0 8px;
    font-weight: 700;
}
.mv-timeline-content p {
    font-size: 0.95rem;
    color: var(--mv-text-light);
    line-height: 1.7;
    margin: 0;
}

/* STATS STRIP */
.mv-stats-strip {
    background: var(--mv-forest);
    padding: 48px 0;
}
.mv-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}
.mv-stat-num {
    font-family: var(--mv-serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--mv-amber-light);
    margin-bottom: 4px;
}
.mv-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
}

/* CTA */
.mv-cta {
    background: linear-gradient(135deg, var(--mv-forest) 0%, #0a2d12 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}
.mv-cta h2 {
    font-family: var(--mv-serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin: 0 0 16px;
    color: #fff;
}
.mv-cta p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.mv-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.mv-btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}
.mv-btn-amber {
    background: var(--mv-amber);
    color: #fff;
}
.mv-btn-amber:hover { background: #e55a25; color: #fff; }
.mv-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}
.mv-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .mv-hero { padding: 72px 0 56px; }
    .mv-section { padding: 56px 0; }
    .mv-two-col { grid-template-columns: 1fr; gap: 24px; }
    .mv-partner-cards { grid-template-columns: 1fr; gap: 16px; }
    .mv-values-grid { grid-template-columns: 1fr; gap: 16px; }
    .mv-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .mv-mv-card { padding: 28px 24px; }
    .mv-aspiration { padding: 24px; }
    .mv-cta { padding: 56px 0; }
    .mv-cta-btns { flex-direction: column; align-items: center; }
    .mv-btn { width: 100%; max-width: 280px; justify-content: center; }
}

@media (max-width: 480px) {
    .mv-hero h1 { font-size: 1.8rem; }
    .mv-stats-grid { grid-template-columns: 1fr 1fr; }
}
