.lang-select {
    border: 1px solid var(--border);
    border-radius: 99px;
    padding: 5px 6px 5px 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
    width: fit-content;
    -webkit-appearance: auto;
    appearance: auto;
}

.lang-select:hover {
    border-color: var(--brand);
}

/* Theme Toggle */
.theme-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.theme-btn:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--brand-pale);
}

/* Hamburger */
.hamburger {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    flex-shrink: 0;
}

.hamburger span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger span:nth-child(1) {
    width: 100%;
}

.hamburger span:nth-child(2) {
    width: 70%;
}

.hamburger span:nth-child(3) {
    width: 100%;
}

/* ── NAV ── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 5vw, 80px);
    background: rgba(var(--bg-rgb, 255, 255, 255), 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background 0.35s;
}

[data-theme="dark"] nav {
    background: rgba(10, 20, 16, 0.85);
}

.nav-logo {
    display: flex;
    align-items: center;

    gap: 14px;

    flex-shrink: 0;

    text-decoration: none;
}

.nav-logo img {
    height: 70px;
    width: auto;
    display: block;
}

.nav-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;

    white-space: nowrap;

    line-height: 1.1;

    color: var(--text);
    letter-spacing: -0.3px;
}

.nav-logo span em {
    color: var(--brand);
    font-style: normal;
}


.nav-links {
    display: none;
    gap: 18px;
    list-style: none;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--text2);
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 0.2px;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand);
    border-radius: 2px;
    transition: width 0.25s ease;
}

.nav-links a:hover {
    color: var(--brand);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
}
