:root {
    --bg: #f7f4ee;
    --ink: #101010;
    --line: #ddd6ca;
    --chip: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: 'Avenir Next', 'Century Gothic', 'Trebuchet MS', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

.topbar {
    position: sticky;
    top: 0;
    border-bottom: 1px solid var(--line);
    background: color-mix(in srgb, #f7f4ee 86%, #ffffff 14%);
    backdrop-filter: blur(8px);
    z-index: 40;
}

.topbar-inner {
    padding: 10px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
    letter-spacing: 0.08em;
    font-size: clamp(16px, 2vw, 24px);
}

.logo img {
    height: 34px;
    width: auto;
    border-radius: 6px;
}

.menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 4px;
    border-radius: 999px;
    padding: 4px;
}

.menu a {
    border: 1px solid transparent;
    background: transparent;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #4b5563;
    transition: all .18s ease;
}

.menu a:hover,
.menu a.active {
    background: #f3f4f6;
    color: #111;
    border-color: #e5e7eb;
}

.site-footer {
    padding: 14px 6px 4px;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
    color: #8a7f70;
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-shell {
    padding: 0 8px 8px;
}

@media (max-width: 720px) {
    .topbar-inner {
        flex-direction: column;
        align-items: center;
    }

    .menu {
        width: 100%;
        justify-content: center;
    }
}