.site-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px clamp(16px, 4vw, 40px);
    background: var(--jade-deep);
    border-bottom: 1px solid rgba(196, 163, 90, 0.28);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}
.nav-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff8e8;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.35rem, 2.4vw, 1.75rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.15;
    text-decoration: none !important;
    outline: none;
}
.nav-brand,
.nav-brand:link,
.nav-brand:visited,
.nav-brand:hover,
.nav-brand:active,
.nav-brand:focus {
    color: #fff8e8;
    text-decoration: none !important;
}
.nav-brand span {
    position: relative;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0.03em;
    white-space: nowrap;
    background: linear-gradient(120deg, #fff8e8 0%, #e8d5a3 55%, #fff8e8 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.nav-brand span::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232, 213, 163, 0.85), transparent);
    transform: scaleX(0.35);
    opacity: 0.55;
}
.nav-brand img {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(232, 213, 163, 0.55);
    box-shadow: 0 4px 14px rgba(0,0,0,0.22);
    flex-shrink: 0;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-links a, .nav-login-toggle {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    color: rgba(255,248,232,0.9);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 0;
    background: transparent;
    cursor: pointer;
    border-radius: 999px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}
.nav-links a:hover, .nav-login-toggle:hover,
.nav-links a.is-active {
    background: rgba(232, 213, 163, 0.14);
    color: #fff;
    text-decoration: none;
}
.nav-login { position: relative; }
.login-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    padding: 10px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(0,0,0,0.28);
    display: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}
.login-menu.open { display: flex; }
.login-menu a, .login-menu button {
    display: block;
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--jade-deep);
    font: inherit;
    font-weight: 500;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    text-decoration: none;
}
.login-menu a:hover, .login-menu button:hover {
    background: rgba(15, 92, 86, 0.08);
    color: var(--jade-deep);
}
.nav-toggle {
    display: none;
    border: 1px solid rgba(232,213,163,0.4);
    background: transparent;
    color: #fff8e8;
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 1.1rem;
    cursor: pointer;
}
body.has-site-nav { padding-top: 108px; }

@media (max-width: 900px) {
    .nav-brand span {
        max-width: none;
        font-size: clamp(1rem, 3.8vw, 1.35rem);
    }
    .nav-brand img {
        width: 60px;
        height: 60px;
    }
    .nav-toggle { display: inline-flex; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 12px;
        right: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        border-radius: 14px;
        background: rgba(6, 36, 34, 0.96);
        box-shadow: 0 16px 36px rgba(0,0,0,0.28);
    }
    .nav-links.open { display: flex; }
    .login-menu {
        position: static;
        margin-top: 6px;
        box-shadow: none;
        background: rgba(255,255,255,0.96);
    }
    body.has-site-nav { padding-top: 92px; }
}
