.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header.is-scrolled { box-shadow: 0 4px 16px rgba(0,0,0,.25); border-bottom-color: rgba(255,255,255,.14); }

.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  position: relative;
  z-index: 2;
}

.brand__logo { height: 32px; width: auto; display: block; }

.site-header__actions { display: flex; align-items: center; gap: 18px; }
.site-header__login {
  color: var(--paper) !important;
  border-color: rgba(255,255,255,.4) !important;
  padding: 9px 22px;
  font-size: .78rem;
  letter-spacing: .1em;
}
.site-header__login:hover { background: rgba(255,255,255,.08); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  width: 40px;
  height: 40px;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--paper);
  transition: transform .2s ease, opacity .2s ease;
  display: block;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-dropdown {
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  z-index: 2;
}
.nav-dropdown.is-open { max-height: 320px; }
.nav-dropdown__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 32px 24px 36px;
  flex-wrap: wrap;
}
.nav-dropdown__links { display: flex; flex-direction: column; gap: 4px; }
.nav-dropdown__link {
  font-family: var(--f-display);
  font-size: 1.6rem;
  color: var(--paper);
  padding: 6px 0;
  transition: color .15s ease;
}
.nav-dropdown__link:hover { color: var(--red); }
.nav-dropdown__social { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.nav-dropdown__social-label { font-family: var(--f-heading); text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; color: #9a927f; }
.nav-dropdown__social-icons { display: flex; gap: 14px; }
.nav-dropdown__social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .15s ease, color .15s ease, background .15s ease;
}
.nav-dropdown__social-icon svg { width: 18px; height: 18px; }
.nav-dropdown__social-icon:hover { border-color: var(--red); color: var(--red); background: rgba(181,7,8,.1); }

.nav-backdrop { position: fixed; inset: 0; top: 88px; background: rgba(0,0,0,.35); border: none; z-index: 1; }

@media (max-width: 560px) {
  .nav-dropdown__inner { flex-direction: column; gap: 28px; padding: 28px 24px 32px; }
  .nav-dropdown__link { font-size: 1.4rem; }
}

/* Footer */
.site-footer { background: var(--ink); color: #c7cbd6; padding-top: 64px; }
.site-footer .brand__logo { height: 34px; width: auto; margin-bottom: 16px; }
.site-footer__grid { padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.site-footer__brand p { max-width: 280px; font-size: .92rem; line-height: 1.6; color: #9aa0b1; }
.site-footer h4 { font-family: var(--f-heading); text-transform: uppercase; letter-spacing: .06em; font-size: .85rem; color: var(--paper); margin-bottom: 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer ul a { font-size: .92rem; color: #9aa0b1; transition: color .15s ease; }
.site-footer ul a:hover { color: var(--red); }
.site-footer__contact li { font-size: .92rem; color: #9aa0b1; }
.site-footer__bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 12px; font-size: .8rem; color: #767c8d; flex-wrap: wrap; gap: 8px; }
.site-footer__code { font-family: var(--f-mono); color: var(--red); letter-spacing: .04em; }

.brand__text{display:inline-block;color:#fff;font-size:1.25rem;font-weight:800;letter-spacing:.01em;line-height:1.15}.site-footer .brand__text{font-size:1.35rem;margin-bottom:16px}
