html, body
{
    margin: 0;
    padding: 0;
}

*
{
    box-sizing: border-box;
}

.site-header
{
    background: #fff;
    border-bottom: 1px solid #eee;
}

.site-main
{
    padding: 0;
}

.header-inner
{
    max-width: 1200px;
    margin: auto;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img
{
    height: 100px;
}

.nav
{
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav a
{
    text-decoration: none;
    color: #2f3f52;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
}

.nav a.active
{
    color: #c58b2a;
}