html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

:root {
    --ink: #0F1A14;
    --ink-soft: #172420;
    --cream: #F7F3E8;
    --gold: #C9962E;
    --gold-soft: #E2C384;
    --gray: #8C9690;
    --line: rgba(15,26,20,0.1);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--cream);
}

/* ---------- Header ---------- */
#siteHeader {
    background: #fff;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
}

    #siteHeader .wrap {
        max-width: 1180px;
        margin: 0 auto;
        padding: 16px 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
    }

    #siteHeader .brand {
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        color: var(--ink);
    }

        #siteHeader .brand svg {
            color: var(--gold);
        }

        #siteHeader .brand b {
            font-family: 'Fraunces', serif;
            font-size: 20px;
            font-weight: 600;
            letter-spacing: -0.01em;
        }

    #siteHeader .nav-links {
        display: flex;
        align-items: center;
        gap: 30px;
        flex: 1;
        justify-content: center;
    }

        #siteHeader .nav-links a {
            color: var(--ink);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            opacity: 0.75;
            transition: opacity 0.2s ease, color 0.2s ease;
        }

            #siteHeader .nav-links a:hover {
                opacity: 1;
                color: var(--gold);
            }

.btn-gold {
    background: var(--gold);
    color: var(--ink) !important;
    border: none;
    padding: 10px 24px;
    font-weight: 600;
    font-size: 13.5px;
    letter-spacing: 0.02em;
    border-radius: 2px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    transition: background 0.2s ease;
    white-space: nowrap;
}

    .btn-gold:hover {
        background: var(--gold-soft);
    }

.navbar-toggler {
    background: transparent;
    border: 1px solid var(--line);
    padding: 6px 10px;
    border-radius: 2px;
}

/* ---------- Footer ---------- */
footer {
    background: var(--ink);
    color: var(--cream);
    padding: 28px 24px;
    margin-top: 60px;
}

    footer .foot-bottom {
        max-width: 1180px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 13px;
        opacity: 0.8;
        flex-wrap: wrap;
        gap: 8px;
    }

/* ---------- Mobile nav ---------- */
@media (max-width: 991px) {
    #siteHeader .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding: 16px 0 4px;
        width: 100%;
        order: 3;
    }

    #siteHeader .wrap {
        flex-wrap: wrap;
    }

    .navbar-toggler {
        display: block;
        order: 2;
    }
}
