.header {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    color: var(--color-primary);
    font-size: 1.1rem;
    font-weight: 800;
    white-space: nowrap;
}

.navigation ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navigation a {
    font-size: 0.95rem;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.navigation a:hover,
.navigation a:focus-visible {
    opacity: 0.65;
}

.footer {
    min-height: var(--footer-height);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer p {
    font-size: 0.85rem;
    line-height: 1.2;
}
