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

:root {
    --navy: #0b1a2e;
    --navy-light: #132742;
    --navy-lighter: #1a3356;
    --gold: #c9956d;
    --gold-light: #e4c4a8;
    --gold-dark: #a87a55;
    --cream: #faf6f1;
    --white: #ffffff;
    --text-dark: #1a1a2e;
    --text-muted: #5a6072;
    --text-light: #8a8fa0;
    --green: #22c55e;
    --green-light: #dcfce7;
    --red: #ef4444;
    --red-light: #fee2e2;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'DM Sans', -apple-system, sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* SHARED NAV */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 2rem;
    background: rgba(11, 26, 46, 0.97);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
    letter-spacing: -0.5px;
    text-decoration: none;
}

.logo span { color: var(--gold); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    letter-spacing: 0.3px;
}

.nav-links a:hover { color: var(--gold); }

.nav-links a.active {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2px;
}

.nav-cta {
    padding: 0.55rem 1.25rem;
    background: var(--gold) !important;
    color: var(--navy) !important;
    border-radius: 8px;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-dark) !important; }

/* PAGE HEADER */
.page-header {
    background: var(--navy);
    padding: 7rem 2rem 3rem;
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.page-header h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 0.75rem;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--gold-light);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* FOOTER */
.site-footer {
    padding: 3rem 2rem;
    background: var(--navy);
    text-align: center;
    border-top: 1px solid rgba(201, 149, 109, 0.15);
}

.site-footer .logo {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.site-footer p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-links a {
    font-size: 0.8rem;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-light); }

/* UTILITY */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* RESPONSIVE NAV */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--gold-light);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    nav { padding: 0.85rem 1.25rem; }

    .mobile-menu-btn { display: block; }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        border-top: 1px solid rgba(201, 149, 109, 0.15);
    }

    .nav-links.open { display: flex; }

    .page-header { padding: 6rem 1.5rem 2.5rem; }
}
