/* Beyza Ongun Beauty Center — code-based wordmark logo */

.brandmark {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  font-family: var(--font-heading);
  color: var(--color-primary);
}
.brandmark .bm-icon {
  height: 34px;
  width: auto;
  margin-bottom: 4px;
}
.brandmark .bm-name {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.brandmark .bm-sub {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-top: 3px;
  color: var(--color-gold);
}
.brandmark .bm-sub .bm-swirl {
  font-size: 11px;
  line-height: 1;
}

/* Light variant for dark backgrounds (footer) */
.brandmark.on-dark {
  color: #F3E8E0;
}
.brandmark.on-dark .bm-sub {
  color: var(--color-gold);
}
