/* ── Logo Badge ── */
.arada-logo-badge {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; user-select: none; line-height: 1;
}
.arada-logo-badge .logo-img-wrap {
  width: 30px; height: 30px; border-radius: 9px; overflow: hidden; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent) 0%, #5c3b10 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 1px 6px rgba(197,160,89,.3);
}
.arada-logo-badge .logo-img-wrap img { width: 92%; height: 92%; object-fit: cover; border-radius: 8px; }
.arada-logo-badge .logo-wordmark {
  font-size: 17px; font-weight: 900; letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-h) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1;
}
.arada-logo-badge .logo-tagline { font-size: 9px; color: var(--text-3); font-weight: 500; letter-spacing: .4px; margin-top: 1px; }
.logo-fallback { font-size: 16px; font-weight: 900; color: var(--accent); line-height: 1; }

/* Large centered logo for auth pages */
.auth-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 8px 0 4px;
}
.auth-logo .logo-circle {
  width: 72px; height: 72px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent) 0%, #5c3b10 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(197,160,89,.4);
}
.auth-logo .logo-circle img {
  width: 100%; height: 100%; object-fit: cover;
}
.auth-logo .logo-name {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-h) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.auth-logo .logo-sub {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 500;
  margin-top: -6px;
}

/* Fallback if no image — show stylised "A" */
.logo-fallback {
  font-size: 20px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
