/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    background: #fff;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ─── COLOUR PALETTE ───────────────────────────────────────── */
:root {
    --navy: #0d1b4b;
    --gold: #c9a84c;
    --gold2: #e8c96a;
    --cream: #f8f5ef;
    --mid: #2d4070;
    --light: #f0f4ff;
    --text: #333;
    --muted: #666;
}

/* ─── NAVBAR ───────────────────────────────────────────────── */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(13,27,75,0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201,168,76,0.3);
    transition: all .3s;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    height: 74px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--navy);
    flex-shrink: 0;
}

.logo-text {
    line-height: 1.2;
}

    .logo-text .main {
        font-family: 'Playfair Display', serif;
        font-size: 22px;
        color: #fff;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .logo-text .sub {
        font-size: 10px;
        color: var(--gold);
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

.nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
}

    .nav-links li a {
        padding: 8px 20px;
        color: rgba(255,255,255,0.85);
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        border-radius: 4px;
        transition: all .25s;
        border-bottom: 2px solid transparent;
        display: block;
    }

        .nav-links li a:hover,
        .nav-links li a.active {
            color: var(--gold);
            border-bottom-color: var(--gold);
            background: rgba(201,168,76,0.08);
        }

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--gold2)) !important;
    color: var(--navy) !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    border-bottom: none !important;
}

    .nav-cta:hover {
        opacity: .9;
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(201,168,76,.4);
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: #fff;
    }
/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 960px) {
    .chairman-grid, .mission-layout, .contact-grid {
        grid-template-columns: 1fr;
    }

    .chairman-grid {
        gap: 40px;
    }

    .chairman-photo-frame {
        padding-bottom: 60%;
    }

    .footer-grid {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        background: var(--navy);
        padding: 16px 0;
    }

        .nav-links.open {
            display: flex;
        }

    .hamburger {
        display: flex;
    }

    .hero-stats {
        position: static;
        margin-top: 48px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        flex-wrap: wrap;
        gap: 24px;
    }

    .footer-col {
        flex: 1 1 180px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        flex-direction: column;
        gap: 20px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-col {
        flex: 1 1 100%;
    }

    .nav-inner {
        padding: 0 20px;
    }

    .container {
        padding: 0 20px;
    }
}

