.topbar { color: rgba(255, 255, 255, 0.9); background: var(--blue); font-size: 14px; }
.topbar a:hover { color: var(--gold); }
.topbar-inner { display: flex; justify-content: space-between; gap: 20px; padding: 8px 0; }
.site-header { position: sticky; top: 0; z-index: 20; background: var(--white); border-bottom: 1px solid var(--line); }
.nav-shell { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 214px; color: var(--blue); }
.brand-mark { display: grid; width: 44px; height: 44px; place-items: center; color: var(--white); background: var(--blue); border-bottom: 4px solid var(--gold); font-weight: 800; }
.brand strong, .brand em { display: block; }
.brand strong { font-size: 20px; line-height: 1.2; }
.brand em { color: var(--subtext); font-size: 10px; font-style: normal; letter-spacing: 0; }
.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav a { position: relative; padding: 24px 11px; color: var(--blue); font-weight: 800; font-size: 15px; white-space: nowrap; }
.main-nav a::after { position: absolute; right: 11px; bottom: 16px; left: 11px; height: 3px; background: var(--gold); content: ""; transform: scaleX(0); transform-origin: left; transition: transform 0.2s ease; }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.main-nav .nav-kf { margin-left: 8px; padding: 10px 14px; color: var(--white); background: var(--teal); border-radius: 4px; }
.main-nav .nav-kf::after { display: none; }
.nav-toggle { display: none; width: 42px; height: 42px; color: var(--blue); background: var(--white); border: 1px solid var(--line); border-radius: 4px; }
.site-footer { color: rgba(255, 255, 255, 0.78); background: var(--blue); }
.footer-grid { display: grid; grid-template-columns: 1.25fr 1fr 1.35fr 0.8fr; gap: 34px; padding: 52px 0; }
.footer-brand { margin-bottom: 12px; color: var(--white); font-size: 24px; font-weight: 800; }
.site-footer h3 { margin: 0 0 14px; color: var(--white); font-size: 18px; }
.site-footer p { margin: 0 0 8px; }
.site-footer a:hover { color: var(--gold); }
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 16px; }
.qr-placeholder { display: grid; width: 108px; height: 108px; place-items: center; margin-bottom: 10px; color: var(--blue); background: var(--white); border: 6px solid rgba(200, 155, 60, 0.35); text-align: center; line-height: 1.3; font-weight: 800; }
.footer-bottom { display: flex; justify-content: center; gap: 24px; padding: 16px; border-top: 1px solid rgba(255, 255, 255, 0.12); font-size: 14px; text-align: center; }
.floating-actions { position: fixed; right: 18px; bottom: 18px; z-index: 30; display: grid; gap: 8px; }
.floating-actions a { display: grid; min-width: 132px; min-height: 42px; place-items: center; padding: 0 14px; border-radius: 4px; box-shadow: var(--shadow); font-size: 14px; font-weight: 800; }
.float-kf { color: var(--white); background: var(--teal); }
.float-phone { color: var(--blue); background: var(--gold); }
@media (max-width: 1080px) {
    .nav-toggle { display: block; }
    .main-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; padding: 10px 20px 20px; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
    .main-nav.open { display: flex; }
    .main-nav a, .main-nav .nav-kf { margin: 0; padding: 13px 0; border-bottom: 1px solid var(--line); border-radius: 0; background: transparent; color: var(--blue); }
    .main-nav a::after { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .topbar-inner, .footer-bottom { flex-direction: column; gap: 4px; text-align: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .floating-actions { right: 14px; left: 14px; grid-template-columns: 1fr 1fr; }
    .floating-actions a { min-width: 0; }
}
