.status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.status-row .eyebrow {
  margin: 0;
}

.open-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: none;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.open-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 12px currentColor;
}

.open-status.is-open {
  border-color: rgba(65, 220, 122, 0.32);
  color: #59df89;
}

.open-status.is-closed {
  border-color: rgba(255, 116, 101, 0.3);
  color: #ff8a7e;
}

.contact-list {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.contact-list a {
  margin: 0;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--white);
  text-decoration: none;
}

.contact-list a:visited { color: var(--white); }
.contact-list a:hover { color: var(--gold-2); border-color: var(--line); background: rgba(244, 196, 48, 0.07); }
.contact-list a:active { color: var(--gold); }
.contact-list a:focus-visible { color: var(--gold-2); }
.contact-list a:focus { color: var(--gold-2); text-decoration: none; }

.contact-list span,
.contact-list strong {
  display: block;
}

.contact-list span {
  margin-bottom: 3px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-list strong {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}

.qr-placeholder {
  width: min(310px, 82vw);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 224, 92, 0.3);
}

.qr-placeholder .qr-grid {
  filter: blur(7px);
  opacity: 0.16;
}

.qr-placeholder p {
  padding: 8px 10px;
  border-radius: 8px;
  background: #fff3bf;
  font-weight: 700;
  line-height: 1.35;
}

.bottom-nav {
  grid-template-columns: repeat(5, 1fr);
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
}

@media (max-width: 430px) {
  .status-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .open-status {
    margin-bottom: 10px;
  }

  .contact-list strong {
    font-size: 11px;
  }
}
