/* ── NAVBAR ───────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    backdrop-filter: blur(16px);
    background: rgba(13, 13, 13, 0.85);
    border-bottom: 1px solid rgba(242, 68, 5, 0.12);
    transition: padding 0.3s;
}

nav.scrolled {
    padding: 14px 60px;
}

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

.nav-logo-mark {
    width: 42px;
    height: 42px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 22px;
    color: #fff;
    letter-spacing: -1px;
    flex-shrink: 0;
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white-color);
    letter-spacing: -0.3px;
}

.nav-brand span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 400;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.25s;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-cta {
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 8px;
    transition: background 0.2s, transform 0.15s;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px 32px 32px;
    border-bottom: 1px solid rgba(242, 68, 5, 0.15);
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
}

.mobile-menu.open {
    display: block;
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}

.mobile-menu ul a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 17px;
}

.mobile-menu .nav-cta {
    display: inline-block;
}

@media (max-width: 1100px) {
    nav {
        padding: 18px 32px;
    }

    nav.scrolled {
        padding: 14px 32px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 16px 20px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    nav.scrolled {
        padding: 14px 20px;
    }
}

.nav-logo-img {
    height: 40px;
}
