:root {
        --nh-bg: #05060a;
        --nh-bg-soft: #0b0f19;
        --nh-accent: #f2d49b;
        --nh-text: #e5e7eb;
        --nh-muted: #9ca3af;
    }

    .nh-footer {
        background: var(--nh-bg);
        color: var(--nh-text);
        padding: 2.5rem 1.5rem 1.75rem;
        border-top: 1px solid rgba(148, 163, 184, 0.25);
        font-size: 0.9rem;
    }

    .nh-footer-inner {
        max-width: 1100px;
        margin: 0 auto;
    }

    /* TOP ROW: 3 COLUMNS */
    .nh-footer-main {
        display: grid;
        grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.2fr) minmax(0, 1.3fr);
        gap: 1.75rem;
        align-items: center;
        margin-bottom: 1.9rem;
    }

    /* Left: Brand */
    .nh-footer-brand-title {
        font-size: 1.1rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
				font-family: 'Montserrat';
				
    }

    .nh-footer-brand-sub {
        font-size: 0.78rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--nh-muted);
        margin-top: 0.2rem;
    }

    /* Center: Quick links */
    .nh-footer-nav {
        text-align: center;
    }

    .nh-footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: inline-flex;
        gap: 1.75rem;
    }

    .nh-footer-nav a {
        text-decoration: none;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        color: var(--nh-text);
        position: relative;
        padding-bottom: 0.15rem;
        transition: color 0.18s ease;
    }

    .nh-footer-nav a::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -0.2rem;
        width: 0;
        height: 2px;
        background: var(--nh-accent);
        transform: translateX(-50%);
        transition: width 0.18s ease;
    }

    .nh-footer-nav a:hover {
        color: var(--nh-accent);
    }

    .nh-footer-nav a:hover::after {
        width: 70%;
    }

    /* Right: Contact */
    .nh-footer-contact {
        text-align: right;
        color: var(--nh-muted);
        line-height: 1.5;
    }

    .nh-footer-contact-title {
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        margin-bottom: 0.25rem;
        color: var(--nh-text);
    }

    .nh-footer-contact a {
        color: var(--nh-text);
        text-decoration: none;
    }

    .nh-footer-contact a:hover {
        text-decoration: underline;
    }

    /* BOTTOM COPYRIGHT BAR */
    .nh-footer-bottom {
        margin-top: 0.5rem;
    }

    .nh-footer-bottom-bar {
        background: var(--nh-bg-soft);
        border-radius: 8px;
        padding: 0.75rem 1.1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        color: var(--nh-muted);
        font-size: 0.8rem;
    }

    /* RESPONSIVE */
    @media (max-width: 800px) {
        .nh-footer-main {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .nh-footer-contact {
            text-align: center;
        }
    }