/* ══ TOP BAR ══ */
.site-topbar {
  transition: opacity .6s ease;
}
.site-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 35px;
  z-index: 826;
  display: flex;
  align-items: center;
  padding: 0 4rem;
  background: #b1c8f624;
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgb(242 237 227 / .08);
}

/* dropped entirely on mobile — duplicates the trimmed mobile footer
   (socials + copyright) and eats vertical space throughout the scroll */
@media (max-width: 720px) {
  .site-topbar {
    display: none;
  }
}
.site-topbar-copy {
  font-family: var(--cond);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgb(242 237 227 / .52);
  padding-left: 0;
  white-space: nowrap;
}
.site-topbar-socials {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: .9rem;
}
.site-topbar-follow {
  font-family: var(--cond);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgb(242 237 227 / .56);
  padding-right: .25rem;
}
.site-topbar-social {
  display: flex;
  align-items: center;
  color: rgb(242 237 227 / .62);
  transition: color .2s;
}
.site-topbar-social:hover {
  color: var(--gold);
}
.site-topbar-social svg {
  width: 22px;
  height: 22px;
}

/* ══ TOPBAR LANGUAGE SELECTOR ══ */
.site-nav-lang {
  min-height: 47px;
  min-width: clamp(54px, 8vw, 104px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--cream-lt);
  font-family: var(--cond);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  transform: none;
}
.site-nav-lang .lang-btn {
  height: 40px;
  min-width: 40px;
  padding: 0 .6rem;
  border: 0.5px solid transparent;
  background: transparent;
  box-shadow: none;
  outline: 0;
  color: var(--cream-lt);
  font: inherit;
  letter-spacing: inherit;
  line-height: 1;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.site-nav-lang .lang-btn.active {
  display: none;
}
.lang-btn .lang-flag {
  width: 15px;
  height: 11px;
  margin-right: .4rem;
  border-radius: 2px;
  vertical-align: -1px;
  box-shadow: 0 0 0 1px rgb(255 255 255 / .25);
}
.site-nav-lang .lang-btn:hover,
.site-nav-lang .lang-btn:focus-visible {
  background: rgb(242 237 227 / .16);
  box-shadow: none;
  outline: 0;
  color: var(--cream-lt);
}
.site-nav-lang-backdrop {
  position: fixed;
  inset: 0;
  z-index: 824;
  display: none;
  background: transparent;
}
.site-nav-lang-backdrop.is-active {
  display: block;
}
