.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #572800;
    width: 100%;
    box-sizing: border-box;
}

.logo img {
    max-width: 60px;
    height: auto;
    display: block;
}

.nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-direction: row;
}

.nav a {
    text-decoration: none;
    color: #FFFFFF;
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    transition: 0.2s color ease;
}

.nav a:hover,
.nav a:focus {
    color: #09ADFF;
    outline: none;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-size: 1.5rem;
}

.nav-toggle .icon {
    color: #FFFFFF;
    font-size: 1.5rem;
    pointer-events: none;
}

.nav-toggle:focus {
    outline: 2px solid #09ADFF;
    outline-offset: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        padding: 1rem;
    }

    .nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        left: 0;
        background: #572800;
        gap: 0;
        padding: 1rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        z-index: 10;
    }

    .nav ul li {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav ul li:last-child {
        border-bottom: none;
    }

    .nav ul.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }
}