/* Melkavid brand marks — lockup (logo.svg) vs monogram (mark.svg) */
.brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 0;
  flex-shrink: 0;
}
.brand-img {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  flex-shrink: 0;
}
.brand-img--lockup.brand-img--sm { height: 26px; }
.brand-img--lockup.brand-img--md { height: 34px; }
.brand-img--lockup.brand-img--lg { height: 48px; }
.brand-img--lockup.brand-img--hero {
  height: clamp(52px, 8vw, 76px);
  max-width: min(280px, 82vw);
}
.brand-img--mark.brand-img--sm { width: 28px; height: 28px; }
.brand-img--mark.brand-img--md { width: 36px; height: 36px; }
.brand-img--mark.brand-img--lg { width: 56px; height: 56px; }

.page-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.photo-meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
  line-height: 1.2;
}
.photo-meta--empty {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  gap: 5px;
}
.photo-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid transparent;
  white-space: nowrap;
}
.photo-chip--count {
  background: var(--brand-soft);
  color: var(--brand);
  border-color: var(--border);
}
.photo-chip--real {
  background: var(--badge-running-bg);
  color: var(--green);
}
.photo-chip--stock {
  background: var(--badge-pending-bg);
  color: var(--yellow);
}
.stat-box .photo-meta { margin-top: 2px; }
