/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: #1a1a1a;
    /* Top accent bar from the image */
    border-top: 5px solid #5d342b;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 80px;
    /* Slightly taller to match the airy feel of the image */
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    height: auto;
    width: 250px;
    /* Adjusted to match the image proportion */
}

img,
svg {
    vertical-align: middle;
}

.nav-logo img {
    overflow-clip-margin: content-box;
    overflow: clip;
}

.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
    /* Matching the deep orange/brown logo text */
    letter-spacing: -0.2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #ffffff;
    /* Blue-gray tone for links seen in image */
    text-decoration: none;
    transition: color .2s;
}

.nav-link:hover {
    color: #e65100;
}

.nav-cta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: #a33100;
    /* Deep orange/rust button from image */
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 12px 24px;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.nav-cta:hover {
    background: #822700;
    transform: translateY(-1px);
}

/* Mobile adjustments */
@media(max-width: 1024px) {
    nav {
        padding: 0 24px;
        height: 70px;
    }

    .logo-name {
        font-size: 1.1rem;
    }
}