/* ================================================
   MISSION PAGE — Philosophical statement
   Clean, centered, impactful
   ================================================ */

.mission-page {
    background: var(--gray-100);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.mission-page .nav {
    background: rgba(245, 245, 245, 0.9);
}

/* ================================================
   MISSION CONTENT
   ================================================ */

.mission-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 3rem 4rem;
    position: relative;
}

.mission-inner {
    max-width: 680px;
    width: 100%;
}

.mission-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--orange);
    margin-bottom: 3rem;
}

.mission-text {
    margin-bottom: 4rem;
}

.mission-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--black);
    margin-bottom: 2rem;
    font-weight: 400;
}

.mission-text p:last-child {
    margin-bottom: 0;
}

.mission-quote {
    font-family: var(--font-serif);
    font-size: 1.8rem !important;
    font-style: italic;
    color: var(--gray-600) !important;
    padding-left: 1.5rem;
    border-left: 3px solid var(--orange);
    margin: 2.5rem 0 !important;
}

.mission-highlight {
    font-weight: 500 !important;
    color: var(--black) !important;
    font-size: 1.35rem !important;
    line-height: 1.6 !important;
    margin: 3rem 0 !important;
    padding: 2rem;
    background: var(--white);
    border-left: 4px solid var(--black);
    position: relative;
}

.mission-highlight::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(224, 122, 56, 0.05) 100%);
    pointer-events: none;
}

.cta-mission {
    margin-top: 2rem;
}

/* ================================================
   ACCENT ELEMENTS
   ================================================ */

.mission-accent {
    position: fixed;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(224, 122, 56, 0.03) 30%,
        rgba(224, 122, 56, 0.06) 50%,
        rgba(224, 122, 56, 0.03) 70%,
        transparent 100%
    );
    clip-path: polygon(40% 0, 100% 0, 100% 100%, 0% 100%);
    pointer-events: none;
    z-index: 0;
}

/* ================================================
   FOOTER MISSION
   ================================================ */

.footer-mission {
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
}

.footer-mission .footer-right a {
    color: var(--gray-600);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-mission .footer-right a:hover {
    color: var(--black);
}

/* ================================================
   ANIMATIONS
   ================================================ */

.mission-label,
.mission-text p,
.cta-mission {
    opacity: 0;
    animation: missionFadeIn 0.8s ease forwards;
}

.mission-text p:nth-child(1) { animation-delay: 0.1s; }
.mission-text p:nth-child(2) { animation-delay: 0.2s; }
.mission-text p:nth-child(3) { animation-delay: 0.3s; }
.mission-text p:nth-child(4) { animation-delay: 0.4s; }
.mission-text p:nth-child(5) { animation-delay: 0.5s; }
.mission-text p:nth-child(6) { animation-delay: 0.6s; }
.mission-text p:nth-child(7) { animation-delay: 0.7s; }

.cta-mission {
    animation-delay: 0.8s;
}

@keyframes missionFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 768px) {
    .mission-content {
        padding: 7rem 1.5rem 3rem;
    }
    
    .mission-text p {
        font-size: 1.05rem;
    }
    
    .mission-quote {
        font-size: 1.4rem !important;
    }
    
    .mission-highlight {
        font-size: 1.15rem !important;
        padding: 1.5rem;
    }
    
    .mission-accent {
        display: none;
    }
}
