/* ─── NAVBAR ──────────────────────────────────────────── */
#navbar-placeholder {
  position: fixed;
  inset: 0 0 auto;
  height: 60px;
  background: #101010;
  border-bottom: 1px solid #1e1e1e;
  z-index: 1000;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: #101010;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 1000;
  border-bottom: 1px solid #1e1e1e;
}

.navbar__flags {
  display: flex;
  gap: 10px;
  user-select: none;
}
.navbar__flag {
  display: grid;
  place-items: center;
  width: 28px;
  height: 20px;
  padding: 0;
  overflow: hidden;
  background: none;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity .2s;
}
.navbar__flag svg { display: block; width: 100%; height: 100%; }
.navbar__flag:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.navbar__burger {
  background: none;
  border: none;
  color: #F0F0F0;
  font-size: 26px;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  transition: color 0.2s;
}
.navbar__burger:hover { color: var(--gold); }

.navbar__dropdown {
  display: none;
  position: absolute;
  top: 60px;
  right: 0;
  background: #101010;
  border: 1px solid #222;
  min-width: 220px;
  flex-direction: column;
  padding: 8px 0;
}
.navbar__dropdown.open { display: flex; }

.navbar__dropdown a {
  padding: 12px 24px;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #F0F0F0;
  border-bottom: 1px solid #1a1a1a;
}
.navbar__dropdown a:last-child { border-bottom: none; }
.navbar__dropdown a:hover { color: var(--gold); background: #161616; }
