.top-bar {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 0.5rem 0;
  font-size: var(--font-small);
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.top-bar__social {
  display: flex;
  gap: 0.5rem;
}

.social-icon {
  color: var(--color-white);
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: color 0.2s, border-color 0.2s;
}

.social-icon:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

.top-bar__contact {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.top-bar__contact span,
.top-bar__location span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .top-bar__inner {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .top-bar__social {
    justify-content: center;
  }

  .top-bar__contact {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}
