:root {
  --brand-slate: #69757d;
  --brand-gold: #c39a38;
  --brand-cream: #f7f5e9;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex-shrink: 0;
  color: inherit;
  text-decoration: none;
}

.brand-logo-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  padding: 6px;
  overflow: hidden;
  border: 2px solid var(--brand-gold);
  border-radius: 50%;
  background: var(--brand-slate);
  box-shadow: 0 2px 10px rgba(35, 43, 48, 0.18);
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  min-width: 0;
  color: inherit;
  font: inherit;
  font-weight: 800;
  letter-spacing: -0.25px;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-lockup--hero {
  gap: 18px;
}

.brand-lockup--hero .brand-logo-frame {
  width: 100px;
  height: 100px;
  padding: 8px;
  border-width: 3px;
}

.brand-lockup--compact .brand-logo-frame {
  width: 42px;
  height: 42px;
  padding: 5px;
}

.brand-lockup--compact .brand-name {
  font-size: 18px;
}

@media (max-width: 768px) {
  .brand-lockup--hero {
    gap: 12px;
  }

  .brand-lockup--hero .brand-logo-frame {
    width: 62px;
    height: 62px;
    padding: 6px;
    border-width: 2px;
  }

  .brand-lockup--compact .brand-logo-frame {
    width: 38px;
    height: 38px;
    padding: 4px;
  }

  .brand-lockup--compact .brand-name {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .brand-lockup--hero {
    gap: 9px;
  }

  .brand-lockup--hero .brand-logo-frame {
    width: 50px;
    height: 50px;
    padding: 5px;
  }

  .brand-lockup--compact .brand-logo-frame {
    width: 34px;
    height: 34px;
    padding: 3px;
  }

  .brand-lockup--compact .brand-name {
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  .brand-lockup--hero .brand-logo-frame {
    width: 42px;
    height: 42px;
    padding: 4px;
  }

  .brand-lockup--compact .brand-logo-frame {
    width: 30px;
    height: 30px;
  }

  .brand-lockup--compact .brand-name {
    font-size: 13px;
  }
}
