@import url("https://fonts.bunny.net/css2?family=Cormorant+Garamond:wght@400;600&family=Inter:wght@300;400;500&display=swap");

.site-header {
    width: 100%;
    color: #333;
    position: static;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 2rem;
    flex-wrap: wrap;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1a1a1a;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: 1.5rem;
    text-decoration: none;
}

.brand small {
    display: block;
    font-family: Inter, sans-serif;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .65rem;
    color: #666;
}

.brand-mark {
    width: 36px;
    height: 36px;
    background: transparent;
    color: #1a1a1a;
}

.site-nav {
    margin-left: auto;
}

.site-nav ul {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav a {
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: .82rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.site-nav a:hover {
    color: #1a1a1a;
    text-decoration: none;
}

.site-nav .current-menu-item a,
.site-nav a[aria-current="page"] {
    border-bottom: 2px solid #2d5a27;
    padding-bottom: 8px;
    color: #1a1a1a;
}

.search-form {
    position: relative;
    display: flex;
    align-items: center;
}

.search-form input {
    padding: 10px 14px;
    width: 280px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    color: #1a1a1a;
    font-family: Inter, sans-serif;
    border-radius: 0;
    transition: border-color 0.2s;
}

.search-form input::placeholder {
    color: #9ca3af;
}

.search-form input:focus {
    outline: none;
    border-color: #2d5a27;
    background: #fff;
}

.search-button {
    position: absolute;
    right: 8px;
    background: transparent;
    border: 0;
    color: #666;
    cursor: pointer;
}

.language-switcher {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.lang-flag {
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 2px 4px;
    border-bottom: 1px solid transparent;
}

.lang-flag:hover {
    color: #1a1a1a;
}

.lang-flag.is-active {
    color: #1a1a1a;
    border-bottom-color: #2d5a27;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid #e5e7eb;
    padding: 8px 16px;
    border-radius: 0;
    color: #4b5563;
    font-family: Inter, sans-serif;
    font-weight: 500;
    cursor: pointer;
}

@media (max-width: 1100px) {
    .header-inner {
        gap: 1rem;
    }
}

@media (max-width: 700px) {
    .search-form input {
        width: 100%;
    }
    .site-nav {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
}
