.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: var(--header-height);
    padding: 0 24px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
    background: rgba(8, 6, 4, 0.92);
    border-bottom: 1px solid var(--color-line);
    backdrop-filter: blur(16px);
}

.site-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.site-logo span,
.site-footer__logo span {
    color: var(--color-gold);
    font-style: italic;
}

.site-header__links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.site-header__links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-soft);
}

.site-header__links a:hover {
    color: var(--color-gold-strong);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 0 14px;
    border: 1px solid rgba(232, 180, 72, 0.28);
    border-radius: 999px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-text);
}

.cart-link strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    background: var(--color-gold);
    color: var(--color-bg);
    font-size: 0.76rem;
}

.cart-link strong[hidden] {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--color-text);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle span:nth-child(2) {
    width: 70%;
    margin-left: auto;
}

.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 490;
    background: rgba(8, 6, 4, 0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.menu-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.menu-overlay__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
    width: min(1180px, calc(100vw - 48px));
    margin: 0 auto;
    padding: 120px 0 56px;
}

.menu-overlay__nav {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-overlay__nav li {
    border-top: 1px solid var(--color-line);
}

.menu-overlay__nav li:last-child {
    border-bottom: 1px solid var(--color-line);
}

.menu-overlay__nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 0;
}

.menu-overlay__nav span {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    line-height: 1;
}

.menu-overlay__nav small,
.menu-overlay__footer {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.menu-overlay__nav small {
    color: var(--color-text-muted);
}

.menu-overlay__footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 28px;
    color: var(--color-text-muted);
}

.menu-overlay__footer p {
    margin: 0;
}

.menu-overlay__footer a {
    color: var(--color-gold);
}
