:root {
    --primary: #16253b;      /* Big Stone */
    --secondary: #f8fafc;
    --text-dark: #0f172a;
    --text-muted: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: #ffffff;
    letter-spacing: 0.01em;
}

p {
    line-height: 1.7;
}

/* NAVBAR */
.navbar {
    background: #ffffff;
    padding: 2rem 4rem;
    display: flex;
    align-items: center;
}

.logo img {
    height: 110px;
    width: auto;
    display: block;
}

/* HERO */
.hero {
    padding: 4rem 4rem 5rem;
    max-width: 1200px;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 600;
    line-height: 1.05;
    margin-bottom: 1.2rem;
}

.hero-accent {
    width: 80px;
    height: 4px;
    background: var(--primary);
    margin-bottom: 1.8rem;
}

.hero p {
    font-size: 1.15rem;
    max-width: 900px;
    color: #334155;
}

/* SPLIT SECTION */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

.split-text {
    background: var(--primary);
    color: white;
    padding: 5rem 4.5rem;
}

.split-text h2 {
    font-size: 2.7rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 1.8rem;
}

.split-text p {
    font-size: 1rem;
    color: #dbe3f1;
}

/* IMAGE SIDE */
.split-image {
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid rgba(255,255,255,0.08);
}

.split-image img {
    height: 100%;
    max-height: 480px;
    width: auto;
    filter: contrast(1.05);
}

/* MISSION */
.mission {
    background: var(--primary);
    color: white;
    padding: 5rem 3rem 6rem;
    text-align: center;
}

.mission h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
}

.mission img {
    width: 80%;
    max-width: 800px;
    margin-bottom: 2.5rem;
    border-radius: 12px;
}

.mission p {
    max-width: 720px;
    margin: auto;
    color: #dbe3f1;
}

/* CONTACT */
.contact {
    background: var(--primary);
    color: white;
    padding: 5rem 3rem;
}

.contact h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
}

.contact h3 {
    margin-top: 2.5rem;
    font-size: 1.5rem;
}

.email {
    font-size: 1.1rem;
    color: #dbe3f1;
}
/* ===== ANIMATIONS ===== */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.9s ease-out forwards;
}

.fade-up.delay-1 { animation-delay: 0.2s; }
.fade-up.delay-2 { animation-delay: 0.4s; }
.fade-up.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* IMAGE HOVER EFFECTS */
.split-image img,
.mission img {
    transition: transform 0.6s ease;
}

.split-image img:hover,
.mission img:hover {
    transform: scale(1.02);
}
/* =========================
   MOBILE RESPONSIVENESS
   ========================= */

@media (max-width: 768px) {

    /* NAVBAR */
    .navbar {
        padding: 1.5rem 2rem;
        justify-content: center;
    }

    .logo img {
        height: 80px;
    }

    /* HERO */
    .hero {
        padding: 3rem 2rem 4rem;
    }

    .hero h1 {
        font-size: 3rem;
        line-height: 1.1;
    }

    .hero-accent {
        width: 60px;
        height: 3px;
    }

    .hero p {
        font-size: 1.05rem;
        max-width: 100%;
    }

    /* SPLIT SECTION → STACKED */
    .split {
        grid-template-columns: 1fr;
    }

    .split-text {
        padding: 4rem 2rem;
    }

    .split-text h2 {
        font-size: 2.2rem;
    }

    .split-image {
        padding: 3rem 2rem;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .split-image img {
        max-height: 320px;
    }

    /* MISSION */
    .mission {
        padding: 4rem 2rem 5rem;
    }

    .mission img {
        width: 100%;
    }

    /* MOBILE ANIMATION TUNING */
    .fade-up {
        animation-duration: 0.6s;
        transform: translateY(20px);
    }

    .fade-up.delay-1 { animation-delay: 0.15s; }
    .fade-up.delay-2 { animation-delay: 0.3s; }
    .fade-up.delay-3 { animation-delay: 0.45s; }

    /* Disable hover effects on touch devices */
    .split-image img:hover,
    .mission img:hover {
        transform: none;
    }
}

/* Ensure animations complete cleanly */
.fade-up {
    animation-fill-mode: both;
}

